diff --git a/DESCRIPTION b/DESCRIPTION
index abe35d09..c628b035 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,7 +1,7 @@
Type: Package
Package: ffscrapr
Title: API Client for Fantasy Football League Platforms
-Version: 1.2.1
+Version: 1.2.2
Authors@R:
person(given = "Tan",
family = "Ho",
diff --git a/NEWS.md b/NEWS.md
index 38ec008c..8adeba72 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,3 +1,12 @@
+# ffscrapr 1.2.2
+Minor patches to dp_import functions to address issues discovered by CRAN checks.
+
+Also adds minor helper function, `dp_cleannames`, which is a utility function for cleaning player names that removes common suffixes, preiods, and apostrophes.
+
+### Minor patches
+- Refactored `dp_values()` and `dp_playerids()` functions to use httr backend for compat with httptest, preventing CRAN errors.
+- Added inst-level redactor for httptest.
+
# ffscrapr 1.2.1
### Minor patches
diff --git a/R/dp_import.R b/R/dp_import.R
index e2f92054..91a06db7 100644
--- a/R/dp_import.R
+++ b/R/dp_import.R
@@ -20,11 +20,18 @@
dp_values <- function(file = c("values.csv", "values-players.csv", "values-picks.csv")) {
file_name <- match.arg(file)
- utils::read.csv(
- glue::glue("https://github.com/DynastyProcess/data/raw/master/files/{file_name}"),
- stringsAsFactors = FALSE
- ) %>%
- dplyr::mutate(scrape_date = lubridate::as_date(.data$scrape_date)) %>%
+ url_query <- glue::glue("https://github.com/DynastyProcess/data/raw/master/files/{file_name}")
+
+ response <- httr::RETRY("GET", url_query, httr::accept("text/csv"))
+
+ if (httr::http_error(response)) {
+ stop(glue::glue("GitHub request failed with error: <{httr::status_code(response)}> \n
+ while calling <{url_query}>"), call. = FALSE)
+ }
+
+ content <- response %>%
+ httr::content() %>%
+ utils::read.csv(text = ., stringsAsFactors = FALSE) %>%
dplyr::mutate_at(dplyr::vars(dplyr::ends_with("id")), as.character) %>%
tibble::tibble()
}
@@ -44,10 +51,50 @@ dp_values <- function(file = c("values.csv", "values-players.csv", "values-picks
#'
#' @export
dp_playerids <- function() {
- utils::read.csv(
- glue::glue("https://github.com/DynastyProcess/data/raw/master/files/db_playerids.csv"),
- stringsAsFactors = FALSE
- ) %>%
+ url_query <- "https://github.com/DynastyProcess/data/raw/master/files/db_playerids.csv"
+
+ response <- httr::RETRY("GET", url_query, httr::accept("text/csv"))
+
+ if (httr::http_error(response)) {
+ stop(glue::glue("GitHub request failed with error: <{httr::status_code(response)}> \n
+ while calling <{url_query}>"), call. = FALSE)
+ }
+
+ content <- response %>%
+ httr::content() %>%
+ utils::read.csv(text = ., stringsAsFactors = FALSE) %>%
dplyr::mutate_at(dplyr::vars(dplyr::ends_with("id")), as.character) %>%
tibble::tibble()
+
+ return(content)
+}
+
+#' Clean Names
+#'
+#' Applies some name-cleaning heuristics to facilitate joins.
+#' May eventually refer to a name-cleaning database, for now will just include basic regex.
+#'
+#' @param player_name a character (or character vector)
+#' @param lowercase defaults to FALSE - if TRUE, converts to lowercase
+#'
+#' @examples
+#' \donttest{
+#' dp_cleannames(c("A.J. Green", "Odell Beckham Jr.", "Le'Veon Bell Sr."))
+#' }
+#'
+#' @return a character vector of cleaned names
+#'
+#' @export
+
+dp_cleannames <- function(player_name, lowercase = FALSE) {
+ checkmate::assert_logical(lowercase)
+ checkmate::assert_character(player_name)
+
+ n <- stringr::str_remove_all(player_name, "( Jr\\.$)|( Sr\\.$)|( III$)|( II$)|( IV$)|( V$)|(\\')|(\\.)")
+
+ if (lowercase) n <- tolower(n)
+
+ n <- stringr::str_squish(n)
+
+ return(n)
}
diff --git a/README.Rmd b/README.Rmd
index 324deeaf..d6552d00 100644
--- a/README.Rmd
+++ b/README.Rmd
@@ -12,18 +12,26 @@ knitr::opts_chunk$set(
out.width = "100%"
)
-options(tibble.print_min = 5)
-
+options(tibble.print_min = 5, pillar.bold = TRUE, pillar.min_chars = 25, pillar.min_title_chars = 25)
+httptest::.mockPaths("tests/testthat")
+httptest::use_mock_api()
```
# ffscrapr
*An R Client for Fantasy Football League APIs*
- [![CRAN status](https://img.shields.io/cran/v/ffscrapr?style=flat-square)](https://CRAN.R-project.org/package=ffscrapr)
- [![Lifecycle: maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg?style=flat-square)](https://www.tidyverse.org/lifecycle/#maturing)
- [![Codecov test coverage](https://img.shields.io/codecov/c/github/dynastyprocess/ffscrapr?label=test%20coverage&style=flat-square)](https://codecov.io/gh/DynastyProcess/ffscrapr?branch=main)
- [![R build status](https://img.shields.io/github/workflow/status/dynastyprocess/ffscrapr/R-CMD-check?label=R-CMD-check&style=flat-square)](https://github.com/DynastyProcess/ffscrapr/actions)
+[![CRAN
+status](https://img.shields.io/cran/v/ffscrapr?style=flat-square&logo=R&label=CRAN)](https://CRAN.R-project.org/package=ffscrapr)
+[![Dev status](https://img.shields.io/github/r-package/v/dynastyprocess/ffscrapr/dev?label=dev&style=flat-square&logo=github)](https://ffscrapr.dynastyprocess.com/dev/)
+[![Lifecycle:
+maturing](https://img.shields.io/badge/lifecycle-stable-green.svg?style=flat-square)](https://lifecycle.r-lib.org/articles/stages.html)
+[![Codecov test
+coverage](https://img.shields.io/codecov/c/github/dynastyprocess/ffscrapr?label=codecov&style=flat-square&logo=codecov)](https://codecov.io/gh/DynastyProcess/ffscrapr?branch=main)
+[![R build
+status](https://img.shields.io/github/workflow/status/dynastyprocess/ffscrapr/R-CMD-check?label=R%20check&style=flat-square&logo=github)](https://github.com/DynastyProcess/ffscrapr/actions)
+[![API
+status](https://img.shields.io/github/workflow/status/dynastyprocess/ffscrapr/Test%20APIs?label=API%20check&style=flat-square&logo=github)](https://github.com/DynastyProcess/ffscrapr/actions)
@@ -31,12 +39,13 @@ Helps access various Fantasy Football APIs (currently MFL, Sleeper, Fleaflicker,
### Installation
-Version 1.2.1 is now on CRAN 🎉 and can be installed with:
+Version 1.2.2 is now on CRAN 🎉 and can be installed with:
```{r eval = FALSE}
install.packages("ffscrapr")
-# or from GitHub release with the remotes package # install.packages("remotes")
-remotes::install_github("dynastyprocess/ffscrapr",ref = "v1.2.1")
+# or from GitHub release with the remotes package via:
+# install.packages("remotes")
+remotes::install_github("dynastyprocess/ffscrapr", ref = "v1.2.2")
```
Install the development version from GitHub with:
@@ -63,10 +72,15 @@ ff_rosters(ssb)
# Get transactions
ff_transactions(ssb)
-
```
-For a more detailed usage example, including a template dynasty league analysis script, please check out the reference articles and/or vignettes!
+Platform-specific guides on getting started with ffscrapr are here:
+
+- [MyFantasyLeague](https://ffscrapr.dynastyprocess.com/articles/mfl_basics.html)
+- [Sleeper](https://ffscrapr.dynastyprocess.com/articles/sleeper_basics.html)
+- [Fleaflicker](https://ffscrapr.dynastyprocess.com/articles/fleaflicker_basics.html)
+
+There are also some more advanced guides for custom API calls in the [Articles section](https://ffscrapr.dynastyprocess.com/articles/), as well as some guides on [optimizing ffscrapr's performance](https://ffscrapr.dynastyprocess.com/articles/ffscrapr_caching.html).
### Contributing
@@ -82,4 +96,8 @@ Many hands make light work! Here are some ways you can contribute to this projec
The R code for this package is released as open source under the [MIT license](https://ffscrapr.dynastyprocess.com/LICENSE.html).
-The APIs and data accessed by this package belong to their respective owners, and are governed by their terms of use.
+The APIs and data accessed by this package belong to their respective owners, and are governed by their terms of use.
+
+```{r include = FALSE}
+httptest::stop_mocking()
+```
diff --git a/README.md b/README.md
index b555b37b..4d5dc14c 100644
--- a/README.md
+++ b/README.md
@@ -8,16 +8,17 @@
[![CRAN
-status](https://img.shields.io/cran/v/ffscrapr?style=flat-square&logo=R&label=CRAN)](https://CRAN.R-project.org/package=ffscrapr)
-[![Dev status](https://img.shields.io/github/r-package/v/dynastyprocess/ffscrapr/dev?label=dev&style=flat-square&logo=github)](https://ffscrapr.dynastyprocess.com/dev)
+status](https://img.shields.io/cran/v/ffscrapr?style=flat-square&logo=R&label=CRAN)](https://CRAN.R-project.org/package=ffscrapr)
+[![Dev
+status](https://img.shields.io/github/r-package/v/dynastyprocess/ffscrapr/dev?label=dev&style=flat-square&logo=github)](https://ffscrapr.dynastyprocess.com/dev/)
[![Lifecycle:
-maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg?style=flat-square)](https://www.tidyverse.org/lifecycle/#maturing)
+maturing](https://img.shields.io/badge/lifecycle-stable-green.svg?style=flat-square)](https://lifecycle.r-lib.org/articles/stages.html)
[![Codecov test
-coverage](https://img.shields.io/codecov/c/github/dynastyprocess/ffscrapr?label=codecov&style=flat-square&logo=codecov)](https://codecov.io/gh/DynastyProcess/ffscrapr?branch=main)
+coverage](https://img.shields.io/codecov/c/github/dynastyprocess/ffscrapr?label=codecov&style=flat-square&logo=codecov)](https://codecov.io/gh/DynastyProcess/ffscrapr?branch=main)
[![R build
-status](https://img.shields.io/github/workflow/status/dynastyprocess/ffscrapr/R-CMD-check?label=R%20check&style=flat-square&logo=github)](https://github.com/DynastyProcess/ffscrapr/actions)
+status](https://img.shields.io/github/workflow/status/dynastyprocess/ffscrapr/R-CMD-check?label=R%20check&style=flat-square&logo=github)](https://github.com/DynastyProcess/ffscrapr/actions)
[![API
-status](https://img.shields.io/github/workflow/status/dynastyprocess/ffscrapr/Test%20APIs?label=API%20check&style=flat-square&logo=github)](https://github.com/DynastyProcess/ffscrapr/actions)
+status](https://img.shields.io/github/workflow/status/dynastyprocess/ffscrapr/Test%20APIs?label=API%20check&style=flat-square&logo=github)](https://github.com/DynastyProcess/ffscrapr/actions)
@@ -29,12 +30,13 @@ sources.
### Installation
-Version 1.2.1 is now on CRAN 🎉 and can be installed with:
+Version 1.2.2 is now on CRAN 🎉 and can be installed with:
``` r
install.packages("ffscrapr")
-# or from GitHub release with the remotes package # install.packages("remotes")
-remotes::install_github("dynastyprocess/ffscrapr",ref = "v1.2.1")
+# or from GitHub release with the remotes package via:
+# install.packages("remotes")
+remotes::install_github("dynastyprocess/ffscrapr", ref = "v1.2.2")
```
Install the development version from GitHub with:
@@ -59,6 +61,7 @@ ssb <- ff_connect(platform = "mfl", league_id = "54040", season = 2020)
# Get a summary of league settings
ff_league(ssb) %>% str()
+#> Using request.R from "ffscrapr"
#> tibble [1 x 13] (S3: tbl_df/tbl/data.frame)
#> $ league_id : chr "54040"
#> $ league_name : chr "The Super Smash Bros Dynasty League"
@@ -66,7 +69,7 @@ ff_league(ssb) %>% str()
#> $ qb_type : chr "1QB"
#> $ idp : logi FALSE
#> $ scoring_flags : chr "0.5_ppr, TEPrem, PP1D"
-#> $ best_ball : logi FALSE
+#> $ best_ball : logi TRUE
#> $ salary_cap : logi FALSE
#> $ player_copies : num 1
#> $ years_active : chr "2018-2020"
@@ -76,48 +79,56 @@ ff_league(ssb) %>% str()
# Get rosters
ff_rosters(ssb)
-#> # A tibble: 438 x 11
-#> franchise_id franchise_name player_id player_name pos team age
-#>
-#> 1 0001 Team Pikachu 13189 Engram, Ev~ TE NYG 26.3
-#> 2 0001 Team Pikachu 11680 Landry, Ja~ WR CLE 28
-#> 3 0001 Team Pikachu 13645 Smith, Tre~ WR NOS 24.9
-#> 4 0001 Team Pikachu 12110 Brate, Cam~ TE TBB 29.5
-#> 5 0001 Team Pikachu 13168 Reynolds, ~ WR LAR 25.8
-#> # ... with 433 more rows, and 4 more variables: roster_status ,
+#> # A tibble: 443 x 11
+#> franchise_id franchise_name player_id player_name pos team age
+#>
+#> 1 0001 Team Pikachu 13189 Engram, Evan TE NYG 26.4
+#> 2 0001 Team Pikachu 11680 Landry, Jarvis WR CLE 28.2
+#> 3 0001 Team Pikachu 13645 Smith, Tre'Quan WR NOS 25.1
+#> 4 0001 Team Pikachu 12110 Brate, Cameron TE TBB 29.6
+#> 5 0001 Team Pikachu 13168 Reynolds, Josh WR LAR 26
+#> # ... with 438 more rows, and 4 more variables: roster_status ,
#> # drafted , draft_year , draft_round
# Get transactions
ff_transactions(ssb)
-#> # A tibble: 1,026 x 12
-#> timestamp type type_desc franchise_id franchise_name player_id
-#>
-#> 1 2020-12-15 19:56:03 FREE~ dropped 0013 Team Ness 14331
-#> 2 2020-12-15 19:56:03 IR activated 0013 Team Ness 13620
-#> 3 2020-12-11 18:40:22 IR activated 0012 Team Mewtwo 13963
-#> 4 2020-12-11 18:40:22 IR activated 0012 Team Mewtwo 14871
-#> 5 2020-12-11 18:39:43 FREE~ dropped 0012 Team Mewtwo 14793
-#> # ... with 1,021 more rows, and 6 more variables: player_name , pos ,
-#> # team , bbid_spent , trade_partner , comments
+#> # A tibble: 152 x 12
+#> timestamp type type_desc franchise_id franchise_name
+#>
+#> 1 2020-07-09 17:25:20 FREE_AGENT dropped 0004 Team Ice Climbers
+#> 2 2020-07-09 17:25:20 FREE_AGENT dropped 0004 Team Ice Climbers
+#> 3 2020-06-16 01:56:49 TAXI promoted 0014 Team Luigi
+#> 4 2020-06-16 01:56:49 TAXI demoted 0014 Team Luigi
+#> 5 2020-06-12 23:51:44 FREE_AGENT dropped 0010 Team Yoshi
+#> # ... with 147 more rows, and 7 more variables: player_id ,
+#> # player_name , pos , team , bbid_spent ,
+#> # trade_partner , comments
```
-For a more detailed usage example, including a template dynasty league
-analysis script, please check out the reference articles and/or
-vignettes\!
+Platform-specific guides on getting started with ffscrapr are here:
+
+- [MyFantasyLeague](https://ffscrapr.dynastyprocess.com/articles/mfl_basics.html)
+- [Sleeper](https://ffscrapr.dynastyprocess.com/articles/sleeper_basics.html)
+- [Fleaflicker](https://ffscrapr.dynastyprocess.com/articles/fleaflicker_basics.html)
+
+There are also some more advanced guides for custom API calls in the
+[Articles section](https://ffscrapr.dynastyprocess.com/articles/), as
+well as some guides on [optimizing ffscrapr’s
+performance](https://ffscrapr.dynastyprocess.com/articles/ffscrapr_caching.html).
### Contributing
-Many hands make light work\! Here are some ways you can contribute to
+Many hands make light work! Here are some ways you can contribute to
this project:
- - You can [open an
+- You can [open an
issue](https://github.com/DynastyProcess/ffscrapr/issues/new/choose)
if you’d like to request specific data or report a bug/error.
- - You can [sponsor this project with
- donations](https://github.com/sponsors/tanho63)\!
+- You can [sponsor this project with
+ donations](https://github.com/sponsors/tanho63)!
- - If you’d like to contribute code, please check out [the contribution
+- If you’d like to contribute code, please check out [the contribution
guidelines](https://ffscrapr.dynastyprocess.com/CONTRIBUTING.html).
### Terms of Use
diff --git a/cran-comments.md b/cran-comments.md
index 0ad1a037..c9a83f95 100644
--- a/cran-comments.md
+++ b/cran-comments.md
@@ -1,3 +1,9 @@
+## RESUBMISSION
+Fix URL redirects.
+
+## Original Submission
+This release corrects the issues found by CRAN check so that it is robust against internet resource availibility.
+
## Test environments
* local (Windows) R installation, R 4.0.2
* ubuntu 16.04 (on GitHub Actions), R 4.0.2
diff --git a/inst/httptest/redact.R b/inst/httptest/redact.R
new file mode 100644
index 00000000..8bd3d232
--- /dev/null
+++ b/inst/httptest/redact.R
@@ -0,0 +1,9 @@
+httptest::set_redactor(
+ function(response){
+ httptest::gsub_response(response,"https\\://fantasy.espn.com/apis/v3/games/ffl/","espn/") %>%
+ httptest::gsub_response("https\\://api.myfantasyleague.com/","mfl/") %>%
+ httptest::gsub_response("https\\://api.sleeper.app/","sleeper/") %>%
+ httptest::gsub_response("https\\://www.fleaflicker.com/","flea/") %>%
+ httptest::gsub_response("https\\://github.com/DynastyProcess/data/raw/master/files/","gh_dynastyprocess/")
+ }
+)
diff --git a/inst/httptest/request.R b/inst/httptest/request.R
new file mode 100644
index 00000000..a4d0a31d
--- /dev/null
+++ b/inst/httptest/request.R
@@ -0,0 +1,9 @@
+httptest::set_requester(
+ function(request){
+ httptest::gsub_request(request,"https\\://fantasy.espn.com/apis/v3/games/ffl/","espn/") %>%
+ httptest::gsub_request("https\\://api.myfantasyleague.com/","mfl/") %>%
+ httptest::gsub_request("https\\://api.sleeper.app/","sleeper/") %>%
+ httptest::gsub_request("https\\://www.fleaflicker.com/","flea/") %>%
+ httptest::gsub_request("https\\://github.com/DynastyProcess/data/raw/master/files/","gh_dynastyprocess/")
+ }
+)
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-d2d913.R b/tests/testthat/api.myfantasyleague.com/2019/export-d2d913.R
deleted file mode 100644
index 0a3af92c..00000000
--- a/tests/testthat/api.myfantasyleague.com/2019/export-d2d913.R
+++ /dev/null
@@ -1,24 +0,0 @@
-structure(list(url = "https://www54.myfantasyleague.com/2019/export?TYPE=tradeBait&L=12608&INCLUDE_DRAFT_PICKS=1&JSON=1",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:17:36 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "1376", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:17:36 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- location = "https://www54.myfantasyleague.com/2019/export?TYPE=tradeBait&L=12608&INCLUDE_DRAFT_PICKS=1&JSON=1",
- `content-length` = "0", targethost = "www70"), class = c("insensitive",
- "list"))), list(status = 200L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:17:36 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "1376", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = logical(0),
- flag = logical(0), path = logical(0), secure = logical(0),
- expiration = structure(numeric(0), class = c("POSIXct",
- "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"),
- content = charToRaw("{\"version\":\"1.0\",\"tradeBaits\":{\"tradeBait\":[{\"timestamp\":\"1574520555\",\"franchise_id\":\"0001\",\"willGiveUp\":\"7394,13128\",\"inExchangeFor\":\"anyone need a QB?\"},{\"timestamp\":\"1580535809\",\"franchise_id\":\"0003\",\"willGiveUp\":\"13319,13139,11675\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580572165\",\"franchise_id\":\"0004\",\"willGiveUp\":\"12171,13132,13607,13163\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580661975\",\"franchise_id\":\"0008\",\"willGiveUp\":\"5848,13424,7836,7813,10697,12610,13131,13668,9918,13154,9474,13299\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580586339\",\"franchise_id\":\"0010\",\"willGiveUp\":\"12616,13138,14079,12676,14138\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1573591985\",\"franchise_id\":\"0018\",\"willGiveUp\":\"11760,12151,12447,11675\",\"inExchangeFor\":\"Youth and/or Picks.\"},{\"timestamp\":\"1580777411\",\"franchise_id\":\"0019\",\"willGiveUp\":\"13130,14079,11679,11671,11448\",\"inExchangeFor\":\"QBs\"},{\"timestamp\":\"1574615063\",\"franchise_id\":\"0020\",\"willGiveUp\":\"12637,11193,13850,13613,13632,13377\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1574170889\",\"franchise_id\":\"0021\",\"willGiveUp\":\"13234,12677\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1572103834\",\"franchise_id\":\"0022\",\"willGiveUp\":\"FP_0022_2020_5,FP_0022_2020_6\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580956185\",\"franchise_id\":\"0025\",\"willGiveUp\":\"14113,14136\",\"inExchangeFor\":\"2/5/20 reserve prices: Mecole Hardman: $185, Deebo Samuel: $250\"},{\"timestamp\":\"1557400007\",\"franchise_id\":\"0027\",\"willGiveUp\":\"7401,11192,13192,FP_0027_2020_5,FP_0027_2020_6\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580963979\",\"franchise_id\":\"0028\",\"willGiveUp\":\"13319,11222\",\"inExchangeFor\":\"\\r \"},{\"timestamp\":\"1580570282\",\"franchise_id\":\"0029\",\"willGiveUp\":\"14056,13768,11186,10261,11232,14305,14123,11516,13722,13772\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1577739833\",\"franchise_id\":\"0031\",\"willGiveUp\":\"13130,11671\",\"inExchangeFor\":\" \"},{\"timestamp\":\"1580571644\",\"franchise_id\":\"0032\",\"willGiveUp\":\"4925,12634,14080,11747,13163,10261,10729,14109,11247,13236,10312\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580587896\",\"franchise_id\":\"0033\",\"willGiveUp\":\"13590,9099,11760,13115,14057,11244\",\"inExchangeFor\":\"Looking for young RBs, young WRs, and draft capital. \"},{\"timestamp\":\"1580571088\",\"franchise_id\":\"0034\",\"willGiveUp\":\"11675,11222,11674,13671,12678\",\"inExchangeFor\":\"Everyone is available. I’m building for the future so picks and young players preferred \"},{\"timestamp\":\"1580681231\",\"franchise_id\":\"0035\",\"willGiveUp\":\"7394,13612,13130,12930,12184,13277,11257\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1570798087\",\"franchise_id\":\"0036\",\"willGiveUp\":\"11644,14113\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1557251511\",\"franchise_id\":\"0038\",\"willGiveUp\":\"13116,12620,14106,14113,FP_0038_2020_5,FP_0038_2020_6\",\"inExchangeFor\":\"2020 1st for 60\\r 2020 2nd for 20\\r Both for 75\"},{\"timestamp\":\"1580665276\",\"franchise_id\":\"0039\",\"willGiveUp\":\"11660,11244\",\"inExchangeFor\":\"Most interested in a WR.\"},{\"timestamp\":\"1580578258\",\"franchise_id\":\"0040\",\"willGiveUp\":\"\",\"inExchangeFor\":\"Looking for TE, RB or QB...willing to add rookie $ to deal if the price is right.\"},{\"timestamp\":\"1580562490\",\"franchise_id\":\"0041\",\"willGiveUp\":\"10276,11675,10308,11674,8673,10738,11890,11228,11250,13391\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1557147424\",\"franchise_id\":\"0042\",\"willGiveUp\":\"\",\"inExchangeFor\":\"Russ for $185\"},{\"timestamp\":\"1580917370\",\"franchise_id\":\"0043\",\"willGiveUp\":\"12637,11182,13146,14086,13606,13607,14071,8247,10838,11248\",\"inExchangeFor\":\"Looking for QB/WR ....\"},{\"timestamp\":\"1557117258\",\"franchise_id\":\"0044\",\"willGiveUp\":\"13115\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580735108\",\"franchise_id\":\"0045\",\"willGiveUp\":\"12151,14107,13153,14102,14136,12652\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580561732\",\"franchise_id\":\"0047\",\"willGiveUp\":\"12626,14105,12175,12647,13164,11680,11678,13157,14136,13630\",\"inExchangeFor\":\"QB/RB/TE\"},{\"timestamp\":\"1572412816\",\"franchise_id\":\"0049\",\"willGiveUp\":\"10729\",\"inExchangeFor\":\"youth/future picks\"},{\"timestamp\":\"1573077590\",\"franchise_id\":\"0050\",\"willGiveUp\":\"12151,7942,10973,12934\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1558600789\",\"franchise_id\":\"0051\",\"willGiveUp\":\"\",\"inExchangeFor\":\"Looking for a QB\"},{\"timestamp\":\"1572901485\",\"franchise_id\":\"0052\",\"willGiveUp\":\"\",\"inExchangeFor\":\"QBs, youth & picks\"},{\"timestamp\":\"1557350591\",\"franchise_id\":\"0053\",\"willGiveUp\":\"13156\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580647721\",\"franchise_id\":\"0054\",\"willGiveUp\":\"13116,12625,12626,12447,7393,14122,13645,11938\",\"inExchangeFor\":\"I’m new here so go ahead and try to rob me.\"},{\"timestamp\":\"1566934291\",\"franchise_id\":\"0055\",\"willGiveUp\":\"14085,12801,13299,FP_0055_2020_5,FP_0055_2020_6\",\"inExchangeFor\":\"\"}]},\"encoding\":\"utf-8\"}"),
- date = structure(1606598256, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0.253958, namelookup = 0.029677,
- connect = 0.093954, pretransfer = 0.244044, starttransfer = 0.6407,
- total = 0.640903)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-5b11ff.R b/tests/testthat/api.myfantasyleague.com/2020/export-5b11ff.R
deleted file mode 100644
index 19fb3c20..00000000
--- a/tests/testthat/api.myfantasyleague.com/2020/export-5b11ff.R
+++ /dev/null
@@ -1,24 +0,0 @@
-structure(list(url = "https://www61.myfantasyleague.com/2020/export?TYPE=league&L=54040&JSON=1",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:11:32 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "1197", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:11:32 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- location = "https://www61.myfantasyleague.com/2020/export?TYPE=league&L=54040&JSON=1",
- `content-length` = "0", targethost = "www77"), class = c("insensitive",
- "list"))), list(status = 200L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:11:32 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "1197", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = logical(0),
- flag = logical(0), path = logical(0), secure = logical(0),
- expiration = structure(numeric(0), class = c("POSIXct",
- "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"),
- content = charToRaw("{\"version\":\"1.0\",\"league\":{\"currentWaiverType\":\"BBID_FCFS\",\"playerLimitUnit\":\"LEAGUE\",\"taxiSquad\":\"3\",\"endWeek\":\"17\",\"maxWaiverRounds\":\"8\",\"draft_kind\":\"email\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"franchises\":{\"count\":\"14\",\"franchise\":[{\"logo\":\"https://i.imgur.com/purgTuY.png\",\"icon\":\"https://i.imgur.com/purgTuY.png\",\"abbrev\":\"PIKA\",\"bbidAvailableBalance\":\"159.00\",\"name\":\"Team Pikachu\",\"id\":\"0001\",\"waiverSortOrder\":\"2\"},{\"logo\":\"https://i.imgur.com/spJaesT.png\",\"icon\":\"https://i.imgur.com/spJaesT.png\",\"abbrev\":\"SIMN\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Team Simon Belmont\",\"id\":\"0002\",\"waiverSortOrder\":\"5\"},{\"logo\":\"https://i.imgur.com/UW6ES3y.png\",\"icon\":\"https://i.imgur.com/UW6ES3y.png\",\"abbrev\":\"CFCN\",\"bbidAvailableBalance\":\"50.00\",\"name\":\"Team Captain Falcon\",\"id\":\"0003\",\"waiverSortOrder\":\"10\"},{\"logo\":\"https://i.imgur.com/Z51OK27.png\",\"icon\":\"https://i.imgur.com/Z51OK27.png\",\"abbrev\":\"ICE\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Ice Climbers\",\"id\":\"0004\",\"waiverSortOrder\":\"4\"},{\"logo\":\"https://i.imgur.com/wENaJKg.png\",\"icon\":\"https://i.imgur.com/wENaJKg.png\",\"abbrev\":\"DRM\",\"bbidAvailableBalance\":\"84.00\",\"name\":\"Team Dr. Mario\",\"id\":\"0005\",\"waiverSortOrder\":\"3\"},{\"logo\":\"https://i.imgur.com/5LnPtDi.png\",\"icon\":\"https://i.imgur.com/5LnPtDi.png\",\"abbrev\":\"KDDD\",\"bbidAvailableBalance\":\"87.00\",\"name\":\"Team King Dedede\",\"id\":\"0006\",\"waiverSortOrder\":\"8\"},{\"logo\":\"https://i.imgur.com/eift9jP.png\",\"icon\":\"https://i.imgur.com/eift9jP.png\",\"abbrev\":\"KRBY\",\"bbidAvailableBalance\":\"55.00\",\"name\":\"Team Kirby\",\"id\":\"0007\",\"waiverSortOrder\":\"7\"},{\"logo\":\"https://i.imgur.com/AMtyw0W.png\",\"icon\":\"https://i.imgur.com/AMtyw0W.png\",\"abbrev\":\"FOX\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Fox\",\"id\":\"0008\",\"waiverSortOrder\":\"9\"},{\"logo\":\"https://i.imgur.com/0zprlfO.png\",\"icon\":\"https://i.imgur.com/0zprlfO.png\",\"abbrev\":\"LINK\",\"bbidAvailableBalance\":\"81.00\",\"name\":\"Team Link\",\"id\":\"0009\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://i.imgur.com/RvsGTLu.png\",\"icon\":\"https://i.imgur.com/RvsGTLu.png\",\"abbrev\":\"YSHI\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Yoshi\",\"id\":\"0010\",\"waiverSortOrder\":\"12\"},{\"logo\":\"https://i.imgur.com/zDt3q5J.png\",\"icon\":\"https://i.imgur.com/zDt3q5J.png\",\"abbrev\":\"DDY\",\"bbidAvailableBalance\":\"179.00\",\"name\":\"Team Diddy Kong\",\"id\":\"0011\",\"waiverSortOrder\":\"11\"},{\"logo\":\"https://i.imgur.com/GHB1pVY.png\",\"icon\":\"https://i.imgur.com/GHB1pVY.png\",\"abbrev\":\"MEW2\",\"bbidAvailableBalance\":\"121.00\",\"name\":\"Team Mewtwo\",\"id\":\"0012\",\"waiverSortOrder\":\"6\"},{\"logo\":\"https://i.imgur.com/lp2XsQE.png\",\"icon\":\"https://i.imgur.com/lp2XsQE.png\",\"abbrev\":\"NESS\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Ness\",\"id\":\"0013\",\"waiverSortOrder\":\"1\"},{\"logo\":\"https://i.imgur.com/AQJ99hs.png\",\"icon\":\"https://i.imgur.com/AQJ99hs.png\",\"abbrev\":\"LUIG\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Luigi\",\"id\":\"0014\",\"waiverSortOrder\":\"14\"}]},\"standingsSort\":\"PCT,PTS,\",\"draftPlayerPool\":\"Rookie\",\"id\":\"54040\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":[{\"url\":\"https://www61.myfantasyleague.com/2020/home/54040\",\"year\":\"2020\"},{\"url\":\"https://www61.myfantasyleague.com/2018/home/54040\",\"year\":\"2018\"},{\"url\":\"https://www61.myfantasyleague.com/2019/home/54040\",\"year\":\"2019\"}]},\"rosterSize\":\"25\",\"name\":\"The Super Smash Bros Dynasty League\",\"bbidSeasonLimit\":\"200\",\"draftTimer\":\"ON\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"\",\"draftLimitHours\":\"12:00\",\"starters\":{\"count\":\"9\",\"position\":[{\"name\":\"QB\",\"limit\":\"1\"},{\"name\":\"RB\",\"limit\":\"1-6\"},{\"name\":\"WR\",\"limit\":\"1-6\"},{\"name\":\"TE\",\"limit\":\"1-6\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"17\",\"bestLineup\":\"Yes\",\"precision\":\"2\",\"lastRegularSeasonWeek\":\"13\",\"survivorPool\":\"Yes\",\"bbidTiebreaker\":\"TURN\",\"usesContractYear\":\"0\",\"injuredReserve\":\"8\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"17\",\"rostersPerPlayer\":\"1\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"baseURL\":\"https://www61.myfantasyleague.com\",\"loadRosters\":\"email_draft\"},\"encoding\":\"utf-8\"}"),
- date = structure(1606597892, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0.138472, namelookup = 7.5e-05,
- connect = 8.2e-05, pretransfer = 0.000225, starttransfer = 0.304788,
- total = 0.304955)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-6788e2.R b/tests/testthat/api.myfantasyleague.com/2020/export-6788e2.R
deleted file mode 100644
index 51695e7d..00000000
--- a/tests/testthat/api.myfantasyleague.com/2020/export-6788e2.R
+++ /dev/null
@@ -1,20 +0,0 @@
-structure(list(url = "https://api.myfantasyleague.com/2020/export?TYPE=allRules&JSON=1",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:11:18 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "5621", `content-type` = "application/json; charset=utf-8",
- targethost = "www77"), class = c("insensitive", "list"
- )), all_headers = list(list(status = 200L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:11:18 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "5621", `content-type` = "application/json; charset=utf-8",
- targethost = "www77"), class = c("insensitive", "list"
- )))), cookies = structure(list(domain = logical(0), flag = logical(0),
- path = logical(0), secure = logical(0), expiration = structure(numeric(0), class = c("POSIXct",
- "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"),
- content = charToRaw("{\"allRules\":{\"rule\":[{\"detailedDescription\":{\"$t\":\"This is the total number of Passing TDs in a game by a player or team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Passing TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#P\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a passing TD in a game. This rule is evaluated for EACH passing TD in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Passing TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PS\"}},{\"detailedDescription\":{\"$t\":\"This is the total passing yardage in a game. For individual player positions like QBs, it is the GROSS passing yardage. For team positions like the Team Offense, this is the NET passing yardage. The NET passing yardage is the total passing yardage minus the total sack yardage against the team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Passing Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PY\"}},{\"detailedDescription\":{\"$t\":\"This is the total passing yardage divided by the number of pass completions in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Pass Completion\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"APY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass attempts in a game. It usually applies to the QB position, but other offensive players can have a pass attempt. For example, if a team fakes a field goal, the holder or the kicker may attempt a pass. All pass completions, incompletions, and interceptions are considered to be pass attempts.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Attempts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PA\"}},{\"detailedDescription\":{\"$t\":\"The is the number of pass completions in a game. It usually applies to the QB position, but other offensive positions can also have a completion. For example, a RB might complete a pass after a handoff from the QB.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Completions\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PC\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game divided by the total number of pass attempts in a game, and then multiplied by 100. For example, if a QB completes 7 passes with 10 attempts, his completion percentage = 70.0%\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Pass Completion Percentage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PCP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of incomplete passes in a game. This includes Interceptions.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Incompletions\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"INC\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass interceptions thrown by a player in a game. Do not use this rule for individual defensive players or the team defense position. If you want to score an interception by a defensive player or the team defense, then use the rule called \\\"Interceptions Caught\\\" instead.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Interceptions Thrown\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IN\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass interceptions that a player throws in a game that end up being Returned all the way back for a TD. This category is only valid for offensive positions.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Number of Interceptions Thrown Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#IT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a pass interception that ends up begin returned all the way back for a TD. This category gets evaluated for EACH Interception that is Returned for a TD in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Length of Interception Thrown Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IT\"}},{\"detailedDescription\":{\"$t\":\"This is the number of times a QB is sacked in a game. It can also be used for team positions, like the Team Offense, to score the total number of sacks given up by a team. Do not use this rule for individual defensive players. If you want to score a sack by a defensive player, then use the \\\"Sacked a QB\\\" rule instead.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"QB Sacked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TSK\"}},{\"detailedDescription\":{\"$t\":\"This is the total sack yards lost by a QB in a game. It can also be used for team positions, like the Team Offense, to score the sack yards given up by the team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"QB Sacked Yardage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TSY\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passer Rating\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RATE\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 20 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 20+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P20\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 30 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 30+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P30\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 50 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 50+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P50\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful two point conversion passes in a game by a player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Passing 2 Pointers\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P2\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Rushing TDs in a game by a player or team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Rushing TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#R\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Rushing TD. This rule is evaluated for EACH rushing TD in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Rushing TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RS\"}},{\"detailedDescription\":{\"$t\":\"This is the total rushing yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rushing Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RY\"}},{\"detailedDescription\":{\"$t\":\"This is the total rushing yardage divided by the number of rush attempts in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Rush\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ARY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of rush attempts in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rush Attempts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RA\"}},{\"detailedDescription\":{\"$t\":\"This is the number of rush attempts in a game that result in a gain of 20 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Rushing Plays of 20+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"R20\"}},{\"detailedDescription\":{\"$t\":\"This is the number of rush attempts in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Rushing Plays of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"R40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful two point conversion rushes in a game by a player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rushing 2 Pointers\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"R2\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Receiving TDs in a game by a player or team.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Number of Receiving TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#C\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Receiving TD. This rule is evaluated for EACH receiving TD in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Length of Receiving TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RC\"}},{\"detailedDescription\":{\"$t\":\"This is the total receiving yardage in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receiving Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"CY\"}},{\"detailedDescription\":{\"$t\":\"This is the total receiving yardage divided by the number of receptions in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Reception\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ACY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of receptions in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receptions\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"CC\"}},{\"detailedDescription\":{\"$t\":\"This is the number of times the player was targeted as the intended receiver on a passing play.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Targets\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TGT\"}},{\"detailedDescription\":{\"$t\":\"This is the number of receptions in a game that result in a gain of 20 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Receptions of 20+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"C20\"}},{\"detailedDescription\":{\"$t\":\"This is the number of receptions in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Receptions of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"C40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful two point conversion receptions in a game by a player.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receiving 2 Pointers\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"C2\"}},{\"detailedDescription\":{\"$t\":\"This is the total Rushing plus Receiving Yards\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Rushing + Receiving Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RCY\"}},{\"detailedDescription\":{\"$t\":\"This is the total Passing plus Rushing yards\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passing + Rushing Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PRY\"}},{\"detailedDescription\":{\"$t\":\"This is the total yards from scrimmage. It include Passing, Rushing, and Receiving yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Total Yards from Scrimmage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TYS\"}},{\"detailedDescription\":{\"$t\":\"This is the total yards. It includes Passing, Rushing, Receiving, Punt Return, and Kickoff Return yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Total Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TY\"}},{\"detailedDescription\":{\"$t\":\"This is the Total Number of TDs scored by a player or team. It includes all types of TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Touchdowns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#TD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful field goals in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Field Goals Made\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#F\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a successful field goal. This rule is evaluated for EACH successful field goal in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Field Goal Made\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FG\"}},{\"detailedDescription\":{\"$t\":\"This is the number of missed field goals in a game. This includes field goal attempts that were blocked, but not aborted attempts in which the kicker doesn't get a chance to make the kick.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Field Goals Missed\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#M\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a missed field goal attempt. This rule is evaluated for EACH missed field goal in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Missed Field Goal\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"MG\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of field goal attempts in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Field Goals Attempted\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#A\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful field goals divided by the total number of field goal attempts, and then multiplied by 100. For example, if a kicker makes 2 field goals and misses 2 field goals in a game, then he has a 50% Field Goal Percentage.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Field Goal Percentage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FGP\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of field goal attempts in a game that a kicker had blocked.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Field Goals Had Blocked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"HBF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful extra points in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Extra Points\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of missed extra points in a game. This includes extra point attempts that were blocked.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Extra Points Missed\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EM\"}},{\"detailedDescription\":{\"$t\":\"This is the number of extra points attempted in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Extra Points Attempted\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EA\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful extra points divided by the total number of extra point attempts, and then multiplied by 100.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Extra Point Percentage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EPP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of extra points in a game that a kicker had blocked.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Extra Points Had Blocked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"HBE\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punts in a game. It does not include punt attempts that were blocked.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#N\"}},{\"detailedDescription\":{\"$t\":\"This is the GROSS punt yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punt Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PNY\"}},{\"detailedDescription\":{\"$t\":\"The is the total punt yardage divided by the number of punts.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Punt\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ANY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punts that end up inside the opponent's 20 yard line.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punts Inside 20\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PI\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punts in a game that a punter had blocked by the opponent.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Punts Had Blocked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"HBP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt returns in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Punt Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#UT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a punt return TD. This rule is evaluated for EACH punt return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Punt Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PR\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt returns in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punt Returns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#U\"}},{\"detailedDescription\":{\"$t\":\"This is the total punt return yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punt Return Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"UY\"}},{\"detailedDescription\":{\"$t\":\"This is the total punt return yardage divided by the number of punt returns.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Punt Return\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AUY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt returns in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Punt Returns of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"U40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of kickoff returns in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Kickoff Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#KT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a kickoff return TD. This rule is evaluated for EACH kickoff return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Kickoff Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"KO\"}},{\"detailedDescription\":{\"$t\":\"This is the number of kickoff returns in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Kickoff Returns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#K\"}},{\"detailedDescription\":{\"$t\":\"This is the total kickoff return yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Kickoff Return Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"KY\"}},{\"detailedDescription\":{\"$t\":\"This is the total kickoff return yardage divided by the number of kickoff returns.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Kickoff Return\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AKY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of kickoff returns in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Kickoff Returns of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"K40\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles by a player or a team in a game. This includes \\\"muffs\\\" that occur on a punt or kickoff when a player is trying to field the kick and it bounces off his chest. This includes ALL fumbles whether they are recovered by their own team or by the opponent. Also, this includes ALL fumbles in the entire game, whether they are on offense or defense or special teams. So if you assign this rule to the Team Defense position, it will include the total number of fumbles by the ENTIRE team, not just fumbles by the defense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FU\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles while on offense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles on Offense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FUO\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles while on special teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles on Special Teams\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FUS\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles while on defense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles on Defense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FUD\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles by a player or team that end up being recovered by the opponent. It does not include fumbles that are recovered by the player's own team. Also, this includes ALL fumbles lost in the entire game, whether they are on offense or special teams. So if you assign this rule to the Special Teams position, it will include the total number of fumbles by the ENTIRE team, even if they occurred on offense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost (to Opponent)\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FL\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles (and the opposing team recovers) while on offense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost on Offense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FLO\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles (and the opposing team recovers) while on special teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost on Special Teams\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FLS\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles (and the opposing team recovers) while on defense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost on Defense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FLD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of fumble recoveries that are returned all the way for a TD. This includes any fumbles by the opponent that are returned for a TD, whether they are on defense or special teams. It does NOT include a fumble by a player's own team that is then recovered by a player and run in for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Defensive Fumble Recovery TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#DR\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a defensive or special teams fumble recovery TD. This rule is evaluated for EACH fumble recovery TD in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Defensive Fumble Recovery TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"DR\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles that are recovered by a player or team. This does not include fumbles by a player's own team that are then recovered by his team. It only includes fumbles that are then recovered by the opponent. This includes ALL fumble recoveries, whether they occurred on defense or special teams. So if you assign this rule to the Team Defense position, it will include the total number of fumble recoveries by the ENTIRE team, even if they occurred on Special Teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumble Recoveries (from Opponent)\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FC\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles that are recovered by a player or team while on defense. This stat is not updated during the games in the live stats. It is only updated after the games are finalized.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumble Recoveries on Defense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FCD\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles that are recovered by a player or team while on special teams. This stat is not updated during the games in the live stats. It is only updated after the games are finalized.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumble Recoveries on Special Teams\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FCS\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of yards that a player or team returned the ball after recovering a fumble that was lost by the opponent.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Opponent Fumble Recovery Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FCY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of fumbles lost by a player in a game that are returned all the way back for a TD by the other team. For example, if a running back fumbles the ball and it ends up being recovered by the opponent and returned for a TD on the same play. This includes fumbles that are lost on offense or on special teams.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Number of Fumbles Lost Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#FT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a lost fumble that ends up being returned all the way back for a TD by the opposing. This rule is evaluated for EACH lost fumble that ends up being returned for a TD in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Length of Lost Fumble Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FT\"}},{\"detailedDescription\":{\"$t\":\"This is the number of fumble recoveries that are returned all the way for a TD after an offensive fumble by someone on the same NFL team. This includes fumbles that are recovered by a player's own team on any play from scrimmage. For example, if a Running Back fumbles at the 1 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 1 yard line and advances to the endzone for a TD, then it is considered an Offensive fumble recovery TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Offensive Fumble Recovery TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#FR\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of an offensive fumble recovery that is returned all the way for a TD. This includes fumbles that are recovered by a player's own team on any play from scrimmage. For example, if a Running Back fumbles at the 1 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 1 yard line and advances to the endzone for a TD, then it is considered an Offensive fumble recovery TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Offensive Fumble Recovery TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FR\"}},{\"detailedDescription\":{\"$t\":\"This is the number of own fumble recoveries. This ONLY includes fumbles that are recovered by a player's own team. For example, if a Running Back fumbles at the 1 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 1 yard line and advances to the endzone for a TD, then it is considered an Own fumble recovery TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Own Fumble Recoveries\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"OFC\"}},{\"detailedDescription\":{\"$t\":\"This is the total yardage all offensive fumble recoveries. This ONLY includes fumbles that are recovered by a player's own team. For example, if a Running Back fumbles at the 5 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 3 yard line and advances to the endzone for a TD, then it is considered 3 yards of own fumble recovery yardage.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Own Fumble Recovery Yardage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"OFCY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Forced Fumbles by a player in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Forced Fumbles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of interceptions in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Interception Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#IR\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of an interception return TD. This rule is evaluated for EACH interception return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Interception Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IR\"}},{\"detailedDescription\":{\"$t\":\"This is the number of interceptions by a defensive player or team defense in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Interceptions Caught\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IC\"}},{\"detailedDescription\":{\"$t\":\"This is the total return yardage by a player or team after an interception.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Interception Return Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ICY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of time a defensive player breaks up a pass, either by knocking it down or tipping it, etc.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passes Defended\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of blocked field goals that are returned all the way for a TD. The player that blocked the field goal is not necessarily the same player that returns it for a TD. So one player could have a blocked field goal and another player could have a blocked field goal TD on the same play.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Blocked Field Goal TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#BF\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a blocked field goal TD. This rule is evaluated for EACH blocked field goal TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Blocked Field Goal TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of field goal attempts in a game that are blocked by a defensive player or a team defense position.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Blocked Field Goals\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BLF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of missed field goals in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Missed Field Goal Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#MF\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a missed field goal return TD. This rule is evaluated for EACH missed field goal return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Missed Field Goal Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"MF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of blocked punts that are returned all the way for a TD. The player that blocked the punt is not necessarily the same player that returns it for a TD. So one player could have a blocked punt and another player could have a blocked punt TD on the same play.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Blocked Punt TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#BP\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a blocked punt TD. This rule is evaluated for EACH blocked punt TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Blocked Punt TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt attempts in a game that are blocked by a defensive player or a team defense position.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Blocked Punts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BLP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of extra point attempts that are blocked by a defensive player or a team defense position.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Blocked Extra Points\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BLE\"}},{\"detailedDescription\":{\"$t\":\"This is the number of tackles in a game by a defensive player. It does not include tackles by offensive players after a fumble recovery or an interception. It also does not include tackles by players on special teams, such as on a punt or kickoff return. Please be aware that tackles are NOT an official stat.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Defensive Tackles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TKD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of assisted tackles in a game by a defensive player. It does not include assists by offensive players after a fumble recovery or an interception. It also does not include assists by players on special teams, such as on a punt or kickoff return. Please be aware that tackles and assists are NOT an official stat.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Defensive Assists\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ASD\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of tackles in a game by a player. It includes tackles by an offensive player after a fumble or interception, and it includes miscellaneous tackles on special teams.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Tackles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TK\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of assisted tackles in a game by a player. It includes assists by an offensive player after a fumble or interception, and it includes miscellaneous assists on special teams.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Assists\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AS\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Assists Divided by 2\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AS2\"}},{\"detailedDescription\":{\"$t\":\"This is the number of sacks in a game by a defensive player or the team defense position. Individual defensive players can have 1/2 sacks.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Sacked a QB\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SK\"}},{\"detailedDescription\":{\"$t\":\"This is the total lost yardage of the sacks in a game by a defensive player or a team defense position. Individual defensive players can have 1/2 yards.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Sacked a QB Yardage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SKY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of times a defensive player makes a hit on a Quarterback behind the line of scrimmage during a pass attempt. It is not updated during live scoring.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Quarterback Hits\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"QH\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Tackles for a Loss in a game by a defensive player. This stat is not updated during the games in the live stats. It is only updated after the games are finalized.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Tackles for a Loss\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TKL\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Safeties in a game by a defensive player or a team defense position. It includes ALL safeties whether they are on defense or special teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Safeties\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SF\"}},{\"detailedDescription\":{\"$t\":\"This is the total points scored against a team in a game. (This matches the scoreboard points at the end of a game). If your league chooses to not include those points scored by the Defense then please see our Help Center for additional setup options.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Points Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TPA\"}},{\"detailedDescription\":{\"$t\":\"This is the points scored against a team on Special Teams, which only includes points scored on Punt Returns and Kickoff Returns. It also includes any conversion points scored after the TD (extra point or a 2 Pt Conversion)\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Special Teams Points Against\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"STPA\"}},{\"detailedDescription\":{\"$t\":\"This is the points scored against a team on Offense, which only includes points scored via Passing and Rushing TDs as well as Field Goals. It also includes any conversion points scored after the TDs (extra point or a 2 Pt Conversion).\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Offensive Points Against\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"OPA\"}},{\"detailedDescription\":{\"$t\":\"This is the total yardage allowed by a team in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Net Yards Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TYA\"}},{\"detailedDescription\":{\"$t\":\"This the total passing yardage allowed by a team in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Net Yards Passing Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TYP\"}},{\"detailedDescription\":{\"$t\":\"This is the total rushing yardage allowed by a team in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Net Yards Rushing Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TYR\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of TDs allowed on Special Teams, which only includes Punt Return and Kickoff Return TDs scored by the opponent.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Special Teams TDs Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"STTA\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of TDs allowed on Offense, which only includes Passing and Rushing TDs scored by the opponent.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Offensive TDs Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"OTA\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Defensive TDs scored. It includes Interception Return TDs and Opponent Fumble Recovery TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Defensive TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#D\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Defensive TD. It includes Interception Return TDs and Opponent Fumble Recovery TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Defensive TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"DD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of defensive two point conversion returns in a game. This can be scored by blocking an extra point attempt, or by intercepting a 2-point conversion pass attempt, or by recovering a 2-point conversion fumble, and then returning it all the way to the other end zone.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Defensive Conversion Returns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"D2\"}},{\"detailedDescription\":{\"$t\":\"This is the number of one point safeties in a game. This can be scored on a 2-point conversion attempt by tackling the opponent in their own end zone.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Safeties for 1 Point\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SF1\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of successful two point conversions.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Successful 2 Point Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"M2\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of failed two point conversion attempts.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Failed 2 Point Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"F2\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Defensive and Special Teams TDs scored. It includes Interception Return TDs, Opponent Fumble Recovery TDs, Blocked Punt TDs, Blocked FG TDs, Punt Return TDs, Kickoff Return TDs, and Missed FG Return TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Defensive & Special Teams TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#T\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Defensive or Special Teams TD. It includes Interception Return TDs, Opponent Fumble Recovery TDs, Blocked Punt TDs, Blocked FG TDs, Punt Return TDs, Kickoff Return TDs, and Missed FG Return TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Defensive/Special Teams TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TT\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of penalties for the team or player. It is not divided between offense and defense. For example, if you assign this rule to the Team Defense, then they will be scored for all of the penalties by the entire team, whether they occurred on offense or defense. Note that this stat is not updated live for individual players.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Penalties\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"F\"}},{\"detailedDescription\":{\"$t\":\"This is the total yardage lost on all of the penalties by the team or player. Note that this stat is not updated live for individual players.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Penalty Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FY\"}},{\"detailedDescription\":{\"$t\":\"This is the time of possession in minutes for a team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Time of Possession (in Minutes)\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TIME\"}},{\"detailedDescription\":{\"$t\":\"This is the total points scored by a team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Points Scored\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TPS\"}},{\"detailedDescription\":{\"$t\":\"This is the difference in score between the team and the opponent. It can be positive or zero or negative. For example, if a team wins a game 20 to 17, then the point differential is 3. If a team loses a game 30 to 21, then the point differential is -9 (negative 9). This rule can be used to score a \\\"WIN\\\" or a \\\"LOSS\\\" or a \\\"TIE\\\" for a team position or an individual player. A point differential of 1 or more is considered a WIN. A point differential of -1 or less is considered a LOSS. A point differential of 0 is a TIE.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Point Differential\"},\"isCoach\":\"1\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"DIF\"}},{\"detailedDescription\":{\"$t\":\"This is the offensive points scored by a team. It includes Passing and Rushing TDs, as well as Field Goals\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Offensive Points Only\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"OPS\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of First Downs for the team or player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Passing First Downs gained by the team or player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Passing First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"1P\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Rushing First Downs gained by the team or player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rushing First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"1R\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Receiving First Downs gained by the player.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receiving First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"1C\"}},{\"detailedDescription\":{\"$t\":\"This is the number of First Downs gained because of Penalties.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Penalty First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"1F\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful third down conversions by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Third Down Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"3D\"}},{\"detailedDescription\":{\"$t\":\"This is the number of failed third down conversion attempts by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Third Downs Failed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"3F\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful fourth down conversions by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fourth Down Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"4D\"}},{\"detailedDescription\":{\"$t\":\"This is the number of failed fourth down conversion attempts by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fourth Downs Failed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"4F\"}},{\"detailedDescription\":{\"$t\":\"This is the number of wins a coach has.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Games Won\"},\"isCoach\":\"1\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"W\"}},{\"detailedDescription\":{\"$t\":\"This is the number of losses a coach has.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Games Lost\"},\"isCoach\":\"1\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"L\"}},{\"detailedDescription\":{\"$t\":\"This is the number of ties a coach has.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Games Tied\"},\"isCoach\":\"1\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"T\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Passing Yards Allowed per Game\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"APYAG\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passing Defense Rank\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"APYAR\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Rushing Yards Allowed per Game\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"ARYAG\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Rushing Defense Rank\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"ARYAR\"}}]},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"),
- date = structure(1606597878, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 4.3e-05,
- connect = 4.8e-05, pretransfer = 0.000132, starttransfer = 0.217411,
- total = 0.227086)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-96a6d5.R b/tests/testthat/api.myfantasyleague.com/2020/export-96a6d5.R
deleted file mode 100644
index 2102860f..00000000
--- a/tests/testthat/api.myfantasyleague.com/2020/export-96a6d5.R
+++ /dev/null
@@ -1,21 +0,0 @@
-structure(list(url = "https://api.myfantasyleague.com/2020/export?TYPE=players&DETAILS=1&JSON=1",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:17:37 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-type` = "application/json; charset=utf-8", targethost = "www70",
- `transfer-encoding` = "chunked"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:17:37 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-type` = "application/json; charset=utf-8",
- targethost = "www70", `transfer-encoding` = "chunked"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = logical(0),
- flag = logical(0), path = logical(0), secure = logical(0),
- expiration = structure(numeric(0), class = c("POSIXct",
- "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"),
- content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"1606597447\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"stats_id\":\"2\",\"draft_team\":\"BUF\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"twitter_username\":\"buffalobills\",\"id\":\"0501\",\"team\":\"BUF\",\"fleaflicker_id\":\"2331\",\"cbs_id\":\"409\"},{\"draft_year\":\"1970\",\"stats_id\":\"11\",\"draft_team\":\"IND\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"twitter_username\":\"nflcolts\",\"id\":\"0502\",\"team\":\"IND\",\"fleaflicker_id\":\"2341\",\"cbs_id\":\"402\"},{\"draft_year\":\"1970\",\"stats_id\":\"15\",\"draft_team\":\"MIA\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"twitter_username\":\"MiamiDolphins\",\"id\":\"0503\",\"team\":\"MIA\",\"fleaflicker_id\":\"2344\",\"cbs_id\":\"404\"},{\"draft_year\":\"1970\",\"stats_id\":\"17\",\"draft_team\":\"NEP\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"twitter_username\":\"patriots\",\"id\":\"0504\",\"team\":\"NEP\",\"fleaflicker_id\":\"2346\",\"cbs_id\":\"406\"},{\"draft_year\":\"1970\",\"stats_id\":\"20\",\"draft_team\":\"NYJ\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"nyjets\",\"id\":\"0505\",\"team\":\"NYJ\",\"fleaflicker_id\":\"2349\",\"cbs_id\":\"410\"},{\"draft_year\":\"1970\",\"stats_id\":\"4\",\"draft_team\":\"CIN\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"twitter_username\":\"Bengals\",\"id\":\"0506\",\"team\":\"CIN\",\"fleaflicker_id\":\"2334\",\"cbs_id\":\"426\"},{\"draft_year\":\"1970\",\"stats_id\":\"5\",\"draft_team\":\"CLE\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"twitter_username\":\"OfficialBrowns\",\"id\":\"0507\",\"team\":\"CLE\",\"fleaflicker_id\":\"2335\",\"cbs_id\":\"419\"},{\"draft_year\":\"1970\",\"stats_id\":\"10\",\"draft_team\":\"TEN\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"twitter_username\":\"tennesseetitans\",\"id\":\"0508\",\"team\":\"TEN\",\"fleaflicker_id\":\"2358\",\"cbs_id\":\"431\"},{\"draft_year\":\"1970\",\"stats_id\":\"30\",\"draft_team\":\"JAC\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"twitter_username\":\"jaguarsinsider\",\"id\":\"0509\",\"team\":\"JAC\",\"fleaflicker_id\":\"2342\",\"cbs_id\":\"422\"},{\"draft_year\":\"1970\",\"stats_id\":\"23\",\"draft_team\":\"PIT\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"twitter_username\":\"steelers\",\"id\":\"0510\",\"team\":\"PIT\",\"fleaflicker_id\":\"2352\",\"cbs_id\":\"413\"},{\"draft_year\":\"1970\",\"stats_id\":\"7\",\"draft_team\":\"DEN\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"twitter_username\":\"DenverBroncos\",\"id\":\"0511\",\"team\":\"DEN\",\"fleaflicker_id\":\"2337\",\"cbs_id\":\"428\"},{\"draft_year\":\"1970\",\"stats_id\":\"12\",\"draft_team\":\"KCC\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"twitter_username\":\"kcchiefs\",\"id\":\"0512\",\"team\":\"KCC\",\"fleaflicker_id\":\"2343\",\"cbs_id\":\"403\"},{\"draft_year\":\"1970\",\"stats_id\":\"13\",\"draft_team\":\"OAK\",\"position\":\"Def\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"twitter_username\":\"raiders\",\"id\":\"0513\",\"team\":\"LVR\",\"fleaflicker_id\":\"2350\",\"cbs_id\":\"424\"},{\"draft_year\":\"1970\",\"stats_id\":\"24\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"chargers\",\"id\":\"0514\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"stats_id\":\"26\",\"draft_team\":\"SEA\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"twitter_username\":\"seahawks\",\"id\":\"0515\",\"team\":\"SEA\",\"fleaflicker_id\":\"2354\",\"cbs_id\":\"416\"},{\"draft_year\":\"1970\",\"stats_id\":\"6\",\"draft_team\":\"DAL\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"twitter_username\":\"dallascowboys\",\"id\":\"0516\",\"team\":\"DAL\",\"fleaflicker_id\":\"2336\",\"cbs_id\":\"427\"},{\"draft_year\":\"1970\",\"stats_id\":\"19\",\"draft_team\":\"NYG\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"giants\",\"id\":\"0517\",\"team\":\"NYG\",\"fleaflicker_id\":\"2348\",\"cbs_id\":\"408\"},{\"draft_year\":\"1970\",\"stats_id\":\"21\",\"draft_team\":\"PHI\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"twitter_username\":\"Eagles\",\"id\":\"0518\",\"team\":\"PHI\",\"fleaflicker_id\":\"2351\",\"cbs_id\":\"411\"},{\"draft_year\":\"1970\",\"stats_id\":\"22\",\"draft_team\":\"ARI\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"twitter_username\":\"AZCardinals\",\"id\":\"0519\",\"team\":\"ARI\",\"fleaflicker_id\":\"2328\",\"cbs_id\":\"412\"},{\"draft_year\":\"1970\",\"stats_id\":\"28\",\"draft_team\":\"WAS\",\"position\":\"Def\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"twitter_username\":\"Redskins\",\"id\":\"0520\",\"team\":\"WAS\",\"fleaflicker_id\":\"2359\",\"cbs_id\":\"418\"},{\"draft_year\":\"1970\",\"stats_id\":\"3\",\"draft_team\":\"CHI\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"twitter_username\":\"ChicagoBears\",\"id\":\"0521\",\"team\":\"CHI\",\"fleaflicker_id\":\"2333\",\"cbs_id\":\"421\"},{\"draft_year\":\"1970\",\"stats_id\":\"8\",\"draft_team\":\"DET\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"twitter_username\":\"detroitlionsnfl\",\"id\":\"0522\",\"team\":\"DET\",\"fleaflicker_id\":\"2338\",\"cbs_id\":\"429\"},{\"draft_year\":\"1970\",\"stats_id\":\"9\",\"draft_team\":\"GBP\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"packers\",\"id\":\"0523\",\"team\":\"GBP\",\"fleaflicker_id\":\"2339\",\"cbs_id\":\"430\"},{\"draft_year\":\"1970\",\"stats_id\":\"16\",\"draft_team\":\"MIN\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"twitter_username\":\"Vikings\",\"id\":\"0524\",\"team\":\"MIN\",\"fleaflicker_id\":\"2345\",\"cbs_id\":\"405\"},{\"draft_year\":\"1970\",\"stats_id\":\"27\",\"draft_team\":\"TBB\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"TBBuccaneers\",\"id\":\"0525\",\"team\":\"TBB\",\"fleaflicker_id\":\"2357\",\"cbs_id\":\"417\"},{\"draft_year\":\"1970\",\"stats_id\":\"1\",\"draft_team\":\"ATL\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"twitter_username\":\"AtlantaFalcons\",\"id\":\"0526\",\"team\":\"ATL\",\"fleaflicker_id\":\"2329\",\"cbs_id\":\"401\"},{\"draft_year\":\"1970\",\"stats_id\":\"29\",\"draft_team\":\"CAR\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"twitter_username\":\"Panthers\",\"id\":\"0527\",\"team\":\"CAR\",\"fleaflicker_id\":\"2332\",\"cbs_id\":\"420\"},{\"draft_year\":\"1970\",\"stats_id\":\"14\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"STLouisRams\",\"id\":\"0528\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"stats_id\":\"18\",\"draft_team\":\"NOS\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"twitter_username\":\"saints\",\"id\":\"0529\",\"team\":\"NOS\",\"fleaflicker_id\":\"2347\",\"cbs_id\":\"407\"},{\"draft_year\":\"1970\",\"stats_id\":\"25\",\"draft_team\":\"SFO\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"twitter_username\":\"49ers\",\"id\":\"0530\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"stats_id\":\"33\",\"draft_team\":\"BAL\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"twitter_username\":\"ravens\",\"id\":\"0531\",\"team\":\"BAL\",\"fleaflicker_id\":\"2330\",\"cbs_id\":\"425\"},{\"draft_year\":\"1970\",\"stats_id\":\"34\",\"draft_team\":\"HOU\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"twitter_username\":\"houstontexans\",\"id\":\"0532\",\"team\":\"HOU\",\"fleaflicker_id\":\"2340\",\"cbs_id\":\"432\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1994\",\"stats_id\":\"39685\",\"draft_team\":\"NYJ\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"twitter_username\":\"PeteCarroll\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"draft_team\":\"FA\",\"birthdate\":\"94366800\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"height\":\"72\",\"rotowire_id\":\"395\",\"jersey\":\"4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"twitter_username\":\"aVinatieri4\",\"team\":\"FA\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"FA\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"TBB\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"HOU\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"FA\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"FA\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"LVR\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"FA\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"IND\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"FA\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"WAS\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"21\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"NYJ\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"4\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"FA\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"FA\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"363\",\"position\":\"Coach\",\"name\":\"Crennel, Romeo\",\"stats_global_id\":\"0\",\"id\":\"8068\",\"team\":\"HOU\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"FA\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"33\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"ARI\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"TEN\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"ARI\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"FA\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"FA\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"twitter_username\":\"CoachTomlin\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"28\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"DET\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"FA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"FA\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"SEA\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"FA\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"FA\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"FA\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"6\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"NEP\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"FA\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"CB\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"BAL\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"BAL\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"NYJ\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"FA\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"FA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"FA\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"jersey\":\"18\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"JAC\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"FA\",\"cbs_id\":\"519042\"},{\"draft_year\":\"0\",\"birthdate\":\"210574800\",\"draft_team\":\"FA\",\"stats_id\":\"389\",\"position\":\"Coach\",\"name\":\"Morris, Raheem\",\"stats_global_id\":\"0\",\"id\":\"9424\",\"team\":\"ATL\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"FA\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"NOS\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"TBB\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"FA\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"FA\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"3\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"TBB\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"5\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"NYG\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"DET\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"NEP\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"FA\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"FA\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"FA\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"BAL\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"SEA\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"DET\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"FA\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"FA\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"FA\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"NYG\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"TBB\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"95\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"LAC\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"FA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"FA\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"17\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"NOS\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"18\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"CHI\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DT\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"97\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"JAC\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"FA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"TBB\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"FA\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"FA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"FA\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"FA\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"FA\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"TBB\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"FA\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"23\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"CLE\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"FA\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"twitter_username\":\"RiverboatRonHC\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"94\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"CLE\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"FA\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"FA\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"LB\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"94\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"CHI\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"NEP\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"aldonsmith/2495487\",\"rotoworld_id\":\"6477\",\"stats_id\":\"24794\",\"position\":\"DE\",\"stats_global_id\":\"463434\",\"espn_id\":\"13988\",\"weight\":\"265\",\"id\":\"10274\",\"birthdate\":\"628405200\",\"draft_team\":\"SFO\",\"name\":\"Smith, Aldon\",\"draft_pick\":\"7\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7446\",\"jersey\":\"58\",\"twitter_username\":\"AldonSmith\",\"sportsdata_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"team\":\"DAL\",\"cbs_id\":\"1630791\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"50\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"DE\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"HOU\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"HOU\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"DAL\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"FA\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"FA\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"NYG\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"BAL\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"DEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"FA\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"88\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"ATL\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"25\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"BUF\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"FA\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"NYG\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"FA\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"CHI\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"FA\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"FA\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"brucemiller/2495314\",\"rotoworld_id\":\"6713\",\"stats_id\":\"24998\",\"position\":\"TE\",\"stats_global_id\":\"324654\",\"espn_id\":\"14083\",\"weight\":\"248\",\"id\":\"10437\",\"birthdate\":\"555224400\",\"draft_team\":\"SFO\",\"name\":\"Miller, Bruce\",\"draft_pick\":\"8\",\"college\":\"Central Florida\",\"height\":\"74\",\"rotowire_id\":\"7505\",\"jersey\":\"49\",\"twitter_username\":\"BruceMill49er\",\"sportsdata_id\":\"9be8224a-4a19-4f6a-a2be-ecbd3a24868c\",\"team\":\"FA\",\"cbs_id\":\"1114232\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"56\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"CLE\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"LAR\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"FA\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"BUF\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"LAC\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"CIN\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"9\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"CHI\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"CHI\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"FA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"DET\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"FA\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"17\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"SFO\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"PHI\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"FA\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"51\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"SEA\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"FA\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"FA\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"20\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"ARI\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"42\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"DEN\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"georgeiloka/2532869\",\"rotoworld_id\":\"7502\",\"stats_id\":\"25877\",\"position\":\"S\",\"stats_global_id\":\"449634\",\"espn_id\":\"15085\",\"weight\":\"227\",\"id\":\"10784\",\"birthdate\":\"645858000\",\"draft_team\":\"CIN\",\"name\":\"Iloka, George\",\"draft_pick\":\"32\",\"college\":\"Boise State\",\"height\":\"76\",\"rotowire_id\":\"8335\",\"jersey\":\"20\",\"twitter_username\":\"George_iloka\",\"sportsdata_id\":\"2b9494e4-953a-4aac-afe7-edd2d7be27da\",\"team\":\"MIN\",\"cbs_id\":\"1621494\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"BAL\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"FA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"31\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"IND\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"FA\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"FA\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"LVR\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"FA\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"FA\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"76\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"CIN\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"52\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"CAR\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"FA\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"29\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"BUF\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DE\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"94\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"TEN\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"2\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"DAL\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"NYG\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"29\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NYG\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"billywinn/2532976\",\"rotoworld_id\":\"7646\",\"stats_id\":\"25915\",\"position\":\"DE\",\"stats_global_id\":\"381799\",\"espn_id\":\"15021\",\"weight\":\"300\",\"id\":\"10888\",\"birthdate\":\"608619600\",\"draft_team\":\"CLE\",\"name\":\"Winn, Billy\",\"draft_pick\":\"35\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8160\",\"jersey\":\"90\",\"twitter_username\":\"Billy_Boi_90\",\"sportsdata_id\":\"408aff57-2b32-41f7-9520-0064ad14af21\",\"team\":\"GBP\",\"cbs_id\":\"1274395\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"FA\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"LVR\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"CLE\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"SEA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"11\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"NYJ\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"46\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"CAR\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"FA\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"CHI\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"SEA\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"twitter_username\":\"BruceArians\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"FA\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"FA\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"FA\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"FA\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"FA\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"0\",\"nfl_id\":\"kylenelson/2530722\",\"rotoworld_id\":\"7010\",\"stats_id\":\"25291\",\"position\":\"TE\",\"stats_global_id\":\"324970\",\"espn_id\":\"14426\",\"weight\":\"240\",\"id\":\"11128\",\"draft_team\":\"FA\",\"birthdate\":\"528699600\",\"name\":\"Nelson, Kyle\",\"college\":\"New Mexico State\",\"rotowire_id\":\"9186\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"09a1fe57-c026-4ca4-b084-48b8ed9c106f\",\"team\":\"FA\",\"cbs_id\":\"1133543\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"2\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"JAC\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tylerbray/2540173\",\"rotoworld_id\":\"8394\",\"stats_id\":\"27170\",\"position\":\"QB\",\"stats_global_id\":\"542809\",\"espn_id\":\"16252\",\"weight\":\"215\",\"id\":\"11170\",\"birthdate\":\"693810000\",\"draft_team\":\"FA\",\"name\":\"Bray, Tyler\",\"college\":\"Tennessee\",\"rotowire_id\":\"8621\",\"height\":\"78\",\"jersey\":\"9\",\"twitter_username\":\"tbrayvol8\",\"sportsdata_id\":\"b13ba4c3-5761-40fb-aa6a-935f09c39a6b\",\"team\":\"CHI\",\"cbs_id\":\"1737685\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"TBB\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"34\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"JAC\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"LVR\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"KCC\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"FA\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"5\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"FA\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"12\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"ARI\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"FA\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"13\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"PHI\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"81\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"SFO\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"88\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"JAC\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"85\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"NYG\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"damontremoore/2540138\",\"rotoworld_id\":\"8424\",\"stats_id\":\"26704\",\"position\":\"DE\",\"stats_global_id\":\"558567\",\"espn_id\":\"15858\",\"weight\":\"260\",\"id\":\"11261\",\"birthdate\":\"716187600\",\"draft_team\":\"NYG\",\"name\":\"Moore, Damontre\",\"draft_pick\":\"19\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8654\",\"jersey\":\"99\",\"twitter_username\":\"tmoore94\",\"sportsdata_id\":\"03af0e0d-a443-4b09-9ab5-4f2695248346\",\"team\":\"SEA\",\"cbs_id\":\"1737651\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"57\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"SFO\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"SFO\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"datonejones/2539325\",\"rotoworld_id\":\"8426\",\"stats_id\":\"26649\",\"position\":\"DE\",\"stats_global_id\":\"461736\",\"espn_id\":\"15798\",\"weight\":\"285\",\"id\":\"11272\",\"birthdate\":\"648795600\",\"draft_team\":\"GBP\",\"name\":\"Jones, Datone\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"8660\",\"jersey\":\"96\",\"twitter_username\":\"IAM_Dat_One\",\"sportsdata_id\":\"3258dbca-9194-4fd7-bc2b-8440c73d0d9c\",\"team\":\"LVR\",\"cbs_id\":\"1631952\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"CIN\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DT\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"LVR\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"FA\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"DEN\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"90\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"CHI\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"FA\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"FA\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"50\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"CHI\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"54\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"FA\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"23\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"DET\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"27\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"IND\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"23\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"NYG\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"47\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"SFO\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"FA\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"FA\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"SFO\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"24\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"PHI\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"58\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"DET\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"FA\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"26\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"DET\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"FA\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"stevenmeans/2541310\",\"rotoworld_id\":\"8557\",\"stats_id\":\"26770\",\"position\":\"DE\",\"stats_global_id\":\"466334\",\"espn_id\":\"15936\",\"weight\":\"263\",\"id\":\"11374\",\"birthdate\":\"628837200\",\"draft_team\":\"TBB\",\"name\":\"Means, Steven\",\"draft_pick\":\"14\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"8974\",\"jersey\":\"55\",\"sportsdata_id\":\"c639a18a-ee1a-46ed-8707-580711fa33db\",\"team\":\"ATL\",\"cbs_id\":\"2057662\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"54\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"BUF\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"HOU\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"BAL\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DEN\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"84\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DT\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"FA\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"DET\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"S\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"FA\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"86\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CHI\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"FA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"FA\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"ATL\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"SEA\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"95\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"SEA\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"LAC\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"FA\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"31\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"PHI\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"TEN\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"DEN\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"FA\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"FA\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"NYJ\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"JAC\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"LVR\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"NEP\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"FA\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"HOU\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"TEN\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"FA\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"CAR\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"FA\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"LVR\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"WAS\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"30\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"SEA\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"16\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"NYG\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"FA\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"13\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"NEP\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"13\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"HOU\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"FA\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"NEP\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"FA\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"PIT\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"FA\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"IND\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"TEN\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"JAC\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"98\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"FA\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"CHI\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"FA\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"MIA\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"97\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"34\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"ATL\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"FA\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"FA\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"CB\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"LVR\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"FA\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"22\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"FA\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"S\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"GBP\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"FA\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"FA\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"29\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"86\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"PHI\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"LAC\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"71\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"LB\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"54\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"IND\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"TBB\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"FA\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DT\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"TEN\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"FA\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"CB\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"54\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"WAS\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"LVR\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"92\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"FA\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"PIT\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"caraunreid/2543748\",\"rotoworld_id\":\"9672\",\"stats_id\":\"27686\",\"position\":\"DE\",\"stats_global_id\":\"521309\",\"espn_id\":\"16853\",\"weight\":\"292\",\"id\":\"11820\",\"birthdate\":\"690872400\",\"draft_team\":\"DET\",\"name\":\"Reid, Caraun\",\"draft_pick\":\"18\",\"college\":\"Princeton\",\"height\":\"74\",\"rotowire_id\":\"9395\",\"jersey\":\"75\",\"twitter_username\":\"ChopReid\",\"sportsdata_id\":\"aa82ed23-934e-451f-ac47-65c63a84bf16\",\"team\":\"FA\",\"cbs_id\":\"1752983\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"LVR\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"ARI\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"FA\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"bennettjackson/2543834\",\"rotoworld_id\":\"9687\",\"stats_id\":\"27715\",\"position\":\"S\",\"stats_global_id\":\"560847\",\"espn_id\":\"16879\",\"weight\":\"192\",\"id\":\"11837\",\"birthdate\":\"684997200\",\"draft_team\":\"NYG\",\"name\":\"Jackson, Bennett\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9671\",\"jersey\":\"33\",\"twitter_username\":\"B_Jax2\",\"sportsdata_id\":\"144ef260-a22e-45df-9bbe-52a11f9188ba\",\"team\":\"NYJ\",\"cbs_id\":\"1749630\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"FA\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"DAL\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, T.J.\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"IND\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"94\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"NEP\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DE\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"FA\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"FA\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"NOS\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"2\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"CHI\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10025\",\"stats_id\":\"28075\",\"position\":\"LB\",\"stats_global_id\":\"559263\",\"espn_id\":\"16991\",\"weight\":\"255\",\"id\":\"11954\",\"draft_team\":\"FA\",\"birthdate\":\"689835600\",\"name\":\"Elliott, Jayrone\",\"college\":\"Toledo\",\"rotowire_id\":\"9955\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"4642915e-8c37-4692-9169-fa210b6efc8c\",\"team\":\"PIT\",\"cbs_id\":\"2130181\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"WAS\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chandlercatanzaro/2550325\",\"rotoworld_id\":\"10045\",\"stats_id\":\"28103\",\"position\":\"PK\",\"stats_global_id\":\"522233\",\"espn_id\":\"16976\",\"weight\":\"200\",\"id\":\"11960\",\"draft_team\":\"FA\",\"birthdate\":\"667544400\",\"name\":\"Catanzaro, Chandler\",\"college\":\"Clemson\",\"rotowire_id\":\"9845\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"team\":\"FA\",\"cbs_id\":\"2130276\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"TEN\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"CLE\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"64\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"FA\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DT\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"CAR\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"FA\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"40\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"CAR\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"2014\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"MIN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"NEP\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"ARI\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"2013\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"FA\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"FA\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"2\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"NOS\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"LVR\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"ATL\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"DEN\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"22\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"25\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"FA\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"HOU\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"SFO\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"15\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"LVR\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"FA\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"FA\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"BUF\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"11\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"SEA\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"NYJ\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"11\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"GBP\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"84\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"LVR\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"FA\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"FA\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"FA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"80\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"DAL\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"DE\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"ATL\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"CHI\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"DE\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"HOU\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"99\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"DET\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"NEP\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DE\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"ARI\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"LB\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"FA\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"FA\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"NOS\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, Alexander\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"FA\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"NYJ\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"24\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"CIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"CLE\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"FA\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NOS\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"LVR\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"24\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"MIA\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"SEA\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"S\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"23\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"WAS\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"ARI\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"96\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"ARI\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"FA\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"FA\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DT\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"FA\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"kyleemanuel/2552296\",\"rotoworld_id\":\"10530\",\"stats_id\":\"28541\",\"position\":\"LB\",\"stats_global_id\":\"559871\",\"espn_id\":\"2508212\",\"weight\":\"250\",\"id\":\"12315\",\"birthdate\":\"682318800\",\"draft_team\":\"FA\",\"name\":\"Emanuel, Kyle\",\"draft_pick\":\"17\",\"college\":\"North Dakota State\",\"height\":\"75\",\"rotowire_id\":\"10359\",\"jersey\":\"51\",\"twitter_username\":\"KyleEmanuel51\",\"sportsdata_id\":\"bb4619b4-30e6-473d-947e-41d75a573475\",\"team\":\"HOU\",\"cbs_id\":\"1766149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"32\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"NOS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"55\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"FA\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"FA\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"37\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"DEN\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DT\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"99\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"CIN\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"FA\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10605\",\"stats_id\":\"28620\",\"position\":\"LB\",\"stats_global_id\":\"845648\",\"espn_id\":\"3137087\",\"weight\":\"245\",\"id\":\"12369\",\"birthdate\":\"698821200\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Edmond\",\"draft_pick\":\"15\",\"college\":\"Newberry\",\"rotowire_id\":\"10497\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"AAP_30\",\"sportsdata_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"team\":\"ATL\",\"cbs_id\":\"2174218\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"TEN\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"29\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"DET\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"FA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"NOS\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"LVR\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"CHI\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"CIN\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"BAL\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"BUF\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"FA\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"SEA\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"10\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"NEP\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"FA\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11108\",\"stats_id\":\"29114\",\"position\":\"DT\",\"stats_global_id\":\"600757\",\"espn_id\":\"2577757\",\"weight\":\"299\",\"id\":\"12474\",\"draft_team\":\"FA\",\"birthdate\":\"722494800\",\"name\":\"McGill, T.Y.\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10660\",\"height\":\"72\",\"jersey\":\"76\",\"sportsdata_id\":\"07c51c65-489b-4bae-b997-f1a0f35deffe\",\"team\":\"PHI\",\"cbs_id\":\"2175354\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"FA\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NEP\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"49\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"TEN\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2015\",\"nfl_id\":\"davidirving/2553805\",\"rotoworld_id\":\"10959\",\"stats_id\":\"29096\",\"position\":\"DT\",\"stats_global_id\":\"599100\",\"espn_id\":\"2577162\",\"weight\":\"290\",\"id\":\"12536\",\"draft_team\":\"FA\",\"birthdate\":\"745650000\",\"name\":\"Irving, David\",\"college\":\"Iowa State\",\"rotowire_id\":\"10341\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"9061a751-bfd4-41f5-a585-9f3b20708b94\",\"team\":\"LVR\",\"cbs_id\":\"2175059\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"FA\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"FA\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"FA\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"CIN\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"9\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DEN\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"HOU\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"SEA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"LVR\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"41\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"FA\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"34\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"FA\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"DET\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"FA\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"WAS\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"32\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"FA\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"FA\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"FA\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"NYJ\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"82\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"MIN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"14\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"CAR\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"DET\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"FA\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"CIN\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"CLE\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"88\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"DEN\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"MIA\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"IND\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"DE\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"MIA\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"FA\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"94\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"LAR\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CLE\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"NYG\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"DET\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"BUF\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"FA\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"21\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"CIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"WAS\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"41\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"FA\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"S\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"CLE\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"CIN\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"32\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"DET\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"54\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"LAR\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"CHI\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"BUF\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"JAC\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DE\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"53\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"PIT\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"FA\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"NYG\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"96\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"JAC\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"LVR\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"97\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"LVR\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"S\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"BAL\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"FA\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"SEA\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"BUF\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"LAC\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"NYG\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"93\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PHI\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"47\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"JAC\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"91\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"FA\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"HOU\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"CLE\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"LVR\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ARI\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"S\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CAR\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"CB\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"FA\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"FA\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"NYG\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11324\",\"stats_id\":\"29367\",\"position\":\"CB\",\"stats_global_id\":\"727758\",\"espn_id\":\"3042718\",\"weight\":\"177\",\"id\":\"12790\",\"birthdate\":\"806475600\",\"draft_team\":\"SFO\",\"name\":\"Robinson, Rashard\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"11164\",\"height\":\"74\",\"jersey\":\"30\",\"twitter_username\":\"SHAD_JUSTDOIT2\",\"sportsdata_id\":\"f8c2e532-8de2-4c8b-85bf-ed2e24c3b273\",\"team\":\"DAL\",\"cbs_id\":\"2061251\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"FA\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"BUF\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DT\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"38\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"CIN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"FA\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"CIN\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"43\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"FA\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"FA\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"FA\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"31\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"CLE\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11467\",\"stats_id\":\"29411\",\"position\":\"TE\",\"stats_global_id\":\"608714\",\"espn_id\":\"2580330\",\"weight\":\"245\",\"id\":\"12807\",\"birthdate\":\"744008400\",\"draft_team\":\"FA\",\"name\":\"Hemingway, Temarrick\",\"draft_pick\":\"2\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11009\",\"height\":\"77\",\"jersey\":\"46\",\"twitter_username\":\"Baller4LifeTH\",\"sportsdata_id\":\"02fc59d0-8a66-431f-97fc-21fdc096eb14\",\"team\":\"WAS\",\"cbs_id\":\"1888046\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"FA\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"FA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"FA\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"birthdate\":\"751611600\",\"draft_team\":\"TBB\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"NEP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"PIT\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"17\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"CHI\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"MIA\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"DAL\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"MIA\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"44\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"MIA\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"FA\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"PHI\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"FA\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"CAR\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"MIA\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"BUF\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"SFO\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"MIA\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"FA\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"FA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11578\",\"stats_id\":\"29559\",\"position\":\"DT\",\"stats_global_id\":\"756607\",\"weight\":\"292\",\"id\":\"12888\",\"draft_team\":\"FA\",\"birthdate\":\"719816400\",\"name\":\"Zimmer, Justin\",\"college\":\"Ferris State\",\"rotowire_id\":\"11327\",\"height\":\"75\",\"jersey\":\"92\",\"sportsdata_id\":\"f125395e-820f-40d7-9775-ac101292719d\",\"team\":\"BUF\",\"cbs_id\":\"2235504\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"FA\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"LVR\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"LVR\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"NYG\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"FA\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11933\",\"stats_id\":\"29854\",\"position\":\"WR\",\"stats_global_id\":\"608059\",\"weight\":\"168\",\"id\":\"12921\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Lewis, Tommylee\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11508\",\"height\":\"67\",\"jersey\":\"14\",\"sportsdata_id\":\"b103b096-6be9-4f87-9ae4-5d217f560685\",\"team\":\"FA\",\"cbs_id\":\"2237113\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"LAC\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"CAR\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"FA\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"FA\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"DEN\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"MIN\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"NOS\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11538\",\"stats_id\":\"29505\",\"position\":\"LB\",\"stats_global_id\":\"591933\",\"weight\":\"238\",\"id\":\"12958\",\"draft_team\":\"FA\",\"birthdate\":\"743058000\",\"name\":\"Norris, Jared\",\"college\":\"Utah\",\"rotowire_id\":\"11149\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"e7b9abe1-2a5f-4029-90f5-7fd174750093\",\"team\":\"WAS\",\"cbs_id\":\"1825054\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"FA\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"FA\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"KCC\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11010\",\"stats_id\":\"28982\",\"position\":\"DT\",\"stats_global_id\":\"602119\",\"weight\":\"292\",\"id\":\"12979\",\"draft_team\":\"FA\",\"birthdate\":\"725605200\",\"name\":\"Williams, DeShawn\",\"college\":\"Clemson\",\"rotowire_id\":\"10793\",\"height\":\"73\",\"jersey\":\"97\",\"sportsdata_id\":\"9492f51a-22eb-465f-b3bb-aaee81ce76f5\",\"team\":\"DEN\",\"cbs_id\":\"2174847\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LVR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"SFO\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11939\",\"stats_id\":\"29873\",\"position\":\"DT\",\"stats_global_id\":\"607345\",\"weight\":\"315\",\"id\":\"13013\",\"draft_team\":\"FA\",\"birthdate\":\"724827600\",\"name\":\"Hamilton, Woodrow\",\"college\":\"Mississippi\",\"rotowire_id\":\"11355\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"b3beb95a-c1e7-4d03-b61a-097199528816\",\"team\":\"FA\",\"cbs_id\":\"1878010\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"MIN\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"FA\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"NYJ\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"FA\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"2\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"FA\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"FA\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"SEA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11751\",\"stats_id\":\"29607\",\"position\":\"CB\",\"stats_global_id\":\"599683\",\"weight\":\"190\",\"id\":\"13075\",\"draft_team\":\"FA\",\"birthdate\":\"716533200\",\"name\":\"Milton, Chris\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11420\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3\",\"team\":\"TEN\",\"cbs_id\":\"1850781\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"FA\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"WAS\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"FA\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"PIT\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"FA\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"FA\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"DAL\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"LVR\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"TBB\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"CIN\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"TEN\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"FA\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"TEN\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"FA\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"JAC\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"FA\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"NEP\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"14\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"FA\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"FA\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"FA\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"FA\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"LVR\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"KCC\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"FA\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"FA\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"FA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"KCC\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"92\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"ATL\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"LVR\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"FA\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"SFO\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DT\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DT\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"96\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"PIT\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"FA\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"FA\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"LVR\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"JAC\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"SEA\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"TEN\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"FA\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"FA\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"FA\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"FA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"MIA\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"FA\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"FA\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"JAC\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"LAR\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"FA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"FA\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"CAR\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"FA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"KCC\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"FA\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"FA\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"jersey\":\"91\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"NOS\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"S\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"S\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"FA\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"54\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"WR\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"FA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"FA\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12381\",\"stats_id\":\"30286\",\"position\":\"CB\",\"stats_global_id\":\"652012\",\"weight\":\"215\",\"id\":\"13314\",\"draft_team\":\"PIT\",\"birthdate\":\"751179600\",\"name\":\"Allen, Brian\",\"draft_pick\":\"29\",\"college\":\"Utah\",\"rotowire_id\":\"12008\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"a5780ea2-376e-4187-8be1-7c7fd2d0a12f\",\"team\":\"FA\",\"cbs_id\":\"1984447\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"JAC\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DE\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"NYJ\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"CLE\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12404\",\"stats_id\":\"30315\",\"position\":\"LB\",\"stats_global_id\":\"751753\",\"weight\":\"245\",\"id\":\"13333\",\"draft_team\":\"SFO\",\"birthdate\":\"763189200\",\"name\":\"Taumoepenu, Pita\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"11943\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c69c8d25-f81b-4240-a361-6bb328ad9474\",\"team\":\"ATL\",\"cbs_id\":\"2084363\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DE\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"FA\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"34\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"NYG\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"CLE\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DE\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"FA\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12448\",\"stats_id\":\"30363\",\"position\":\"DE\",\"stats_global_id\":\"694143\",\"weight\":\"270\",\"id\":\"13365\",\"draft_team\":\"DET\",\"birthdate\":\"752130000\",\"name\":\"O'Connor, Pat\",\"draft_pick\":\"32\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"12223\",\"height\":\"76\",\"jersey\":\"79\",\"sportsdata_id\":\"2157df58-ca82-46cd-9897-261a80060292\",\"team\":\"TBB\",\"cbs_id\":\"2818377\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12447\",\"stats_id\":\"30364\",\"position\":\"TE\",\"stats_global_id\":\"694088\",\"weight\":\"252\",\"id\":\"13366\",\"draft_team\":\"CIN\",\"birthdate\":\"752389200\",\"name\":\"Schreck, Mason\",\"draft_pick\":\"33\",\"college\":\"Buffalo\",\"rotowire_id\":\"12224\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"ca6c7b35-6ae1-4ba7-ae98-1f26174e407d\",\"team\":\"CIN\",\"cbs_id\":\"2818374\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"FA\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"FA\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"MIA\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"KCC\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"RB\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"FA\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"FA\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"FA\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"FA\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"7\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"TEN\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"FA\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"FA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, P.J.\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"CAR\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"LVR\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DE\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"ARI\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"FA\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"FA\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"FA\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12452\",\"stats_id\":\"30736\",\"position\":\"LB\",\"stats_global_id\":\"746289\",\"weight\":\"243\",\"id\":\"13444\",\"draft_team\":\"FA\",\"birthdate\":\"788504400\",\"name\":\"Munson, Calvin\",\"college\":\"San Diego State\",\"rotowire_id\":\"12383\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"d3ba3eca-c71d-449b-b5f1-7397a9cab3f1\",\"team\":\"MIA\",\"cbs_id\":\"2820074\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"MIN\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"79\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"DAL\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"FA\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"FA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"LAC\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"GBP\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"S\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12858\",\"stats_id\":\"30766\",\"position\":\"DE\",\"stats_global_id\":\"693023\",\"weight\":\"250\",\"id\":\"13474\",\"draft_team\":\"FA\",\"birthdate\":\"760510800\",\"name\":\"Barrett, Alex\",\"college\":\"San Diego State\",\"rotowire_id\":\"12426\",\"height\":\"74\",\"jersey\":\"93\",\"sportsdata_id\":\"09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1\",\"team\":\"FA\",\"cbs_id\":\"2820017\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"FA\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10827\",\"stats_id\":\"28771\",\"position\":\"DT\",\"stats_global_id\":\"608403\",\"weight\":\"315\",\"id\":\"13502\",\"draft_team\":\"FA\",\"birthdate\":\"743749200\",\"name\":\"Hamilton, Justin\",\"college\":\"Louisiana\",\"rotowire_id\":\"10592\",\"height\":\"74\",\"jersey\":\"74\",\"sportsdata_id\":\"1fb9a153-f1e0-4396-81fd-c3b1d331338f\",\"team\":\"DAL\",\"cbs_id\":\"2174801\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"KCC\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"DET\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"85\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"BUF\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"CLE\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"ARI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"LB\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12756\",\"stats_id\":\"30644\",\"position\":\"LB\",\"stats_global_id\":\"652212\",\"weight\":\"265\",\"id\":\"13559\",\"draft_team\":\"FA\",\"birthdate\":\"777531600\",\"name\":\"Malveaux, Cameron\",\"college\":\"Houston\",\"rotowire_id\":\"12057\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"8b44e3b8-81ae-4f02-b598-965872d12816\",\"team\":\"CLE\",\"cbs_id\":\"2819214\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12890\",\"stats_id\":\"30802\",\"position\":\"DT\",\"stats_global_id\":\"1050928\",\"weight\":\"300\",\"id\":\"13562\",\"draft_team\":\"FA\",\"birthdate\":\"731307600\",\"name\":\"Ross, Daniel\",\"college\":\"Northeast Mississippi CC\",\"rotowire_id\":\"12455\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"8bfbee63-feb4-4862-b3c8-08d2f65c8b5f\",\"team\":\"LVR\",\"cbs_id\":\"2820038\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"JAC\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"FA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"FA\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"FA\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"FA\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"FA\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"SEA\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"FA\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"LAC\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"NYG\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"10\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"MIA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"jersey\":\"14\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"PIT\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"FA\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"WAS\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13749\",\"stats_id\":\"31598\",\"position\":\"WR\",\"stats_global_id\":\"836953\",\"weight\":\"201\",\"id\":\"13655\",\"draft_team\":\"FA\",\"birthdate\":\"819090000\",\"name\":\"Phillips, Cam\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12898\",\"height\":\"72\",\"jersey\":\"87\",\"sportsdata_id\":\"14b0de01-a0f1-491f-86fe-01f83478046d\",\"team\":\"FA\",\"cbs_id\":\"2139174\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"FA\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"FA\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"NYJ\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"FA\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"DAL\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"789109200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"ATL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"LVR\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"LVR\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"CLE\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"LVR\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"21\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"FA\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"CLE\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"96\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"HOU\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"FA\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"CB\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"FA\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"NYG\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"FA\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"S\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"39\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SEA\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"21\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"BAL\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"HOU\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"FA\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"FA\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"GBP\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"LB\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"CB\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"38\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"FA\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"TE\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"FA\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"FA\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DT\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"IND\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"35\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"CAR\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"NEP\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"FA\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"FA\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"FA\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"FA\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"BUF\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"stats_id\":\"30711\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"13848\",\"draft_team\":\"FA\",\"birthdate\":\"698907600\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"rotowire_id\":\"11829\",\"height\":\"71\",\"jersey\":\"1\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"SFO\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"84\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"FA\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"FA\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"FA\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"NYG\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"WAS\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"CAR\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"FA\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"FA\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"FA\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"FA\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"53\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"DEN\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"CAR\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13507\",\"stats_id\":\"31314\",\"position\":\"CB\",\"stats_global_id\":\"822378\",\"weight\":\"189\",\"id\":\"13928\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Nichols, Deatrick\",\"college\":\"South Florida\",\"rotowire_id\":\"12758\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"team\":\"FA\",\"cbs_id\":\"2926507\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"WAS\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"FA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"76\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"IND\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"55\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"DEN\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"FA\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"FA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"FA\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"NYG\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13839\",\"stats_id\":\"31708\",\"position\":\"LB\",\"stats_global_id\":\"821446\",\"weight\":\"229\",\"id\":\"13987\",\"draft_team\":\"FA\",\"birthdate\":\"818917200\",\"name\":\"Spillane, Robert\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13306\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"3b59e08c-0c3b-42c9-a4e2-9b79103ea715\",\"team\":\"PIT\",\"cbs_id\":\"2926962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DE\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"HOU\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"FA\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"FA\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13756\",\"stats_id\":\"31609\",\"position\":\"CB\",\"stats_global_id\":\"821257\",\"weight\":\"203\",\"id\":\"14026\",\"draft_team\":\"FA\",\"birthdate\":\"809586000\",\"name\":\"Kalu, Joshua\",\"college\":\"Nebraska\",\"rotowire_id\":\"12720\",\"height\":\"72\",\"jersey\":\"46\",\"sportsdata_id\":\"ab741f46-d660-48f2-a910-774d0514d2e4\",\"team\":\"TEN\",\"cbs_id\":\"2131098\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13735\",\"stats_id\":\"31576\",\"position\":\"S\",\"stats_global_id\":\"831671\",\"weight\":\"200\",\"id\":\"14028\",\"draft_team\":\"FA\",\"birthdate\":\"819781200\",\"name\":\"Neal, Ryan\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13282\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"67c2f38f-b568-4bcf-a40f-750cef707a05\",\"team\":\"SEA\",\"cbs_id\":\"2136964\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13701\",\"stats_id\":\"31534\",\"position\":\"CB\",\"stats_global_id\":\"834674\",\"weight\":\"185\",\"id\":\"14037\",\"draft_team\":\"FA\",\"birthdate\":\"823237200\",\"name\":\"Davis, Jalen\",\"college\":\"Utah State\",\"rotowire_id\":\"13263\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"57a21028-b3a1-494b-ade8-7e94c7108823\",\"team\":\"CIN\",\"cbs_id\":\"2926535\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"FA\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"FA\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"LVR\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"FA\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"GBP\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"stats_id\":\"32508\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"FA\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"26\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"FA\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"FA\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"FA\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"NYJ\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"30\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"FA\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"FA\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"15\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"FA\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"FA\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"FA\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"80\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"WAS\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"FA\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"FA\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"FA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"17\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"LVR\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"18\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"FA\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"birthdate\":\"873608400\",\"draft_team\":\"FA\",\"stats_id\":\"32469\",\"position\":\"WR\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"stats_global_id\":\"866112\",\"height\":\"72\",\"rotowire_id\":\"13877\",\"jersey\":\"8\",\"weight\":\"205\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"id\":\"14131\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"FA\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"FA\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"FA\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"PHI\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"stats_id\":\"31858\",\"position\":\"DE\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"LVR\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"CLE\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"FA\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"stats_id\":\"31835\",\"position\":\"DE\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"stats_id\":\"31903\",\"position\":\"DE\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"stats_id\":\"32308\",\"position\":\"DE\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"FA\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"FA\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"FA\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"FA\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"FA\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"stats_id\":\"31940\",\"position\":\"S\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"LVR\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"22\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"LVR\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"draft_team\":\"FA\",\"stats_id\":\"32368\",\"position\":\"RB\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"stats_global_id\":\"868331\",\"height\":\"72\",\"rotowire_id\":\"13549\",\"jersey\":\"30\",\"weight\":\"205\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"id\":\"14192\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"birthdate\":\"674283600\",\"draft_team\":\"FA\",\"stats_id\":\"31822\",\"position\":\"RB\",\"name\":\"Wade, Christian\",\"stats_global_id\":\"1164428\",\"height\":\"67\",\"rotowire_id\":\"13930\",\"jersey\":\"45\",\"weight\":\"185\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"id\":\"14194\",\"team\":\"FA\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"stats_id\":\"31853\",\"position\":\"S\",\"stats_global_id\":\"0\",\"id\":\"14197\",\"draft_team\":\"GBP\",\"birthdate\":\"870238800\",\"name\":\"Savage, Darnell\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13810\",\"jersey\":\"26\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"birthdate\":\"866696400\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"13514\",\"height\":\"75\",\"jersey\":\"72\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"25\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"LVR\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"LVR\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"LVR\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"MIN\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"stats_id\":\"31976\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"jersey\":\"39\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"LAR\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"FA\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"58\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"LAR\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"stats_id\":\"31990\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"birthdate\":\"852872400\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"FA\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"stats_id\":\"31991\",\"position\":\"DT\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CIN\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"55\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"FA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"FA\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYJ\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"PHI\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"GBP\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"stats_id\":\"32020\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"jersey\":\"51\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"FA\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"FA\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"FA\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"20\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"jersey\":\"54\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"34\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"stats_id\":\"32054\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"FA\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"FA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"JAC\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"stats_id\":\"32074\",\"position\":\"DT\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"SFO\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"FA\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"FA\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"FA\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"LVR\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13437\",\"stats_id\":\"31227\",\"position\":\"WR\",\"stats_global_id\":\"746896\",\"weight\":\"182\",\"id\":\"14320\",\"draft_team\":\"FA\",\"birthdate\":\"775803600\",\"name\":\"Badet, Jeff\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12739\",\"height\":\"71\",\"jersey\":\"84\",\"sportsdata_id\":\"e98ce252-583a-4c74-a718-d38f1ba5793d\",\"team\":\"WAS\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"FA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"FA\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"FA\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"FA\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"FA\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"birthdate\":\"787208400\",\"draft_team\":\"FA\",\"stats_id\":\"31831\",\"position\":\"PK\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"stats_global_id\":\"744596\",\"height\":\"72\",\"rotowire_id\":\"13943\",\"weight\":\"189\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"id\":\"14335\",\"team\":\"ATL\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"FA\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"birthdate\":\"816325200\",\"draft_team\":\"FA\",\"stats_id\":\"32238\",\"position\":\"RB\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"stats_global_id\":\"836057\",\"height\":\"72\",\"rotowire_id\":\"14082\",\"jersey\":\"23\",\"weight\":\"226\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"id\":\"14338\",\"team\":\"FA\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"stats_id\":\"30111\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"178\",\"id\":\"14339\",\"draft_team\":\"FA\",\"birthdate\":\"755067600\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"rotowire_id\":\"12121\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"stats_id\":\"32456\",\"position\":\"TE\",\"stats_global_id\":\"875649\",\"weight\":\"240\",\"id\":\"14341\",\"draft_team\":\"FA\",\"birthdate\":\"871707600\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"rotowire_id\":\"13602\",\"height\":\"80\",\"jersey\":\"89\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"team\":\"LAC\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"birthdate\":\"844664400\",\"draft_team\":\"FA\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"FA\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"FA\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"stats_id\":\"31280\",\"position\":\"RB\",\"stats_global_id\":\"744162\",\"weight\":\"230\",\"id\":\"14350\",\"draft_team\":\"FA\",\"birthdate\":\"789022800\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"rotowire_id\":\"12734\",\"height\":\"72\",\"jersey\":\"46\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"team\":\"FA\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"stats_id\":\"30901\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13609\",\"stats_id\":\"31427\",\"position\":\"TE\",\"stats_global_id\":\"1115710\",\"weight\":\"251\",\"id\":\"14356\",\"draft_team\":\"FA\",\"birthdate\":\"799390800\",\"name\":\"Keizer, Nick\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"13126\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"cafbcd5f-8b40-444e-baec-a48f49d8c5f0\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"FA\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"stats_id\":\"30430\",\"position\":\"WR\",\"stats_global_id\":\"746191\",\"weight\":\"200\",\"id\":\"14365\",\"draft_team\":\"FA\",\"birthdate\":\"770101200\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"rotowire_id\":\"12539\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14338\",\"stats_id\":\"32543\",\"position\":\"TE\",\"stats_global_id\":\"820720\",\"weight\":\"255\",\"id\":\"14367\",\"draft_team\":\"FA\",\"birthdate\":\"798354000\",\"name\":\"Helm, Daniel\",\"college\":\"Duke\",\"rotowire_id\":\"13685\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7f48c754-002d-4d0c-ba40-8c402f95a7c4\",\"team\":\"SFO\",\"cbs_id\":\"2131632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14584\",\"stats_id\":\"32383\",\"position\":\"RB\",\"stats_global_id\":\"839390\",\"weight\":\"190\",\"id\":\"14368\",\"draft_team\":\"FA\",\"birthdate\":\"840258000\",\"name\":\"Walter, Austin\",\"college\":\"Rice\",\"rotowire_id\":\"14170\",\"height\":\"68\",\"jersey\":\"33\",\"sportsdata_id\":\"e25b6e0d-efa3-4425-bab6-5f846b902195\",\"team\":\"SFO\",\"cbs_id\":\"3116876\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"stats_id\":\"31257\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"81\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"FA\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"stats_id\":\"31657\",\"position\":\"DE\",\"stats_global_id\":\"832993\",\"weight\":\"295\",\"id\":\"14377\",\"draft_team\":\"FA\",\"birthdate\":\"822459600\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"rotowire_id\":\"13237\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"team\":\"MIN\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13885\",\"stats_id\":\"31753\",\"position\":\"LB\",\"stats_global_id\":\"836080\",\"weight\":\"204\",\"id\":\"14379\",\"draft_team\":\"FA\",\"birthdate\":\"836197200\",\"name\":\"Woods, Josh\",\"college\":\"Maryland\",\"rotowire_id\":\"13361\",\"height\":\"73\",\"jersey\":\"55\",\"sportsdata_id\":\"abdf27dc-a54d-427c-a745-173f1c485292\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13728\",\"stats_id\":\"31562\",\"position\":\"CB\",\"stats_global_id\":\"746240\",\"weight\":\"205\",\"id\":\"14380\",\"draft_team\":\"FA\",\"birthdate\":\"808462800\",\"name\":\"Henderson, Trayvon\",\"college\":\"Hawaii\",\"rotowire_id\":\"12791\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"7917b396-b7e0-4722-9a5a-7c608dd0a6ff\",\"team\":\"CIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32220\",\"position\":\"LB\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"stats_global_id\":\"821593\",\"height\":\"74\",\"rotowire_id\":\"13907\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"id\":\"14384\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13783\",\"stats_id\":\"31643\",\"position\":\"PK\",\"stats_global_id\":\"728263\",\"weight\":\"258\",\"id\":\"14387\",\"draft_team\":\"FA\",\"birthdate\":\"809413200\",\"name\":\"Santoso, Ryan\",\"college\":\"Minnesota\",\"rotowire_id\":\"13526\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"d58166e2-24ee-4dd2-ae22-36b05634eb6d\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"stats_id\":\"29933\",\"position\":\"S\",\"stats_global_id\":\"699216\",\"weight\":\"200\",\"id\":\"14394\",\"draft_team\":\"FA\",\"birthdate\":\"777013200\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"rotowire_id\":\"11374\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"stats_id\":\"31733\",\"position\":\"S\",\"stats_global_id\":\"820730\",\"weight\":\"210\",\"id\":\"14398\",\"draft_team\":\"FA\",\"birthdate\":\"818917200\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13342\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"team\":\"DAL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"MIA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"stats_id\":\"31815\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"jersey\":\"49\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13989\",\"stats_id\":\"31810\",\"position\":\"CB\",\"stats_global_id\":\"870932\",\"weight\":\"200\",\"id\":\"14411\",\"draft_team\":\"FA\",\"birthdate\":\"740034000\",\"name\":\"Campbell, Tevaughn\",\"college\":\"Regina, Canada\",\"rotowire_id\":\"13555\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"68b3f7e5-cc33-41e1-833c-8f48cb70bf72\",\"team\":\"LAC\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2016\",\"birthdate\":\"723704400\",\"draft_team\":\"FA\",\"stats_id\":\"29915\",\"position\":\"PK\",\"name\":\"Brown, Jon\",\"college\":\"Louisville\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"11738\",\"jersey\":\"3\",\"weight\":\"202\",\"sportsdata_id\":\"1a59e864-5282-4d94-b678-8537d524e181\",\"id\":\"14419\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"LVR\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"stats_id\":\"31648\",\"position\":\"DE\",\"stats_global_id\":\"820764\",\"weight\":\"255\",\"id\":\"14421\",\"draft_team\":\"FA\",\"birthdate\":\"811314000\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"rotowire_id\":\"13187\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"team\":\"NYG\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"stats_id\":\"31582\",\"position\":\"S\",\"stats_global_id\":\"837722\",\"weight\":\"200\",\"id\":\"14434\",\"draft_team\":\"FA\",\"birthdate\":\"841294800\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"rotowire_id\":\"12827\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"team\":\"WAS\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"stats_id\":\"31302\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"FA\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"FA\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14351\",\"stats_id\":\"32102\",\"position\":\"CB\",\"stats_global_id\":\"822514\",\"weight\":\"198\",\"id\":\"14456\",\"draft_team\":\"FA\",\"birthdate\":\"805438800\",\"name\":\"Watson, Brandon\",\"college\":\"Michigan\",\"rotowire_id\":\"14036\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"095f659a-2aaa-4961-912c-66f337755787\",\"team\":\"JAC\",\"cbs_id\":\"2131208\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14716\",\"stats_id\":\"32541\",\"position\":\"RB\",\"stats_global_id\":\"867172\",\"weight\":\"226\",\"id\":\"14458\",\"draft_team\":\"FA\",\"birthdate\":\"840171600\",\"name\":\"Cox, Jeremy\",\"college\":\"Old Dominion\",\"rotowire_id\":\"14003\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"3eb32502-2ecd-44b9-978e-33473fdd8354\",\"team\":\"DEN\",\"cbs_id\":\"3117060\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"786690000\",\"draft_team\":\"FA\",\"stats_id\":\"32559\",\"position\":\"RB\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"stats_global_id\":\"835777\",\"height\":\"69\",\"rotowire_id\":\"14237\",\"jersey\":\"46\",\"weight\":\"179\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"id\":\"14465\",\"team\":\"FA\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"stats_id\":\"32118\",\"position\":\"LB\",\"name\":\"Phillips, Del'Shawn\",\"college\":\"Illinois\",\"stats_global_id\":\"821487\",\"height\":\"74\",\"rotowire_id\":\"14025\",\"jersey\":\"43\",\"weight\":\"230\",\"sportsdata_id\":\"a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9\",\"id\":\"14467\",\"team\":\"BUF\",\"cbs_id\":\"3116938\"},{\"draft_year\":\"2019\",\"birthdate\":\"898750800\",\"draft_team\":\"FA\",\"stats_id\":\"32411\",\"position\":\"LB\",\"name\":\"Dodson, Tyrel\",\"college\":\"Texas A&M\",\"stats_global_id\":\"922129\",\"height\":\"72\",\"rotowire_id\":\"13512\",\"jersey\":\"53\",\"weight\":\"237\",\"sportsdata_id\":\"1881d1a7-218b-4690-9065-497946d1ec1e\",\"id\":\"14472\",\"team\":\"BUF\",\"cbs_id\":\"2249181\"},{\"draft_year\":\"2015\",\"birthdate\":\"741157200\",\"draft_team\":\"FA\",\"stats_id\":\"28934\",\"position\":\"LB\",\"name\":\"Vaughters, James\",\"college\":\"Stanford\",\"stats_global_id\":\"598982\",\"height\":\"74\",\"rotowire_id\":\"10850\",\"jersey\":\"93\",\"weight\":\"254\",\"sportsdata_id\":\"ee209aa3-145f-4acb-85fd-e8a2420b4d2a\",\"id\":\"14478\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"840862800\",\"draft_team\":\"FA\",\"stats_id\":\"32556\",\"position\":\"WR\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"stats_global_id\":\"838301\",\"height\":\"75\",\"rotowire_id\":\"14236\",\"jersey\":\"83\",\"weight\":\"205\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"id\":\"14481\",\"team\":\"FA\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"birthdate\":\"848206800\",\"draft_team\":\"FA\",\"stats_id\":\"32283\",\"position\":\"WR\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"stats_global_id\":\"1063397\",\"height\":\"73\",\"rotowire_id\":\"14129\",\"jersey\":\"83\",\"weight\":\"201\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"id\":\"14486\",\"team\":\"FA\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"birthdate\":\"850366800\",\"draft_team\":\"FA\",\"stats_id\":\"32273\",\"position\":\"TE\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"stats_global_id\":\"881697\",\"height\":\"76\",\"rotowire_id\":\"14131\",\"jersey\":\"89\",\"weight\":\"240\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"id\":\"14488\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"birthdate\":\"867992400\",\"draft_team\":\"FA\",\"stats_id\":\"32277\",\"position\":\"PN\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"stats_global_id\":\"891880\",\"height\":\"73\",\"rotowire_id\":\"14147\",\"jersey\":\"7\",\"weight\":\"207\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"id\":\"14489\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"828766800\",\"draft_team\":\"FA\",\"stats_id\":\"32206\",\"position\":\"LB\",\"name\":\"Hall, Nate\",\"college\":\"Northwestern\",\"stats_global_id\":\"830840\",\"height\":\"74\",\"rotowire_id\":\"13860\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"2b13e2a3-22c5-41cc-b13f-30c501f7c810\",\"id\":\"14493\",\"team\":\"HOU\",\"cbs_id\":\"2136547\"},{\"draft_year\":\"2019\",\"birthdate\":\"809586000\",\"draft_team\":\"FA\",\"stats_id\":\"32205\",\"position\":\"LB\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"stats_global_id\":\"821248\",\"height\":\"75\",\"rotowire_id\":\"14068\",\"jersey\":\"57\",\"weight\":\"245\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"id\":\"14495\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"birthdate\":\"853390800\",\"draft_team\":\"FA\",\"stats_id\":\"32189\",\"position\":\"WR\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"stats_global_id\":\"1165782\",\"height\":\"72\",\"rotowire_id\":\"13919\",\"jersey\":\"2\",\"weight\":\"180\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"id\":\"14499\",\"team\":\"FA\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"819262800\",\"draft_team\":\"FA\",\"stats_id\":\"32266\",\"position\":\"LB\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820700\",\"height\":\"72\",\"rotowire_id\":\"14103\",\"jersey\":\"40\",\"weight\":\"228\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"id\":\"14509\",\"team\":\"FA\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"birthdate\":\"813992400\",\"draft_team\":\"FA\",\"stats_id\":\"32152\",\"position\":\"QB\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"stats_global_id\":\"945086\",\"height\":\"76\",\"rotowire_id\":\"14040\",\"jersey\":\"3\",\"weight\":\"221\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"id\":\"14510\",\"team\":\"FA\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2018\",\"birthdate\":\"786949200\",\"draft_team\":\"FA\",\"stats_id\":\"31478\",\"position\":\"TE\",\"name\":\"Baugh, Marcus\",\"college\":\"Ohio State\",\"stats_global_id\":\"728328\",\"height\":\"76\",\"rotowire_id\":\"12901\",\"jersey\":\"85\",\"weight\":\"245\",\"sportsdata_id\":\"14683736-9d8f-4e99-86c4-a778d343569c\",\"id\":\"14517\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"900738000\",\"draft_team\":\"FA\",\"stats_id\":\"32623\",\"position\":\"S\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"stats_global_id\":\"910649\",\"height\":\"72\",\"rotowire_id\":\"14330\",\"jersey\":\"34\",\"weight\":\"195\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"id\":\"14518\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"birthdate\":\"845355600\",\"draft_team\":\"FA\",\"stats_id\":\"32151\",\"position\":\"LB\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"stats_global_id\":\"923359\",\"height\":\"75\",\"rotowire_id\":\"14257\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"id\":\"14519\",\"team\":\"WAS\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"birthdate\":\"867387600\",\"draft_team\":\"FA\",\"stats_id\":\"32509\",\"position\":\"DT\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"stats_global_id\":\"867748\",\"height\":\"75\",\"rotowire_id\":\"13864\",\"jersey\":\"67\",\"weight\":\"305\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"id\":\"14531\",\"team\":\"DET\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"birthdate\":\"844923600\",\"draft_team\":\"FA\",\"stats_id\":\"32357\",\"position\":\"CB\",\"name\":\"Fields, Mark\",\"college\":\"Clemson\",\"stats_global_id\":\"867758\",\"height\":\"70\",\"rotowire_id\":\"13646\",\"jersey\":\"26\",\"weight\":\"192\",\"sportsdata_id\":\"f60017c5-e44c-4256-831f-86c8d8626481\",\"id\":\"14532\",\"team\":\"MIN\",\"cbs_id\":\"2179217\"},{\"draft_year\":\"2019\",\"birthdate\":\"819522000\",\"draft_team\":\"FA\",\"stats_id\":\"32488\",\"position\":\"WR\",\"name\":\"Taylor, Malik\",\"college\":\"Ferris State\",\"stats_global_id\":\"1166944\",\"height\":\"75\",\"rotowire_id\":\"14002\",\"jersey\":\"86\",\"weight\":\"220\",\"sportsdata_id\":\"228b0dd8-3f75-4b60-90d1-59036858b8ae\",\"id\":\"14533\",\"team\":\"GBP\",\"cbs_id\":\"3117089\"},{\"draft_year\":\"2019\",\"birthdate\":\"886741200\",\"draft_team\":\"FA\",\"stats_id\":\"32420\",\"position\":\"DE\",\"name\":\"Bledsoe, Amani\",\"college\":\"Oklahoma\",\"stats_global_id\":\"923062\",\"height\":\"76\",\"rotowire_id\":\"14200\",\"jersey\":\"95\",\"weight\":\"280\",\"sportsdata_id\":\"1a7d431e-f97b-4631-a067-438ed2debe24\",\"id\":\"14535\",\"team\":\"CIN\",\"cbs_id\":\"3117093\"},{\"draft_year\":\"2018\",\"birthdate\":\"773730000\",\"draft_team\":\"FA\",\"stats_id\":\"31649\",\"position\":\"DE\",\"name\":\"Herron, Frank\",\"college\":\"Louisiana State\",\"stats_global_id\":\"727750\",\"height\":\"76\",\"rotowire_id\":\"13188\",\"jersey\":\"93\",\"weight\":\"305\",\"sportsdata_id\":\"ef0a8abc-074e-4ed1-a053-846c3b1d9cc5\",\"id\":\"14536\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"803883600\",\"draft_team\":\"FA\",\"stats_id\":\"32547\",\"position\":\"WR\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"stats_global_id\":\"1166990\",\"height\":\"74\",\"rotowire_id\":\"13999\",\"jersey\":\"89\",\"weight\":\"213\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"id\":\"14545\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"birthdate\":\"833346000\",\"draft_team\":\"FA\",\"stats_id\":\"32124\",\"position\":\"WR\",\"name\":\"Bachman, Alex\",\"college\":\"Wake Forest\",\"stats_global_id\":\"884315\",\"height\":\"72\",\"rotowire_id\":\"13911\",\"jersey\":\"80\",\"weight\":\"190\",\"sportsdata_id\":\"427038d8-ff50-4d6e-a088-4fdb8bc2f0e3\",\"id\":\"14548\",\"team\":\"NYG\",\"cbs_id\":\"2186388\"},{\"draft_year\":\"2019\",\"birthdate\":\"822718800\",\"draft_team\":\"FA\",\"stats_id\":\"32137\",\"position\":\"WR\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"stats_global_id\":\"828656\",\"height\":\"70\",\"rotowire_id\":\"14012\",\"jersey\":\"14\",\"weight\":\"180\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"id\":\"14549\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"birthdate\":\"836197200\",\"draft_team\":\"FA\",\"stats_id\":\"32140\",\"position\":\"RB\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"835845\",\"height\":\"72\",\"rotowire_id\":\"13998\",\"jersey\":\"41\",\"weight\":\"233\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"id\":\"14552\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"birthdate\":\"848811600\",\"draft_team\":\"FA\",\"stats_id\":\"32143\",\"position\":\"WR\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"stats_global_id\":\"1050926\",\"height\":\"73\",\"rotowire_id\":\"14049\",\"jersey\":\"85\",\"weight\":\"166\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"id\":\"14554\",\"team\":\"FA\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"birthdate\":\"848984400\",\"draft_team\":\"FA\",\"stats_id\":\"32612\",\"position\":\"WR\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"stats_global_id\":\"1168410\",\"height\":\"72\",\"rotowire_id\":\"14318\",\"jersey\":\"80\",\"weight\":\"190\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"id\":\"14555\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"birthdate\":\"848293200\",\"draft_team\":\"FA\",\"stats_id\":\"32230\",\"position\":\"LB\",\"name\":\"Hall, Terez\",\"college\":\"Missouri\",\"stats_global_id\":\"882337\",\"height\":\"74\",\"rotowire_id\":\"13861\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"49bf0cd8-c01f-4d31-b6f1-fdda02b4999f\",\"id\":\"14557\",\"team\":\"NEP\",\"cbs_id\":\"2185472\"},{\"draft_year\":\"2019\",\"birthdate\":\"881211600\",\"draft_team\":\"FA\",\"stats_id\":\"32398\",\"position\":\"WR\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"stats_global_id\":\"1166545\",\"height\":\"66\",\"rotowire_id\":\"14191\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"id\":\"14558\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"birthdate\":\"855378000\",\"draft_team\":\"FA\",\"stats_id\":\"32492\",\"position\":\"LB\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"stats_global_id\":\"880029\",\"height\":\"77\",\"rotowire_id\":\"13859\",\"jersey\":\"97\",\"weight\":\"260\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"id\":\"14559\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"stats_id\":\"32243\",\"position\":\"WR\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"stats_global_id\":\"838670\",\"height\":\"72\",\"rotowire_id\":\"13815\",\"jersey\":\"80\",\"weight\":\"191\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"id\":\"14560\",\"team\":\"FA\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2019\",\"birthdate\":\"861598800\",\"draft_team\":\"FA\",\"stats_id\":\"32533\",\"position\":\"WR\",\"name\":\"Smith, Jeff\",\"college\":\"Boston College\",\"stats_global_id\":\"883429\",\"height\":\"73\",\"rotowire_id\":\"13934\",\"jersey\":\"16\",\"weight\":\"195\",\"sportsdata_id\":\"767b1112-c77a-4a58-89b4-30f1ffa2a497\",\"id\":\"14561\",\"team\":\"NYJ\",\"cbs_id\":\"2185927\"},{\"draft_year\":\"2019\",\"birthdate\":\"812523600\",\"draft_team\":\"FA\",\"stats_id\":\"32409\",\"position\":\"WR\",\"name\":\"Thompkins, DeAndre\",\"college\":\"Penn State\",\"stats_global_id\":\"821298\",\"height\":\"71\",\"rotowire_id\":\"14023\",\"jersey\":\"81\",\"weight\":\"188\",\"sportsdata_id\":\"8b66001c-c41f-406a-9583-d8b6848ea6d2\",\"id\":\"14563\",\"team\":\"FA\",\"cbs_id\":\"2131257\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"805698000\",\"draft_team\":\"FA\",\"stats_id\":\"32548\",\"position\":\"PN\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"stats_global_id\":\"839067\",\"height\":\"75\",\"rotowire_id\":\"14265\",\"jersey\":\"6\",\"weight\":\"219\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"id\":\"14568\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"852181200\",\"draft_team\":\"FA\",\"stats_id\":\"32589\",\"position\":\"S\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"stats_global_id\":\"865648\",\"height\":\"71\",\"rotowire_id\":\"14297\",\"jersey\":\"32\",\"weight\":\"195\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"id\":\"14579\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"birthdate\":\"832568400\",\"draft_team\":\"FA\",\"stats_id\":\"32222\",\"position\":\"LB\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"stats_global_id\":\"828111\",\"height\":\"74\",\"rotowire_id\":\"14081\",\"jersey\":\"54\",\"weight\":\"240\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"id\":\"14584\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"birthdate\":\"870670800\",\"draft_team\":\"FA\",\"stats_id\":\"32318\",\"position\":\"LB\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"866464\",\"height\":\"74\",\"rotowire_id\":\"13829\",\"jersey\":\"51\",\"weight\":\"228\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"id\":\"14590\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"birthdate\":\"830408400\",\"draft_team\":\"FA\",\"stats_id\":\"32364\",\"position\":\"TE\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"stats_global_id\":\"832213\",\"height\":\"75\",\"rotowire_id\":\"14184\",\"jersey\":\"40\",\"weight\":\"225\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"id\":\"14591\",\"team\":\"GBP\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"birthdate\":\"869634000\",\"draft_team\":\"FA\",\"stats_id\":\"32123\",\"position\":\"WR\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"stats_global_id\":\"883976\",\"height\":\"68\",\"rotowire_id\":\"13833\",\"jersey\":\"17\",\"weight\":\"190\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"id\":\"14592\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32461\",\"position\":\"DT\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"835485\",\"height\":\"76\",\"rotowire_id\":\"14213\",\"jersey\":\"62\",\"weight\":\"285\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"id\":\"14595\",\"team\":\"FA\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"birthdate\":\"829112400\",\"draft_team\":\"FA\",\"stats_id\":\"32384\",\"position\":\"PK\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"stats_global_id\":\"836963\",\"height\":\"71\",\"rotowire_id\":\"14172\",\"jersey\":\"4\",\"weight\":\"213\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"id\":\"14600\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"birthdate\":\"808635600\",\"draft_team\":\"FA\",\"stats_id\":\"32439\",\"position\":\"RB\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"stats_global_id\":\"835694\",\"height\":\"72\",\"rotowire_id\":\"13913\",\"jersey\":\"32\",\"weight\":\"205\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"id\":\"14612\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"birthdate\":\"859784400\",\"draft_team\":\"FA\",\"stats_id\":\"32187\",\"position\":\"WR\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"stats_global_id\":\"877596\",\"height\":\"70\",\"rotowire_id\":\"14055\",\"jersey\":\"15\",\"weight\":\"190\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"id\":\"14613\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"birthdate\":\"829285200\",\"draft_team\":\"FA\",\"stats_id\":\"32581\",\"position\":\"QB\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"stats_global_id\":\"837040\",\"height\":\"73\",\"rotowire_id\":\"13566\",\"jersey\":\"6\",\"weight\":\"210\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"id\":\"14618\",\"team\":\"FA\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"881730000\",\"draft_team\":\"FA\",\"stats_id\":\"32642\",\"position\":\"QB\",\"name\":\"Ta'amu, Jordan\",\"college\":\"Mississippi\",\"stats_global_id\":\"974470\",\"height\":\"75\",\"rotowire_id\":\"13629\",\"jersey\":\"6\",\"weight\":\"221\",\"sportsdata_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"id\":\"14622\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"birthdate\":\"748155600\",\"draft_team\":\"FA\",\"stats_id\":\"29813\",\"position\":\"DT\",\"name\":\"Bryant, Brandin\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"695076\",\"height\":\"75\",\"rotowire_id\":\"11557\",\"jersey\":\"69\",\"weight\":\"294\",\"sportsdata_id\":\"8b1be2ac-e483-4f39-9bf9-a81be33ac92e\",\"id\":\"14627\",\"team\":\"BUF\"},{\"draft_year\":\"2019\",\"birthdate\":\"817448400\",\"draft_team\":\"FA\",\"stats_id\":\"32386\",\"position\":\"PN\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"stats_global_id\":\"866061\",\"height\":\"76\",\"rotowire_id\":\"14171\",\"jersey\":\"6\",\"weight\":\"220\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"id\":\"14630\",\"team\":\"LVR\"},{\"draft_year\":\"2019\",\"birthdate\":\"857192400\",\"draft_team\":\"FA\",\"stats_id\":\"32321\",\"position\":\"DT\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"stats_global_id\":\"883319\",\"height\":\"73\",\"rotowire_id\":\"13519\",\"jersey\":\"90\",\"weight\":\"285\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"id\":\"14652\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"birthdate\":\"827211600\",\"draft_team\":\"FA\",\"stats_id\":\"32425\",\"position\":\"DE\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"stats_global_id\":\"834396\",\"height\":\"73\",\"rotowire_id\":\"14204\",\"jersey\":\"97\",\"weight\":\"299\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"id\":\"14653\",\"team\":\"NEP\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"stats_id\":\"32295\",\"position\":\"TE\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"stats_global_id\":\"884045\",\"height\":\"76\",\"rotowire_id\":\"14094\",\"jersey\":\"86\",\"weight\":\"245\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"id\":\"14654\",\"team\":\"FA\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32241\",\"position\":\"LB\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"881829\",\"height\":\"73\",\"rotowire_id\":\"13487\",\"jersey\":\"48\",\"weight\":\"235\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"id\":\"14660\",\"team\":\"FA\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"22\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"LVR\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2018\",\"birthdate\":\"758437200\",\"draft_team\":\"FA\",\"stats_id\":\"31454\",\"position\":\"DT\",\"name\":\"Ekuale, Daniel\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13142\",\"jersey\":\"96\",\"weight\":\"300\",\"sportsdata_id\":\"55998ec0-4d69-4d14-a2f4-cf72de36e998\",\"id\":\"14670\",\"team\":\"JAC\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"49\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"51\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"stats_id\":\"32134\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"FA\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"stats_id\":\"30716\",\"position\":\"CB\",\"name\":\"Perry, Jamal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"99\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32530\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"birthdate\":\"873349200\",\"draft_team\":\"FA\",\"stats_id\":\"32155\",\"position\":\"DT\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14044\",\"jersey\":\"72\",\"weight\":\"320\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"id\":\"14677\",\"team\":\"FA\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"stats_id\":\"32582\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"stats_id\":\"32336\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"92\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"stats_id\":\"31256\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"832395600\",\"draft_team\":\"FA\",\"stats_id\":\"32304\",\"position\":\"LB\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13539\",\"jersey\":\"50\",\"weight\":\"240\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"id\":\"14682\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"855810000\",\"draft_team\":\"FA\",\"stats_id\":\"32145\",\"position\":\"CB\",\"name\":\"Meadors, Nate\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14155\",\"jersey\":\"44\",\"weight\":\"194\",\"sportsdata_id\":\"78ca0233-a32a-4435-ba06-6ececaa3c537\",\"id\":\"14696\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"863413200\",\"draft_team\":\"FA\",\"stats_id\":\"32552\",\"position\":\"S\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14267\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"id\":\"14702\",\"team\":\"FA\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2018\",\"birthdate\":\"755326800\",\"draft_team\":\"FA\",\"stats_id\":\"31370\",\"position\":\"CB\",\"name\":\"Jackson, Robert\",\"college\":\"Nevada-Las Vegas\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13411\",\"jersey\":\"34\",\"weight\":\"205\",\"sportsdata_id\":\"d962a98d-cbba-47e0-ad20-dedc094a1822\",\"id\":\"14713\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"stats_id\":\"32254\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"92\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"birthdate\":\"829026000\",\"draft_team\":\"FA\",\"stats_id\":\"32417\",\"position\":\"PK\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14254\",\"jersey\":\"7\",\"weight\":\"190\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"id\":\"14717\",\"team\":\"JAC\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"38\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"NYG\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"stats_id\":\"32596\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"stats_id\":\"32091\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32408\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"GBP\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2019\",\"birthdate\":\"871966800\",\"draft_team\":\"FA\",\"stats_id\":\"32092\",\"position\":\"CB\",\"name\":\"Hayes, Tae\",\"college\":\"Appalachian State\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14031\",\"jersey\":\"30\",\"weight\":\"188\",\"sportsdata_id\":\"588d8e04-98dc-478a-b3ba-9e3cb58d9afc\",\"id\":\"14741\",\"team\":\"MIA\",\"cbs_id\":\"3117040\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"stats_id\":\"32576\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"birthdate\":\"797144400\",\"draft_team\":\"FA\",\"stats_id\":\"31286\",\"position\":\"DE\",\"name\":\"Larkin, Austin\",\"college\":\"Purdue\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13251\",\"jersey\":\"62\",\"weight\":\"265\",\"sportsdata_id\":\"9fe70732-0c55-42ff-a79c-9d234fbc995c\",\"id\":\"14756\",\"team\":\"CAR\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"stats_id\":\"31607\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"birthdate\":\"795762000\",\"draft_team\":\"FA\",\"stats_id\":\"31415\",\"position\":\"CB\",\"name\":\"Stephens, Linden\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"12699\",\"jersey\":\"32\",\"weight\":\"193\",\"sportsdata_id\":\"1163ba47-560b-4705-82be-69967c4fc096\",\"id\":\"14762\",\"team\":\"SEA\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32671\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14777\",\"draft_team\":\"CIN\",\"birthdate\":\"850194000\",\"name\":\"Burrow, Joe\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"14442\",\"height\":\"76\",\"jersey\":\"9\",\"twitter_username\":\"Joe_Burrow10\",\"sportsdata_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"team\":\"CIN\",\"cbs_id\":\"2179798\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32675\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14778\",\"draft_team\":\"MIA\",\"birthdate\":\"888814800\",\"name\":\"Tagovailoa, Tua\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"14465\",\"height\":\"73\",\"jersey\":\"1\",\"twitter_username\":\"Tuaamann\",\"sportsdata_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"team\":\"MIA\",\"cbs_id\":\"2741209\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32676\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"237\",\"id\":\"14779\",\"draft_team\":\"LAC\",\"birthdate\":\"889506000\",\"name\":\"Herbert, Justin\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"rotowire_id\":\"14446\",\"height\":\"78\",\"jersey\":\"10\",\"twitter_username\":\"Justin10Herbert\",\"sportsdata_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"team\":\"LAC\",\"cbs_id\":\"2221960\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32792\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14780\",\"draft_team\":\"IND\",\"birthdate\":\"879742800\",\"name\":\"Eason, Jacob\",\"draft_pick\":\"16\",\"college\":\"Washington\",\"rotowire_id\":\"14401\",\"height\":\"78\",\"jersey\":\"9\",\"twitter_username\":\"skinnyqb10\",\"sportsdata_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"team\":\"IND\",\"cbs_id\":\"2240210\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32837\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"222\",\"id\":\"14781\",\"draft_team\":\"BUF\",\"birthdate\":\"901774800\",\"name\":\"Fromm, Jake\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"rotowire_id\":\"14486\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"FrommJake\",\"sportsdata_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"team\":\"BUF\",\"cbs_id\":\"2803326\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32696\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14782\",\"draft_team\":\"GBP\",\"birthdate\":\"909982800\",\"name\":\"Love, Jordan\",\"draft_pick\":\"26\",\"college\":\"Utah State\",\"rotowire_id\":\"14371\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"jordan3love\",\"sportsdata_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"team\":\"GBP\",\"cbs_id\":\"2239997\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32723\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14783\",\"draft_team\":\"PHI\",\"birthdate\":\"902466000\",\"name\":\"Hurts, Jalen\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14416\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"JalenHurts\",\"sportsdata_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"team\":\"PHI\",\"cbs_id\":\"2240246\"},{\"draft_year\":\"2020\",\"birthdate\":\"853218000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33207\",\"position\":\"QB\",\"name\":\"Montez, Steven\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14393\",\"weight\":\"230\",\"sportsdata_id\":\"d446443f-130c-4bce-a300-a15cf66f27f1\",\"id\":\"14784\",\"team\":\"FA\",\"cbs_id\":\"2185536\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32914\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"14785\",\"draft_team\":\"MIN\",\"birthdate\":\"872571600\",\"name\":\"Stanley, Nate\",\"draft_pick\":\"30\",\"college\":\"Iowa\",\"rotowire_id\":\"14566\",\"height\":\"76\",\"twitter_username\":\"Njstan4\",\"sportsdata_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"team\":\"FA\",\"cbs_id\":\"2251110\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33246\",\"position\":\"QB\",\"name\":\"Patterson, Shea\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14469\",\"id\":\"14786\",\"team\":\"FA\",\"cbs_id\":\"2221866\"},{\"draft_year\":\"2020\",\"birthdate\":\"872744400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33266\",\"position\":\"QB\",\"name\":\"Gordon, Anthony\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14431\",\"weight\":\"210\",\"sportsdata_id\":\"71a2444a-a6b1-4e62-8974-2d858e2c5b73\",\"id\":\"14787\",\"team\":\"FA\",\"cbs_id\":\"2251387\"},{\"draft_year\":\"2020\",\"birthdate\":\"846133200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33015\",\"position\":\"QB\",\"name\":\"Lewerke, Brian\",\"college\":\"Michigan State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14530\",\"weight\":\"212\",\"sportsdata_id\":\"e8b4f505-28b2-4a87-8bf8-87041afab45c\",\"id\":\"14788\",\"team\":\"FA\",\"cbs_id\":\"2186429\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32993\",\"position\":\"QB\",\"name\":\"Huntley, Tyler\",\"college\":\"Utah\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14563\",\"sportsdata_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"id\":\"14789\",\"team\":\"FA\",\"cbs_id\":\"3159137\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32795\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14790\",\"draft_team\":\"NYJ\",\"birthdate\":\"857106000\",\"name\":\"Morgan, James\",\"draft_pick\":\"19\",\"college\":\"Florida International\",\"rotowire_id\":\"14531\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"jmoneyyy12\",\"sportsdata_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"team\":\"NYJ\",\"cbs_id\":\"2180077\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Fine, Mason\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14786\",\"id\":\"14791\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"851058000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33258\",\"position\":\"QB\",\"name\":\"Perkins, Bryce\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14429\",\"weight\":\"215\",\"sportsdata_id\":\"da837572-0558-4946-9af4-aeb11582cca8\",\"id\":\"14792\",\"team\":\"FA\",\"cbs_id\":\"3159114\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32859\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"14793\",\"draft_team\":\"JAC\",\"birthdate\":\"829198800\",\"name\":\"Luton, Jake\",\"draft_pick\":\"10\",\"college\":\"Oregon State\",\"rotowire_id\":\"14562\",\"height\":\"78\",\"jersey\":\"6\",\"twitter_username\":\"jakeluton6\",\"sportsdata_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"team\":\"JAC\",\"cbs_id\":\"2132133\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32894\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14794\",\"draft_team\":\"TEN\",\"birthdate\":\"895640400\",\"name\":\"McDonald, Cole\",\"draft_pick\":\"10\",\"college\":\"Hawaii\",\"rotowire_id\":\"14493\",\"height\":\"76\",\"twitter_username\":\"ColeHunter520\",\"sportsdata_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"team\":\"FA\",\"cbs_id\":\"2257005\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Bryant, Kelly\",\"college\":\"Missouri\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14528\",\"id\":\"14795\",\"team\":\"FA\",\"cbs_id\":\"2179210\"},{\"draft_year\":\"2020\",\"birthdate\":\"844232400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32928\",\"position\":\"QB\",\"name\":\"Neal, Riley\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"14859\",\"weight\":\"225\",\"sportsdata_id\":\"8e4cd763-30ec-4a00-9dc2-5567a80a3191\",\"id\":\"14796\",\"team\":\"FA\",\"cbs_id\":\"3159056\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32705\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14797\",\"draft_team\":\"DET\",\"birthdate\":\"916290000\",\"name\":\"Swift, D'Andre\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"14394\",\"height\":\"70\",\"jersey\":\"32\",\"twitter_username\":\"DAndreSwift\",\"sportsdata_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"team\":\"DET\",\"cbs_id\":\"2871710\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32756\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14798\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Moss, Zack\",\"draft_pick\":\"22\",\"college\":\"Utah\",\"rotowire_id\":\"14564\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"PresMoss2\",\"sportsdata_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"team\":\"BUF\",\"cbs_id\":\"2240516\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32722\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14799\",\"draft_team\":\"LAR\",\"birthdate\":\"930027600\",\"name\":\"Akers, Cam\",\"draft_pick\":\"20\",\"college\":\"Florida State\",\"rotowire_id\":\"14383\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"thereal_cam3\",\"sportsdata_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"team\":\"LAR\",\"cbs_id\":\"2804034\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32725\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14800\",\"draft_team\":\"BAL\",\"birthdate\":\"913870800\",\"name\":\"Dobbins, J.K.\",\"draft_pick\":\"23\",\"college\":\"Ohio State\",\"rotowire_id\":\"14418\",\"height\":\"70\",\"jersey\":\"27\",\"twitter_username\":\"jkdobbins22\",\"sportsdata_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"team\":\"BAL\",\"cbs_id\":\"2804420\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32892\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14801\",\"draft_team\":\"ARI\",\"birthdate\":\"945061200\",\"name\":\"Benjamin, Eno\",\"draft_pick\":\"8\",\"college\":\"Arizona State\",\"rotowire_id\":\"14372\",\"height\":\"70\",\"jersey\":\"26\",\"twitter_username\":\"eno_benjamin5\",\"sportsdata_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"team\":\"ARI\",\"cbs_id\":\"2760832\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32711\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14802\",\"draft_team\":\"IND\",\"birthdate\":\"916722000\",\"name\":\"Taylor, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14455\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"JayT23\",\"sportsdata_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"team\":\"IND\",\"cbs_id\":\"2866395\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32702\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14803\",\"draft_team\":\"KCC\",\"birthdate\":\"923806800\",\"name\":\"Edwards-Helaire, Clyde\",\"draft_pick\":\"32\",\"college\":\"LSU\",\"rotowire_id\":\"14514\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"team\":\"KCC\",\"cbs_id\":\"2804554\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32794\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14804\",\"draft_team\":\"PIT\",\"birthdate\":\"920523600\",\"name\":\"McFarland, Anthony\",\"draft_pick\":\"18\",\"college\":\"Maryland\",\"rotowire_id\":\"14357\",\"height\":\"69\",\"jersey\":\"26\",\"sportsdata_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"team\":\"PIT\",\"cbs_id\":\"2804293\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32732\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"espn_id\":\"4239934\",\"weight\":\"250\",\"id\":\"14805\",\"birthdate\":\"894085200\",\"draft_team\":\"GBP\",\"name\":\"Dillon, AJ\",\"draft_pick\":\"30\",\"college\":\"Boston College\",\"rotowire_id\":\"14370\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"ajdillon7\",\"sportsdata_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"team\":\"GBP\",\"cbs_id\":\"2867083\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32790\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14806\",\"draft_team\":\"NYJ\",\"birthdate\":\"886136400\",\"name\":\"Perine, Lamical\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"14427\",\"height\":\"71\",\"jersey\":\"22\",\"twitter_username\":\"lp_deucedeuce\",\"sportsdata_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"team\":\"NYJ\",\"cbs_id\":\"2248610\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32782\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14807\",\"draft_team\":\"LAC\",\"birthdate\":\"880002000\",\"name\":\"Kelley, Joshua\",\"draft_pick\":\"6\",\"college\":\"UCLA\",\"rotowire_id\":\"14494\",\"height\":\"71\",\"jersey\":\"27\",\"twitter_username\":\"SmoothplayJK\",\"sportsdata_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"team\":\"LAC\",\"cbs_id\":\"2183195\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32763\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14808\",\"draft_team\":\"TEN\",\"birthdate\":\"899960400\",\"name\":\"Evans, Darrynton\",\"draft_pick\":\"29\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14400\",\"height\":\"71\",\"jersey\":\"32\",\"twitter_username\":\"ItzLiveee\",\"sportsdata_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"team\":\"TEN\",\"cbs_id\":\"2240806\"},{\"draft_year\":\"2020\",\"birthdate\":\"825483600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33153\",\"position\":\"RB\",\"name\":\"Smith, Rodney\",\"college\":\"Minnesota\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14435\",\"weight\":\"210\",\"sportsdata_id\":\"ee96c74a-7a51-478a-99f9-97ddaaac1e34\",\"id\":\"14809\",\"team\":\"CAR\",\"cbs_id\":\"2165586\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32746\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14810\",\"draft_team\":\"TBB\",\"birthdate\":\"862722000\",\"name\":\"Vaughn, Ke'Shawn\",\"draft_pick\":\"12\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"14557\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"SneakVaughn\",\"sportsdata_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"team\":\"TBB\",\"cbs_id\":\"2179704\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33265\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14811\",\"draft_team\":\"FA\",\"birthdate\":\"914907600\",\"name\":\"Ahmed, Salvon\",\"college\":\"Washington\",\"rotowire_id\":\"14453\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"0dbbd211-0372-4751-9751-e4df4ab1f8eb\",\"team\":\"MIA\",\"cbs_id\":\"2815163\"},{\"draft_year\":\"2020\",\"birthdate\":\"873867600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33098\",\"position\":\"RB\",\"name\":\"Anderson, Darius\",\"college\":\"TCU\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14565\",\"weight\":\"212\",\"sportsdata_id\":\"9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6\",\"id\":\"14812\",\"team\":\"FA\",\"cbs_id\":\"2240319\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33138\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14813\",\"draft_team\":\"FA\",\"birthdate\":\"902638800\",\"name\":\"Robinson, James\",\"college\":\"Illinois State\",\"rotowire_id\":\"14660\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"team\":\"JAC\",\"cbs_id\":\"2257036\"},{\"draft_year\":\"2020\",\"birthdate\":\"886827600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33307\",\"position\":\"RB\",\"name\":\"Herrien, Brian\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14438\",\"weight\":\"210\",\"sportsdata_id\":\"af366ded-5eba-4a8d-b9fe-37ace1e173f0\",\"id\":\"14814\",\"team\":\"FA\",\"cbs_id\":\"2248619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32814\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14815\",\"draft_team\":\"SEA\",\"birthdate\":\"905922000\",\"name\":\"Dallas, DeeJay\",\"draft_pick\":\"38\",\"college\":\"Miami\",\"rotowire_id\":\"14410\",\"height\":\"70\",\"jersey\":\"31\",\"twitter_username\":\"DallasDeejay\",\"sportsdata_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"team\":\"SEA\",\"cbs_id\":\"2804094\"},{\"draft_year\":\"2020\",\"birthdate\":\"910846800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32972\",\"position\":\"RB\",\"name\":\"Warren, Michael\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14496\",\"weight\":\"224\",\"sportsdata_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"id\":\"14816\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"893826000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33235\",\"position\":\"RB\",\"name\":\"Taylor, Patrick\",\"college\":\"Memphis\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14573\",\"weight\":\"223\",\"sportsdata_id\":\"ef87e355-8e0c-40ed-a85d-bca4896d4f1e\",\"id\":\"14817\",\"team\":\"GBP\",\"cbs_id\":\"2256736\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33297\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14818\",\"draft_team\":\"FA\",\"birthdate\":\"872398800\",\"name\":\"Jones, Xavier\",\"college\":\"SMU\",\"rotowire_id\":\"14925\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"70110b01-060d-443d-b799-5d4edc9272de\",\"team\":\"LAR\",\"cbs_id\":\"3159182\"},{\"draft_year\":\"2020\",\"birthdate\":\"883544400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33126\",\"position\":\"RB\",\"name\":\"Feaster, Tavien\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14592\",\"weight\":\"215\",\"sportsdata_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"id\":\"14819\",\"team\":\"FA\",\"cbs_id\":\"2239519\"},{\"draft_year\":\"2020\",\"birthdate\":\"901947600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33037\",\"position\":\"RB\",\"name\":\"Leake, Javon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14361\",\"weight\":\"206\",\"sportsdata_id\":\"241d5e15-f9e6-4bf2-ac36-74dcbc9cc148\",\"id\":\"14820\",\"team\":\"FA\",\"cbs_id\":\"2804292\"},{\"draft_year\":\"2020\",\"birthdate\":\"842504400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33199\",\"position\":\"RB\",\"name\":\"Hasty, JaMycal\",\"college\":\"Baylor\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14392\",\"weight\":\"205\",\"sportsdata_id\":\"c6c50d09-f14f-41c2-9eb3-87514f0121f6\",\"id\":\"14821\",\"team\":\"SFO\",\"cbs_id\":\"2189504\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Corbin, Reggie\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14440\",\"id\":\"14822\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33100\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14823\",\"draft_team\":\"FA\",\"birthdate\":\"897800400\",\"name\":\"Dowdle, Rico\",\"college\":\"South Carolina\",\"rotowire_id\":\"14657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bba755a2-63b6-4ac1-b806-0609816135de\",\"team\":\"DAL\",\"cbs_id\":\"2252798\"},{\"draft_year\":\"2020\",\"rotoworld_id\":\"60322\",\"status\":\"R\",\"stats_id\":\"33161\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14824\",\"draft_team\":\"FA\",\"birthdate\":\"876114000\",\"name\":\"Phillips, Scottie\",\"college\":\"Mississippi\",\"rotowire_id\":\"14659\",\"height\":\"68\",\"jersey\":\"40\",\"sportsdata_id\":\"26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd\",\"team\":\"HOU\",\"cbs_id\":\"2962972\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Conkrite, Jordan\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"id\":\"14825\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"832050000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33179\",\"position\":\"RB\",\"name\":\"Pierce, Artavis\",\"college\":\"Oregon State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14881\",\"weight\":\"208\",\"sportsdata_id\":\"a21cba9e-32a9-494b-b2a1-d454b65872b6\",\"id\":\"14826\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33028\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14827\",\"draft_team\":\"FA\",\"birthdate\":\"883890000\",\"name\":\"Taylor, J.J.\",\"college\":\"Arizona\",\"rotowire_id\":\"14459\",\"height\":\"66\",\"jersey\":\"42\",\"sportsdata_id\":\"879325b1-c961-4c9a-a3a4-679d77a28293\",\"team\":\"NEP\",\"cbs_id\":\"2252786\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33114\",\"position\":\"RB\",\"name\":\"Jones, Tony\",\"college\":\"Notre Dame\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14423\",\"weight\":\"224\",\"sportsdata_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"id\":\"14828\",\"team\":\"FA\",\"cbs_id\":\"2260681\"},{\"draft_year\":\"2020\",\"birthdate\":\"877150800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33309\",\"position\":\"RB\",\"name\":\"LeMay, Benny\",\"college\":\"Charlotte\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14532\",\"weight\":\"218\",\"sportsdata_id\":\"46cf23c5-7096-4f18-a3d8-59f0befc95ff\",\"id\":\"14829\",\"team\":\"FA\",\"cbs_id\":\"2258154\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32926\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"188\",\"id\":\"14830\",\"draft_team\":\"FA\",\"birthdate\":\"849157200\",\"name\":\"Bellamy, LeVante\",\"college\":\"Western Michigan\",\"rotowire_id\":\"14656\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"53022661-b6bb-481b-9ce8-b603e521925f\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"883717200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32966\",\"position\":\"RB\",\"name\":\"Killins Jr., Adrian\",\"college\":\"Central Florida\",\"stats_global_id\":\"0\",\"height\":\"68\",\"rotowire_id\":\"14396\",\"weight\":\"164\",\"sportsdata_id\":\"2af6db68-3ad7-4699-8f86-0140fffce577\",\"id\":\"14831\",\"team\":\"FA\",\"cbs_id\":\"3159156\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32687\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"189\",\"id\":\"14832\",\"draft_team\":\"DAL\",\"birthdate\":\"923547600\",\"name\":\"Lamb, CeeDee\",\"draft_pick\":\"17\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14411\",\"height\":\"74\",\"jersey\":\"88\",\"twitter_username\":\"_CeeDeeThree\",\"sportsdata_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"team\":\"DAL\",\"cbs_id\":\"2865251\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32685\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14833\",\"draft_team\":\"DEN\",\"birthdate\":\"924930000\",\"name\":\"Jeudy, Jerry\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"14458\",\"height\":\"73\",\"jersey\":\"10\",\"twitter_username\":\"jerryjeudy\",\"sportsdata_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"team\":\"DEN\",\"cbs_id\":\"2741201\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32682\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14834\",\"draft_team\":\"LVR\",\"birthdate\":\"917154000\",\"name\":\"Ruggs, Henry\",\"draft_pick\":\"12\",\"college\":\"Alabama\",\"rotowire_id\":\"14473\",\"height\":\"72\",\"jersey\":\"11\",\"twitter_username\":\"__RUGGS\",\"sportsdata_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32703\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14835\",\"draft_team\":\"CIN\",\"birthdate\":\"917499600\",\"name\":\"Higgins, Tee\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"14506\",\"height\":\"76\",\"jersey\":\"85\",\"twitter_username\":\"teehiggins5\",\"sportsdata_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"team\":\"CIN\",\"cbs_id\":\"2809208\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32692\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14836\",\"draft_team\":\"MIN\",\"birthdate\":\"929509200\",\"name\":\"Jefferson, Justin\",\"draft_pick\":\"22\",\"college\":\"LSU\",\"rotowire_id\":\"14509\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"JJettas2\",\"sportsdata_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"team\":\"MIN\",\"cbs_id\":\"2871343\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32716\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"14837\",\"draft_team\":\"DEN\",\"birthdate\":\"931410000\",\"name\":\"Hamler, KJ\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14462\",\"height\":\"69\",\"jersey\":\"13\",\"twitter_username\":\"Kj_hamler\",\"sportsdata_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"team\":\"DEN\",\"cbs_id\":\"2804432\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32712\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14838\",\"draft_team\":\"JAC\",\"birthdate\":\"907563600\",\"name\":\"Shenault, Laviska\",\"draft_pick\":\"10\",\"college\":\"Colorado\",\"rotowire_id\":\"14358\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"Viska2live\",\"sportsdata_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32691\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14839\",\"draft_team\":\"PHI\",\"birthdate\":\"915166800\",\"name\":\"Reagor, Jalen\",\"draft_pick\":\"21\",\"rotowire_id\":\"14421\",\"height\":\"71\",\"jersey\":\"18\",\"twitter_username\":\"jalenreagor\",\"sportsdata_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"team\":\"PHI\",\"cbs_id\":\"2803733\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32695\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"14840\",\"draft_team\":\"SFO\",\"birthdate\":\"890110800\",\"name\":\"Aiyuk, Brandon\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"rotowire_id\":\"14386\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"THE2ERA\",\"sportsdata_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"team\":\"SFO\",\"cbs_id\":\"2967489\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32719\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14841\",\"draft_team\":\"PIT\",\"birthdate\":\"899787600\",\"name\":\"Claypool, Chase\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14433\",\"height\":\"76\",\"jersey\":\"11\",\"twitter_username\":\"ChaseClaypool\",\"sportsdata_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"team\":\"PIT\",\"cbs_id\":\"2260676\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32704\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14842\",\"draft_team\":\"IND\",\"birthdate\":\"876027600\",\"name\":\"Pittman, Michael\",\"draft_pick\":\"2\",\"college\":\"USC\",\"rotowire_id\":\"14378\",\"height\":\"76\",\"jersey\":\"11\",\"twitter_username\":\"MikePitt_Jr\",\"sportsdata_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"team\":\"IND\",\"cbs_id\":\"2240188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32750\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14843\",\"draft_team\":\"LVR\",\"birthdate\":\"876805200\",\"name\":\"Bowden, Lynn\",\"draft_pick\":\"16\",\"college\":\"Kentucky\",\"rotowire_id\":\"14460\",\"height\":\"72\",\"jersey\":\"15\",\"twitter_username\":\"LynnBowden_1\",\"sportsdata_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"team\":\"MIA\",\"cbs_id\":\"2875380\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32751\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14844\",\"draft_team\":\"LVR\",\"birthdate\":\"910933200\",\"name\":\"Edwards, Bryan\",\"draft_pick\":\"17\",\"college\":\"South Carolina\",\"rotowire_id\":\"14577\",\"height\":\"75\",\"jersey\":\"89\",\"twitter_username\":\"B__ED89\",\"sportsdata_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"team\":\"LVR\",\"cbs_id\":\"2221840\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32798\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14845\",\"draft_team\":\"BUF\",\"birthdate\":\"922942800\",\"name\":\"Davis, Gabriel\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"rotowire_id\":\"14359\",\"height\":\"75\",\"jersey\":\"3\",\"twitter_username\":\"DavisGB1\",\"sportsdata_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"team\":\"BUF\",\"cbs_id\":\"2804813\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32729\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14846\",\"draft_team\":\"NYJ\",\"birthdate\":\"876459600\",\"name\":\"Mims, Denzel\",\"draft_pick\":\"27\",\"college\":\"Baylor\",\"rotowire_id\":\"14539\",\"height\":\"75\",\"jersey\":\"11\",\"twitter_username\":\"Zel5Zelly\",\"sportsdata_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"team\":\"NYJ\",\"cbs_id\":\"2253076\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32762\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14847\",\"draft_team\":\"BAL\",\"birthdate\":\"874040400\",\"name\":\"Duvernay, Devin\",\"draft_pick\":\"28\",\"college\":\"Texas\",\"rotowire_id\":\"14636\",\"height\":\"71\",\"jersey\":\"13\",\"twitter_username\":\"Dev_Duv5\",\"sportsdata_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"team\":\"BAL\",\"cbs_id\":\"2246849\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32871\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14848\",\"draft_team\":\"BAL\",\"birthdate\":\"843282000\",\"name\":\"Proche, James\",\"draft_pick\":\"22\",\"college\":\"SMU\",\"rotowire_id\":\"14415\",\"height\":\"72\",\"jersey\":\"11\",\"twitter_username\":\"jamesproche3\",\"sportsdata_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"team\":\"BAL\",\"cbs_id\":\"2180769\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32877\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14849\",\"draft_team\":\"BUF\",\"birthdate\":\"908946000\",\"name\":\"Hodgins, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Oregon State\",\"rotowire_id\":\"14356\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"IsaiahHodgins\",\"sportsdata_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"team\":\"BUF\",\"cbs_id\":\"2783899\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32836\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14850\",\"draft_team\":\"DET\",\"birthdate\":\"891406800\",\"name\":\"Cephus, Quintez\",\"draft_pick\":\"20\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14466\",\"height\":\"73\",\"jersey\":\"87\",\"twitter_username\":\"QoDeep_87\",\"sportsdata_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"team\":\"DET\",\"cbs_id\":\"2251870\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32890\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14851\",\"draft_team\":\"LAC\",\"birthdate\":\"874299600\",\"name\":\"Hill, K.J.\",\"draft_pick\":\"6\",\"college\":\"Ohio State\",\"rotowire_id\":\"14414\",\"height\":\"72\",\"jersey\":\"84\",\"twitter_username\":\"kayjayhill\",\"sportsdata_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"team\":\"LAC\",\"cbs_id\":\"2179813\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32736\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14852\",\"draft_team\":\"WAS\",\"birthdate\":\"898578000\",\"name\":\"Gibson, Antonio\",\"draft_pick\":\"2\",\"college\":\"Memphis\",\"rotowire_id\":\"14639\",\"height\":\"74\",\"jersey\":\"24\",\"twitter_username\":\"antoniogibson14\",\"sportsdata_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"team\":\"WAS\",\"cbs_id\":\"2960976\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32835\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14853\",\"draft_team\":\"JAC\",\"birthdate\":\"874990800\",\"name\":\"Johnson, Collin\",\"draft_pick\":\"19\",\"college\":\"Texas\",\"rotowire_id\":\"14545\",\"height\":\"78\",\"jersey\":\"19\",\"twitter_username\":\"Call_In_Johnson\",\"sportsdata_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"team\":\"JAC\",\"cbs_id\":\"2240315\"},{\"draft_year\":\"2020\",\"birthdate\":\"853304400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33040\",\"position\":\"WR\",\"name\":\"Victor, Binjimen\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14529\",\"weight\":\"199\",\"sportsdata_id\":\"630e6b5d-0486-4bc3-a919-1f02687c1291\",\"id\":\"14854\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33039\",\"position\":\"WR\",\"name\":\"Mack, Austin\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14546\",\"weight\":\"215\",\"sportsdata_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"id\":\"14855\",\"team\":\"NYG\",\"cbs_id\":\"2239784\"},{\"draft_year\":\"2020\",\"birthdate\":\"891925200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33027\",\"position\":\"WR\",\"name\":\"Davis, Quartney\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14461\",\"weight\":\"200\",\"sportsdata_id\":\"5c54defd-6f6d-4884-9fcb-80343d2d72d3\",\"id\":\"14856\",\"team\":\"FA\",\"cbs_id\":\"2249179\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32857\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14857\",\"draft_team\":\"CLE\",\"birthdate\":\"919400400\",\"name\":\"Peoples-Jones, Donovan\",\"draft_pick\":\"8\",\"college\":\"Michigan\",\"rotowire_id\":\"14457\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"dpeoplesjones\",\"sportsdata_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"team\":\"CLE\",\"cbs_id\":\"2819119\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32727\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14858\",\"draft_team\":\"LAR\",\"birthdate\":\"838357200\",\"name\":\"Jefferson, Van\",\"draft_pick\":\"25\",\"college\":\"Florida\",\"rotowire_id\":\"14430\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"team\":\"LAR\",\"cbs_id\":\"2186342\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33253\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14859\",\"draft_team\":\"FA\",\"birthdate\":\"889419600\",\"name\":\"Jackson, Trishton\",\"college\":\"Syracuse\",\"rotowire_id\":\"14402\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"9a2cd41e-a6e8-42d6-aad4-65c42939d733\",\"team\":\"LAR\",\"cbs_id\":\"2253371\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32887\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14860\",\"draft_team\":\"SFO\",\"birthdate\":\"868510800\",\"name\":\"Jennings, Jauan\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"14376\",\"height\":\"75\",\"sportsdata_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"team\":\"FA\",\"cbs_id\":\"2180514\"},{\"draft_year\":\"2020\",\"birthdate\":\"842590800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33113\",\"position\":\"WR\",\"name\":\"Johnson, Juwan\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14630\",\"weight\":\"231\",\"sportsdata_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"id\":\"14861\",\"team\":\"NOS\",\"cbs_id\":\"2186637\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32821\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14862\",\"draft_team\":\"LAC\",\"birthdate\":\"883890000\",\"name\":\"Reed, Joe\",\"draft_pick\":\"5\",\"college\":\"Virginia\",\"rotowire_id\":\"14428\",\"height\":\"73\",\"jersey\":\"12\",\"twitter_username\":\"JoeBee_2\",\"sportsdata_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"team\":\"LAC\",\"cbs_id\":\"2251260\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32812\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14863\",\"draft_team\":\"WAS\",\"birthdate\":\"892270800\",\"name\":\"Gandy-Golden, Antonio\",\"draft_pick\":\"36\",\"college\":\"Liberty\",\"rotowire_id\":\"14568\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"gandygolden11\",\"sportsdata_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"team\":\"WAS\",\"cbs_id\":\"2250521\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32831\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14864\",\"draft_team\":\"TBB\",\"birthdate\":\"904021200\",\"name\":\"Johnson, Tyler\",\"draft_pick\":\"15\",\"college\":\"Minnesota\",\"rotowire_id\":\"14432\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"T_muhneyy10\",\"sportsdata_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"team\":\"TBB\",\"cbs_id\":\"1620002\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32884\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"14865\",\"draft_team\":\"SEA\",\"birthdate\":\"902206800\",\"name\":\"Swain, Freddie\",\"draft_pick\":\"35\",\"college\":\"Florida\",\"rotowire_id\":\"14644\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"team\":\"SEA\",\"cbs_id\":\"2221836\"},{\"draft_year\":\"2020\",\"birthdate\":\"866523600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33022\",\"position\":\"WR\",\"name\":\"Thomas, Jeff\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14382\",\"weight\":\"180\",\"sportsdata_id\":\"a80ccad9-4e50-4796-955e-0278f0c9bd2f\",\"id\":\"14866\",\"team\":\"FA\",\"cbs_id\":\"2826768\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32713\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"258\",\"id\":\"14867\",\"draft_team\":\"CHI\",\"birthdate\":\"921042000\",\"name\":\"Kmet, Cole\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14436\",\"height\":\"78\",\"jersey\":\"85\",\"twitter_username\":\"ColeKmet\",\"sportsdata_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"team\":\"CHI\",\"cbs_id\":\"2868619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32806\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14868\",\"draft_team\":\"LAR\",\"birthdate\":\"859438800\",\"name\":\"Hopkins, Brycen\",\"draft_pick\":\"30\",\"college\":\"Purdue\",\"rotowire_id\":\"14586\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"Itsbhop89\",\"sportsdata_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"team\":\"LAR\",\"cbs_id\":\"2183906\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33208\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"249\",\"id\":\"14869\",\"draft_team\":\"FA\",\"birthdate\":\"895122000\",\"name\":\"Moss, Thaddeus\",\"college\":\"LSU\",\"rotowire_id\":\"14524\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"309b8104-8407-4365-989a-f726251714a7\",\"team\":\"WAS\",\"cbs_id\":\"2246946\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32775\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14870\",\"draft_team\":\"NOS\",\"birthdate\":\"855118800\",\"name\":\"Trautman, Adam\",\"draft_pick\":\"41\",\"college\":\"Dayton\",\"rotowire_id\":\"14541\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"team\":\"NOS\",\"cbs_id\":\"2182228\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32803\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14871\",\"draft_team\":\"SEA\",\"birthdate\":\"915771600\",\"name\":\"Parkinson, Colby\",\"draft_pick\":\"27\",\"college\":\"Stanford\",\"rotowire_id\":\"14463\",\"height\":\"79\",\"jersey\":\"84\",\"sportsdata_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"team\":\"SEA\",\"cbs_id\":\"2867522\"},{\"draft_year\":\"2020\",\"birthdate\":\"872139600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33064\",\"position\":\"TE\",\"name\":\"Pinkney, Jared\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14632\",\"weight\":\"260\",\"sportsdata_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"id\":\"14872\",\"team\":\"FA\",\"cbs_id\":\"2180558\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32788\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14873\",\"draft_team\":\"DEN\",\"birthdate\":\"893480400\",\"name\":\"Okwuegbunam, Albert\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"rotowire_id\":\"14369\",\"height\":\"77\",\"jersey\":\"85\",\"twitter_username\":\"AOkwuegbunam\",\"sportsdata_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"team\":\"DEN\",\"cbs_id\":\"2245117\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33186\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"239\",\"id\":\"14874\",\"draft_team\":\"FA\",\"birthdate\":\"903589200\",\"name\":\"Bryant, Hunter\",\"college\":\"Washington\",\"rotowire_id\":\"14364\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"826c6c22-2a3a-48bb-befb-8e552fb391ea\",\"team\":\"DET\",\"cbs_id\":\"2815166\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32785\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14875\",\"draft_team\":\"CLE\",\"birthdate\":\"893307600\",\"name\":\"Bryant, Harrison\",\"draft_pick\":\"9\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14576\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"hbryant17\",\"sportsdata_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"team\":\"CLE\",\"cbs_id\":\"2241240\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32764\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14876\",\"draft_team\":\"GBP\",\"birthdate\":\"855896400\",\"name\":\"Deguara, Josiah\",\"draft_pick\":\"30\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14629\",\"height\":\"75\",\"jersey\":\"81\",\"twitter_username\":\"JosiahD5\",\"sportsdata_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"team\":\"GBP\",\"cbs_id\":\"2181108\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32672\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14877\",\"draft_team\":\"WAS\",\"birthdate\":\"924066000\",\"name\":\"Young, Chase\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"14452\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"youngchase907\",\"sportsdata_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"team\":\"WAS\",\"cbs_id\":\"2829229\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32707\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"264\",\"id\":\"14878\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Gross-Matos, Yetur\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"rotowire_id\":\"14355\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"__lobo99\",\"sportsdata_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"team\":\"CAR\",\"cbs_id\":\"2868927\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32724\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14879\",\"draft_team\":\"BUF\",\"birthdate\":\"905835600\",\"name\":\"Epenesa, A.J.\",\"draft_pick\":\"22\",\"college\":\"Iowa\",\"rotowire_id\":\"14501\",\"height\":\"77\",\"jersey\":\"57\",\"twitter_username\":\"ajepenesa24\",\"sportsdata_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"team\":\"BUF\",\"cbs_id\":\"2865969\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32817\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14880\",\"draft_team\":\"CIN\",\"birthdate\":\"893739600\",\"name\":\"Kareem, Khalid\",\"draft_pick\":\"1\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14684\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"khalid_kareem53\",\"sportsdata_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"team\":\"CIN\",\"cbs_id\":\"2240621\"},{\"draft_year\":\"2020\",\"birthdate\":\"871362000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33320\",\"position\":\"DE\",\"name\":\"Coe, Nick\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14398\",\"weight\":\"282\",\"sportsdata_id\":\"67d2e7dd-e937-49d5-bf37-0efed947609f\",\"id\":\"14881\",\"team\":\"FA\",\"cbs_id\":\"2257893\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"rotoworld_id\":\"60119\",\"status\":\"R\",\"stats_id\":\"32760\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14882\",\"birthdate\":\"864536400\",\"draft_team\":\"HOU\",\"name\":\"Greenard, Jonathan\",\"draft_pick\":\"26\",\"college\":\"Florida\",\"rotowire_id\":\"14550\",\"height\":\"75\",\"jersey\":\"52\",\"twitter_username\":\"jongreenard7\",\"sportsdata_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"team\":\"HOU\",\"cbs_id\":\"2181166\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32717\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"279\",\"id\":\"14883\",\"draft_team\":\"ATL\",\"birthdate\":\"894862800\",\"name\":\"Davidson, Marlon\",\"draft_pick\":\"15\",\"college\":\"Auburn\",\"rotowire_id\":\"14540\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"marlondavidson7\",\"sportsdata_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"team\":\"ATL\",\"cbs_id\":\"2222006\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32824\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14884\",\"draft_team\":\"MIA\",\"birthdate\":\"842331600\",\"name\":\"Strowbridge, Jason\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"rotowire_id\":\"14730\",\"height\":\"77\",\"jersey\":\"58\",\"sportsdata_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"team\":\"MIA\",\"cbs_id\":\"2179351\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32749\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"14885\",\"draft_team\":\"NYJ\",\"birthdate\":\"871534800\",\"name\":\"Zuniga, Jabari\",\"draft_pick\":\"15\",\"college\":\"Florida\",\"rotowire_id\":\"14734\",\"height\":\"76\",\"jersey\":\"92\",\"twitter_username\":\"JabariZuniga\",\"sportsdata_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"team\":\"NYJ\",\"cbs_id\":\"2180452\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32849\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14886\",\"draft_team\":\"DAL\",\"birthdate\":\"908600400\",\"name\":\"Anae, Bradlee\",\"draft_pick\":\"33\",\"college\":\"Utah\",\"rotowire_id\":\"14582\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"team\":\"DAL\",\"cbs_id\":\"2240496\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32678\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14887\",\"draft_team\":\"ARI\",\"birthdate\":\"901429200\",\"name\":\"Simmons, Isaiah\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"14525\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"isaiahsimmons25\",\"sportsdata_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"team\":\"ARI\",\"cbs_id\":\"2239532\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32690\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14888\",\"draft_team\":\"JAC\",\"birthdate\":\"932878800\",\"name\":\"Chaisson, K'Lavon\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"14523\",\"height\":\"76\",\"jersey\":\"45\",\"twitter_username\":\"S4CKGURU\",\"sportsdata_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"team\":\"JAC\",\"cbs_id\":\"2804551\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32693\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"234\",\"id\":\"14889\",\"draft_team\":\"LAC\",\"birthdate\":\"911192400\",\"name\":\"Murray, Kenneth\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14434\",\"height\":\"75\",\"jersey\":\"56\",\"twitter_username\":\"KennethMurray\",\"sportsdata_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"team\":\"LAC\",\"cbs_id\":\"2804138\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32767\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14890\",\"draft_team\":\"CLE\",\"birthdate\":\"922942800\",\"name\":\"Phillips, Jacob\",\"draft_pick\":\"33\",\"college\":\"LSU\",\"rotowire_id\":\"14517\",\"height\":\"76\",\"jersey\":\"50\",\"twitter_username\":\"jacobphilly\",\"sportsdata_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"team\":\"CLE\",\"cbs_id\":\"2804564\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32768\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14891\",\"draft_team\":\"BAL\",\"birthdate\":\"889074000\",\"name\":\"Harrison, Malik\",\"draft_pick\":\"34\",\"college\":\"Ohio State\",\"rotowire_id\":\"14648\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"team\":\"BAL\",\"cbs_id\":\"2260979\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32697\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14892\",\"draft_team\":\"SEA\",\"birthdate\":\"877410000\",\"name\":\"Brooks, Jordyn\",\"draft_pick\":\"27\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14739\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"JordynBrooks_\",\"sportsdata_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"team\":\"SEA\",\"cbs_id\":\"2252263\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32744\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14893\",\"draft_team\":\"NOS\",\"birthdate\":\"851922000\",\"name\":\"Baun, Zack\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14374\",\"height\":\"75\",\"jersey\":\"53\",\"twitter_username\":\"zackbizzaun\",\"sportsdata_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"team\":\"NOS\",\"cbs_id\":\"2183919\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32757\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14894\",\"draft_team\":\"NEP\",\"birthdate\":\"862462800\",\"name\":\"Jennings, Anfernee\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"14742\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"anferneejenning\",\"sportsdata_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"team\":\"NEP\",\"cbs_id\":\"2186321\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Woodward, David\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14645\",\"id\":\"14895\",\"team\":\"FA\",\"cbs_id\":\"2258285\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32698\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14896\",\"draft_team\":\"BAL\",\"birthdate\":\"934520400\",\"name\":\"Queen, Patrick\",\"draft_pick\":\"28\",\"college\":\"LSU\",\"rotowire_id\":\"14508\",\"height\":\"73\",\"jersey\":\"48\",\"twitter_username\":\"Patrickqueen_\",\"sportsdata_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"team\":\"BAL\",\"cbs_id\":\"2804566\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32677\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"318\",\"id\":\"14897\",\"draft_team\":\"CAR\",\"birthdate\":\"892616400\",\"name\":\"Brown, Derrick\",\"draft_pick\":\"7\",\"college\":\"Auburn\",\"rotowire_id\":\"13852\",\"height\":\"77\",\"jersey\":\"95\",\"twitter_username\":\"DerrickBrownAU5\",\"sportsdata_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"team\":\"CAR\",\"cbs_id\":\"2241797\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32726\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14898\",\"draft_team\":\"MIA\",\"birthdate\":\"865918800\",\"name\":\"Davis, Raekwon\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"14538\",\"height\":\"79\",\"jersey\":\"98\",\"twitter_username\":\"raekwondavis_99\",\"sportsdata_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"team\":\"MIA\",\"cbs_id\":\"2252833\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32684\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14899\",\"draft_team\":\"SFO\",\"birthdate\":\"875854800\",\"name\":\"Kinlaw, Javon\",\"draft_pick\":\"14\",\"college\":\"South Carolina\",\"rotowire_id\":\"14444\",\"height\":\"78\",\"jersey\":\"99\",\"twitter_username\":\"JavonKinlaw\",\"sportsdata_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"team\":\"SFO\",\"cbs_id\":\"2869019\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32741\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14900\",\"draft_team\":\"BAL\",\"birthdate\":\"879742800\",\"name\":\"Madubuike, Justin\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14380\",\"height\":\"75\",\"jersey\":\"92\",\"twitter_username\":\"MadubuikeJustin\",\"sportsdata_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"team\":\"BAL\",\"cbs_id\":\"2249188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32752\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"302\",\"id\":\"14901\",\"draft_team\":\"DAL\",\"birthdate\":\"853477200\",\"name\":\"Gallimore, Neville\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14451\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"path2greatwork\",\"sportsdata_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"team\":\"DAL\",\"cbs_id\":\"2179652\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32673\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14902\",\"draft_team\":\"DET\",\"birthdate\":\"917931600\",\"name\":\"Okudah, Jeff\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"14424\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"jeffokudah\",\"sportsdata_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"team\":\"DET\",\"cbs_id\":\"2804425\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32721\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"14903\",\"draft_team\":\"DAL\",\"birthdate\":\"906267600\",\"name\":\"Diggs, Trevon\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"14389\",\"height\":\"74\",\"jersey\":\"27\",\"twitter_username\":\"TrevonDiggs\",\"sportsdata_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"team\":\"DAL\",\"cbs_id\":\"2252834\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32731\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14904\",\"draft_team\":\"TEN\",\"birthdate\":\"904798800\",\"name\":\"Fulton, Kristian\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"14443\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Kriss1_\",\"sportsdata_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"team\":\"TEN\",\"cbs_id\":\"2223248\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32679\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14905\",\"draft_team\":\"JAC\",\"birthdate\":\"907131600\",\"name\":\"Henderson, CJ\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"14367\",\"height\":\"73\",\"jersey\":\"23\",\"twitter_username\":\"HendersonChris_\",\"sportsdata_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"team\":\"JAC\",\"cbs_id\":\"2773013\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32689\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14906\",\"draft_team\":\"LVR\",\"birthdate\":\"823237200\",\"name\":\"Arnette, Damon\",\"draft_pick\":\"19\",\"college\":\"Ohio State\",\"rotowire_id\":\"14547\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"damon_arnette\",\"sportsdata_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"team\":\"LVR\",\"cbs_id\":\"2179793\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32714\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"14907\",\"draft_team\":\"CLE\",\"birthdate\":\"906267600\",\"name\":\"Delpit, Grant\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"14507\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"realgrantdelpit\",\"sportsdata_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"team\":\"CLE\",\"cbs_id\":\"2804169\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32706\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14908\",\"draft_team\":\"NYG\",\"birthdate\":\"934174800\",\"name\":\"McKinney, Xavier\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"rotowire_id\":\"14617\",\"height\":\"73\",\"jersey\":\"29\",\"twitter_username\":\"mckinney15__\",\"sportsdata_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"team\":\"NYG\",\"cbs_id\":\"2741205\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32715\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14909\",\"draft_team\":\"TBB\",\"birthdate\":\"903243600\",\"name\":\"Winfield, Antoine\",\"draft_pick\":\"13\",\"college\":\"Minnesota\",\"rotowire_id\":\"14484\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"AntoineWJr11\",\"sportsdata_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"team\":\"TBB\",\"cbs_id\":\"2239774\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32740\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14910\",\"draft_team\":\"MIA\",\"birthdate\":\"891493200\",\"name\":\"Jones, Brandon\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"rotowire_id\":\"14696\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"BlessedJones33\",\"sportsdata_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"team\":\"MIA\",\"cbs_id\":\"2246113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32738\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14911\",\"draft_team\":\"NYJ\",\"birthdate\":\"844923600\",\"name\":\"Davis, Ashtyn\",\"draft_pick\":\"4\",\"college\":\"California\",\"rotowire_id\":\"14447\",\"height\":\"73\",\"jersey\":\"32\",\"sportsdata_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"team\":\"NYJ\",\"cbs_id\":\"2180264\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33211\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14912\",\"draft_team\":\"FA\",\"birthdate\":\"854514000\",\"name\":\"Blankenship, Rodrigo\",\"college\":\"Georgia\",\"rotowire_id\":\"14437\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"team\":\"IND\",\"cbs_id\":\"2183949\"},{\"draft_year\":\"2018\",\"birthdate\":\"773298000\",\"draft_team\":\"FA\",\"stats_id\":\"31669\",\"position\":\"DE\",\"name\":\"Walker, Cavon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13244\",\"weight\":\"278\",\"sportsdata_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"id\":\"14913\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"640933200\",\"draft_team\":\"FA\",\"stats_id\":\"32668\",\"position\":\"PK\",\"name\":\"Hajrullahu, Lirim\",\"college\":\"Western Ontario\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14808\",\"weight\":\"205\",\"sportsdata_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"id\":\"14914\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"799563600\",\"draft_team\":\"FA\",\"stats_id\":\"32667\",\"position\":\"PK\",\"name\":\"MacGinnis, Austin\",\"college\":\"Kentucky\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14354\",\"weight\":\"185\",\"sportsdata_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"id\":\"14915\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"878706000\",\"draft_team\":\"FA\",\"stats_id\":\"32097\",\"position\":\"CB\",\"name\":\"Smith, Saivion\",\"college\":\"Alabama\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13589\",\"jersey\":\"35\",\"weight\":\"199\",\"sportsdata_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"id\":\"14916\",\"team\":\"DAL\"},{\"draft_year\":\"2019\",\"birthdate\":\"852613200\",\"draft_team\":\"FA\",\"stats_id\":\"32669\",\"position\":\"RB\",\"name\":\"Patrick, Jacques\",\"college\":\"Florida State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13964\",\"weight\":\"236\",\"sportsdata_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"id\":\"14917\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32686\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14918\",\"draft_team\":\"ATL\",\"birthdate\":\"906526800\",\"name\":\"Terrell, A.J.\",\"draft_pick\":\"16\",\"college\":\"Clemson\",\"rotowire_id\":\"14526\",\"height\":\"74\",\"jersey\":\"24\",\"twitter_username\":\"ajterrell_8\",\"sportsdata_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"team\":\"ATL\",\"cbs_id\":\"2809212\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32700\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14919\",\"draft_team\":\"MIA\",\"birthdate\":\"943678800\",\"name\":\"Igbinoghene, Noah\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"14713\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"Noah_Igbo9\",\"sportsdata_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"team\":\"MIA\",\"cbs_id\":\"2829987\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32701\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14920\",\"draft_team\":\"MIN\",\"birthdate\":\"850366800\",\"name\":\"Gladney, Jeff\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"14548\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"team\":\"MIN\",\"cbs_id\":\"2180855\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32710\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14921\",\"draft_team\":\"NEP\",\"birthdate\":\"827470800\",\"name\":\"Dugger, Kyle\",\"draft_pick\":\"5\",\"college\":\"Lenoir-Rhyne University\",\"rotowire_id\":\"14542\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"KingDugg_3\",\"sportsdata_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"team\":\"NEP\",\"cbs_id\":\"3150388\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32709\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14922\",\"draft_team\":\"HOU\",\"birthdate\":\"899960400\",\"name\":\"Blacklock, Ross\",\"draft_pick\":\"8\",\"college\":\"TCU\",\"rotowire_id\":\"14406\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"1krozayy\",\"sportsdata_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"team\":\"HOU\",\"cbs_id\":\"2240321\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32718\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14923\",\"draft_team\":\"SEA\",\"birthdate\":\"859179600\",\"name\":\"Taylor, Darrell\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"14649\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"darrelltaylorst\",\"sportsdata_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"team\":\"SEA\",\"cbs_id\":\"2180538\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32720\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14924\",\"draft_team\":\"CHI\",\"birthdate\":\"924498000\",\"name\":\"Johnson, Jaylon\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14627\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"NBAxJay1\",\"sportsdata_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"team\":\"CHI\",\"cbs_id\":\"2827532\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32730\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14925\",\"draft_team\":\"NEP\",\"birthdate\":\"906094800\",\"name\":\"Uche, Josh\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"14477\",\"height\":\"74\",\"twitter_username\":\"_Uche35\",\"sportsdata_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"team\":\"NEP\",\"cbs_id\":\"2260670\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32733\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14926\",\"draft_team\":\"KCC\",\"birthdate\":\"887518800\",\"name\":\"Gay, Willie\",\"draft_pick\":\"31\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14520\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"WillieG___\",\"sportsdata_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32734\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14927\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Chinn, Jeremy\",\"draft_pick\":\"32\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14623\",\"height\":\"75\",\"jersey\":\"21\",\"twitter_username\":\"ChinnJeremy2\",\"sportsdata_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"team\":\"CAR\",\"cbs_id\":\"2247190\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32735\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14928\",\"draft_team\":\"CIN\",\"birthdate\":\"836802000\",\"name\":\"Wilson, Logan\",\"draft_pick\":\"1\",\"college\":\"Wyoming\",\"rotowire_id\":\"14647\",\"height\":\"74\",\"jersey\":\"55\",\"twitter_username\":\"ljw21\",\"sportsdata_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"team\":\"CIN\",\"cbs_id\":\"2181091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32737\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"241\",\"id\":\"14929\",\"draft_team\":\"DET\",\"birthdate\":\"883198800\",\"name\":\"Okwara, Julian\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14448\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"julian_okwara\",\"sportsdata_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"team\":\"DET\",\"cbs_id\":\"2260688\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32743\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14930\",\"draft_team\":\"JAC\",\"birthdate\":\"854773200\",\"name\":\"Hamilton, Davon\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"14714\",\"height\":\"76\",\"jersey\":\"52\",\"twitter_username\":\"dmhamilton53\",\"sportsdata_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"team\":\"JAC\",\"cbs_id\":\"2179811\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32747\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14931\",\"draft_team\":\"DEN\",\"birthdate\":\"874040400\",\"name\":\"Ojemudia, Michael\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"14711\",\"height\":\"73\",\"jersey\":\"23\",\"twitter_username\":\"GotMo_J\",\"sportsdata_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"team\":\"DEN\",\"cbs_id\":\"2179727\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"252\",\"id\":\"14932\",\"draft_team\":\"LAR\",\"name\":\"Lewis, Terrell\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"rotowire_id\":\"14390\",\"height\":\"77\",\"jersey\":\"52\",\"twitter_username\":\"_real24_\",\"sportsdata_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"team\":\"LAR\",\"cbs_id\":\"2252836\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32755\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"14933\",\"draft_team\":\"IND\",\"birthdate\":\"903934800\",\"name\":\"Blackmon, Julian\",\"draft_pick\":\"21\",\"college\":\"Utah\",\"rotowire_id\":\"14704\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"jumpmanjuice23\",\"sportsdata_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"team\":\"IND\",\"cbs_id\":\"2253091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32758\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14934\",\"draft_team\":\"CLE\",\"birthdate\":\"880261200\",\"name\":\"Elliott, Jordan\",\"draft_pick\":\"24\",\"college\":\"Missouri\",\"rotowire_id\":\"14353\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"bigj5k\",\"sportsdata_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"team\":\"CLE\",\"cbs_id\":\"2246110\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32759\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14935\",\"draft_team\":\"MIN\",\"birthdate\":\"904798800\",\"name\":\"Dantzler, Cameron\",\"draft_pick\":\"25\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14363\",\"height\":\"74\",\"jersey\":\"27\",\"twitter_username\":\"camdantzler3\",\"sportsdata_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"team\":\"MIN\",\"cbs_id\":\"2248633\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32761\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14936\",\"draft_team\":\"NEP\",\"birthdate\":\"871534800\",\"name\":\"Asiasi, Devin\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"14425\",\"height\":\"75\",\"jersey\":\"86\",\"twitter_username\":\"ASI2X\",\"sportsdata_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"team\":\"NEP\",\"cbs_id\":\"2260483\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32765\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14937\",\"draft_team\":\"DEN\",\"birthdate\":\"875163600\",\"name\":\"Agim, McTelvin\",\"draft_pick\":\"31\",\"college\":\"Arkansas\",\"rotowire_id\":\"14602\",\"height\":\"75\",\"jersey\":\"95\",\"twitter_username\":\"So_Splash\",\"sportsdata_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"team\":\"DEN\",\"cbs_id\":\"2240258\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32770\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14938\",\"draft_team\":\"LVR\",\"birthdate\":\"841986000\",\"name\":\"Muse, Tanner\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"14690\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"tanner_muse\",\"sportsdata_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"team\":\"LVR\",\"cbs_id\":\"2179227\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32771\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14939\",\"draft_team\":\"NEP\",\"birthdate\":\"924066000\",\"name\":\"Keene, Dalton\",\"draft_pick\":\"37\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14559\",\"height\":\"76\",\"jersey\":\"44\",\"twitter_username\":\"DaltonKeene18\",\"sportsdata_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"team\":\"NEP\",\"cbs_id\":\"2805113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32772\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"14940\",\"draft_team\":\"PIT\",\"birthdate\":\"870930000\",\"name\":\"Highsmith, Alex\",\"draft_pick\":\"38\",\"college\":\"North Carolina-Charlotte\",\"rotowire_id\":\"14724\",\"height\":\"76\",\"jersey\":\"56\",\"twitter_username\":\"highsmith34\",\"sportsdata_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"team\":\"PIT\",\"cbs_id\":\"2241393\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32773\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14941\",\"draft_team\":\"PHI\",\"birthdate\":\"902293200\",\"name\":\"Taylor, Davion\",\"draft_pick\":\"39\",\"college\":\"Colorado\",\"rotowire_id\":\"14751\",\"height\":\"74\",\"jersey\":\"52\",\"twitter_username\":\"daviontaylot\",\"sportsdata_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"team\":\"PHI\",\"cbs_id\":\"2962569\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32774\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14942\",\"draft_team\":\"LAR\",\"birthdate\":\"910846800\",\"name\":\"Burgess, Terrell\",\"draft_pick\":\"40\",\"college\":\"Utah\",\"rotowire_id\":\"14702\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"titaniumt98\",\"sportsdata_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"team\":\"LAR\",\"cbs_id\":\"2240499\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32777\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14943\",\"draft_team\":\"CIN\",\"birthdate\":\"874818000\",\"name\":\"Davis-Gaither, Akeem\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14661\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"AkeemDavis16\",\"sportsdata_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"team\":\"CIN\",\"cbs_id\":\"2182263\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32780\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14944\",\"draft_team\":\"NYG\",\"birthdate\":\"898578000\",\"name\":\"Holmes, Darney\",\"draft_pick\":\"4\",\"college\":\"UCLA\",\"rotowire_id\":\"14535\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"prowaydarnay\",\"sportsdata_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32783\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"14945\",\"draft_team\":\"CAR\",\"birthdate\":\"885186000\",\"name\":\"Pride, Troy\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14581\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"TroyPride18\",\"sportsdata_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"team\":\"CAR\",\"cbs_id\":\"2260689\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32784\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"335\",\"id\":\"14946\",\"draft_team\":\"ARI\",\"birthdate\":\"903848400\",\"name\":\"Fotu, Leki\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"14712\",\"height\":\"77\",\"jersey\":\"95\",\"twitter_username\":\"LekiFotu\",\"sportsdata_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"team\":\"ARI\",\"cbs_id\":\"2240504\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32787\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14947\",\"draft_team\":\"MIN\",\"birthdate\":\"878274000\",\"name\":\"Wonnum, D.J.\",\"draft_pick\":\"11\",\"college\":\"South Carolina\",\"rotowire_id\":\"14612\",\"height\":\"77\",\"jersey\":\"57\",\"twitter_username\":\"dwonnum\",\"sportsdata_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"team\":\"MIN\",\"cbs_id\":\"2252822\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32789\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14948\",\"draft_team\":\"ATL\",\"birthdate\":\"872744400\",\"name\":\"Walker, Mykal\",\"draft_pick\":\"13\",\"college\":\"Fresno State\",\"rotowire_id\":\"14754\",\"height\":\"75\",\"jersey\":\"43\",\"twitter_username\":\"MykalWalker3\",\"sportsdata_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"team\":\"ATL\",\"cbs_id\":\"2865637\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32793\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14949\",\"draft_team\":\"DAL\",\"birthdate\":\"860994000\",\"name\":\"Robinson, Reggie\",\"draft_pick\":\"17\",\"college\":\"Tulsa\",\"rotowire_id\":\"14708\",\"height\":\"73\",\"jersey\":\"41\",\"twitter_username\":\"RegRobII\",\"sportsdata_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32797\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14950\",\"draft_team\":\"PHI\",\"birthdate\":\"869806800\",\"name\":\"Wallace, K'Von\",\"draft_pick\":\"21\",\"college\":\"Clemson\",\"rotowire_id\":\"14686\",\"height\":\"71\",\"jersey\":\"42\",\"twitter_username\":\"KVonWallace\",\"sportsdata_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"team\":\"PHI\",\"cbs_id\":\"2239538\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32800\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"14951\",\"draft_team\":\"MIN\",\"birthdate\":\"916808400\",\"name\":\"Lynch, James\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"14499\",\"height\":\"76\",\"jersey\":\"66\",\"twitter_username\":\"JamesHusker38\",\"sportsdata_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"team\":\"MIN\",\"cbs_id\":\"2868531\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32801\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"308\",\"id\":\"14952\",\"draft_team\":\"ARI\",\"birthdate\":\"904194000\",\"name\":\"Lawrence, Rashard\",\"draft_pick\":\"25\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14717\",\"height\":\"74\",\"jersey\":\"92\",\"twitter_username\":\"Rashard_99\",\"sportsdata_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"team\":\"ARI\",\"cbs_id\":\"2223249\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32802\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14953\",\"draft_team\":\"MIN\",\"birthdate\":\"843022800\",\"name\":\"Dye, Troy\",\"draft_pick\":\"26\",\"college\":\"Oregon\",\"rotowire_id\":\"14740\",\"height\":\"76\",\"jersey\":\"45\",\"twitter_username\":\"tdye15dbtroy\",\"sportsdata_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"team\":\"MIN\",\"cbs_id\":\"2221826\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32804\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14954\",\"draft_team\":\"ATL\",\"birthdate\":\"872485200\",\"name\":\"Hawkins, Jaylinn\",\"draft_pick\":\"28\",\"college\":\"California\",\"rotowire_id\":\"14697\",\"height\":\"74\",\"jersey\":\"32\",\"twitter_username\":\"jhawko6\",\"sportsdata_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"team\":\"ATL\",\"cbs_id\":\"2180267\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32807\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"14955\",\"draft_team\":\"JAC\",\"birthdate\":\"923288400\",\"name\":\"Scott, Josiah\",\"draft_pick\":\"31\",\"college\":\"Michigan State\",\"rotowire_id\":\"14413\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"josiahscott7\",\"sportsdata_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"team\":\"JAC\",\"cbs_id\":\"2807092\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32808\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14956\",\"draft_team\":\"KCC\",\"birthdate\":\"853822800\",\"name\":\"Sneed, L'Jarius\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14688\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"team\":\"KCC\",\"cbs_id\":\"2239881\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32809\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14957\",\"draft_team\":\"LVR\",\"birthdate\":\"899701200\",\"name\":\"Robertson, Amik\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14709\",\"height\":\"69\",\"jersey\":\"21\",\"twitter_username\":\"_youngtruth7\",\"sportsdata_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"team\":\"LVR\",\"cbs_id\":\"2816298\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32810\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14958\",\"draft_team\":\"JAC\",\"birthdate\":\"878014800\",\"name\":\"Quarterman, Shaquille\",\"draft_pick\":\"34\",\"college\":\"Miami\",\"rotowire_id\":\"14747\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"team\":\"JAC\",\"cbs_id\":\"2221934\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32811\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"181\",\"id\":\"14959\",\"draft_team\":\"HOU\",\"birthdate\":\"832136400\",\"name\":\"Reid, John\",\"draft_pick\":\"35\",\"college\":\"Penn State\",\"rotowire_id\":\"14710\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"John_Doe_25\",\"sportsdata_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"team\":\"HOU\",\"cbs_id\":\"2186643\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32818\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14960\",\"draft_team\":\"SEA\",\"birthdate\":\"896763600\",\"name\":\"Robinson, Alton\",\"draft_pick\":\"2\",\"college\":\"Syracuse\",\"rotowire_id\":\"14727\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"team\":\"SEA\",\"cbs_id\":\"2868213\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32822\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14961\",\"draft_team\":\"CAR\",\"name\":\"Robinson, Kenny\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"rotowire_id\":\"14787\",\"height\":\"74\",\"twitter_username\":\"krob2__\",\"sportsdata_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"team\":\"CAR\",\"cbs_id\":\"2835561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32825\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"268\",\"id\":\"14962\",\"draft_team\":\"CHI\",\"birthdate\":\"866178000\",\"name\":\"Gipson, Trevis\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"rotowire_id\":\"14680\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"trevisgipson\",\"sportsdata_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"team\":\"CHI\",\"cbs_id\":\"2181277\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32827\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14963\",\"draft_team\":\"JAC\",\"birthdate\":\"899269200\",\"name\":\"Thomas, Daniel\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"14687\",\"height\":\"71\",\"jersey\":\"20\",\"twitter_username\":\"gamechanger021\",\"sportsdata_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"team\":\"JAC\",\"cbs_id\":\"2241807\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32828\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14964\",\"draft_team\":\"NYJ\",\"birthdate\":\"863326800\",\"name\":\"Hall, Bryce\",\"draft_pick\":\"12\",\"college\":\"Virginia\",\"rotowire_id\":\"14445\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"team\":\"NYJ\",\"cbs_id\":\"2251254\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32829\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14965\",\"draft_team\":\"NEP\",\"birthdate\":\"849934800\",\"name\":\"Rohrwasser, Justin\",\"draft_pick\":\"13\",\"college\":\"Marshall\",\"rotowire_id\":\"14822\",\"height\":\"75\",\"sportsdata_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"team\":\"FA\",\"cbs_id\":\"2194734\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32832\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14966\",\"draft_team\":\"WAS\",\"birthdate\":\"881384400\",\"name\":\"Hudson, Khaleke\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"14480\",\"height\":\"72\",\"jersey\":\"47\",\"twitter_username\":\"KhalekeHudson\",\"sportsdata_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"team\":\"WAS\",\"cbs_id\":\"2260652\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32833\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14967\",\"draft_team\":\"CHI\",\"birthdate\":\"881816400\",\"name\":\"Vildor, Kindle\",\"draft_pick\":\"17\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14706\",\"height\":\"71\",\"jersey\":\"37\",\"twitter_username\":\"ThePremier20\",\"sportsdata_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"team\":\"CHI\",\"cbs_id\":\"2252448\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32834\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14968\",\"draft_team\":\"MIA\",\"birthdate\":\"902120400\",\"name\":\"Weaver, Curtis\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"14409\",\"height\":\"75\",\"jersey\":\"61\",\"twitter_username\":\"curtisweaver99\",\"sportsdata_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"team\":\"CLE\",\"cbs_id\":\"2257946\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32838\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14969\",\"draft_team\":\"PHI\",\"birthdate\":\"833518800\",\"name\":\"Hightower, John\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"rotowire_id\":\"14567\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"team\":\"PHI\",\"cbs_id\":\"2969061\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32839\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14970\",\"draft_team\":\"MIN\",\"birthdate\":\"910846800\",\"name\":\"Hand, Harrison\",\"draft_pick\":\"23\",\"college\":\"Temple\",\"rotowire_id\":\"14522\",\"height\":\"72\",\"jersey\":\"38\",\"twitter_username\":\"__harry22\",\"sportsdata_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"team\":\"MIN\",\"cbs_id\":\"2868561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32840\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14971\",\"draft_team\":\"BAL\",\"birthdate\":\"849675600\",\"name\":\"Washington, Broderick\",\"draft_pick\":\"24\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14720\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"team\":\"BAL\",\"cbs_id\":\"2185746\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32841\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14972\",\"draft_team\":\"HOU\",\"name\":\"Coulter, Isaiah\",\"draft_pick\":\"25\",\"college\":\"Rhode Island\",\"rotowire_id\":\"14537\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"team\":\"HOU\",\"cbs_id\":\"2830035\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32842\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14973\",\"draft_team\":\"DET\",\"birthdate\":\"893048400\",\"name\":\"Huntley, Jason\",\"draft_pick\":\"26\",\"college\":\"New Mexico State\",\"rotowire_id\":\"14796\",\"height\":\"69\",\"jersey\":\"32\",\"twitter_username\":\"thejasonhuntley\",\"sportsdata_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"team\":\"PHI\",\"cbs_id\":\"2239939\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32843\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14974\",\"draft_team\":\"CHI\",\"birthdate\":\"878101200\",\"name\":\"Mooney, Darnell\",\"draft_pick\":\"27\",\"college\":\"Tulane\",\"rotowire_id\":\"14510\",\"height\":\"71\",\"jersey\":\"11\",\"twitter_username\":\"Darnell_M1\",\"sportsdata_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"team\":\"CHI\",\"cbs_id\":\"2240651\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32844\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"291\",\"id\":\"14975\",\"draft_team\":\"TEN\",\"birthdate\":\"861858000\",\"name\":\"Murchison, Larrell\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14718\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Murchboy92\",\"sportsdata_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"team\":\"TEN\",\"cbs_id\":\"2865164\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32845\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14976\",\"draft_team\":\"GBP\",\"birthdate\":\"898059600\",\"name\":\"Martin, Kamal\",\"draft_pick\":\"29\",\"college\":\"Minnesota\",\"rotowire_id\":\"14385\",\"height\":\"75\",\"twitter_username\":\"KamalMartin6\",\"sportsdata_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"team\":\"GBP\",\"cbs_id\":\"2239765\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32846\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14977\",\"draft_team\":\"MIN\",\"birthdate\":\"865918800\",\"name\":\"Osborn, K.J.\",\"draft_pick\":\"30\",\"college\":\"Miami\",\"rotowire_id\":\"14641\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"team\":\"MIN\",\"cbs_id\":\"2184383\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32847\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14978\",\"draft_team\":\"KCC\",\"birthdate\":\"881211600\",\"name\":\"Danna, Michael\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"14823\",\"height\":\"74\",\"jersey\":\"51\",\"twitter_username\":\"M_Danna4\",\"sportsdata_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"team\":\"KCC\",\"cbs_id\":\"2180090\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32848\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14979\",\"draft_team\":\"DEN\",\"birthdate\":\"840603600\",\"name\":\"Strnad, Justin\",\"draft_pick\":\"32\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14757\",\"height\":\"75\",\"jersey\":\"40\",\"twitter_username\":\"jsgarbs\",\"sportsdata_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"team\":\"DEN\",\"cbs_id\":\"2186413\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32852\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14980\",\"draft_team\":\"NYG\",\"birthdate\":\"891406800\",\"name\":\"Brown, Cam\",\"draft_pick\":\"4\",\"college\":\"Penn State\",\"rotowire_id\":\"14596\",\"height\":\"77\",\"jersey\":\"47\",\"sportsdata_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"team\":\"NYG\",\"cbs_id\":\"2251294\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32854\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14981\",\"draft_team\":\"CAR\",\"birthdate\":\"845614800\",\"name\":\"Roy, Bravvion\",\"draft_pick\":\"5\",\"college\":\"Baylor\",\"rotowire_id\":\"14824\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"brave_roy\",\"sportsdata_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"team\":\"CAR\",\"cbs_id\":\"2253081\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32856\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14982\",\"draft_team\":\"LAC\",\"birthdate\":\"874472400\",\"name\":\"Gilman, Alohi\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14521\",\"height\":\"71\",\"jersey\":\"32\",\"twitter_username\":\"alohigilman\",\"sportsdata_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"team\":\"LAC\",\"cbs_id\":\"2868542\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32858\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14983\",\"draft_team\":\"BUF\",\"birthdate\":\"855896400\",\"name\":\"Bass, Tyler\",\"draft_pick\":\"9\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14609\",\"height\":\"70\",\"jersey\":\"2\",\"twitter_username\":\"tbass_xvi\",\"sportsdata_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"team\":\"BUF\",\"cbs_id\":\"2188356\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32860\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14984\",\"draft_team\":\"SFO\",\"birthdate\":\"876978000\",\"name\":\"Woerner, Charlie\",\"draft_pick\":\"11\",\"college\":\"Georgia\",\"rotowire_id\":\"14608\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"team\":\"SFO\",\"cbs_id\":\"2248629\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32861\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14985\",\"draft_team\":\"NYJ\",\"birthdate\":\"880347600\",\"name\":\"Mann, Braden\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14654\",\"height\":\"71\",\"jersey\":\"7\",\"twitter_username\":\"MannBraden\",\"sportsdata_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32863\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"14986\",\"draft_team\":\"IND\",\"birthdate\":\"853304400\",\"name\":\"Windsor, Robert\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14613\",\"height\":\"77\",\"twitter_username\":\"RobertWindsor54\",\"sportsdata_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"team\":\"IND\",\"cbs_id\":\"2186647\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32864\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14987\",\"draft_team\":\"TBB\",\"birthdate\":\"840690000\",\"name\":\"Davis, Khalil\",\"draft_pick\":\"15\",\"college\":\"Nebraska\",\"rotowire_id\":\"14682\",\"height\":\"74\",\"jersey\":\"94\",\"twitter_username\":\"khalildaish95\",\"sportsdata_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"team\":\"TBB\",\"cbs_id\":\"2179622\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32866\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14988\",\"draft_team\":\"PHI\",\"birthdate\":\"860475600\",\"name\":\"Bradley, Shaun\",\"draft_pick\":\"17\",\"college\":\"Temple\",\"rotowire_id\":\"14737\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"Sdot_Bradley5\",\"sportsdata_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"team\":\"PHI\",\"cbs_id\":\"2239597\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32867\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14989\",\"draft_team\":\"DET\",\"birthdate\":\"865054800\",\"name\":\"Penisini, John\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14719\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"Dub_jayy_boy\",\"sportsdata_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"team\":\"DET\",\"cbs_id\":\"2827536\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32868\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14990\",\"draft_team\":\"PIT\",\"birthdate\":\"909550800\",\"name\":\"Brooks, Antoine\",\"draft_pick\":\"19\",\"college\":\"Maryland\",\"rotowire_id\":\"14595\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"TwanDoee\",\"sportsdata_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32869\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14991\",\"draft_team\":\"LAR\",\"birthdate\":\"888987600\",\"name\":\"Fuller, Jordan\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"14698\",\"height\":\"74\",\"jersey\":\"32\",\"twitter_username\":\"j_fuller4\",\"sportsdata_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"team\":\"LAR\",\"cbs_id\":\"2260978\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32870\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14992\",\"draft_team\":\"PHI\",\"birthdate\":\"897368400\",\"name\":\"Watkins, Quez\",\"draft_pick\":\"21\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"14464\",\"height\":\"74\",\"jersey\":\"80\",\"twitter_username\":\"AdamSchefter\",\"sportsdata_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"team\":\"PHI\",\"cbs_id\":\"2262953\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32872\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14993\",\"draft_team\":\"ARI\",\"birthdate\":\"902811600\",\"name\":\"Weaver, Evan\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"14752\",\"height\":\"75\",\"twitter_username\":\"Weavin_it\",\"sportsdata_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"team\":\"FA\",\"cbs_id\":\"2250836\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32874\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"248\",\"id\":\"14994\",\"draft_team\":\"NEP\",\"birthdate\":\"907390800\",\"name\":\"Maluia, Cassh\",\"draft_pick\":\"25\",\"college\":\"Wyoming\",\"rotowire_id\":\"14826\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"cassh7mula\",\"sportsdata_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"team\":\"NEP\",\"cbs_id\":\"2258320\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32875\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14995\",\"draft_team\":\"MIN\",\"birthdate\":\"885358800\",\"name\":\"Metellus, Josh\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"rotowire_id\":\"14479\",\"height\":\"72\",\"twitter_username\":\"NoExcuses_23\",\"sportsdata_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"team\":\"MIN\",\"cbs_id\":\"2260662\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32876\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14996\",\"draft_team\":\"JAC\",\"birthdate\":\"859957200\",\"name\":\"Davis, Tyler\",\"draft_pick\":\"27\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14827\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"Tyler_Davis9\",\"sportsdata_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"team\":\"JAC\",\"cbs_id\":\"2182811\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32881\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"14997\",\"draft_team\":\"IND\",\"birthdate\":\"884149200\",\"name\":\"Rodgers, Isaiah\",\"draft_pick\":\"32\",\"college\":\"Massachusetts\",\"rotowire_id\":\"14828\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"rodgers_isaiah\",\"sportsdata_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"team\":\"IND\",\"cbs_id\":\"2261492\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32882\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14998\",\"draft_team\":\"IND\",\"birthdate\":\"902379600\",\"name\":\"Patmon, Dezmon\",\"draft_pick\":\"33\",\"college\":\"Washington State\",\"rotowire_id\":\"14643\",\"height\":\"76\",\"jersey\":\"85\",\"twitter_username\":\"dadpat7\",\"sportsdata_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"team\":\"IND\",\"cbs_id\":\"2221990\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32883\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"226\",\"id\":\"14999\",\"draft_team\":\"IND\",\"birthdate\":\"835938000\",\"name\":\"Glasgow, Jordan\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"14799\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"team\":\"IND\",\"cbs_id\":\"2185709\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32885\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15000\",\"draft_team\":\"CIN\",\"birthdate\":\"857710800\",\"name\":\"Bailey, Markus\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"rotowire_id\":\"14736\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"mb_boiler21\",\"sportsdata_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"team\":\"CIN\",\"cbs_id\":\"2183896\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32886\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"15001\",\"draft_team\":\"WAS\",\"birthdate\":\"922856400\",\"name\":\"Curl, Kamren\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"rotowire_id\":\"14381\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"KCurl_2\",\"sportsdata_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"team\":\"WAS\",\"cbs_id\":\"2866171\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32888\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"15002\",\"draft_team\":\"NYG\",\"birthdate\":\"869461200\",\"name\":\"Coughlin, Carter\",\"draft_pick\":\"4\",\"college\":\"Minnesota\",\"rotowire_id\":\"14580\",\"height\":\"76\",\"jersey\":\"49\",\"twitter_username\":\"Cmoe34\",\"sportsdata_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"team\":\"NYG\",\"cbs_id\":\"2239754\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32889\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15003\",\"draft_team\":\"BAL\",\"birthdate\":\"924498000\",\"name\":\"Stone, Geno\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"14474\",\"height\":\"71\",\"jersey\":\"26\",\"twitter_username\":\"GenoStone22\",\"sportsdata_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"team\":\"BAL\",\"cbs_id\":\"2867170\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32891\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"184\",\"id\":\"15004\",\"draft_team\":\"CAR\",\"birthdate\":\"896936400\",\"name\":\"Thomas-Oliver, Stantley\",\"draft_pick\":\"7\",\"college\":\"Florida International\",\"rotowire_id\":\"14707\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"__Alcatraz21\",\"sportsdata_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"team\":\"CAR\",\"cbs_id\":\"2262783\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32895\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15005\",\"draft_team\":\"MIN\",\"birthdate\":\"869547600\",\"name\":\"Willekes, Kenny\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"14732\",\"height\":\"76\",\"jersey\":\"79\",\"twitter_username\":\"kennyw97\",\"sportsdata_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"team\":\"MIN\",\"cbs_id\":\"2186438\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32898\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"15006\",\"draft_team\":\"ATL\",\"birthdate\":\"849762000\",\"name\":\"Hofrichter, Sterling\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"rotowire_id\":\"14653\",\"height\":\"69\",\"jersey\":\"4\",\"twitter_username\":\"shofrichter10\",\"sportsdata_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"team\":\"ATL\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32899\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"15007\",\"draft_team\":\"WAS\",\"birthdate\":\"870238800\",\"name\":\"Smith-Williams, James\",\"draft_pick\":\"15\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14729\",\"height\":\"75\",\"jersey\":\"72\",\"twitter_username\":\"jacsw3\",\"sportsdata_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"team\":\"WAS\",\"cbs_id\":\"2179368\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32901\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15008\",\"draft_team\":\"DAL\",\"birthdate\":\"848811600\",\"name\":\"DiNucci, Ben\",\"draft_pick\":\"17\",\"college\":\"James Madison\",\"rotowire_id\":\"14832\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"B_DiNucci6\",\"sportsdata_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"team\":\"DAL\",\"cbs_id\":\"2179411\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32902\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"15009\",\"draft_team\":\"PIT\",\"birthdate\":\"840690000\",\"name\":\"Davis, Carlos\",\"draft_pick\":\"18\",\"college\":\"Nebraska\",\"rotowire_id\":\"14681\",\"height\":\"74\",\"jersey\":\"73\",\"sportsdata_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"team\":\"PIT\",\"cbs_id\":\"2179621\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32903\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"247\",\"id\":\"15010\",\"draft_team\":\"PHI\",\"birthdate\":\"840603600\",\"name\":\"Toohill, Casey\",\"draft_pick\":\"19\",\"college\":\"Stanford\",\"rotowire_id\":\"14753\",\"height\":\"76\",\"jersey\":\"56\",\"twitter_username\":\"CaseyToohill\",\"sportsdata_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"team\":\"WAS\",\"cbs_id\":\"2186841\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32904\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"232\",\"id\":\"15011\",\"draft_team\":\"LAR\",\"birthdate\":\"839480400\",\"name\":\"Johnston, Clay\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"rotowire_id\":\"14743\",\"height\":\"73\",\"twitter_username\":\"C_Johnston4\",\"sportsdata_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"team\":\"FA\",\"cbs_id\":\"2189507\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32905\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"285\",\"id\":\"15012\",\"draft_team\":\"DET\",\"birthdate\":\"851922000\",\"name\":\"Cornell, Jashon\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"14833\",\"height\":\"75\",\"jersey\":\"96\",\"twitter_username\":\"JayRock_9\",\"sportsdata_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"team\":\"DET\",\"cbs_id\":\"2179802\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32906\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"15013\",\"draft_team\":\"GBP\",\"birthdate\":\"873954000\",\"name\":\"Scott, Vernon\",\"draft_pick\":\"22\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14779\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"OfficialVern_\",\"sportsdata_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"team\":\"GBP\",\"cbs_id\":\"2240340\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32907\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"15014\",\"draft_team\":\"KCC\",\"birthdate\":\"879051600\",\"name\":\"Keyes, Thakarius\",\"draft_pick\":\"23\",\"college\":\"Tulane\",\"rotowire_id\":\"14579\",\"height\":\"73\",\"jersey\":\"29\",\"twitter_username\":\"TzKeyes\",\"sportsdata_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32908\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15015\",\"draft_team\":\"NYG\",\"birthdate\":\"881125200\",\"name\":\"Brunson, T.J.\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"rotowire_id\":\"14834\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"team\":\"NYG\",\"cbs_id\":\"2252794\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32909\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15016\",\"draft_team\":\"BUF\",\"birthdate\":\"849243600\",\"name\":\"Jackson, Dane\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14549\",\"height\":\"71\",\"twitter_username\":\"Djack11_\",\"sportsdata_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"team\":\"BUF\",\"cbs_id\":\"2179418\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32910\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15017\",\"draft_team\":\"NOS\",\"birthdate\":\"850626000\",\"name\":\"Stevens, Tommy\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14527\",\"height\":\"77\",\"sportsdata_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"team\":\"FA\",\"cbs_id\":\"2179839\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32911\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15018\",\"draft_team\":\"TBB\",\"birthdate\":\"853736400\",\"name\":\"Russell, Chapelle\",\"draft_pick\":\"27\",\"college\":\"Temple\",\"rotowire_id\":\"14755\",\"height\":\"73\",\"twitter_username\":\"DeuceRussell36\",\"sportsdata_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"team\":\"TBB\",\"cbs_id\":\"2186632\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32912\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15019\",\"draft_team\":\"GBP\",\"birthdate\":\"933138000\",\"name\":\"Garvin, Jonathan\",\"draft_pick\":\"28\",\"college\":\"Miami\",\"rotowire_id\":\"14365\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"team\":\"GBP\",\"cbs_id\":\"2804100\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32913\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"186\",\"id\":\"15020\",\"draft_team\":\"TEN\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Chris\",\"draft_pick\":\"29\",\"college\":\"Marshall\",\"rotowire_id\":\"14835\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"team\":\"TEN\",\"cbs_id\":\"3679\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32915\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15021\",\"draft_team\":\"TBB\",\"birthdate\":\"891493200\",\"name\":\"Calais, Raymond\",\"draft_pick\":\"31\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"14625\",\"height\":\"69\",\"jersey\":\"43\",\"twitter_username\":\"king_calais\",\"sportsdata_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"team\":\"LAR\",\"cbs_id\":\"2252175\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32916\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15022\",\"draft_team\":\"MIA\",\"birthdate\":\"861426000\",\"name\":\"Perry, Malcolm\",\"draft_pick\":\"32\",\"college\":\"Navy\",\"rotowire_id\":\"14504\",\"height\":\"69\",\"jersey\":\"10\",\"sportsdata_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"team\":\"MIA\",\"cbs_id\":\"2251971\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32917\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15023\",\"draft_team\":\"NYG\",\"birthdate\":\"864018000\",\"name\":\"Williamson, Chris\",\"draft_pick\":\"33\",\"college\":\"Minnesota\",\"rotowire_id\":\"14836\",\"height\":\"72\",\"sportsdata_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"team\":\"FA\",\"cbs_id\":\"2180451\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32918\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15024\",\"draft_team\":\"LAR\",\"birthdate\":\"874645200\",\"name\":\"Sloman, Sam\",\"draft_pick\":\"34\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14837\",\"height\":\"68\",\"jersey\":\"1\",\"twitter_username\":\"ssloman118\",\"sportsdata_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"team\":\"FA\",\"cbs_id\":\"2240109\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32919\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15025\",\"draft_team\":\"MIN\",\"birthdate\":\"860043600\",\"name\":\"Cole, Brian\",\"draft_pick\":\"35\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14620\",\"height\":\"74\",\"sportsdata_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32921\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"15026\",\"draft_team\":\"SEA\",\"birthdate\":\"849157200\",\"name\":\"Sullivan, Stephen\",\"draft_pick\":\"37\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14570\",\"height\":\"77\",\"twitter_username\":\"SJS_10\",\"sportsdata_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"team\":\"SEA\",\"cbs_id\":\"2223251\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32922\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15027\",\"draft_team\":\"DEN\",\"birthdate\":\"874731600\",\"name\":\"Cleveland, Tyrie\",\"draft_pick\":\"38\",\"college\":\"Florida\",\"rotowire_id\":\"14621\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"team\":\"DEN\",\"cbs_id\":\"2248604\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32923\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15028\",\"draft_team\":\"DEN\",\"birthdate\":\"837061200\",\"name\":\"Tuszka, Derrek\",\"draft_pick\":\"40\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14731\",\"height\":\"77\",\"sportsdata_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"team\":\"DEN\",\"cbs_id\":\"2190767\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32924\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15029\",\"draft_team\":\"NYG\",\"birthdate\":\"858142800\",\"name\":\"Crowder, Tae\",\"draft_pick\":\"41\",\"college\":\"Georgia\",\"rotowire_id\":\"14839\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"TaeCrowder\",\"sportsdata_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"team\":\"NYG\",\"cbs_id\":\"2180461\"},{\"draft_year\":\"2018\",\"birthdate\":\"826174800\",\"draft_team\":\"FA\",\"stats_id\":\"31744\",\"position\":\"LB\",\"name\":\"Gates, DeMarquis\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13942\",\"weight\":\"221\",\"sportsdata_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"id\":\"15030\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32358\",\"position\":\"PN\",\"name\":\"Fox, Jack\",\"college\":\"Rice\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13715\",\"jersey\":\"3\",\"weight\":\"224\",\"sportsdata_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"id\":\"15032\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"746773200\",\"draft_team\":\"FA\",\"stats_id\":\"32664\",\"position\":\"WR\",\"name\":\"Begelton, Reggie\",\"college\":\"Lamar\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14472\",\"weight\":\"200\",\"sportsdata_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"id\":\"15033\",\"team\":\"FA\",\"cbs_id\":\"3157671\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33109\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"15034\",\"draft_team\":\"FA\",\"birthdate\":\"890974800\",\"name\":\"Callaway, Marquez\",\"college\":\"Tennessee\",\"rotowire_id\":\"14556\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"1364cb22-1bfa-429b-8bde-dfd0d2938163\",\"team\":\"NOS\",\"cbs_id\":\"2247505\"},{\"draft_year\":\"2018\",\"birthdate\":\"813819600\",\"draft_team\":\"FA\",\"stats_id\":\"31803\",\"position\":\"QB\",\"name\":\"Wolford, John\",\"college\":\"Wake Forest\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13403\",\"jersey\":\"9\",\"weight\":\"200\",\"sportsdata_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"id\":\"15035\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"843541200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33016\",\"position\":\"QB\",\"name\":\"Smith, J'mar\",\"college\":\"Louisiana Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14845\",\"weight\":\"218\",\"sportsdata_id\":\"0c1998f2-7fd2-4191-a05f-1f7f5b5e2ea3\",\"id\":\"15036\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"876114000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32946\",\"position\":\"WR\",\"name\":\"Lipscomb, Kalija\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14640\",\"weight\":\"200\",\"sportsdata_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"id\":\"15037\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33132\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"15038\",\"draft_team\":\"FA\",\"birthdate\":\"850626000\",\"name\":\"Bayless, Omar\",\"college\":\"Arkansas State\",\"rotowire_id\":\"14585\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"895726800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33095\",\"position\":\"WR\",\"name\":\"Parker, Aaron\",\"college\":\"Rhode Island\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14642\",\"weight\":\"191\",\"sportsdata_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"id\":\"15039\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33006\",\"position\":\"RB\",\"name\":\"Williams, Ty'Son\",\"college\":\"Brigham Young\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14404\",\"weight\":\"220\",\"id\":\"15040\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"872053200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33329\",\"position\":\"WR\",\"name\":\"Cager, Lawrence\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14597\",\"weight\":\"220\",\"sportsdata_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"id\":\"15041\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"875595600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33088\",\"position\":\"RB\",\"name\":\"Ward, Jonathan\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"15106\",\"weight\":\"202\",\"sportsdata_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"id\":\"15042\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"838702800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33017\",\"position\":\"WR\",\"name\":\"Hastings, Will\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14762\",\"weight\":\"174\",\"sportsdata_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"id\":\"15043\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33345\",\"position\":\"RB\",\"name\":\"Scarlett, Cameron\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14887\",\"weight\":\"216\",\"sportsdata_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"id\":\"15044\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32994\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15045\",\"draft_team\":\"FA\",\"birthdate\":\"880002000\",\"name\":\"Breeland, Jacob\",\"college\":\"Oregon\",\"rotowire_id\":\"14628\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852440400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33242\",\"position\":\"WR\",\"name\":\"Merritt, Kirk\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14861\",\"weight\":\"210\",\"sportsdata_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"id\":\"15046\",\"team\":\"MIA\"},{\"draft_year\":\"2016\",\"birthdate\":\"719730000\",\"draft_team\":\"FA\",\"stats_id\":\"29925\",\"position\":\"CB\",\"name\":\"Roberson, Tre\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"11506\",\"jersey\":\"31\",\"weight\":\"205\",\"sportsdata_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"id\":\"15047\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33330\",\"position\":\"WR\",\"name\":\"Campbell, George\",\"college\":\"West Virginia\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14944\",\"weight\":\"183\",\"sportsdata_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"id\":\"15048\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33108\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15049\",\"draft_team\":\"FA\",\"birthdate\":\"888469200\",\"name\":\"Bachie, Joe\",\"college\":\"Michigan State\",\"rotowire_id\":\"14735\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"890802000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33096\",\"position\":\"TE\",\"name\":\"Taumoepeau, Charlie\",\"college\":\"Portland State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14633\",\"weight\":\"245\",\"sportsdata_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"id\":\"15050\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32960\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"15051\",\"draft_team\":\"FA\",\"birthdate\":\"847774800\",\"name\":\"Townsend, Tommy\",\"college\":\"Florida\",\"rotowire_id\":\"14574\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"edfc712a-54f7-4c34-a838-c50c14dbf7dc\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33233\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"15052\",\"draft_team\":\"FA\",\"birthdate\":\"837320400\",\"name\":\"Stewart, Darrell\",\"college\":\"Michigan State\",\"rotowire_id\":\"14631\",\"height\":\"74\",\"jersey\":\"80\",\"sportsdata_id\":\"4f077de6-d368-4246-84d5-de809736ddb2\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"882507600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33066\",\"position\":\"WR\",\"name\":\"Rowland, Chris\",\"college\":\"Tennessee State\",\"stats_global_id\":\"0\",\"height\":\"68\",\"rotowire_id\":\"14885\",\"weight\":\"180\",\"sportsdata_id\":\"40f11577-5646-4da3-99ba-ea8b038b17a3\",\"id\":\"15053\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33151\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15054\",\"draft_team\":\"FA\",\"birthdate\":\"845442000\",\"name\":\"Ricci, Giovanni\",\"college\":\"Western Michigan\",\"rotowire_id\":\"14785\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"689de342-1d99-4a4d-976d-f6573ef3a8c2\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33360\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15055\",\"draft_team\":\"FA\",\"birthdate\":\"860389200\",\"name\":\"Charlton, Joseph\",\"college\":\"South Carolina\",\"rotowire_id\":\"14652\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"9a76c690-1946-4860-9564-a0b7b9bbaf0a\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33318\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15056\",\"draft_team\":\"FA\",\"birthdate\":\"856501200\",\"name\":\"White, Javin\",\"college\":\"Nevada-Las Vegas\",\"rotowire_id\":\"14902\",\"height\":\"75\",\"jersey\":\"53\",\"sportsdata_id\":\"3f95afdc-2140-424b-8250-7d4e273c2efc\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33023\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"15057\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Chisena, Dan\",\"college\":\"Penn State\",\"rotowire_id\":\"14889\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"92529995-41e9-48db-b429-c96540ad357b\",\"team\":\"MIN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33030\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15058\",\"draft_team\":\"FA\",\"birthdate\":\"897973200\",\"name\":\"Fehr, Jordan\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14940\",\"height\":\"75\",\"jersey\":\"49\",\"sportsdata_id\":\"a850609c-efba-446d-ae0f-17de46503061\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33029\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15059\",\"draft_team\":\"FA\",\"birthdate\":\"898750800\",\"name\":\"Dorn, Myles\",\"college\":\"North Carolina\",\"rotowire_id\":\"14598\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"e11eff18-b567-47c2-99e6-f4c6bc3d10c3\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"789368400\",\"draft_team\":\"FA\",\"stats_id\":\"32662\",\"position\":\"QB\",\"name\":\"Streveler, Chris\",\"college\":\"South Dakota\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14587\",\"jersey\":\"15\",\"weight\":\"215\",\"sportsdata_id\":\"23461354-f2d7-4e36-9046-fe9cde6dd413\",\"id\":\"15060\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33067\",\"position\":\"LB\",\"name\":\"Wilborn, Ray\",\"college\":\"Ball State\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"15001\",\"weight\":\"224\",\"sportsdata_id\":\"91584998-260d-4d2e-a154-e4b6f7886ff0\",\"id\":\"15061\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"846133200\",\"draft_team\":\"FA\",\"stats_id\":\"32287\",\"position\":\"LB\",\"name\":\"Ray, Wyatt\",\"college\":\"Boston College\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13881\",\"jersey\":\"43\",\"weight\":\"255\",\"sportsdata_id\":\"b84b99f3-5fac-46ed-b892-5800159edbf9\",\"id\":\"15062\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"birthdate\":\"878360400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33321\",\"position\":\"LB\",\"name\":\"Harris, De'Jon\",\"college\":\"Arkansas\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14553\",\"weight\":\"244\",\"sportsdata_id\":\"8ca83e4e-d3a5-4dcb-a917-e58e36b77721\",\"id\":\"15063\",\"team\":\"GBP\"},{\"draft_year\":\"2018\",\"birthdate\":\"808203600\",\"draft_team\":\"FA\",\"stats_id\":\"31625\",\"position\":\"WR\",\"name\":\"Ross, Devin\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13302\",\"jersey\":\"17\",\"weight\":\"185\",\"sportsdata_id\":\"5f58e780-62ff-414e-8d32-b0608679e9b3\",\"id\":\"15064\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"891234000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33250\",\"position\":\"WR\",\"name\":\"Edwards, Earnest\",\"college\":\"Maine\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14924\",\"weight\":\"175\",\"sportsdata_id\":\"b7cbd456-e07c-45ba-bae6-cf7c43a5c199\",\"id\":\"15065\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33007\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"15066\",\"draft_team\":\"FA\",\"birthdate\":\"858056400\",\"name\":\"Wolf, Eli\",\"college\":\"Georgia\",\"rotowire_id\":\"14375\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"71c657d6-a2d9-48f3-b6db-dd4372e910f4\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"31754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"15067\",\"draft_team\":\"FA\",\"birthdate\":\"786603600\",\"name\":\"Holley, Nate\",\"college\":\"Kent State\",\"rotowire_id\":\"15178\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"f8f7c003-1c6d-4715-bef7-5238bdb600dd\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33243\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"256\",\"id\":\"15068\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Render, Tyshun\",\"college\":\"Middle Tennessee\",\"rotowire_id\":\"15029\",\"height\":\"76\",\"jersey\":\"64\",\"sportsdata_id\":\"160934d8-6fac-4a5f-8121-d8bca301d1b4\",\"team\":\"MIA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33267\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"188\",\"id\":\"15069\",\"draft_team\":\"FA\",\"birthdate\":\"875595600\",\"name\":\"Fuller, Aaron\",\"college\":\"Washington\",\"rotowire_id\":\"14638\",\"height\":\"71\",\"jersey\":\"2\",\"sportsdata_id\":\"df2caa7b-29f4-4391-8ce0-b1b711196379\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"818312400\",\"draft_team\":\"FA\",\"stats_id\":\"32600\",\"position\":\"WR\",\"name\":\"Fortson, Jody\",\"college\":\"Valdosta State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"14306\",\"jersey\":\"1\",\"weight\":\"230\",\"sportsdata_id\":\"a01ffd42-5fdb-42f8-95ab-157025e3fba8\",\"id\":\"15070\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33103\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"269\",\"id\":\"15071\",\"draft_team\":\"FA\",\"birthdate\":\"867906000\",\"name\":\"Carter, Ron'Dell\",\"college\":\"James Madison\",\"rotowire_id\":\"14920\",\"height\":\"75\",\"jersey\":\"68\",\"sportsdata_id\":\"2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33300\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15072\",\"draft_team\":\"FA\",\"birthdate\":\"869029200\",\"name\":\"Ajayi, Solomon\",\"college\":\"Liberty\",\"rotowire_id\":\"15131\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"2b604cd5-2ed5-41ab-864b-3e527c922c11\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33293\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"15073\",\"draft_team\":\"FA\",\"birthdate\":\"878014800\",\"name\":\"Motley, Parnell\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14599\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"eaacee31-0a3c-4f9d-be85-86490ae16f6b\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33180\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"15074\",\"draft_team\":\"FA\",\"birthdate\":\"861512400\",\"name\":\"Smith, Rashad\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"15096\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"dec323b8-fb75-4182-b03d-6c412d3d51a5\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33343\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"15075\",\"draft_team\":\"FA\",\"birthdate\":\"879138000\",\"name\":\"McCann, Tucker\",\"college\":\"Missouri\",\"rotowire_id\":\"14860\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"397901eb-5589-4f0e-8c02-f50509e22f3c\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33261\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15076\",\"draft_team\":\"FA\",\"birthdate\":\"854600400\",\"name\":\"Rozeboom, Christian\",\"college\":\"South Dakota State\",\"rotowire_id\":\"15090\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"49abd11f-fe2b-4d15-99ed-f316d2ec67e1\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33209\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"15077\",\"draft_team\":\"FA\",\"birthdate\":\"853131600\",\"name\":\"Wright, Isaiah\",\"college\":\"Temple\",\"rotowire_id\":\"14503\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"af534c7d-791e-4b7f-900d-2d8fd47c0d2a\",\"team\":\"WAS\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32893\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"15078\",\"draft_team\":\"JAC\",\"birthdate\":\"869115600\",\"name\":\"Claybrooks, Chris\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"14829\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"039d817f-17a4-471d-8949-197335dcd1ad\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32932\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15079\",\"draft_team\":\"FA\",\"birthdate\":\"902898000\",\"name\":\"Bassey, Essang\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14738\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"34853ce3-5e1f-4b23-b730-6f51444291ac\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32970\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15080\",\"draft_team\":\"FA\",\"birthdate\":\"868165200\",\"name\":\"Togiai, Noah\",\"college\":\"Oregon State\",\"rotowire_id\":\"14843\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"86707c8e-fec4-4ebe-9111-4d3ad238ad43\",\"team\":\"IND\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32952\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"15081\",\"draft_team\":\"FA\",\"birthdate\":\"898750800\",\"name\":\"Wharton, Tershawn\",\"college\":\"Missouri S&T\",\"rotowire_id\":\"15077\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"632a8382-27d6-45ae-b3d2-a37157e09ab7\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33221\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15082\",\"draft_team\":\"FA\",\"birthdate\":\"891493200\",\"name\":\"Barnes, Krys\",\"college\":\"UCLA\",\"rotowire_id\":\"14572\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"fc081a72-124d-4648-86a4-45aebb95a5ba\",\"team\":\"GBP\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33123\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"15087\",\"draft_team\":\"FA\",\"birthdate\":\"838962000\",\"name\":\"Cottrell, Nathan\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14773\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"bc43e18a-c2f9-4e49-a90c-41a95cffa736\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33124\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15088\",\"draft_team\":\"FA\",\"birthdate\":\"841554000\",\"name\":\"Ellefson, Ben\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14864\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"ca393469-d587-4bf7-905d-838e960de851\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33118\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"15089\",\"draft_team\":\"FA\",\"birthdate\":\"897368400\",\"name\":\"Roach, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"14726\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"bb01a04e-0d54-4fc6-98c8-2b8614d07afe\",\"team\":\"NOS\"},{\"draft_year\":\"2019\",\"birthdate\":\"863154000\",\"draft_team\":\"FA\",\"stats_id\":\"32130\",\"position\":\"DT\",\"name\":\"Copeland, Marquise\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14014\",\"jersey\":\"93\",\"weight\":\"285\",\"sportsdata_id\":\"7e4f9b27-edc4-4f5c-b77a-81604220a454\",\"id\":\"15093\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"855723600\",\"draft_team\":\"FA\",\"stats_id\":\"32164\",\"position\":\"S\",\"name\":\"Locke, P.J.\",\"college\":\"Texas\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14198\",\"jersey\":\"37\",\"weight\":\"202\",\"sportsdata_id\":\"155980c2-e289-48c4-a047-09c08d0ce7ae\",\"id\":\"15094\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33225\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15095\",\"draft_team\":\"FA\",\"birthdate\":\"856933200\",\"name\":\"Galeai, Tipa\",\"college\":\"Utah State\",\"rotowire_id\":\"15072\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"fa797d7d-4537-4e2e-8fd1-cd8831894092\",\"team\":\"GBP\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32987\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"15096\",\"draft_team\":\"FA\",\"birthdate\":\"878706000\",\"name\":\"Nabers, Gabe\",\"college\":\"Florida State\",\"rotowire_id\":\"15093\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"538cf938-8f65-435f-b8fd-2856ce5c4e6d\",\"team\":\"LAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33101\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15097\",\"draft_team\":\"FA\",\"birthdate\":\"883285200\",\"name\":\"McKeon, Sean\",\"college\":\"Michigan\",\"rotowire_id\":\"14478\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"0f369885-8ecd-4ca0-a3dc-df8530a0db6e\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32975\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15098\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Bradwell, Darius\",\"college\":\"Tulane\",\"rotowire_id\":\"14919\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"06f3e98d-7d73-4007-b673-4a74ed72bda3\",\"team\":\"LAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32974\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"15099\",\"draft_team\":\"FA\",\"birthdate\":\"860821200\",\"name\":\"Bilal, Asmar\",\"college\":\"Notre Dame\",\"rotowire_id\":\"15017\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"621e177a-e23d-489e-a747-369eb662f0de\",\"team\":\"LAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"824014800\",\"draft_team\":\"FA\",\"stats_id\":\"32601\",\"position\":\"DT\",\"name\":\"Akinmoladun, Freedom\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14294\",\"jersey\":\"92\",\"weight\":\"284\",\"sportsdata_id\":\"594c3651-1a2f-453e-a39d-2c84a377f2b5\",\"id\":\"15101\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33357\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"15103\",\"draft_team\":\"FA\",\"birthdate\":\"872053200\",\"name\":\"Gilliam, Reggie\",\"college\":\"Toledo\",\"rotowire_id\":\"14844\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"4475bb8a-b5a6-4527-bfc7-8e7e03900984\",\"team\":\"BUF\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33348\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"15109\",\"draft_team\":\"FA\",\"birthdate\":\"858920400\",\"name\":\"Westbrook, Nick\",\"college\":\"Indiana\",\"rotowire_id\":\"14750\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"5e63e674-adf3-4f4e-929e-4a0ff2cfb1df\",\"team\":\"TEN\"},{\"draft_year\":\"2018\",\"birthdate\":\"802933200\",\"draft_team\":\"FA\",\"stats_id\":\"31726\",\"position\":\"DE\",\"name\":\"Thurman, Nick\",\"college\":\"Houston\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13320\",\"jersey\":\"92\",\"weight\":\"305\",\"sportsdata_id\":\"ded1a577-51cc-4f13-8b79-4f4c09655f44\",\"id\":\"15110\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33149\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"182\",\"id\":\"15111\",\"draft_team\":\"FA\",\"birthdate\":\"856242000\",\"name\":\"Wright, Brandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"14954\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"61980614-1609-4b68-b11f-05aa30fefb89\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33139\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"15114\",\"draft_team\":\"FA\",\"birthdate\":\"870757200\",\"name\":\"Hartsfield, Myles\",\"college\":\"Mississippi\",\"rotowire_id\":\"14968\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"87e59fe7-8744-4318-a41e-53a18d1f9647\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33020\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15116\",\"draft_team\":\"FA\",\"birthdate\":\"861080400\",\"name\":\"Zuber, Isaiah\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14862\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"e83c7957-58c7-48eb-aaf2-47e410607957\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"stats_id\":\"32319\",\"position\":\"LB\",\"name\":\"Flannigan-Fowles, Demetrius\",\"college\":\"Arizona\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14074\",\"jersey\":\"45\",\"weight\":\"209\",\"sportsdata_id\":\"c5175598-1392-4eaa-ae62-d99811a0c477\",\"id\":\"15117\",\"team\":\"SFO\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33335\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"15121\",\"draft_team\":\"FA\",\"birthdate\":\"892789200\",\"name\":\"Huff, Bryce\",\"college\":\"Memphis\",\"rotowire_id\":\"15035\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"07b963d4-aef7-4874-ba04-f9b1ec1142d3\",\"team\":\"NYJ\"},{\"draft_year\":\"2017\",\"birthdate\":\"755931600\",\"draft_team\":\"FA\",\"stats_id\":\"30740\",\"position\":\"TE\",\"name\":\"Thompson, Colin\",\"college\":\"Temple\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"12375\",\"jersey\":\"86\",\"weight\":\"255\",\"sportsdata_id\":\"1d55ba37-c09e-4945-b7ae-8d84e2357283\",\"id\":\"15123\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32939\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15124\",\"draft_team\":\"FA\",\"birthdate\":\"842850000\",\"name\":\"Pierre, James\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14439\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33336\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"15125\",\"draft_team\":\"FA\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Lamar\",\"college\":\"Nebraska\",\"rotowire_id\":\"14583\",\"height\":\"75\",\"jersey\":\"38\",\"sportsdata_id\":\"22e0f7ed-9b46-4a75-9780-d9b66c245744\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33105\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15126\",\"draft_team\":\"FA\",\"birthdate\":\"797317200\",\"name\":\"Bernard, Francis\",\"college\":\"Utah\",\"rotowire_id\":\"14610\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"41bc429b-f4c2-4edd-bbe1-9a36a178caeb\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33122\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"15127\",\"draft_team\":\"FA\",\"birthdate\":\"876027600\",\"name\":\"Costin, Doug\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14951\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"cc5a9d21-10cd-4966-ad17-44edb238834d\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33012\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"15129\",\"draft_team\":\"FA\",\"birthdate\":\"891320400\",\"name\":\"Dorsey, Khalil\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"15137\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"e8b1322a-6162-4535-b6af-4ca60ce8b09c\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33296\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"188\",\"id\":\"15130\",\"draft_team\":\"FA\",\"birthdate\":\"900824400\",\"name\":\"Hughes, Juju\",\"college\":\"Fresno State\",\"rotowire_id\":\"15130\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"d014789f-6cc0-435b-bd18-9faaf12ffd6e\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33310\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15131\",\"draft_team\":\"FA\",\"birthdate\":\"851490000\",\"name\":\"Moffatt, Jovante\",\"college\":\"Middle Tennessee\",\"rotowire_id\":\"15062\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"bea5ccd6-b05b-43f8-975f-396399349a42\",\"team\":\"CLE\"},{\"draft_year\":\"2018\",\"birthdate\":\"801205200\",\"draft_team\":\"FA\",\"stats_id\":\"31420\",\"position\":\"DT\",\"name\":\"Vickers, Kendal\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14560\",\"jersey\":\"91\",\"weight\":\"295\",\"sportsdata_id\":\"0cd46b5f-5397-4947-9331-8d3420af7852\",\"id\":\"15132\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33316\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15133\",\"draft_team\":\"FA\",\"birthdate\":\"876718800\",\"name\":\"Harper, Madre\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14904\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32961\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15137\",\"draft_team\":\"FA\",\"birthdate\":\"873349200\",\"name\":\"Arnold, Grayland\",\"college\":\"Baylor\",\"rotowire_id\":\"14491\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"d6969476-95dc-42e4-9cd1-a1e8ae6973ff\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"860907600\",\"draft_team\":\"FA\",\"stats_id\":\"32416\",\"position\":\"CB\",\"name\":\"Lewis, Cam\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14253\",\"jersey\":\"47\",\"weight\":\"185\",\"sportsdata_id\":\"d5dee97b-aa96-4fa6-868f-b6dc1f66245c\",\"id\":\"15140\",\"team\":\"BUF\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33272\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15141\",\"draft_team\":\"FA\",\"birthdate\":\"882075600\",\"name\":\"Gill, Cam\",\"college\":\"Wagner\",\"rotowire_id\":\"14917\",\"height\":\"75\",\"jersey\":\"49\",\"sportsdata_id\":\"112b95ea-d080-4aa7-bedc-5755c6c6b80c\",\"team\":\"TBB\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33058\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15142\",\"draft_team\":\"FA\",\"birthdate\":\"909810000\",\"name\":\"Hall, Tyler\",\"college\":\"Wyoming\",\"rotowire_id\":\"14999\",\"height\":\"70\",\"jersey\":\"44\",\"sportsdata_id\":\"74761bca-f09c-4a06-8dd4-5f3cf2a2b897\",\"team\":\"ATL\"},{\"draft_year\":\"2018\",\"birthdate\":\"852267600\",\"draft_team\":\"FA\",\"stats_id\":\"31168\",\"position\":\"DT\",\"name\":\"McKenzie, Kahlil\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"12571\",\"jersey\":\"69\",\"weight\":\"320\",\"sportsdata_id\":\"e738f88d-6a49-4efd-b53e-d031bc8c5772\",\"id\":\"15146\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33333\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15147\",\"draft_team\":\"FA\",\"birthdate\":\"902379600\",\"name\":\"Guidry, Javelin\",\"college\":\"Utah\",\"rotowire_id\":\"14454\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"dfdf250e-0457-4008-be27-a0be2a3ae5bd\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33137\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15148\",\"draft_team\":\"FA\",\"birthdate\":\"823237200\",\"name\":\"Franklin, Sam\",\"college\":\"Temple\",\"rotowire_id\":\"14931\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"3b1bb0da-607a-4502-8855-8ab5095334da\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33215\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"15149\",\"draft_team\":\"FA\",\"birthdate\":\"900219600\",\"name\":\"Harris, De'Michael\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"15020\",\"height\":\"69\",\"jersey\":\"5\",\"sportsdata_id\":\"18a3fb57-3220-4fa3-af42-20e179ec896f\",\"team\":\"IND\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33005\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"239\",\"id\":\"15151\",\"draft_team\":\"FA\",\"birthdate\":\"895986000\",\"name\":\"Welch, Kristian\",\"college\":\"Iowa\",\"rotowire_id\":\"15141\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"0782b3a2-9693-40f6-aff2-a21bc8fa4c5d\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33086\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15152\",\"draft_team\":\"FA\",\"birthdate\":\"830149200\",\"name\":\"Walker, Reggie\",\"college\":\"Kansas State\",\"rotowire_id\":\"15102\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"75513062-bfe5-4e32-af04-04a805c0fd8d\",\"team\":\"FA\"},{\"draft_year\":\"2014\",\"birthdate\":\"657435600\",\"draft_team\":\"FA\",\"stats_id\":\"28300\",\"position\":\"PK\",\"name\":\"Castillo, Sergio\",\"college\":\"West Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"9844\",\"jersey\":\"6\",\"weight\":\"195\",\"sportsdata_id\":\"1f2c7574-f56a-47b3-bd75-5dd0d5ff8d93\",\"id\":\"15154\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33201\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15155\",\"draft_team\":\"FA\",\"birthdate\":\"898664400\",\"name\":\"Mayden, Jared\",\"college\":\"Alabama\",\"rotowire_id\":\"14780\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"cec656f2-7a0b-4993-9489-7a0cef088c0f\",\"team\":\"SFO\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33303\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"15156\",\"draft_team\":\"FA\",\"birthdate\":\"871016400\",\"name\":\"Brown, Tony\",\"college\":\"Colorado\",\"rotowire_id\":\"14603\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"eb626cc4-10ec-4385-933e-eea81e2dbfbc\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"birthdate\":\"811486800\",\"draft_team\":\"FA\",\"stats_id\":\"31518\",\"position\":\"DE\",\"name\":\"Mondeaux, Henry\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13390\",\"jersey\":\"99\",\"weight\":\"280\",\"sportsdata_id\":\"d7f79a32-6a28-4e14-bedf-6186dec771e6\",\"id\":\"15159\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33222\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"15160\",\"draft_team\":\"FA\",\"birthdate\":\"852267600\",\"name\":\"Black, Henry\",\"college\":\"Baylor\",\"rotowire_id\":\"15070\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"959f035c-b8ce-45a3-bbe3-fda439c1e9f1\",\"team\":\"GBP\"},{\"draft_year\":\"2019\",\"birthdate\":\"810450000\",\"draft_team\":\"FA\",\"stats_id\":\"32276\",\"position\":\"LB\",\"name\":\"Ramsey, Randy\",\"college\":\"Arkansas\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14106\",\"jersey\":\"56\",\"weight\":\"236\",\"sportsdata_id\":\"3267e534-526e-4db8-8e1f-49fc7ee8aedb\",\"id\":\"15162\",\"team\":\"GBP\"},{\"draft_year\":\"2019\",\"birthdate\":\"838011600\",\"draft_team\":\"FA\",\"stats_id\":\"32381\",\"position\":\"CB\",\"name\":\"Bonds, Terrell\",\"college\":\"Tennessee State\",\"stats_global_id\":\"0\",\"height\":\"68\",\"rotowire_id\":\"14165\",\"jersey\":\"38\",\"weight\":\"182\",\"sportsdata_id\":\"7af54f9d-0a09-45ce-b96c-a179bcbb11ca\",\"id\":\"15164\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33239\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"329\",\"id\":\"15165\",\"draft_team\":\"FA\",\"birthdate\":\"880606800\",\"name\":\"Jones, Benito\",\"college\":\"Mississippi\",\"rotowire_id\":\"14715\",\"height\":\"73\",\"jersey\":\"95\",\"sportsdata_id\":\"e9746156-842c-475e-806d-4bcb26032e3b\",\"team\":\"MIA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33358\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15167\",\"draft_team\":\"FA\",\"birthdate\":\"848379600\",\"name\":\"Thomas, Josh\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14882\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"9c84646c-75d9-41f3-9cad-f3f002ca82a5\",\"team\":\"BUF\"},{\"draft_year\":\"2020\",\"birthdate\":\"854514000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32964\",\"position\":\"CB\",\"name\":\"Jacquet, Michael\",\"college\":\"Louisiana-Lafayette\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14875\",\"weight\":\"201\",\"sportsdata_id\":\"8dde622e-645e-4e89-85b1-a8aca7bdfd7e\",\"id\":\"15168\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33231\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15170\",\"draft_team\":\"FA\",\"birthdate\":\"919746000\",\"name\":\"Samuels, Stanford\",\"college\":\"Florida State\",\"rotowire_id\":\"14405\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c1bbdfa3-5171-4018-a812-1dddacb3b421\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"33370\",\"position\":\"PN\",\"name\":\"Niswander, Hunter\",\"college\":\"Northwestern\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"15206\",\"jersey\":\"1\",\"weight\":\"243\",\"sportsdata_id\":\"48efc038-96b7-4c63-a33c-41f6abe6d3de\",\"id\":\"15171\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33099\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15172\",\"draft_team\":\"FA\",\"birthdate\":\"880606800\",\"name\":\"Olonilua, Sewo\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14658\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"fb48038c-8f33-47a5-abb4-cda19f66c853\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33347\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"15173\",\"draft_team\":\"FA\",\"birthdate\":\"857106000\",\"name\":\"Tart, Teair\",\"college\":\"Florida International\",\"rotowire_id\":\"14985\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"a78206af-6d78-4b4c-90e3-dc4bd62ac80b\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33089\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15176\",\"draft_team\":\"FA\",\"birthdate\":\"805870800\",\"name\":\"Whittaker, Jace\",\"college\":\"Arizona\",\"rotowire_id\":\"14793\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"528bf5c9-1d23-40c3-adda-df21f8f0e2ab\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33319\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"15177\",\"draft_team\":\"FA\",\"birthdate\":\"883717200\",\"name\":\"Bryant, Myles\",\"college\":\"Washington\",\"rotowire_id\":\"14703\",\"height\":\"68\",\"jersey\":\"41\",\"sportsdata_id\":\"7a51270b-cbdf-451e-a9e7-0f0b23435dd0\",\"team\":\"NEP\"},{\"draft_year\":\"2018\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"stats_id\":\"31578\",\"position\":\"DE\",\"name\":\"Ostman, Joe\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"12708\",\"jersey\":\"95\",\"weight\":\"259\",\"sportsdata_id\":\"14063f54-4935-4043-90f0-a6d2d6ab6143\",\"id\":\"15179\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33115\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"15180\",\"draft_team\":\"FA\",\"birthdate\":\"901515600\",\"name\":\"Barcoo, Luq\",\"college\":\"San Diego State\",\"rotowire_id\":\"14950\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"56d8015b-aed7-4a46-868e-a85672cde790\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"822632400\",\"draft_team\":\"FA\",\"stats_id\":\"32218\",\"position\":\"S\",\"name\":\"Holder, Alijah\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13863\",\"jersey\":\"33\",\"weight\":\"188\",\"sportsdata_id\":\"1e8293b4-25ec-479d-83b3-ef231d84ebca\",\"id\":\"15181\",\"team\":\"DEN\"}]},\"encoding\":\"utf-8\"}"),
- date = structure(1606598257, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 5.7e-05,
- connect = 6.5e-05, pretransfer = 0.000155, starttransfer = 0.876835,
- total = 1.166499)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-c43c8e.R b/tests/testthat/api.myfantasyleague.com/2020/export-c43c8e.R
deleted file mode 100644
index 26683939..00000000
--- a/tests/testthat/api.myfantasyleague.com/2020/export-c43c8e.R
+++ /dev/null
@@ -1,20 +0,0 @@
-structure(list(url = "https://api.myfantasyleague.com/2020/export?TYPE=leagueSearch&SEARCH=sfbx%20conference&JSON=1",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:17:29 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "316", `content-type` = "application/json; charset=utf-8",
- targethost = "www70"), class = c("insensitive", "list"
- )), all_headers = list(list(status = 200L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:17:29 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "316", `content-type` = "application/json; charset=utf-8",
- targethost = "www70"), class = c("insensitive", "list"
- )))), cookies = structure(list(domain = logical(0), flag = logical(0),
- path = logical(0), secure = logical(0), expiration = structure(numeric(0), class = c("POSIXct",
- "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"),
- content = charToRaw("{\"version\":\"1.0\",\"leagues\":{\"league\":[{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/13411\",\"name\":\"#SFBX Conference 12\",\"id\":\"13411\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/16428\",\"name\":\"#SFBX Conference 6\",\"id\":\"16428\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/17910\",\"name\":\"#SFBX Conference 11\",\"id\":\"17910\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/26453\",\"name\":\"#SFBX Conference 8\",\"id\":\"26453\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/27495\",\"name\":\"#SFBX Conference 2\",\"id\":\"27495\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/31492\",\"name\":\"#SFBX Conference 14\",\"id\":\"31492\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/31671\",\"name\":\"#SFBX Conference 15\",\"id\":\"31671\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/35779\",\"name\":\"#SFBX Conference 13\",\"id\":\"35779\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/37784\",\"name\":\"#SFBX Conference 1\",\"id\":\"37784\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/39990\",\"name\":\"#SFBX Conference 9\",\"id\":\"39990\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/42222\",\"name\":\"#SFBX Conference 7\",\"id\":\"42222\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/43130\",\"name\":\"#SFBX Conference 3\",\"id\":\"43130\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/60168\",\"name\":\"#SFBX Conference 10\",\"id\":\"60168\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/65443\",\"name\":\"#SFBX Conference 5\",\"id\":\"65443\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/69624\",\"name\":\"#SFBX Conference 4\",\"id\":\"69624\"}]},\"encoding\":\"utf-8\"}"),
- date = structure(1606598249, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 0.041419,
- connect = 0.074933, pretransfer = 0.16718, starttransfer = 0.320741,
- total = 0.321132)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-ca73a0.R b/tests/testthat/api.myfantasyleague.com/2020/export-ca73a0.R
deleted file mode 100644
index fca13547..00000000
--- a/tests/testthat/api.myfantasyleague.com/2020/export-ca73a0.R
+++ /dev/null
@@ -1,24 +0,0 @@
-structure(list(url = "https://www61.myfantasyleague.com/2020/export?TYPE=rules&L=54040&JSON=1",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:11:18 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "274", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:11:18 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- location = "https://www61.myfantasyleague.com/2020/export?TYPE=rules&L=54040&JSON=1",
- `content-length` = "0", targethost = "www77"), class = c("insensitive",
- "list"))), list(status = 200L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:11:18 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "274", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = logical(0),
- flag = logical(0), path = logical(0), secure = logical(0),
- expiration = structure(numeric(0), class = c("POSIXct",
- "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"),
- content = charToRaw("{\"version\":\"1.0\",\"rules\":{\"positionRules\":[{\"positions\":\"QB|RB|WR|TE\",\"rule\":[{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#P\"}},{\"points\":{\"$t\":\"*.04\"},\"range\":{\"$t\":\"-50-999\"},\"event\":{\"$t\":\"PY\"}},{\"points\":{\"$t\":\"*-4\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"IN\"}},{\"points\":{\"$t\":\"*2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"P2\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#R\"}},{\"points\":{\"$t\":\"*0.1\"},\"range\":{\"$t\":\"-50-999\"},\"event\":{\"$t\":\"RY\"}},{\"points\":{\"$t\":\"*2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"R2\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#C\"}},{\"points\":{\"$t\":\"*0.1\"},\"range\":{\"$t\":\"-50-999\"},\"event\":{\"$t\":\"CY\"}},{\"points\":{\"$t\":\"*0.5\"},\"range\":{\"$t\":\"0-99\"},\"event\":{\"$t\":\"CC\"}},{\"points\":{\"$t\":\"*2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"C2\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#UT\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#KT\"}},{\"points\":{\"$t\":\"*-2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"FL\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#FR\"}},{\"points\":{\"$t\":\"*0.5\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1R\"}},{\"points\":{\"$t\":\"*0.5\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1C\"}}]},{\"positions\":\"TE\",\"rule\":[{\"points\":{\"$t\":\"*0.25\"},\"range\":{\"$t\":\"0-99\"},\"event\":{\"$t\":\"CC\"}},{\"points\":{\"$t\":\"*0.25\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1R\"}},{\"points\":{\"$t\":\"*0.25\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1C\"}}]}]},\"encoding\":\"utf-8\"}"),
- date = structure(1606597878, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0.14508, namelookup = 9e-05,
- connect = 9.9e-05, pretransfer = 0.000279, starttransfer = 0.30621,
- total = 0.316008)), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-ccd01d.R b/tests/testthat/api.myfantasyleague.com/2020/export-ccd01d.R
deleted file mode 100644
index 611554bd..00000000
--- a/tests/testthat/api.myfantasyleague.com/2020/export-ccd01d.R
+++ /dev/null
@@ -1,24 +0,0 @@
-structure(list(url = "https://www61.myfantasyleague.com/2020/export?TYPE=rosters&L=54040&JSON=1",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:11:27 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "2903", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")), all_headers = list(list(status = 302L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:11:27 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- location = "https://www61.myfantasyleague.com/2020/export?TYPE=rosters&L=54040&JSON=1",
- `content-length` = "0", targethost = "www77"), class = c("insensitive",
- "list"))), list(status = 200L, version = "HTTP/1.1",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:11:27 GMT",
- server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
- vary = "Accept-Encoding", `content-encoding` = "gzip",
- `content-length` = "2903", `content-type` = "application/json; charset=utf-8"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = logical(0),
- flag = logical(0), path = logical(0), secure = logical(0),
- expiration = structure(numeric(0), class = c("POSIXct",
- "POSIXt")), name = logical(0), value = logical(0)), row.names = integer(0), class = "data.frame"),
- content = charToRaw("{\"rosters\":{\"franchise\":[{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13189\",\"drafted\":\"3.04\"},{\"status\":\"ROSTER\",\"id\":\"11680\",\"drafted\":\"4.02\"},{\"status\":\"ROSTER\",\"id\":\"13645\",\"drafted\":\"18.02\"},{\"status\":\"ROSTER\",\"id\":\"12110\",\"drafted\":\"19.04\"},{\"status\":\"ROSTER\",\"id\":\"13168\",\"drafted\":\"20.02\"},{\"status\":\"ROSTER\",\"id\":\"13793\",\"drafted\":\"21.04\"},{\"status\":\"ROSTER\",\"id\":\"13879\",\"drafted\":\"24.02\"},{\"status\":\"ROSTER\",\"id\":\"13377\",\"drafted\":\"25.04\"},{\"status\":\"ROSTER\",\"id\":\"13254\",\"drafted\":\"26.02\"},{\"status\":\"ROSTER\",\"id\":\"8673\",\"drafted\":\"27.04\"},{\"status\":\"ROSTER\",\"id\":\"14803\",\"drafted\":\"1.01\"},{\"status\":\"ROSTER\",\"id\":\"14838\",\"drafted\":\"2.02\"},{\"status\":\"ROSTER\",\"id\":\"14837\",\"drafted\":\"2.10\"},{\"status\":\"ROSTER\",\"id\":\"13652\",\"drafted\":\"BB $21.00\"},{\"status\":\"ROSTER\",\"id\":\"13505\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13611\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14870\",\"drafted\":\"3.01\"},{\"status\":\"ROSTER\",\"id\":\"13868\",\"drafted\":\"BB $5.00\"},{\"status\":\"ROSTER\",\"id\":\"9918\",\"drafted\":\"17.04\"},{\"status\":\"ROSTER\",\"id\":\"13139\",\"drafted\":\"15.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13290\",\"drafted\":\"6.02\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13188\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13158\",\"drafted\":\"8.02\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14874\",\"drafted\":\"BB $3.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14863\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14876\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13155\",\"drafted\":\"7.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14777\",\"drafted\":\"1.14\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14779\",\"drafted\":\"2.11\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14835\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14085\",\"drafted\":\"13.04\"}],\"id\":\"0001\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13163\",\"drafted\":\"1.03\"},{\"status\":\"ROSTER\",\"id\":\"13319\",\"drafted\":\"2.03\"},{\"status\":\"ROSTER\",\"id\":\"14102\",\"drafted\":\"3.03\"},{\"status\":\"ROSTER\",\"id\":\"14071\",\"drafted\":\"4.03\"},{\"status\":\"ROSTER\",\"id\":\"12176\",\"drafted\":\"5.03\"},{\"status\":\"ROSTER\",\"id\":\"14087\",\"drafted\":\"9.03\"},{\"status\":\"ROSTER\",\"id\":\"4925\",\"drafted\":\"10.03\"},{\"status\":\"ROSTER\",\"id\":\"14058\",\"drafted\":\"11.03\"},{\"status\":\"ROSTER\",\"id\":\"12634\",\"drafted\":\"12.03\"},{\"status\":\"ROSTER\",\"id\":\"13763\",\"drafted\":\"14.03\"},{\"status\":\"ROSTER\",\"id\":\"12197\",\"drafted\":\"15.03\"},{\"status\":\"ROSTER\",\"id\":\"13850\",\"drafted\":\"16.03\"},{\"status\":\"ROSTER\",\"id\":\"7394\",\"drafted\":\"18.03\"},{\"status\":\"ROSTER\",\"id\":\"13644\",\"drafted\":\"25.03\"},{\"status\":\"ROSTER\",\"id\":\"14076\",\"drafted\":\"26.03\"},{\"status\":\"ROSTER\",\"id\":\"14063\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13605\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14804\",\"drafted\":\"2.14\"},{\"status\":\"ROSTER\",\"id\":\"10948\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13157\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14552\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"12213\",\"drafted\":\"BB $1.00\"},{\"status\":\"ROSTER\",\"id\":\"13968\",\"drafted\":\"BB $28.00\"},{\"status\":\"ROSTER\",\"id\":\"9823\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"12621\",\"drafted\":\"BB $71.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14093\",\"drafted\":\"13.03\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14114\",\"drafted\":\"20.03\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14782\",\"drafted\":\"3.07\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14805\",\"drafted\":\"2.04\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14868\",\"drafted\":\"4.07\"}],\"id\":\"0002\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"11678\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12611\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12678\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12912\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11222\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11516\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14073\",\"drafted\":\"1.01 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14208\",\"drafted\":\"2.07 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14223\",\"drafted\":\"3.01 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11244\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13814\",\"drafted\":\"BB $0.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14123\",\"drafted\":\"4.01 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12330\",\"drafted\":\"BB $10.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14778\",\"drafted\":\"1.15\"},{\"status\":\"ROSTER\",\"id\":\"14798\",\"drafted\":\"2.05\"},{\"status\":\"ROSTER\",\"id\":\"12629\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14864\",\"drafted\":\"3.05\"},{\"status\":\"ROSTER\",\"id\":\"11192\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14558\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13988\",\"drafted\":\"BB $50.00\"},{\"status\":\"ROSTER\",\"id\":\"13633\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14613\",\"drafted\":\"BB $15.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13590\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13642\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10313\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11890\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13630\",\"drafted\":\"1.12 (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14209\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14081\",\"drafted\":\"BB $5.00 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14146\",\"drafted\":\"3.09 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14862\",\"drafted\":\"4.05\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14781\",\"drafted\":\"BB $0.00\"}],\"id\":\"0003\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13132\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12175\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12677\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13378\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11225\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12140\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13424\",\"drafted\":\"FCFS (2018)\"},{\"status\":\"ROSTER\",\"id\":\"10699\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14280\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10729\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13880\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13427\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13679\",\"drafted\":\"4.06 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"10271\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14067\",\"drafted\":\"BB $201.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14239\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13277\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14341\",\"drafted\":\"BB $42.00\"},{\"status\":\"ROSTER\",\"id\":\"11390\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"15034\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13134\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13674\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13130\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"15022\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13289\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14116\",\"drafted\":\"1.14 (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12261\",\"drafted\":\"BB $0.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11760\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11925\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14869\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14840\",\"drafted\":\"1.12\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14315\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14435\",\"drafted\":\"FCFS\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14142\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14086\",\"drafted\":\"FCFS\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14117\",\"drafted\":\"FCFS\"}],\"id\":\"0004\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13668\",\"drafted\":\"3.05\"},{\"status\":\"ROSTER\",\"id\":\"13671\",\"drafted\":\"4.01\"},{\"status\":\"ROSTER\",\"id\":\"13606\",\"drafted\":\"7.05\"},{\"status\":\"ROSTER\",\"id\":\"13153\",\"drafted\":\"12.01\"},{\"status\":\"ROSTER\",\"id\":\"14284\",\"drafted\":\"13.05\"},{\"status\":\"ROSTER\",\"id\":\"8658\",\"drafted\":\"15.05\"},{\"status\":\"ROSTER\",\"id\":\"13115\",\"drafted\":\"16.01\"},{\"status\":\"ROSTER\",\"id\":\"8062\",\"drafted\":\"17.05\"},{\"status\":\"ROSTER\",\"id\":\"13864\",\"drafted\":\"20.01\"},{\"status\":\"ROSTER\",\"id\":\"13176\",\"drafted\":\"26.01\"},{\"status\":\"ROSTER\",\"id\":\"11367\",\"drafted\":\"27.05\"},{\"status\":\"ROSTER\",\"id\":\"13162\",\"drafted\":\"31.05\"},{\"status\":\"ROSTER\",\"id\":\"14852\",\"drafted\":\"2.06\"},{\"status\":\"ROSTER\",\"id\":\"14101\",\"drafted\":\"5.05\"},{\"status\":\"ROSTER\",\"id\":\"12675\",\"drafted\":\"BB $50.00\"},{\"status\":\"ROSTER\",\"id\":\"14826\",\"drafted\":\"BB $1.00\"},{\"status\":\"ROSTER\",\"id\":\"12211\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"15077\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14815\",\"drafted\":\"3.11\"},{\"status\":\"ROSTER\",\"id\":\"14848\",\"drafted\":\"4.06\"},{\"status\":\"ROSTER\",\"id\":\"14104\",\"drafted\":\"1.05\"},{\"status\":\"ROSTER\",\"id\":\"14109\",\"drafted\":\"2.01\"},{\"status\":\"ROSTER\",\"id\":\"14974\",\"drafted\":\"4.04\"},{\"status\":\"ROSTER\",\"id\":\"13066\",\"drafted\":\"BB $3.00\"},{\"status\":\"ROSTER\",\"id\":\"14855\",\"drafted\":\"BB $17.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14112\",\"drafted\":\"6.01\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13722\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"9662\",\"drafted\":\"8.01\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14850\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14561\",\"drafted\":\"BB $45.00\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14533\",\"drafted\":\"FCFS\"}],\"id\":\"0005\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12630\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"10312\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13116\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11644\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13146\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11227\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13629\",\"drafted\":\"1.10 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13726\",\"drafted\":\"3.03 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14105\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14059\",\"drafted\":\"3.11 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13623\",\"drafted\":\"FCFS (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14122\",\"drafted\":\"4.11 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12801\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12676\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13613\",\"drafted\":\"3.08 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14072\",\"drafted\":\"3.12 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14836\",\"drafted\":\"1.09\"},{\"status\":\"ROSTER\",\"id\":\"14834\",\"drafted\":\"1.10\"},{\"status\":\"ROSTER\",\"id\":\"14810\",\"drafted\":\"2.03\"},{\"status\":\"ROSTER\",\"id\":\"13847\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14113\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13919\",\"drafted\":\"BB $0.00 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14265\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13621\",\"drafted\":\"BB $37.00\"},{\"status\":\"ROSTER\",\"id\":\"14095\",\"drafted\":\"BB $33.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12317\",\"drafted\":\"BB $1.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14806\",\"drafted\":\"3.09\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14103\",\"drafted\":\"2.11 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14939\",\"drafted\":\"4.09\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14936\",\"drafted\":\"2.09\"}],\"id\":\"0006\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"5848\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11951\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14079\",\"drafted\":\"1.03 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14056\",\"drafted\":\"1.15 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14121\",\"drafted\":\"2.03 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12157\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"7877\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13592\",\"drafted\":\"2.02 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13240\",\"drafted\":\"BB $17.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13138\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13391\",\"drafted\":\"BB $61.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10722\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11232\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13348\",\"drafted\":\"BB $2.00\"},{\"status\":\"ROSTER\",\"id\":\"14083\",\"drafted\":\"BB $31.00\"},{\"status\":\"ROSTER\",\"id\":\"12929\",\"drafted\":\"BB $16.00\"},{\"status\":\"ROSTER\",\"id\":\"14839\",\"drafted\":\"1.08\"},{\"status\":\"ROSTER\",\"id\":\"13724\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14143\",\"drafted\":\"3.07 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13610\",\"drafted\":\"1.04 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14592\",\"drafted\":\"BB $69.00\"},{\"status\":\"ROSTER\",\"id\":\"14843\",\"drafted\":\"3.06\"},{\"status\":\"ROSTER\",\"id\":\"14809\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10723\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13308\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12665\",\"drafted\":\"BB $2.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12596\",\"drafted\":\"BB $0.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12391\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12188\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11247\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13634\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11938\",\"drafted\":\"Trade (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14124\",\"drafted\":\"4.03 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14783\",\"drafted\":\"3.10\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14992\",\"drafted\":\"4.08\"}],\"id\":\"0007\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12151\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12184\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13617\",\"drafted\":\"1.07 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13646\",\"drafted\":\"1.14 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12637\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13614\",\"drafted\":\"BBID (2018)\"},{\"status\":\"ROSTER\",\"id\":\"11257\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13364\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13593\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13622\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10973\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"7393\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11228\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12150\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13768\",\"drafted\":\"3.07 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13418\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"9075\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"9474\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"11250\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13190\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13649\",\"drafted\":\"BB $16.00\"},{\"status\":\"ROSTER\",\"id\":\"10261\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"10273\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"11152\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"12628\",\"drafted\":\"BB $173.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11239\",\"drafted\":\"Trade (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13234\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13608\",\"drafted\":\"1.05 (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12620\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"10983\",\"drafted\":\"FCFS\"}],\"id\":\"0008\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"11675\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13113\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"10700\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13193\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13678\",\"drafted\":\"3.06 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13128\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13164\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12652\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"6997\",\"drafted\":\"BB $24.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14127\",\"drafted\":\"3.06 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13488\",\"drafted\":\"BB $0.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13108\",\"drafted\":\"BB $15.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12263\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11747\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11957\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13313\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13772\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13789\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13871\",\"drafted\":\"BB $26.00\"},{\"status\":\"ROSTER\",\"id\":\"14096\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13632\",\"drafted\":\"BB $35.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12155\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13607\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12447\",\"drafted\":\"FCFS (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11186\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"10276\",\"drafted\":\"Trade (2019)\"}],\"id\":\"0009\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12186\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12656\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12814\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11337\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13589\",\"drafted\":\"2.12 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13635\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11657\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14136\",\"drafted\":\"1.11 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"7836\",\"drafted\":\"9.04\"},{\"status\":\"ROSTER\",\"id\":\"14797\",\"drafted\":\"1.03\"},{\"status\":\"ROSTER\",\"id\":\"11647\",\"drafted\":\"BB $25.00\"},{\"status\":\"ROSTER\",\"id\":\"14858\",\"drafted\":\"3.02\"},{\"status\":\"ROSTER\",\"id\":\"14844\",\"drafted\":\"2.08\"},{\"status\":\"ROSTER\",\"id\":\"14813\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14851\",\"drafted\":\"BB $11.00\"},{\"status\":\"ROSTER\",\"id\":\"14337\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13387\",\"drafted\":\"BB $39.00\"},{\"status\":\"ROSTER\",\"id\":\"13895\",\"drafted\":\"BB $4.00\"},{\"status\":\"ROSTER\",\"id\":\"14846\",\"drafted\":\"1.13\"},{\"status\":\"ROSTER\",\"id\":\"14799\",\"drafted\":\"1.05\"},{\"status\":\"ROSTER\",\"id\":\"13680\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14811\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"11785\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14865\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14195\",\"drafted\":\"3.04 (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"10960\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13299\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14126\",\"drafted\":\"2.13 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14612\",\"drafted\":\"BB $0.00 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14969\",\"drafted\":\"4.02\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"15046\",\"drafted\":\"FCFS\"}],\"id\":\"0010\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"11660\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12626\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12610\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11695\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"9099\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11182\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11783\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12505\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12257\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"9831\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14017\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14080\",\"drafted\":\"2.08 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14305\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14097\",\"drafted\":\"4.08 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11399\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13662\",\"drafted\":\"3.13 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"11761\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14832\",\"drafted\":\"1.07\"},{\"status\":\"ROSTER\",\"id\":\"14841\",\"drafted\":\"2.07\"},{\"status\":\"ROSTER\",\"id\":\"14138\",\"drafted\":\"1.08 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11705\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"9064\",\"drafted\":\"BB $6.00\"},{\"status\":\"ROSTER\",\"id\":\"11248\",\"drafted\":\"BB $3.00\"},{\"status\":\"ROSTER\",\"id\":\"12857\",\"drafted\":\"BB $1.00\"},{\"status\":\"ROSTER\",\"id\":\"13676\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14082\",\"drafted\":\"3.08 (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13404\",\"drafted\":\"Trade (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11679\",\"drafted\":\"\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"13669\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14816\",\"drafted\":\"BB $0.00\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14780\",\"drafted\":\"BB $11.00\"}],\"id\":\"0011\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12625\",\"drafted\":\"1.02\"},{\"status\":\"ROSTER\",\"id\":\"13154\",\"drafted\":\"5.02\"},{\"status\":\"ROSTER\",\"id\":\"13639\",\"drafted\":\"6.04\"},{\"status\":\"ROSTER\",\"id\":\"13672\",\"drafted\":\"7.02\"},{\"status\":\"ROSTER\",\"id\":\"11674\",\"drafted\":\"8.04\"},{\"status\":\"ROSTER\",\"id\":\"13192\",\"drafted\":\"9.02\"},{\"status\":\"ROSTER\",\"id\":\"14057\",\"drafted\":\"10.04\"},{\"status\":\"ROSTER\",\"id\":\"9431\",\"drafted\":\"11.02\"},{\"status\":\"ROSTER\",\"id\":\"12171\",\"drafted\":\"12.04\"},{\"status\":\"ROSTER\",\"id\":\"11670\",\"drafted\":\"13.02\"},{\"status\":\"ROSTER\",\"id\":\"14106\",\"drafted\":\"16.04\"},{\"status\":\"ROSTER\",\"id\":\"14075\",\"drafted\":\"18.04\"},{\"status\":\"ROSTER\",\"id\":\"13637\",\"drafted\":\"27.02\"},{\"status\":\"ROSTER\",\"id\":\"12212\",\"drafted\":\"28.04\"},{\"status\":\"ROSTER\",\"id\":\"13412\",\"drafted\":\"30.04\"},{\"status\":\"ROSTER\",\"id\":\"14802\",\"drafted\":\"1.02\"},{\"status\":\"ROSTER\",\"id\":\"14833\",\"drafted\":\"1.06\"},{\"status\":\"ROSTER\",\"id\":\"14867\",\"drafted\":\"2.13\"},{\"status\":\"ROSTER\",\"id\":\"14807\",\"drafted\":\"3.04\"},{\"status\":\"ROSTER\",\"id\":\"13129\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"7813\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14827\",\"drafted\":\"BB $31.00\"},{\"status\":\"ROSTER\",\"id\":\"13638\",\"drafted\":\"BB $42.00\"},{\"status\":\"ROSTER\",\"id\":\"14793\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"9988\",\"drafted\":\"20.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12141\",\"drafted\":\"22.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14871\",\"drafted\":\"4.13\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13963\",\"drafted\":\"BB $1.00\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14972\",\"drafted\":\"4.03\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14845\",\"drafted\":\"3.13\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14873\",\"drafted\":\"4.01\"}],\"id\":\"0012\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13612\",\"drafted\":\"3.01\"},{\"status\":\"ROSTER\",\"id\":\"10697\",\"drafted\":\"9.01\"},{\"status\":\"ROSTER\",\"id\":\"10738\",\"drafted\":\"10.05\"},{\"status\":\"ROSTER\",\"id\":\"10308\",\"drafted\":\"12.05\"},{\"status\":\"ROSTER\",\"id\":\"11640\",\"drafted\":\"15.01\"},{\"status\":\"ROSTER\",\"id\":\"10413\",\"drafted\":\"18.05\"},{\"status\":\"ROSTER\",\"id\":\"11193\",\"drafted\":\"19.01\"},{\"status\":\"ROSTER\",\"id\":\"9308\",\"drafted\":\"20.05\"},{\"status\":\"ROSTER\",\"id\":\"13753\",\"drafted\":\"21.01\"},{\"status\":\"ROSTER\",\"id\":\"13135\",\"drafted\":\"22.05\"},{\"status\":\"ROSTER\",\"id\":\"12181\",\"drafted\":\"24.05\"},{\"status\":\"ROSTER\",\"id\":\"12464\",\"drafted\":\"29.01\"},{\"status\":\"ROSTER\",\"id\":\"13246\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14847\",\"drafted\":\"3.03\"},{\"status\":\"ROSTER\",\"id\":\"14857\",\"drafted\":\"4.11\"},{\"status\":\"ROSTER\",\"id\":\"12152\",\"drafted\":\"8.05\"},{\"status\":\"ROSTER\",\"id\":\"12658\",\"drafted\":\"5.01\"},{\"status\":\"ROSTER\",\"id\":\"14331\",\"drafted\":\"BB $146.00\"},{\"status\":\"ROSTER\",\"id\":\"12616\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14125\",\"drafted\":\"6.05\"},{\"status\":\"ROSTER\",\"id\":\"13416\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13994\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"15096\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10870\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"10696\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13604\",\"drafted\":\"1.01\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14808\",\"drafted\":\"2.12\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13620\",\"drafted\":\"14.05\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12328\",\"drafted\":\"28.05\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14800\",\"drafted\":\"1.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13863\",\"drafted\":\"FCFS\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14140\",\"drafted\":\"11.01\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14842\",\"drafted\":\"2.01\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14137\",\"drafted\":\"4.05\"}],\"id\":\"0013\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12930\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12650\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"10389\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13236\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12647\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12785\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12386\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10703\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"9925\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11671\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13631\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"7401\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"9902\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"12187\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13809\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13156\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14141\",\"drafted\":\"2.04 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12164\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13143\",\"drafted\":\"BB $28.00\"},{\"status\":\"ROSTER\",\"id\":\"13133\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14801\",\"drafted\":\"BB $29.00\"},{\"status\":\"ROSTER\",\"id\":\"13816\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13640\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10695\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13148\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11886\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12205\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14821\",\"drafted\":\"BB $98.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13131\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13136\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"8687\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14107\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14849\",\"drafted\":\"4.12\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14875\",\"drafted\":\"4.14\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14853\",\"drafted\":\"BB $5.00\"}],\"id\":\"0014\"}]},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"),
- date = structure(1606597887, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0.140827, namelookup = 7.8e-05,
- connect = 9.2e-05, pretransfer = 0.000233, starttransfer = 0.36102,
- total = 0.361275)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/386236959468675072.R b/tests/testthat/api.sleeper.app/v1/league/386236959468675072.R
deleted file mode 100644
index 410cf791..00000000
--- a/tests/testthat/api.sleeper.app/v1/league/386236959468675072.R
+++ /dev/null
@@ -1,30 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/league/386236959468675072",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:13:44 GMT",
- `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
- `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "7cb540283f2a228e59c672723fb449bc",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d72870000ca4b93001000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f971830d87bca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:13:44 GMT",
- `content-type` = "application/json; charset=utf-8",
- vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "7cb540283f2a228e59c672723fb449bc",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d72870000ca4b93001000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f971830d87bca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("{\"total_rosters\":12,\"status\":\"complete\",\"sport\":\"nfl\",\"shard\":581,\"settings\":{\"max_keepers\":1,\"draft_rounds\":4,\"trade_review_days\":2,\"reserve_allow_dnr\":0,\"capacity_override\":0,\"pick_trading\":1,\"taxi_years\":1,\"taxi_allow_vets\":0,\"last_report\":13,\"disable_adds\":0,\"waiver_type\":2,\"bench_lock\":1,\"reserve_allow_sus\":1,\"type\":2,\"waiver_clear_days\":1,\"daily_waivers_last_ran\":1,\"waiver_day_of_week\":2,\"start_week\":1,\"playoff_teams\":6,\"num_teams\":12,\"reserve_slots\":3,\"playoff_round_type\":0,\"daily_waivers_hour\":0,\"waiver_budget\":200,\"reserve_allow_out\":1,\"offseason_adds\":0,\"last_scored_leg\":16,\"daily_waivers\":0,\"playoff_week_start\":14,\"daily_waivers_days\":1093,\"league_average_match\":0,\"leg\":16,\"trade_deadline\":13,\"reserve_allow_doubtful\":0,\"taxi_deadline\":0,\"reserve_allow_na\":0,\"taxi_slots\":3,\"playoff_type\":1},\"season_type\":\"regular\",\"season\":\"2019\",\"scoring_settings\":{\"pass_2pt\":2.0,\"pass_int\":-2.0,\"fgmiss\":0.0,\"rec_yd\":0.10000000149011612,\"xpmiss\":0.0,\"def_pr_td\":0.0,\"fgm_30_39\":0.0,\"blk_kick\":2.0,\"pts_allow_7_13\":0.0,\"ff\":1.0,\"fgm_20_29\":0.0,\"fgm_40_49\":0.0,\"pts_allow_1_6\":0.0,\"st_fum_rec\":1.0,\"def_st_ff\":1.0,\"st_ff\":1.0,\"pts_allow_28_34\":0.0,\"fgm_50p\":0.0,\"fum_rec\":2.0,\"def_td\":6.0,\"fgm_0_19\":0.0,\"int\":2.0,\"pts_allow_0\":0.0,\"pts_allow_21_27\":0.0,\"rec_2pt\":2.0,\"rec\":0.5,\"xpm\":0.0,\"st_td\":6.0,\"def_st_fum_rec\":1.0,\"def_st_td\":6.0,\"sack\":1.0,\"idp_tkl_solo\":0.0,\"rush_2pt\":2.0,\"rec_td\":6.0,\"pts_allow_35p\":0.0,\"pts_allow_14_20\":0.0,\"rush_yd\":0.10000000149011612,\"pass_yd\":0.03999999910593033,\"pass_td\":4.0,\"rush_td\":6.0,\"def_kr_td\":0.0,\"fum_lost\":-2.0,\"fum\":0.0,\"safe\":2.0},\"roster_positions\":[\"QB\",\"RB\",\"RB\",\"WR\",\"WR\",\"TE\",\"FLEX\",\"FLEX\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\"],\"previous_league_id\":\"0\",\"name\":\"The JanMichaelLarkin Dynasty League\",\"metadata\":{\"trophy_loser_banner_text\":\"THE MELLY\",\"trophy_loser_background\":\"poop\",\"trophy_loser\":\"loser1\"},\"loser_bracket_id\":513526691414429696,\"league_id\":\"386236959468675072\",\"last_read_id\":null,\"last_pinned_message_id\":null,\"last_message_time\":1578111120190,\"last_message_text_map\":{},\"last_message_text\":\"When Ryan comes back\",\"last_message_id\":\"519039293647638528\",\"last_message_attachment\":null,\"last_author_is_bot\":false,\"last_author_id\":\"386976568364306432\",\"last_author_display_name\":\"TwoFrames\",\"last_author_avatar\":\"712105a5bab80482980a3f55d87fc612\",\"group_id\":null,\"draft_id\":\"386351625650020352\",\"company_id\":null,\"bracket_id\":513526691410235392,\"avatar\":\"6405a606ed8554f6728a38bd48b9a64d\"}"),
- date = structure(1606598024, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 4.7e-05,
- connect = 5.4e-05, pretransfer = 0.000159, starttransfer = 0.327992,
- total = 0.328079)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/users.R b/tests/testthat/api.sleeper.app/v1/league/521379020332068864/users.R
deleted file mode 100644
index 8ac688e7..00000000
--- a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/users.R
+++ /dev/null
@@ -1,30 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/league/521379020332068864/users",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:13:38 GMT",
- `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
- `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "8dd7b3885ef7ef520c312ca9c516fcc2",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d5cc50000ca4be1314000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f97180e08e7ca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:13:38 GMT",
- `content-type` = "application/json; charset=utf-8",
- vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "8dd7b3885ef7ef520c312ca9c516fcc2",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d5cc50000ca4be1314000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f97180e08e7ca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("[{\"user_id\":\"202892038360801280\",\"settings\":null,\"metadata\":{\"user_message_pn\":\"off\",\"transaction_waiver\":\"on\",\"transaction_trade\":\"on\",\"transaction_free_agent\":\"on\",\"transaction_commissioner\":\"on\",\"team_name_update\":\"on\",\"team_name\":\"DLP::thoriyan\",\"player_nickname_update\":\"on\",\"mention_pn\":\"on\",\"mascot_message\":\"on\",\"mascot_item_type_id_leg_9\":\"steel-man\",\"mascot_item_type_id_leg_8\":\"steel-man\",\"mascot_item_type_id_leg_7\":\"steel-man\",\"mascot_item_type_id_leg_6\":\"steel-man\",\"mascot_item_type_id_leg_5\":\"steel-man\",\"mascot_item_type_id_leg_4\":\"steel-man\",\"mascot_item_type_id_leg_3\":\"steel-man\",\"mascot_item_type_id_leg_2\":\"steel-man\",\"mascot_item_type_id_leg_17\":\"steel-man\",\"mascot_item_type_id_leg_16\":\"steel-man\",\"mascot_item_type_id_leg_15\":\"steel-man\",\"mascot_item_type_id_leg_14\":\"steel-man\",\"mascot_item_type_id_leg_13\":\"steel-man\",\"mascot_item_type_id_leg_12\":\"steel-man\",\"mascot_item_type_id_leg_11\":\"steel-man\",\"mascot_item_type_id_leg_10\":\"steel-man\",\"mascot_item_type_id_leg_1\":\"steel-man\",\"allow_pn\":\"off\"},\"league_id\":\"521379020332068864\",\"is_owner\":true,\"is_bot\":false,\"display_name\":\"solarpool\",\"avatar\":\"a71f864896ba28cbfaa4dc5df5b564e0\"},{\"user_id\":\"459230175830208512\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"AKWilson\",\"avatar\":\"8fcf0e0e6a75e96a591d2a4a4a400f41\"},{\"user_id\":\"460930515327774720\",\"settings\":null,\"metadata\":{\"team_name\":\"Team Mage\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_2\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"troll\",\"mascot_item_type_id_leg_8\":\"troll\",\"mascot_item_type_id_leg_7\":\"troll\",\"mascot_item_type_id_leg_6\":\"troll\",\"mascot_item_type_id_leg_5\":\"troll\",\"mascot_item_type_id_leg_4\":\"troll\",\"mascot_item_type_id_leg_3\":\"troll\",\"mascot_item_type_id_leg_2\":\"troll\",\"mascot_item_type_id_leg_17\":\"troll\",\"mascot_item_type_id_leg_16\":\"troll\",\"mascot_item_type_id_leg_15\":\"troll\",\"mascot_item_type_id_leg_14\":\"troll\",\"mascot_item_type_id_leg_13\":\"troll\",\"mascot_item_type_id_leg_12\":\"troll\",\"mascot_item_type_id_leg_11\":\"troll\",\"mascot_item_type_id_leg_10\":\"troll\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Mage\",\"avatar\":\"8078fbb07b843e8fcbb4601e5cb06b2d\"},{\"user_id\":\"464108705281994752\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_leg_1\":\"\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"silentclock\",\"avatar\":null},{\"user_id\":\"464123755250053120\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_item_type_id_leg_9\":\"goat\",\"mascot_item_type_id_leg_8\":\"goat\",\"mascot_item_type_id_leg_7\":\"goat\",\"mascot_item_type_id_leg_6\":\"goat\",\"mascot_item_type_id_leg_5\":\"goat\",\"mascot_item_type_id_leg_4\":\"goat\",\"mascot_item_type_id_leg_3\":\"goat\",\"mascot_item_type_id_leg_2\":\"goat\",\"mascot_item_type_id_leg_17\":\"goat\",\"mascot_item_type_id_leg_16\":\"goat\",\"mascot_item_type_id_leg_15\":\"goat\",\"mascot_item_type_id_leg_14\":\"goat\",\"mascot_item_type_id_leg_13\":\"goat\",\"mascot_item_type_id_leg_12\":\"goat\",\"mascot_item_type_id_leg_11\":\"goat\",\"mascot_item_type_id_leg_10\":\"goat\",\"mascot_item_type_id_leg_1\":\"goat\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Rah292\",\"avatar\":\"6f925123e8c7894bf1cddb0e21a9ae71\"},{\"user_id\":\"464498960719933440\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"hyphenated\",\"avatar\":\"7fb450a5b9acf255a2a563067dcd7bbe\"},{\"user_id\":\"464935605336272896\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_leg_1\":\"Ya momma\",\"mascot_message_emotion_leg_1\":\"idle\",\"mascot_item_type_id_leg_9\":\"cache-ream\",\"mascot_item_type_id_leg_8\":\"cache-ream\",\"mascot_item_type_id_leg_7\":\"cache-ream\",\"mascot_item_type_id_leg_6\":\"cache-ream\",\"mascot_item_type_id_leg_5\":\"cache-ream\",\"mascot_item_type_id_leg_4\":\"cache-ream\",\"mascot_item_type_id_leg_3\":\"cache-ream\",\"mascot_item_type_id_leg_2\":\"cache-ream\",\"mascot_item_type_id_leg_17\":\"cache-ream\",\"mascot_item_type_id_leg_16\":\"cache-ream\",\"mascot_item_type_id_leg_15\":\"cache-ream\",\"mascot_item_type_id_leg_14\":\"cache-ream\",\"mascot_item_type_id_leg_13\":\"cache-ream\",\"mascot_item_type_id_leg_12\":\"cache-ream\",\"mascot_item_type_id_leg_11\":\"cache-ream\",\"mascot_item_type_id_leg_10\":\"cache-ream\",\"mascot_item_type_id_leg_1\":\"cache-ream\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"MonkeyEpoxy\",\"avatar\":\"b5f980efc36001cb4e056a9e146d0ca0\"},{\"user_id\":\"466527109116850176\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Azraels_Little_Helper\",\"avatar\":\"e06c36b2119f2b564e9c839b5377bdc8\"},{\"user_id\":\"466857724680859648\",\"settings\":null,\"metadata\":{\"team_name\":\"Waco Kid\",\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"WacoRides2glory\",\"avatar\":null},{\"user_id\":\"467329259925401600\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Eidolonic\",\"avatar\":null},{\"user_id\":\"507457165422039040\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":null,\"is_bot\":false,\"display_name\":\"yeavoxxtalknah\",\"avatar\":null},{\"user_id\":\"589594433561858048\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":null,\"is_bot\":false,\"display_name\":\"Conquistador00\",\"avatar\":null}]"),
- date = structure(1606598018, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 3.8e-05,
- connect = 4.3e-05, pretransfer = 0.000133, starttransfer = 0.33285,
- total = 0.332956)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272.R b/tests/testthat/api.sleeper.app/v1/league/522458773317046272.R
deleted file mode 100644
index 34aaadde..00000000
--- a/tests/testthat/api.sleeper.app/v1/league/522458773317046272.R
+++ /dev/null
@@ -1,30 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/league/522458773317046272",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:13:43 GMT",
- `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
- `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "47a0076afef16ba5f1e348201c98b628",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d6f7b0000ca4bc41e1000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f97182bfc93ca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:13:43 GMT",
- `content-type` = "application/json; charset=utf-8",
- vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "47a0076afef16ba5f1e348201c98b628",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d6f7b0000ca4bc41e1000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f97182bfc93ca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("{\"total_rosters\":12,\"status\":\"in_season\",\"sport\":\"nfl\",\"shard\":62,\"settings\":{\"max_keepers\":1,\"draft_rounds\":4,\"trade_review_days\":2,\"reserve_allow_dnr\":1,\"capacity_override\":0,\"pick_trading\":1,\"taxi_years\":1,\"taxi_allow_vets\":0,\"last_report\":11,\"disable_adds\":0,\"waiver_type\":2,\"bench_lock\":1,\"reserve_allow_sus\":1,\"type\":2,\"reserve_allow_cov\":1,\"waiver_clear_days\":1,\"daily_waivers_last_ran\":27,\"waiver_day_of_week\":2,\"start_week\":1,\"playoff_teams\":6,\"num_teams\":12,\"reserve_slots\":6,\"playoff_round_type\":0,\"daily_waivers_hour\":1,\"waiver_budget\":200,\"reserve_allow_out\":1,\"offseason_adds\":1,\"last_scored_leg\":11,\"playoff_seed_type\":0,\"daily_waivers\":0,\"playoff_week_start\":14,\"daily_waivers_days\":2075,\"league_average_match\":0,\"leg\":12,\"trade_deadline\":13,\"reserve_allow_doubtful\":0,\"taxi_deadline\":0,\"reserve_allow_na\":0,\"taxi_slots\":3,\"playoff_type\":1},\"season_type\":\"regular\",\"season\":\"2020\",\"scoring_settings\":{\"pass_2pt\":2.0,\"pass_int\":-2.0,\"fgmiss\":0.0,\"rec_yd\":0.10000000149011612,\"xpmiss\":0.0,\"def_pr_td\":0.0,\"fgm_30_39\":0.0,\"blk_kick\":2.0,\"pts_allow_7_13\":0.0,\"ff\":1.0,\"fgm_20_29\":0.0,\"fgm_40_49\":0.0,\"pts_allow_1_6\":0.0,\"st_fum_rec\":1.0,\"def_st_ff\":1.0,\"st_ff\":1.0,\"pts_allow_28_34\":0.0,\"fgm_50p\":0.0,\"fum_rec\":2.0,\"def_td\":6.0,\"fgm_0_19\":0.0,\"int\":2.0,\"pts_allow_0\":0.0,\"pts_allow_21_27\":0.0,\"rec_2pt\":2.0,\"rec\":0.5,\"xpm\":0.0,\"st_td\":6.0,\"def_st_fum_rec\":1.0,\"def_st_td\":6.0,\"sack\":1.0,\"fum_rec_td\":6.0,\"idp_tkl_solo\":0.0,\"rush_2pt\":2.0,\"rec_td\":6.0,\"pts_allow_35p\":0.0,\"pts_allow_14_20\":0.0,\"rush_yd\":0.10000000149011612,\"pass_yd\":0.03999999910593033,\"pass_td\":4.0,\"rush_td\":6.0,\"def_kr_td\":0.0,\"fum_lost\":-2.0,\"fum\":0.0,\"safe\":2.0},\"roster_positions\":[\"QB\",\"RB\",\"RB\",\"WR\",\"WR\",\"TE\",\"FLEX\",\"FLEX\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\"],\"previous_league_id\":\"386236959468675072\",\"name\":\"The JanMichaelLarkin Dynasty League\",\"metadata\":null,\"loser_bracket_id\":null,\"league_id\":\"522458773317046272\",\"last_read_id\":null,\"last_pinned_message_id\":null,\"last_message_time\":1606592976839,\"last_message_text_map\":{},\"last_message_text\":\"Jcurtis44 put a player on the trade block.\",\"last_message_id\":\"638500858916569088\",\"last_message_attachment\":{\"type\":\"trade_block_player\",\"data\":{\"roster\":{\"taxi\":[\"6826\",\"7082\"],\"starters\":[\"4017\",\"4199\",\"4098\",\"1426\",\"4037\",\"5022\",\"2197\",\"2319\"],\"settings\":{\"wins\":7,\"waiver_position\":9,\"waiver_budget_used\":111,\"total_moves\":0,\"ties\":0,\"ppts_decimal\":40,\"ppts\":1338,\"losses\":4,\"fpts_decimal\":30,\"fpts_against_decimal\":14,\"fpts_against\":1093,\"fpts\":1052},\"roster_id\":1,\"reserve\":[\"2025\",\"289\",\"344\",\"3503\",\"4866\"],\"players\":[\"1110\",\"1339\",\"1426\",\"1825\",\"2025\",\"2197\",\"2319\",\"232\",\"2822\",\"289\",\"344\",\"3503\",\"4017\",\"4036\",\"4037\",\"4089\",\"4098\",\"4137\",\"4144\",\"4149\",\"4171\",\"4199\",\"421\",\"4866\",\"5022\",\"5068\",\"5965\",\"6001\",\"6068\",\"6149\",\"6826\",\"7082\"],\"metadata\":{\"record\":\"LWWWWLLWLWW\",\"p_nick_956\":\"2019 Chiefs Starting RB\",\"p_nick_574\":\"\",\"p_nick_5068\":\"\",\"p_nick_5007\":\"\",\"p_nick_4993\":\"\",\"p_nick_4866\":\"\",\"p_nick_4863\":\"\",\"p_nick_4454\":\"\",\"p_nick_4273\":\"Bell Cow\",\"p_nick_4197\":\"\",\"p_nick_4171\":\"\",\"p_nick_4149\":\"\",\"p_nick_4144\":\"\",\"p_nick_4089\":\"\",\"p_nick_4068\":\"High Point Monster\",\"p_nick_4037\":\"\",\"p_nick_3976\":\"Biscuit\",\"p_nick_3969\":\"Fat, Lazy and Disrespectful\",\"p_nick_3208\":\"\",\"p_nick_1825\":\"\",\"p_nick_1706\":\"\",\"p_nick_1426\":\"\",\"p_nick_1339\":\"\",\"p_nick_1110\":\"\",\"allow_pn_scoring\":\"off\",\"allow_pn_news\":\"on\"},\"keepers\":null,\"co_owners\":null,\"bucket\":0},\"player\":{\"team\":\"NYG\",\"sport\":\"nfl\",\"position\":\"WR\",\"player_id\":\"6149\",\"number\":86,\"metadata\":null,\"last_name\":\"Slayton\",\"injury_status\":null,\"hashtag\":null,\"first_name\":\"Darius\",\"fantasy_positions\":[\"WR\"],\"depth_chart_position\":\"LWR\",\"depth_chart_order\":1},\"owner\":{\"settings\":null,\"metadata\":{\"team_name\":\"Fake News\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_9\":\"dancing\",\"mascot_message_emotion_leg_3\":\"victory\",\"mascot_item_type_id_leg_9\":\"metal-slug\",\"mascot_item_type_id_leg_8\":\"smoothie\",\"mascot_item_type_id_leg_7\":\"smoothie\",\"mascot_item_type_id_leg_6\":\"smoothie\",\"mascot_item_type_id_leg_5\":\"smoothie\",\"mascot_item_type_id_leg_4\":\"smoothie\",\"mascot_item_type_id_leg_3\":\"smoothie\",\"mascot_item_type_id_leg_2\":\"metal-slug\",\"mascot_item_type_id_leg_17\":\"metal-slug\",\"mascot_item_type_id_leg_16\":\"metal-slug\",\"mascot_item_type_id_leg_15\":\"metal-slug\",\"mascot_item_type_id_leg_14\":\"metal-slug\",\"mascot_item_type_id_leg_13\":\"metal-slug\",\"mascot_item_type_id_leg_12\":\"metal-slug\",\"mascot_item_type_id_leg_11\":\"metal-slug\",\"mascot_item_type_id_leg_10\":\"metal-slug\",\"mascot_item_type_id_leg_1\":\"metal-slug\",\"avatar\":\"https://sleepercdn.com/uploads/227fe45a080c97ba3ee59ebd1dca80af.jpg\",\"allow_pn\":\"on\"},\"is_owner\":false,\"is_bot\":null,\"display_name\":\"Jcurtis44\",\"avatar\":\"694db09fd474fe0ab8d767b31dd093c2\"}}},\"last_author_is_bot\":true,\"last_author_id\":\"166666666666666666\",\"last_author_display_name\":\"sys\",\"last_author_avatar\":null,\"group_id\":null,\"draft_id\":\"522458773321240576\",\"company_id\":null,\"bracket_id\":null,\"avatar\":\"6405a606ed8554f6728a38bd48b9a64d\"}"),
- date = structure(1606598023, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 5.1e-05,
- connect = 5.7e-05, pretransfer = 0.000162, starttransfer = 0.321119,
- total = 0.321246)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/users.R b/tests/testthat/api.sleeper.app/v1/league/522458773317046272/users.R
deleted file mode 100644
index f812c67e..00000000
--- a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/users.R
+++ /dev/null
@@ -1,30 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/league/522458773317046272/users",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:14:01 GMT",
- `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
- `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "f5b76526c31933e58ca2ccdad4c13811",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24db51d0000ca4b719b1000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f97189b6efdca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:14:01 GMT",
- `content-type` = "application/json; charset=utf-8",
- vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "f5b76526c31933e58ca2ccdad4c13811",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24db51d0000ca4b719b1000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f97189b6efdca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("[{\"user_id\":\"70729037081100288\",\"settings\":null,\"metadata\":{\"team_name\":\"Fake News\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_9\":\"dancing\",\"mascot_message_emotion_leg_3\":\"victory\",\"mascot_item_type_id_leg_9\":\"metal-slug\",\"mascot_item_type_id_leg_8\":\"smoothie\",\"mascot_item_type_id_leg_7\":\"smoothie\",\"mascot_item_type_id_leg_6\":\"smoothie\",\"mascot_item_type_id_leg_5\":\"smoothie\",\"mascot_item_type_id_leg_4\":\"smoothie\",\"mascot_item_type_id_leg_3\":\"smoothie\",\"mascot_item_type_id_leg_2\":\"metal-slug\",\"mascot_item_type_id_leg_17\":\"metal-slug\",\"mascot_item_type_id_leg_16\":\"metal-slug\",\"mascot_item_type_id_leg_15\":\"metal-slug\",\"mascot_item_type_id_leg_14\":\"metal-slug\",\"mascot_item_type_id_leg_13\":\"metal-slug\",\"mascot_item_type_id_leg_12\":\"metal-slug\",\"mascot_item_type_id_leg_11\":\"metal-slug\",\"mascot_item_type_id_leg_10\":\"metal-slug\",\"mascot_item_type_id_leg_1\":\"metal-slug\",\"avatar\":\"https://sleepercdn.com/uploads/227fe45a080c97ba3ee59ebd1dca80af.jpg\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":null,\"display_name\":\"Jcurtis44\",\"avatar\":\"694db09fd474fe0ab8d767b31dd093c2\"},{\"user_id\":\"76686532077305856\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":null,\"display_name\":\"KingGabe\",\"avatar\":\"nfl_cin\"},{\"user_id\":\"198540145396289536\",\"settings\":null,\"metadata\":{\"team_name\":\"Permian Panthers\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_11\":\"dancing\",\"mascot_message_emotion_leg_1\":\"idle_nervous\",\"mascot_item_type_id_leg_9\":\"skol\",\"mascot_item_type_id_leg_8\":\"skol\",\"mascot_item_type_id_leg_7\":\"skol\",\"mascot_item_type_id_leg_6\":\"skol\",\"mascot_item_type_id_leg_5\":\"skol\",\"mascot_item_type_id_leg_4\":\"skol\",\"mascot_item_type_id_leg_3\":\"skol\",\"mascot_item_type_id_leg_2\":\"skol\",\"mascot_item_type_id_leg_17\":\"skol\",\"mascot_item_type_id_leg_16\":\"skol\",\"mascot_item_type_id_leg_15\":\"skol\",\"mascot_item_type_id_leg_14\":\"skol\",\"mascot_item_type_id_leg_13\":\"skol\",\"mascot_item_type_id_leg_12\":\"skol\",\"mascot_item_type_id_leg_11\":\"skol\",\"mascot_item_type_id_leg_10\":\"skol\",\"mascot_item_type_id_leg_1\":\"skol\",\"avatar\":\"https://sleepercdn.com/uploads/1cc3333a55ab9a4feb58c7eb785ebadb.jpg\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"theoracleETS\",\"avatar\":\"c1891dffbc1262bc3663ef6eb920d8ae\"},{\"user_id\":\"202882046337490944\",\"settings\":null,\"metadata\":{\"team_name\":\"The FANTom Menace\",\"mention_pn\":\"on\",\"mascot_message_leg_4\":\"\",\"mascot_message_emotion_leg_6\":\"idle\",\"mascot_item_type_id_leg_9\":\"doge\",\"mascot_item_type_id_leg_8\":\"doge\",\"mascot_item_type_id_leg_7\":\"doge\",\"mascot_item_type_id_leg_6\":\"doge\",\"mascot_item_type_id_leg_17\":\"doge\",\"mascot_item_type_id_leg_16\":\"doge\",\"mascot_item_type_id_leg_15\":\"doge\",\"mascot_item_type_id_leg_14\":\"doge\",\"mascot_item_type_id_leg_13\":\"doge\",\"mascot_item_type_id_leg_12\":\"doge\",\"mascot_item_type_id_leg_11\":\"doge\",\"mascot_item_type_id_leg_10\":\"doge\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"weeknee\",\"avatar\":\"712105a5bab80482980a3f55d87fc612\"},{\"user_id\":\"202892038360801280\",\"settings\":null,\"metadata\":{\"user_message_pn\":\"off\",\"transaction_waiver\":\"on\",\"transaction_trade\":\"on\",\"transaction_free_agent\":\"on\",\"transaction_commissioner\":\"on\",\"team_name_update\":\"off\",\"player_nickname_update\":\"off\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_message\":\"off\",\"mascot_item_type_id_leg_9\":\"steel-man\",\"mascot_item_type_id_leg_8\":\"steel-man\",\"mascot_item_type_id_leg_7\":\"steel-man\",\"mascot_item_type_id_leg_6\":\"steel-man\",\"mascot_item_type_id_leg_5\":\"steel-man\",\"mascot_item_type_id_leg_4\":\"steel-man\",\"mascot_item_type_id_leg_3\":\"steel-man\",\"mascot_item_type_id_leg_2\":\"steel-man\",\"mascot_item_type_id_leg_17\":\"steel-man\",\"mascot_item_type_id_leg_16\":\"steel-man\",\"mascot_item_type_id_leg_15\":\"steel-man\",\"mascot_item_type_id_leg_14\":\"steel-man\",\"mascot_item_type_id_leg_13\":\"steel-man\",\"mascot_item_type_id_leg_12\":\"steel-man\",\"mascot_item_type_id_leg_11\":\"steel-man\",\"mascot_item_type_id_leg_10\":\"steel-man\",\"mascot_item_type_id_leg_1\":\"steel-man\",\"allow_pn\":\"off\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"solarpool\",\"avatar\":\"a71f864896ba28cbfaa4dc5df5b564e0\"},{\"user_id\":\"386377724614320128\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"panpan\",\"mascot_item_type_id_leg_8\":\"panpan\",\"mascot_item_type_id_leg_7\":\"panpan\",\"mascot_item_type_id_leg_6\":\"panpan\",\"mascot_item_type_id_leg_5\":\"panpan\",\"mascot_item_type_id_leg_4\":\"panpan\",\"mascot_item_type_id_leg_3\":\"panpan\",\"mascot_item_type_id_leg_2\":\"panpan\",\"mascot_item_type_id_leg_17\":\"panpan\",\"mascot_item_type_id_leg_16\":\"panpan\",\"mascot_item_type_id_leg_15\":\"panpan\",\"mascot_item_type_id_leg_14\":\"panpan\",\"mascot_item_type_id_leg_13\":\"panpan\",\"mascot_item_type_id_leg_12\":\"panpan\",\"mascot_item_type_id_leg_11\":\"panpan\",\"mascot_item_type_id_leg_10\":\"panpan\",\"mascot_item_type_id_leg_1\":\"panpan\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Billow23\",\"avatar\":\"4c36f6cc68ca5fb2daae149ee6bbee44\"},{\"user_id\":\"386383436639973376\",\"settings\":null,\"metadata\":{\"user_message_pn\":\"on\",\"transaction_waiver\":\"on\",\"transaction_trade\":\"on\",\"transaction_free_agent\":\"on\",\"transaction_commissioner\":\"off\",\"trade_block_pn\":\"on\",\"team_name_update\":\"off\",\"team_name\":\"Barbarians\",\"player_nickname_update\":\"off\",\"player_like_pn\":\"on\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_2\":\"action_hurt02\",\"mascot_message_emotion_leg_1\":\"action_hurt01\",\"mascot_message\":\"on\",\"mascot_item_type_id_leg_9\":\"trash\",\"mascot_item_type_id_leg_8\":\"trash\",\"mascot_item_type_id_leg_7\":\"trash\",\"mascot_item_type_id_leg_6\":\"trash\",\"mascot_item_type_id_leg_5\":\"trash\",\"mascot_item_type_id_leg_4\":\"trash\",\"mascot_item_type_id_leg_3\":\"trash\",\"mascot_item_type_id_leg_2\":\"trash\",\"mascot_item_type_id_leg_17\":\"trash\",\"mascot_item_type_id_leg_16\":\"trash\",\"mascot_item_type_id_leg_15\":\"trash\",\"mascot_item_type_id_leg_14\":\"trash\",\"mascot_item_type_id_leg_13\":\"trash\",\"mascot_item_type_id_leg_12\":\"trash\",\"mascot_item_type_id_leg_11\":\"trash\",\"mascot_item_type_id_leg_10\":\"trash\",\"mascot_item_type_id_leg_1\":\"trash\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"ABitterHomer\",\"avatar\":\"279bc69baf2cd8bfaadadb36a44e43fb\"},{\"user_id\":\"386571720443764736\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"panpan\",\"mascot_item_type_id_leg_8\":\"panpan\",\"mascot_item_type_id_leg_7\":\"panpan\",\"mascot_item_type_id_leg_6\":\"panpan\",\"mascot_item_type_id_leg_5\":\"panpan\",\"mascot_item_type_id_leg_4\":\"panpan\",\"mascot_item_type_id_leg_3\":\"panpan\",\"mascot_item_type_id_leg_2\":\"panpan\",\"mascot_item_type_id_leg_17\":\"panpan\",\"mascot_item_type_id_leg_16\":\"panpan\",\"mascot_item_type_id_leg_15\":\"panpan\",\"mascot_item_type_id_leg_14\":\"panpan\",\"mascot_item_type_id_leg_13\":\"panpan\",\"mascot_item_type_id_leg_12\":\"panpan\",\"mascot_item_type_id_leg_11\":\"panpan\",\"mascot_item_type_id_leg_10\":\"panpan\",\"mascot_item_type_id_leg_1\":\"panpan\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":true,\"is_bot\":false,\"display_name\":\"ZPMiller97\",\"avatar\":\"1d538540976713a2a93c687c112b5c70\"},{\"user_id\":\"386950378371207168\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_5\":\"taunting\",\"mascot_message_emotion_leg_4\":\"victory\",\"mascot_message_emotion_leg_3\":\"taunting\",\"mascot_item_type_id_leg_9\":\"monkey-king\",\"mascot_item_type_id_leg_8\":\"monkey-king\",\"mascot_item_type_id_leg_7\":\"monkey-king\",\"mascot_item_type_id_leg_6\":\"monkey-king\",\"mascot_item_type_id_leg_5\":\"monkey-king\",\"mascot_item_type_id_leg_4\":\"monkey-king\",\"mascot_item_type_id_leg_3\":\"monkey-king\",\"mascot_item_type_id_leg_2\":\"monkey-king\",\"mascot_item_type_id_leg_17\":\"monkey-king\",\"mascot_item_type_id_leg_16\":\"monkey-king\",\"mascot_item_type_id_leg_15\":\"monkey-king\",\"mascot_item_type_id_leg_14\":\"monkey-king\",\"mascot_item_type_id_leg_13\":\"monkey-king\",\"mascot_item_type_id_leg_12\":\"monkey-king\",\"mascot_item_type_id_leg_11\":\"monkey-king\",\"mascot_item_type_id_leg_10\":\"monkey-king\",\"mascot_item_type_id_leg_1\":\"monkey-king\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Flipadelphia05\",\"avatar\":\"73d59b8362cd0da4d3f69354c4bb1272\"},{\"user_id\":\"386976568364306432\",\"settings\":null,\"metadata\":{\"team_name\":\"Hocka Flocka\",\"mention_pn\":\"on\",\"mascot_message_leg_4\":\"Ez\",\"mascot_message_emotion_leg_4\":\"idle\",\"mascot_item_type_id_leg_9\":\"larry-bird\",\"mascot_item_type_id_leg_8\":\"larry-bird\",\"mascot_item_type_id_leg_7\":\"larry-bird\",\"mascot_item_type_id_leg_6\":\"larry-bird\",\"mascot_item_type_id_leg_5\":\"larry-bird\",\"mascot_item_type_id_leg_4\":\"larry-bird\",\"mascot_item_type_id_leg_3\":\"larry-bird\",\"mascot_item_type_id_leg_2\":\"larry-bird\",\"mascot_item_type_id_leg_17\":\"larry-bird\",\"mascot_item_type_id_leg_16\":\"larry-bird\",\"mascot_item_type_id_leg_15\":\"larry-bird\",\"mascot_item_type_id_leg_14\":\"larry-bird\",\"mascot_item_type_id_leg_13\":\"larry-bird\",\"mascot_item_type_id_leg_12\":\"larry-bird\",\"mascot_item_type_id_leg_11\":\"larry-bird\",\"mascot_item_type_id_leg_10\":\"larry-bird\",\"mascot_item_type_id_leg_1\":\"larry-bird\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"TwoFrames\",\"avatar\":\"712105a5bab80482980a3f55d87fc612\"},{\"user_id\":\"387070108625039360\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"taco\",\"mascot_item_type_id_leg_8\":\"taco\",\"mascot_item_type_id_leg_7\":\"taco\",\"mascot_item_type_id_leg_6\":\"taco\",\"mascot_item_type_id_leg_5\":\"taco\",\"mascot_item_type_id_leg_4\":\"taco\",\"mascot_item_type_id_leg_3\":\"taco\",\"mascot_item_type_id_leg_2\":\"taco\",\"mascot_item_type_id_leg_17\":\"taco\",\"mascot_item_type_id_leg_16\":\"taco\",\"mascot_item_type_id_leg_15\":\"taco\",\"mascot_item_type_id_leg_14\":\"taco\",\"mascot_item_type_id_leg_13\":\"taco\",\"mascot_item_type_id_leg_12\":\"taco\",\"mascot_item_type_id_leg_11\":\"taco\",\"mascot_item_type_id_leg_10\":\"taco\",\"mascot_item_type_id_leg_1\":\"taco\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"JMLarkin\",\"avatar\":\"1d538540976713a2a93c687c112b5c70\"},{\"user_id\":\"401485903224193024\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_item_type_id_leg_9\":\"da-dolph\",\"mascot_item_type_id_leg_8\":\"da-dolph\",\"mascot_item_type_id_leg_7\":\"da-dolph\",\"mascot_item_type_id_leg_6\":\"da-dolph\",\"mascot_item_type_id_leg_5\":\"da-dolph\",\"mascot_item_type_id_leg_4\":\"da-dolph\",\"mascot_item_type_id_leg_3\":\"da-dolph\",\"mascot_item_type_id_leg_2\":\"da-dolph\",\"mascot_item_type_id_leg_17\":\"da-dolph\",\"mascot_item_type_id_leg_16\":\"da-dolph\",\"mascot_item_type_id_leg_15\":\"da-dolph\",\"mascot_item_type_id_leg_14\":\"da-dolph\",\"mascot_item_type_id_leg_13\":\"da-dolph\",\"mascot_item_type_id_leg_12\":\"da-dolph\",\"mascot_item_type_id_leg_11\":\"da-dolph\",\"mascot_item_type_id_leg_10\":\"da-dolph\",\"mascot_item_type_id_leg_1\":\"da-dolph\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"jaydk\",\"avatar\":\"6e6ccf02bcac09ace27f4f4076d0a8c3\"},{\"user_id\":\"409797051455393792\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_item_type_id_leg_9\":\"lion-san\",\"mascot_item_type_id_leg_8\":\"lion-san\",\"mascot_item_type_id_leg_7\":\"lion-san\",\"mascot_item_type_id_leg_6\":\"lion-san\",\"mascot_item_type_id_leg_5\":\"lion-san\",\"mascot_item_type_id_leg_4\":\"lion-san\",\"mascot_item_type_id_leg_3\":\"lion-san\",\"mascot_item_type_id_leg_2\":\"lion-san\",\"mascot_item_type_id_leg_17\":\"lion-san\",\"mascot_item_type_id_leg_16\":\"lion-san\",\"mascot_item_type_id_leg_15\":\"lion-san\",\"mascot_item_type_id_leg_14\":\"lion-san\",\"mascot_item_type_id_leg_13\":\"lion-san\",\"mascot_item_type_id_leg_12\":\"lion-san\",\"mascot_item_type_id_leg_11\":\"lion-san\",\"mascot_item_type_id_leg_10\":\"lion-san\",\"mascot_item_type_id_leg_1\":\"lion-san\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"sox05syd\",\"avatar\":\"db7b742f6549b03367eb48ed1e328e5e\"}]"),
- date = structure(1606598041, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 3.3e-05,
- connect = 3.7e-05, pretransfer = 0.000147, starttransfer = 0.337301,
- total = 0.337439)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/633501761776197632/users.R b/tests/testthat/api.sleeper.app/v1/league/633501761776197632/users.R
deleted file mode 100644
index dd752721..00000000
--- a/tests/testthat/api.sleeper.app/v1/league/633501761776197632/users.R
+++ /dev/null
@@ -1,29 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/league/633501761776197632/users",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:13:37 GMT",
- `content-type` = "application/json; charset=utf-8", `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "e61b874ad447a0446c91a4c4af875a75",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `cf-cache-status` = "MISS", `cf-request-id` = "06b24d59900000ca4b84173000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- vary = "Accept-Encoding", server = "cloudflare", `cf-ray` = "5f971808ed3aca4b-YUL",
- `content-encoding` = "gzip"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:13:37 GMT",
- `content-type` = "application/json; charset=utf-8",
- `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "e61b874ad447a0446c91a4c4af875a75",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `cf-cache-status` = "MISS", `cf-request-id` = "06b24d59900000ca4b84173000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- vary = "Accept-Encoding", server = "cloudflare",
- `cf-ray` = "5f971808ed3aca4b-YUL", `content-encoding` = "gzip"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("[{\"user_id\":\"202892038360801280\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"633501761776197632\",\"is_owner\":true,\"is_bot\":false,\"display_name\":\"solarpool\",\"avatar\":\"a71f864896ba28cbfaa4dc5df5b564e0\"}]"),
- date = structure(1606598017, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 4e-05,
- connect = 4.5e-05, pretransfer = 0.000153, starttransfer = 0.326408,
- total = 0.326515)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/players/nfl/trending/add-485def.R b/tests/testthat/api.sleeper.app/v1/players/nfl/trending/add-485def.R
deleted file mode 100644
index 64243051..00000000
--- a/tests/testthat/api.sleeper.app/v1/players/nfl/trending/add-485def.R
+++ /dev/null
@@ -1,29 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/players/nfl/trending/add?lookback_hours=48&limit=10",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:14:53 GMT",
- `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
- `cache-control` = "public, s-maxage=600", `x-request-id` = "b1d8d2d6bde2e557504263d0249ef3b4",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "HIT",
- age = "396", `cf-request-id` = "06b24e825c0000ca4bb53a1000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f9719e3cad7ca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:14:53 GMT",
- `content-type` = "application/json; charset=utf-8",
- vary = "Accept-Encoding", `cache-control` = "public, s-maxage=600",
- `x-request-id` = "b1d8d2d6bde2e557504263d0249ef3b4",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "HIT",
- age = "396", `cf-request-id` = "06b24e825c0000ca4bb53a1000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f9719e3cad7ca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("[{\"player_id\":\"4187\",\"count\":270285},{\"player_id\":\"6156\",\"count\":142272},{\"player_id\":\"1169\",\"count\":129162},{\"player_id\":\"5100\",\"count\":84788},{\"player_id\":\"4381\",\"count\":64578},{\"player_id\":\"333\",\"count\":62680},{\"player_id\":\"NYG\",\"count\":57945},{\"player_id\":\"4147\",\"count\":52537},{\"player_id\":\"3976\",\"count\":50102},{\"player_id\":\"943\",\"count\":45866}]"),
- date = structure(1606598093, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 3.9e-05,
- connect = 4.3e-05, pretransfer = 0.00014, starttransfer = 0.017559,
- total = 0.01761)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/user/202892038360801280/leagues/nfl/2020.R b/tests/testthat/api.sleeper.app/v1/user/202892038360801280/leagues/nfl/2020.R
deleted file mode 100644
index 828cdca2..00000000
--- a/tests/testthat/api.sleeper.app/v1/user/202892038360801280/leagues/nfl/2020.R
+++ /dev/null
@@ -1,30 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/user/202892038360801280/leagues/nfl/2020",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:13:37 GMT",
- `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
- `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "a3aee1bd72de5686c00ca1b19fc4f9d7",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d58110000ca4b7691e000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f9718068fc1ca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:13:37 GMT",
- `content-type` = "application/json; charset=utf-8",
- vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "a3aee1bd72de5686c00ca1b19fc4f9d7",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d58110000ca4b7691e000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f9718068fc1ca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("[{\"total_rosters\":4,\"status\":\"pre_draft\",\"sport\":\"nfl\",\"shard\":365,\"settings\":{\"max_keepers\":1,\"draft_rounds\":4,\"trade_review_days\":2,\"reserve_allow_dnr\":0,\"capacity_override\":1,\"pick_trading\":1,\"taxi_years\":0,\"taxi_allow_vets\":1,\"last_report\":13,\"disable_adds\":0,\"waiver_type\":2,\"bench_lock\":0,\"reserve_allow_sus\":1,\"type\":0,\"waiver_clear_days\":2,\"waiver_day_of_week\":2,\"start_week\":4,\"playoff_teams\":4,\"num_teams\":4,\"reserve_slots\":2,\"daily_waivers_hour\":0,\"waiver_budget\":200,\"reserve_allow_out\":1,\"offseason_adds\":0,\"daily_waivers\":0,\"playoff_week_start\":14,\"daily_waivers_days\":1093,\"league_average_match\":0,\"leg\":10,\"trade_deadline\":10,\"reserve_allow_doubtful\":0,\"taxi_deadline\":0,\"reserve_allow_na\":0,\"taxi_slots\":4,\"playoff_type\":0},\"season_type\":\"regular\",\"season\":\"2020\",\"scoring_settings\":{\"def_pr_yd\":0.10000000149011612,\"yds_allow_400_449\":1.0,\"fg_ret_yd\":0.10000000149011612,\"yds_allow_550p\":1.0,\"yds_allow_100_199\":1.0,\"tkl\":1.0,\"pass_2pt\":2.0,\"kr_yd\":0.10000000149011612,\"tkl_loss\":1.0,\"pass_int\":-4.0,\"fgmiss\":-1.0,\"fgmiss_50p\":0.0,\"rec_yd\":0.10000000149011612,\"idp_safe\":1.0,\"fgm_yds\":0.10000000149011612,\"blk_kick_ret_yd\":0.10000000149011612,\"xpmiss\":-1.0,\"pts_allow\":-0.10000000149011612,\"def_pr_td\":6.0,\"fgm_30_39\":0.10000000149011612,\"sack_yd\":0.10000000149011612,\"yds_allow_450_499\":1.0,\"blk_kick\":2.0,\"pts_allow_7_13\":4.0,\"idp_ff\":1.0,\"bonus_rush_yd_100\":1.0,\"ff\":1.0,\"rec_30_39\":1.0,\"fgm_20_29\":0.10000000149011612,\"def_kr_yd\":0.10000000149011612,\"bonus_rush_rec_yd_200\":1.0,\"pass_fd\":1.0,\"fgm_40_49\":0.10000000149011612,\"pts_allow_1_6\":7.0,\"bonus_rush_rec_yd_100\":1.0,\"yds_allow_300_349\":1.0,\"idp_int_ret_yd\":0.009999999776482582,\"def_st_tkl_solo\":1.0,\"int_ret_yd\":0.10000000149011612,\"st_fum_rec\":1.0,\"def_pass_def\":1.0,\"pass_sack\":-2.0,\"yds_allow_500_549\":1.0,\"def_st_ff\":1.0,\"st_ff\":1.0,\"rush_40p\":1.0,\"pass_td_40p\":1.0,\"idp_def_td\":1.0,\"bonus_rec_te\":1.0,\"bonus_rec_rb\":0.5,\"yds_allow_0_100\":1.0,\"yds_allow_350_399\":1.0,\"bonus_pass_cmp_25\":1.0,\"pts_allow_28_34\":-0.5,\"pass_cmp\":1.0,\"idp_blk_kick\":1.0,\"idp_int\":1.0,\"idp_qb_hit\":1.0,\"fgm_50p\":1.0,\"rec_20_29\":1.0,\"fum_rec\":2.0,\"idp_tkl\":1.0,\"rec_0_4\":0.10000000149011612,\"bonus_rec_yd_200\":1.0,\"qb_hit\":1.0,\"def_td\":6.0,\"fgm_0_19\":0.10000000149011612,\"rush_fd\":1.0,\"bonus_pass_yd_300\":1.0,\"idp_pass_def\":1.0,\"idp_tkl_loss\":1.0,\"st_tkl_solo\":1.0,\"tkl_solo\":1.0,\"pr_td\":6.0,\"int\":2.0,\"pass_att\":1.0,\"pts_allow_0\":10.0,\"bonus_rush_yd_200\":1.0,\"pts_allow_21_27\":1.0,\"idp_fum_rec\":1.0,\"pass_inc\":-1.0,\"rec_2pt\":2.0,\"rec\":1.0,\"pass_cmp_40p\":1.0,\"fgmiss_30_39\":-1.5,\"xpm\":1.0,\"tkl_ast\":1.0,\"idp_sack\":1.0,\"st_td\":6.0,\"kr_td\":6.0,\"def_st_fum_rec\":1.0,\"def_st_td\":6.0,\"bonus_rush_att_20\":1.0,\"sack\":1.0,\"idp_tkl_ast\":1.0,\"rec_5_9\":0.10000000149011612,\"rush_att\":0.10000000149011612,\"idp_tkl_solo\":1.0,\"fgm\":0.10000000149011612,\"rush_2pt\":2.0,\"fgmiss_40_49\":-1.0,\"rec_td\":6.0,\"rush_td_40p\":1.0,\"rec_td_40p\":1.0,\"pts_allow_35p\":-1.0,\"pts_allow_14_20\":1.0,\"rec_10_19\":0.5,\"rush_yd\":0.10000000149011612,\"pr_yd\":0.10000000149011612,\"bonus_pass_yd_400\":1.0,\"rec_40p\":1.0,\"fum_ret_yd\":0.10000000149011612,\"idp_fum_ret_yd\":0.009999999776482582,\"fgm_yds_over_30\":0.0,\"pass_int_td\":-2.0,\"pass_yd\":0.03999999910593033,\"pass_td\":6.0,\"rush_td\":6.0,\"bonus_rec_wr\":0.5,\"fgmiss_0_19\":-3.0,\"yds_allow\":-0.009999999776482582,\"bonus_rec_yd_100\":1.0,\"def_2pt\":1.0,\"def_kr_td\":6.0,\"fum_lost\":-2.0,\"yds_allow_200_299\":1.0,\"fgmiss_20_29\":-1.5,\"fum\":-1.0,\"safe\":2.0,\"rec_fd\":1.0},\"roster_positions\":[\"QB\",\"RB\",\"WR\",\"TE\",\"FLEX\",\"WRRB_FLEX\",\"REC_FLEX\",\"SUPER_FLEX\",\"IDP_FLEX\",\"K\",\"DEF\",\"DL\",\"LB\",\"DB\",\"BN\"],\"previous_league_id\":\"473157267315748864\",\"name\":\"z_dynastyprocess-test\",\"metadata\":null,\"loser_bracket_id\":null,\"league_id\":\"633501761776197632\",\"last_transaction_id\":null,\"last_read_id\":\"633501761776197632\",\"last_pinned_message_id\":null,\"last_message_time\":1605401099203,\"last_message_text_map\":null,\"last_message_text\":null,\"last_message_id\":\"633501761776197632\",\"last_message_attachment\":null,\"last_author_is_bot\":null,\"last_author_id\":null,\"last_author_display_name\":null,\"last_author_avatar\":null,\"group_id\":null,\"draft_id\":\"633501761776197633\",\"display_order\":0,\"company_id\":null,\"bracket_id\":null,\"avatar\":null},{\"total_rosters\":12,\"status\":\"in_season\",\"sport\":\"nfl\",\"shard\":62,\"settings\":{\"max_keepers\":1,\"draft_rounds\":4,\"trade_review_days\":2,\"reserve_allow_dnr\":1,\"capacity_override\":0,\"pick_trading\":1,\"taxi_years\":1,\"taxi_allow_vets\":0,\"last_report\":11,\"disable_adds\":0,\"waiver_type\":2,\"bench_lock\":1,\"reserve_allow_sus\":1,\"type\":2,\"reserve_allow_cov\":1,\"waiver_clear_days\":1,\"daily_waivers_last_ran\":27,\"waiver_day_of_week\":2,\"start_week\":1,\"playoff_teams\":6,\"num_teams\":12,\"reserve_slots\":6,\"playoff_round_type\":0,\"daily_waivers_hour\":1,\"waiver_budget\":200,\"reserve_allow_out\":1,\"offseason_adds\":1,\"last_scored_leg\":11,\"playoff_seed_type\":0,\"daily_waivers\":0,\"playoff_week_start\":14,\"daily_waivers_days\":2075,\"league_average_match\":0,\"leg\":12,\"trade_deadline\":13,\"reserve_allow_doubtful\":0,\"taxi_deadline\":0,\"reserve_allow_na\":0,\"taxi_slots\":3,\"playoff_type\":1},\"season_type\":\"regular\",\"season\":\"2020\",\"scoring_settings\":{\"pass_2pt\":2.0,\"pass_int\":-2.0,\"fgmiss\":0.0,\"rec_yd\":0.10000000149011612,\"xpmiss\":0.0,\"def_pr_td\":0.0,\"fgm_30_39\":0.0,\"blk_kick\":2.0,\"pts_allow_7_13\":0.0,\"ff\":1.0,\"fgm_20_29\":0.0,\"fgm_40_49\":0.0,\"pts_allow_1_6\":0.0,\"st_fum_rec\":1.0,\"def_st_ff\":1.0,\"st_ff\":1.0,\"pts_allow_28_34\":0.0,\"fgm_50p\":0.0,\"fum_rec\":2.0,\"def_td\":6.0,\"fgm_0_19\":0.0,\"int\":2.0,\"pts_allow_0\":0.0,\"pts_allow_21_27\":0.0,\"rec_2pt\":2.0,\"rec\":0.5,\"xpm\":0.0,\"st_td\":6.0,\"def_st_fum_rec\":1.0,\"def_st_td\":6.0,\"sack\":1.0,\"fum_rec_td\":6.0,\"idp_tkl_solo\":0.0,\"rush_2pt\":2.0,\"rec_td\":6.0,\"pts_allow_35p\":0.0,\"pts_allow_14_20\":0.0,\"rush_yd\":0.10000000149011612,\"pass_yd\":0.03999999910593033,\"pass_td\":4.0,\"rush_td\":6.0,\"def_kr_td\":0.0,\"fum_lost\":-2.0,\"fum\":0.0,\"safe\":2.0},\"roster_positions\":[\"QB\",\"RB\",\"RB\",\"WR\",\"WR\",\"TE\",\"FLEX\",\"FLEX\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\"],\"previous_league_id\":\"386236959468675072\",\"name\":\"The JanMichaelLarkin Dynasty League\",\"metadata\":null,\"loser_bracket_id\":null,\"league_id\":\"522458773317046272\",\"last_transaction_id\":638470129654513664,\"last_read_id\":\"638468193404411904\",\"last_pinned_message_id\":null,\"last_message_time\":1606592976839,\"last_message_text_map\":{},\"last_message_text\":\"Jcurtis44 put a player on the trade block.\",\"last_message_id\":\"638500858916569088\",\"last_message_attachment\":{\"type\":\"trade_block_player\",\"data\":{\"roster\":{\"taxi\":[\"6826\",\"7082\"],\"starters\":[\"4017\",\"4199\",\"4098\",\"1426\",\"4037\",\"5022\",\"2197\",\"2319\"],\"settings\":{\"wins\":7,\"waiver_position\":9,\"waiver_budget_used\":111,\"total_moves\":0,\"ties\":0,\"ppts_decimal\":40,\"ppts\":1338,\"losses\":4,\"fpts_decimal\":30,\"fpts_against_decimal\":14,\"fpts_against\":1093,\"fpts\":1052},\"roster_id\":1,\"reserve\":[\"2025\",\"289\",\"344\",\"3503\",\"4866\"],\"players\":[\"1110\",\"1339\",\"1426\",\"1825\",\"2025\",\"2197\",\"2319\",\"232\",\"2822\",\"289\",\"344\",\"3503\",\"4017\",\"4036\",\"4037\",\"4089\",\"4098\",\"4137\",\"4144\",\"4149\",\"4171\",\"4199\",\"421\",\"4866\",\"5022\",\"5068\",\"5965\",\"6001\",\"6068\",\"6149\",\"6826\",\"7082\"],\"metadata\":{\"record\":\"LWWWWLLWLWW\",\"p_nick_956\":\"2019 Chiefs Starting RB\",\"p_nick_574\":\"\",\"p_nick_5068\":\"\",\"p_nick_5007\":\"\",\"p_nick_4993\":\"\",\"p_nick_4866\":\"\",\"p_nick_4863\":\"\",\"p_nick_4454\":\"\",\"p_nick_4273\":\"Bell Cow\",\"p_nick_4197\":\"\",\"p_nick_4171\":\"\",\"p_nick_4149\":\"\",\"p_nick_4144\":\"\",\"p_nick_4089\":\"\",\"p_nick_4068\":\"High Point Monster\",\"p_nick_4037\":\"\",\"p_nick_3976\":\"Biscuit\",\"p_nick_3969\":\"Fat, Lazy and Disrespectful\",\"p_nick_3208\":\"\",\"p_nick_1825\":\"\",\"p_nick_1706\":\"\",\"p_nick_1426\":\"\",\"p_nick_1339\":\"\",\"p_nick_1110\":\"\",\"allow_pn_scoring\":\"off\",\"allow_pn_news\":\"on\"},\"keepers\":null,\"co_owners\":null,\"bucket\":0},\"player\":{\"team\":\"NYG\",\"sport\":\"nfl\",\"position\":\"WR\",\"player_id\":\"6149\",\"number\":86,\"metadata\":null,\"last_name\":\"Slayton\",\"injury_status\":null,\"hashtag\":null,\"first_name\":\"Darius\",\"fantasy_positions\":[\"WR\"],\"depth_chart_position\":\"LWR\",\"depth_chart_order\":1},\"owner\":{\"settings\":null,\"metadata\":{\"team_name\":\"Fake News\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_9\":\"dancing\",\"mascot_message_emotion_leg_3\":\"victory\",\"mascot_item_type_id_leg_9\":\"metal-slug\",\"mascot_item_type_id_leg_8\":\"smoothie\",\"mascot_item_type_id_leg_7\":\"smoothie\",\"mascot_item_type_id_leg_6\":\"smoothie\",\"mascot_item_type_id_leg_5\":\"smoothie\",\"mascot_item_type_id_leg_4\":\"smoothie\",\"mascot_item_type_id_leg_3\":\"smoothie\",\"mascot_item_type_id_leg_2\":\"metal-slug\",\"mascot_item_type_id_leg_17\":\"metal-slug\",\"mascot_item_type_id_leg_16\":\"metal-slug\",\"mascot_item_type_id_leg_15\":\"metal-slug\",\"mascot_item_type_id_leg_14\":\"metal-slug\",\"mascot_item_type_id_leg_13\":\"metal-slug\",\"mascot_item_type_id_leg_12\":\"metal-slug\",\"mascot_item_type_id_leg_11\":\"metal-slug\",\"mascot_item_type_id_leg_10\":\"metal-slug\",\"mascot_item_type_id_leg_1\":\"metal-slug\",\"avatar\":\"https://sleepercdn.com/uploads/227fe45a080c97ba3ee59ebd1dca80af.jpg\",\"allow_pn\":\"on\"},\"is_owner\":false,\"is_bot\":null,\"display_name\":\"Jcurtis44\",\"avatar\":\"694db09fd474fe0ab8d767b31dd093c2\"}}},\"last_author_is_bot\":true,\"last_author_id\":\"166666666666666666\",\"last_author_display_name\":\"sys\",\"last_author_avatar\":null,\"group_id\":null,\"draft_id\":\"522458773321240576\",\"display_order\":0,\"company_id\":null,\"bracket_id\":null,\"avatar\":\"6405a606ed8554f6728a38bd48b9a64d\"},{\"total_rosters\":12,\"status\":\"in_season\",\"sport\":\"nfl\",\"shard\":332,\"settings\":{\"max_keepers\":1,\"draft_rounds\":4,\"trade_review_days\":0,\"reserve_allow_dnr\":1,\"capacity_override\":1,\"pick_trading\":1,\"taxi_years\":1,\"taxi_allow_vets\":0,\"last_report\":11,\"disable_adds\":0,\"waiver_type\":2,\"bench_lock\":0,\"reserve_allow_sus\":1,\"type\":2,\"reserve_allow_cov\":1,\"waiver_clear_days\":2,\"daily_waivers_last_ran\":28,\"waiver_day_of_week\":2,\"start_week\":1,\"playoff_teams\":4,\"num_teams\":12,\"reserve_slots\":10,\"playoff_round_type\":2,\"daily_waivers_hour\":12,\"waiver_budget\":200,\"reserve_allow_out\":1,\"offseason_adds\":1,\"last_scored_leg\":11,\"playoff_seed_type\":0,\"daily_waivers\":1,\"playoff_week_start\":14,\"daily_waivers_days\":567,\"league_average_match\":0,\"leg\":12,\"trade_deadline\":13,\"reserve_allow_doubtful\":0,\"taxi_deadline\":4,\"reserve_allow_na\":0,\"taxi_slots\":5,\"playoff_type\":0},\"season_type\":\"regular\",\"season\":\"2020\",\"scoring_settings\":{\"pass_2pt\":2.0,\"pass_int\":-1.0,\"fgmiss\":-1.0,\"rec_yd\":0.10000000149011612,\"xpmiss\":-1.0,\"fgm_30_39\":3.0,\"blk_kick\":2.0,\"pts_allow_7_13\":4.0,\"ff\":1.0,\"fgm_20_29\":3.0,\"fgm_40_49\":4.0,\"pts_allow_1_6\":7.0,\"st_fum_rec\":1.0,\"def_st_ff\":1.0,\"st_ff\":1.0,\"pts_allow_28_34\":-1.0,\"fgm_50p\":5.0,\"fum_rec\":2.0,\"def_td\":6.0,\"fgm_0_19\":3.0,\"int\":2.0,\"pts_allow_0\":10.0,\"pts_allow_21_27\":0.0,\"rec_2pt\":2.0,\"rec\":0.5,\"xpm\":1.0,\"st_td\":6.0,\"def_st_fum_rec\":1.0,\"def_st_td\":6.0,\"sack\":1.0,\"fum_rec_td\":6.0,\"rush_2pt\":2.0,\"rec_td\":6.0,\"pts_allow_35p\":-4.0,\"pts_allow_14_20\":1.0,\"rush_yd\":0.10000000149011612,\"pass_yd\":0.03999999910593033,\"pass_td\":4.0,\"rush_td\":6.0,\"fum_lost\":-2.0,\"fum\":-1.0,\"safe\":2.0},\"roster_positions\":[\"QB\",\"RB\",\"RB\",\"WR\",\"WR\",\"WR\",\"TE\",\"FLEX\",\"FLEX\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\"],\"previous_league_id\":\"464109311174373376\",\"name\":\"DLP Dynasty League\",\"metadata\":null,\"loser_bracket_id\":null,\"league_id\":\"521379020332068864\",\"last_transaction_id\":636941330404167680,\"last_read_id\":\"638457540388151296\",\"last_pinned_message_id\":null,\"last_message_time\":1606582648897,\"last_message_text_map\":{},\"last_message_text\":\"Yeah they’ll count toward this week if played on Tuesday. But I’ll be gun shy about waiting to play any of them.\",\"last_message_id\":\"638457540388151296\",\"last_message_attachment\":null,\"last_author_is_bot\":false,\"last_author_id\":\"464108705281994752\",\"last_author_display_name\":\"silentclock\",\"last_author_avatar\":null,\"group_id\":null,\"draft_id\":\"521379020332068865\",\"display_order\":0,\"company_id\":null,\"bracket_id\":null,\"avatar\":null}]"),
- date = structure(1606598017, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 4.5e-05,
- connect = 4.8e-05, pretransfer = 0.000149, starttransfer = 0.32642,
- total = 0.326582)), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/user/solarpool.R b/tests/testthat/api.sleeper.app/v1/user/solarpool.R
deleted file mode 100644
index 29ef5f4b..00000000
--- a/tests/testthat/api.sleeper.app/v1/user/solarpool.R
+++ /dev/null
@@ -1,31 +0,0 @@
-structure(list(url = "https://api.sleeper.app/v1/user/solarpool",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:13:36 GMT",
- `content-type` = "application/json; charset=utf-8", `set-cookie` = "REDACTED",
- vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "ef85e3aeeca7642f71acc220e7f030e9",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d56950000ca4bb406e000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f9718042b0fca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:13:36 GMT",
- `content-type` = "application/json; charset=utf-8",
- `set-cookie` = "REDACTED", vary = "Accept-Encoding",
- `cache-control` = "max-age=0, private, must-revalidate",
- `x-request-id` = "ef85e3aeeca7642f71acc220e7f030e9",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "MISS",
- `cf-request-id` = "06b24d56950000ca4bb406e000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f9718042b0fca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("{\"verification\":null,\"username\":\"solarpool\",\"user_id\":\"202892038360801280\",\"token\":null,\"solicitable\":null,\"real_name\":null,\"phone\":null,\"pending\":null,\"notifications\":null,\"is_bot\":false,\"email\":null,\"display_name\":\"solarpool\",\"deleted\":null,\"data_updated\":null,\"currencies\":null,\"created\":null,\"cookies\":null,\"avatar\":\"a71f864896ba28cbfaa4dc5df5b564e0\"}"),
- date = structure(1606598016, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 0.043787,
- connect = 0.044972, pretransfer = 0.05321, starttransfer = 0.38583,
- total = 0.386008)), class = "response")
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-3f1f51.R b/tests/testthat/flea/api/FetchLeagueBoxscore-3f1f51.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-3f1f51.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-3f1f51.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-481fcd.R b/tests/testthat/flea/api/FetchLeagueBoxscore-481fcd.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-481fcd.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-481fcd.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-8909df.R b/tests/testthat/flea/api/FetchLeagueBoxscore-8909df.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-8909df.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-8909df.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-948c4c.R b/tests/testthat/flea/api/FetchLeagueBoxscore-948c4c.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-948c4c.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-948c4c.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-9e98ce.R b/tests/testthat/flea/api/FetchLeagueBoxscore-9e98ce.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-9e98ce.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-9e98ce.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-a16449.R b/tests/testthat/flea/api/FetchLeagueBoxscore-a16449.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-a16449.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-a16449.R
diff --git a/tests/testthat/flea/api/FetchLeagueBoxscore-d3c59c.R b/tests/testthat/flea/api/FetchLeagueBoxscore-d3c59c.R
new file mode 100644
index 00000000..3494d300
--- /dev/null
+++ b/tests/testthat/flea/api/FetchLeagueBoxscore-d3c59c.R
@@ -0,0 +1,34 @@
+structure(list(
+ url = "https://www.fleaflicker.com/api/FetchLeagueBoxscore?sport=NFL&league_id=206154&fantasy_game_id=46301923&scoring_period=5",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:09:34 GMT",
+ `content-type` = "application/json;charset=utf-8", vary = "accept-encoding",
+ `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:09:34 GMT",
+ `content-type` = "application/json;charset=utf-8",
+ vary = "accept-encoding", `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"game\":{\"id\":\"46301923\",\"away\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"recordOverall\":{\"wins\":7,\"losses\":4,\"winPercentage\":{\"value\":0.6363636,\"formatted\":\".636\"},\"rank\":5,\"formatted\":\"7-4\"},\"recordDivision\":{\"wins\":4,\"winPercentage\":{\"value\":1.0,\"formatted\":\"1.000\"},\"rank\":2,\"formatted\":\"4-0\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":6,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2398.73,\"formatted\":\"2,398.73\"},\"pointsAgainst\":{\"value\":2183.25,\"formatted\":\"2,183.25\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"formatted\":\"$0\"},\"newItemCounts\":{\"activityUnread\":2},\"initials\":\"WD\"},\"home\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"recordOverall\":{\"wins\":2,\"losses\":9,\"winPercentage\":{\"value\":0.18181819,\"formatted\":\".182\"},\"rank\":16,\"formatted\":\"2-9\"},\"recordDivision\":{\"wins\":1,\"losses\":3,\"winPercentage\":{\"value\":0.25,\"formatted\":\".250\"},\"rank\":4,\"formatted\":\"1-3\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":16,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1752.71,\"formatted\":\"1,752.71\"},\"pointsAgainst\":{\"value\":1969.58,\"formatted\":\"1,969.58\"},\"streak\":{\"value\":-5.0,\"formatted\":\"L5\"},\"waiverAcquisitionBudget\":{\"value\":66.0,\"formatted\":\"$66\"},\"newItemCounts\":{\"activityUnread\":255},\"initials\":\"TC\"},\"awayScore\":{\"score\":{\"value\":206.65001,\"formatted\":\"206.65\"}},\"homeScore\":{\"score\":{\"value\":161.65,\"formatted\":\"161.65\"}},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\",\"isFinalScore\":true},\"lineups\":[{\"group\":\"START\",\"slots\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"min\":1,\"max\":3,\"start\":1,\"colors\":[\"DRAFT_BOARD_RED\"]},\"away\":{\"proPlayer\":{\"id\":13775,\"nameFull\":\"Lamar Jackson\",\"nameShort\":\"L. Jackson\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13775.png\",\"nflByeWeek\":7,\"nameFirst\":\"Lamar\",\"nameLast\":\"Jackson\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":180.0,\"formatted\":\"180\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"pointsActual\":{\"value\":13.5,\"formatted\":\"13.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":13.5,\"formatted\":\"13.5\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":180.0,\"formatted\":\"180\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":16,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":95,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":8,\"formatted\":\"QB8\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12894,\"nameFull\":\"Patrick Mahomes\",\"nameShort\":\"P. Mahomes\",\"proTeamAbbreviation\":\"KC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12894.png\",\"nflByeWeek\":10,\"nameFirst\":\"Patrick\",\"nameLast\":\"Mahomes\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":340.0,\"formatted\":\"340\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}}],\"pointsActual\":{\"value\":32.7,\"formatted\":\"32.7\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":32.7,\"formatted\":\"32.7\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":340.0,\"formatted\":\"340\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":3,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":3,\"formatted\":\"3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":38,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":1,\"formatted\":\"QB1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_RED\"]},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"away\":{\"proPlayer\":{\"id\":12951,\"nameFull\":\"James Conner\",\"nameShort\":\"J. Conner\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12951.png\",\"nameFirst\":\"James\",\"nameLast\":\"Conner\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":44.0,\"formatted\":\"44\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":19.0,\"formatted\":\"19\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":17.3,\"formatted\":\"17.3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":17.3,\"formatted\":\"17.3\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":44.0,\"formatted\":\"44\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":19.0,\"formatted\":\"19\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":62,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":13,\"formatted\":\"13\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":23,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":14,\"formatted\":\"RB14\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":9410,\"nameFull\":\"Kyle Juszczyk\",\"nameShort\":\"K. Juszczyk\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9410.png\",\"nflByeWeek\":11,\"nameFirst\":\"Kyle\",\"nameLast\":\"Juszczyk\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":11.0,\"formatted\":\"11\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":8.1,\"formatted\":\"8.1\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.1,\"formatted\":\"8.1\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":11.0,\"formatted\":\"11\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":416,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":71,\"formatted\":\"71\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":321,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":100,\"formatted\":\"RB100\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\"]},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"away\":{\"proPlayer\":{\"id\":13900,\"nameFull\":\"Nyheim Hines\",\"nameShort\":\"N. Hines\",\"proTeamAbbreviation\":\"IND\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13900.png\",\"nflByeWeek\":7,\"nameFirst\":\"Nyheim\",\"nameLast\":\"Hines\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6227,\"away\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"home\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":8.0,\"formatted\":\"8\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"2/4\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":22.0,\"formatted\":\"22\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.85,\"formatted\":\"4.85\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.85,\"formatted\":\"4.85\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":8.0,\"formatted\":\"8\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"2/4\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":22.0,\"formatted\":\"22\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":102,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":22,\"formatted\":\"22\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":103,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":43,\"formatted\":\"RB43\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13141,\"nameFull\":\"Chris Carson\",\"nameShort\":\"C. Carson\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13141.png\",\"nflByeWeek\":6,\"nameFirst\":\"Chris\",\"nameLast\":\"Carson\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":52.0,\"formatted\":\"52\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":85.71429,\"formatted\":\"6/7\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":19.4,\"formatted\":\"19.4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":19.4,\"formatted\":\"19.4\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":52.0,\"formatted\":\"52\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":85.71429,\"formatted\":\"6/7\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":111,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":26,\"formatted\":\"26\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":16,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":11,\"formatted\":\"RB11\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\"]},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"away\":{\"proPlayer\":{\"id\":9338,\"nameFull\":\"Robert Woods\",\"nameShort\":\"R. Woods\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9338.png\",\"nflByeWeek\":9,\"nameFirst\":\"Robert\",\"nameLast\":\"Woods\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":71.0,\"formatted\":\"71\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":15.6,\"formatted\":\"15.6\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.6,\"formatted\":\"15.6\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":71.0,\"formatted\":\"71\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":59,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":16,\"formatted\":\"16\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":51,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":22,\"formatted\":\"WR22\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":6642,\"nameFull\":\"Golden Tate\",\"nameShort\":\"G. Tate\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6642.png\",\"nflByeWeek\":11,\"nameFirst\":\"Golden\",\"nameLast\":\"Tate\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":42.0,\"formatted\":\"42\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.2,\"formatted\":\"7.2\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.2,\"formatted\":\"7.2\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":42.0,\"formatted\":\"42\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":290,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":83,\"formatted\":\"83\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":234,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":79,\"formatted\":\"WR79\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_BLUE\"]},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"away\":{\"proPlayer\":{\"id\":12950,\"nameFull\":\"JuJu Smith-Schuster\",\"nameShort\":\"J. Smith-Schuster\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12950.png\",\"nameFirst\":\"JuJu\",\"nameLast\":\"Smith-Schuster\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":5.3,\"formatted\":\"5.3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":5.3,\"formatted\":\"5.3\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":92,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":26,\"formatted\":\"26\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":55,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":23,\"formatted\":\"WR23\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":15523,\"nameFull\":\"CeeDee Lamb\",\"nameShort\":\"C. Lamb\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15523.png\",\"nflByeWeek\":10,\"isRookie\":true,\"nameFirst\":\"CeeDee\",\"nameLast\":\"Lamb\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":72.72727,\"formatted\":\"8/11\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":124.0,\"formatted\":\"124\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":19.55,\"formatted\":\"19.55\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":19.55,\"formatted\":\"19.55\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":72.72727,\"formatted\":\"8/11\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":124.0,\"formatted\":\"124\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":83,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":22,\"formatted\":\"22\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":93,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":37,\"formatted\":\"WR37\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_BLUE\"]},{\"position\":{\"label\":\"RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"RB\",\"WR\",\"TE\"],\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},\"away\":{\"proPlayer\":{\"id\":12023,\"nameFull\":\"Will Fuller\",\"nameShort\":\"W. Fuller\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12023.png\",\"nflByeWeek\":8,\"nameFirst\":\"Will\",\"nameLast\":\"Fuller\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"4/8\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":58.0,\"formatted\":\"58\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":16.8,\"formatted\":\"16.8\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":16.8,\"formatted\":\"16.8\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"4/8\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":58.0,\"formatted\":\"58\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":36,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":4,\"formatted\":\"4\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":36,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":15,\"formatted\":\"WR15\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":7401,\"nameFull\":\"Randall Cobb\",\"nameShort\":\"R. Cobb\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7401.png\",\"nflByeWeek\":8,\"nameFirst\":\"Randall\",\"nameLast\":\"Cobb\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":47.0,\"formatted\":\"47\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":8.7,\"formatted\":\"8.7\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.7,\"formatted\":\"8.7\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":47.0,\"formatted\":\"47\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":165,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":50,\"formatted\":\"50\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":205,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":73,\"formatted\":\"WR73\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"min\":1,\"max\":15,\"start\":1,\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"away\":{\"proPlayer\":{\"id\":9360,\"nameFull\":\"Travis Kelce\",\"nameShort\":\"T. Kelce\",\"proTeamAbbreviation\":\"KC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9360.png\",\"nflByeWeek\":10,\"nameFirst\":\"Travis\",\"nameLast\":\"Kelce\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"8/12\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":108.0,\"formatted\":\"108\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":27.3,\"formatted\":\"27.3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":27.3,\"formatted\":\"27.3\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"8/12\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":108.0,\"formatted\":\"108\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":39,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":1,\"formatted\":\"1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":15,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":1,\"formatted\":\"TE1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":7444,\"nameFull\":\"Kyle Rudolph\",\"nameShort\":\"K. Rudolph\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7444.png\",\"nflByeWeek\":7,\"nameFirst\":\"Kyle\",\"nameLast\":\"Rudolph\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":10.0,\"formatted\":\"10\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":5.5,\"formatted\":\"5.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":5.5,\"formatted\":\"5.5\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":10.0,\"formatted\":\"10\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":383,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":31,\"formatted\":\"31\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_YELLOW\"]},{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"min\":1,\"max\":2,\"start\":1,\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"away\":{\"proPlayer\":{\"id\":13324,\"nameFull\":\"Younghoe Koo\",\"nameShort\":\"Y. Koo\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13324.png\",\"nflByeWeek\":10,\"nameFirst\":\"Younghoe\",\"nameLast\":\"Koo\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}}],\"pointsActual\":{\"value\":13.0,\"formatted\":\"13\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":13.0,\"formatted\":\"13\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":60,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":2,\"formatted\":\"2\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":189,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":4,\"formatted\":\"K4\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13124,\"nameFull\":\"Harrison Butker\",\"nameShort\":\"H. Butker\",\"proTeamAbbreviation\":\"KC\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13124.png\",\"nflByeWeek\":10,\"nameFirst\":\"Harrison\",\"nameLast\":\"Butker\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}}],\"pointsActual\":{\"value\":6.0,\"formatted\":\"6\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":6.0,\"formatted\":\"6\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":99,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":19,\"formatted\":\"19\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":187,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":3,\"formatted\":\"K3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GRAY\"]},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":13397,\"nameFull\":\"Kenny Moore\",\"nameShort\":\"K. Moore\",\"proTeamAbbreviation\":\"IND\",\"position\":\"CB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13397.png\",\"nflByeWeek\":7,\"nameFirst\":\"Kenny\",\"nameLast\":\"Moore\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"positionEligibility\":[\"CB\"]},\"requestedGames\":[{\"game\":{\"id\":6227,\"away\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"home\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.0,\"formatted\":\"4\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.0,\"formatted\":\"4\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":211,\"positions\":[{\"position\":{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":8523,\"nameFull\":\"Harrison Smith\",\"nameShort\":\"H. Smith\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8523.png\",\"nflByeWeek\":7,\"nameFirst\":\"Harrison\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":2.0,\"formatted\":\"2\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":2.0,\"formatted\":\"2\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":305,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":39,\"formatted\":\"39\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":165,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"S5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":14674,\"nameFull\":\"Johnathan Abram\",\"nameShort\":\"J. Abram\",\"proTeamAbbreviation\":\"LV\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14674.png\",\"nflByeWeek\":6,\"nameFirst\":\"Johnathan\",\"nameLast\":\"Abram\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":10.5,\"formatted\":\"10.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":10.5,\"formatted\":\"10.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":236,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":214,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":18,\"formatted\":\"S18\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":14723,\"nameFull\":\"Juan Thornhill\",\"nameShort\":\"J. Thornhill\",\"proTeamAbbreviation\":\"KC\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14723.png\",\"nflByeWeek\":10,\"nameFirst\":\"Juan\",\"nameLast\":\"Thornhill\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":1.5,\"formatted\":\"1.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":1.5,\"formatted\":\"1.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":494,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":74,\"formatted\":\"74\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":13763,\"nameFull\":\"Terrell Edmunds\",\"nameShort\":\"T. Edmunds\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13763.png\",\"nameFirst\":\"Terrell\",\"nameLast\":\"Edmunds\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":11.5,\"formatted\":\"11.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":11.5,\"formatted\":\"11.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":293,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":34,\"formatted\":\"34\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":14765,\"nameFull\":\"Chauncey Gardner-Johnson\",\"nameShort\":\"C. Gardner-Johnson\",\"proTeamAbbreviation\":\"NO\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14765.png\",\"nflByeWeek\":6,\"nameFirst\":\"Chauncey\",\"nameLast\":\"Gardner-Johnson\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6229,\"away\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"home\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"startTimeEpochMilli\":\"1602548100000\",\"status\":\"FINAL_SCORE\",\"awayScore\":27,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":3.0,\"formatted\":\"3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":3.0,\"formatted\":\"3\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":236,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":14780,\"nameFull\":\"Maxx Crosby\",\"nameShort\":\"M. Crosby\",\"proTeamAbbreviation\":\"LV\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14780.png\",\"nflByeWeek\":6,\"nameFirst\":\"Maxx\",\"nameLast\":\"Crosby\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":12.0,\"formatted\":\"12\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":12.0,\"formatted\":\"12\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":439,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":35,\"formatted\":\"35\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":10235,\"nameFull\":\"Jadeveon Clowney\",\"nameShort\":\"J. Clowney\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10235.png\",\"nameFirst\":\"Jadeveon\",\"nameLast\":\"Clowney\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":9.5,\"formatted\":\"9.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":9.5,\"formatted\":\"9.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":539,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":63,\"formatted\":\"63\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":7373,\"nameFull\":\"Cameron Jordan\",\"nameShort\":\"C. Jordan\",\"proTeamAbbreviation\":\"NO\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7373.png\",\"nflByeWeek\":6,\"nameFirst\":\"Cameron\",\"nameLast\":\"Jordan\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6229,\"away\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"home\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"startTimeEpochMilli\":\"1602548100000\",\"status\":\"FINAL_SCORE\",\"awayScore\":27,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"pointsActual\":{\"value\":21.0,\"formatted\":\"21\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":21.0,\"formatted\":\"21\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":335,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":23,\"formatted\":\"23\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":136,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"EDR5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":6562,\"nameFull\":\"Brandon Graham\",\"nameShort\":\"B. Graham\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6562.png\",\"nflByeWeek\":9,\"nameFirst\":\"Brandon\",\"nameLast\":\"Graham\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":8.5,\"formatted\":\"8.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.5,\"formatted\":\"8.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":231,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":10587,\"nameFull\":\"Shaquil Barrett\",\"nameShort\":\"S. Barrett\",\"proTeamAbbreviation\":\"TB\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10587.png\",\"nflByeWeek\":13,\"nameFirst\":\"Shaquil\",\"nameLast\":\"Barrett\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"positionEligibility\":[\"EDR\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":3.5,\"formatted\":\"3.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":3.5,\"formatted\":\"3.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":220,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":3,\"formatted\":\"3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":14685,\"nameFull\":\"Josh Allen\",\"nameShort\":\"J. Allen\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14685.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Knee\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Josh\",\"nameLast\":\"Allen\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":592,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":87,\"formatted\":\"87\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":203,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":17,\"formatted\":\"EDR17\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":8459,\"nameFull\":\"Danny Trevathan\",\"nameShort\":\"D. Trevathan\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8459.png\",\"nflByeWeek\":11,\"nameFirst\":\"Danny\",\"nameLast\":\"Trevathan\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":15.0,\"formatted\":\"15\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.0,\"formatted\":\"15\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":249,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":35,\"formatted\":\"35\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":8694,\"nameFull\":\"L.J. Fort\",\"nameShort\":\"L. Fort\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8694.png\",\"nflByeWeek\":7,\"nameFirst\":\"L.J.\",\"nameLast\":\"Fort\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":1.0,\"formatted\":\"1\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":1.0,\"formatted\":\"1\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":361,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":55,\"formatted\":\"55\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":11233,\"nameFull\":\"Jordan Hicks\",\"nameShort\":\"J. Hicks\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11233.png\",\"nflByeWeek\":8,\"nameFirst\":\"Jordan\",\"nameLast\":\"Hicks\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":15.5,\"formatted\":\"15.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.5,\"formatted\":\"15.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":207,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":20,\"formatted\":\"20\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":146,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":10,\"formatted\":\"LB10\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12053,\"nameFull\":\"Jaylon Smith\",\"nameShort\":\"J. Smith\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12053.png\",\"nflByeWeek\":10,\"nameFirst\":\"Jaylon\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"pointsActual\":{\"value\":29.0,\"formatted\":\"29\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":29.0,\"formatted\":\"29\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":178,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":9,\"formatted\":\"9\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":74,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":3,\"formatted\":\"LB3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_PURPLE\"]}]},{\"slots\":[{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":11183,\"nameFull\":\"Jameis Winston\",\"nameShort\":\"J. Winston\",\"proTeamAbbreviation\":\"NO\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11183.png\",\"nflByeWeek\":6,\"nameFirst\":\"Jameis\",\"nameLast\":\"Winston\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6229,\"away\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"home\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"startTimeEpochMilli\":\"1602548100000\",\"status\":\"FINAL_SCORE\",\"awayScore\":27,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":769,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":55,\"formatted\":\"55\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":286,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":37,\"formatted\":\"QB37\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":309,\"nameFull\":\"Tom Brady\",\"nameShort\":\"T. Brady\",\"proTeamAbbreviation\":\"TB\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/309.png\",\"nflByeWeek\":13,\"nameFirst\":\"Tom\",\"nameLast\":\"Brady\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":253.0,\"formatted\":\"253\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":17.62,\"formatted\":\"17.62\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":17.62,\"formatted\":\"17.62\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":253.0,\"formatted\":\"253\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":8,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":8,\"formatted\":\"8\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":98,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":10,\"formatted\":\"QB10\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":14180,\"nameFull\":\"Kyle Allen\",\"nameShort\":\"K. Allen\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14180.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Arm\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Kyle\",\"nameLast\":\"Allen\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":74.0,\"formatted\":\"74\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":9.16,\"formatted\":\"9.16\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":9.16,\"formatted\":\"9.16\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":74.0,\"formatted\":\"74\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":190,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":39,\"formatted\":\"39\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12079,\"nameFull\":\"Jacoby Brissett\",\"nameShort\":\"J. Brissett\",\"proTeamAbbreviation\":\"IND\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12079.png\",\"nflByeWeek\":7,\"nameFirst\":\"Jacoby\",\"nameLast\":\"Brissett\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6227,\"away\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"home\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":669,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":48,\"formatted\":\"48\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":9341,\"nameFull\":\"Giovani Bernard\",\"nameShort\":\"G. Bernard\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9341.png\",\"nflByeWeek\":9,\"nameFirst\":\"Giovani\",\"nameLast\":\"Bernard\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":0.9,\"formatted\":\"0.9\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":0.9,\"formatted\":\"0.9\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":149,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":37,\"formatted\":\"37\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":77,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":36,\"formatted\":\"RB36\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":8630,\"nameFull\":\"Alfred Morris\",\"nameShort\":\"A. Morris\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8630.png\",\"nflByeWeek\":11,\"nameFirst\":\"Alfred\",\"nameLast\":\"Morris\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":574,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":92,\"formatted\":\"92\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":269,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":83,\"formatted\":\"RB83\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":12042,\"nameFull\":\"Derrick Henry\",\"nameShort\":\"D. Henry\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12042.png\",\"nameFirst\":\"Derrick\",\"nameLast\":\"Henry\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":57.0,\"formatted\":\"57\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"pointsActual\":{\"value\":20.8,\"formatted\":\"20.8\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":20.8,\"formatted\":\"20.8\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":57.0,\"formatted\":\"57\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":25,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":3,\"formatted\":\"3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":1,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":1,\"formatted\":\"RB1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12499,\"nameFull\":\"Peyton Barber\",\"nameShort\":\"P. Barber\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12499.png\",\"nflByeWeek\":8,\"nameFirst\":\"Peyton\",\"nameLast\":\"Barber\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":386,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":67,\"formatted\":\"67\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":258,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":79,\"formatted\":\"RB79\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":13111,\"nameFull\":\"Aaron Jones\",\"nameShort\":\"A. Jones\",\"proTeamAbbreviation\":\"GB\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13111.png\",\"nflByeWeek\":5,\"nameFirst\":\"Aaron\",\"nameLast\":\"Jones\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"isBye\":true,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":43,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":8,\"formatted\":\"8\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":5,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":5,\"formatted\":\"RB5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13796,\"nameFull\":\"Royce Freeman\",\"nameShort\":\"R. Freeman\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13796.png\",\"injury\":{\"typeAbbreviaition\":\"CVP\",\"description\":\"COVID-19 related postponed game\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19 Postponed\"},\"nameFirst\":\"Royce\",\"nameLast\":\"Freeman\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6416,\"away\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"home\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"startTimeEpochMilli\":\"1602536400000\",\"status\":\"POSTPONED\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":547,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":86,\"formatted\":\"86\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":313,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":95,\"formatted\":\"RB95\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":13942,\"nameFull\":\"Boston Scott\",\"nameShort\":\"B. Scott\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"RB\",\"nflByeWeek\":9,\"nameFirst\":\"Boston\",\"nameLast\":\"Scott\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/0\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":2.7,\"formatted\":\"2.7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":2.7,\"formatted\":\"2.7\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/0\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":198,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":47,\"formatted\":\"47\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":160,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":62,\"formatted\":\"RB62\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":15937,\"nameFull\":\"Salvon Ahmed\",\"nameShort\":\"S. Ahmed\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15937.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Coach's Decision\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"isRookie\":true,\"nameFirst\":\"Salvon\",\"nameLast\":\"Ahmed\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":429,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":74,\"formatted\":\"74\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":82,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":38,\"formatted\":\"RB38\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":14329,\"nameFull\":\"Darrel Williams\",\"nameShort\":\"D. Williams\",\"proTeamAbbreviation\":\"KC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14329.png\",\"nflByeWeek\":10,\"nameFirst\":\"Darrel\",\"nameLast\":\"Williams\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":20.0,\"formatted\":\"1/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":15.0,\"formatted\":\"15\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.4,\"formatted\":\"4.4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.4,\"formatted\":\"4.4\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":20.0,\"formatted\":\"1/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":15.0,\"formatted\":\"15\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":447,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":77,\"formatted\":\"77\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":249,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":76,\"formatted\":\"RB76\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":9492,\"nameFull\":\"Kenny Stills\",\"nameShort\":\"K. Stills\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9492.png\",\"nflByeWeek\":8,\"nameFirst\":\"Kenny\",\"nameLast\":\"Stills\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":14.0,\"formatted\":\"14\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":2.4,\"formatted\":\"2.4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":2.4,\"formatted\":\"2.4\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":14.0,\"formatted\":\"14\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":491,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":115,\"formatted\":\"115\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":302,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":104,\"formatted\":\"WR104\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":14471,\"nameFull\":\"Jeffery Wilson\",\"nameShort\":\"J. Wilson\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14471.png\",\"nflByeWeek\":11,\"nameFirst\":\"Jeffery\",\"nameLast\":\"Wilson\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":6.7,\"formatted\":\"6.7\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":6.7,\"formatted\":\"6.7\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":202,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":48,\"formatted\":\"48\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":213,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":70,\"formatted\":\"RB70\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":10291,\"nameFull\":\"Cody Latimer\",\"nameShort\":\"C. Latimer\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10291.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"SUS\",\"description\":\"Personal\",\"severity\":\"OUT\",\"typeFull\":\"Suspended\"},\"nameFirst\":\"Cody\",\"nameLast\":\"Latimer\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":14485,\"nameFull\":\"Dontrell Hilliard\",\"nameShort\":\"D. Hilliard\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14485.png\",\"nflByeWeek\":9,\"nameFirst\":\"Dontrell\",\"nameLast\":\"Hilliard\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6227,\"away\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"home\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":730,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":116,\"formatted\":\"116\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12937,\"nameFull\":\"Zay Jones\",\"nameShort\":\"Z. Jones\",\"proTeamAbbreviation\":\"LV\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12937.png\",\"nflByeWeek\":6,\"nameFirst\":\"Zay\",\"nameLast\":\"Jones\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":0.7,\"formatted\":\"0.7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":0.7,\"formatted\":\"0.7\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":537,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":126,\"formatted\":\"126\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":6269,\"nameFull\":\"Julian Edelman\",\"nameShort\":\"J. Edelman\",\"proTeamAbbreviation\":\"NE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6269.png\",\"injury\":{\"typeAbbreviaition\":\"CVP\",\"description\":\"COVID-19 related postponed game\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19 Postponed\"},\"nameFirst\":\"Julian\",\"nameLast\":\"Edelman\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6416,\"away\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"home\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"startTimeEpochMilli\":\"1602536400000\",\"status\":\"POSTPONED\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":325,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":88,\"formatted\":\"88\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":239,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":81,\"formatted\":\"WR81\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13052,\"nameFull\":\"Dede Westbrook\",\"nameShort\":\"D. Westbrook\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13052.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Coach's Decision\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Dede\",\"nameLast\":\"Westbrook\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":987,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":216,\"formatted\":\"216\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":6660,\"nameFull\":\"Antonio Brown\",\"nameShort\":\"A. Brown\",\"proTeamAbbreviation\":\"TB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6660.png\",\"nflByeWeek\":13,\"injury\":{\"typeAbbreviaition\":\"SUS\",\"description\":\"Suspension\",\"severity\":\"OUT\",\"typeFull\":\"Suspended\"},\"nameFirst\":\"Antonio\",\"nameLast\":\"Brown\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":544,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":127,\"formatted\":\"127\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":84,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":32,\"formatted\":\"WR32\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":11257,\"nameFull\":\"Nick Boyle\",\"nameShort\":\"N. Boyle\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11257.png\",\"nflByeWeek\":7,\"nameFirst\":\"Nick\",\"nameLast\":\"Boyle\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":1.2,\"formatted\":\"1.2\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":1.2,\"formatted\":\"1.2\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":459,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":41,\"formatted\":\"41\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":12913,\"nameFull\":\"Corey Davis\",\"nameShort\":\"C. Davis\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12913.png\",\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Corey\",\"nameLast\":\"Davis\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":140,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":43,\"formatted\":\"43\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":106,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":40,\"formatted\":\"WR40\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":3986,\"nameFull\":\"Stephen Gostkowski\",\"nameShort\":\"S. Gostkowski\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/3986.png\",\"nameFirst\":\"Stephen\",\"nameLast\":\"Gostkowski\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"formatted\":\"0/0\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}}],\"pointsActual\":{\"value\":6.0,\"formatted\":\"6\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":6.0,\"formatted\":\"6\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"formatted\":\"0/0\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":86,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":14,\"formatted\":\"14\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":12926,\"nameFull\":\"Chris Godwin\",\"nameShort\":\"C. Godwin\",\"proTeamAbbreviation\":\"TB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12926.png\",\"nflByeWeek\":13,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Hamstring\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Chris\",\"nameLast\":\"Godwin\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":151,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":46,\"formatted\":\"46\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":40,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":16,\"formatted\":\"WR16\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":14223,\"nameFull\":\"Charvarius Ward\",\"nameShort\":\"C. Ward\",\"proTeamAbbreviation\":\"KC\",\"position\":\"CB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14223.png\",\"nflByeWeek\":10,\"nameFirst\":\"Charvarius\",\"nameLast\":\"Ward\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"CB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.5,\"formatted\":\"4.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.5,\"formatted\":\"4.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":409,\"positions\":[{\"position\":{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":70,\"formatted\":\"70\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":12930,\"nameFull\":\"Curtis Samuel\",\"nameShort\":\"C. Samuel\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12930.png\",\"nflByeWeek\":13,\"nameFirst\":\"Curtis\",\"nameLast\":\"Samuel\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"5/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":36.0,\"formatted\":\"36\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":10.9,\"formatted\":\"10.9\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":10.9,\"formatted\":\"10.9\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"5/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":36.0,\"formatted\":\"36\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":96,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":29,\"formatted\":\"29\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":111,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":43,\"formatted\":\"WR43\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":15535,\"nameFull\":\"Noah Igbinoghene\",\"nameShort\":\"N. Igbinoghene\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"CB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15535.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"Noah\",\"nameLast\":\"Igbinoghene\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"positionEligibility\":[\"CB\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":611,\"positions\":[{\"position\":{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":134,\"formatted\":\"134\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":13808,\"nameFull\":\"James Washington\",\"nameShort\":\"J. Washington\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13808.png\",\"nameFirst\":\"James\",\"nameLast\":\"Washington\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":75.0,\"formatted\":\"3/4\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":25.0,\"formatted\":\"25\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":5.0,\"formatted\":\"5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":5.0,\"formatted\":\"5\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":75.0,\"formatted\":\"3/4\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":25.0,\"formatted\":\"25\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":266,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":76,\"formatted\":\"76\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":287,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":97,\"formatted\":\"WR97\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":9796,\"nameFull\":\"Bradley McDougald\",\"nameShort\":\"B. McDougald\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9796.png\",\"nflByeWeek\":10,\"nameFirst\":\"Bradley\",\"nameLast\":\"McDougald\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.5,\"formatted\":\"7.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.5,\"formatted\":\"7.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":448,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":64,\"formatted\":\"64\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":13774,\"nameFull\":\"Hayden Hurst\",\"nameShort\":\"H. Hurst\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13774.png\",\"nflByeWeek\":10,\"nameFirst\":\"Hayden\",\"nameLast\":\"Hurst\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":33.333332,\"formatted\":\"2/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":8.0,\"formatted\":\"8\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":2.8,\"formatted\":\"2.8\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":2.8,\"formatted\":\"2.8\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":33.333332,\"formatted\":\"2/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":8.0,\"formatted\":\"8\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":170,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":11,\"formatted\":\"11\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":94,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":9,\"formatted\":\"TE9\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12097,\"nameFull\":\"Vonn Bell\",\"nameShort\":\"V. Bell\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12097.png\",\"nflByeWeek\":9,\"nameFirst\":\"Vonn\",\"nameLast\":\"Bell\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.0,\"formatted\":\"7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.0,\"formatted\":\"7\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":267,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":27,\"formatted\":\"27\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":176,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":10,\"formatted\":\"S10\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":13874,\"nameFull\":\"Ian Thomas\",\"nameShort\":\"I. Thomas\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13874.png\",\"nflByeWeek\":13,\"nameFirst\":\"Ian\",\"nameLast\":\"Thomas\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"formatted\":\"0\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"0\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":566,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":63,\"formatted\":\"63\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13827,\"nameFull\":\"Tracy Walker\",\"nameShort\":\"T. Walker\",\"proTeamAbbreviation\":\"DET\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13827.png\",\"nflByeWeek\":5,\"nameFirst\":\"Tracy\",\"nameLast\":\"Walker\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"isBye\":true,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":293,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":34,\"formatted\":\"34\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":194,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":12,\"formatted\":\"S12\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":13886,\"nameFull\":\"Christopher Herndon\",\"nameShort\":\"C. Herndon\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13886.png\",\"nflByeWeek\":10,\"nameFirst\":\"Christopher\",\"nameLast\":\"Herndon\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"2/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":24.0,\"formatted\":\"24\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.9,\"formatted\":\"4.9\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.9,\"formatted\":\"4.9\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"2/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":24.0,\"formatted\":\"24\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":545,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":58,\"formatted\":\"58\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12074,\"nameFull\":\"Kamalei Correa\",\"nameShort\":\"K. Correa\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12074.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Kamalei\",\"nameLast\":\"Correa\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"positionEligibility\":[\"EDR\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":730,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":124,\"formatted\":\"124\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":15366,\"nameFull\":\"Joey Slye\",\"nameShort\":\"J. Slye\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15366.png\",\"nflByeWeek\":13,\"nameFirst\":\"Joey\",\"nameLast\":\"Slye\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"2/2\"}}],\"pointsActual\":{\"value\":11.0,\"formatted\":\"11\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":11.0,\"formatted\":\"11\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"2/2\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":74,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":10,\"formatted\":\"10\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":284,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":21,\"formatted\":\"K21\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12984,\"nameFull\":\"Tyus Bowser\",\"nameShort\":\"T. Bowser\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12984.png\",\"nflByeWeek\":7,\"nameFirst\":\"Tyus\",\"nameLast\":\"Bowser\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"EDR\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.0,\"formatted\":\"4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.0,\"formatted\":\"4\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":539,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":63,\"formatted\":\"63\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":11861,\"nameFull\":\"Quinton Dunbar\",\"nameShort\":\"Q. Dunbar\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"CB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11861.png\",\"nflByeWeek\":6,\"nameFirst\":\"Quinton\",\"nameLast\":\"Dunbar\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"positionEligibility\":[\"CB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":9.0,\"formatted\":\"9\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":9.0,\"formatted\":\"9\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":388,\"positions\":[{\"position\":{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":61,\"formatted\":\"61\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13756,\"nameFull\":\"Bradley Chubb\",\"nameShort\":\"B. Chubb\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13756.png\",\"injury\":{\"typeAbbreviaition\":\"CVP\",\"description\":\"COVID-19 related postponed game\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19 Postponed\"},\"nameFirst\":\"Bradley\",\"nameLast\":\"Chubb\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"positionEligibility\":[\"EDR\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6416,\"away\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"home\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"startTimeEpochMilli\":\"1602536400000\",\"status\":\"POSTPONED\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":317,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":17,\"formatted\":\"17\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":14750,\"nameFull\":\"Taylor Rapp\",\"nameShort\":\"T. Rapp\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14750.png\",\"nflByeWeek\":9,\"nameFirst\":\"Taylor\",\"nameLast\":\"Rapp\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":11.0,\"formatted\":\"11\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":11.0,\"formatted\":\"11\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":327,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":46,\"formatted\":\"46\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":168,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":7,\"formatted\":\"S7\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13153,\"nameFull\":\"Eric Wilson\",\"nameShort\":\"E. Wilson\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13153.png\",\"nflByeWeek\":7,\"nameFirst\":\"Eric\",\"nameLast\":\"Wilson\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":31.7,\"formatted\":\"31.7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":31.7,\"formatted\":\"31.7\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":205,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":10867,\"nameFull\":\"Kerry Hyder\",\"nameShort\":\"K. Hyder\",\"proTeamAbbreviation\":\"SF\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10867.png\",\"nflByeWeek\":11,\"nameFirst\":\"Kerry\",\"nameLast\":\"Hyder\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":12.0,\"formatted\":\"12\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":12.0,\"formatted\":\"12\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":399,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":31,\"formatted\":\"31\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":14877,\"nameFull\":\"Kaden Elliss\",\"nameShort\":\"K. Elliss\",\"proTeamAbbreviation\":\"NO\",\"position\":\"LB\",\"nflByeWeek\":6,\"nameFirst\":\"Kaden\",\"nameLast\":\"Elliss\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6229,\"away\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"home\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"startTimeEpochMilli\":\"1602548100000\",\"status\":\"FINAL_SCORE\",\"awayScore\":27,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":1.5,\"formatted\":\"1.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":1.5,\"formatted\":\"1.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":775,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":146,\"formatted\":\"146\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":10320,\"nameFull\":\"Stephon Tuitt\",\"nameShort\":\"S. Tuitt\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"IL\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10320.png\",\"nameFirst\":\"Stephon\",\"nameLast\":\"Tuitt\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"DE\",\"IL\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.5,\"formatted\":\"1.5\"}}],\"pointsActual\":{\"value\":17.5,\"formatted\":\"17.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":17.5,\"formatted\":\"17.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.5,\"formatted\":\"1.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":276,\"positions\":[{\"position\":{\"label\":\"IL\",\"group\":\"START\",\"eligibility\":[\"IL\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":1,\"formatted\":\"1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":16019,\"nameFull\":\"Krys Barnes\",\"nameShort\":\"K. Barnes\",\"proTeamAbbreviation\":\"GB\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/16019.png\",\"nflByeWeek\":5,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Shoulder\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"isRookie\":true,\"nameFirst\":\"Krys\",\"nameLast\":\"Barnes\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"isBye\":true,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":399,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":60,\"formatted\":\"60\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"BN\",\"max\":24},\"away\":{\"proPlayer\":{\"id\":15562,\"nameFull\":\"Jacob Phillips\",\"nameShort\":\"J. Phillips\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15562.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Knee\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"isRookie\":true,\"nameFirst\":\"Jacob\",\"nameLast\":\"Phillips\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6227,\"away\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"home\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":1.5,\"formatted\":\"1.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":1.5,\"formatted\":\"1.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":746,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":136,\"formatted\":\"136\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}}]},{\"group\":\"INJURED\",\"slots\":[{\"position\":{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":25,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":15146,\"nameFull\":\"Devine Ozigbo\",\"nameShort\":\"D. Ozigbo\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15146.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Hamstring\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Devine\",\"nameLast\":\"Ozigbo\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":908,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":149,\"formatted\":\"149\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":320,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":99,\"formatted\":\"RB99\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13795,\"nameFull\":\"Courtland Sutton\",\"nameShort\":\"C. Sutton\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13795.png\",\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL + MCL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Courtland\",\"nameLast\":\"Sutton\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6416,\"away\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"home\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"startTimeEpochMilli\":\"1602536400000\",\"status\":\"POSTPONED\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":697,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":156,\"formatted\":\"156\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":25,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":15625,\"nameFull\":\"Isaiah Hodgins\",\"nameShort\":\"I. Hodgins\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15625.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Shoulder\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"Isaiah\",\"nameLast\":\"Hodgins\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12891,\"nameFull\":\"O.J. Howard\",\"nameShort\":\"O. Howard\",\"proTeamAbbreviation\":\"TB\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12891.png\",\"nflByeWeek\":13,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Achilles\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"O.J.\",\"nameLast\":\"Howard\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":427,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":38,\"formatted\":\"38\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":25,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":15667,\"nameFull\":\"Quez Watkins\",\"nameShort\":\"Q. Watkins\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Quez\",\"nameLast\":\"Watkins\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":15690,\"nameFull\":\"L'Jarius Sneed\",\"nameShort\":\"L. Sneed\",\"proTeamAbbreviation\":\"KC\",\"position\":\"CB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15690.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Collarbone\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"L'Jarius\",\"nameLast\":\"Sneed\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"CB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":550,\"positions\":[{\"position\":{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":119,\"formatted\":\"119\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":25,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":12904,\"nameFull\":\"David Njoku\",\"nameShort\":\"D. Njoku\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12904.png\",\"nflByeWeek\":9,\"nameFirst\":\"David\",\"nameLast\":\"Njoku\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6227,\"away\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"home\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":2.1,\"formatted\":\"2.1\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":2.1,\"formatted\":\"2.1\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":470,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":43,\"formatted\":\"43\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":12130,\"nameFull\":\"Ronald Blair\",\"nameShort\":\"R. Blair\",\"proTeamAbbreviation\":\"SF\",\"position\":\"EDR\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"PUP\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Physically Unable to Perform\"},\"nameFirst\":\"Ronald\",\"nameLast\":\"Blair\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":25,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":13813,\"nameFull\":\"Dallas Goedert\",\"nameShort\":\"D. Goedert\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13813.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Dallas\",\"nameLast\":\"Goedert\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":303,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":24,\"formatted\":\"24\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":87,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":7,\"formatted\":\"TE7\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":13753,\"nameFull\":\"Leighton Vander Esch\",\"nameShort\":\"L. Vander Esch\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13753.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Collarbone\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Leighton\",\"nameLast\":\"Vander Esch\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":399,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":60,\"formatted\":\"60\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":179,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":17,\"formatted\":\"LB17\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":25,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":15679,\"nameFull\":\"Colby Parkinson\",\"nameShort\":\"C. Parkinson\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15679.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"PUP\",\"description\":\"Foot\",\"severity\":\"OUT\",\"typeFull\":\"Physically Unable to Perform\"},\"isRookie\":true,\"nameFirst\":\"Colby\",\"nameLast\":\"Parkinson\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":14791,\"nameFull\":\"Blake Cashman\",\"nameShort\":\"B. Cashman\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14791.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Groin\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Blake\",\"nameLast\":\"Cashman\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":775,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":146,\"formatted\":\"146\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]}]},{\"group\":\"TAXI\",\"slots\":[{\"position\":{\"label\":\"TAXI\",\"group\":\"TAXI\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":3,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":15533,\"nameFull\":\"Tua Tagovailoa\",\"nameShort\":\"T. Tagovailoa\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15533.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"Tua\",\"nameLast\":\"Tagovailoa\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":187,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":38,\"formatted\":\"38\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":153,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":21,\"formatted\":\"QB21\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":15707,\"nameFull\":\"Jacob Eason\",\"nameShort\":\"J. Eason\",\"proTeamAbbreviation\":\"IND\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15707.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Coach's Decision\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"isRookie\":true,\"nameFirst\":\"Jacob\",\"nameLast\":\"Eason\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6227,\"away\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"home\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"TAXI\",\"group\":\"TAXI\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":3,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":15577,\"nameFull\":\"Bryan Edwards\",\"nameShort\":\"B. Edwards\",\"proTeamAbbreviation\":\"LV\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15577.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"isRookie\":true,\"nameFirst\":\"Bryan\",\"nameLast\":\"Edwards\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":604,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":142,\"formatted\":\"142\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":14714,\"nameFull\":\"Drew Sample\",\"nameShort\":\"D. Sample\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14714.png\",\"nflByeWeek\":9,\"nameFirst\":\"Drew\",\"nameLast\":\"Sample\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"2/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":22.0,\"formatted\":\"22\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.7,\"formatted\":\"4.7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.7,\"formatted\":\"4.7\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"2/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":22.0,\"formatted\":\"22\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":479,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":44,\"formatted\":\"44\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"position\":{\"label\":\"TAXI\",\"group\":\"TAXI\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":3,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},\"away\":{\"proPlayer\":{\"id\":15703,\"nameFull\":\"Quintez Cephus\",\"nameShort\":\"Q. Cephus\",\"proTeamAbbreviation\":\"DET\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15703.png\",\"nflByeWeek\":5,\"isRookie\":true,\"nameFirst\":\"Quintez\",\"nameLast\":\"Cephus\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"isBye\":true,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":521,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":122,\"formatted\":\"122\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"home\":{\"proPlayer\":{\"id\":15536,\"nameFull\":\"Jordyn Brooks\",\"nameShort\":\"J. Brooks\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15536.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Knee - MCL\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"isRookie\":true,\"nameFirst\":\"Jordyn\",\"nameLast\":\"Brooks\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"pointsActual\":{\"formatted\":\"—\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"formatted\":\"—\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":592,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":97,\"formatted\":\"97\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},\"positionColor\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]}]}],\"pointsAway\":{\"total\":{\"value\":{\"value\":206.65001,\"formatted\":\"206.65\"},\"optimum\":{\"value\":250.7,\"formatted\":\"250.7\"},\"optimumLineup\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"min\":1,\"max\":3,\"start\":1,\"colors\":[\"DRAFT_BOARD_RED\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13775,\"nameFull\":\"Lamar Jackson\",\"nameShort\":\"L. Jackson\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13775.png\",\"nflByeWeek\":7,\"nameFirst\":\"Lamar\",\"nameLast\":\"Jackson\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":180.0,\"formatted\":\"180\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"pointsActual\":{\"value\":13.5,\"formatted\":\"13.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":13.5,\"formatted\":\"13.5\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":180.0,\"formatted\":\"180\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":16,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":95,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":8,\"formatted\":\"QB8\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12951,\"nameFull\":\"James Conner\",\"nameShort\":\"J. Conner\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12951.png\",\"nameFirst\":\"James\",\"nameLast\":\"Conner\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":44.0,\"formatted\":\"44\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":19.0,\"formatted\":\"19\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":17.3,\"formatted\":\"17.3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":17.3,\"formatted\":\"17.3\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":44.0,\"formatted\":\"44\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":19.0,\"formatted\":\"19\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":62,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":13,\"formatted\":\"13\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":23,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":14,\"formatted\":\"RB14\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12042,\"nameFull\":\"Derrick Henry\",\"nameShort\":\"D. Henry\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12042.png\",\"nameFirst\":\"Derrick\",\"nameLast\":\"Henry\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":57.0,\"formatted\":\"57\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"pointsActual\":{\"value\":20.8,\"formatted\":\"20.8\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":20.8,\"formatted\":\"20.8\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":57.0,\"formatted\":\"57\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":25,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":3,\"formatted\":\"3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":1,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":1,\"formatted\":\"RB1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9338,\"nameFull\":\"Robert Woods\",\"nameShort\":\"R. Woods\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9338.png\",\"nflByeWeek\":9,\"nameFirst\":\"Robert\",\"nameLast\":\"Woods\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":71.0,\"formatted\":\"71\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":15.6,\"formatted\":\"15.6\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.6,\"formatted\":\"15.6\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":71.0,\"formatted\":\"71\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":59,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":16,\"formatted\":\"16\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":51,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":22,\"formatted\":\"WR22\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12023,\"nameFull\":\"Will Fuller\",\"nameShort\":\"W. Fuller\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12023.png\",\"nflByeWeek\":8,\"nameFirst\":\"Will\",\"nameLast\":\"Fuller\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"4/8\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":58.0,\"formatted\":\"58\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":16.8,\"formatted\":\"16.8\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":16.8,\"formatted\":\"16.8\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"4/8\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":58.0,\"formatted\":\"58\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":36,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":4,\"formatted\":\"4\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":36,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":15,\"formatted\":\"WR15\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"min\":1,\"max\":15,\"start\":1,\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9360,\"nameFull\":\"Travis Kelce\",\"nameShort\":\"T. Kelce\",\"proTeamAbbreviation\":\"KC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9360.png\",\"nflByeWeek\":10,\"nameFirst\":\"Travis\",\"nameLast\":\"Kelce\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"8/12\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":108.0,\"formatted\":\"108\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":27.3,\"formatted\":\"27.3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":27.3,\"formatted\":\"27.3\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"8/12\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":108.0,\"formatted\":\"108\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":39,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":1,\"formatted\":\"1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":15,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":1,\"formatted\":\"TE1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"RB\",\"WR\",\"TE\"],\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12930,\"nameFull\":\"Curtis Samuel\",\"nameShort\":\"C. Samuel\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12930.png\",\"nflByeWeek\":13,\"nameFirst\":\"Curtis\",\"nameLast\":\"Samuel\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"5/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":36.0,\"formatted\":\"36\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":10.9,\"formatted\":\"10.9\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":10.9,\"formatted\":\"10.9\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"5/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":36.0,\"formatted\":\"36\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":96,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":29,\"formatted\":\"29\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":111,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":43,\"formatted\":\"WR43\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"min\":1,\"max\":2,\"start\":1,\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13324,\"nameFull\":\"Younghoe Koo\",\"nameShort\":\"Y. Koo\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13324.png\",\"nflByeWeek\":10,\"nameFirst\":\"Younghoe\",\"nameLast\":\"Koo\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}}],\"pointsActual\":{\"value\":13.0,\"formatted\":\"13\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":13.0,\"formatted\":\"13\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":60,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":2,\"formatted\":\"2\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":189,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":4,\"formatted\":\"K4\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":14750,\"nameFull\":\"Taylor Rapp\",\"nameShort\":\"T. Rapp\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14750.png\",\"nflByeWeek\":9,\"nameFirst\":\"Taylor\",\"nameLast\":\"Rapp\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":11.0,\"formatted\":\"11\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":11.0,\"formatted\":\"11\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":327,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":46,\"formatted\":\"46\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":168,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":7,\"formatted\":\"S7\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13763,\"nameFull\":\"Terrell Edmunds\",\"nameShort\":\"T. Edmunds\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13763.png\",\"nameFirst\":\"Terrell\",\"nameLast\":\"Edmunds\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":11.5,\"formatted\":\"11.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":11.5,\"formatted\":\"11.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":293,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":34,\"formatted\":\"34\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":10867,\"nameFull\":\"Kerry Hyder\",\"nameShort\":\"K. Hyder\",\"proTeamAbbreviation\":\"SF\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10867.png\",\"nflByeWeek\":11,\"nameFirst\":\"Kerry\",\"nameLast\":\"Hyder\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":12.0,\"formatted\":\"12\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":12.0,\"formatted\":\"12\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":399,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":31,\"formatted\":\"31\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":14780,\"nameFull\":\"Maxx Crosby\",\"nameShort\":\"M. Crosby\",\"proTeamAbbreviation\":\"LV\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14780.png\",\"nflByeWeek\":6,\"nameFirst\":\"Maxx\",\"nameLast\":\"Crosby\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":12.0,\"formatted\":\"12\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":12.0,\"formatted\":\"12\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":439,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":35,\"formatted\":\"35\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":8459,\"nameFull\":\"Danny Trevathan\",\"nameShort\":\"D. Trevathan\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8459.png\",\"nflByeWeek\":11,\"nameFirst\":\"Danny\",\"nameLast\":\"Trevathan\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":15.0,\"formatted\":\"15\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.0,\"formatted\":\"15\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":249,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":35,\"formatted\":\"35\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":11233,\"nameFull\":\"Jordan Hicks\",\"nameShort\":\"J. Hicks\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11233.png\",\"nflByeWeek\":8,\"nameFirst\":\"Jordan\",\"nameLast\":\"Hicks\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":15.5,\"formatted\":\"15.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.5,\"formatted\":\"15.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":207,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":20,\"formatted\":\"20\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":146,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":10,\"formatted\":\"LB10\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":10320,\"nameFull\":\"Stephon Tuitt\",\"nameShort\":\"S. Tuitt\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"IL\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10320.png\",\"nameFirst\":\"Stephon\",\"nameLast\":\"Tuitt\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"DE\",\"IL\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.5,\"formatted\":\"1.5\"}}],\"pointsActual\":{\"value\":17.5,\"formatted\":\"17.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":17.5,\"formatted\":\"17.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.5,\"formatted\":\"1.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":276,\"positions\":[{\"position\":{\"label\":\"IL\",\"group\":\"START\",\"eligibility\":[\"IL\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":1,\"formatted\":\"1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":7373,\"nameFull\":\"Cameron Jordan\",\"nameShort\":\"C. Jordan\",\"proTeamAbbreviation\":\"NO\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7373.png\",\"nflByeWeek\":6,\"nameFirst\":\"Cameron\",\"nameLast\":\"Jordan\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6229,\"away\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"home\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"startTimeEpochMilli\":\"1602548100000\",\"status\":\"FINAL_SCORE\",\"awayScore\":27,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"pointsActual\":{\"value\":21.0,\"formatted\":\"21\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":21.0,\"formatted\":\"21\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":335,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":23,\"formatted\":\"23\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":136,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"EDR5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}}]},\"scoringPeriod\":{\"value\":{\"value\":206.65,\"formatted\":\"206.65\"},\"optimum\":{\"value\":250.7,\"formatted\":\"250.7\"},\"optimumLineup\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"min\":1,\"max\":3,\"start\":1,\"colors\":[\"DRAFT_BOARD_RED\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13775,\"nameFull\":\"Lamar Jackson\",\"nameShort\":\"L. Jackson\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13775.png\",\"nflByeWeek\":7,\"nameFirst\":\"Lamar\",\"nameLast\":\"Jackson\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":180.0,\"formatted\":\"180\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"pointsActual\":{\"value\":13.5,\"formatted\":\"13.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":13.5,\"formatted\":\"13.5\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":180.0,\"formatted\":\"180\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":16,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":95,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":8,\"formatted\":\"QB8\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12951,\"nameFull\":\"James Conner\",\"nameShort\":\"J. Conner\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12951.png\",\"nameFirst\":\"James\",\"nameLast\":\"Conner\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":44.0,\"formatted\":\"44\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":19.0,\"formatted\":\"19\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":17.3,\"formatted\":\"17.3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":17.3,\"formatted\":\"17.3\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":44.0,\"formatted\":\"44\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":19.0,\"formatted\":\"19\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":62,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":13,\"formatted\":\"13\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":23,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":14,\"formatted\":\"RB14\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12042,\"nameFull\":\"Derrick Henry\",\"nameShort\":\"D. Henry\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12042.png\",\"nameFirst\":\"Derrick\",\"nameLast\":\"Henry\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":57.0,\"formatted\":\"57\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"pointsActual\":{\"value\":20.8,\"formatted\":\"20.8\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":20.8,\"formatted\":\"20.8\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":57.0,\"formatted\":\"57\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":6.0,\"formatted\":\"6\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":25,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":3,\"formatted\":\"3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":1,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":1,\"formatted\":\"RB1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9338,\"nameFull\":\"Robert Woods\",\"nameShort\":\"R. Woods\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9338.png\",\"nflByeWeek\":9,\"nameFirst\":\"Robert\",\"nameLast\":\"Woods\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":71.0,\"formatted\":\"71\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":15.6,\"formatted\":\"15.6\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.6,\"formatted\":\"15.6\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":71.0,\"formatted\":\"71\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":59,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":16,\"formatted\":\"16\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":51,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":22,\"formatted\":\"WR22\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12023,\"nameFull\":\"Will Fuller\",\"nameShort\":\"W. Fuller\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12023.png\",\"nflByeWeek\":8,\"nameFirst\":\"Will\",\"nameLast\":\"Fuller\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"4/8\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":58.0,\"formatted\":\"58\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":16.8,\"formatted\":\"16.8\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":16.8,\"formatted\":\"16.8\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"4/8\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":58.0,\"formatted\":\"58\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":36,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":4,\"formatted\":\"4\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":36,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":15,\"formatted\":\"WR15\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"min\":1,\"max\":15,\"start\":1,\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9360,\"nameFull\":\"Travis Kelce\",\"nameShort\":\"T. Kelce\",\"proTeamAbbreviation\":\"KC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9360.png\",\"nflByeWeek\":10,\"nameFirst\":\"Travis\",\"nameLast\":\"Kelce\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"8/12\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":108.0,\"formatted\":\"108\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":27.3,\"formatted\":\"27.3\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":27.3,\"formatted\":\"27.3\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":66.666664,\"formatted\":\"8/12\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":108.0,\"formatted\":\"108\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":39,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":1,\"formatted\":\"1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":15,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":1,\"formatted\":\"TE1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"RB\",\"WR\",\"TE\"],\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12930,\"nameFull\":\"Curtis Samuel\",\"nameShort\":\"C. Samuel\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12930.png\",\"nflByeWeek\":13,\"nameFirst\":\"Curtis\",\"nameLast\":\"Samuel\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"5/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":36.0,\"formatted\":\"36\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":10.9,\"formatted\":\"10.9\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":10.9,\"formatted\":\"10.9\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":28.0,\"formatted\":\"28\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"5/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":36.0,\"formatted\":\"36\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":96,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":29,\"formatted\":\"29\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":111,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":43,\"formatted\":\"WR43\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"min\":1,\"max\":2,\"start\":1,\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13324,\"nameFull\":\"Younghoe Koo\",\"nameShort\":\"Y. Koo\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13324.png\",\"nflByeWeek\":10,\"nameFirst\":\"Younghoe\",\"nameLast\":\"Koo\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6219,\"away\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"home\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":23,\"homeScore\":16,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}}],\"pointsActual\":{\"value\":13.0,\"formatted\":\"13\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":13.0,\"formatted\":\"13\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":60,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":2,\"formatted\":\"2\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":189,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":4,\"formatted\":\"K4\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":14750,\"nameFull\":\"Taylor Rapp\",\"nameShort\":\"T. Rapp\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14750.png\",\"nflByeWeek\":9,\"nameFirst\":\"Taylor\",\"nameLast\":\"Rapp\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6221,\"away\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"home\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":11.0,\"formatted\":\"11\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":11.0,\"formatted\":\"11\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":327,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":46,\"formatted\":\"46\",\"rating\":\"RATING_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":168,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":7,\"formatted\":\"S7\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13763,\"nameFull\":\"Terrell Edmunds\",\"nameShort\":\"T. Edmunds\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13763.png\",\"nameFirst\":\"Terrell\",\"nameLast\":\"Edmunds\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":11.5,\"formatted\":\"11.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":11.5,\"formatted\":\"11.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":293,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":34,\"formatted\":\"34\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":10867,\"nameFull\":\"Kerry Hyder\",\"nameShort\":\"K. Hyder\",\"proTeamAbbreviation\":\"SF\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10867.png\",\"nflByeWeek\":11,\"nameFirst\":\"Kerry\",\"nameLast\":\"Hyder\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":12.0,\"formatted\":\"12\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":12.0,\"formatted\":\"12\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":399,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":31,\"formatted\":\"31\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":14780,\"nameFull\":\"Maxx Crosby\",\"nameShort\":\"M. Crosby\",\"proTeamAbbreviation\":\"LV\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14780.png\",\"nflByeWeek\":6,\"nameFirst\":\"Maxx\",\"nameLast\":\"Crosby\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":12.0,\"formatted\":\"12\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":12.0,\"formatted\":\"12\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":439,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":35,\"formatted\":\"35\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":8459,\"nameFull\":\"Danny Trevathan\",\"nameShort\":\"D. Trevathan\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8459.png\",\"nflByeWeek\":11,\"nameFirst\":\"Danny\",\"nameLast\":\"Trevathan\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6215,\"away\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"home\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"startTimeEpochMilli\":\"1602202800000\",\"status\":\"FINAL_SCORE\",\"awayScore\":19,\"homeScore\":20,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":15.0,\"formatted\":\"15\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.0,\"formatted\":\"15\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":249,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":35,\"formatted\":\"35\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":11233,\"nameFull\":\"Jordan Hicks\",\"nameShort\":\"J. Hicks\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11233.png\",\"nflByeWeek\":8,\"nameFirst\":\"Jordan\",\"nameLast\":\"Hicks\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":15.5,\"formatted\":\"15.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":15.5,\"formatted\":\"15.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":207,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":20,\"formatted\":\"20\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":146,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":10,\"formatted\":\"LB10\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":10320,\"nameFull\":\"Stephon Tuitt\",\"nameShort\":\"S. Tuitt\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"IL\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10320.png\",\"nameFirst\":\"Stephon\",\"nameLast\":\"Tuitt\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"positionEligibility\":[\"DE\",\"IL\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.5,\"formatted\":\"1.5\"}}],\"pointsActual\":{\"value\":17.5,\"formatted\":\"17.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":17.5,\"formatted\":\"17.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.5,\"formatted\":\"1.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":276,\"positions\":[{\"position\":{\"label\":\"IL\",\"group\":\"START\",\"eligibility\":[\"IL\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":1,\"formatted\":\"1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":7373,\"nameFull\":\"Cameron Jordan\",\"nameShort\":\"C. Jordan\",\"proTeamAbbreviation\":\"NO\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7373.png\",\"nflByeWeek\":6,\"nameFirst\":\"Cameron\",\"nameLast\":\"Jordan\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6229,\"away\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"home\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"startTimeEpochMilli\":\"1602548100000\",\"status\":\"FINAL_SCORE\",\"awayScore\":27,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"pointsActual\":{\"value\":21.0,\"formatted\":\"21\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":21.0,\"formatted\":\"21\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":5.0,\"formatted\":\"5\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"initials\":\"WD\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":335,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":23,\"formatted\":\"23\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":136,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"EDR5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}}]}},\"pointsHome\":{\"total\":{\"value\":{\"value\":161.65,\"formatted\":\"161.65\"},\"optimum\":{\"value\":208.85,\"formatted\":\"208.85\"},\"optimumLineup\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"min\":1,\"max\":3,\"start\":1,\"colors\":[\"DRAFT_BOARD_RED\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12894,\"nameFull\":\"Patrick Mahomes\",\"nameShort\":\"P. Mahomes\",\"proTeamAbbreviation\":\"KC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12894.png\",\"nflByeWeek\":10,\"nameFirst\":\"Patrick\",\"nameLast\":\"Mahomes\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":340.0,\"formatted\":\"340\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}}],\"pointsActual\":{\"value\":32.7,\"formatted\":\"32.7\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":32.7,\"formatted\":\"32.7\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":340.0,\"formatted\":\"340\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":3,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":3,\"formatted\":\"3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":38,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":1,\"formatted\":\"QB1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9410,\"nameFull\":\"Kyle Juszczyk\",\"nameShort\":\"K. Juszczyk\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9410.png\",\"nflByeWeek\":11,\"nameFirst\":\"Kyle\",\"nameLast\":\"Juszczyk\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":11.0,\"formatted\":\"11\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":8.1,\"formatted\":\"8.1\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.1,\"formatted\":\"8.1\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":11.0,\"formatted\":\"11\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":416,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":71,\"formatted\":\"71\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":321,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":100,\"formatted\":\"RB100\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13141,\"nameFull\":\"Chris Carson\",\"nameShort\":\"C. Carson\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13141.png\",\"nflByeWeek\":6,\"nameFirst\":\"Chris\",\"nameLast\":\"Carson\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":52.0,\"formatted\":\"52\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":85.71429,\"formatted\":\"6/7\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":19.4,\"formatted\":\"19.4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":19.4,\"formatted\":\"19.4\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":52.0,\"formatted\":\"52\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":85.71429,\"formatted\":\"6/7\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":111,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":26,\"formatted\":\"26\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":16,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":11,\"formatted\":\"RB11\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":7401,\"nameFull\":\"Randall Cobb\",\"nameShort\":\"R. Cobb\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7401.png\",\"nflByeWeek\":8,\"nameFirst\":\"Randall\",\"nameLast\":\"Cobb\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":47.0,\"formatted\":\"47\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":8.7,\"formatted\":\"8.7\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.7,\"formatted\":\"8.7\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":47.0,\"formatted\":\"47\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":165,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":50,\"formatted\":\"50\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":205,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":73,\"formatted\":\"WR73\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":15523,\"nameFull\":\"CeeDee Lamb\",\"nameShort\":\"C. Lamb\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15523.png\",\"nflByeWeek\":10,\"isRookie\":true,\"nameFirst\":\"CeeDee\",\"nameLast\":\"Lamb\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":72.72727,\"formatted\":\"8/11\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":124.0,\"formatted\":\"124\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":19.55,\"formatted\":\"19.55\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":19.55,\"formatted\":\"19.55\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":72.72727,\"formatted\":\"8/11\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":124.0,\"formatted\":\"124\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":83,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":22,\"formatted\":\"22\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":93,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":37,\"formatted\":\"WR37\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"min\":1,\"max\":15,\"start\":1,\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":7444,\"nameFull\":\"Kyle Rudolph\",\"nameShort\":\"K. Rudolph\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7444.png\",\"nflByeWeek\":7,\"nameFirst\":\"Kyle\",\"nameLast\":\"Rudolph\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":10.0,\"formatted\":\"10\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":5.5,\"formatted\":\"5.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":5.5,\"formatted\":\"5.5\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":10.0,\"formatted\":\"10\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":383,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":31,\"formatted\":\"31\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"RB\",\"WR\",\"TE\"],\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":6642,\"nameFull\":\"Golden Tate\",\"nameShort\":\"G. Tate\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6642.png\",\"nflByeWeek\":11,\"nameFirst\":\"Golden\",\"nameLast\":\"Tate\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":42.0,\"formatted\":\"42\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.2,\"formatted\":\"7.2\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.2,\"formatted\":\"7.2\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":42.0,\"formatted\":\"42\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":290,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":83,\"formatted\":\"83\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":234,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":79,\"formatted\":\"WR79\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"min\":1,\"max\":2,\"start\":1,\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13124,\"nameFull\":\"Harrison Butker\",\"nameShort\":\"H. Butker\",\"proTeamAbbreviation\":\"KC\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13124.png\",\"nflByeWeek\":10,\"nameFirst\":\"Harrison\",\"nameLast\":\"Butker\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}}],\"pointsActual\":{\"value\":6.0,\"formatted\":\"6\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":6.0,\"formatted\":\"6\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":99,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":19,\"formatted\":\"19\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":187,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":3,\"formatted\":\"K3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12097,\"nameFull\":\"Vonn Bell\",\"nameShort\":\"V. Bell\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12097.png\",\"nflByeWeek\":9,\"nameFirst\":\"Vonn\",\"nameLast\":\"Bell\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.0,\"formatted\":\"7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.0,\"formatted\":\"7\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":267,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":27,\"formatted\":\"27\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":176,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":10,\"formatted\":\"S10\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9796,\"nameFull\":\"Bradley McDougald\",\"nameShort\":\"B. McDougald\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9796.png\",\"nflByeWeek\":10,\"nameFirst\":\"Bradley\",\"nameLast\":\"McDougald\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.5,\"formatted\":\"7.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.5,\"formatted\":\"7.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":448,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":64,\"formatted\":\"64\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12984,\"nameFull\":\"Tyus Bowser\",\"nameShort\":\"T. Bowser\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12984.png\",\"nflByeWeek\":7,\"nameFirst\":\"Tyus\",\"nameLast\":\"Bowser\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"EDR\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.0,\"formatted\":\"4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.0,\"formatted\":\"4\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":539,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":63,\"formatted\":\"63\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":6562,\"nameFull\":\"Brandon Graham\",\"nameShort\":\"B. Graham\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6562.png\",\"nflByeWeek\":9,\"nameFirst\":\"Brandon\",\"nameLast\":\"Graham\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":8.5,\"formatted\":\"8.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.5,\"formatted\":\"8.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":231,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12053,\"nameFull\":\"Jaylon Smith\",\"nameShort\":\"J. Smith\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12053.png\",\"nflByeWeek\":10,\"nameFirst\":\"Jaylon\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"pointsActual\":{\"value\":29.0,\"formatted\":\"29\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":29.0,\"formatted\":\"29\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":178,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":9,\"formatted\":\"9\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":74,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":3,\"formatted\":\"LB3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13153,\"nameFull\":\"Eric Wilson\",\"nameShort\":\"E. Wilson\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13153.png\",\"nflByeWeek\":7,\"nameFirst\":\"Eric\",\"nameLast\":\"Wilson\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":31.7,\"formatted\":\"31.7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":31.7,\"formatted\":\"31.7\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":205,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":14223,\"nameFull\":\"Charvarius Ward\",\"nameShort\":\"C. Ward\",\"proTeamAbbreviation\":\"KC\",\"position\":\"CB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14223.png\",\"nflByeWeek\":10,\"nameFirst\":\"Charvarius\",\"nameLast\":\"Ward\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"CB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.5,\"formatted\":\"4.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.5,\"formatted\":\"4.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":409,\"positions\":[{\"position\":{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":70,\"formatted\":\"70\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":10235,\"nameFull\":\"Jadeveon Clowney\",\"nameShort\":\"J. Clowney\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10235.png\",\"nameFirst\":\"Jadeveon\",\"nameLast\":\"Clowney\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":9.5,\"formatted\":\"9.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":9.5,\"formatted\":\"9.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":539,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":63,\"formatted\":\"63\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}}]},\"scoringPeriod\":{\"value\":{\"value\":161.65,\"formatted\":\"161.65\"},\"optimum\":{\"value\":208.85,\"formatted\":\"208.85\"},\"optimumLineup\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"min\":1,\"max\":3,\"start\":1,\"colors\":[\"DRAFT_BOARD_RED\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12894,\"nameFull\":\"Patrick Mahomes\",\"nameShort\":\"P. Mahomes\",\"proTeamAbbreviation\":\"KC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12894.png\",\"nflByeWeek\":10,\"nameFirst\":\"Patrick\",\"nameLast\":\"Mahomes\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"QB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":340.0,\"formatted\":\"340\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}}],\"pointsActual\":{\"value\":32.7,\"formatted\":\"32.7\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":32.7,\"formatted\":\"32.7\"},\"viewingActualStats\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"value\":{\"value\":340.0,\"formatted\":\"340\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"PASSER\",\"rankFantasy\":{\"ordinal\":3,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":3,\"formatted\":\"3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":38,\"positions\":[{\"position\":{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"colors\":[\"DRAFT_BOARD_RED\"]},\"ordinal\":1,\"formatted\":\"QB1\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9410,\"nameFull\":\"Kyle Juszczyk\",\"nameShort\":\"K. Juszczyk\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9410.png\",\"nflByeWeek\":11,\"nameFirst\":\"Kyle\",\"nameLast\":\"Juszczyk\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6225,\"away\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"home\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"startTimeEpochMilli\":\"1602446700000\",\"status\":\"FINAL_SCORE\",\"awayScore\":43,\"homeScore\":17,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":11.0,\"formatted\":\"11\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":8.1,\"formatted\":\"8.1\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.1,\"formatted\":\"8.1\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":11.0,\"formatted\":\"11\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"formatted\":\"0/1\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":416,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":71,\"formatted\":\"71\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":321,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":100,\"formatted\":\"RB100\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13141,\"nameFull\":\"Chris Carson\",\"nameShort\":\"C. Carson\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13141.png\",\"nflByeWeek\":6,\"nameFirst\":\"Chris\",\"nameLast\":\"Carson\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"positionEligibility\":[\"RB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":52.0,\"formatted\":\"52\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":85.71429,\"formatted\":\"6/7\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":19.4,\"formatted\":\"19.4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":19.4,\"formatted\":\"19.4\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"value\":52.0,\"formatted\":\"52\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":85.71429,\"formatted\":\"6/7\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":27.0,\"formatted\":\"27\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RUSHER\",\"rankFantasy\":{\"ordinal\":111,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":26,\"formatted\":\"26\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":16,\"positions\":[{\"position\":{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"colors\":[\"DRAFT_BOARD_GREEN\"]},\"ordinal\":11,\"formatted\":\"RB11\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":7401,\"nameFull\":\"Randall Cobb\",\"nameShort\":\"R. Cobb\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7401.png\",\"nflByeWeek\":8,\"nameFirst\":\"Randall\",\"nameLast\":\"Cobb\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6224,\"away\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"home\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":14,\"homeScore\":30,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":47.0,\"formatted\":\"47\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":8.7,\"formatted\":\"8.7\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.7,\"formatted\":\"8.7\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":100.0,\"formatted\":\"6/6\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":47.0,\"formatted\":\"47\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":165,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":50,\"formatted\":\"50\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":205,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":73,\"formatted\":\"WR73\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":15523,\"nameFull\":\"CeeDee Lamb\",\"nameShort\":\"C. Lamb\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15523.png\",\"nflByeWeek\":10,\"isRookie\":true,\"nameFirst\":\"CeeDee\",\"nameLast\":\"Lamb\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":72.72727,\"formatted\":\"8/11\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":124.0,\"formatted\":\"124\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":19.55,\"formatted\":\"19.55\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":19.55,\"formatted\":\"19.55\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":72.72727,\"formatted\":\"8/11\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":124.0,\"formatted\":\"124\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":83,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":22,\"formatted\":\"22\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":93,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":37,\"formatted\":\"WR37\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"min\":1,\"max\":15,\"start\":1,\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":7444,\"nameFull\":\"Kyle Rudolph\",\"nameShort\":\"K. Rudolph\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7444.png\",\"nflByeWeek\":7,\"nameFirst\":\"Kyle\",\"nameLast\":\"Rudolph\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"positionEligibility\":[\"TE\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":10.0,\"formatted\":\"10\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":5.5,\"formatted\":\"5.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":5.5,\"formatted\":\"5.5\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":50.0,\"formatted\":\"1/2\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":10.0,\"formatted\":\"10\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":383,\"positions\":[{\"position\":{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"colors\":[\"DRAFT_BOARD_YELLOW\"]},\"ordinal\":31,\"formatted\":\"31\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"RB\",\"WR\",\"TE\"],\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":6642,\"nameFull\":\"Golden Tate\",\"nameShort\":\"G. Tate\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6642.png\",\"nflByeWeek\":11,\"nameFirst\":\"Golden\",\"nameLast\":\"Tate\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"positionEligibility\":[\"WR\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":42.0,\"formatted\":\"42\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.2,\"formatted\":\"7.2\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.2,\"formatted\":\"7.2\"},\"viewingActualStats\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},\"value\":{\"value\":80.0,\"formatted\":\"4/5\"}},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"value\":{\"value\":42.0,\"formatted\":\"42\"}},{\"category\":{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"RECEIVER\",\"rankFantasy\":{\"ordinal\":290,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":83,\"formatted\":\"83\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":234,\"positions\":[{\"position\":{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"colors\":[\"DRAFT_BOARD_BLUE\"]},\"ordinal\":79,\"formatted\":\"WR79\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"min\":1,\"max\":2,\"start\":1,\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13124,\"nameFull\":\"Harrison Butker\",\"nameShort\":\"H. Butker\",\"proTeamAbbreviation\":\"KC\",\"position\":\"K\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13124.png\",\"nflByeWeek\":10,\"nameFirst\":\"Harrison\",\"nameLast\":\"Butker\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"K\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}}],\"pointsActual\":{\"value\":6.0,\"formatted\":\"6\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":6.0,\"formatted\":\"6\"},\"viewingActualStats\":[{\"category\":{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},\"value\":{\"value\":100.0,\"formatted\":\"1/1\"}},{\"category\":{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"},\"value\":{\"value\":100.0,\"formatted\":\"3/3\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"KICKER\",\"rankFantasy\":{\"ordinal\":99,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":19,\"formatted\":\"19\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":187,\"positions\":[{\"position\":{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"colors\":[\"DRAFT_BOARD_GRAY\"]},\"ordinal\":3,\"formatted\":\"K3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12097,\"nameFull\":\"Vonn Bell\",\"nameShort\":\"V. Bell\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12097.png\",\"nflByeWeek\":9,\"nameFirst\":\"Vonn\",\"nameLast\":\"Bell\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.0,\"formatted\":\"7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.0,\"formatted\":\"7\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":267,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":27,\"formatted\":\"27\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":176,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":10,\"formatted\":\"S10\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":9796,\"nameFull\":\"Bradley McDougald\",\"nameShort\":\"B. McDougald\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"S\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9796.png\",\"nflByeWeek\":10,\"nameFirst\":\"Bradley\",\"nameLast\":\"McDougald\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"positionEligibility\":[\"S\"]},\"requestedGames\":[{\"game\":{\"id\":6223,\"away\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"home\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":30,\"homeScore\":10,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":7.5,\"formatted\":\"7.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":7.5,\"formatted\":\"7.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":448,\"positions\":[{\"position\":{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":64,\"formatted\":\"64\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12984,\"nameFull\":\"Tyus Bowser\",\"nameShort\":\"T. Bowser\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12984.png\",\"nflByeWeek\":7,\"nameFirst\":\"Tyus\",\"nameLast\":\"Bowser\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"positionEligibility\":[\"EDR\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6216,\"away\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"home\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":3,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.0,\"formatted\":\"4\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.0,\"formatted\":\"4\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":539,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":63,\"formatted\":\"63\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"EDR/IL\",\"group\":\"START\",\"eligibility\":[\"EDR\",\"IL\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":6562,\"nameFull\":\"Brandon Graham\",\"nameShort\":\"B. Graham\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6562.png\",\"nflByeWeek\":9,\"nameFirst\":\"Brandon\",\"nameLast\":\"Graham\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6218,\"away\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"home\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":29,\"homeScore\":38,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":8.5,\"formatted\":\"8.5\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":8.5,\"formatted\":\"8.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":3.0,\"formatted\":\"3\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":231,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":5,\"formatted\":\"5\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":12053,\"nameFull\":\"Jaylon Smith\",\"nameShort\":\"J. Smith\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12053.png\",\"nflByeWeek\":10,\"nameFirst\":\"Jaylon\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6226,\"away\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"home\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"startTimeEpochMilli\":\"1602447900000\",\"status\":\"FINAL_SCORE\",\"awayScore\":34,\"homeScore\":37,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"pointsActual\":{\"value\":29.0,\"formatted\":\"29\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":29.0,\"formatted\":\"29\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":7.0,\"formatted\":\"7\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":0.5,\"formatted\":\"0.5\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":178,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":9,\"formatted\":\"9\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"rankDraft\":{\"ordinal\":74,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":3,\"formatted\":\"LB3\",\"rating\":\"RATING_VERY_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"min\":2,\"max\":15,\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":13153,\"nameFull\":\"Eric Wilson\",\"nameShort\":\"E. Wilson\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"LB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13153.png\",\"nflByeWeek\":7,\"nameFirst\":\"Eric\",\"nameLast\":\"Wilson\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"positionEligibility\":[\"LB\",\"LB\"]},\"requestedGames\":[{\"game\":{\"id\":6228,\"away\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"home\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"startTimeEpochMilli\":\"1602462000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":26,\"homeScore\":27,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"pointsActual\":{\"value\":31.7,\"formatted\":\"31.7\"},\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":31.7,\"formatted\":\"31.7\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":4.0,\"formatted\":\"4\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":205,\"positions\":[{\"position\":{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":15,\"formatted\":\"15\",\"rating\":\"RATING_GOOD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":14223,\"nameFull\":\"Charvarius Ward\",\"nameShort\":\"C. Ward\",\"proTeamAbbreviation\":\"KC\",\"position\":\"CB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14223.png\",\"nflByeWeek\":10,\"nameFirst\":\"Charvarius\",\"nameLast\":\"Ward\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"positionEligibility\":[\"CB\"]},\"requestedGames\":[{\"game\":{\"id\":6220,\"away\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"home\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"startTimeEpochMilli\":\"1602435600000\",\"status\":\"FINAL_SCORE\",\"awayScore\":40,\"homeScore\":32,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":4.5,\"formatted\":\"4.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":4.5,\"formatted\":\"4.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":2.0,\"formatted\":\"2\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":409,\"positions\":[{\"position\":{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":70,\"formatted\":\"70\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}},{\"position\":{\"label\":\"DB/EDR/IL/LB\",\"group\":\"START\",\"eligibility\":[\"CB\",\"S\",\"EDR\",\"IL\",\"LB\"],\"start\":2,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"leaguePlayer\":{\"proPlayer\":{\"id\":10235,\"nameFull\":\"Jadeveon Clowney\",\"nameShort\":\"J. Clowney\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"EDR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10235.png\",\"nameFirst\":\"Jadeveon\",\"nameLast\":\"Clowney\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"positionEligibility\":[\"EDR\",\"DE\"]},\"requestedGames\":[{\"game\":{\"id\":6222,\"away\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"home\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"startTimeEpochMilli\":\"1602630000000\",\"status\":\"FINAL_SCORE\",\"awayScore\":16,\"homeScore\":42,\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\"},\"stats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"pointsActual\":{\"value\":9.5,\"formatted\":\"9.5\"},\"participant\":\"HOME\",\"period\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}],\"viewingActualPoints\":{\"value\":9.5,\"formatted\":\"9.5\"},\"viewingActualStats\":[{\"category\":{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},\"value\":{\"value\":1.0,\"formatted\":\"1\"}},{\"category\":{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},\"value\":{\"formatted\":\"0\"}},{\"category\":{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},\"value\":{\"formatted\":\"0\"}}],\"requestedGamesPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":5},\"owner\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"initials\":\"TC\"},\"displayGroup\":\"DEFENDER\",\"rankFantasy\":{\"ordinal\":539,\"positions\":[{\"position\":{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"colors\":[\"DRAFT_BOARD_PURPLE\"]},\"ordinal\":63,\"formatted\":\"63\",\"rating\":\"RATING_VERY_BAD\"}],\"season\":2020},\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}}]}},\"eligiblePeriods\":[{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}],\"scoringPeriod\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"}}"),
+ date = structure(1606597774, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 3.6e-05,
+ connect = 3.9e-05, pretransfer = 0.00012, starttransfer = 0.073545,
+ total = 0.074841
+ )
+), class = "response")
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-f885ce.R b/tests/testthat/flea/api/FetchLeagueBoxscore-f885ce.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-f885ce.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-f885ce.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-fe6677.R b/tests/testthat/flea/api/FetchLeagueBoxscore-fe6677.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueBoxscore-fe6677.R
rename to tests/testthat/flea/api/FetchLeagueBoxscore-fe6677.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueDraftBoard-b02013.R b/tests/testthat/flea/api/FetchLeagueDraftBoard-b02013.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueDraftBoard-b02013.R
rename to tests/testthat/flea/api/FetchLeagueDraftBoard-b02013.R
diff --git a/tests/testthat/flea/api/FetchLeagueRosters-e56db7.R b/tests/testthat/flea/api/FetchLeagueRosters-e56db7.R
new file mode 100644
index 00000000..cc5e0378
--- /dev/null
+++ b/tests/testthat/flea/api/FetchLeagueRosters-e56db7.R
@@ -0,0 +1,34 @@
+structure(list(
+ url = "https://www.fleaflicker.com/api/FetchLeagueRosters?sport=NFL&external_id_type=SPORTRADAR&league_id=312861",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:02:56 GMT",
+ `content-type` = "application/json;charset=utf-8", vary = "accept-encoding",
+ `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:02:56 GMT",
+ `content-type` = "application/json;charset=utf-8",
+ vary = "accept-encoding", `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"rosters\":[{\"team\":{\"id\":1578553,\"name\":\"Running Bear\",\"recordOverall\":{\"wins\":4,\"losses\":18,\"winPercentage\":{\"value\":0.18181819,\"formatted\":\".182\"},\"rank\":12,\"formatted\":\"4-18\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":12,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1444.7,\"formatted\":\"1,444.7\"},\"pointsAgainst\":{\"value\":1697.32,\"formatted\":\"1,697.32\"},\"streak\":{\"value\":-8.0,\"formatted\":\"L8\"},\"waiverAcquisitionBudget\":{\"value\":60.0,\"formatted\":\"$60\"},\"initials\":\"RB\"},\"players\":[{\"proPlayer\":{\"id\":12032,\"nameFull\":\"Carson Wentz\",\"nameShort\":\"C. Wentz\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12032.png\",\"nflByeWeek\":9,\"nameFirst\":\"Carson\",\"nameLast\":\"Wentz\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7378,\"nameFull\":\"Cam Newton\",\"nameShort\":\"C. Newton\",\"proTeamAbbreviation\":\"NE\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7378.png\",\"nameFirst\":\"Cam\",\"nameLast\":\"Newton\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"214e55e4-a089-412d-9598-a16495df0d25\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15622,\"nameFull\":\"Joshua Kelley\",\"nameShort\":\"J. Kelley\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15622.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"Joshua\",\"nameLast\":\"Kelley\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"62542e04-3c44-4b75-8165-be674c8be75f\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13358,\"nameFull\":\"Matt Breida\",\"nameShort\":\"M. Breida\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13358.png\",\"nflByeWeek\":7,\"nameFirst\":\"Matt\",\"nameLast\":\"Breida\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7369,\"nameFull\":\"A.J. Green\",\"nameShort\":\"A. Green\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7369.png\",\"nflByeWeek\":9,\"nameFirst\":\"A.J.\",\"nameLast\":\"Green\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}],\"isOnTradingBlock\":true},{\"proPlayer\":{\"id\":13782,\"nameFull\":\"Anthony Miller\",\"nameShort\":\"A. Miller\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13782.png\",\"nflByeWeek\":11,\"nameFirst\":\"Anthony\",\"nameLast\":\"Miller\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9338,\"nameFull\":\"Robert Woods\",\"nameShort\":\"R. Woods\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9338.png\",\"nflByeWeek\":9,\"nameFirst\":\"Robert\",\"nameLast\":\"Woods\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13209,\"nameFull\":\"Tim Patrick\",\"nameShort\":\"T. Patrick\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13209.png\",\"nameFirst\":\"Tim\",\"nameLast\":\"Patrick\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"2a443351-5e63-4a49-819e-912b51a745f2\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13874,\"nameFull\":\"Ian Thomas\",\"nameShort\":\"I. Thomas\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13874.png\",\"nflByeWeek\":13,\"nameFirst\":\"Ian\",\"nameLast\":\"Thomas\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13489,\"nameFull\":\"Robert Tonyan\",\"nameShort\":\"R. Tonyan\",\"proTeamAbbreviation\":\"GB\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13489.png\",\"nflByeWeek\":5,\"nameFirst\":\"Robert\",\"nameLast\":\"Tonyan\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7592,\"nameFull\":\"Tyrod Taylor\",\"nameShort\":\"T. Taylor\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7592.png\",\"nflByeWeek\":6,\"nameFirst\":\"Tyrod\",\"nameLast\":\"Taylor\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14770,\"nameFull\":\"Jarrett Stidham\",\"nameShort\":\"J. Stidham\",\"proTeamAbbreviation\":\"NE\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14770.png\",\"nameFirst\":\"Jarrett\",\"nameLast\":\"Stidham\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"582fe465-135a-4901-beef-60aebce99067\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6324,\"nameFull\":\"Brian Hoyer\",\"nameShort\":\"B. Hoyer\",\"proTeamAbbreviation\":\"NE\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6324.png\",\"nameFirst\":\"Brian\",\"nameLast\":\"Hoyer\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10475,\"nameFull\":\"James White\",\"nameShort\":\"J. White\",\"proTeamAbbreviation\":\"NE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10475.png\",\"nameFirst\":\"James\",\"nameLast\":\"White\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"39f70428-a78a-494c-8676-438d953c289e\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}],\"isOnTradingBlock\":true},{\"proPlayer\":{\"id\":15723,\"nameFull\":\"La'Mical Perine\",\"nameShort\":\"L. Perine\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15723.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"La'Mical\",\"nameLast\":\"Perine\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"f86e291f-d678-463c-93cb-beedab9a309a\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11188,\"nameFull\":\"Tevin Coleman\",\"nameShort\":\"T. Coleman\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11188.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Knee\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Tevin\",\"nameLast\":\"Coleman\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}],\"isOnTradingBlock\":true},{\"proPlayer\":{\"id\":15531,\"nameFull\":\"Brandon Aiyuk\",\"nameShort\":\"B. Aiyuk\",\"proTeamAbbreviation\":\"SF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15531.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Undisclosed\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"isRookie\":true,\"nameFirst\":\"Brandon\",\"nameLast\":\"Aiyuk\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8429,\"nameFull\":\"Marvin Jones\",\"nameShort\":\"M. Jones\",\"proTeamAbbreviation\":\"DET\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8429.png\",\"nflByeWeek\":5,\"nameFirst\":\"Marvin\",\"nameLast\":\"Jones\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}],\"isOnTradingBlock\":true},{\"proPlayer\":{\"id\":12926,\"nameFull\":\"Chris Godwin\",\"nameShort\":\"C. Godwin\",\"proTeamAbbreviation\":\"TB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12926.png\",\"nflByeWeek\":13,\"nameFirst\":\"Chris\",\"nameLast\":\"Godwin\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13788,\"nameFull\":\"Michael Gallup\",\"nameShort\":\"M. Gallup\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13788.png\",\"nflByeWeek\":10,\"nameFirst\":\"Michael\",\"nameLast\":\"Gallup\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15564,\"nameFull\":\"Van Jefferson\",\"nameShort\":\"V. Jefferson\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15564.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Van\",\"nameLast\":\"Jefferson\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":5324,\"nameFull\":\"DeSean Jackson\",\"nameShort\":\"D. Jackson\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/5324.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"DeSean\",\"nameLast\":\"Jackson\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}],\"isOnTradingBlock\":true},{\"proPlayer\":{\"id\":15642,\"nameFull\":\"Donovan Peoples-Jones\",\"nameShort\":\"D. Peoples-Jones\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15642.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Donovan\",\"nameLast\":\"Peoples-Jones\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15621,\"nameFull\":\"Joe Reed\",\"nameShort\":\"J. Reed\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15621.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"Joe\",\"nameLast\":\"Reed\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12974,\"nameFull\":\"Jonnu Smith\",\"nameShort\":\"J. Smith\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12974.png\",\"nameFirst\":\"Jonnu\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"externalIds\":[{\"id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14714,\"nameFull\":\"Drew Sample\",\"nameShort\":\"D. Sample\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14714.png\",\"nflByeWeek\":9,\"nameFirst\":\"Drew\",\"nameLast\":\"Sample\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9990,\"nameFull\":\"Jack Doyle\",\"nameShort\":\"J. Doyle\",\"proTeamAbbreviation\":\"IND\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9990.png\",\"nflByeWeek\":7,\"nameFirst\":\"Jack\",\"nameLast\":\"Doyle\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12159,\"nameFull\":\"Dak Prescott\",\"nameShort\":\"D. Prescott\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12159.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Dak\",\"nameLast\":\"Prescott\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13325,\"nameFull\":\"Austin Ekeler\",\"nameShort\":\"A. Ekeler\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13325.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Hamstring\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Austin\",\"nameLast\":\"Ekeler\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14749,\"nameFull\":\"Josh Oliver\",\"nameShort\":\"J. Oliver\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14749.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Foot\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Josh\",\"nameLast\":\"Oliver\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581718,\"name\":\"AlexG5386's Team\",\"recordOverall\":{\"wins\":7,\"losses\":15,\"winPercentage\":{\"value\":0.3181818,\"formatted\":\".318\"},\"rank\":10,\"formatted\":\"7-15\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":10,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1507.66,\"formatted\":\"1,507.66\"},\"pointsAgainst\":{\"value\":1591.5,\"formatted\":\"1,591.5\"},\"streak\":{\"value\":-6.0,\"formatted\":\"L6\"},\"waiverAcquisitionBudget\":{\"value\":98.0,\"formatted\":\"$98\"},\"newItemCounts\":{\"activityUnread\":28},\"initials\":\"AT\"},\"players\":[{\"proPlayer\":{\"id\":8598,\"nameFull\":\"Russell Wilson\",\"nameShort\":\"R. Wilson\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8598.png\",\"nflByeWeek\":6,\"nameFirst\":\"Russell\",\"nameLast\":\"Wilson\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"409d4cac-ee90-4470-9710-ebe671678339\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13802,\"nameFull\":\"Nick Chubb\",\"nameShort\":\"N. Chubb\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13802.png\",\"nflByeWeek\":9,\"nameFirst\":\"Nick\",\"nameLast\":\"Chubb\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14745,\"nameFull\":\"Miles Sanders\",\"nameShort\":\"M. Sanders\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14745.png\",\"nflByeWeek\":9,\"nameFirst\":\"Miles\",\"nameLast\":\"Sanders\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10310,\"nameFull\":\"Jerick McKinnon\",\"nameShort\":\"J. McKinnon\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10310.png\",\"nflByeWeek\":11,\"nameFirst\":\"Jerick\",\"nameLast\":\"McKinnon\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9341,\"nameFull\":\"Giovani Bernard\",\"nameShort\":\"G. Bernard\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9341.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Concussion\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Giovani\",\"nameLast\":\"Bernard\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"24cf6148-f0af-4103-a215-e06956764953\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11177,\"nameFull\":\"Amari Cooper\",\"nameShort\":\"A. Cooper\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11177.png\",\"nflByeWeek\":10,\"nameFirst\":\"Amari\",\"nameLast\":\"Cooper\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14661,\"nameFull\":\"Marquise Brown\",\"nameShort\":\"M. Brown\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14661.png\",\"nflByeWeek\":7,\"nameFirst\":\"Marquise\",\"nameLast\":\"Brown\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10242,\"nameFull\":\"Brandin Cooks\",\"nameShort\":\"B. Cooks\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10242.png\",\"nflByeWeek\":8,\"nameFirst\":\"Brandin\",\"nameLast\":\"Cooks\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13616,\"nameFull\":\"Greg Ward\",\"nameShort\":\"G. Ward\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13616.png\",\"nflByeWeek\":9,\"nameFirst\":\"Greg\",\"nameLast\":\"Ward\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11261,\"nameFull\":\"Darren Waller\",\"nameShort\":\"D. Waller\",\"proTeamAbbreviation\":\"LV\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11261.png\",\"nflByeWeek\":6,\"nameFirst\":\"Darren\",\"nameLast\":\"Waller\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13770,\"nameFull\":\"Sam Darnold\",\"nameShort\":\"S. Darnold\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13770.png\",\"nflByeWeek\":10,\"nameFirst\":\"Sam\",\"nameLast\":\"Darnold\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12079,\"nameFull\":\"Jacoby Brissett\",\"nameShort\":\"J. Brissett\",\"proTeamAbbreviation\":\"IND\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12079.png\",\"nflByeWeek\":7,\"nameFirst\":\"Jacoby\",\"nameLast\":\"Brissett\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12101,\"nameFull\":\"Kenyan Drake\",\"nameShort\":\"K. Drake\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12101.png\",\"nflByeWeek\":8,\"nameFirst\":\"Kenyan\",\"nameLast\":\"Drake\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"a0b93053-d349-4dd1-a840-24577102699b\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12975,\"nameFull\":\"Joe Mixon\",\"nameShort\":\"J. Mixon\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12975.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Foot\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Joe\",\"nameLast\":\"Mixon\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13942,\"nameFull\":\"Boston Scott\",\"nameShort\":\"B. Scott\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"RB\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Abdomen\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Boston\",\"nameLast\":\"Scott\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14790,\"nameFull\":\"Benny Snell\",\"nameShort\":\"B. Snell\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"RB\",\"nameFirst\":\"Benny\",\"nameLast\":\"Snell\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"74af3906-083e-49d1-b8c6-556101390381\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15936,\"nameFull\":\"Jamycal Hasty\",\"nameShort\":\"J. Hasty\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15936.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Collarbone\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"Jamycal\",\"nameLast\":\"Hasty\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"c6c50d09-f14f-41c2-9eb3-87514f0121f6\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13165,\"nameFull\":\"Corey Clement\",\"nameShort\":\"C. Clement\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13165.png\",\"nflByeWeek\":9,\"nameFirst\":\"Corey\",\"nameLast\":\"Clement\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"69568326-f210-4b88-a5cb-10376c64893e\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15620,\"nameFull\":\"Ke'Shawn Vaughn\",\"nameShort\":\"K. Vaughn\",\"proTeamAbbreviation\":\"TB\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15620.png\",\"nflByeWeek\":13,\"isRookie\":true,\"nameFirst\":\"Ke'Shawn\",\"nameLast\":\"Vaughn\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14767,\"nameFull\":\"Justice Hill\",\"nameShort\":\"J. Hill\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14767.png\",\"nflByeWeek\":7,\"nameFirst\":\"Justice\",\"nameLast\":\"Hill\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13967,\"nameFull\":\"Russell Gage\",\"nameShort\":\"R. Gage\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13967.png\",\"nflByeWeek\":10,\"nameFirst\":\"Russell\",\"nameLast\":\"Gage\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"externalIds\":[{\"id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6642,\"nameFull\":\"Golden Tate\",\"nameShort\":\"G. Tate\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6642.png\",\"nflByeWeek\":11,\"nameFirst\":\"Golden\",\"nameLast\":\"Tate\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11826,\"nameFull\":\"Adam Humphries\",\"nameShort\":\"A. Humphries\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11826.png\",\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Concussion\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Adam\",\"nameLast\":\"Humphries\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"externalIds\":[{\"id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13985,\"nameFull\":\"Auden Tate\",\"nameShort\":\"A. Tate\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13985.png\",\"nflByeWeek\":9,\"nameFirst\":\"Auden\",\"nameLast\":\"Tate\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13095,\"nameFull\":\"Trent Taylor\",\"nameShort\":\"T. Taylor\",\"proTeamAbbreviation\":\"SF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13095.png\",\"nflByeWeek\":11,\"nameFirst\":\"Trent\",\"nameLast\":\"Taylor\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13816,\"nameFull\":\"Dante Pettis\",\"nameShort\":\"D. Pettis\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13816.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Dante\",\"nameLast\":\"Pettis\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"20d16690-560b-4a01-af20-8870ef07ea70\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12972,\"nameFull\":\"Gerald Everett\",\"nameShort\":\"G. Everett\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12972.png\",\"nflByeWeek\":9,\"nameFirst\":\"Gerald\",\"nameLast\":\"Everett\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10991,\"nameFull\":\"Cameron Brate\",\"nameShort\":\"C. Brate\",\"proTeamAbbreviation\":\"TB\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10991.png\",\"nflByeWeek\":13,\"nameFirst\":\"Cameron\",\"nameLast\":\"Brate\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581719,\"name\":\"Jmuthers's Team\",\"recordOverall\":{\"wins\":7,\"losses\":15,\"winPercentage\":{\"value\":0.3181818,\"formatted\":\".318\"},\"rank\":11,\"formatted\":\"7-15\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":11,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1506.81,\"formatted\":\"1,506.81\"},\"pointsAgainst\":{\"value\":1662.83,\"formatted\":\"1,662.83\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"value\":87.0,\"formatted\":\"$87\"},\"newItemCounts\":{\"activityUnread\":28},\"initials\":\"JT\"},\"players\":[{\"proPlayer\":{\"id\":13761,\"nameFull\":\"Josh Allen\",\"nameShort\":\"J. Allen\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13761.png\",\"nflByeWeek\":11,\"nameFirst\":\"Josh\",\"nameLast\":\"Allen\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":326,\"nameFull\":\"Philip Rivers\",\"nameShort\":\"P. Rivers\",\"proTeamAbbreviation\":\"IND\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/326.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Toe\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Philip\",\"nameLast\":\"Rivers\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13038,\"nameFull\":\"Brian Hill\",\"nameShort\":\"B. Hill\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13038.png\",\"nflByeWeek\":10,\"nameFirst\":\"Brian\",\"nameLast\":\"Hill\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"externalIds\":[{\"id\":\"26873576-2bbd-4622-bc3e-ec847577855b\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14700,\"nameFull\":\"Alexander Mattison\",\"nameShort\":\"A. Mattison\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14700.png\",\"nflByeWeek\":7,\"nameFirst\":\"Alexander\",\"nameLast\":\"Mattison\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11398,\"nameFull\":\"Jamison Crowder\",\"nameShort\":\"J. Crowder\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11398.png\",\"nflByeWeek\":10,\"nameFirst\":\"Jamison\",\"nameLast\":\"Crowder\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12058,\"nameFull\":\"Sterling Shepard\",\"nameShort\":\"S. Shepard\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12058.png\",\"nflByeWeek\":11,\"nameFirst\":\"Sterling\",\"nameLast\":\"Shepard\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9380,\"nameFull\":\"Keenan Allen\",\"nameShort\":\"K. Allen\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9380.png\",\"nflByeWeek\":6,\"nameFirst\":\"Keenan\",\"nameLast\":\"Allen\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9311,\"nameFull\":\"DeAndre Hopkins\",\"nameShort\":\"D. Hopkins\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9311.png\",\"nflByeWeek\":8,\"nameFirst\":\"DeAndre\",\"nameLast\":\"Hopkins\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11507,\"nameFull\":\"Damiere Byrd\",\"nameShort\":\"D. Byrd\",\"proTeamAbbreviation\":\"NE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11507.png\",\"nameFirst\":\"Damiere\",\"nameLast\":\"Byrd\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14677,\"nameFull\":\"T.J. Hockenson\",\"nameShort\":\"T. Hockenson\",\"proTeamAbbreviation\":\"DET\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14677.png\",\"nflByeWeek\":5,\"nameFirst\":\"T.J.\",\"nameLast\":\"Hockenson\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":3011,\"nameFull\":\"Ryan Fitzpatrick\",\"nameShort\":\"R. Fitzpatrick\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/3011.png\",\"nflByeWeek\":7,\"nameFirst\":\"Ryan\",\"nameLast\":\"Fitzpatrick\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11183,\"nameFull\":\"Jameis Winston\",\"nameShort\":\"J. Winston\",\"proTeamAbbreviation\":\"NO\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11183.png\",\"nflByeWeek\":6,\"nameFirst\":\"Jameis\",\"nameLast\":\"Winston\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15707,\"nameFull\":\"Jacob Eason\",\"nameShort\":\"J. Eason\",\"proTeamAbbreviation\":\"IND\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15707.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"Jacob\",\"nameLast\":\"Eason\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9426,\"nameFull\":\"Rex Burkhead\",\"nameShort\":\"R. Burkhead\",\"proTeamAbbreviation\":\"NE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9426.png\",\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Rex\",\"nameLast\":\"Burkhead\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13969,\"nameFull\":\"Jordan Wilkins\",\"nameShort\":\"J. Wilkins\",\"proTeamAbbreviation\":\"IND\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13969.png\",\"nflByeWeek\":7,\"nameFirst\":\"Jordan\",\"nameLast\":\"Wilkins\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7371,\"nameFull\":\"Mark Ingram\",\"nameShort\":\"M. Ingram\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7371.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Mark\",\"nameLast\":\"Ingram\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13814,\"nameFull\":\"Derrius Guice\",\"nameShort\":\"D. Guice\",\"proTeamAbbreviation\":\"FA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13814.png\",\"nameFirst\":\"Derrius\",\"nameLast\":\"Guice\",\"proTeam\":{\"abbreviation\":\"FA\",\"location\":\"Free\",\"name\":\"Agent\",\"isFreeAgent\":true},\"externalIds\":[{\"id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10263,\"nameFull\":\"John Brown\",\"nameShort\":\"J. Brown\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10263.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"John\",\"nameLast\":\"Brown\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13364,\"nameFull\":\"Kendrick Bourne\",\"nameShort\":\"K. Bourne\",\"proTeamAbbreviation\":\"SF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13364.png\",\"nflByeWeek\":11,\"nameFirst\":\"Kendrick\",\"nameLast\":\"Bourne\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":5595,\"nameFull\":\"Danny Amendola\",\"nameShort\":\"D. Amendola\",\"proTeamAbbreviation\":\"DET\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/5595.png\",\"nflByeWeek\":5,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Hip\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Danny\",\"nameLast\":\"Amendola\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11217,\"nameFull\":\"Chris Conley\",\"nameShort\":\"C. Conley\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11217.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Hip\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Chris\",\"nameLast\":\"Conley\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10256,\"nameFull\":\"Sammy Watkins\",\"nameShort\":\"S. Watkins\",\"proTeamAbbreviation\":\"KC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10256.png\",\"nflByeWeek\":10,\"nameFirst\":\"Sammy\",\"nameLast\":\"Watkins\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14709,\"nameFull\":\"Miles Boykin\",\"nameShort\":\"M. Boykin\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14709.png\",\"nflByeWeek\":7,\"nameFirst\":\"Miles\",\"nameLast\":\"Boykin\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9492,\"nameFull\":\"Kenny Stills\",\"nameShort\":\"K. Stills\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9492.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Quadriceps\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Kenny\",\"nameLast\":\"Stills\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14774,\"nameFull\":\"Riley Ridley\",\"nameShort\":\"R. Ridley\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14774.png\",\"nflByeWeek\":11,\"nameFirst\":\"Riley\",\"nameLast\":\"Ridley\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":4828,\"nameFull\":\"Greg Olsen\",\"nameShort\":\"G. Olsen\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/4828.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Foot\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Greg\",\"nameLast\":\"Olsen\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11191,\"nameFull\":\"Maxx Williams\",\"nameShort\":\"M. Williams\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11191.png\",\"nflByeWeek\":8,\"nameFirst\":\"Maxx\",\"nameLast\":\"Williams\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11455,\"nameFull\":\"Raheem Mostert\",\"nameShort\":\"R. Mostert\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11455.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Raheem\",\"nameLast\":\"Mostert\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13778,\"nameFull\":\"Saquon Barkley\",\"nameShort\":\"S. Barkley\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13778.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Saquon\",\"nameLast\":\"Barkley\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13023,\"nameFull\":\"George Kittle\",\"nameShort\":\"G. Kittle\",\"proTeamAbbreviation\":\"SF\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13023.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Foot\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"George\",\"nameLast\":\"Kittle\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581720,\"name\":\"brosene's Team\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":5,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":5,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1688.33,\"formatted\":\"1,688.33\"},\"pointsAgainst\":{\"value\":1635.19,\"formatted\":\"1,635.19\"},\"streak\":{\"value\":2.0,\"formatted\":\"W2\"},\"waiverAcquisitionBudget\":{\"value\":98.0,\"formatted\":\"$98\"},\"newItemCounts\":{\"activityUnread\":6},\"initials\":\"BT\"},\"players\":[{\"proPlayer\":{\"id\":13775,\"nameFull\":\"Lamar Jackson\",\"nameShort\":\"L. Jackson\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13775.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Lamar\",\"nameLast\":\"Jackson\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":3452,\"nameFull\":\"Aaron Rodgers\",\"nameShort\":\"A. Rodgers\",\"proTeamAbbreviation\":\"GB\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/3452.png\",\"nflByeWeek\":5,\"nameFirst\":\"Aaron\",\"nameLast\":\"Rodgers\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"0ce48193-e2fa-466e-a986-33f751add206\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12965,\"nameFull\":\"Alvin Kamara\",\"nameShort\":\"A. Kamara\",\"proTeamAbbreviation\":\"NO\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12965.png\",\"nflByeWeek\":6,\"nameFirst\":\"Alvin\",\"nameLast\":\"Kamara\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11180,\"nameFull\":\"Melvin Gordon\",\"nameShort\":\"M. Gordon\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11180.png\",\"nameFirst\":\"Melvin\",\"nameLast\":\"Gordon\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14751,\"nameFull\":\"Darrell Henderson\",\"nameShort\":\"D. Henderson\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14751.png\",\"nflByeWeek\":9,\"nameFirst\":\"Darrell\",\"nameLast\":\"Henderson\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14716,\"nameFull\":\"David Montgomery\",\"nameShort\":\"D. Montgomery\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14716.png\",\"nflByeWeek\":11,\"nameFirst\":\"David\",\"nameLast\":\"Montgomery\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14754,\"nameFull\":\"Diontae Johnson\",\"nameShort\":\"D. Johnson\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14754.png\",\"nameFirst\":\"Diontae\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11178,\"nameFull\":\"Nelson Agholor\",\"nameShort\":\"N. Agholor\",\"proTeamAbbreviation\":\"LV\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11178.png\",\"nflByeWeek\":6,\"nameFirst\":\"Nelson\",\"nameLast\":\"Agholor\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13790,\"nameFull\":\"D.J. Chark\",\"nameShort\":\"D. Chark\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13790.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Ribs\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"D.J.\",\"nameLast\":\"Chark\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13829,\"nameFull\":\"Mark Andrews\",\"nameShort\":\"M. Andrews\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13829.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Thigh\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Mark\",\"nameLast\":\"Andrews\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":5336,\"nameFull\":\"Joe Flacco\",\"nameShort\":\"J. Flacco\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/5336.png\",\"nflByeWeek\":10,\"nameFirst\":\"Joe\",\"nameLast\":\"Flacco\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12216,\"nameFull\":\"Jeff Driskel\",\"nameShort\":\"J. Driskel\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12216.png\",\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Undisclosed\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Jeff\",\"nameLast\":\"Driskel\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8800,\"nameFull\":\"Case Keenum\",\"nameShort\":\"C. Keenum\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8800.png\",\"nflByeWeek\":9,\"nameFirst\":\"Case\",\"nameLast\":\"Keenum\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11300,\"nameFull\":\"Brett Hundley\",\"nameShort\":\"B. Hundley\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11300.png\",\"nflByeWeek\":8,\"nameFirst\":\"Brett\",\"nameLast\":\"Hundley\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11724,\"nameFull\":\"Malcolm Brown\",\"nameShort\":\"M. Brown\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11724.png\",\"nflByeWeek\":9,\"nameFirst\":\"Malcolm\",\"nameLast\":\"Brown\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":2848,\"nameFull\":\"Frank Gore\",\"nameShort\":\"F. Gore\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/2848.png\",\"nflByeWeek\":10,\"nameFirst\":\"Frank\",\"nameLast\":\"Gore\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14191,\"nameFull\":\"Gus Edwards\",\"nameShort\":\"G. Edwards\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"RB\",\"nflByeWeek\":7,\"nameFirst\":\"Gus\",\"nameLast\":\"Edwards\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10324,\"nameFull\":\"Devonta Freeman\",\"nameShort\":\"D. Freeman\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10324.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Devonta\",\"nameLast\":\"Freeman\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9552,\"nameFull\":\"Chris Thompson\",\"nameShort\":\"C. Thompson\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9552.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Back\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Chris\",\"nameLast\":\"Thompson\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14842,\"nameFull\":\"Ty Johnson\",\"nameShort\":\"T. Johnson\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14842.png\",\"nflByeWeek\":10,\"nameFirst\":\"Ty\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7372,\"nameFull\":\"Julio Jones\",\"nameShort\":\"J. Jones\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7372.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Hamstring\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Julio\",\"nameLast\":\"Jones\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"externalIds\":[{\"id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7401,\"nameFull\":\"Randall Cobb\",\"nameShort\":\"R. Cobb\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7401.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Toe\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Randall\",\"nameLast\":\"Cobb\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10707,\"nameFull\":\"Willie Snead\",\"nameShort\":\"W. Snead\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10707.png\",\"nflByeWeek\":7,\"nameFirst\":\"Willie\",\"nameLast\":\"Snead\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13127,\"nameFull\":\"Isaiah Ford\",\"nameShort\":\"I. Ford\",\"proTeamAbbreviation\":\"NE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13127.png\",\"nameFirst\":\"Isaiah\",\"nameLast\":\"Ford\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6611,\"nameFull\":\"Rob Gronkowski\",\"nameShort\":\"R. Gronkowski\",\"proTeamAbbreviation\":\"TB\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6611.png\",\"nflByeWeek\":13,\"nameFirst\":\"Rob\",\"nameLast\":\"Gronkowski\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9851,\"nameFull\":\"Josh Hill\",\"nameShort\":\"J. Hill\",\"proTeamAbbreviation\":\"NO\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9851.png\",\"nflByeWeek\":6,\"nameFirst\":\"Josh\",\"nameLast\":\"Hill\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9384,\"nameFull\":\"Vance McDonald\",\"nameShort\":\"V. McDonald\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9384.png\",\"nameFirst\":\"Vance\",\"nameLast\":\"McDonald\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13012,\"nameFull\":\"Jeremy Sprinkle\",\"nameShort\":\"J. Sprinkle\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13012.png\",\"nflByeWeek\":8,\"nameFirst\":\"Jeremy\",\"nameLast\":\"Sprinkle\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14692,\"nameFull\":\"Parris Campbell\",\"nameShort\":\"P. Campbell\",\"proTeamAbbreviation\":\"IND\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14692.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - MCL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Parris\",\"nameLast\":\"Campbell\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10895,\"nameFull\":\"Albert Wilson\",\"nameShort\":\"A. Wilson\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10895.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"EX\",\"description\":\"Opt Out\",\"severity\":\"OUT\",\"typeFull\":\"Reserve Exempt\"},\"nameFirst\":\"Albert\",\"nameLast\":\"Wilson\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581721,\"name\":\"Mjenkyns2004's Team\",\"recordOverall\":{\"wins\":15,\"losses\":7,\"winPercentage\":{\"value\":0.6818182,\"formatted\":\".682\"},\"rank\":3,\"formatted\":\"15-7\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":3,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1680.61,\"formatted\":\"1,680.61\"},\"pointsAgainst\":{\"value\":1640.56,\"formatted\":\"1,640.56\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"value\":100.0,\"formatted\":\"$100\"},\"initials\":\"MT\"},\"players\":[{\"proPlayer\":{\"id\":12919,\"nameFull\":\"Deshaun Watson\",\"nameShort\":\"D. Watson\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12919.png\",\"nflByeWeek\":8,\"nameFirst\":\"Deshaun\",\"nameLast\":\"Watson\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12894,\"nameFull\":\"Patrick Mahomes\",\"nameShort\":\"P. Mahomes\",\"proTeamAbbreviation\":\"KC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12894.png\",\"nflByeWeek\":10,\"nameFirst\":\"Patrick\",\"nameLast\":\"Mahomes\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":16105,\"nameFull\":\"James Robinson\",\"nameShort\":\"J. Robinson\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/16105.png\",\"nflByeWeek\":8,\"isRookie\":true,\"nameFirst\":\"James\",\"nameLast\":\"Robinson\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13021,\"nameFull\":\"Wayne Gallman\",\"nameShort\":\"W. Gallman\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13021.png\",\"nflByeWeek\":11,\"nameFirst\":\"Wayne\",\"nameLast\":\"Gallman\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"567fe739-5425-4d78-896c-f1486813910d\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11170,\"nameFull\":\"DeVante Parker\",\"nameShort\":\"D. Parker\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11170.png\",\"nflByeWeek\":7,\"nameFirst\":\"DeVante\",\"nameLast\":\"Parker\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10307,\"nameFull\":\"Jarvis Landry\",\"nameShort\":\"J. Landry\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10307.png\",\"nflByeWeek\":9,\"nameFirst\":\"Jarvis\",\"nameLast\":\"Landry\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12197,\"nameFull\":\"Tyreek Hill\",\"nameShort\":\"T. Hill\",\"proTeamAbbreviation\":\"KC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12197.png\",\"nflByeWeek\":10,\"nameFirst\":\"Tyreek\",\"nameLast\":\"Hill\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14702,\"nameFull\":\"Deebo Samuel\",\"nameShort\":\"D. Samuel\",\"proTeamAbbreviation\":\"SF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14702.png\",\"nflByeWeek\":11,\"nameFirst\":\"Deebo\",\"nameLast\":\"Samuel\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6660,\"nameFull\":\"Antonio Brown\",\"nameShort\":\"A. Brown\",\"proTeamAbbreviation\":\"TB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6660.png\",\"nflByeWeek\":13,\"nameFirst\":\"Antonio\",\"nameLast\":\"Brown\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13774,\"nameFull\":\"Hayden Hurst\",\"nameShort\":\"H. Hurst\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13774.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Ankle\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Hayden\",\"nameLast\":\"Hurst\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"externalIds\":[{\"id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10315,\"nameFull\":\"Derek Carr\",\"nameShort\":\"D. Carr\",\"proTeamAbbreviation\":\"LV\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10315.png\",\"nflByeWeek\":6,\"nameFirst\":\"Derek\",\"nameLast\":\"Carr\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7404,\"nameFull\":\"Andy Dalton\",\"nameShort\":\"A. Dalton\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7404.png\",\"nflByeWeek\":10,\"nameFirst\":\"Andy\",\"nameLast\":\"Dalton\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13760,\"nameFull\":\"Josh Rosen\",\"nameShort\":\"J. Rosen\",\"proTeamAbbreviation\":\"TB\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13760.png\",\"nflByeWeek\":13,\"nameFirst\":\"Josh\",\"nameLast\":\"Rosen\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14897,\"nameFull\":\"Myles Gaskin\",\"nameShort\":\"M. Gaskin\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14897.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Knee - MCL\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Myles\",\"nameLast\":\"Gaskin\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13828,\"nameFull\":\"Kerryon Johnson\",\"nameShort\":\"K. Johnson\",\"proTeamAbbreviation\":\"DET\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13828.png\",\"nflByeWeek\":5,\"nameFirst\":\"Kerryon\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9378,\"nameFull\":\"Le'Veon Bell\",\"nameShort\":\"L. Bell\",\"proTeamAbbreviation\":\"KC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9378.png\",\"nflByeWeek\":10,\"nameFirst\":\"Le'Veon\",\"nameLast\":\"Bell\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"7735c02a-ee75-447c-86e6-6c2168500050\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14788,\"nameFull\":\"Bryce Love\",\"nameShort\":\"B. Love\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14788.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Knee\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Bryce\",\"nameLast\":\"Love\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15916,\"nameFull\":\"Michael Warren\",\"nameShort\":\"M. Warren\",\"proTeamAbbreviation\":\"FA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15916.png\",\"isRookie\":true,\"nameFirst\":\"Michael\",\"nameLast\":\"Warren\",\"proTeam\":{\"abbreviation\":\"FA\",\"location\":\"Free\",\"name\":\"Agent\",\"isFreeAgent\":true},\"externalIds\":[{\"id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14849,\"nameFull\":\"Scott Miller\",\"nameShort\":\"S. Miller\",\"proTeamAbbreviation\":\"TB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14849.png\",\"nflByeWeek\":13,\"nameFirst\":\"Scott\",\"nameLast\":\"Miller\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15577,\"nameFull\":\"Bryan Edwards\",\"nameShort\":\"B. Edwards\",\"proTeamAbbreviation\":\"LV\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15577.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"Bryan\",\"nameLast\":\"Edwards\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15634,\"nameFull\":\"James Proche\",\"nameShort\":\"J. Proche\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15634.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"James\",\"nameLast\":\"Proche\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11194,\"nameFull\":\"Devin Funchess\",\"nameShort\":\"D. Funchess\",\"proTeamAbbreviation\":\"GB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11194.png\",\"nflByeWeek\":5,\"injury\":{\"typeAbbreviaition\":\"EX\",\"description\":\"Opt Out\",\"severity\":\"OUT\",\"typeFull\":\"Reserve Exempt\"},\"nameFirst\":\"Devin\",\"nameLast\":\"Funchess\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6610,\"nameFull\":\"Jimmy Graham\",\"nameShort\":\"J. Graham\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6610.png\",\"nflByeWeek\":11,\"nameFirst\":\"Jimmy\",\"nameLast\":\"Graham\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15644,\"nameFull\":\"Harrison Bryant\",\"nameShort\":\"H. Bryant\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15644.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Harrison\",\"nameLast\":\"Bryant\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14475,\"nameFull\":\"Will Dissly\",\"nameShort\":\"W. Dissly\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14475.png\",\"nflByeWeek\":6,\"nameFirst\":\"Will\",\"nameLast\":\"Dissly\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"383f4814-6836-4766-a297-fc063e8509cc\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12904,\"nameFull\":\"David Njoku\",\"nameShort\":\"D. Njoku\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12904.png\",\"nflByeWeek\":9,\"nameFirst\":\"David\",\"nameLast\":\"Njoku\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14775,\"nameFull\":\"Hakeem Butler\",\"nameShort\":\"H. Butler\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14775.png\",\"nflByeWeek\":9,\"nameFirst\":\"Hakeem\",\"nameLast\":\"Butler\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"472945d8-0062-417b-9967-430d381c80ae\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14695,\"nameFull\":\"Kahale Warring\",\"nameShort\":\"K. Warring\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14695.png\",\"nflByeWeek\":8,\"nameFirst\":\"Kahale\",\"nameLast\":\"Warring\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11187,\"nameFull\":\"David Johnson\",\"nameShort\":\"D. Johnson\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11187.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Concussion\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"David\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14018,\"nameFull\":\"Justin Jackson\",\"nameShort\":\"J. Jackson\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14018.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Justin\",\"nameLast\":\"Jackson\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13795,\"nameFull\":\"Courtland Sutton\",\"nameShort\":\"C. Sutton\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13795.png\",\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL + MCL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Courtland\",\"nameLast\":\"Sutton\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581722,\"name\":\"syd12nyjets's Team\",\"recordOverall\":{\"wins\":14,\"losses\":8,\"winPercentage\":{\"value\":0.6363636,\"formatted\":\".636\"},\"rank\":4,\"formatted\":\"14-8\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":4,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1587.06,\"formatted\":\"1,587.06\"},\"pointsAgainst\":{\"value\":1527.39,\"formatted\":\"1,527.39\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"value\":33.0,\"formatted\":\"$33\"},\"initials\":\"ST\"},\"players\":[{\"proPlayer\":{\"id\":15516,\"nameFull\":\"Justin Herbert\",\"nameShort\":\"J. Herbert\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15516.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"Justin\",\"nameLast\":\"Herbert\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8625,\"nameFull\":\"Kirk Cousins\",\"nameShort\":\"K. Cousins\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8625.png\",\"nflByeWeek\":7,\"nameFirst\":\"Kirk\",\"nameLast\":\"Cousins\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}],\"isOnTradingBlock\":true},{\"proPlayer\":{\"id\":11201,\"nameFull\":\"Duke Johnson\",\"nameShort\":\"D. Johnson\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11201.png\",\"nflByeWeek\":8,\"nameFirst\":\"Duke\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15539,\"nameFull\":\"Clyde Edwards-Helaire\",\"nameShort\":\"C. Edwards-Helaire\",\"proTeamAbbreviation\":\"KC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15539.png\",\"nflByeWeek\":10,\"isRookie\":true,\"nameFirst\":\"Clyde\",\"nameLast\":\"Edwards-Helaire\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"8aa01565-4481-443a-9951-642c98ded113\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12361,\"nameFull\":\"Robby Anderson\",\"nameShort\":\"R. Anderson\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12361.png\",\"nflByeWeek\":13,\"nameFirst\":\"Robby\",\"nameLast\":\"Anderson\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15523,\"nameFull\":\"CeeDee Lamb\",\"nameShort\":\"C. Lamb\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15523.png\",\"nflByeWeek\":10,\"isRookie\":true,\"nameFirst\":\"CeeDee\",\"nameLast\":\"Lamb\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"a72ea15b-5199-4101-a300-846e1c655add\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15540,\"nameFull\":\"Justin Jefferson\",\"nameShort\":\"J. Jefferson\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15540.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"Justin\",\"nameLast\":\"Jefferson\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12950,\"nameFull\":\"JuJu Smith-Schuster\",\"nameShort\":\"J. Smith-Schuster\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12950.png\",\"nameFirst\":\"JuJu\",\"nameLast\":\"Smith-Schuster\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}],\"isOnTradingBlock\":true},{\"proPlayer\":{\"id\":12930,\"nameFull\":\"Curtis Samuel\",\"nameShort\":\"C. Samuel\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12930.png\",\"nflByeWeek\":13,\"nameFirst\":\"Curtis\",\"nameLast\":\"Samuel\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13845,\"nameFull\":\"Mike Gesicki\",\"nameShort\":\"M. Gesicki\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13845.png\",\"nflByeWeek\":7,\"nameFirst\":\"Mike\",\"nameLast\":\"Gesicki\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10240,\"nameFull\":\"Teddy Bridgewater\",\"nameShort\":\"T. Bridgewater\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10240.png\",\"nflByeWeek\":13,\"nameFirst\":\"Teddy\",\"nameLast\":\"Bridgewater\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14683,\"nameFull\":\"Dwayne Haskins\",\"nameShort\":\"D. Haskins\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14683.png\",\"nflByeWeek\":8,\"nameFirst\":\"Dwayne\",\"nameLast\":\"Haskins\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15581,\"nameFull\":\"Jalen Hurts\",\"nameShort\":\"J. Hurts\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15581.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Jalen\",\"nameLast\":\"Hurts\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13870,\"nameFull\":\"Chase Edmonds\",\"nameShort\":\"C. Edmonds\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13870.png\",\"nflByeWeek\":8,\"nameFirst\":\"Chase\",\"nameLast\":\"Edmonds\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15548,\"nameFull\":\"Zack Moss\",\"nameShort\":\"Z. Moss\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15548.png\",\"nflByeWeek\":11,\"isRookie\":true,\"nameFirst\":\"Zack\",\"nameLast\":\"Moss\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15937,\"nameFull\":\"Salvon Ahmed\",\"nameShort\":\"S. Ahmed\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15937.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Shoulder\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"isRookie\":true,\"nameFirst\":\"Salvon\",\"nameLast\":\"Ahmed\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"0dbbd211-0372-4751-9751-e4df4ab1f8eb\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15585,\"nameFull\":\"Tee Higgins\",\"nameShort\":\"T. Higgins\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15585.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Tee\",\"nameLast\":\"Higgins\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"7963b029-5de4-4541-b00a-44eefe4349af\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14840,\"nameFull\":\"Travis Fulgham\",\"nameShort\":\"T. Fulgham\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14840.png\",\"nflByeWeek\":9,\"nameFirst\":\"Travis\",\"nameLast\":\"Fulgham\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14725,\"nameFull\":\"Mecole Hardman\",\"nameShort\":\"M. Hardman\",\"proTeamAbbreviation\":\"KC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14725.png\",\"nflByeWeek\":10,\"nameFirst\":\"Mecole\",\"nameLast\":\"Hardman\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15627,\"nameFull\":\"Gabriel Davis\",\"nameShort\":\"G. Davis\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15627.png\",\"nflByeWeek\":11,\"isRookie\":true,\"nameFirst\":\"Gabriel\",\"nameLast\":\"Davis\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15608,\"nameFull\":\"K.J. Hamler\",\"nameShort\":\"K. Hamler\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15608.png\",\"isRookie\":true,\"nameFirst\":\"K.J.\",\"nameLast\":\"Hamler\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"89338a12-65a8-4670-ac99-97281732ff79\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15526,\"nameFull\":\"Henry Ruggs\",\"nameShort\":\"H. Ruggs\",\"proTeamAbbreviation\":\"LV\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15526.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"Henry\",\"nameLast\":\"Ruggs\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"8a453858-7309-49ae-b8eb-de691847393f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14662,\"nameFull\":\"N'Keal Harry\",\"nameShort\":\"N. Harry\",\"proTeamAbbreviation\":\"NE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14662.png\",\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Shoulder\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"N'Keal\",\"nameLast\":\"Harry\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15528,\"nameFull\":\"Jalen Reagor\",\"nameShort\":\"J. Reagor\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15528.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Jalen\",\"nameLast\":\"Reagor\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15729,\"nameFull\":\"Tyler Johnson\",\"nameShort\":\"T. Johnson\",\"proTeamAbbreviation\":\"TB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15729.png\",\"nflByeWeek\":13,\"isRookie\":true,\"nameFirst\":\"Tyler\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"93c17735-5275-45cf-b3ef-620351c62313\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12140,\"nameFull\":\"Tyler Higbee\",\"nameShort\":\"T. Higbee\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12140.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Elbow\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Tyler\",\"nameLast\":\"Higbee\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14701,\"nameFull\":\"Irv Smith\",\"nameShort\":\"I. Smith\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14701.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"D\",\"description\":\"Groin\",\"severity\":\"OUT\",\"typeFull\":\"Doubtful\"},\"nameFirst\":\"Irv\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13886,\"nameFull\":\"Christopher Herndon\",\"nameShort\":\"C. Herndon\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13886.png\",\"nflByeWeek\":10,\"nameFirst\":\"Christopher\",\"nameLast\":\"Herndon\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13044,\"nameFull\":\"Marlon Mack\",\"nameShort\":\"M. Mack\",\"proTeamAbbreviation\":\"IND\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13044.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Achilles\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Marlon\",\"nameLast\":\"Mack\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10924,\"nameFull\":\"Damien Williams\",\"nameShort\":\"D. Williams\",\"proTeamAbbreviation\":\"KC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10924.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"EX\",\"description\":\"Opt Out\",\"severity\":\"OUT\",\"typeFull\":\"Reserve Exempt\"},\"nameFirst\":\"Damien\",\"nameLast\":\"Williams\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"90908a56-901b-466d-8689-943075da96fe\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15716,\"nameFull\":\"Albert Okwuegbunam\",\"nameShort\":\"A. Okwuegbunam\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15716.png\",\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"Albert\",\"nameLast\":\"Okwuegbunam\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581726,\"name\":\"SCJaguars's Team\",\"recordOverall\":{\"wins\":9,\"losses\":13,\"winPercentage\":{\"value\":0.4090909,\"formatted\":\".409\"},\"rank\":9,\"formatted\":\"9-13\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":9,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1493.25,\"formatted\":\"1,493.25\"},\"pointsAgainst\":{\"value\":1498.12,\"formatted\":\"1,498.12\"},\"streak\":{\"value\":-3.0,\"formatted\":\"L3\"},\"waiverAcquisitionBudget\":{\"value\":90.0,\"formatted\":\"$90\"},\"newItemCounts\":{\"activityUnread\":95},\"initials\":\"ST\"},\"players\":[{\"proPlayer\":{\"id\":14668,\"nameFull\":\"Daniel Jones\",\"nameShort\":\"D. Jones\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14668.png\",\"nflByeWeek\":11,\"nameFirst\":\"Daniel\",\"nameLast\":\"Jones\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"0042266b-cb28-4012-bfd2-06650badad97\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14722,\"nameFull\":\"Drew Lock\",\"nameShort\":\"D. Lock\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14722.png\",\"nameFirst\":\"Drew\",\"nameLast\":\"Lock\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12951,\"nameFull\":\"James Conner\",\"nameShort\":\"J. Conner\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12951.png\",\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"James\",\"nameLast\":\"Conner\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"28a084c0-14df-499f-bd1f-b975603626b7\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12025,\"nameFull\":\"Ezekiel Elliott\",\"nameShort\":\"E. Elliott\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12025.png\",\"nflByeWeek\":10,\"nameFirst\":\"Ezekiel\",\"nameLast\":\"Elliott\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13111,\"nameFull\":\"Aaron Jones\",\"nameShort\":\"A. Jones\",\"proTeamAbbreviation\":\"GB\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13111.png\",\"nflByeWeek\":5,\"nameFirst\":\"Aaron\",\"nameLast\":\"Jones\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15591,\"nameFull\":\"Antonio Gibson\",\"nameShort\":\"A. Gibson\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15591.png\",\"nflByeWeek\":8,\"isRookie\":true,\"nameFirst\":\"Antonio\",\"nameLast\":\"Gibson\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15597,\"nameFull\":\"Chase Claypool\",\"nameShort\":\"C. Claypool\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15597.png\",\"isRookie\":true,\"nameFirst\":\"Chase\",\"nameLast\":\"Claypool\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15544,\"nameFull\":\"Jerry Jeudy\",\"nameShort\":\"J. Jeudy\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15544.png\",\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Ankle\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"isRookie\":true,\"nameFirst\":\"Jerry\",\"nameLast\":\"Jeudy\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14059,\"nameFull\":\"Allen Lazard\",\"nameShort\":\"A. Lazard\",\"proTeamAbbreviation\":\"GB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14059.png\",\"nflByeWeek\":5,\"nameFirst\":\"Allen\",\"nameLast\":\"Lazard\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"6a23db75-021b-4808-99e6-21a33d34202b\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6126,\"nameFull\":\"Jared Cook\",\"nameShort\":\"J. Cook\",\"proTeamAbbreviation\":\"NO\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6126.png\",\"nflByeWeek\":6,\"nameFirst\":\"Jared\",\"nameLast\":\"Cook\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14860,\"nameFull\":\"Gardner Minshew\",\"nameShort\":\"G. Minshew\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14860.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Thumb\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Gardner\",\"nameLast\":\"Minshew\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"dabb52c0-455b-48fe-996b-abf758120623\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15639,\"nameFull\":\"Jake Luton\",\"nameShort\":\"J. Luton\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15639.png\",\"nflByeWeek\":8,\"isRookie\":true,\"nameFirst\":\"Jake\",\"nameLast\":\"Luton\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15522,\"nameFull\":\"Jordan Love\",\"nameShort\":\"J. Love\",\"proTeamAbbreviation\":\"GB\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15522.png\",\"nflByeWeek\":5,\"isRookie\":true,\"nameFirst\":\"Jordan\",\"nameLast\":\"Love\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13040,\"nameFull\":\"Jamaal Williams\",\"nameShort\":\"J. Williams\",\"proTeamAbbreviation\":\"GB\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13040.png\",\"nflByeWeek\":5,\"nameFirst\":\"Jamaal\",\"nameLast\":\"Williams\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15568,\"nameFull\":\"A.J. Dillon\",\"nameShort\":\"A. Dillon\",\"proTeamAbbreviation\":\"GB\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15568.png\",\"nflByeWeek\":5,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"isRookie\":true,\"nameFirst\":\"A.J.\",\"nameLast\":\"Dillon\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15692,\"nameFull\":\"Anthony McFarland\",\"nameShort\":\"A. McFarland\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15692.png\",\"isRookie\":true,\"nameFirst\":\"Anthony\",\"nameLast\":\"McFarland\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14919,\"nameFull\":\"Preston Williams\",\"nameShort\":\"P. Williams\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14919.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Foot\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Preston\",\"nameLast\":\"Williams\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15658,\"nameFull\":\"Darnell Mooney\",\"nameShort\":\"D. Mooney\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15658.png\",\"nflByeWeek\":11,\"isRookie\":true,\"nameFirst\":\"Darnell\",\"nameLast\":\"Mooney\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15558,\"nameFull\":\"Laviska Shenault\",\"nameShort\":\"L. Shenault\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15558.png\",\"nflByeWeek\":8,\"isRookie\":true,\"nameFirst\":\"Laviska\",\"nameLast\":\"Shenault\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":1732,\"nameFull\":\"Larry Fitzgerald\",\"nameShort\":\"L. Fitzgerald\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/1732.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Larry\",\"nameLast\":\"Fitzgerald\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12963,\"nameFull\":\"Kenny Golladay\",\"nameShort\":\"K. Golladay\",\"proTeamAbbreviation\":\"DET\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12963.png\",\"nflByeWeek\":5,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Hip\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Kenny\",\"nameLast\":\"Golladay\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15613,\"nameFull\":\"Denzel Mims\",\"nameShort\":\"D. Mims\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15613.png\",\"nflByeWeek\":10,\"isRookie\":true,\"nameFirst\":\"Denzel\",\"nameLast\":\"Mims\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15636,\"nameFull\":\"Collin Johnson\",\"nameShort\":\"C. Johnson\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15636.png\",\"nflByeWeek\":8,\"isRookie\":true,\"nameFirst\":\"Collin\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15730,\"nameFull\":\"K.J. Hill\",\"nameShort\":\"K. Hill\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15730.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"K.J.\",\"nameLast\":\"Hill\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9287,\"nameFull\":\"Darren Fells\",\"nameShort\":\"D. Fells\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9287.png\",\"nflByeWeek\":8,\"nameFirst\":\"Darren\",\"nameLast\":\"Fells\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7444,\"nameFull\":\"Kyle Rudolph\",\"nameShort\":\"K. Rudolph\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7444.png\",\"nflByeWeek\":7,\"nameFirst\":\"Kyle\",\"nameLast\":\"Rudolph\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9305,\"nameFull\":\"Tyler Eifert\",\"nameShort\":\"T. Eifert\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9305.png\",\"nflByeWeek\":8,\"nameFirst\":\"Tyler\",\"nameLast\":\"Eifert\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13168,\"nameFull\":\"Ricky Seals-Jones\",\"nameShort\":\"R. Seals-Jones\",\"proTeamAbbreviation\":\"KC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13168.png\",\"nflByeWeek\":10,\"nameFirst\":\"Ricky\",\"nameLast\":\"Seals-Jones\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"52735659-a294-4f64-a7f4-3591450834e5\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15814,\"nameFull\":\"Thaddeus Moss\",\"nameShort\":\"T. Moss\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15814.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Undisclosed\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"Thaddeus\",\"nameLast\":\"Moss\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"309b8104-8407-4365-989a-f726251714a7\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581753,\"name\":\"fede_mndz's Team\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":7,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":7,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1505.43,\"formatted\":\"1,505.43\"},\"pointsAgainst\":{\"value\":1578.21,\"formatted\":\"1,578.21\"},\"streak\":{\"value\":-2.0,\"formatted\":\"L2\"},\"waiverAcquisitionBudget\":{\"value\":29.0,\"formatted\":\"$29\"},\"newItemCounts\":{\"activityUnread\":43},\"initials\":\"FT\"},\"players\":[{\"proPlayer\":{\"id\":5371,\"nameFull\":\"Matt Ryan\",\"nameShort\":\"M. Ryan\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/5371.png\",\"nflByeWeek\":10,\"nameFirst\":\"Matt\",\"nameLast\":\"Ryan\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"externalIds\":[{\"id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":394,\"nameFull\":\"Ben Roethlisberger\",\"nameShort\":\"B. Roethlisberger\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/394.png\",\"nameFirst\":\"Ben\",\"nameLast\":\"Roethlisberger\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14673,\"nameFull\":\"Josh Jacobs\",\"nameShort\":\"J. Jacobs\",\"proTeamAbbreviation\":\"LV\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14673.png\",\"nflByeWeek\":6,\"nameFirst\":\"Josh\",\"nameLast\":\"Jacobs\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12572,\"nameFull\":\"J.D. McKissic\",\"nameShort\":\"J. McKissic\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12572.png\",\"nflByeWeek\":8,\"nameFirst\":\"J.D.\",\"nameLast\":\"McKissic\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9504,\"nameFull\":\"Latavius Murray\",\"nameShort\":\"L. Murray\",\"proTeamAbbreviation\":\"NO\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9504.png\",\"nflByeWeek\":6,\"nameFirst\":\"Latavius\",\"nameLast\":\"Murray\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10295,\"nameFull\":\"Davante Adams\",\"nameShort\":\"D. Adams\",\"proTeamAbbreviation\":\"GB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10295.png\",\"nflByeWeek\":5,\"nameFirst\":\"Davante\",\"nameLast\":\"Adams\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15603,\"nameFull\":\"Michael Pittman\",\"nameShort\":\"M. Pittman\",\"proTeamAbbreviation\":\"IND\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15603.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"Michael\",\"nameLast\":\"Pittman\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13261,\"nameFull\":\"Keelan Cole\",\"nameShort\":\"K. Cole\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13261.png\",\"nflByeWeek\":8,\"nameFirst\":\"Keelan\",\"nameLast\":\"Cole\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12096,\"nameFull\":\"Michael Thomas\",\"nameShort\":\"M. Thomas\",\"proTeamAbbreviation\":\"NO\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12096.png\",\"nflByeWeek\":6,\"nameFirst\":\"Michael\",\"nameLast\":\"Thomas\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10257,\"nameFull\":\"Eric Ebron\",\"nameShort\":\"E. Ebron\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10257.png\",\"nameFirst\":\"Eric\",\"nameLast\":\"Ebron\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8562,\"nameFull\":\"Nick Foles\",\"nameShort\":\"N. Foles\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8562.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"D\",\"description\":\"Hip\",\"severity\":\"OUT\",\"typeFull\":\"Doubtful\"},\"nameFirst\":\"Nick\",\"nameLast\":\"Foles\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12893,\"nameFull\":\"Mitchell Trubisky\",\"nameShort\":\"M. Trubisky\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12893.png\",\"nflByeWeek\":11,\"nameFirst\":\"Mitchell\",\"nameLast\":\"Trubisky\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14180,\"nameFull\":\"Kyle Allen\",\"nameShort\":\"K. Allen\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14180.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Kyle\",\"nameLast\":\"Allen\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14773,\"nameFull\":\"Ryan Finley\",\"nameShort\":\"R. Finley\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14773.png\",\"nflByeWeek\":9,\"nameFirst\":\"Ryan\",\"nameLast\":\"Finley\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13141,\"nameFull\":\"Chris Carson\",\"nameShort\":\"C. Carson\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13141.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Foot\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Chris\",\"nameLast\":\"Carson\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12892,\"nameFull\":\"Christian McCaffrey\",\"nameShort\":\"C. McCaffrey\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12892.png\",\"nflByeWeek\":13,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Shoulder - AC Joint\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Christian\",\"nameLast\":\"McCaffrey\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10335,\"nameFull\":\"Carlos Hyde\",\"nameShort\":\"C. Hyde\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10335.png\",\"nflByeWeek\":6,\"nameFirst\":\"Carlos\",\"nameLast\":\"Hyde\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14063,\"nameFull\":\"Phillip Lindsay\",\"nameShort\":\"P. Lindsay\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14063.png\",\"nameFirst\":\"Phillip\",\"nameLast\":\"Lindsay\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7535,\"nameFull\":\"Dion Lewis\",\"nameShort\":\"D. Lewis\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7535.png\",\"nflByeWeek\":11,\"nameFirst\":\"Dion\",\"nameLast\":\"Lewis\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12761,\"nameFull\":\"Jalen Richard\",\"nameShort\":\"J. Richard\",\"proTeamAbbreviation\":\"LV\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12761.png\",\"nflByeWeek\":6,\"nameFirst\":\"Jalen\",\"nameLast\":\"Richard\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12114,\"nameFull\":\"Jordan Howard\",\"nameShort\":\"J. Howard\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12114.png\",\"nflByeWeek\":9,\"nameFirst\":\"Jordan\",\"nameLast\":\"Howard\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13909,\"nameFull\":\"Braxton Berrios\",\"nameShort\":\"B. Berrios\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13909.png\",\"nflByeWeek\":10,\"nameFirst\":\"Braxton\",\"nameLast\":\"Berrios\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":7789,\"nameFull\":\"Dontrelle Inman\",\"nameShort\":\"D. Inman\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/7789.png\",\"nflByeWeek\":8,\"nameFirst\":\"Dontrelle\",\"nameLast\":\"Inman\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12332,\"nameFull\":\"Marcus Johnson\",\"nameShort\":\"M. Johnson\",\"proTeamAbbreviation\":\"IND\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12332.png\",\"nflByeWeek\":7,\"nameFirst\":\"Marcus\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8422,\"nameFull\":\"Alshon Jeffery\",\"nameShort\":\"A. Jeffery\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8422.png\",\"nflByeWeek\":9,\"nameFirst\":\"Alshon\",\"nameLast\":\"Jeffery\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9235,\"nameFull\":\"Josh Gordon\",\"nameShort\":\"J. Gordon\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9235.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"SUS\",\"description\":\"Suspension\",\"severity\":\"OUT\",\"typeFull\":\"Suspended\"},\"nameFirst\":\"Josh\",\"nameLast\":\"Gordon\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15573,\"nameFull\":\"Cole Kmet\",\"nameShort\":\"C. Kmet\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15573.png\",\"nflByeWeek\":11,\"isRookie\":true,\"nameFirst\":\"Cole\",\"nameLast\":\"Kmet\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14734,\"nameFull\":\"Dawson Knox\",\"nameShort\":\"D. Knox\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14734.png\",\"nflByeWeek\":11,\"nameFirst\":\"Dawson\",\"nameLast\":\"Knox\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14471,\"nameFull\":\"Jeffery Wilson\",\"nameShort\":\"J. Wilson\",\"proTeamAbbreviation\":\"SF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14471.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Jeffery\",\"nameLast\":\"Wilson\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14859,\"nameFull\":\"Ryquell Armstead\",\"nameShort\":\"R. Armstead\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14859.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Ryquell\",\"nameLast\":\"Armstead\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"ce079a73-5884-4184-909a-8feafd4645d9\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13216,\"nameFull\":\"Blake Jarwin\",\"nameShort\":\"B. Jarwin\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13216.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Blake\",\"nameLast\":\"Jarwin\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581803,\"name\":\"ZachFarni's Team\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":8,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":8,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1363.6,\"formatted\":\"1,363.6\"},\"pointsAgainst\":{\"value\":1463.57,\"formatted\":\"1,463.57\"},\"streak\":{\"value\":3.0,\"formatted\":\"W3\"},\"waiverAcquisitionBudget\":{\"value\":66.0,\"formatted\":\"$66\"},\"newItemCounts\":{\"activityUnread\":26},\"initials\":\"ZT\"},\"players\":[{\"proPlayer\":{\"id\":8514,\"nameFull\":\"Ryan Tannehill\",\"nameShort\":\"R. Tannehill\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8514.png\",\"nameFirst\":\"Ryan\",\"nameLast\":\"Tannehill\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"externalIds\":[{\"id\":\"5812204c-6dae-4450-8011-99e0f72864ac\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15533,\"nameFull\":\"Tua Tagovailoa\",\"nameShort\":\"T. Tagovailoa\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15533.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"D\",\"description\":\"Thumb\",\"severity\":\"OUT\",\"typeFull\":\"Doubtful\"},\"isRookie\":true,\"nameFirst\":\"Tua\",\"nameLast\":\"Tagovailoa\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15563,\"nameFull\":\"Cam Akers\",\"nameShort\":\"C. Akers\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15563.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Cam\",\"nameLast\":\"Akers\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"74980532-8158-4b56-91db-5053878737b4\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14746,\"nameFull\":\"Terry McLaurin\",\"nameShort\":\"T. McLaurin\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14746.png\",\"nflByeWeek\":8,\"nameFirst\":\"Terry\",\"nameLast\":\"McLaurin\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13764,\"nameFull\":\"D.J. Moore\",\"nameShort\":\"D. Moore\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13764.png\",\"nflByeWeek\":13,\"nameFirst\":\"D.J.\",\"nameLast\":\"Moore\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14694,\"nameFull\":\"A.J. Brown\",\"nameShort\":\"A. Brown\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14694.png\",\"nameFirst\":\"A.J.\",\"nameLast\":\"Brown\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"externalIds\":[{\"id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13806,\"nameFull\":\"Christian Kirk\",\"nameShort\":\"C. Kirk\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13806.png\",\"nflByeWeek\":8,\"nameFirst\":\"Christian\",\"nameLast\":\"Kirk\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14836,\"nameFull\":\"Hunter Renfrow\",\"nameShort\":\"H. Renfrow\",\"proTeamAbbreviation\":\"LV\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14836.png\",\"nflByeWeek\":6,\"nameFirst\":\"Hunter\",\"nameLast\":\"Renfrow\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11156,\"nameFull\":\"Breshad Perriman\",\"nameShort\":\"B. Perriman\",\"proTeamAbbreviation\":\"NYJ\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11156.png\",\"nflByeWeek\":10,\"nameFirst\":\"Breshad\",\"nameLast\":\"Perriman\",\"proTeam\":{\"abbreviation\":\"NYJ\",\"location\":\"New York\",\"name\":\"Jets\"},\"externalIds\":[{\"id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12887,\"nameFull\":\"Mo Alie-Cox\",\"nameShort\":\"M. Alie-Cox\",\"proTeamAbbreviation\":\"IND\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12887.png\",\"nflByeWeek\":7,\"nameFirst\":\"Mo\",\"nameLast\":\"Alie-Cox\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10311,\"nameFull\":\"Jimmy Garoppolo\",\"nameShort\":\"J. Garoppolo\",\"proTeamAbbreviation\":\"SF\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10311.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Jimmy\",\"nameLast\":\"Garoppolo\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13810,\"nameFull\":\"Mason Rudolph\",\"nameShort\":\"M. Rudolph\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13810.png\",\"nameFirst\":\"Mason\",\"nameLast\":\"Rudolph\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8382,\"nameFull\":\"Andrew Luck\",\"nameShort\":\"A. Luck\",\"proTeamAbbreviation\":\"FA\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8382.png\",\"nameFirst\":\"Andrew\",\"nameLast\":\"Luck\",\"proTeam\":{\"abbreviation\":\"FA\",\"location\":\"Free\",\"name\":\"Agent\",\"isFreeAgent\":true},\"externalIds\":[{\"id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15604,\"nameFull\":\"Jonathan Taylor\",\"nameShort\":\"J. Taylor\",\"proTeamAbbreviation\":\"IND\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15604.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"isRookie\":true,\"nameFirst\":\"Jonathan\",\"nameLast\":\"Taylor\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15555,\"nameFull\":\"J.K. Dobbins\",\"nameShort\":\"J. Dobbins\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15555.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"isRookie\":true,\"nameFirst\":\"J.K.\",\"nameLast\":\"Dobbins\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14175,\"nameFull\":\"Reggie Bonnafon\",\"nameShort\":\"R. Bonnafon\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14175.png\",\"nflByeWeek\":13,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Reggie\",\"nameLast\":\"Bonnafon\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14185,\"nameFull\":\"Mike Boone\",\"nameShort\":\"M. Boone\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14185.png\",\"nflByeWeek\":7,\"nameFirst\":\"Mike\",\"nameLast\":\"Boone\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13581,\"nameFull\":\"Dare Ogunbowale\",\"nameShort\":\"D. Ogunbowale\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13581.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Hand\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Dare\",\"nameLast\":\"Ogunbowale\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15770,\"nameFull\":\"Raymond Calais\",\"nameShort\":\"R. Calais\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15770.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Raymond\",\"nameLast\":\"Calais\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15765,\"nameFull\":\"Eno Benjamin\",\"nameShort\":\"E. Benjamin\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15765.png\",\"nflByeWeek\":8,\"isRookie\":true,\"nameFirst\":\"Eno\",\"nameLast\":\"Benjamin\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13333,\"nameFull\":\"Zach Pascal\",\"nameShort\":\"Z. Pascal\",\"proTeamAbbreviation\":\"IND\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13333.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Knee\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Zach\",\"nameLast\":\"Pascal\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15662,\"nameFull\":\"John Hightower\",\"nameShort\":\"J. Hightower\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15662.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"John\",\"nameLast\":\"Hightower\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13665,\"nameFull\":\"Dan Arnold\",\"nameShort\":\"D. Arnold\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13665.png\",\"nflByeWeek\":8,\"nameFirst\":\"Dan\",\"nameLast\":\"Arnold\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14731,\"nameFull\":\"Jace Sternberger\",\"nameShort\":\"J. Sternberger\",\"proTeamAbbreviation\":\"GB\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14731.png\",\"nflByeWeek\":5,\"nameFirst\":\"Jace\",\"nameLast\":\"Sternberger\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14781,\"nameFull\":\"Foster Moreau\",\"nameShort\":\"F. Moreau\",\"proTeamAbbreviation\":\"LV\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14781.png\",\"nflByeWeek\":6,\"nameFirst\":\"Foster\",\"nameLast\":\"Moreau\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15146,\"nameFull\":\"Devine Ozigbo\",\"nameShort\":\"D. Ozigbo\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15146.png\",\"nflByeWeek\":8,\"nameFirst\":\"Devine\",\"nameLast\":\"Ozigbo\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15629,\"nameFull\":\"Isaiah Coulter\",\"nameShort\":\"I. Coulter\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15629.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Coach's Decision\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"isRookie\":true,\"nameFirst\":\"Isaiah\",\"nameLast\":\"Coulter\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15667,\"nameFull\":\"Quez Watkins\",\"nameShort\":\"Q. Watkins\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"WR\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Quez\",\"nameLast\":\"Watkins\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"ca85137c-205c-458e-8b77-8457849f614c\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1581988,\"name\":\"The DK Crew\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":6,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":6,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1609.31,\"formatted\":\"1,609.31\"},\"pointsAgainst\":{\"value\":1573.97,\"formatted\":\"1,573.97\"},\"streak\":{\"value\":2.0,\"formatted\":\"W2\"},\"waiverAcquisitionBudget\":{\"value\":100.0,\"formatted\":\"$100\"},\"newItemCounts\":{\"activityUnread\":50},\"initials\":\"TD\"},\"players\":[{\"proPlayer\":{\"id\":6038,\"nameFull\":\"Matthew Stafford\",\"nameShort\":\"M. Stafford\",\"proTeamAbbreviation\":\"DET\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6038.png\",\"nflByeWeek\":5,\"nameFirst\":\"Matthew\",\"nameLast\":\"Stafford\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":3356,\"nameFull\":\"Alex Smith\",\"nameShort\":\"A. Smith\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/3356.png\",\"nflByeWeek\":8,\"nameFirst\":\"Alex\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13900,\"nameFull\":\"Nyheim Hines\",\"nameShort\":\"N. Hines\",\"proTeamAbbreviation\":\"IND\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13900.png\",\"nflByeWeek\":7,\"nameFirst\":\"Nyheim\",\"nameLast\":\"Hines\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12051,\"nameFull\":\"Tyler Boyd\",\"nameShort\":\"T. Boyd\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12051.png\",\"nflByeWeek\":9,\"nameFirst\":\"Tyler\",\"nameLast\":\"Boyd\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12890,\"nameFull\":\"Mike Williams\",\"nameShort\":\"M. Williams\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12890.png\",\"nflByeWeek\":6,\"nameFirst\":\"Mike\",\"nameLast\":\"Williams\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14706,\"nameFull\":\"DK Metcalf\",\"nameShort\":\"D. Metcalf\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14706.png\",\"nflByeWeek\":6,\"nameFirst\":\"DK\",\"nameLast\":\"Metcalf\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11242,\"nameFull\":\"Tyler Lockett\",\"nameShort\":\"T. Lockett\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11242.png\",\"nflByeWeek\":6,\"nameFirst\":\"Tyler\",\"nameLast\":\"Lockett\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14949,\"nameFull\":\"Jakobi Meyers\",\"nameShort\":\"J. Meyers\",\"proTeamAbbreviation\":\"NE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14949.png\",\"nameFirst\":\"Jakobi\",\"nameLast\":\"Meyers\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14665,\"nameFull\":\"Noah Fant\",\"nameShort\":\"N. Fant\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14665.png\",\"nameFirst\":\"Noah\",\"nameLast\":\"Fant\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12088,\"nameFull\":\"Hunter Henry\",\"nameShort\":\"H. Henry\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12088.png\",\"nflByeWeek\":6,\"nameFirst\":\"Hunter\",\"nameLast\":\"Henry\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15532,\"nameFull\":\"Joe Burrow\",\"nameShort\":\"J. Burrow\",\"proTeamAbbreviation\":\"CIN\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15532.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL + MCL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"Joe\",\"nameLast\":\"Burrow\",\"proTeam\":{\"abbreviation\":\"CIN\",\"location\":\"Cincinnati\",\"name\":\"Bengals\"},\"externalIds\":[{\"id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11184,\"nameFull\":\"Marcus Mariota\",\"nameShort\":\"M. Mariota\",\"proTeamAbbreviation\":\"LV\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11184.png\",\"nflByeWeek\":6,\"nameFirst\":\"Marcus\",\"nameLast\":\"Mariota\",\"proTeam\":{\"abbreviation\":\"LV\",\"location\":\"Las Vegas\",\"name\":\"Raiders\"},\"externalIds\":[{\"id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15601,\"nameFull\":\"D'Andre Swift\",\"nameShort\":\"D. Swift\",\"proTeamAbbreviation\":\"DET\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15601.png\",\"nflByeWeek\":5,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Concussion\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"isRookie\":true,\"nameFirst\":\"D'Andre\",\"nameLast\":\"Swift\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12920,\"nameFull\":\"Leonard Fournette\",\"nameShort\":\"L. Fournette\",\"proTeamAbbreviation\":\"TB\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12920.png\",\"nflByeWeek\":13,\"nameFirst\":\"Leonard\",\"nameLast\":\"Fournette\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14759,\"nameFull\":\"Tony Pollard\",\"nameShort\":\"T. Pollard\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14759.png\",\"nflByeWeek\":10,\"nameFirst\":\"Tony\",\"nameLast\":\"Pollard\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":16076,\"nameFull\":\"J.J. Taylor\",\"nameShort\":\"J. Taylor\",\"proTeamAbbreviation\":\"NE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/16076.png\",\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Quadriceps\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"isRookie\":true,\"nameFirst\":\"J.J.\",\"nameLast\":\"Taylor\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"879325b1-c961-4c9a-a3a4-679d77a28293\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15704,\"nameFull\":\"Jason Huntley\",\"nameShort\":\"J. Huntley\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15704.png\",\"nflByeWeek\":9,\"isRookie\":true,\"nameFirst\":\"Jason\",\"nameLast\":\"Huntley\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10305,\"nameFull\":\"Allen Robinson\",\"nameShort\":\"A. Robinson\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10305.png\",\"nflByeWeek\":11,\"nameFirst\":\"Allen\",\"nameLast\":\"Robinson\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"0fd32417-8410-4a8f-8919-386c433bca43\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13952,\"nameFull\":\"Marquez Valdes-Scantling\",\"nameShort\":\"M. Valdes-Scantling\",\"proTeamAbbreviation\":\"GB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13952.png\",\"nflByeWeek\":5,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Achilles\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Marquez\",\"nameLast\":\"Valdes-Scantling\",\"proTeam\":{\"abbreviation\":\"GB\",\"location\":\"Green Bay\",\"name\":\"Packers\"},\"externalIds\":[{\"id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13808,\"nameFull\":\"James Washington\",\"nameShort\":\"J. Washington\",\"proTeamAbbreviation\":\"PIT\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13808.png\",\"nameFirst\":\"James\",\"nameLast\":\"Washington\",\"proTeam\":{\"abbreviation\":\"PIT\",\"location\":\"Pittsburgh\",\"name\":\"Steelers\"},\"externalIds\":[{\"id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15260,\"nameFull\":\"Jalen Guyton\",\"nameShort\":\"J. Guyton\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15260.png\",\"nflByeWeek\":6,\"nameFirst\":\"Jalen\",\"nameLast\":\"Guyton\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12223,\"nameFull\":\"Rashard Higgins\",\"nameShort\":\"R. Higgins\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12223.png\",\"nflByeWeek\":9,\"nameFirst\":\"Rashard\",\"nameLast\":\"Higgins\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15251,\"nameFull\":\"Steven Sims\",\"nameShort\":\"S. Sims\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15251.png\",\"nflByeWeek\":8,\"nameFirst\":\"Steven\",\"nameLast\":\"Sims\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14872,\"nameFull\":\"Olabisi Johnson\",\"nameShort\":\"O. Johnson\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14872.png\",\"nflByeWeek\":7,\"nameFirst\":\"Olabisi\",\"nameLast\":\"Johnson\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13903,\"nameFull\":\"Keke Coutee\",\"nameShort\":\"K. Coutee\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13903.png\",\"nflByeWeek\":8,\"nameFirst\":\"Keke\",\"nameLast\":\"Coutee\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"40caae08-0389-4c59-b796-d924047f57f9\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15579,\"nameFull\":\"Lynn Bowden\",\"nameShort\":\"L. Bowden\",\"proTeamAbbreviation\":\"MIA\",\"position\":\"RB/WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15579.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"Lynn\",\"nameLast\":\"Bowden\",\"proTeam\":{\"abbreviation\":\"MIA\",\"location\":\"Miami\",\"name\":\"Dolphins\"},\"externalIds\":[{\"id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\"}],\"positionEligibility\":[\"RB\",\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12906,\"nameFull\":\"Evan Engram\",\"nameShort\":\"E. Engram\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12906.png\",\"nflByeWeek\":11,\"nameFirst\":\"Evan\",\"nameLast\":\"Engram\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10823,\"nameFull\":\"Trey Burton\",\"nameShort\":\"T. Burton\",\"proTeamAbbreviation\":\"IND\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10823.png\",\"nflByeWeek\":7,\"nameFirst\":\"Trey\",\"nameLast\":\"Burton\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14858,\"nameFull\":\"Kelvin Harmon\",\"nameShort\":\"K. Harmon\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14858.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"PUP\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Physically Unable to Perform\"},\"nameFirst\":\"Kelvin\",\"nameLast\":\"Harmon\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15625,\"nameFull\":\"Isaiah Hodgins\",\"nameShort\":\"I. Hodgins\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15625.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Shoulder\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"isRookie\":true,\"nameFirst\":\"Isaiah\",\"nameLast\":\"Hodgins\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12891,\"nameFull\":\"O.J. Howard\",\"nameShort\":\"O. Howard\",\"proTeamAbbreviation\":\"TB\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12891.png\",\"nflByeWeek\":13,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Achilles\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"O.J.\",\"nameLast\":\"Howard\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1582416,\"name\":\"Ray Jay Team\",\"recordOverall\":{\"wins\":21,\"losses\":1,\"winPercentage\":{\"value\":0.95454544,\"formatted\":\".955\"},\"rank\":1,\"formatted\":\"21-1\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":1,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1778.77,\"formatted\":\"1,778.77\"},\"pointsAgainst\":{\"value\":1507.04,\"formatted\":\"1,507.04\"},\"streak\":{\"value\":11.0,\"formatted\":\"W11\"},\"waiverAcquisitionBudget\":{\"value\":98.0,\"formatted\":\"$98\"},\"newItemCounts\":{\"activityUnread\":2},\"initials\":\"RJ\"},\"players\":[{\"proPlayer\":{\"id\":309,\"nameFull\":\"Tom Brady\",\"nameShort\":\"T. Brady\",\"proTeamAbbreviation\":\"TB\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/309.png\",\"nflByeWeek\":13,\"nameFirst\":\"Tom\",\"nameLast\":\"Brady\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13653,\"nameFull\":\"Taysom Hill\",\"nameShort\":\"T. Hill\",\"proTeamAbbreviation\":\"NO\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13653.png\",\"nflByeWeek\":6,\"nameFirst\":\"Taysom\",\"nameLast\":\"Hill\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12042,\"nameFull\":\"Derrick Henry\",\"nameShort\":\"D. Henry\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12042.png\",\"nameFirst\":\"Derrick\",\"nameLast\":\"Henry\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"externalIds\":[{\"id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12934,\"nameFull\":\"Kareem Hunt\",\"nameShort\":\"K. Hunt\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12934.png\",\"nflByeWeek\":9,\"nameFirst\":\"Kareem\",\"nameLast\":\"Hunt\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13785,\"nameFull\":\"Ronald Jones\",\"nameShort\":\"R. Jones\",\"proTeamAbbreviation\":\"TB\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13785.png\",\"nflByeWeek\":13,\"nameFirst\":\"Ronald\",\"nameLast\":\"Jones\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"15965c39-17be-4338-911a-8f337f48a3ce\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11329,\"nameFull\":\"Stefon Diggs\",\"nameShort\":\"S. Diggs\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11329.png\",\"nflByeWeek\":11,\"nameFirst\":\"Stefon\",\"nameLast\":\"Diggs\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12970,\"nameFull\":\"Cooper Kupp\",\"nameShort\":\"C. Kupp\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12970.png\",\"nflByeWeek\":9,\"nameFirst\":\"Cooper\",\"nameLast\":\"Kupp\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12023,\"nameFull\":\"Will Fuller\",\"nameShort\":\"W. Fuller\",\"proTeamAbbreviation\":\"HOU\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12023.png\",\"nflByeWeek\":8,\"nameFirst\":\"Will\",\"nameLast\":\"Fuller\",\"proTeam\":{\"abbreviation\":\"HOU\",\"location\":\"Houston\",\"name\":\"Texans\"},\"externalIds\":[{\"id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14833,\"nameFull\":\"Darius Slayton\",\"nameShort\":\"D. Slayton\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14833.png\",\"nflByeWeek\":11,\"nameFirst\":\"Darius\",\"nameLast\":\"Slayton\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9360,\"nameFull\":\"Travis Kelce\",\"nameShort\":\"T. Kelce\",\"proTeamAbbreviation\":\"KC\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9360.png\",\"nflByeWeek\":10,\"nameFirst\":\"Travis\",\"nameLast\":\"Kelce\",\"proTeam\":{\"abbreviation\":\"KC\",\"location\":\"Kansas City\",\"name\":\"Chiefs\"},\"externalIds\":[{\"id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13758,\"nameFull\":\"Baker Mayfield\",\"nameShort\":\"B. Mayfield\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13758.png\",\"nflByeWeek\":9,\"nameFirst\":\"Baker\",\"nameLast\":\"Mayfield\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"30198d30-9769-4e10-ac86-b4c91d940802\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13194,\"nameFull\":\"Nick Mullens\",\"nameShort\":\"N. Mullens\",\"proTeamAbbreviation\":\"SF\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13194.png\",\"nflByeWeek\":11,\"nameFirst\":\"Nick\",\"nameLast\":\"Mullens\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11182,\"nameFull\":\"Todd Gurley\",\"nameShort\":\"T. Gurley\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11182.png\",\"nflByeWeek\":10,\"injury\":{\"typeAbbreviaition\":\"OUT\",\"description\":\"Knee\",\"severity\":\"OUT\",\"typeFull\":\"Out\"},\"nameFirst\":\"Todd\",\"nameLast\":\"Gurley\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"externalIds\":[{\"id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15680,\"nameFull\":\"DeeJay Dallas\",\"nameShort\":\"D. Dallas\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15680.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"DeeJay\",\"nameLast\":\"Dallas\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13796,\"nameFull\":\"Royce Freeman\",\"nameShort\":\"R. Freeman\",\"proTeamAbbreviation\":\"DEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13796.png\",\"nameFirst\":\"Royce\",\"nameLast\":\"Freeman\",\"proTeam\":{\"abbreviation\":\"DEN\",\"location\":\"Denver\",\"name\":\"Broncos\"},\"externalIds\":[{\"id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13003,\"nameFull\":\"Tarik Cohen\",\"nameShort\":\"T. Cohen\",\"proTeamAbbreviation\":\"CHI\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13003.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Tarik\",\"nameLast\":\"Cohen\",\"proTeam\":{\"abbreviation\":\"CHI\",\"location\":\"Chicago\",\"name\":\"Bears\"},\"externalIds\":[{\"id\":\"a8342d20-9901-49a6-bc45-79f192418188\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13772,\"nameFull\":\"Rashaad Penny\",\"nameShort\":\"R. Penny\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13772.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"PUP\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Physically Unable to Perform\"},\"nameFirst\":\"Rashaad\",\"nameLast\":\"Penny\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13029,\"nameFull\":\"Josh Reynolds\",\"nameShort\":\"J. Reynolds\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13029.png\",\"nflByeWeek\":9,\"nameFirst\":\"Josh\",\"nameLast\":\"Reynolds\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14717,\"nameFull\":\"Andy Isabella\",\"nameShort\":\"A. Isabella\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14717.png\",\"nflByeWeek\":8,\"nameFirst\":\"Andy\",\"nameLast\":\"Isabella\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15557,\"nameFull\":\"Devin Duvernay\",\"nameShort\":\"D. Duvernay\",\"proTeamAbbreviation\":\"BAL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15557.png\",\"nflByeWeek\":7,\"isRookie\":true,\"nameFirst\":\"Devin\",\"nameLast\":\"Duvernay\",\"proTeam\":{\"abbreviation\":\"BAL\",\"location\":\"Baltimore\",\"name\":\"Ravens\"},\"externalIds\":[{\"id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15703,\"nameFull\":\"Quintez Cephus\",\"nameShort\":\"Q. Cephus\",\"proTeamAbbreviation\":\"DET\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15703.png\",\"nflByeWeek\":5,\"isRookie\":true,\"nameFirst\":\"Quintez\",\"nameLast\":\"Cephus\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10353,\"nameFull\":\"Logan Thomas\",\"nameShort\":\"L. Thomas\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10353.png\",\"nflByeWeek\":8,\"nameFirst\":\"Logan\",\"nameLast\":\"Thomas\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13813,\"nameFull\":\"Dallas Goedert\",\"nameShort\":\"D. Goedert\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13813.png\",\"nflByeWeek\":9,\"nameFirst\":\"Dallas\",\"nameLast\":\"Goedert\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9376,\"nameFull\":\"Zach Ertz\",\"nameShort\":\"Z. Ertz\",\"proTeamAbbreviation\":\"PHI\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9376.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Ankle\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"nameFirst\":\"Zach\",\"nameLast\":\"Ertz\",\"proTeam\":{\"abbreviation\":\"PHI\",\"location\":\"Philadelphia\",\"name\":\"Eagles\"},\"externalIds\":[{\"id\":\"de3421f7-2147-4835-89a5-724e87bad463\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15575,\"nameFull\":\"Adam Trautman\",\"nameShort\":\"A. Trautman\",\"proTeamAbbreviation\":\"NO\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15575.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"Adam\",\"nameLast\":\"Trautman\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14806,\"nameFull\":\"Kaden Smith\",\"nameShort\":\"K. Smith\",\"proTeamAbbreviation\":\"NYG\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14806.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Illness\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Kaden\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"NYG\",\"location\":\"New York\",\"name\":\"Giants\"},\"externalIds\":[{\"id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15679,\"nameFull\":\"Colby Parkinson\",\"nameShort\":\"C. Parkinson\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15679.png\",\"nflByeWeek\":6,\"isRookie\":true,\"nameFirst\":\"Colby\",\"nameLast\":\"Parkinson\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15748,\"nameFull\":\"Tommy Stevens\",\"nameShort\":\"T. Stevens\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15748.png\",\"nflByeWeek\":13,\"isRookie\":true,\"nameFirst\":\"Tommy\",\"nameLast\":\"Stevens\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]},{\"team\":{\"id\":1582423,\"name\":\"The Verblanders\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1582423_0_150x150.jpg\",\"recordOverall\":{\"wins\":15,\"losses\":7,\"winPercentage\":{\"value\":0.6818182,\"formatted\":\".682\"},\"rank\":2,\"formatted\":\"15-7\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":2,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1848.42,\"formatted\":\"1,848.42\"},\"pointsAgainst\":{\"value\":1638.25,\"formatted\":\"1,638.25\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"value\":30.0,\"formatted\":\"$30\"},\"newItemCounts\":{\"activityUnread\":2},\"initials\":\"TV\"},\"players\":[{\"proPlayer\":{\"id\":14664,\"nameFull\":\"Kyler Murray\",\"nameShort\":\"K. Murray\",\"proTeamAbbreviation\":\"ARI\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14664.png\",\"nflByeWeek\":8,\"nameFirst\":\"Kyler\",\"nameLast\":\"Murray\",\"proTeam\":{\"abbreviation\":\"ARI\",\"location\":\"Arizona\",\"name\":\"Cardinals\"},\"externalIds\":[{\"id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12102,\"nameFull\":\"Jared Goff\",\"nameShort\":\"J. Goff\",\"proTeamAbbreviation\":\"LAR\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12102.png\",\"nflByeWeek\":9,\"nameFirst\":\"Jared\",\"nameLast\":\"Goff\",\"proTeam\":{\"abbreviation\":\"LAR\",\"location\":\"Los Angeles\",\"name\":\"Rams\"},\"externalIds\":[{\"id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12929,\"nameFull\":\"Dalvin Cook\",\"nameShort\":\"D. Cook\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12929.png\",\"nflByeWeek\":7,\"nameFirst\":\"Dalvin\",\"nameLast\":\"Cook\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":11373,\"nameFull\":\"Mike Davis\",\"nameShort\":\"M. Davis\",\"proTeamAbbreviation\":\"CAR\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/11373.png\",\"nflByeWeek\":13,\"nameFirst\":\"Mike\",\"nameLast\":\"Davis\",\"proTeam\":{\"abbreviation\":\"CAR\",\"location\":\"Carolina\",\"name\":\"Panthers\"},\"externalIds\":[{\"id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14712,\"nameFull\":\"Damien Harris\",\"nameShort\":\"D. Harris\",\"proTeamAbbreviation\":\"NE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14712.png\",\"nameFirst\":\"Damien\",\"nameLast\":\"Harris\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13904,\"nameFull\":\"Kalen Ballage\",\"nameShort\":\"K. Ballage\",\"proTeamAbbreviation\":\"LAC\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13904.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Ankle\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Kalen\",\"nameLast\":\"Ballage\",\"proTeam\":{\"abbreviation\":\"LAC\",\"location\":\"Los Angeles\",\"name\":\"Chargers\"},\"externalIds\":[{\"id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9891,\"nameFull\":\"Adam Thielen\",\"nameShort\":\"A. Thielen\",\"proTeamAbbreviation\":\"MIN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9891.png\",\"nflByeWeek\":7,\"injury\":{\"typeAbbreviaition\":\"CVD\",\"description\":\"Undisclosed\",\"severity\":\"OUT\",\"typeFull\":\"COVID-19\"},\"nameFirst\":\"Adam\",\"nameLast\":\"Thielen\",\"proTeam\":{\"abbreviation\":\"MIN\",\"location\":\"Minnesota\",\"name\":\"Vikings\"},\"externalIds\":[{\"id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10252,\"nameFull\":\"Mike Evans\",\"nameShort\":\"M. Evans\",\"proTeamAbbreviation\":\"TB\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10252.png\",\"nflByeWeek\":13,\"nameFirst\":\"Mike\",\"nameLast\":\"Evans\",\"proTeam\":{\"abbreviation\":\"TB\",\"location\":\"Tampa Bay\",\"name\":\"Buccaneers\"},\"externalIds\":[{\"id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13776,\"nameFull\":\"Calvin Ridley\",\"nameShort\":\"C. Ridley\",\"proTeamAbbreviation\":\"ATL\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13776.png\",\"nflByeWeek\":10,\"nameFirst\":\"Calvin\",\"nameLast\":\"Ridley\",\"proTeam\":{\"abbreviation\":\"ATL\",\"location\":\"Atlanta\",\"name\":\"Falcons\"},\"externalIds\":[{\"id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12069,\"nameFull\":\"Austin Hooper\",\"nameShort\":\"A. Hooper\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12069.png\",\"nflByeWeek\":9,\"nameFirst\":\"Austin\",\"nameLast\":\"Hooper\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":325,\"nameFull\":\"Drew Brees\",\"nameShort\":\"D. Brees\",\"proTeamAbbreviation\":\"NO\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/325.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Ribs\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Drew\",\"nameLast\":\"Brees\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15624,\"nameFull\":\"Jake Fromm\",\"nameShort\":\"J. Fromm\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"QB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15624.png\",\"nflByeWeek\":11,\"isRookie\":true,\"nameFirst\":\"Jake\",\"nameLast\":\"Fromm\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\"}],\"positionEligibility\":[\"QB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"PASSER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":14736,\"nameFull\":\"Devin Singletary\",\"nameShort\":\"D. Singletary\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/14736.png\",\"nflByeWeek\":11,\"nameFirst\":\"Devin\",\"nameLast\":\"Singletary\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":4893,\"nameFull\":\"Adrian Peterson\",\"nameShort\":\"A. Peterson\",\"proTeamAbbreviation\":\"DET\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/4893.png\",\"nflByeWeek\":5,\"nameFirst\":\"Adrian\",\"nameLast\":\"Peterson\",\"proTeam\":{\"abbreviation\":\"DET\",\"location\":\"Detroit\",\"name\":\"Lions\"},\"externalIds\":[{\"id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13750,\"nameFull\":\"Sony Michel\",\"nameShort\":\"S. Michel\",\"proTeamAbbreviation\":\"NE\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13750.png\",\"nameFirst\":\"Sony\",\"nameLast\":\"Michel\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15550,\"nameFull\":\"Darrynton Evans\",\"nameShort\":\"D. Evans\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"RB\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15550.png\",\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Hamstring\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"isRookie\":true,\"nameFirst\":\"Darrynton\",\"nameLast\":\"Evans\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"externalIds\":[{\"id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\"}],\"positionEligibility\":[\"RB\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RUSHER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8735,\"nameFull\":\"Cole Beasley\",\"nameShort\":\"C. Beasley\",\"proTeamAbbreviation\":\"BUF\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8735.png\",\"nflByeWeek\":11,\"nameFirst\":\"Cole\",\"nameLast\":\"Beasley\",\"proTeam\":{\"abbreviation\":\"BUF\",\"location\":\"Buffalo\",\"name\":\"Bills\"},\"externalIds\":[{\"id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":12913,\"nameFull\":\"Corey Davis\",\"nameShort\":\"C. Davis\",\"proTeamAbbreviation\":\"TEN\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/12913.png\",\"nameFirst\":\"Corey\",\"nameLast\":\"Davis\",\"proTeam\":{\"abbreviation\":\"TEN\",\"location\":\"Tennessee\",\"name\":\"Titans\"},\"externalIds\":[{\"id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6636,\"nameFull\":\"Emmanuel Sanders\",\"nameShort\":\"E. Sanders\",\"proTeamAbbreviation\":\"NO\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6636.png\",\"nflByeWeek\":6,\"nameFirst\":\"Emmanuel\",\"nameLast\":\"Sanders\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13117,\"nameFull\":\"David Moore\",\"nameShort\":\"D. Moore\",\"proTeamAbbreviation\":\"SEA\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13117.png\",\"nflByeWeek\":6,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Hip\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"David\",\"nameLast\":\"Moore\",\"proTeam\":{\"abbreviation\":\"SEA\",\"location\":\"Seattle\",\"name\":\"Seahawks\"},\"externalIds\":[{\"id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13819,\"nameFull\":\"Tre'Quan Smith\",\"nameShort\":\"T. Smith\",\"proTeamAbbreviation\":\"NO\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13819.png\",\"nflByeWeek\":6,\"nameFirst\":\"Tre'Quan\",\"nameLast\":\"Smith\",\"proTeam\":{\"abbreviation\":\"NO\",\"location\":\"New Orleans\",\"name\":\"Saints\"},\"externalIds\":[{\"id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":8493,\"nameFull\":\"T.Y. Hilton\",\"nameShort\":\"T. Hilton\",\"proTeamAbbreviation\":\"IND\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/8493.png\",\"nflByeWeek\":7,\"nameFirst\":\"T.Y.\",\"nameLast\":\"Hilton\",\"proTeam\":{\"abbreviation\":\"IND\",\"location\":\"Indianapolis\",\"name\":\"Colts\"},\"externalIds\":[{\"id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":6269,\"nameFull\":\"Julian Edelman\",\"nameShort\":\"J. Edelman\",\"proTeamAbbreviation\":\"NE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/6269.png\",\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Julian\",\"nameLast\":\"Edelman\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15685,\"nameFull\":\"Antonio Gandy-Golden\",\"nameShort\":\"A. Gandy-Golden\",\"proTeamAbbreviation\":\"WAS\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15685.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Hamstring\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"Antonio\",\"nameLast\":\"Gandy-Golden\",\"proTeam\":{\"abbreviation\":\"WAS\",\"location\":\"Washington\",\"name\":\"Football Team\"},\"externalIds\":[{\"id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13853,\"nameFull\":\"Dalton Schultz\",\"nameShort\":\"D. Schultz\",\"proTeamAbbreviation\":\"DAL\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13853.png\",\"nflByeWeek\":10,\"nameFirst\":\"Dalton\",\"nameLast\":\"Schultz\",\"proTeam\":{\"abbreviation\":\"DAL\",\"location\":\"Dallas\",\"name\":\"Cowboys\"},\"externalIds\":[{\"id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":9395,\"nameFull\":\"Jordan Reed\",\"nameShort\":\"J. Reed\",\"proTeamAbbreviation\":\"SF\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/9395.png\",\"nflByeWeek\":11,\"injury\":{\"typeAbbreviaition\":\"Q\",\"description\":\"Illness\",\"severity\":\"QUESTIONABLE\",\"typeFull\":\"Questionable\"},\"nameFirst\":\"Jordan\",\"nameLast\":\"Reed\",\"proTeam\":{\"abbreviation\":\"SF\",\"location\":\"San Francisco\",\"name\":\"49ers\"},\"externalIds\":[{\"id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15616,\"nameFull\":\"Dalton Keene\",\"nameShort\":\"D. Keene\",\"proTeamAbbreviation\":\"NE\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15616.png\",\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"isRookie\":true,\"nameFirst\":\"Dalton\",\"nameLast\":\"Keene\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":10243,\"nameFull\":\"Odell Beckham\",\"nameShort\":\"O. Beckham\",\"proTeamAbbreviation\":\"CLE\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/10243.png\",\"nflByeWeek\":9,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Odell\",\"nameLast\":\"Beckham\",\"proTeam\":{\"abbreviation\":\"CLE\",\"location\":\"Cleveland\",\"name\":\"Browns\"},\"externalIds\":[{\"id\":\"354dec38-b88b-4ba0-8974-859123f27c45\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":13052,\"nameFull\":\"Dede Westbrook\",\"nameShort\":\"D. Westbrook\",\"proTeamAbbreviation\":\"JAC\",\"position\":\"WR\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/13052.png\",\"nflByeWeek\":8,\"injury\":{\"typeAbbreviaition\":\"IR\",\"description\":\"Knee - ACL\",\"severity\":\"OUT\",\"typeFull\":\"Injured Reserve\"},\"nameFirst\":\"Dede\",\"nameLast\":\"Westbrook\",\"proTeam\":{\"abbreviation\":\"JAC\",\"location\":\"Jacksonville\",\"name\":\"Jaguars\"},\"externalIds\":[{\"id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\"}],\"positionEligibility\":[\"WR\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]},{\"proPlayer\":{\"id\":15614,\"nameFull\":\"Devin Asiasi\",\"nameShort\":\"D. Asiasi\",\"proTeamAbbreviation\":\"NE\",\"position\":\"TE\",\"headshotUrl\":\"https://d26bvpybnxg29h.cloudfront.net/nfl/15614.png\",\"injury\":{\"typeAbbreviaition\":\"IRD\",\"description\":\"Undisclosed\",\"severity\":\"OUT\",\"typeFull\":\"IR Designated for Return\"},\"isRookie\":true,\"nameFirst\":\"Devin\",\"nameLast\":\"Asiasi\",\"proTeam\":{\"abbreviation\":\"NE\",\"location\":\"New England\",\"name\":\"Patriots\"},\"externalIds\":[{\"id\":\"05e15d81-6bb1-49f7-b677-63475d073961\"}],\"positionEligibility\":[\"TE\"]},\"viewingActualPoints\":{\"formatted\":\"—\"},\"transactionStatus\":{\"locked\":{},\"isLineupStatusLocked\":true},\"requestedGamesPeriod\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"viewingFormat\":\"TOTAL\",\"viewingRange\":{\"low\":-1,\"high\":-2},\"displayGroup\":\"RECEIVER\",\"lastX\":[{\"duration\":1},{\"duration\":3},{\"duration\":5}]}]}]}"),
+ date = structure(1606597376, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 3.9e-05,
+ connect = 4.4e-05, pretransfer = 0.000168, starttransfer = 0.078816,
+ total = 0.079904
+ )
+), class = "response")
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueRules-32423e.R b/tests/testthat/flea/api/FetchLeagueRules-32423e.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueRules-32423e.R
rename to tests/testthat/flea/api/FetchLeagueRules-32423e.R
diff --git a/tests/testthat/flea/api/FetchLeagueRules-43d23d.R b/tests/testthat/flea/api/FetchLeagueRules-43d23d.R
new file mode 100644
index 00000000..cc0b21c5
--- /dev/null
+++ b/tests/testthat/flea/api/FetchLeagueRules-43d23d.R
@@ -0,0 +1,34 @@
+structure(list(
+ url = "https://www.fleaflicker.com/api/FetchLeagueRules?league_id=312861",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:02:52 GMT",
+ `content-type` = "application/json;charset=utf-8", vary = "accept-encoding",
+ `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:02:52 GMT",
+ `content-type` = "application/json;charset=utf-8",
+ vary = "accept-encoding", `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"rosterPositions\":[{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"min\":1,\"max\":6,\"start\":1,\"colors\":[\"DRAFT_BOARD_RED\"]},{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":1,\"max\":28,\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\"]},{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":28,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"min\":1,\"max\":28,\"start\":1,\"colors\":[\"DRAFT_BOARD_YELLOW\"]},{\"label\":\"RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"RB\",\"WR\",\"TE\"],\"start\":4,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},{\"label\":\"QB/RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\"]},{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":3,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"BN\",\"max\":18},{\"label\":\"K\",\"group\":\"START\",\"eligibility\":[\"K\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_GRAY\"]},{\"label\":\"P\",\"group\":\"START\",\"eligibility\":[\"P\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_GRAY\"]},{\"label\":\"D/ST\",\"group\":\"START\",\"eligibility\":[\"D/ST\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"CB\",\"group\":\"START\",\"eligibility\":[\"CB\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"S\",\"group\":\"START\",\"eligibility\":[\"S\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"EDR\",\"group\":\"START\",\"eligibility\":[\"EDR\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"IL\",\"group\":\"START\",\"eligibility\":[\"IL\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"LB\",\"group\":\"START\",\"eligibility\":[\"LB\"],\"max\":1,\"colors\":[\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"TAXI\",\"group\":\"TAXI\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]}],\"groups\":[{\"label\":\"Passing\",\"scoringRules\":[{\"category\":{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":25,\"description\":\"1 point for every 25 Passing Yards (0.04 per)\",\"pointsPer\":{\"value\":0.04,\"formatted\":\"0.04\"},\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"},{\"category\":{\"id\":5,\"abbreviation\":\"TD\",\"nameSingular\":\"Passing TD\",\"namePlural\":\"Passing TDs\"},\"points\":{\"value\":6.0,\"formatted\":\"6\"},\"forEvery\":1,\"description\":\"6 points for every Passing TD\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"},{\"category\":{\"id\":4,\"abbreviation\":\"2PC\",\"nameSingular\":\"2 Pt Conversion Passing\",\"namePlural\":\"2 Pt Conversions Passing\"},\"points\":{\"value\":2.0,\"formatted\":\"2\"},\"forEvery\":1,\"description\":\"2 points for every 2 Pt Conversion Passing\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"},{\"category\":{\"id\":7,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\",\"lowerIsBetter\":true},\"points\":{\"value\":-1.0,\"formatted\":\"-1\"},\"forEvery\":1,\"description\":\"-1 point for every Interception\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${categorySingular}\"},{\"category\":{\"id\":133,\"abbreviation\":\"FD\",\"nameSingular\":\"Passing First Down\",\"namePlural\":\"Passing First Downs\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":4,\"description\":\"1 point for every 4 Passing First Downs (0.25 per)\",\"pointsPer\":{\"value\":0.25,\"formatted\":\"0.25\"},\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"}],\"allCategories\":[{\"id\":2,\"abbreviation\":\"Cmp\",\"nameSingular\":\"Passing Completion\",\"namePlural\":\"Passing Completions\"},{\"id\":166,\"abbreviation\":\"Cmp20+\",\"nameSingular\":\"Passing Completion of 20+ Yards\",\"namePlural\":\"Passing Completions of 20+ Yards\"},{\"id\":167,\"abbreviation\":\"Cmp40+\",\"nameSingular\":\"Passing Completion of 40+ Yards\",\"namePlural\":\"Passing Completions of 40+ Yards\"},{\"id\":168,\"abbreviation\":\"Cmp60+\",\"nameSingular\":\"Passing Completion of 60+ Yards\",\"namePlural\":\"Passing Completions of 60+ Yards\"},{\"id\":1,\"abbreviation\":\"Att\",\"nameSingular\":\"Passing Attempt\",\"namePlural\":\"Passing Attempts\"},{\"id\":10,\"abbreviation\":\"I\",\"nameSingular\":\"Incomplete Pass\",\"namePlural\":\"Incomplete Passes\",\"lowerIsBetter\":true},{\"id\":145,\"abbreviation\":\"Drp\",\"nameSingular\":\"Dropped Pass\",\"namePlural\":\"Dropped Passes\"},{\"id\":12,\"abbreviation\":\"%\",\"nameSingular\":\"Completion Percentage\",\"namePlural\":\"Completion Percentage\"},{\"id\":3,\"abbreviation\":\"Yd\",\"nameSingular\":\"Passing Yard\",\"namePlural\":\"Passing Yards\"},{\"id\":18,\"abbreviation\":\"AVG\",\"nameSingular\":\"Yard Per Attempt\",\"namePlural\":\"Yard Per Attempt\"},{\"id\":5,\"abbreviation\":\"TD\",\"nameSingular\":\"Passing TD\",\"namePlural\":\"Passing TDs\"},{\"id\":6,\"abbreviation\":\"TY\",\"nameSingular\":\"Passing TD\",\"namePlural\":\"Passing TDs\",\"multiValue\":true},{\"id\":4,\"abbreviation\":\"2PC\",\"nameSingular\":\"2 Pt Conversion Passing\",\"namePlural\":\"2 Pt Conversions Passing\"},{\"id\":7,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\",\"lowerIsBetter\":true},{\"id\":8,\"abbreviation\":\"IFT\",\"nameSingular\":\"Interception For TD\",\"namePlural\":\"Interceptions For TD\",\"lowerIsBetter\":true},{\"id\":9,\"abbreviation\":\"S\",\"nameSingular\":\"Time Sacked\",\"namePlural\":\"Times Sacked\",\"lowerIsBetter\":true},{\"id\":165,\"abbreviation\":\"SkYds\",\"nameSingular\":\"Sacked Yard\",\"namePlural\":\"Sacked Yards\",\"lowerIsBetter\":true},{\"id\":11,\"abbreviation\":\"Rat\",\"nameSingular\":\"QB Rating\",\"namePlural\":\"QB Rating\"},{\"id\":133,\"abbreviation\":\"FD\",\"nameSingular\":\"Passing First Down\",\"namePlural\":\"Passing First Downs\"}]},{\"label\":\"Rushing\",\"scoringRules\":[{\"category\":{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":10,\"description\":\"1 point for every 10 Rushing Yards (0.1 per)\",\"pointsPer\":{\"value\":0.1,\"formatted\":\"0.1\"},\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"},{\"category\":{\"id\":23,\"abbreviation\":\"2PC\",\"nameSingular\":\"2 Pt Conversion Rushing\",\"namePlural\":\"2 Pt Conversions Rushing\"},\"points\":{\"value\":2.0,\"formatted\":\"2\"},\"forEvery\":1,\"description\":\"2 points for every 2 Pt Conversion Rushing\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"},{\"category\":{\"id\":24,\"abbreviation\":\"TD\",\"nameSingular\":\"Rushing TD\",\"namePlural\":\"Rushing TDs\"},\"points\":{\"value\":6.0,\"formatted\":\"6\"},\"forEvery\":1,\"description\":\"6 points for every Rushing TD\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"},{\"category\":{\"id\":132,\"abbreviation\":\"FD\",\"nameSingular\":\"Rushing First Down\",\"namePlural\":\"Rushing First Downs\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":4,\"description\":\"1 point for every 4 Rushing First Downs (0.25 per)\",\"pointsPer\":{\"value\":0.25,\"formatted\":\"0.25\"},\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"}],\"allCategories\":[{\"id\":21,\"abbreviation\":\"Att\",\"nameSingular\":\"Rushing Attempt\",\"namePlural\":\"Rushing Attempts\"},{\"id\":172,\"abbreviation\":\"Att20+\",\"nameSingular\":\"Rushing Attempt of 20+ Yards\",\"namePlural\":\"Rushing Attempts of 20+ Yards\"},{\"id\":173,\"abbreviation\":\"Att40+\",\"nameSingular\":\"Rushing Attempt of 40+ Yards\",\"namePlural\":\"Rushing Attempts of 40+ Yards\"},{\"id\":174,\"abbreviation\":\"Att60+\",\"nameSingular\":\"Rushing Attempt of 60+ Yards\",\"namePlural\":\"Rushing Attempts of 60+ Yards\"},{\"id\":22,\"abbreviation\":\"Yd\",\"nameSingular\":\"Rushing Yard\",\"namePlural\":\"Rushing Yards\"},{\"id\":30,\"abbreviation\":\"AVG\",\"nameSingular\":\"Yard Per Attempt\",\"namePlural\":\"Yard Per Attempt\"},{\"id\":23,\"abbreviation\":\"2PC\",\"nameSingular\":\"2 Pt Conversion Rushing\",\"namePlural\":\"2 Pt Conversions Rushing\"},{\"id\":24,\"abbreviation\":\"TD\",\"nameSingular\":\"Rushing TD\",\"namePlural\":\"Rushing TDs\"},{\"id\":25,\"abbreviation\":\"TY\",\"nameSingular\":\"Rushing TD\",\"namePlural\":\"Rushing TDs\",\"multiValue\":true},{\"id\":132,\"abbreviation\":\"FD\",\"nameSingular\":\"Rushing First Down\",\"namePlural\":\"Rushing First Downs\"}]},{\"label\":\"Receiving\",\"scoringRules\":[{\"category\":{\"id\":41,\"abbreviation\":\"Rec\",\"nameSingular\":\"Catch\",\"namePlural\":\"Catches\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":2,\"description\":\"1 point for every 2 Catches (0.5 per)\",\"pointsPer\":{\"value\":0.5,\"formatted\":\"0.5\"},\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"},{\"category\":{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":10,\"description\":\"1 point for every 10 Receiving Yards (0.1 per)\",\"pointsPer\":{\"value\":0.1,\"formatted\":\"0.1\"},\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"},{\"category\":{\"id\":43,\"abbreviation\":\"2PC\",\"nameSingular\":\"2 Pt Conversion Receiving\",\"namePlural\":\"2 Pt Conversions Receiving\"},\"points\":{\"value\":2.0,\"formatted\":\"2\"},\"forEvery\":1,\"description\":\"2 points for every 2 Pt Conversion Receiving\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"},{\"category\":{\"id\":44,\"abbreviation\":\"TD\",\"nameSingular\":\"Receiving TD\",\"namePlural\":\"Receiving TDs\"},\"points\":{\"value\":6.0,\"formatted\":\"6\"},\"forEvery\":1,\"description\":\"6 points for every Receiving TD\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"},{\"category\":{\"id\":131,\"abbreviation\":\"FD\",\"nameSingular\":\"Receiving First Down\",\"namePlural\":\"Receiving First Downs\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":2,\"description\":\"1 point for every 2 Receiving First Downs (0.5 per)\",\"pointsPer\":{\"value\":0.5,\"formatted\":\"0.5\"},\"applyTo\":[\"QB\",\"WR\",\"TE\"],\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"},{\"category\":{\"id\":131,\"abbreviation\":\"FD\",\"nameSingular\":\"Receiving First Down\",\"namePlural\":\"Receiving First Downs\"},\"points\":{\"value\":1.0,\"formatted\":\"1\"},\"forEvery\":4,\"description\":\"1 point for every 4 Receiving First Downs (0.25 per)\",\"pointsPer\":{\"value\":0.25,\"formatted\":\"0.25\"},\"applyTo\":[\"RB\"],\"template\":\"${points} point for every ${forEvery} ${categoryPlural} (${pointsPer} per)\"}],\"allCategories\":[{\"id\":41,\"abbreviation\":\"Rec\",\"nameSingular\":\"Catch\",\"namePlural\":\"Catches\"},{\"id\":169,\"abbreviation\":\"Rec20+\",\"nameSingular\":\"Catch of 20+ Yards\",\"namePlural\":\"Catches of 20+ Yards\"},{\"id\":170,\"abbreviation\":\"Rec40+\",\"nameSingular\":\"Catch of 40+ Yards\",\"namePlural\":\"Catches of 40+ Yards\"},{\"id\":171,\"abbreviation\":\"Rec60+\",\"nameSingular\":\"Catch of 60+ Yards\",\"namePlural\":\"Catches of 60+ Yards\"},{\"id\":123,\"abbreviation\":\"Tar\",\"nameSingular\":\"Target\",\"namePlural\":\"Targets\"},{\"id\":175,\"abbreviation\":\"Rec\",\"nameSingular\":\"Target % Caught\",\"namePlural\":\"Target % Caught\"},{\"id\":144,\"abbreviation\":\"Drp\",\"nameSingular\":\"Drop\",\"namePlural\":\"Drops\"},{\"id\":42,\"abbreviation\":\"Yd\",\"nameSingular\":\"Receiving Yard\",\"namePlural\":\"Receiving Yards\"},{\"id\":141,\"abbreviation\":\"YAC\",\"nameSingular\":\"Yard After Catch\",\"namePlural\":\"Yards After Catch\"},{\"id\":46,\"abbreviation\":\"AVG\",\"nameSingular\":\"Yard Per Reception\",\"namePlural\":\"Yard Per Reception\"},{\"id\":43,\"abbreviation\":\"2PC\",\"nameSingular\":\"2 Pt Conversion Receiving\",\"namePlural\":\"2 Pt Conversions Receiving\"},{\"id\":44,\"abbreviation\":\"TD\",\"nameSingular\":\"Receiving TD\",\"namePlural\":\"Receiving TDs\"},{\"id\":45,\"abbreviation\":\"TY\",\"nameSingular\":\"Receiving TD\",\"namePlural\":\"Receiving TDs\",\"multiValue\":true},{\"id\":131,\"abbreviation\":\"FD\",\"nameSingular\":\"Receiving First Down\",\"namePlural\":\"Receiving First Downs\"}]},{\"label\":\"Misc\",\"scoringRules\":[{\"category\":{\"id\":26,\"abbreviation\":\"Fum\",\"nameSingular\":\"Fumble\",\"namePlural\":\"Fumbles\",\"lowerIsBetter\":true},\"points\":{\"value\":-1.0,\"formatted\":\"-1\"},\"forEvery\":1,\"description\":\"-1 point for every Fumble\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} point for every ${categorySingular}\"},{\"category\":{\"id\":118,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive Fumble Recovery TD\",\"namePlural\":\"Offensive Fumble Recovery TDs\"},\"points\":{\"value\":6.0,\"formatted\":\"6\"},\"forEvery\":1,\"description\":\"6 points for every Offensive Fumble Recovery TD\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"}],\"allCategories\":[{\"id\":26,\"abbreviation\":\"Fum\",\"nameSingular\":\"Fumble\",\"namePlural\":\"Fumbles\",\"lowerIsBetter\":true},{\"id\":27,\"abbreviation\":\"Lost\",\"nameSingular\":\"Fumble Lost\",\"namePlural\":\"Fumbles Lost\",\"lowerIsBetter\":true},{\"id\":153,\"abbreviation\":\"LFT\",\"nameSingular\":\"Fumble Lost for TD\",\"namePlural\":\"Fumbles Lost for TD\",\"lowerIsBetter\":true},{\"id\":120,\"abbreviation\":\"Own\",\"nameSingular\":\"Own Fumble Recovery\",\"namePlural\":\"Own Fumble Recoveries\"},{\"id\":118,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive Fumble Recovery TD\",\"namePlural\":\"Offensive Fumble Recovery TDs\"},{\"id\":119,\"abbreviation\":\"ROTY\",\"nameSingular\":\"Offensive Fumble Recovery TD\",\"namePlural\":\"Offensive Fumble Recovery TDs\",\"multiValue\":true},{\"id\":28,\"abbreviation\":\"Yd\",\"nameSingular\":\"Scrimmage Yard\",\"namePlural\":\"Scrimmage Yards\"},{\"id\":148,\"abbreviation\":\"Tch\",\"nameSingular\":\"Touch\",\"namePlural\":\"Touches\"},{\"id\":142,\"abbreviation\":\"YACT\",\"nameSingular\":\"Yard After Contact\",\"namePlural\":\"Yards After Contact\"},{\"id\":143,\"abbreviation\":\"T\",\"nameSingular\":\"Broken Tackle\",\"namePlural\":\"Broken Tackles\"},{\"id\":146,\"abbreviation\":\"Pen\",\"nameSingular\":\"Penalty\",\"namePlural\":\"Penalties\"},{\"id\":147,\"abbreviation\":\"Yds\",\"nameSingular\":\"Penalty Yard\",\"namePlural\":\"Yards Penalized\"},{\"id\":29,\"abbreviation\":\"TD\",\"nameSingular\":\"Offensive + Special Teams TD\",\"namePlural\":\"Offensive + Special Teams TDs\"},{\"id\":122,\"abbreviation\":\"TD\",\"nameSingular\":\"Touchdown\",\"namePlural\":\"Touchdowns\"},{\"id\":134,\"abbreviation\":\"FD\",\"nameSingular\":\"First Down\",\"namePlural\":\"First Downs\"},{\"id\":111,\"abbreviation\":\"Yd\",\"nameSingular\":\"All-Purpose Yard\",\"namePlural\":\"All-Purpose Yards\"},{\"id\":135,\"abbreviation\":\"T\",\"nameSingular\":\"Turnover\",\"namePlural\":\"Turnovers\",\"lowerIsBetter\":true},{\"id\":151,\"abbreviation\":\"W\",\"nameSingular\":\"Win\",\"namePlural\":\"Wins\"},{\"id\":152,\"abbreviation\":\"L\",\"nameSingular\":\"Loss\",\"namePlural\":\"Losses\"}]},{\"label\":\"Kicking\",\"allCategories\":[{\"id\":101,\"abbreviation\":\"FG\",\"nameSingular\":\"Field Goal Made\",\"namePlural\":\"Field Goals Made\"},{\"id\":102,\"abbreviation\":\"FY\",\"nameSingular\":\"Field Goal Made\",\"namePlural\":\"Field Goals Made\",\"multiValue\":true},{\"id\":103,\"abbreviation\":\"FM\",\"nameSingular\":\"Field Goal Missed\",\"namePlural\":\"Field Goal Missed\",\"lowerIsBetter\":true},{\"id\":106,\"abbreviation\":\"FMY\",\"nameSingular\":\"Field Goal Missed\",\"namePlural\":\"Field Goals Missed\",\"multiValue\":true},{\"id\":107,\"abbreviation\":\"Att\",\"nameSingular\":\"Field Goal Attempt\",\"namePlural\":\"Field Goal Attempts\"},{\"id\":109,\"abbreviation\":\"%\",\"nameSingular\":\"FG Percentage\",\"namePlural\":\"FG Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"FG\"},{\"id\":104,\"abbreviation\":\"XP\",\"nameSingular\":\"XP\",\"namePlural\":\"XPs\"},{\"id\":105,\"abbreviation\":\"XM\",\"nameSingular\":\"XP Missed\",\"namePlural\":\"XPs Missed\",\"lowerIsBetter\":true},{\"id\":108,\"abbreviation\":\"Att\",\"nameSingular\":\"Extra Point Attempt\",\"namePlural\":\"Extra Point Attempts\"},{\"id\":110,\"abbreviation\":\"%\",\"nameSingular\":\"XP Percentage\",\"namePlural\":\"XP Percentage\",\"summaryLabelIfDiffersFromAbbreviation\":\"XP\"}]},{\"label\":\"Returning\",\"scoringRules\":[{\"category\":{\"id\":63,\"abbreviation\":\"TD\",\"nameSingular\":\"Kick Return TD\",\"namePlural\":\"Kick Return TDs\"},\"points\":{\"value\":6.0,\"formatted\":\"6\"},\"forEvery\":1,\"description\":\"6 points for every Kick Return TD\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"},{\"category\":{\"id\":67,\"abbreviation\":\"TD\",\"nameSingular\":\"Punt Return TD\",\"namePlural\":\"Punt Return TDs\"},\"points\":{\"value\":6.0,\"formatted\":\"6\"},\"forEvery\":1,\"description\":\"6 points for every Punt Return TD\",\"applyTo\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"applyToAll\":true,\"template\":\"${points} points for every ${categorySingular}\"}],\"allCategories\":[{\"id\":61,\"abbreviation\":\"KR\",\"nameSingular\":\"Kick Return Attempt\",\"namePlural\":\"Kick Return Attempts\"},{\"id\":62,\"abbreviation\":\"Yd\",\"nameSingular\":\"Kick Return Yard\",\"namePlural\":\"Kick Return Yards\"},{\"id\":63,\"abbreviation\":\"TD\",\"nameSingular\":\"Kick Return TD\",\"namePlural\":\"Kick Return TDs\"},{\"id\":64,\"abbreviation\":\"KTY\",\"nameSingular\":\"Kick Return TD\",\"namePlural\":\"Kick Return TDs\",\"multiValue\":true},{\"id\":65,\"abbreviation\":\"PR\",\"nameSingular\":\"Punt Return Attempt\",\"namePlural\":\"Punt Return Attempts\"},{\"id\":66,\"abbreviation\":\"Yd\",\"nameSingular\":\"Punt Return Yard\",\"namePlural\":\"Punt Return Yards\"},{\"id\":67,\"abbreviation\":\"TD\",\"nameSingular\":\"Punt Return TD\",\"namePlural\":\"Punt Return TDs\"},{\"id\":68,\"abbreviation\":\"PTY\",\"nameSingular\":\"Punt Return TD\",\"namePlural\":\"Punt Return TDs\",\"multiValue\":true}]},{\"label\":\"Defense\",\"allCategories\":[{\"id\":81,\"abbreviation\":\"Total\",\"nameSingular\":\"Total Tackle\",\"namePlural\":\"Total Tackles\"},{\"id\":82,\"abbreviation\":\"Ast\",\"nameSingular\":\"Assisted Tackle\",\"namePlural\":\"Assisted Tackles\"},{\"id\":83,\"abbreviation\":\"Solo\",\"nameSingular\":\"Solo Tackle\",\"namePlural\":\"Solo Tackles\"},{\"id\":124,\"abbreviation\":\"TFL\",\"nameSingular\":\"Tackle for Loss\",\"namePlural\":\"Tackles for Loss\"},{\"id\":84,\"abbreviation\":\"INT\",\"nameSingular\":\"Interception\",\"namePlural\":\"Interceptions\"},{\"id\":85,\"abbreviation\":\"Sack\",\"nameSingular\":\"Sack\",\"namePlural\":\"Sacks\"},{\"id\":164,\"abbreviation\":\"SkYd\",\"nameSingular\":\"Sack Yard\",\"namePlural\":\"Sack Yards\"},{\"id\":86,\"abbreviation\":\"FF\",\"nameSingular\":\"Fumble Forced\",\"namePlural\":\"Fumbles Forced\"},{\"id\":87,\"abbreviation\":\"FR\",\"nameSingular\":\"Fumble Recovered\",\"namePlural\":\"Fumbles Recovered\"},{\"id\":121,\"abbreviation\":\"FR\",\"nameSingular\":\"Opposing Fumble Recovery\",\"namePlural\":\"Opposing Fumble Recoveries\"},{\"id\":88,\"abbreviation\":\"Saf\",\"nameSingular\":\"Safety\",\"namePlural\":\"Safeties\"},{\"id\":89,\"abbreviation\":\"TD\",\"nameSingular\":\"Defensive TD\",\"namePlural\":\"Defensive TDs\"},{\"id\":90,\"abbreviation\":\"TY\",\"nameSingular\":\"Defensive TD\",\"namePlural\":\"Defensive TDs\",\"multiValue\":true},{\"id\":97,\"abbreviation\":\"TD\",\"nameSingular\":\"Blocked FG Return TD\",\"namePlural\":\"Blocked FG Return TDs\"},{\"id\":98,\"abbreviation\":\"TD\",\"nameSingular\":\"Missed FG Return TD\",\"namePlural\":\"Missed FG Return TDs\"},{\"id\":99,\"abbreviation\":\"TD\",\"nameSingular\":\"Fumble Return TD\",\"namePlural\":\"Fumble Return TDs\"},{\"id\":100,\"abbreviation\":\"TD\",\"nameSingular\":\"INT Return TD\",\"namePlural\":\"INT Return TDs\"},{\"id\":69,\"abbreviation\":\"TD\",\"nameSingular\":\"Blocked Punt Return TD\",\"namePlural\":\"Blocked Punt Return TDs\"},{\"id\":13,\"abbreviation\":\"FBTY\",\"nameSingular\":\"Blocked FG Return TD\",\"namePlural\":\"Blocked FG Return TDs\",\"multiValue\":true},{\"id\":14,\"abbreviation\":\"FMTY\",\"nameSingular\":\"Missed FG Return TD\",\"namePlural\":\"Missed FG Return TDs\",\"multiValue\":true},{\"id\":15,\"abbreviation\":\"FTY\",\"nameSingular\":\"Fumble Return TD\",\"namePlural\":\"Fumble Return TDs\",\"multiValue\":true},{\"id\":16,\"abbreviation\":\"ITY\",\"nameSingular\":\"INT Return TD\",\"namePlural\":\"INT Return TDs\",\"multiValue\":true},{\"id\":17,\"abbreviation\":\"PBTY\",\"nameSingular\":\"Blocked Punt Return TD\",\"namePlural\":\"Blocked Punt Return TDs\",\"multiValue\":true},{\"id\":91,\"abbreviation\":\"XB\",\"nameSingular\":\"XP Blocked\",\"namePlural\":\"XPs Blocked\"},{\"id\":92,\"abbreviation\":\"FB\",\"nameSingular\":\"FG Blocked\",\"namePlural\":\"FGs Blocked\"},{\"id\":93,\"abbreviation\":\"PB\",\"nameSingular\":\"Punt Blocked\",\"namePlural\":\"Punts Blocked\"},{\"id\":117,\"abbreviation\":\"KB\",\"nameSingular\":\"Blocked Kick\",\"namePlural\":\"Blocked Kicks\"},{\"id\":149,\"abbreviation\":\"KBT\",\"nameSingular\":\"Blocked Kick Td\",\"namePlural\":\"Blocked Kick TDs\"},{\"id\":150,\"abbreviation\":\"KBTY\",\"nameSingular\":\"Blocked Kick Td Yard\",\"namePlural\":\"Blocked Kick TD Yards\",\"multiValue\":true},{\"id\":96,\"abbreviation\":\"PD\",\"nameSingular\":\"Pass Defended\",\"namePlural\":\"Passes Defended\"},{\"id\":139,\"abbreviation\":\"T\",\"nameSingular\":\"Time Targeted\",\"namePlural\":\"Times Targeted\"},{\"id\":140,\"abbreviation\":\"CA\",\"nameSingular\":\"Completion Against\",\"namePlural\":\"Completions Against\"},{\"id\":94,\"abbreviation\":\"Pts\",\"nameSingular\":\"Point Allowed\",\"namePlural\":\"Points Allowed\",\"lowerIsBetter\":true},{\"id\":112,\"abbreviation\":\"O-Pts\",\"nameSingular\":\"Offensive Point Allowed (FG, Pass TD, Rush TD)\",\"namePlural\":\"Offensive Points Allowed (FG, Pass TD, Rush TD)\",\"lowerIsBetter\":true},{\"id\":115,\"abbreviation\":\"STPA\",\"nameSingular\":\"Special Teams Point Allowed (Return TD, XP, 2-Pt Conv)\",\"namePlural\":\"Special Teams Points Allowed (Return TD, XP, 2-Pt Conv)\",\"lowerIsBetter\":true},{\"id\":116,\"abbreviation\":\"O/SP-Pts\",\"nameSingular\":\"Offensive + Special Teams Point Allowed\",\"namePlural\":\"Offensive + Special Teams Points Allowed\",\"lowerIsBetter\":true},{\"id\":95,\"abbreviation\":\"Yd\",\"nameSingular\":\"Net Yard Allowed\",\"namePlural\":\"Net Yards Allowed\",\"lowerIsBetter\":true},{\"id\":113,\"abbreviation\":\"PYA\",\"nameSingular\":\"Net Passing Yard Allowed\",\"namePlural\":\"Net Passing Yards Allowed\",\"lowerIsBetter\":true},{\"id\":114,\"abbreviation\":\"RYA\",\"nameSingular\":\"Net Rushing Yard Allowed\",\"namePlural\":\"Net Rushing Yards Allowed\",\"lowerIsBetter\":true},{\"id\":136,\"abbreviation\":\"QH\",\"nameSingular\":\"QB Hit\",\"namePlural\":\"QB Hits\"},{\"id\":137,\"abbreviation\":\"QH\",\"nameSingular\":\"QB Hurry\",\"namePlural\":\"QB Hurries\"},{\"id\":138,\"abbreviation\":\"B\",\"nameSingular\":\"Blitz\",\"namePlural\":\"Blitzes\"},{\"id\":125,\"abbreviation\":\"CR\",\"nameSingular\":\"Conversion Return\",\"namePlural\":\"Conversion Returns\"},{\"id\":126,\"abbreviation\":\"4Stp\",\"nameSingular\":\"Fourth-Down Stop\",\"namePlural\":\"Fourth-Down Stops\"},{\"id\":127,\"abbreviation\":\"3Out\",\"nameSingular\":\"Three and Out\",\"namePlural\":\"Three and Outs\"},{\"id\":128,\"abbreviation\":\"IRY\",\"nameSingular\":\"Interception Return Yard\",\"namePlural\":\"Interception Return Yards\"},{\"id\":129,\"abbreviation\":\"OFRY\",\"nameSingular\":\"Fumble Return Yard\",\"namePlural\":\"Fumble Return Yards\"}]},{\"label\":\"Punting\",\"allCategories\":[{\"id\":154,\"abbreviation\":\"Att\",\"nameSingular\":\"Punt Attempt\",\"namePlural\":\"Punt Attempt\"},{\"id\":155,\"abbreviation\":\"Yd\",\"nameSingular\":\"Punt Yard\",\"namePlural\":\"Punt Yard\"},{\"id\":156,\"abbreviation\":\"IN20\",\"nameSingular\":\"Punt Inside 20\",\"namePlural\":\"Punts Inside 20\"},{\"id\":157,\"abbreviation\":\"BP\",\"nameSingular\":\"Blocked Punt\",\"namePlural\":\"Blocked Punt\",\"lowerIsBetter\":true},{\"id\":158,\"abbreviation\":\"TB\",\"nameSingular\":\"Touchback Punt\",\"namePlural\":\"Touchback Punt\"},{\"id\":159,\"abbreviation\":\"NET\",\"nameSingular\":\"Punt Net Yard\",\"namePlural\":\"Punt Net Yard\"},{\"id\":160,\"abbreviation\":\"AVG\",\"nameSingular\":\"Yards Per Punt\",\"namePlural\":\"Yards Per Punt\"},{\"id\":161,\"abbreviation\":\"RETY\",\"nameSingular\":\"Yard on Returned Punt\",\"namePlural\":\"Yards on Returned Punts\",\"lowerIsBetter\":true},{\"id\":162,\"abbreviation\":\"Net AVG\",\"nameSingular\":\"Net Yards Per Punt\",\"namePlural\":\"Net Yards Per Punt\"},{\"id\":163,\"abbreviation\":\"Ret AVG\",\"nameSingular\":\"Average Punt Return Yard Allowed\",\"namePlural\":\"Average Punt Return Yard Allowed\"}]}],\"numStarters\":10,\"numBench\":18,\"maxActive\":28,\"maxRosterSize\":31,\"allScoringRuleTypes\":[{\"template\":\"${points} points for every ${forEvery} ${categoryPlural}\"},{\"hasLowerBound\":true,\"template\":\"${points} points for every ${forEvery} ${categoryPlural} after reaching ${boundLower} total ${categoryPlural}\"},{\"hasUpperBound\":true,\"template\":\"${points} points for every ${forEvery} ${categoryPlural} for the first ${boundUpper} total ${categoryPlural}\"},{\"hasLowerBound\":true,\"hasUpperBound\":true,\"template\":\"${points} points for every ${forEvery} ${categoryPlural} between ${boundLower} and ${boundUpper} total ${categoryPlural} (inclusive)\"},{\"isBonus\":true,\"hasLowerBound\":true,\"template\":\"${points} extra points when total ${categoryPlural} is greater than or equal to ${boundLower}\"},{\"isBonus\":true,\"hasUpperBound\":true,\"template\":\"${points} extra points when total ${categoryPlural} is less than or equal to ${boundUpper}\"},{\"isBonus\":true,\"hasLowerBound\":true,\"hasUpperBound\":true,\"template\":\"${points} extra points when total ${categoryPlural} is between ${boundLower} and ${boundUpper} (inclusive)\"},{\"isMultiValue\":true,\"template\":\"${points} points for every ${forEvery} yards covered by a ${categorySingular}\"},{\"hasLowerBound\":true,\"isMultiValue\":true,\"template\":\"${points} points for every ${forEvery} yards covered by a ${categorySingular} after yard ${boundLower}\"},{\"hasUpperBound\":true,\"isMultiValue\":true,\"template\":\"${points} points for every ${forEvery} yards covered by a ${categorySingular} up to yard ${boundUpper}\"},{\"hasLowerBound\":true,\"hasUpperBound\":true,\"isMultiValue\":true,\"template\":\"${points} points for every ${forEvery} yards covered by a ${categorySingular} between yards ${boundLower} and ${boundUpper} (inclusive)\"},{\"isBonus\":true,\"hasLowerBound\":true,\"isMultiValue\":true,\"template\":\"${points} extra points for every ${categorySingular} of ${boundLower} or more yards\"},{\"isBonus\":true,\"hasUpperBound\":true,\"isMultiValue\":true,\"template\":\"${points} extra points for every ${categorySingular} of ${boundUpper} or less yards\"},{\"isBonus\":true,\"hasLowerBound\":true,\"hasUpperBound\":true,\"isMultiValue\":true,\"template\":\"${points} extra points for every ${categorySingular} between ${boundLower} and ${boundUpper} yards (inclusive)\"}]}"),
+ date = structure(1606597372, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 4.4e-05,
+ connect = 4.7e-05, pretransfer = 0.000139, starttransfer = 0.022404,
+ total = 0.022617
+ )
+), class = "response")
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueScoreboard-650261.R b/tests/testthat/flea/api/FetchLeagueScoreboard-650261.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueScoreboard-650261.R
rename to tests/testthat/flea/api/FetchLeagueScoreboard-650261.R
diff --git a/tests/testthat/flea/api/FetchLeagueScoreboard-750fd2.R b/tests/testthat/flea/api/FetchLeagueScoreboard-750fd2.R
new file mode 100644
index 00000000..de8f83d9
--- /dev/null
+++ b/tests/testthat/flea/api/FetchLeagueScoreboard-750fd2.R
@@ -0,0 +1,34 @@
+structure(list(
+ url = "https://www.fleaflicker.com/api/FetchLeagueScoreboard?sport=NFL&league_id=206154&season=2020&scoring_period=5",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:09:23 GMT",
+ `content-type` = "application/json;charset=utf-8", vary = "accept-encoding",
+ `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:09:23 GMT",
+ `content-type` = "application/json;charset=utf-8",
+ vary = "accept-encoding", `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"schedulePeriod\":{\"ordinal\":5,\"low\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"value\":5},\"eligibleSchedulePeriods\":[{\"ordinal\":1,\"low\":{\"ordinal\":1,\"startEpochMilli\":\"1599559200000\"},\"value\":1},{\"ordinal\":2,\"low\":{\"ordinal\":2,\"startEpochMilli\":\"1600164000000\"},\"value\":2},{\"ordinal\":3,\"low\":{\"ordinal\":3,\"startEpochMilli\":\"1600768800000\"},\"value\":3},{\"ordinal\":4,\"low\":{\"ordinal\":4,\"startEpochMilli\":\"1601373600000\"},\"value\":4},{\"ordinal\":5,\"low\":{\"ordinal\":5,\"startEpochMilli\":\"1601978400000\"},\"value\":5},{\"ordinal\":6,\"low\":{\"ordinal\":6,\"startEpochMilli\":\"1602669600000\"},\"value\":6},{\"ordinal\":7,\"low\":{\"ordinal\":7,\"startEpochMilli\":\"1603188000000\"},\"value\":7},{\"ordinal\":8,\"low\":{\"ordinal\":8,\"startEpochMilli\":\"1603792800000\"},\"value\":8},{\"ordinal\":9,\"low\":{\"ordinal\":9,\"startEpochMilli\":\"1604401200000\"},\"value\":9},{\"ordinal\":10,\"low\":{\"ordinal\":10,\"startEpochMilli\":\"1605006000000\"},\"value\":10},{\"ordinal\":11,\"low\":{\"ordinal\":11,\"startEpochMilli\":\"1605610800000\"},\"value\":11},{\"ordinal\":12,\"low\":{\"ordinal\":12,\"startEpochMilli\":\"1606215600000\",\"isNow\":true},\"containsNow\":true,\"value\":12},{\"ordinal\":13,\"low\":{\"ordinal\":13,\"startEpochMilli\":\"1606906800000\"},\"value\":13},{\"ordinal\":14,\"low\":{\"ordinal\":14,\"startEpochMilli\":\"1607425200000\"},\"value\":14},{\"ordinal\":15,\"low\":{\"ordinal\":15,\"startEpochMilli\":\"1608030000000\"},\"value\":15},{\"ordinal\":16,\"low\":{\"ordinal\":16,\"startEpochMilli\":\"1608634800000\"},\"value\":16}],\"games\":[{\"id\":\"46301923\",\"away\":{\"id\":1373475,\"name\":\"Winterfell Dire Wolves\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373475_0_150x150.jpg\",\"recordOverall\":{\"wins\":7,\"losses\":4,\"winPercentage\":{\"value\":0.6363636,\"formatted\":\".636\"},\"rank\":5,\"formatted\":\"7-4\"},\"recordDivision\":{\"wins\":4,\"winPercentage\":{\"value\":1.0,\"formatted\":\"1.000\"},\"rank\":2,\"formatted\":\"4-0\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":6,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2398.73,\"formatted\":\"2,398.73\"},\"pointsAgainst\":{\"value\":2183.25,\"formatted\":\"2,183.25\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"formatted\":\"$0\"},\"newItemCounts\":{\"activityUnread\":2},\"initials\":\"WD\"},\"home\":{\"id\":1373991,\"name\":\"Top City Terrors\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373991_0_150x150.jpg\",\"recordOverall\":{\"wins\":2,\"losses\":9,\"winPercentage\":{\"value\":0.18181819,\"formatted\":\".182\"},\"rank\":16,\"formatted\":\"2-9\"},\"recordDivision\":{\"wins\":1,\"losses\":3,\"winPercentage\":{\"value\":0.25,\"formatted\":\".250\"},\"rank\":4,\"formatted\":\"1-3\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":16,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1752.71,\"formatted\":\"1,752.71\"},\"pointsAgainst\":{\"value\":1969.58,\"formatted\":\"1,969.58\"},\"streak\":{\"value\":-5.0,\"formatted\":\"L5\"},\"waiverAcquisitionBudget\":{\"value\":66.0,\"formatted\":\"$66\"},\"newItemCounts\":{\"activityUnread\":255},\"initials\":\"TC\"},\"awayScore\":{\"score\":{\"value\":206.65,\"formatted\":\"206.65\"}},\"homeScore\":{\"score\":{\"value\":161.65,\"formatted\":\"161.65\"}},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\",\"isFinalScore\":true},{\"id\":\"46301919\",\"away\":{\"id\":1373480,\"name\":\"Goldenrod City Nightmares\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373480_0_150x150.jpg\",\"recordOverall\":{\"wins\":4,\"losses\":7,\"winPercentage\":{\"value\":0.36363637,\"formatted\":\".364\"},\"rank\":10,\"formatted\":\"4-7\"},\"recordDivision\":{\"wins\":1,\"losses\":3,\"winPercentage\":{\"value\":0.25,\"formatted\":\".250\"},\"rank\":3,\"formatted\":\"1-3\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":10,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2045.83,\"formatted\":\"2,045.83\"},\"pointsAgainst\":{\"value\":2310.76,\"formatted\":\"2,310.76\"},\"streak\":{\"value\":-4.0,\"formatted\":\"L4\"},\"waiverAcquisitionBudget\":{\"value\":100.0,\"formatted\":\"$100\"},\"newItemCounts\":{\"activityUnread\":185,\"messagesUnread\":1},\"initials\":\"GC\"},\"home\":{\"id\":1371776,\"name\":\"Winter Hill Black Shamrocks\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1371776_0_150x150.jpg\",\"recordOverall\":{\"wins\":4,\"losses\":7,\"winPercentage\":{\"value\":0.36363637,\"formatted\":\".364\"},\"rank\":11,\"formatted\":\"4-7\"},\"recordDivision\":{\"wins\":2,\"losses\":2,\"winPercentage\":{\"value\":0.5,\"formatted\":\".500\"},\"rank\":3,\"formatted\":\"2-2\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":13,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1900.94,\"formatted\":\"1,900.94\"},\"pointsAgainst\":{\"value\":1972.7,\"formatted\":\"1,972.7\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"value\":51.0,\"formatted\":\"$51\"},\"newItemCounts\":{\"activityUnread\":255},\"initials\":\"WH\"},\"awayScore\":{\"score\":{\"value\":144.95,\"formatted\":\"144.95\"}},\"homeScore\":{\"score\":{\"value\":156.82,\"formatted\":\"156.82\"}},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\",\"isFinalScore\":true},{\"id\":\"46301921\",\"away\":{\"id\":1373535,\"name\":\"Winterthur Angry Ducks\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373535_0_150x150.jpg\",\"recordOverall\":{\"wins\":8,\"losses\":3,\"winPercentage\":{\"value\":0.72727275,\"formatted\":\".727\"},\"rank\":4,\"formatted\":\"8-3\"},\"recordDivision\":{\"wins\":2,\"losses\":2,\"winPercentage\":{\"value\":0.5,\"formatted\":\".500\"},\"rank\":2,\"formatted\":\"2-2\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":5,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2234.6,\"formatted\":\"2,234.6\"},\"pointsAgainst\":{\"value\":1921.05,\"formatted\":\"1,921.05\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"value\":11.0,\"formatted\":\"$11\"},\"newItemCounts\":{\"activityUnread\":254,\"messagesUnread\":73},\"initials\":\"WA\"},\"home\":{\"id\":1374271,\"name\":\"Clutch City Ballers\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1374271_0_150x150.jpg\",\"recordOverall\":{\"wins\":7,\"losses\":4,\"winPercentage\":{\"value\":0.6363636,\"formatted\":\".636\"},\"rank\":6,\"formatted\":\"7-4\"},\"recordDivision\":{\"wins\":1,\"losses\":3,\"winPercentage\":{\"value\":0.25,\"formatted\":\".250\"},\"rank\":2,\"formatted\":\"1-3\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":7,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2180.52,\"formatted\":\"2,180.52\"},\"pointsAgainst\":{\"value\":1961.29,\"formatted\":\"1,961.29\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"formatted\":\"$0\"},\"newItemCounts\":{\"activityUnread\":6},\"initials\":\"CC\"},\"awayScore\":{\"score\":{\"value\":153.06,\"formatted\":\"153.06\"}},\"homeScore\":{\"score\":{\"value\":191.66,\"formatted\":\"191.66\"}},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\",\"isFinalScore\":true},{\"id\":\"46301922\",\"away\":{\"id\":1373883,\"name\":\"Manitoba Marmots\",\"recordOverall\":{\"wins\":5,\"losses\":6,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":8,\"formatted\":\"5-6\"},\"recordDivision\":{\"wins\":1,\"losses\":3,\"winPercentage\":{\"value\":0.25,\"formatted\":\".250\"},\"rank\":4,\"formatted\":\"1-3\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":9,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2280.43,\"formatted\":\"2,280.43\"},\"pointsAgainst\":{\"value\":2109.05,\"formatted\":\"2,109.05\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"value\":63.0,\"formatted\":\"$63\"},\"newItemCounts\":{\"activityUnread\":125},\"initials\":\"MM\"},\"home\":{\"id\":1373970,\"name\":\"Bamenda Herd\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373970_0_150x150.jpg\",\"recordOverall\":{\"wins\":9,\"losses\":2,\"winPercentage\":{\"value\":0.8181818,\"formatted\":\".818\"},\"rank\":3,\"formatted\":\"9-2\"},\"recordDivision\":{\"wins\":4,\"winPercentage\":{\"value\":1.0,\"formatted\":\"1.000\"},\"rank\":1,\"formatted\":\"4-0\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":3,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2055.48,\"formatted\":\"2,055.48\"},\"pointsAgainst\":{\"value\":1863.17,\"formatted\":\"1,863.17\"},\"streak\":{\"value\":4.0,\"formatted\":\"W4\"},\"waiverAcquisitionBudget\":{\"value\":5.0,\"formatted\":\"$5\"},\"initials\":\"BH\"},\"awayScore\":{\"score\":{\"value\":182.38,\"formatted\":\"182.38\"}},\"homeScore\":{\"score\":{\"value\":182.53,\"formatted\":\"182.53\"}},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\",\"isFinalScore\":true},{\"id\":\"46301920\",\"away\":{\"id\":1373988,\"name\":\"Springfield Isotopes\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373988_0_150x150.jpg\",\"recordOverall\":{\"wins\":6,\"losses\":5,\"winPercentage\":{\"value\":0.54545456,\"formatted\":\".545\"},\"rank\":7,\"formatted\":\"6-5\"},\"recordDivision\":{\"wins\":1,\"losses\":3,\"winPercentage\":{\"value\":0.25,\"formatted\":\".250\"},\"rank\":3,\"formatted\":\"1-3\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":8,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2023.03,\"formatted\":\"2,023.03\"},\"pointsAgainst\":{\"value\":2119.46,\"formatted\":\"2,119.46\"},\"streak\":{\"value\":4.0,\"formatted\":\"W4\"},\"waiverAcquisitionBudget\":{\"value\":17.0,\"formatted\":\"$17\"},\"newItemCounts\":{\"activityUnread\":57},\"initials\":\"SI\"},\"home\":{\"id\":1374315,\"name\":\"Shanghai Communists\",\"recordOverall\":{\"wins\":2,\"losses\":9,\"winPercentage\":{\"value\":0.18181819,\"formatted\":\".182\"},\"rank\":15,\"formatted\":\"2-9\"},\"recordDivision\":{\"wins\":2,\"losses\":2,\"winPercentage\":{\"value\":0.5,\"formatted\":\".500\"},\"rank\":4,\"formatted\":\"2-2\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":15,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1811.46,\"formatted\":\"1,811.46\"},\"pointsAgainst\":{\"value\":2106.01,\"formatted\":\"2,106.01\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"value\":100.0,\"formatted\":\"$100\"},\"newItemCounts\":{\"activityUnread\":188,\"messagesUnread\":54},\"initials\":\"SC\"},\"awayScore\":{\"score\":{\"value\":176.35,\"formatted\":\"176.35\"}},\"homeScore\":{\"score\":{\"value\":129.14,\"formatted\":\"129.14\"}},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\",\"isFinalScore\":true},{\"id\":\"46301926\",\"away\":{\"id\":1373993,\"name\":\"Boomtown Sly Foxes\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373993_0_150x150.jpg\",\"recordOverall\":{\"wins\":4,\"losses\":7,\"winPercentage\":{\"value\":0.36363637,\"formatted\":\".364\"},\"rank\":12,\"formatted\":\"4-7\"},\"recordDivision\":{\"wins\":1,\"losses\":3,\"winPercentage\":{\"value\":0.25,\"formatted\":\".250\"},\"rank\":3,\"formatted\":\"1-3\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":11,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1646.59,\"formatted\":\"1,646.59\"},\"pointsAgainst\":{\"value\":2009.27,\"formatted\":\"2,009.27\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"formatted\":\"$0\"},\"newItemCounts\":{\"activityUnread\":255},\"initials\":\"BS\"},\"home\":{\"id\":1373393,\"name\":\"Philadelphia Fire\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373393_0_150x150.jpg\",\"recordOverall\":{\"wins\":10,\"losses\":1,\"winPercentage\":{\"value\":0.90909094,\"formatted\":\".909\"},\"rank\":1,\"formatted\":\"10-1\"},\"recordDivision\":{\"wins\":4,\"winPercentage\":{\"value\":1.0,\"formatted\":\"1.000\"},\"rank\":1,\"formatted\":\"4-0\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":1,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2525.94,\"formatted\":\"2,525.94\"},\"pointsAgainst\":{\"value\":2100.01,\"formatted\":\"2,100.01\"},\"streak\":{\"value\":7.0,\"formatted\":\"W7\"},\"waiverAcquisitionBudget\":{\"value\":1.0,\"formatted\":\"$1\"},\"initials\":\"PF\"},\"awayScore\":{\"score\":{\"value\":199.21,\"formatted\":\"199.21\"}},\"homeScore\":{\"score\":{\"value\":199.85,\"formatted\":\"199.85\"}},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\",\"isFinalScore\":true},{\"id\":\"46301925\",\"away\":{\"id\":1374252,\"name\":\"Central City Crusaders\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1374252_0_150x150.jpg\",\"recordOverall\":{\"wins\":2,\"losses\":9,\"winPercentage\":{\"value\":0.18181819,\"formatted\":\".182\"},\"rank\":14,\"formatted\":\"2-9\"},\"recordDivision\":{\"losses\":4,\"winPercentage\":{\"formatted\":\".000\"},\"rank\":4,\"formatted\":\"0-4\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":14,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1820.99,\"formatted\":\"1,820.99\"},\"pointsAgainst\":{\"value\":2189.23,\"formatted\":\"2,189.23\"},\"streak\":{\"value\":-2.0,\"formatted\":\"L2\"},\"waiverAcquisitionBudget\":{\"value\":150.0,\"formatted\":\"$150\"},\"newItemCounts\":{\"activityUnread\":74,\"messagesUnread\":31},\"initials\":\"CC\"},\"home\":{\"id\":1373973,\"name\":\"Red River Land Thunder\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373973_0_150x150.jpg\",\"recordOverall\":{\"wins\":4,\"losses\":7,\"winPercentage\":{\"value\":0.36363637,\"formatted\":\".364\"},\"rank\":13,\"formatted\":\"4-7\"},\"recordDivision\":{\"wins\":3,\"losses\":1,\"winPercentage\":{\"value\":0.75,\"formatted\":\".750\"},\"rank\":2,\"formatted\":\"3-1\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":12,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1776.29,\"formatted\":\"1,776.29\"},\"pointsAgainst\":{\"value\":1947.07,\"formatted\":\"1,947.07\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"value\":98.0,\"formatted\":\"$98\"},\"newItemCounts\":{\"activityUnread\":31},\"initials\":\"RR\"},\"awayScore\":{\"score\":{\"value\":156.32,\"formatted\":\"156.32\"}},\"homeScore\":{\"score\":{\"value\":182.92,\"formatted\":\"182.92\"}},\"homeResult\":\"WIN\",\"awayResult\":\"LOSE\",\"isFinalScore\":true},{\"id\":\"46301924\",\"away\":{\"id\":1374255,\"name\":\"Mushroom City Karts\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1374255_0_150x150.jpg\",\"recordOverall\":{\"wins\":9,\"losses\":2,\"winPercentage\":{\"value\":0.8181818,\"formatted\":\".818\"},\"rank\":2,\"formatted\":\"9-2\"},\"recordDivision\":{\"wins\":3,\"losses\":1,\"winPercentage\":{\"value\":0.75,\"formatted\":\".750\"},\"rank\":1,\"formatted\":\"3-1\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":2,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":2363.84,\"formatted\":\"2,363.84\"},\"pointsAgainst\":{\"value\":2067.88,\"formatted\":\"2,067.88\"},\"streak\":{\"value\":3.0,\"formatted\":\"W3\"},\"waiverAcquisitionBudget\":{\"value\":57.0,\"formatted\":\"$57\"},\"newItemCounts\":{\"activityUnread\":31},\"initials\":\"MC\"},\"home\":{\"id\":1373501,\"name\":\"Midgard Gallows\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1373501_0_150x150.jpg\",\"recordOverall\":{\"wins\":5,\"losses\":6,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":9,\"formatted\":\"5-6\"},\"recordDivision\":{\"wins\":2,\"losses\":2,\"winPercentage\":{\"value\":0.5,\"formatted\":\".500\"},\"rank\":1,\"formatted\":\"2-2\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":4,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1869.51,\"formatted\":\"1,869.51\"},\"pointsAgainst\":{\"value\":1857.11,\"formatted\":\"1,857.11\"},\"streak\":{\"value\":-3.0,\"formatted\":\"L3\"},\"waiverAcquisitionBudget\":{\"value\":114.0,\"formatted\":\"$114\"},\"newItemCounts\":{\"activityUnread\":122,\"messagesUnread\":73},\"initials\":\"MG\"},\"awayScore\":{\"score\":{\"value\":228.49,\"formatted\":\"228.49\"}},\"homeScore\":{\"score\":{\"value\":155.62,\"formatted\":\"155.62\"}},\"homeResult\":\"LOSE\",\"awayResult\":\"WIN\",\"isFinalScore\":true}]}"),
+ date = structure(1606597763, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 0.097035,
+ connect = 0.113935, pretransfer = 0.201915, starttransfer = 0.229627,
+ total = 0.230184
+ )
+), class = "response")
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueScoreboard-a6b3de.R b/tests/testthat/flea/api/FetchLeagueScoreboard-a6b3de.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueScoreboard-a6b3de.R
rename to tests/testthat/flea/api/FetchLeagueScoreboard-a6b3de.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueStandings-040c26.R b/tests/testthat/flea/api/FetchLeagueStandings-040c26.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueStandings-040c26.R
rename to tests/testthat/flea/api/FetchLeagueStandings-040c26.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueStandings-85c3ca.R b/tests/testthat/flea/api/FetchLeagueStandings-85c3ca.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueStandings-85c3ca.R
rename to tests/testthat/flea/api/FetchLeagueStandings-85c3ca.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueStandings-ea13c5.R b/tests/testthat/flea/api/FetchLeagueStandings-ea13c5.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueStandings-ea13c5.R
rename to tests/testthat/flea/api/FetchLeagueStandings-ea13c5.R
diff --git a/tests/testthat/flea/api/FetchLeagueStandings-fdba0d.R b/tests/testthat/flea/api/FetchLeagueStandings-fdba0d.R
new file mode 100644
index 00000000..94bc09b2
--- /dev/null
+++ b/tests/testthat/flea/api/FetchLeagueStandings-fdba0d.R
@@ -0,0 +1,34 @@
+structure(list(
+ url = "https://www.fleaflicker.com/api/FetchLeagueStandings?league_id=312861&sport=NFL&season=2020",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:02:52 GMT",
+ `content-type` = "application/json;charset=utf-8", vary = "accept-encoding",
+ `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:02:52 GMT",
+ `content-type` = "application/json;charset=utf-8",
+ vary = "accept-encoding", `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"divisions\":[{\"id\":922085,\"name\":\"Division 1\",\"teams\":[{\"id\":1582416,\"name\":\"Ray Jay Team\",\"recordOverall\":{\"wins\":21,\"losses\":1,\"winPercentage\":{\"value\":0.95454544,\"formatted\":\".955\"},\"rank\":1,\"formatted\":\"21-1\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":1,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1778.77,\"formatted\":\"1,778.77\"},\"pointsAgainst\":{\"value\":1507.04,\"formatted\":\"1,507.04\"},\"streak\":{\"value\":11.0,\"formatted\":\"W11\"},\"waiverAcquisitionBudget\":{\"value\":98.0,\"formatted\":\"$98\"},\"owners\":[{\"id\":716040,\"displayName\":\"Redhogs\",\"lastSeen\":\"1606535291000\",\"initials\":\"R\",\"lastSeenIso\":\"2020-11-28T03:48:11Z\"}],\"newItemCounts\":{\"activityUnread\":2},\"initials\":\"RJ\"},{\"id\":1582423,\"name\":\"The Verblanders\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/t1582423_0_150x150.jpg\",\"recordOverall\":{\"wins\":15,\"losses\":7,\"winPercentage\":{\"value\":0.6818182,\"formatted\":\".682\"},\"rank\":2,\"formatted\":\"15-7\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":2,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1848.42,\"formatted\":\"1,848.42\"},\"pointsAgainst\":{\"value\":1638.25,\"formatted\":\"1,638.25\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"value\":30.0,\"formatted\":\"$30\"},\"owners\":[{\"id\":723142,\"displayName\":\"Verbo\",\"lastSeen\":\"1606565541000\",\"initials\":\"V\",\"lastSeenIso\":\"2020-11-28T12:12:21Z\"}],\"newItemCounts\":{\"activityUnread\":2},\"initials\":\"TV\"},{\"id\":1581721,\"name\":\"Mjenkyns2004's Team\",\"recordOverall\":{\"wins\":15,\"losses\":7,\"winPercentage\":{\"value\":0.6818182,\"formatted\":\".682\"},\"rank\":3,\"formatted\":\"15-7\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":3,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1680.61,\"formatted\":\"1,680.61\"},\"pointsAgainst\":{\"value\":1640.56,\"formatted\":\"1,640.56\"},\"streak\":{\"value\":1.0,\"formatted\":\"W1\"},\"waiverAcquisitionBudget\":{\"value\":100.0,\"formatted\":\"$100\"},\"owners\":[{\"id\":1281991,\"displayName\":\"Mjenkyns2004\",\"lastSeen\":\"1606510814000\",\"initials\":\"M\",\"lastSeenIso\":\"2020-11-27T21:00:14Z\"}],\"initials\":\"MT\"},{\"id\":1581722,\"name\":\"syd12nyjets's Team\",\"recordOverall\":{\"wins\":14,\"losses\":8,\"winPercentage\":{\"value\":0.6363636,\"formatted\":\".636\"},\"rank\":4,\"formatted\":\"14-8\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":4,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1587.06,\"formatted\":\"1,587.06\"},\"pointsAgainst\":{\"value\":1527.39,\"formatted\":\"1,527.39\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"value\":33.0,\"formatted\":\"$33\"},\"owners\":[{\"id\":749239,\"displayName\":\"syd12nyjets\",\"lastSeen\":\"1606591528000\",\"initials\":\"S\",\"lastSeenIso\":\"2020-11-28T19:25:28Z\"}],\"initials\":\"ST\"},{\"id\":1581720,\"name\":\"brosene's Team\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":5,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":5,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1688.33,\"formatted\":\"1,688.33\"},\"pointsAgainst\":{\"value\":1635.19,\"formatted\":\"1,635.19\"},\"streak\":{\"value\":2.0,\"formatted\":\"W2\"},\"waiverAcquisitionBudget\":{\"value\":98.0,\"formatted\":\"$98\"},\"owners\":[{\"id\":1145163,\"displayName\":\"BrettRosene\",\"lastSeen\":\"1606573821000\",\"initials\":\"B\",\"lastSeenIso\":\"2020-11-28T14:30:21Z\"}],\"newItemCounts\":{\"activityUnread\":6},\"initials\":\"BT\"},{\"id\":1581988,\"name\":\"The DK Crew\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":6,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":6,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1609.31,\"formatted\":\"1,609.31\"},\"pointsAgainst\":{\"value\":1573.97,\"formatted\":\"1,573.97\"},\"streak\":{\"value\":2.0,\"formatted\":\"W2\"},\"waiverAcquisitionBudget\":{\"value\":100.0,\"formatted\":\"$100\"},\"owners\":[{\"id\":723056,\"displayName\":\"AustinNace\",\"lastSeen\":\"1606586088000\",\"initials\":\"A\",\"lastSeenIso\":\"2020-11-28T17:54:48Z\"}],\"newItemCounts\":{\"activityUnread\":50},\"initials\":\"TD\"},{\"id\":1581753,\"name\":\"fede_mndz's Team\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":7,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":7,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1505.43,\"formatted\":\"1,505.43\"},\"pointsAgainst\":{\"value\":1578.21,\"formatted\":\"1,578.21\"},\"streak\":{\"value\":-2.0,\"formatted\":\"L2\"},\"waiverAcquisitionBudget\":{\"value\":29.0,\"formatted\":\"$29\"},\"owners\":[{\"id\":1064178,\"displayName\":\"fede_mndz\",\"lastSeen\":\"1606417917000\",\"initials\":\"F\",\"lastSeenIso\":\"2020-11-26T19:11:57Z\"}],\"newItemCounts\":{\"activityUnread\":43},\"initials\":\"FT\"},{\"id\":1581803,\"name\":\"ZachFarni's Team\",\"recordOverall\":{\"wins\":10,\"losses\":12,\"winPercentage\":{\"value\":0.45454547,\"formatted\":\".455\"},\"rank\":8,\"formatted\":\"10-12\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":8,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1363.6,\"formatted\":\"1,363.6\"},\"pointsAgainst\":{\"value\":1463.57,\"formatted\":\"1,463.57\"},\"streak\":{\"value\":3.0,\"formatted\":\"W3\"},\"waiverAcquisitionBudget\":{\"value\":66.0,\"formatted\":\"$66\"},\"owners\":[{\"id\":1286682,\"displayName\":\"ZachFarni\",\"lastSeen\":\"1606583591000\",\"initials\":\"Z\",\"lastSeenIso\":\"2020-11-28T17:13:11Z\"}],\"newItemCounts\":{\"activityUnread\":26},\"initials\":\"ZT\"},{\"id\":1581726,\"name\":\"SCJaguars's Team\",\"recordOverall\":{\"wins\":9,\"losses\":13,\"winPercentage\":{\"value\":0.4090909,\"formatted\":\".409\"},\"rank\":9,\"formatted\":\"9-13\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":9,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1493.25,\"formatted\":\"1,493.25\"},\"pointsAgainst\":{\"value\":1498.12,\"formatted\":\"1,498.12\"},\"streak\":{\"value\":-3.0,\"formatted\":\"L3\"},\"waiverAcquisitionBudget\":{\"value\":90.0,\"formatted\":\"$90\"},\"owners\":[{\"id\":1152395,\"displayName\":\"ChuckBarber\",\"lastSeen\":\"1606447136000\",\"initials\":\"C\",\"lastSeenIso\":\"2020-11-27T03:18:56Z\"}],\"newItemCounts\":{\"activityUnread\":95},\"initials\":\"ST\"},{\"id\":1581718,\"name\":\"AlexG5386's Team\",\"recordOverall\":{\"wins\":7,\"losses\":15,\"winPercentage\":{\"value\":0.3181818,\"formatted\":\".318\"},\"rank\":10,\"formatted\":\"7-15\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":10,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1507.66,\"formatted\":\"1,507.66\"},\"pointsAgainst\":{\"value\":1591.5,\"formatted\":\"1,591.5\"},\"streak\":{\"value\":-6.0,\"formatted\":\"L6\"},\"waiverAcquisitionBudget\":{\"value\":98.0,\"formatted\":\"$98\"},\"owners\":[{\"id\":1286572,\"displayName\":\"AlexG5386\",\"lastSeen\":\"1605631975000\",\"initials\":\"A\",\"lastSeenIso\":\"2020-11-17T16:52:55Z\"}],\"newItemCounts\":{\"activityUnread\":28},\"initials\":\"AT\"},{\"id\":1581719,\"name\":\"Jmuthers's Team\",\"recordOverall\":{\"wins\":7,\"losses\":15,\"winPercentage\":{\"value\":0.3181818,\"formatted\":\".318\"},\"rank\":11,\"formatted\":\"7-15\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":11,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1506.81,\"formatted\":\"1,506.81\"},\"pointsAgainst\":{\"value\":1662.83,\"formatted\":\"1,662.83\"},\"streak\":{\"value\":-1.0,\"formatted\":\"L1\"},\"waiverAcquisitionBudget\":{\"value\":87.0,\"formatted\":\"$87\"},\"owners\":[{\"id\":723162,\"displayName\":\"Jmutha\",\"lastSeen\":\"1606258878000\",\"initials\":\"J\",\"lastSeenIso\":\"2020-11-24T23:01:18Z\"}],\"newItemCounts\":{\"activityUnread\":28},\"initials\":\"JT\"},{\"id\":1578553,\"name\":\"Running Bear\",\"recordOverall\":{\"wins\":4,\"losses\":18,\"winPercentage\":{\"value\":0.18181819,\"formatted\":\".182\"},\"rank\":12,\"formatted\":\"4-18\"},\"recordPostseason\":{\"winPercentage\":{\"formatted\":\".000\"},\"rank\":12,\"formatted\":\"0-0\"},\"pointsFor\":{\"value\":1444.7,\"formatted\":\"1,444.7\"},\"pointsAgainst\":{\"value\":1697.32,\"formatted\":\"1,697.32\"},\"streak\":{\"value\":-8.0,\"formatted\":\"L8\"},\"waiverAcquisitionBudget\":{\"value\":60.0,\"formatted\":\"$60\"},\"owners\":[{\"id\":695604,\"displayName\":\"GregManning\",\"lastSeen\":\"1606563056000\",\"initials\":\"G\",\"lastSeenIso\":\"2020-11-28T11:30:56Z\"}],\"initials\":\"RB\"}]}],\"season\":2020,\"league\":{\"id\":312861,\"name\":\"Avid Auctioneers Alliance\",\"logoUrl\":\"https://s3.amazonaws.com/fleaflicker/l312861_0_150x150.jpg\",\"activeForCurrentSeason\":true,\"draftStatus\":\"POST_DRAFT\",\"membershipType\":\"CREATING_COMMISH\",\"rosterRequirements\":{\"positions\":[{\"label\":\"QB\",\"group\":\"START\",\"eligibility\":[\"QB\"],\"min\":1,\"max\":6,\"start\":1,\"colors\":[\"DRAFT_BOARD_RED\"]},{\"label\":\"RB\",\"group\":\"START\",\"eligibility\":[\"RB\"],\"min\":1,\"max\":28,\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\"]},{\"label\":\"WR\",\"group\":\"START\",\"eligibility\":[\"WR\"],\"min\":2,\"max\":28,\"start\":2,\"colors\":[\"DRAFT_BOARD_BLUE\"]},{\"label\":\"TE\",\"group\":\"START\",\"eligibility\":[\"TE\"],\"min\":1,\"max\":28,\"start\":1,\"colors\":[\"DRAFT_BOARD_YELLOW\"]},{\"label\":\"RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"RB\",\"WR\",\"TE\"],\"start\":4,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\"]},{\"label\":\"QB/RB/WR/TE\",\"group\":\"START\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\"],\"start\":1,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\"]},{\"label\":\"IR\",\"group\":\"INJURED\",\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\",\"K\",\"P\",\"D/ST\",\"CB\",\"S\",\"EDR\",\"DE\",\"IL\",\"DT\",\"LB\",\"LB\"],\"start\":3,\"colors\":[\"DRAFT_BOARD_GREEN\",\"DRAFT_BOARD_BLUE\",\"DRAFT_BOARD_YELLOW\",\"DRAFT_BOARD_RED\",\"DRAFT_BOARD_GRAY\",\"DRAFT_BOARD_PURPLE\"]},{\"label\":\"BN\",\"max\":18}],\"rosterSize\":28,\"starterCount\":10,\"benchCount\":18,\"reserveCount\":3,\"eligibility\":[\"QB\",\"RB\",\"WR\",\"TE\"]},\"waiverType\":\"BLIND_BID\",\"maxKeepers\":28,\"defaultWaiverBudget\":100,\"size\":12,\"capacity\":12,\"initials\":\"AA\",\"description\":\"12-Team 28-Keeper\",\"chatChannel\":\"/chats/NFL/leagues/312861/all\",\"draftSecondsPerSelection\":90,\"draftSnakeAt\":-1}}"),
+ date = structure(1606597372, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 0.005776,
+ connect = 0.021636, pretransfer = 0.056639, starttransfer = 0.090568,
+ total = 0.090683
+ )
+), class = "response")
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-0618ef.R b/tests/testthat/flea/api/FetchLeagueTransactions-0618ef.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-0618ef.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-0618ef.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-13bb6c.R b/tests/testthat/flea/api/FetchLeagueTransactions-13bb6c.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-13bb6c.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-13bb6c.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-19a785.R b/tests/testthat/flea/api/FetchLeagueTransactions-19a785.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-19a785.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-19a785.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-1d3a8a.R b/tests/testthat/flea/api/FetchLeagueTransactions-1d3a8a.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-1d3a8a.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-1d3a8a.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-3a54c6.R b/tests/testthat/flea/api/FetchLeagueTransactions-3a54c6.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-3a54c6.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-3a54c6.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-450c85.R b/tests/testthat/flea/api/FetchLeagueTransactions-450c85.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-450c85.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-450c85.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-686003.R b/tests/testthat/flea/api/FetchLeagueTransactions-686003.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-686003.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-686003.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-8e0051.R b/tests/testthat/flea/api/FetchLeagueTransactions-8e0051.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-8e0051.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-8e0051.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-9101a1.R b/tests/testthat/flea/api/FetchLeagueTransactions-9101a1.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-9101a1.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-9101a1.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-925711.R b/tests/testthat/flea/api/FetchLeagueTransactions-925711.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-925711.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-925711.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-962a46.R b/tests/testthat/flea/api/FetchLeagueTransactions-962a46.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-962a46.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-962a46.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-bdfff4.R b/tests/testthat/flea/api/FetchLeagueTransactions-bdfff4.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-bdfff4.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-bdfff4.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-bf54a9.R b/tests/testthat/flea/api/FetchLeagueTransactions-bf54a9.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-bf54a9.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-bf54a9.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-cade24.R b/tests/testthat/flea/api/FetchLeagueTransactions-cade24.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-cade24.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-cade24.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-e3d47c.R b/tests/testthat/flea/api/FetchLeagueTransactions-e3d47c.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-e3d47c.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-e3d47c.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-fef8c8.R b/tests/testthat/flea/api/FetchLeagueTransactions-fef8c8.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchLeagueTransactions-fef8c8.R
rename to tests/testthat/flea/api/FetchLeagueTransactions-fef8c8.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchPlayerListing-5c98a2.R b/tests/testthat/flea/api/FetchPlayerListing-5c98a2.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchPlayerListing-5c98a2.R
rename to tests/testthat/flea/api/FetchPlayerListing-5c98a2.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchPlayerListing-99f3de.R b/tests/testthat/flea/api/FetchPlayerListing-99f3de.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchPlayerListing-99f3de.R
rename to tests/testthat/flea/api/FetchPlayerListing-99f3de.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchTeamPicks-c58fd3.R b/tests/testthat/flea/api/FetchTeamPicks-c58fd3.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchTeamPicks-c58fd3.R
rename to tests/testthat/flea/api/FetchTeamPicks-c58fd3.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchTrades-5c2bf6.R b/tests/testthat/flea/api/FetchTrades-5c2bf6.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchTrades-5c2bf6.R
rename to tests/testthat/flea/api/FetchTrades-5c2bf6.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchTrades-77457a.R b/tests/testthat/flea/api/FetchTrades-77457a.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchTrades-77457a.R
rename to tests/testthat/flea/api/FetchTrades-77457a.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchTrades-b3c137.R b/tests/testthat/flea/api/FetchTrades-b3c137.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchTrades-b3c137.R
rename to tests/testthat/flea/api/FetchTrades-b3c137.R
diff --git a/tests/testthat/www.fleaflicker.com/api/FetchUserLeagues-38253e.R b/tests/testthat/flea/api/FetchUserLeagues-38253e.R
similarity index 100%
rename from tests/testthat/www.fleaflicker.com/api/FetchUserLeagues-38253e.R
rename to tests/testthat/flea/api/FetchUserLeagues-38253e.R
diff --git a/tests/testthat/gh_dynastyprocess/db_playerids.csv.txt b/tests/testthat/gh_dynastyprocess/db_playerids.csv.txt
new file mode 100644
index 00000000..94cadc27
--- /dev/null
+++ b/tests/testthat/gh_dynastyprocess/db_playerids.csv.txt
@@ -0,0 +1,2287 @@
+"mfl_id","sportradar_id","gsis_id","fantasypros_id","ffcalculator_id","pfr_id","cfbref_id","sleeper_id","espn_id","fleaflicker_id","name","merge_name","position","team","age","draft_year","draft_round","draft_pick","birthdate"
+"10005","680fd5cf-3bdc-4317-bc99-cbd97fbebeb3","00-0027812",NA,NA,"WatsDe99","dekoda-watson-1","690","13482","6797","Dekoda Watson","dekoda watson","LB","FA","32.9","2010","7","217","1988-03-03"
+"10026","f1cff356-8de9-4589-8522-40922fecfad7","00-0027835",NA,NA,"ColeKu99","kurt-coleman-1","581","13340","6674","Kurt Coleman","kurt coleman","S","FA","32.6","2010","7","244","1988-07-01"
+"10077","72f5a27a-544f-468a-b10b-89a1fc5d0e9f","00-0027531",NA,NA,"IvorCh00",NA,"717","13587",NA,"Chris Ivory","chris ivory","RB","FA","32.9","2010",NA,NA,"1988-03-22"
+"10103","6bc584ed-82c0-486f-962d-377be6ae8469","00-0027743",NA,NA,NA,NA,"545","13419","6743","Sherrick McManis","sherrick mcmanis","CB","CHI","33.1","2010",NA,NA,"1987-12-19"
+"10111","f0d837e0-54e6-496d-9334-e2d6365d16d6","00-0027236",NA,NA,"LoveKy00",NA,"517","13608",NA,"Kyle Love","kyle love","DT","FA","34.2","2010",NA,NA,"1986-11-18"
+"10122","4a8190f6-039d-485b-8d51-7f98368b02e1","00-0027256",NA,NA,"StewDa00",NA,"625","13645",NA,"Darian Stewart","darian stewart","S","FA","32.5","2010",NA,NA,"1988-08-04"
+"10143","cee49408-2e91-487a-a8ec-d3314ebf539d","00-0026564",NA,NA,NA,NA,"667","12895","6470","Steve Mclendon","steve mclendon","DT","TBB","35.1","2009",NA,NA,"1986-01-03"
+"10149","688f7a3b-4d66-4fcf-802d-6a3cb133ea30","00-0027375",NA,NA,"BrocTr00",NA,"633","13681",NA,"Tramaine Brock","tramaine brock","CB","DET","32.4","2010",NA,NA,"1988-08-20"
+"10220","39ee3bee-1177-49cd-a78b-7a790ffd0b84","00-0027914",NA,NA,"SendAn00",NA,"770","13939",NA,"Andrew Sendejo","andrew sendejo","S","CLE","33.4","2010",NA,NA,"1987-09-09"
+"10250","4f799675-2b27-4437-9acc-bc4e0c73ef0f","00-0027547",NA,NA,"SherMa20",NA,"784","13843","7264","Marcus Sherels","marcus sherels","CB","FA","33.3","2010",NA,NA,"1987-09-30"
+"10260","9f3b934e-52d6-4e16-ae92-d3e60be10493","00-0027943",NA,NA,"PetePa00","patrick-peterson-1","972","13980","7379","Patrick Peterson","patrick peterson","CB","ARI","30.6","2011","1","5","1990-07-11"
+"10261","c9701373-23f6-4058-9189-8d9c085f3c49","00-0027942","9857","1795","GreeA.00","aj-green-1","830","13983",NA,"AJ Green","aj green","WR","CIN","32.5","2011","1","4","1988-07-31"
+"10262","de816e24-8442-49a4-99cd-dde7e7c05863","00-0027948",NA,NA,"GabbBl00","blaine-gabbert-1","862","13987","7368","Blaine Gabbert","blaine gabbert","QB","TBB","31.3","2011","1","10","1989-10-15"
+"10263","072ec285-1430-48d4-9342-5a1b9af527f3","00-0027958",NA,NA,"ClayAd00","adrian-clayborn-1","961","13965","7365","Adrian Clayborn","adrian clayborn","DE","CLE","32.6","2011","1","20","1988-07-06"
+"10264","f1879cfa-4c07-4140-9da0-c7ebe9af2dfd","00-0027957",NA,NA,"AmukPr00","prince-amukamara-1","908","13975","7360","Prince Amukamara","prince amukamara","CB","FA","31.7","2011","1","19","1989-06-06"
+"10265","f44b4942-1de1-41d7-a8f5-c44552e7c336","00-0027941",NA,NA,"DareMa00","marcell-dareus-1","795","13992","7366","Marcell Dareus","marcell dareus","DT","FA","31.2","2011","1","3","1989-11-18"
+"10266","9779acc7-ed88-4a16-b78d-230ace9ec3eb","00-0027969",NA,NA,"HeywCa01","cameron-heyward-1","843","13977","7370","Cameron Heyward","cameron heyward","DE","PIT","31.7","2011","1","31","1989-05-06"
+"10267","cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38","00-0027940",NA,NA,"MillVo00","von-miller-1","871","13976","7377","Von Miller","von miller","LB","DEN","31.9","2011","1","2","1989-03-26"
+"10269","57bd3249-bae3-4e13-b4d6-f86dbc4978e7","00-0027952",NA,NA,NA,NA,"967","13984","7382","Robert Quinn","robert quinn","LB","CHI","30.7","2011","1","14","1990-05-18"
+"10271","0b3217b9-ba37-4222-95cb-a7a222441e8b","00-0027944","9867","1796","JoneJu02","julio-jones-1","947","13982","7372","Julio Jones","julio jones","WR","ATL","32","2011","1","6","1989-02-03"
+"10272","dc11299d-6c24-4048-8b2f-f929e4ed0b92","00-0027949","9868",NA,"WattJ.00","jj-watt-1","856","13979",NA,"JJ Watt","jj watt","DE","HOU","31.9","2011","1","11","1989-03-22"
+"10273","214e55e4-a089-412d-9598-a16495df0d25","00-0027939","9869","1794","NewtCa00","cam-newton-1","954","13994",NA,"Cam Newton","cam newton","QB","NEP","31.7","2011","1","1","1989-05-11"
+"10274","3d22209a-9800-4199-aa36-b9c86c86455b","00-0027945",NA,NA,"SmitAl04","aldon-smith-1","986","13988",NA,"Aldon Smith","aldon smith","DE","DAL","31.2","2011","1","7","1989-11-30"
+"10275","750c6332-6848-4303-9916-a6ed49833a56","00-0028024",NA,NA,"BailAl00","allen-bailey-1","875","14020","7394","Allen Bailey","allen bailey","DE","ATL","31.9","2011","3","86","1989-03-25"
+"10276","f336567d-44a9-4245-8452-1dd485fd70fb","00-0027966","9872",NA,"IngrMa01","mark-ingram-1","956","13981",NA,"Mark Ingram","mark ingram","RB","FA","31.1","2011","1","28","1989-12-21"
+"10277","98841eb4-0f2a-4073-bc91-0fa8548b305b","00-0028008",NA,NA,"HousJu00","justin-houston-1","878","14048","7417","Justin Houston","justin houston","DE","IND","32","2011","3","70","1989-01-21"
+"10280","a25f92e6-6e67-4463-a32f-77976807b3d8","00-0027954",NA,NA,"KerrRy00","ryan-kerrigan-1","917","13973","7374","Ryan Kerrigan","ryan kerrigan","DE","WAS","32.5","2011","1","16","1988-08-16"
+"10285","ac540ab1-95e1-48a2-ac93-6c0037c5a026","00-0027956",NA,NA,NA,NA,"894","13989","7375","Corey Liuget","corey liuget","DT","FA","30.9","2011","1","18","1990-03-18"
+"10292","543e5e1e-50e5-482d-a6ad-498d7fab497e","00-0027962",NA,NA,"JordCa00","cameron-jordan-1","957","13971","7373","Cameron Jordan","cameron jordan","DE","NOS","31.6","2011","1","24","1989-07-10"
+"10294","c3d6c803-1c91-4bd9-956c-7f6c292558c5","00-0027965",NA,NA,"SmitJi03","jimmy-smith-1","825","13963","7385","Jimmy Smith","jimmy smith","CB","BAL","32.5","2011","1","27","1988-07-26"
+"10297","068b70bc-9558-4e99-b729-754fd28937ed",NA,NA,NA,"KaepCo00","colin-kaepernick-1","980","14001",NA,"Colin Kaepernick","colin kaepernick","QB","FA*","33.2","2011","2","36","1987-11-03"
+"10300","91a95850-9514-49d5-b2b0-f8e21156daa0","00-0028083",NA,NA,"RodgJa00","jacquizz-rodgers-1","949","14193","7566","Jacquizz Rodgers","jacquizz rodgers","RB","FA","31","2011","5","145","1990-02-06"
+"10308","3283f152-d373-43b3-b88f-f6f261c48e81","00-0028002","9902",NA,"CobbRa00","randall-cobb-1","928","14053","7401","Randall Cobb","randall cobb","WR","HOU","30.4","2011","2","64","1990-08-22"
+"10312","1059e9dc-97df-4643-9116-883a0573d8b1","00-0027981","9906",NA,"RudoKy00","kyle-rudolph-1","943","14054","7444","Kyle Rudolph","kyle rudolph","TE","MIN","31.2","2011","2","43","1989-11-09"
+"10313","d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1","00-0027973","9907",NA,"DaltAn00","andy-dalton-1","829","14012",NA,"Andy Dalton","andy dalton","QB","DAL","33.3","2011","2","35","1987-10-29"
+"10314","3877e0ba-222f-4bd2-887c-1db8f1a5e7d1","00-0027968",NA,NA,"WilkMu00","muhammad-wilkerson-1","819","13985","7391","Muhammad Wilkerson","muhammad wilkerson","DE","FA","31.3","2011","1","30","1989-10-22"
+"10315","b6782b61-89e1-4a9d-9ad1-7715eb6ff628","00-0027980",NA,NA,"ReedBr00","brooks-reed-1","855","13997","7441","Brooks Reed","brooks reed","LB","TEN","33.9","2011","2","42","1987-02-28"
+"10318","27921351-a775-4649-bd49-7b4c486d1ba2","00-0027985",NA,NA,NA,NA,"964","14007","7425","Lance Kendricks","lance kendricks","TE","FA","33","2011","2","15","1988-01-30"
+"10320","7bad73a1-c023-4b53-bd4c-dedf18480b8a","00-0027975",NA,NA,"SheaJa00","jabaal-sheard-1","836","14036",NA,"Jabaal Sheard","jabaal sheard","DE","NYG","31.7","2011","2","37","1989-05-10"
+"10324","80cd039e-08e5-48ef-935d-ac46db36460d","00-0027988",NA,NA,NA,NA,"893","14018","7412","Marcus Gilchrist","marcus gilchrist","S","BAL","32.1","2011","2","18","1988-12-08"
+"10329","97d98203-7785-4286-b01c-2611c6f5a44e","00-0028003",NA,NA,"McClTe00","terrell-mcclain-1","953","14014",NA,"Terrell McClain","terrell mcclain","DE","FA","32.5","2011","3","65","1988-07-20"
+"10335","31b604a7-4f2e-4cfd-b040-5d749f7f5d5b","00-0028015",NA,NA,"CaseJu00","jurrell-casey-1","846","14047","7400","Jurrell Casey","jurrell casey","DE","DEN","31.2","2011","3","77","1989-12-05"
+"10339","f9354bca-514d-4f8d-97b2-5c6ed471edff","00-0028022",NA,NA,"FostMa00","mason-foster-1","962","14023","7408","Mason Foster","mason foster","LB","FA","31.9","2011","3","84","1989-03-01"
+"10350","93ff0e6f-fee3-41d1-a913-6111cd9ebef1","00-0028037",NA,NA,"WrigK.00","kj-wright-1","998","14140",NA,"KJ Wright","kj wright","LB","SEA","31.5","2011","4","99","1989-07-23"
+"10353","94cbc2c8-07e4-4779-851b-b657b46a7920","00-0028041",NA,NA,"AchoSa00","sam-acho-1","969","14152","7457","Sam Acho","sam acho","LB","FA","32.4","2011","4","103","1988-09-06"
+"10354","5b712aed-201c-43dd-b978-b7b6ef91178e","00-0028042",NA,NA,"StocLu00","luke-stocker-1","963","14099","7589","Luke Stocker","luke stocker","TE","ATL","32.5","2011","4","104","1988-07-17"
+"10368","adadafa1-dc37-486d-8538-7db1e1b5f71e","00-0028063",NA,NA,NA,NA,"886","14167",NA,"Taiwan Jones","taiwan jones","RB","BUF","32.5","2011","4","28","1988-07-26"
+"10369","4a38cda2-e92f-47f8-b324-0c34e09d83f2","00-0028064",NA,NA,"PoweBi00","bilal-powell-1","818","14129","7561","Bilal Powell","bilal powell","RB","FA","32.3","2011","4","126","1988-10-27"
+"10378","e033ce15-9fc5-430b-90e2-90dfe52b21c1","00-0028074",NA,NA,"SherAn00","anthony-sherman-1","973","14135","7580","Anthony Sherman","anthony sherman","RB","KCC","32.1","2011","5","136","1988-12-11"
+"10379","639ff90f-285c-44a7-ba8d-6a47d0ecff71","00-0028075",NA,NA,"SkriBu00",NA,"837","14139","7583","Buster Skrine","buster skrine","CB","CHI","31.8","2011","5","137","1989-04-26"
+"10389","b25ba2bd-80bd-4295-9034-cf9242fb207b","00-0028087","9983",NA,"LewiDi00","dion-lewis-1","788","14198",NA,"Dion Lewis","dion lewis","RB","NYG","30.3","2011","5","149","1990-09-27"
+"10393","29ac0dbd-2d1c-40da-88ba-36f0d3856d05","00-0028092",NA,NA,"SherRi00","richard-sherman-1","996","14086","7581","Richard Sherman","richard sherman","CB","SFO","32.8","2011","5","154","1988-03-30"
+"10398","cf23126f-055b-4617-819b-bb4bcb84541a","00-0028097",NA,NA,"SmitLe00","lee-smith-2","812","14215","7585","Lee Smith","lee smith","TE","BUF","33.2","2011","5","159","1987-11-21"
+"10402","4b62138a-e222-408c-8595-936d1a194eca","00-0028103",NA,NA,"McPhPe00","pernell-mcphee-1","823","14202","7546","Pernell McPhee","pernell mcphee","LB","BAL","32.1","2011","5","165","1988-12-17"
+"10409","04ca4fb9-194e-47fe-8fc8-adb5790a8e78","00-0028112",NA,NA,"ClayCh00","charles-clay-1","801","14145",NA,"Charles Clay","charles clay","TE","FA","32","2011","6","174","1989-02-13"
+"10410","5ed2cea8-e0c6-482c-9ee1-548c06612226","00-0028114",NA,NA,"HarrDw00","dwayne-harris-1","902","14100","7508","Dwayne Harris","dwayne harris","WR","CHI","33.4","2011","6","176","1987-09-16"
+"10412","b030b668-0f41-484f-8e94-9fc576b8af63","00-0028116",NA,NA,"RobiAl00","aldrick-robinson-1","919","14164",NA,"Aldrick Robinson","aldrick robinson","WR","FA","32.4","2011","6","178","1988-09-24"
+"10413","7f3ef024-eb34-46af-8b9e-544cdf09378f","00-0028118","10007",NA,"TaylTy00","tyrod-taylor-1","827","14163","7592","Tyrod Taylor","tyrod taylor","QB","LAC","31.5","2011","6","180","1989-08-03"
+"10422","fc506583-7edf-4e40-8047-83f60bea67a2","00-0028128",NA,NA,"JoneCo01","colin-jones-1","979","14117",NA,"Colin Jones","colin jones","S","FA","33.3","2011","6","190","1987-10-27"
+"10423","947ba5a9-71de-4cc5-839a-884cfa49544b","00-0028130",NA,NA,NA,NA,"944","14073",NA,"Matt Bosher","matt bosher","PN","FA","33.3","2011","6","27","1987-10-18"
+"10432","6ef43c53-53d7-4b0f-ad99-17664d663ae8","00-0028142",NA,NA,"GreeVi00","virgil-green-1","868","14085","7502","Virgil Green","virgil green","TE","LAC","32.5","2011","7","204","1988-08-03"
+"10437","9be8224a-4a19-4f6a-a2be-ecbd3a24868c",NA,NA,NA,"MillBr02","bruce-miller-1","982","14083",NA,"Bruce Miller","bruce miller","TE","JAC","33.5","2011","7","211","1987-08-06"
+"10457","0861a57d-b468-4c21-ba3a-7523b6838ed0","00-0028171",NA,NA,"GuyxLa00","lawrence-guy-1","1288","14185",NA,"Lawrence Guy","lawrence guy","DT","NEP","30.9","2011","7","233","1990-03-17"
+"10465","bcebf5f0-0224-4cc8-9a78-1aefd55bfc87","00-0028180",NA,NA,"SmitMa02","malcolm-smith-1","997","14214","7586","Malcolm Smith","malcolm smith","LB","CLE","31.6","2011","7","242","1989-07-05"
+"10487","5514afb6-bd43-49a8-9bf7-b8baaaecdabe","00-0028787",NA,NA,NA,NA,"1287","14816",NA,"Kai Forbath","kai forbath","PK","FA","33.4","2011",NA,NA,"1987-09-02"
+"10500","af48c3f0-040b-40f9-95ab-6ebcb4c16cf8","00-0028825",NA,NA,NA,NA,"1020","14851",NA,"Terrelle Pryor","terrelle pryor","WR","FA","31.6","2011",NA,NA,"1989-06-20"
+"10506","beb64618-614c-49f7-a3aa-c0c75b7839ea","00-0028660","10970","1891","BailDa00",NA,"899","14322",NA,"Dan Bailey","dan bailey","PK","MIN","33","2011",NA,NA,"1988-01-26"
+"10514","eeb9e3f4-e378-44ca-94b6-a724011ad710","00-0028292",NA,NA,"BellNi01",NA,"815","14471",NA,"Nick Bellore","nick bellore","RB","SEA","31.7","2011",NA,NA,"1989-05-12"
+"10549","74c595a3-b683-49b3-90f3-fd8327857b1d","00-0027560",NA,NA,NA,NA,"1000","13851",NA,"Albert McClellan","albert mcclellan","LB","FA","34.7","2010",NA,NA,"1986-06-04"
+"10554","ea2fda83-2817-4884-9e85-973263a4e069","00-0028339",NA,NA,"AddiMa00",NA,"922","14320","7753","Mario Addison","mario addison","DE","BUF","33.4","2011",NA,NA,"1987-09-06"
+"10592","de185684-3a02-4e63-b2b1-405e562b3a77","00-0028224",NA,NA,"HarrCh01",NA,"869","14398",NA,"Chris Harris","chris harris","CB","LAC","31.6","2011",NA,NA,"1989-06-18"
+"10642","4d1f4c44-3666-4014-95fc-4b0013b6d9a5","00-0028664",NA,NA,"JoneCh02",NA,"903","14723",NA,"Chris Jones","chris jones","PN","DAL","31.5","2011",NA,NA,"1989-07-21"
+"10653","87745a22-9ce8-4a5a-8935-dcc102ce4b18","00-0028278",NA,NA,"ByneJo00",NA,"821","14519","7994","Josh Bynes","josh bynes","LB","CIN","31.4","2011",NA,NA,"1989-08-24"
+"10695","e3181493-6a2a-4e95-aa6f-3fc1ddeb7512","00-0029668",NA,NA,"LuckAn00","andrew-luck-1","1111","14874",NA,"Andrew Luck","andrew luck","QB","FA","31.4","2012","1","1","1989-09-12"
+"10696","8dfb370d-460c-4bfc-9d62-888687248783","00-0029665",NA,NA,"GrifRo01","robert-griffin-iii-1","1169","14875",NA,"Robert Griffin","robert griffin","QB","BAL","31","2012","1","2","1990-02-12"
+"10697","5812204c-6dae-4450-8011-99e0f72864ac","00-0029701","11174","1899","TannRy00","ryan-tannehill-1","1049","14876","8514","Ryan Tannehill","ryan tannehill","QB","TEN","32.5","2012","1","8","1988-07-27"
+"10699","c8232b55-6617-4dd9-a7cf-cf14cd9a29ab","00-0029567","11176",NA,"FoleNi00","nick-foles-1","1029","14877","8562","Nick Foles","nick foles","QB","CHI","32","2012","3","88","1989-01-20"
+"10700","bbd0942c-6f77-4f83-a6d0-66ec6548019e","00-0029604","11177",NA,"CousKi00","kirk-cousins-1","1166","14880","8625","Kirk Cousins","kirk cousins","QB","MIN","32.5","2012","4","102","1988-08-19"
+"10703","409d4cac-ee90-4470-9710-ebe671678339","00-0029263","11180","1904","WilsRu00","russell-wilson-1","1234","14881","8598","Russell Wilson","russell wilson","QB","SEA","32.2","2012","3","75","1988-11-29"
+"10708","a212c5d8-67f8-48b9-99be-2c121ee56366","00-0029615","11185",NA,"MillLa01","lamar-miller-1","1048","14886","8512","Lamar Miller","lamar miller","RB","WAS","29.8","2012","4","97","1991-04-25"
+"10709","5c2a0c83-e18a-43dd-bd65-704771157e42","00-0029613",NA,NA,"MartDo00","doug-martin-1","1195","14885",NA,"Doug Martin","doug martin","RB","FA","32","2012","1","31","1989-01-13"
+"10714","63fd9abe-4bdf-4611-9497-0c67e030ce01","00-0029273",NA,NA,"TurbRo00","robert-turbin-1","1232","14894","8596","Robert Turbin","robert turbin","RB","FA","31.2","2012","4","106","1989-12-02"
+"10721","471dbe81-54c4-4b52-8bd1-4933c9800e1f","00-0029638",NA,NA,"FloyMi00","michael-floyd-1","1219","14908",NA,"Michael Floyd","michael floyd","WR","FA","31.2","2012","1","13","1989-11-27"
+"10722","5c529c33-8a1d-413a-b635-880ac86f30c1","00-0029137","11199",NA,"JeffAl00","alshon-jeffery-1","1149","14912","8422","Alshon Jeffery","alshon jeffery","WR","PHI","31","2012","2","45","1990-02-14"
+"10723","1726a359-9444-4761-a1f2-cb35ee6fa60e","00-0029632","11200",NA,"SanuMo00","mohamed-sanu-1","1071","14922",NA,"Mohamed Sanu","mohamed sanu","WR","DET","31.4","2012","3","83","1989-08-22"
+"10729","b8426cea-f8b9-4061-8d56-e70d1230103e","00-0029608","11206","1935","HiltT.00","ty-hilton-1","1110","14924",NA,"TY Hilton","ty hilton","WR","IND","31.2","2012","3","92","1989-11-14"
+"10734","6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3","00-0029572",NA,NA,"WrigJa02","jarius-wright-1","1215","14918","8525","Jarius Wright","jarius wright","WR","FA","31.2","2012","4","118","1989-11-25"
+"10737","4f0053fc-5559-4551-bd81-dcd1cdf3a9ec","00-0029269",NA,NA,"BenjTr00","travis-benjamin-1","1077","15062","8437","Travis Benjamin","travis benjamin","WR","SFO","31.1","2012","4","100","1989-12-29"
+"10738","1a2fbc23-e6db-4d2f-a152-2c774341b7c4","00-0029293","11215","2061","JoneMa02","marvin-jones-1","1067","15072",NA,"Marvin Jones","marvin jones","WR","DET","30.9","2012","5","166","1990-03-12"
+"10742","cc745cc3-d52a-454b-98c8-ac9155a9405c","00-0029689",NA,NA,"AlleDw00","dwayne-allen-1","1105","14901","8485","Dwayne Allen","dwayne allen","TE","FA","30.9","2012","3","64","1990-02-24"
+"10749","2cae991f-878e-434e-9f76-fad263fad23c","00-0029249",NA,NA,NA,NA,"1141","14926",NA,"Melvin Ingram","melvin ingram","DE","LAC","31.8","2012","1","18","1989-04-26"
+"10753","5197def5-f444-4561-ad28-7aac10dc748e","00-0029585",NA,NA,"JoneCh03","chandler-jones-2","1038","14927","8531","Chandler Jones","chandler jones","LB","ARI","30.9","2012","1","21","1990-02-27"
+"10754","eafbc0f8-2e3b-4014-af9d-81fc14b5009a","00-0029643",NA,NA,"MercWh00","whitney-mercilus-1","1103","14936","8482","Whitney Mercilus","whitney mercilus","LB","HOU","30.5","2012","1","26","1990-07-21"
+"10755","e929b3d8-6f7b-41f2-acfa-fe3840d03509","00-0029412",NA,NA,"CurrVi00","vinny-curry-1","1028","14959","8561","Vinny Curry","vinny curry","DE","PHI","32.6","2012","2","59","1988-06-30"
+"10761","9fdc477a-af02-4345-baca-cf026fbc645a","00-0029688",NA,NA,"PoexDo00","dontari-poe-1","1131","14939","8504","Dontari Poe","dontari poe","DT","FA","30.5","2012","1","11","1990-08-18"
+"10762","49671677-0e37-4c70-ae1b-ec36be357eb9","00-0029653",NA,NA,"CoxxFl00","fletcher-cox-1","1027","14941","8560","Fletcher Cox","fletcher cox","DT","PHI","30.1","2012","1","12","1990-12-13"
+"10763","30119d63-584c-4fd6-95aa-67b7af4998f5","00-0029630",NA,NA,NA,NA,"1197","14944","8599","Michael Brockers","michael brockers","DE","LAR","30.1","2012","1","14","1990-12-21"
+"10766","6fc3f73e-9c19-41cf-aa95-df4d83e29e9e","00-0029193",NA,NA,"IrviBr00","bruce-irvin-1","1242","14946",NA,"Bruce Irvin","bruce irvin","DE","SEA","34.1","2012","1","15","1987-01-11"
+"10768","9a612961-9fdf-47d0-b7ca-32b55adb1f61","00-0029562",NA,NA,"DaviLa00","lavonte-david-1","1192","14985","8610","Lavonte David","lavonte david","LB","TBB","31","2012","2","58","1990-01-23"
+"10770","e858a1af-ebbe-4413-9903-ecd96d36a09b","00-0029566",NA,NA,"BrowZa00","zach-brown-2","1093","14973","8616","Zach Brown","zach brown","LB","FA","31.3","2012","2","52","1989-10-23"
+"10772","a62a2950-521e-4670-a4cf-47f6863fc0d1","00-0028912",NA,NA,"BurfVo00",NA,"1064","15246","8683","Vontaze Burfict","vontaze burfict","LB","FA","30.4","2012",NA,NA,"1990-09-24"
+"10773","40403404-4624-4bd0-b11d-ec8299c48a42","00-0029248",NA,NA,"KuecLu00","luke-kuechly-1","1181","14938",NA,"Luke Kuechly","luke kuechly","LB","FA","29.8","2012","1","9","1991-04-20"
+"10774","e7a18744-0608-4118-888f-f51de5645ce9","00-0029669",NA,NA,"HighDo01","donta-hightower-1","1037","14933","8530","Donta Hightower","donta hightower","LB","NEP","30.9","2012","1","25","1990-03-12"
+"10775","706bc0ab-7200-47e9-9b09-726110eb83dc","00-0029255","11252",NA,"WagnBo00","bobby-wagner-1","1233","14979","8597","Bobby Wagner","bobby wagner","LB","SEA","30.6","2012","2","47","1990-06-27"
+"10777","e0d47951-fea7-4f2a-a936-f4d758ea6b83","00-0029676",NA,NA,"ClaiMo00","morris-claiborne-1","1145","14943","8447","Morris Claiborne","morris claiborne","CB","FA","31","2012","1","6","1990-02-07"
+"10778","e972d67d-8302-4c64-9c1c-bc3121b90af4","00-0029560",NA,NA,"KirkDr00","dre-kirkpatrick-1","1068","14940","8430","Dre Kirkpatrick","dre kirkpatrick","CB","ARI","31.3","2012","1","17","1989-10-26"
+"10779","be7e6d3f-a5d5-4ba9-b694-5bdacab75606","00-0029681",NA,NA,NA,NA,"1203","14974","8602","Janoris Jenkins","janoris jenkins","CB","NOS","32.3","2012","2","7","1988-10-29"
+"10782","98c7ad4f-8e63-4028-b3ca-84dd37a5ae64","00-0029670",NA,NA,"BarrMa00","mark-barron-1","1255","14932","8609","Mark Barron","mark barron","LB","FA","31.3","2012","1","7","1989-10-27"
+"10783","407f1923-6659-4564-800f-25b8746d6d3e","00-0029606",NA,NA,"SmitHa00","harrison-smith-2","1213","14945","8523","Harrison Smith","harrison smith","S","MIN","32","2012","1","29","1989-02-02"
+"10784","2b9494e4-953a-4aac-afe7-edd2d7be27da","00-0029215",NA,NA,"IlokGe00","george-iloka-1","1066","15085",NA,"George Iloka","george iloka","S","MIN","30.6","2012","5","167","1990-06-20"
+"10789","c7c6dc46-a58a-4cfc-b626-2360434671cb","00-0029542",NA,NA,"GilmSt00","stephon-gilmore-1","1043","14942","8408","Stephon Gilmore","stephon gilmore","CB","NEP","30.4","2012","1","10","1990-09-19"
+"10793","a278c39e-7d4d-48c2-8145-2f8ad882ebeb","00-0029261",NA,NA,"HaywCa00","casey-hayward-1","1175","14966",NA,"Casey Hayward","casey hayward","CB","LAC","31.4","2012","2","62","1989-09-09"
+"10806","30f98123-214c-4f32-b29c-ac6f3ff56f39","00-0029586",NA,NA,"WolfDe00","derek-wolfe-1","1128","14964","8460","Derek Wolfe","derek wolfe","DE","BAL","30.9","2012","2","36","1990-02-24"
+"10807","7ec15a09-9237-43cc-9401-fb76cc418022","00-0029409",NA,NA,"KendMy00","mychal-kendricks-1","1032","14978","8564","Mychal Kendricks","mychal kendricks","LB","WAS","30.3","2012","2","46","1990-09-28"
+"10808","cbe81592-1ee2-4bf1-870a-2578c4c8267e","00-0029410",NA,NA,"WilsTa00","tavon-wilson-1","1039","14977","8532","Tavon Wilson","tavon wilson","S","IND","30.9","2012","2","48","1990-03-19"
+"10810","e4538897-a749-41a8-8220-332e8229ac41","00-0029690",NA,NA,NA,NA,"1204","14989","8603","Trumaine Johnson","trumaine johnson","CB","FA","31.1","2012","3","2","1990-01-01"
+"10814","6ee71282-c2b8-416a-8de1-29c0185d9b7b","00-0029692",NA,NA,"AngeBr00","bryan-anger-1","1113","14950",NA,"Bryan Anger","bryan anger","PN","HOU","32.3","2012","3","70","1988-10-06"
+"10815","3be41614-5c70-4b0a-89c7-c7ae061d9223","00-0029693",NA,NA,"VernOl00","olivier-vernon-1","1259","14982","8515","Olivier Vernon","olivier vernon","DE","CLE","30.3","2012","3","72","1990-10-07"
+"10816","e6221da0-1ce0-4f60-85b5-f2094e9d2863","00-0029607",NA,NA,"DaviDe00","demario-davis-1","1052","14958","8547","Demario Davis","demario davis","LB","NOS","32.1","2012","3","77","1989-01-11"
+"10819","dc632746-2240-41d6-8141-695194706989","00-0029641",NA,NA,"CrawTy00","tyrone-crawford-1","1146","14987",NA,"Tyrone Crawford","tyrone crawford","DT","DAL","31.2","2012","3","81","1989-11-22"
+"10823","e2d85e2a-3d88-42e7-95ca-8db79228135c","00-0029657",NA,NA,"HickAk00",NA,"1186","14984",NA,"Akiem Hicks","akiem hicks","DE","CHI","31.2","2012","3","89","1989-11-16"
+"10827","9279ccd9-3088-409e-8bc5-215363e7a29e","00-0029272",NA,NA,"BradNi00","nigel-bradham-1","1040","15075","8405","Nigel Bradham","nigel bradham","LB","FA","31.4","2012","4","105","1989-09-04"
+"10831","cdbaf089-9c7e-418f-829e-d903c28b2628","00-0029647",NA,NA,"WilbKy00","kyle-wilber-1","1148","15038","8453","Kyle Wilber","kyle wilber","LB","LVR","31.8","2012","4","113","1989-04-26"
+"10833","a2015dbb-fd0b-46fc-ad19-eb387605f244","00-0029529",NA,NA,"SensCo00","coty-sensabaugh-1","1095","14998","8619","Coty Sensabaugh","coty sensabaugh","CB","FA","32.2","2012","4","115","1988-11-15"
+"10838","cccc9f16-9508-434f-b7a4-9a29cb0cacf9","00-0029587",NA,NA,"ElliRh00","rhett-ellison-1","1211","15003",NA,"Rhett Ellison","rhett ellison","TE","FA","32.3","2012","4","128","1988-10-03"
+"10841","34de0b93-9cab-4987-915b-25ef8480cae7","00-0029284",NA,NA,"DaniMi00","mike-daniels-2","1174","14994","8470","Mike Daniels","mike daniels","DT","CIN","31.7","2012","4","132","1989-05-05"
+"10846","252da24d-9eb7-4871-ae76-199918f412d8","00-0029568",NA,NA,"JackMa02","malik-jackson-2","1124","15047","8457","Malik Jackson","malik jackson","DT","PHI","31.1","2012","5","137","1990-01-11"
+"10847","70eae82c-30ea-491f-b71c-aa11f47af476","00-0029212",NA,NA,"WhitTa00","tahir-whitehead-1","1160","15070","8468","Tahir Whitehead","tahir whitehead","LB","CAR","30.8","2012","5","138","1990-04-02"
+"10849","9552a04c-6468-41e0-bc5c-c91efedf2fc3","00-0029418",NA,NA,"GoodNa00","najee-goode-1","1193","15068",NA,"Najee Goode","najee goode","LB","FA","31.7","2012","5","140","1989-06-04"
+"10850","6fc9e2c6-fb44-490e-8353-2362b7b94ee9","00-0029620",NA,NA,"MarsBr01","brandon-marshall-3","1118","15002","8497","Brandon Marshall","brandon marshall","LB","FA","31.4","2012","5","142","1989-09-10"
+"10851","2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595","00-0029285",NA,NA,"NormJo01",NA,"1182","15124","8417","Josh Norman","josh norman","CB","BUF","33.1","2012","5","143","1987-12-15"
+"10861","3a2a4022-a54c-4325-b521-e46e460559ab","00-0029627",NA,NA,NA,NA,"1136","15090","8555","Jack Crawford","jack crawford","DE","TEN","32.4","2012","5","23","1988-09-07"
+"10862","c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e","00-0029421","11339",NA,"BullRa00","randy-bullock-1","1099","15091",NA,"Randy Bullock","randy bullock","PK","CIN","31.1","2012","5","161","1989-12-16"
+"10868","93d11276-45d2-4168-a9b7-df0cbf12dabb","00-0029621","11345","1960",NA,NA,"1266","14993","8608","Greg Zuerlein","greg zuerlein","PK","DAL","33.1","2012","6","1","1987-12-27"
+"10870","bd10efdf-d8e7-4e23-ab1a-1e42fb65131b","00-0029141",NA,NA,"MorrAl00","alfred-morris-1","1170","15009",NA,"Alfred Morris","alfred morris","RB","NYG","32.1","2012","6","173","1988-12-12"
+"10874","f403d099-29d4-43cd-bf79-4aeeb8dc6cd3","00-0029530",NA,NA,"BethJu00",NA,"1216","15089","8383","Justin Bethel","justin bethel","CB","NEP","30.6","2012","6","177","1990-06-17"
+"10879","0a605e2f-4c81-453d-941b-4e9f143210f8","00-0029577",NA,NA,"TrevDa00","danny-trevathan-1","1127","15074","8459","Danny Trevathan","danny trevathan","LB","CHI","30.9","2012","6","188","1990-03-24"
+"10884","93927d6e-9271-4c1e-8239-cc20fd788ba9","00-0029570",NA,NA,"EbneNa00","nate-ebner-1","1035","15125","8529","Nate Ebner","nate ebner","S","NYG","32.1","2012","6","197","1988-12-14"
+"10888","408aff57-2b32-41f7-9520-0064ad14af21","00-0029303",NA,NA,"WinnBi00","billy-winn-1","1086","15021",NA,"Billy Winn","billy winn","DE","GBP","31.8","2012","6","205","1989-04-15"
+"10906","a41304be-54fb-4448-bf94-9bf6334a880a","00-0029629",NA,NA,NA,NA,"1729","15040",NA,"Nathan Stupar","nathan stupar","LB","FA","32.9","2012","7","23","1988-03-14"
+"10932","dba5e3ec-2c77-4f65-ad6e-cee246f816ef","00-0029239",NA,NA,"BoldBr00",NA,"1034","15478","9114","Brandon Bolden","brandon bolden","RB","NEP","31","2012",NA,NA,"1990-01-26"
+"10935","1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5","00-0029623",NA,NA,"TannAl00",NA,"1262","15693",NA,"Alex Tanney","alex tanney","QB","NYG","33.2","2012",NA,NA,"1987-11-11"
+"10940","d3fab07b-f02a-433d-9612-cb0a751f324d","00-0029119",NA,NA,"CarrDe00",NA,"1718","15403",NA,"Derek Carrier","derek carrier","TE","LVR","30.5","2012",NA,NA,"1990-07-25"
+"10945","380435a9-1833-4381-a12b-498a43732798","00-0028872",NA,NA,"HekkJo00",NA,"1202","15153",NA,"Johnny Hekker","johnny hekker","PN","LAR","31","2012",NA,NA,"1990-02-08"
+"10948","1b3d350a-478b-4542-a430-d12cc96adc22","00-0028986",NA,NA,"KeenCa00",NA,"1737","15168",NA,"Case Keenum","case keenum","QB","CLE","33","2012",NA,NA,"1988-02-12"
+"10956","c323cdb9-74bc-4d68-9358-609f80eedbb7","00-0029388",NA,NA,"ThomDe04",NA,"1061","15503","8662","Deonte Thompson","deonte thompson","WR","FA","32","2012",NA,NA,"1989-02-14"
+"10960","b228c353-bb1f-4ba8-aa6d-d18ecf297259","00-0029664",NA,NA,NA,NA,"1244","15705","9235","Josh Gordon","josh gordon","WR","SEA","29.8","2012",NA,NA,"1991-04-13"
+"10973","7092bb09-a161-4ab9-8d19-fdcf1a91bb3d","00-0029000","11459",NA,"BeasCo00",NA,"1144","15349","8735","Cole Beasley","cole beasley","WR","BUF","31.8","2012",NA,NA,"1989-04-26"
+"10976","20a0bad2-d530-4ff4-a2df-5c0a21a1f5db","00-0029597","11465","1962","TuckJu00",NA,"1264","15683","8663","Justin Tucker","justin tucker","PK","BAL","31.2","2012",NA,NA,"1989-11-21"
+"10981","04e8ea8f-8424-4196-a0fd-7dff3740c734","00-0027539",NA,NA,NA,NA,"1298","13845",NA,"Anthony Levine","anthony levine","S","BAL","33.9","2011",NA,NA,"1987-03-27"
+"10983","8fc65820-f565-44e2-8635-3e1cdf165bf6","00-0028237",NA,NA,NA,NA,"1329","14402",NA,"Chris Hogan","chris hogan","WR","FA","32.3","2011",NA,NA,"1988-10-24"
+"10985","5a20a439-bebc-4ef7-8b9f-30e1d677a26b","00-0029492",NA,NA,"OlawJa00",NA,"1308","15653",NA,"Jamize Olawale","jamize olawale","RB","DAL","31.8","2012",NA,NA,"1989-04-17"
+"10989","0cc99dff-5895-48ed-9f30-e70e916bb52a","00-0028932",NA,NA,"FortL.00",NA,"1078","15264",NA,"LJ Fort","lj fort","LB","BAL","31.1","2012",NA,NA,"1990-01-03"
+"11000","05640572-1b4d-40d5-b584-d79bdd7d5c5f","00-0029061",NA,NA,"StanJu00",NA,"1120","15373",NA,"Julian Stanford","julian stanford","LB","CAR","30.4","2012",NA,NA,"1990-09-02"
+"11007","16cc9ade-f9ad-4d32-b5b9-d7568ee80f58","00-0028903",NA,NA,"CeleGa00",NA,"1223","15204",NA,"Garrett Celek","garrett celek","TE","FA","32.7","2012",NA,NA,"1988-05-29"
+"11010","d5efd828-7339-43a7-ad7e-6f936dbbabb2","00-0028924",NA,NA,"GipsTa00",NA,"1079","15235",NA,"Tashaun Gipson","tashaun gipson","S","CHI","30.5","2012",NA,NA,"1990-08-07"
+"11011","ae0de04e-f10b-46ba-b650-2a5c30d48cd9","00-0029065",NA,NA,"BadeJo00",NA,"1076","15359",NA,"Johnson Bademosi","johnson bademosi","CB","NOS","30.5","2012",NA,NA,"1990-07-23"
+"11012","e699246f-a474-4f91-a164-49b1d80bdad7","00-0028834",NA,NA,NA,NA,"1272","14860","8360","Craig Robertson","craig robertson","LB","NOS","33","2011",NA,NA,"1988-02-11"
+"11017","b7253ed5-d2c3-4757-8b54-5176fe9f45df","00-0028899",NA,NA,"McLeRo00",NA,"1205","15222","9031","Rodney McLeod","rodney mcleod","S","PHI","30.6","2012",NA,NA,"1990-06-23"
+"11045","e85680db-639d-49cd-ae29-28e5cd4ac9a8","00-0029040",NA,NA,"HarrDa03",NA,"1053","15380",NA,"Damon Harrison","damon harrison","DT","GBP","32.2","2012",NA,NA,"1988-11-29"
+"11065","f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336","00-0029134",NA,NA,"BrinBe00",NA,"1245","15355",NA,"Beau Brinkley","beau brinkley","TE","FA","31","2012",NA,NA,"1990-01-25"
+"11076","7e5b8212-df93-4069-b3f0-be4b5cb47389","00-0029159",NA,NA,"KearJe01",NA,"1290","15428",NA,"Jermaine Kearse","jermaine kearse","WR","FA","31","2012",NA,NA,"1990-02-06"
+"11087","b7b3c187-7447-4d02-94b7-5d3ee64ca530","00-0029329",NA,NA,"ThorNe00",NA,"1283","15535",NA,"Neiko Thorpe","neiko thorpe","CB","SEA","31","2012",NA,NA,"1990-02-11"
+"11100","349f647e-bfc3-4d84-af89-b33f8a08e26e","00-0028581",NA,NA,NA,NA,"1305","14332",NA,"Patrick DiMarco","patrick dimarco","RB","FA","31.8","2011",NA,NA,"1989-04-30"
+"11101","9d04accc-a404-406f-b93c-0878410e55a6","00-0027925",NA,NA,NA,NA,"1303","13940",NA,"James Develin","james develin","RB","FA","32.5","2010",NA,NA,"1988-07-23"
+"11104","1b8db398-7a7e-44df-922e-d979507e6bdb","00-0029319",NA,NA,"BellJo02",NA,"1312","15555","8844","Josh Bellamy","josh bellamy","WR","FA","31.7","2012",NA,NA,"1989-05-18"
+"11128","09a1fe57-c026-4ca4-b084-48b8ed9c106f","00-0028374",NA,NA,NA,NA,"1301","14426",NA,"Kyle Nelson","kyle nelson","TE","FA","34.3","0",NA,NA,"1986-10-03"
+"11150","cfc93f5e-105e-4a5e-88d3-f4279893cfa8","00-0030565",NA,NA,"SmitGe00","geno-smith-1","1373","15864",NA,"Geno Smith","geno smith","QB","SEA","30.3","2013","2","39","1990-10-10"
+"11151","da7cb0cc-543e-47d5-b29a-2ba2b341bd14","00-0030533",NA,NA,"BarkMa00","matt-barkley-1","1338","15948",NA,"Matt Barkley","matt barkley","QB","BUF","30.4","2013","4","98","1990-09-08"
+"11152","e1235f1e-26ce-438c-8168-3b1ded4ab893","00-0030520",NA,NA,"GlenMi00","mike-glennon-1","1559","15837",NA,"Mike Glennon","mike glennon","QB","JAC","31.1","2013","3","73","1989-12-12"
+"11170","b13ba4c3-5761-40fb-aa6a-935f09c39a6b","00-0030151",NA,NA,NA,NA,"1612","16252",NA,"Tyler Bray","tyler bray","QB","CHI","29.1","2013",NA,NA,"1991-12-27"
+"11175","1ce7bca8-68f0-47ba-9484-5baf57dd75e8","00-0030287",NA,NA,"ElliAn00","andre-ellington-1","1575","15893",NA,"Andre Ellington","andre ellington","RB","FA","32","2013","6","187","1989-02-03"
+"11177","5ec072b3-2837-4cf1-bb4f-ecd873949626","00-0030465",NA,NA,"BarnKe00","kenjon-barner-1","1546","15921",NA,"Kenjon Barner","kenjon barner","RB","TBB","31.8","2013","6","182","1989-04-28"
+"11182","bd8052bd-0898-430b-99c9-2529e895ae79","00-0030288","11655",NA,"BurkRe00","rex-burkhead-1","1387","15971",NA,"Rex Burkhead","rex burkhead","RB","NEP","30.6","2013","6","190","1990-07-02"
+"11186","0366fd06-19a3-4b69-8448-6bfbfad1250b","00-0030404","11651","2793","ThomCh03","chris-thompson-1","1502","15966",NA,"Chris Thompson","chris thompson","RB","JAC","30.3","2013","5","154","1990-10-20"
+"11188","62d4e94c-443f-44ed-9404-c6d6bdd9aa64","00-0030107",NA,NA,"RiddTh00","theo-riddick-1","1517","15994",NA,"Theo Riddick","theo riddick","RB","LVR","29.7","2013","6","199","1991-05-04"
+"11192","7735c02a-ee75-447c-86e6-6c2168500050","00-0030496","11645","1983","BellLe00","leveon-bell-1","1408","15825",NA,"LeVeon Bell","leveon bell","RB","KCC","29","2013","2","48","1992-02-18"
+"11193","24cf6148-f0af-4103-a215-e06956764953","00-0030456","11644",NA,"BernGi00","giovani-bernard-1","1386","15826",NA,"Giovani Bernard","giovani bernard","RB","CIN","29.2","2013","2","37","1991-11-22"
+"11199","bbb63a36-8613-4675-8e5e-34200d245ff0","00-0030414",NA,NA,"WareSp00","spencer-ware-1","1601","16020",NA,"Spencer Ware","spencer ware","RB","FA","29.2","2013","6","194","1991-11-23"
+"11211","3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e","00-0030542",NA,NA,"WillTe01","terrance-williams-2","1490","15878",NA,"Terrance Williams","terrance williams","WR","FA","31.4","2013","3","74","1989-09-18"
+"11212","f636d7ce-05f9-43d7-b63f-351acb5c2a70","00-0030521",NA,NA,"HuntJu00","justin-hunter-1","1418","15845",NA,"Justin Hunter","justin hunter","WR","FA","29.7","2013","2","34","1991-05-20"
+"11213","502b3a6c-e965-478a-858e-964b4ac2296c","00-0030525",NA,NA,NA,NA,"1567","15786",NA,"Tavon Austin","tavon austin","WR","GBP","29.9","2013","1","8","1991-03-15"
+"11222","5f424505-f29f-433c-b3f2-1a143a04a010","00-0030279","11616","1992",NA,NA,"1479","15818",NA,"Keenan Allen","keenan allen","WR","LAC","28.8","2013","3","14","1992-04-27"
+"11225","da85107c-365c-4d58-90ab-479d97d798b4","00-0030578",NA,NA,"PattCo00","cordarrelle-patterson-1","1535","15807",NA,"Cordarrelle Patterson","cordarrelle patterson","WR","CHI","29.9","2013","1","29","1991-03-17"
+"11227","4734f8dc-2ca4-4437-88f2-c8b8974abefc","00-0030085","11611",NA,"StilKe00","kenny-stills-1","1555","16016",NA,"Kenny Stills","kenny stills","WR","BUF","28.8","2013","5","144","1992-04-22"
+"11228","618bedee-9259-4536-b0ff-fec98d2a20de","00-0030431","11610","1981","WoodRo02","robert-woods-1","1352","15880",NA,"Robert Woods","robert woods","WR","LAR","28.8","2013","2","41","1992-04-10"
+"11232","5c48ade7-4b9a-4757-9643-87a6e3839e2b","00-0030564","11606","1975","HopkDe00","deandre-hopkins-1","1426","15795",NA,"DeAndre Hopkins","deandre hopkins","WR","ARI","28.7","2013","1","27","1992-06-06"
+"11237","6195ddc9-ab2b-469a-b824-a890736d6db7","00-0030147",NA,NA,"ShepRu00",NA,"1333","16227",NA,"Russell Shepard","russell shepard","WR","FA","30.2","2013",NA,NA,"1990-11-17"
+"11239","bf52ff53-35a6-4696-ac6d-3fa952dc2c87","00-0030068","11599",NA,"GoodMa00","marquise-goodwin-1","1346","15839",NA,"Marquise Goodwin","marquise goodwin","WR","PHI","30.2","2013","3","78","1990-11-19"
+"11244","c3859e06-5f23-4302-a71b-04820a899d5f","00-0030506","11594","1989","KelcTr00","travis-kelce-1","1466","15847",NA,"Travis Kelce","travis kelce","TE","KCC","31.3","2013","3","63","1989-10-05"
+"11247","de3421f7-2147-4835-89a5-724e87bad463","00-0030061","11689","1978","ErtzZa00","zach-ertz-1","1339","15835",NA,"Zach Ertz","zach ertz","TE","PHI","30.2","2013","2","35","1990-11-10"
+"11248","c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17","00-0030472","11690",NA,"ReedJo02","jordan-reed-1","1500","15860",NA,"Jordan Reed","jordan reed","TE","SFO","30.6","2013","3","85","1990-07-03"
+"11250","14ecf9dd-3a77-4847-8e62-407cd1182f1c","00-0030549","11692",NA,"EifeTy00","tyler-eifert-1","1388","15788",NA,"Tyler Eifert","tyler eifert","TE","JAC","30.4","2013","1","21","1990-09-08"
+"11252","67d56171-7522-430c-b7d9-8f7e2b6624d3","00-0030443",NA,NA,"ToilLe00","levine-toilolo-1","1642","15980",NA,"Levine Toilolo","levine toilolo","TE","NYG","29.5","2013","4","133","1991-07-30"
+"11257","8f24a248-b328-43ec-8677-67600e42a8f7","00-0030470","11699",NA,"McDoVa00","vance-mcdonald-1","1587","15853",NA,"Vance McDonald","vance mcdonald","TE","FA","30.6","2013","2","55","1990-06-13"
+"11261","03af0e0d-a443-4b09-9ab5-4f2695248346","00-0030069",NA,NA,"MoorDa01","damontre-moore-1","1494","15858",NA,"Damontre Moore","damontre moore","DE","SEA","28.4","2013","3","81","1992-09-11"
+"11262","b200f413-296d-49f3-9ef2-f60e21c2f5fd","00-0030503",NA,NA,"OkafAl00","alex-okafor-1","1578","15976",NA,"Alex Okafor","alex okafor","DE","KCC","30","2013","4","103","1991-02-08"
+"11263","94ee954f-baf6-489c-b50f-3b60b2506f33","00-0030555",NA,NA,"JordDi00","dion-jordan-1","1356","15800",NA,"Dion Jordan","dion jordan","DE","SFO","30.9","2013","1","3","1990-03-05"
+"11265","a0557106-4517-4516-a5e7-d46cba52fe44","00-0030386",NA,NA,"GholWi00","william-gholston-1","1558","16019",NA,"William Gholston","william gholston","DE","TBB","29.5","2013","4","126","1991-07-31"
+"11267","436e0e45-f07a-4674-b21f-4fd8e1f24583","00-0030059",NA,NA,"AnsaEz00","ezekiel-ansah-1","1513","15785",NA,"Ezekiel Ansah","ezekiel ansah","DE","SFO","31.7","2013","1","5","1989-05-29"
+"11270","d36267e0-f2ef-4dd0-8bda-2a9238a377b7","00-0030457",NA,NA,NA,NA,"1582","15829",NA,"Cornellius Carradine","cornellius carradine","DE","FA","32","2013","2","8","1989-02-18"
+"11272","3258dbca-9194-4fd7-bc2b-8440c73d0d9c","00-0030576",NA,NA,"JoneDa03","datone-jones-1","1526","15798",NA,"Datone Jones","datone jones","DE","LVR","30.5","2013","1","26","1990-07-24"
+"11273","25a4ae85-e94b-4db1-b939-4c96f24ead11","00-0030442",NA,NA,"SimoJo01","john-simon-2","1381","16010",NA,"John Simon","john simon","DE","NEP","30.3","2013","4","129","1990-10-14"
+"11274","19269eae-f3f2-47ac-b755-843489f29f65","00-0030449",NA,NA,"HuntMa00","margus-hunt-1","1392","15844",NA,"Margus Hunt","margus hunt","DT","CIN","33.6","2013","2","53","1987-07-14"
+"11278","ecacc01a-e71d-4028-9bb7-37fcee0f1708","00-0029946",NA,NA,"JoneAb00",NA,"1663","16376",NA,"Abry Jones","abry jones","DT","JAC","29.4","2013",NA,NA,"1991-09-08"
+"11280","2d19098b-f154-4b28-976d-79182af014df","00-0030455",NA,NA,"LotuSt00","star-lotulelei-1","1548","15802",NA,"Star Lotulelei","star lotulelei","DT","BUF","31.1","2013","1","14","1989-12-20"
+"11281","9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8","00-0030063",NA,NA,"HankJo00","johnathan-hankins-1","1492","15841",NA,"Johnathan Hankins","johnathan hankins","DT","LVR","29.1","2013","2","49","1992-01-01"
+"11282","10969a29-e4ca-47d3-9100-0017774f2cc2","00-0030402",NA,NA,"SpenAk00","akeem-spence-1","1562","15958",NA,"Akeem Spence","akeem spence","DT","NEP","29.2","2013","4","100","1991-11-29"
+"11283","81e211e1-547a-4475-bcf6-8c8ffde057f5","00-0030573",NA,NA,"RichSh00","sheldon-richardson-1","1372","15811",NA,"Sheldon Richardson","sheldon richardson","DT","CLE","30.2","2013","1","13","1990-11-30"
+"11285","d15dacdb-17c6-4010-83d1-e332f9610422","00-0030577",NA,NA,"WillSy00","sylvester-williams-1","1460","15816",NA,"Sylvester Williams","sylvester williams","DT","DEN","32.2","2013","1","28","1988-11-21"
+"11286","60d48e85-931c-45dc-b62f-024503a2e09b","00-0030070",NA,NA,"JenkJo00","john-jenkins-3","1553","15846",NA,"John Jenkins","john jenkins","DT","CHI","31.6","2013","3","82","1989-07-11"
+"11292","82505f2b-7b63-48d1-a715-a197ae3a32c3","00-0030278",NA,NA,NA,NA,"1482","15867",NA,"Manti Teo","manti teo","LB","CHI","30","2013","2","6","1991-01-26"
+"11293","b94f3978-ba88-428a-924b-3fbfdf04b058","00-0030527",NA,NA,NA,NA,"1572","15806",NA,"Alec Ogletree","alec ogletree","LB","FA","29.4","2013","1","30","1991-09-25"
+"11295","92503804-7aff-4f22-adca-421800786179","00-0030558",NA,NA,"MingBa00","barkevious-mingo-1","1405","15805",NA,"Barkevious Mingo","barkevious mingo","LB","CHI","30.3","2013","1","6","1990-10-04"
+"11299","a76abacb-2309-477c-b075-ec05ccf938ae","00-0030064",NA,NA,NA,NA,"1507","15827",NA,"Jon Bostic","jon bostic","LB","WAS","29.7","2013","2","18","1991-05-05"
+"11308","1b0234dc-a434-4c31-bb41-6457c068a0fa","00-0030401",NA,NA,"AlonKi00","kiko-alonso-1","1345","15819",NA,"Kiko Alonso","kiko alonso","LB","FA","30.5","2013","2","46","1990-08-14"
+"11310","186014e2-3430-4510-867f-a7013daf0bb8","00-0030382",NA,NA,"MintKe00","kevin-minter-1","1577","15856",NA,"Kevin Minter","kevin minter","LB","TBB","30.2","2013","2","45","1990-12-03"
+"11312","f14e6b34-3c77-44e7-bc9c-6c691d3fe46b","00-0030562",NA,NA,"TrufDe00","desmond-trufant-1","1545","15812",NA,"Desmond Trufant","desmond trufant","CB","DET","30.4","2013","1","22","1990-09-10"
+"11313","8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b","00-0030459",NA,NA,"MathTy00","tyrann-mathieu-1","1576","15851",NA,"Tyrann Mathieu","tyrann mathieu","S","KCC","28.7","2013","3","69","1992-05-13"
+"11314","81a5c010-2e89-4b65-a924-015cf4ea3f94","00-0030575",NA,NA,"RhodXa00","xavier-rhodes-1","1536","15810",NA,"Xavier Rhodes","xavier rhodes","CB","IND","30.6","2013","1","25","1990-06-19"
+"11316","e829aa7e-04a7-425a-9717-c334ca9febe9","00-0030411",NA,NA,"RyanLo00","logan-ryan-1","1367","15861",NA,"Logan Ryan","logan ryan","CB","NYG","30","2013","3","83","1991-02-09"
+"11317","95fab6fa-3ee1-47d0-93ad-c7ff41744be7","00-0030114",NA,NA,"PoyeJo00","jordan-poyer-1","1343","15979",NA,"Jordan Poyer","jordan poyer","S","BUF","29.8","2013","7","218","1991-04-25"
+"11318","226723b9-fddf-45ca-8245-d8cc5442c400","00-0030484",NA,NA,"TaylJa01","jamar-taylor-2","1359","15866",NA,"Jamar Taylor","jamar taylor","CB","SFO","30.3","2013","2","54","1990-09-29"
+"11323","c615cf52-bc61-43ed-bb76-39695ca019c0","00-0030548",NA,NA,"ReidEr00","eric-reid-1","1590","15809",NA,"Eric Reid","eric reid","S","FA","29.1","2013","1","18","1991-12-10"
+"11324","a2270ced-ae01-4dee-a177-9dca7c5b20cc","00-0030060",NA,NA,"VaccKe00","kenny-vaccaro-1","1556","15813",NA,"Kenny Vaccaro","kenny vaccaro","S","TEN","30","2013","1","15","1991-02-15"
+"11326","e0f05175-f652-4f5e-9931-068a712291e6","00-0030530",NA,NA,NA,NA,"1570","15852",NA,"TJ McDonald","tj mcdonald","S","FA","30","2013","3","9","1991-01-26"
+"11327","7690ab6a-2ae0-4449-abd5-74ec54403f2e","00-0030294",NA,NA,"JeffTo00",NA,"1686","16195",NA,"Tony Jefferson","tony jefferson","S","FA","29","2013",NA,NA,"1992-01-27"
+"11330","c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb","00-0030471",NA,NA,"WillSh02","shawn-williams-1","1395","15877",NA,"Shawn Williams","shawn williams","S","CIN","29.7","2013","3","84","1991-05-13"
+"11333","123f0733-0afb-4291-8e57-9970e229309b","00-0030448",NA,NA,"ShorKa00","kawann-short-1","1549","15862",NA,"Kawann Short","kawann short","DT","CAR","32","2013","2","44","1989-02-02"
+"11337","54d4e35a-2e6c-48f6-86ad-92dd596c173c","00-0029738","13636",NA,NA,NA,"1592","15773",NA,"Darren Fells","darren fells","TE","HOU","34.8","2012",NA,NA,"1986-04-22"
+"11339","be449b4d-799c-4045-8e9e-e8a7fd7c2cc8","00-0028907",NA,NA,NA,NA,"1750","15245",NA,"Giorgio Tavecchio","giorgio tavecchio","PK","FA","30.5","2012",NA,NA,"1990-07-16"
+"11346","5c4ec28a-5393-4073-a71d-df0dad8858c6","00-0030572",NA,NA,NA,NA,"1472","15794",NA,"DJ Hayden","dj hayden","CB","JAC","30.6","2013","1","12","1990-06-27"
+"11347","bb7f4f60-57a4-437d-9541-a42abb1d1f53","00-0030538",NA,NA,"CyprJo00","jonathan-cyprien-1","1443","15831",NA,"Johnathan Cyprien","johnathan cyprien","S","FA","30.5","2013","2","33","1990-07-29"
+"11348","2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69","00-0030062",NA,NA,"SlayDa00","darius-slay-1","1518","15863",NA,"Darius Slay","darius slay","CB","PHI","30.1","2013","2","36","1991-01-01"
+"11349","ca760cb5-83dd-4415-acc8-ef8b508ba976","00-0030421",NA,NA,"CollJa00","jamie-collins-1","1364","15830",NA,"Jamie Collins","jamie collins","LB","DET","30.8","2013","2","52","1990-05-02"
+"11350","5486420b-b40c-4e7c-ab47-9d70b1673c3b","00-0030566",NA,NA,"SweaDJ00","dj-swearinger-1","1429","15865",NA,"DJ Swearinger","dj swearinger","S","NOS","29.4","2013","2","57","1991-09-01"
+"11351","4f5ca039-21f3-4045-9c2e-c0b4d5d564c5","00-0030528",NA,NA,"AlfoRo00",NA,"1540","15817",NA,"Robert Alford","robert alford","CB","ARI","32.2","2013","2","60","1988-11-01"
+"11355","829307ad-fb1d-4c7b-b073-3098be9464e7","00-0030541",NA,NA,"WrehBl00","blidi-wreh-wilson-1","1423","15881",NA,"Blidi Wreh-Wilson","blidi wreh-wilson","CB","ATL","31.2","2013","3","70","1989-12-05"
+"11358","42cbcd13-4fbc-4cea-905b-85d2c0b0ff55","00-0030523",NA,NA,"WebsKa00","kayvon-webster-1","1459","15872",NA,"Kayvon Webster","kayvon webster","CB","FA","30","2013","3","90","1991-02-01"
+"11359","a2802951-e573-4e8f-ad31-14b9ae5f8e7c","00-0030383",NA,NA,"HarmDu00","duron-harmon-1","1366","15842",NA,"Duron Harmon","duron harmon","S","DET","30","2013","3","91","1991-01-24"
+"11360","7963d8ea-c627-47cb-b46f-a917abb9e9d7","00-0030511",NA,NA,"WillBr02",NA,"1383","15875",NA,"Brandon Williams","brandon williams","DT","BAL","31.9","2013","3","94","1989-02-21"
+"11363","113045ba-c7e5-4a91-a089-bc1bbcf55008","00-0030403",NA,NA,"WebbBW00",NA,"1488","15939",NA,"BW Webb","bw webb","CB","FA","30.7","2013","4","114","1990-05-03"
+"11367","67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6","00-0029892",NA,NA,"JuszKy00",NA,"1379","16002",NA,"Kyle Juszczyk","kyle juszczyk","RB","SFO","29.8","2013","4","130","1991-04-23"
+"11374","c639a18a-ee1a-46ed-8707-580711fa33db","00-0030387",NA,NA,"MeanSt00","steven-means-1","1561","15936",NA,"Steven Means","steven means","DE","ATL","31.2","2013","5","147","1989-12-05"
+"11375","9342eba6-e307-4c55-a0f7-993518dd4415","00-0030463",NA,NA,"KleiAJ00","aj-klein-1","1547","15964",NA,"AJ Klein","aj klein","LB","BUF","29.5","2013","5","148","1991-07-30"
+"11381","16c67c97-ffd9-4f92-917d-ad6124ce1f6e","00-0030089",NA,NA,NA,NA,"1603","16121",NA,"Luke Willson","luke willson","TE","SEA","31","2013","5","25","1990-01-15"
+"11382","e030ef2b-1dcc-4c66-b8de-0016ca0d52d2","00-0030090",NA,NA,"HydeMi00","micah-hyde-1","1525","15960",NA,"Micah Hyde","micah hyde","S","BUF","30.1","2013","5","159","1990-12-31"
+"11383","80b403da-381f-467e-883b-5b83ac02aac3","00-0030092",NA,NA,"MartSa01",NA,"1516","15928",NA,"Sam Martin","sam martin","PN","DEN","30.9","2013","5","165","1990-02-27"
+"11387","058c99fc-470c-4579-a165-03e043335cc1","00-0030098","11818",NA,"HopkDu00","dustin-hopkins-1","1348","15965",NA,"Dustin Hopkins","dustin hopkins","PK","WAS","30.3","2013","6","177","1990-10-01"
+"11390","540f8b30-900e-4d17-8756-c262ba5fa039","00-0030513","11821","2023",NA,NA,"1476","15920",NA,"Latavius Murray","latavius murray","RB","NOS","31","2013","6","13","1990-01-18"
+"11399","cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71","00-0030108","11830",NA,"GrifRy00","ryan-griffin-1","1425","15887",NA,"Ryan Griffin","ryan griffin","TE","NYJ","31.1","2013","6","201","1990-01-11"
+"11402","0606c9ab-8351-4a38-8ca4-ceb16e982f6a","00-0030515",NA,NA,NA,NA,"1474","15906",NA,"Stacy McGee","stacy mcgee","DT","ARI","31","2013","6","37","1990-01-17"
+"11403","0adb6bc1-17fd-4ca5-90ad-89ca06950bc8","00-0030434",NA,NA,"WillVi01","vince-williams-1","1415","15934",NA,"Vince Williams","vince williams","LB","PIT","31.1","2013","6","206","1989-12-27"
+"11406","26b9c11d-c557-4bef-b990-65498858df47","00-0030516",NA,NA,NA,NA,"1471","15896",NA,"Brice Butler","brice butler","WR","FA","31","2013","7","3","1990-01-29"
+"11412","e03775ef-3287-476c-9386-ff16ea31d7b8","00-0030500",NA,NA,"WillNi01",NA,"1414","15882",NA,"Nick Williams","nick williams","DE","DET","30.9","2013","7","223","1990-02-21"
+"11422","e4039abe-35b3-4b78-9752-e714ef01cecd","00-0030427",NA,NA,"IshmKe00","kemal-ishmael-1","1542","16008",NA,"Kemal Ishmael","kemal ishmael","S","FA","29.7","2013","7","243","1991-05-06"
+"11441","949c34b9-150a-4a1b-b884-1fcf1ebaabdf","00-0029857",NA,NA,NA,NA,"1550","16140",NA,"Ryan Griffin","ryan griffin","QB","TBB","31.2","2013",NA,NA,"1989-11-17"
+"11448","8506c15c-15cc-4d2c-aebf-270c605fe0ec","00-0030155",NA,NA,NA,NA,"1619","16318",NA,"Demetrius Harris","demetrius harris","TE","CHI","29.5","2013",NA,NA,"1991-07-29"
+"11454","f7841baa-9284-4c03-b698-442570651c6c","00-0029854",NA,NA,"AndeC.00",NA,"1451","16040",NA,"CJ Anderson","cj anderson","RB","FA","30","2013",NA,NA,"1991-02-10"
+"11456","51952c7b-11c5-4229-baf9-08d4694cc2ad","00-0030300",NA,NA,"BrowJa03",NA,"1684","16172",NA,"Jaron Brown","jaron brown","WR","FA","31.1","2013",NA,NA,"1990-01-08"
+"11457","fe1eeca3-7ad7-4bc2-9c55-b5662818642c","00-0029792",NA,NA,"WorrPa00",NA,"1539","16243",NA,"Paul Worrilow","paul worrilow","LB","FA","30.8","2013",NA,NA,"1990-05-01"
+"11460","c9bbb2aa-f044-400b-9f09-5321604a3b79","00-0029799",NA,NA,NA,NA,"1453","16090",NA,"Lerentee McCray","lerentee mccray","DE","JAC","30.4","2013",NA,NA,"1990-08-26"
+"11462","0555927e-18ad-40f9-b2d6-f63d533d91aa","00-0029955",NA,NA,"ReynLa00",NA,"1666","16449",NA,"LaRoy Reynolds","laroy reynolds","LB","ATL","30.2","2013",NA,NA,"1990-11-03"
+"11474","8c5067dc-1617-42fa-82eb-0596392ab20a","00-0029931",NA,NA,"LineZa01",NA,"1693","16366",NA,"Zach Line","zach line","RB","FA","30.8","2013",NA,NA,"1990-04-26"
+"11487","1886860f-ad41-41a2-befe-fc2b5d361e38","00-0030050",NA,NA,"ArmsRa01",NA,"1770","16463",NA,"Ray-Ray Armstrong","ray-ray armstrong","LB","FA","31.7","2013",NA,NA,"1989-05-06"
+"11491","b612c556-1285-405f-9294-733f0302869e","00-0030380",NA,NA,"MayoBe00",NA,"1764","16528",NA,"Benson Mayowa","benson mayowa","DE","SEA","29.5","2013",NA,NA,"1991-08-03"
+"11492","fc28047a-18cf-4431-9e1b-317db75c4495","00-0030148",NA,NA,"SquaDa00",NA,"1334","16231",NA,"Damion Square","damion square","DT","LAC","32","2013",NA,NA,"1989-02-06"
+"11498","e005ee7b-3fb4-4219-8de3-a9b0302cb2dc","00-0030312",NA,NA,"AddaJa00",NA,"1620","16039",NA,"Jahleel Addae","jahleel addae","S","LAC","31","2013",NA,NA,"1990-01-24"
+"11500","b1a2aa6e-7104-4e35-910d-fbefddd74a78","00-0029984",NA,NA,"AlleRy01",NA,"1694","16382",NA,"Ryan Allen","ryan allen","PN","FA","30.9","2013",NA,NA,"1990-02-28"
+"11501","1eb8ad96-b4f3-461e-81a3-0a4e08844f73","00-0030041",NA,NA,NA,NA,"1672","16217",NA,"Nickell Robey","nickell robey","CB","PHI","29","2013",NA,NA,"1992-01-17"
+"11511","2c8e1238-0125-484e-b4f2-c0d08b5ef952","00-0029794",NA,NA,"BateDa00",NA,"1563","16299",NA,"Daren Bates","daren bates","LB","TEN","30.2","2013",NA,NA,"1990-11-27"
+"11512","4d6c923d-4776-4558-a30f-739dc4070ffb","00-0030228",NA,NA,"BouyA.00",NA,"1674","16562",NA,"AJ Bouye","aj bouye","CB","DEN","29.5","2013",NA,NA,"1991-08-16"
+"11514","3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6","00-0030020",NA,NA,"TrawBr00",NA,"1660","16419",NA,"Brynden Trawick","brynden trawick","S","FA","31.3","2013",NA,NA,"1989-10-23"
+"11515","6b49d038-966e-40b9-bb1e-fb4e94543a95","00-0030251",NA,NA,"HortWe00",NA,"161","16431",NA,"Wes Horton","wes horton","DE","FA","31","2013",NA,NA,"1990-01-18"
+"11516","bd413539-9351-454e-9d61-4e8635d7e9f5","00-0030181","11987","2430","DoylJa00",NA,"1706","16504",NA,"Jack Doyle","jack doyle","TE","IND","30.7","2013",NA,NA,"1990-05-05"
+"11517","9b80f314-0cd8-4a35-918f-a405b680e879","00-0030161",NA,NA,"McDoBr01",NA,"1617","16269",NA,"Bradley McDougald","bradley mcdougald","S","NYJ","30.2","2013",NA,NA,"1990-11-15"
+"11529","687cdc33-bd0d-4b70-adb3-33f97dc26a3c","00-0030216",NA,NA,"HillJo02",NA,"1777","16143",NA,"Josh Hill","josh hill","TE","NOS","30.7","2013",NA,NA,"1990-05-21"
+"11532","6c7704c2-f833-46aa-9f9c-d975d5ad1297","00-0029747",NA,NA,"BanjCh00",NA,"1442","15782",NA,"Chris Banjo","chris banjo","S","ARI","30.9","2013",NA,NA,"1990-02-26"
+"11537","20b43016-a174-423d-9551-7f62ababad3c","00-0029901",NA,NA,NA,NA,"1633","16270",NA,"Rashaan Melvin","rashaan melvin","CB","JAC","31.3","2013",NA,NA,"1989-10-02"
+"11543","30a193de-13a3-4e22-a1a5-ce240f498280","00-0030196",NA,NA,"HeatJe00",NA,"1700","16473",NA,"Jeff Heath","jeff heath","S","LVR","29.7","2013",NA,NA,"1991-05-14"
+"11555","4f454037-be8e-4575-b332-5e40f4788970","00-0029764",NA,NA,"DaviCo02",NA,"1565","16286",NA,"Cody Davis","cody davis","S","NEP","31.7","2013",NA,NA,"1989-06-06"
+"11595","2592f1d6-3cc5-4e32-b6fb-18ad517be491","00-0030170",NA,NA,"MileRo00",NA,"1608","16206",NA,"Rontez Miles","rontez miles","S","FA","32.2","2013",NA,NA,"1988-11-25"
+"11613","16e13f52-32b1-416f-83ae-1cbf2f92cffc","00-0028908",NA,NA,NA,NA,"1703","15231",NA,"Michael Thomas","michael thomas","S","HOU","31.9","2012",NA,NA,"1989-03-17"
+"11632","401c4b1f-8302-433e-a84d-9d3101a30f4b","00-0029869",NA,NA,NA,NA,"1626","16324",NA,"Will Compton","will compton","LB","TEN","31.4","2013",NA,NA,"1989-09-19"
+"11640","d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7","00-0031237","12088",NA,"BridTe00","teddy-bridgewater-1","2152","16728",NA,"Teddy Bridgewater","teddy bridgewater","QB","CAR","28.3","2014","1","32","1992-10-10"
+"11642","6723249c-5fb5-4b0a-9373-cb59cdc99ec8","00-0031407",NA,NA,"BortBl00","blake-bortles-1","1979","16724",NA,"Blake Bortles","blake bortles","QB","LAR","29.1","2014","1","3","1991-12-16"
+"11643","d4b30988-e8c5-4689-8037-f79a0d3c2774","00-0031288",NA,NA,"McCaA.00","aj-mccarron-1","1895","16810",NA,"AJ McCarron","aj mccarron","QB","HOU","30.4","2014","5","164","1990-09-13"
+"11644","9f026fc0-4449-4dc5-a226-2e2830619381","00-0031280","12092",NA,NA,NA,"2028","16757",NA,"Derek Carr","derek carr","QB","LVR","29.8","2014","2","4","1991-03-28"
+"11647","b24625a0-d402-4d59-a778-aa4b073bfe5e","00-0031260","12095",NA,"ThomLo00","logan-thomas-1","2251","16813",NA,"Logan Thomas","logan thomas","TE","WAS","29.6","2014","4","120","1991-07-01"
+"11654","59fc3367-5514-4616-a93c-06e4365b2293","00-0031301",NA,NA,"HillJe01","jeremy-hill-2","1892","16803",NA,"Jeremy Hill","jeremy hill","RB","FA","28.3","2014","2","55","1992-10-20"
+"11657","3a29784c-832f-4e41-a4ac-71d4f9ad410c","00-0031045","12105","2129","HydeCa00","carlos-hyde-1","2257","16777",NA,"Carlos Hyde","carlos hyde","RB","SEA","30.4","2014","2","57","1990-09-20"
+"11659","35823109-daf1-4825-92b8-564271398ecb","00-0031060",NA,NA,"ThomDe05","deanthony-thomas-1","2023","16945",NA,"DeAnthony Thomas","deanthony thomas","WR","FA","28.1","2014","4","124","1993-01-05"
+"11660","2e50c78f-fa3b-48cf-8531-6eeddc93d88d","00-0031285","12108",NA,"FreeDe00","devonta-freeman-1","2168","16944",NA,"Devonta Freeman","devonta freeman","RB","FA","28.9","2014","4","103","1992-03-15"
+"11668","40cd928f-f228-4ffd-8179-b27a12e14a44","00-0030656",NA,NA,"CrowIs00",NA,"1901","17133",NA,"Isaiah Crowell","isaiah crowell","RB","FA","28.1","2014",NA,NA,"1993-01-08"
+"11670","7d80b51f-1462-442e-aa7f-8c320a62deed","00-0031325","12118","2109","WatkSa00","sammy-watkins-1","1817","16725",NA,"Sammy Watkins","sammy watkins","WR","KCC","27.6","2014","1","4","1993-06-14"
+"11671","c48c21d9-0ae5-478c-ad34-30a660cfa9b8","00-0031408","12119","2111","EvanMi00","mike-evans-4","2216","16737",NA,"Mike Evans","mike evans","WR","TBB","27.4","2014","1","7","1993-08-21"
+"11672","4c3c6b63-aa1f-4452-9d1d-662073f06142","00-0031431",NA,NA,"LeexMa00","marqise-lee-1","1987","16787",NA,"Marqise Lee","marqise lee","WR","NEP","29.2","2014","2","39","1991-11-25"
+"11673","2ef5aed5-9859-4102-8bf4-99d6a6ae22ba","00-0031359",NA,NA,"BenjKe00","kelvin-benjamin-1","2182","16730",NA,"Kelvin Benjamin","kelvin benjamin","WR","FA","30","2014","1","28","1991-02-05"
+"11674","b6b954eb-4591-4b7a-86b9-a481f15fdd58","00-0031236","12122","2114","CookBr00","brandin-cooks-1","2197","16731",NA,"Brandin Cooks","brandin cooks","WR","HOU","27.4","2014","1","20","1993-09-25"
+"11675","e7d6ae25-bf15-4660-8b37-c37716551de3","00-0031381","12123","2125","AdamDa01","davante-adams-1","2133","16800",NA,"Davante Adams","davante adams","WR","GBP","28.1","2014","2","53","1992-12-24"
+"11676","7b96a836-666b-47b6-a0a7-9dbb0b4c53e8","00-0031299",NA,NA,"MattJo00","jordan-matthews-1","1800","16763",NA,"Jordan Matthews","jordan matthews","WR","SFO","28.5","2014","2","42","1992-07-16"
+"11677","f404283a-7c04-4a1c-899c-3243424a8d70","00-0031339",NA,NA,"MoncDo00","donte-moncrief-1","1971","16791",NA,"Donte Moncrief","donte moncrief","WR","NEP","27.5","2014","3","90","1993-08-06"
+"11678","0fd32417-8410-4a8f-8919-386c433bca43","00-0031428","12126","2130","RobiAl02","allen-robinson-1","1992","16799",NA,"Allen Robinson","allen robinson","WR","CHI","27.4","2014","2","61","1993-08-24"
+"11679","354dec38-b88b-4ba0-8974-859123f27c45","00-0031235","12127",NA,"BeckOd00","odell-beckham-jr-1","2078","16733",NA,"Odell Beckham","odell beckham","WR","CLE","28.2","2014","1","12","1992-11-05"
+"11680","06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4","00-0031382","12128","2132","LandJa00","jarvis-landry-1","1825","16790",NA,"Jarvis Landry","jarvis landry","WR","CLE","28.2","2014","2","63","1992-11-28"
+"11681","cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7","00-0031257",NA,NA,"RichPa01","paul-richardson-1","2279","16781",NA,"Paul Richardson","paul richardson","WR","FA","28.8","2014","2","45","1992-04-13"
+"11686","40958157-617f-40b4-91e5-9895f66da29c","00-0031189",NA,NA,"JoneT.00","tj-jones-2","2121","16880",NA,"TJ Jones","tj jones","WR","FA","28.5","2014","6","189","1992-07-19"
+"11688","e9d4ab78-3572-47ab-b4d3-e04c5af231f3","00-0031373",NA,NA,"BryaMa00","martavis-bryant-1","1916","16886",NA,"Martavis Bryant","martavis bryant","WR","FA","29.1","2014","4","118","1991-12-20"
+"11689","617435c6-4a3f-4689-ab15-44bd93b33615","00-0031326",NA,NA,"ElliBr00","bruce-ellington-1","2255","16946",NA,"Bruce Ellington","bruce ellington","WR","FA","29.4","2014","4","106","1991-08-22"
+"11695","9fbcfae9-dd14-415c-8952-9b1b5dff0dfc","00-0031387","12143",NA,"EbroEr00","eric-ebron-1","2118","16732",NA,"Eric Ebron","eric ebron","TE","PIT","27.8","2014","1","10","1993-04-10"
+"11697","e78261de-af00-4530-824c-500addbe9f98","00-0031418",NA,NA,"SefeAu00","austin-seferian-jenkins-1","2222","16795",NA,"Austin Seferian-Jenkins","austin seferian-jenkins","TE","FA","28.3","2014","2","38","1992-09-29"
+"11701","c9557ff2-899f-41e3-8a0e-35ca874db9b2","00-0031035",NA,NA,"GrimXa00",NA,"2082","17348",NA,"Xavier Grimble","xavier grimble","TE","FA","28.4","2014",NA,NA,"1992-09-02"
+"11705","bc0f07a4-3e7b-4e61-987a-05533dc225be","00-0030710","12153",NA,"BurtTr01",NA,"1793","16974",NA,"Trey Burton","trey burton","TE","IND","29.3","2014",NA,NA,"1991-10-29"
+"11706","016d31ec-9b32-47e2-801b-9724c0a30f62","00-0031364",NA,NA,"ClowJa00","jadeveon-clowney-1","1947","16734",NA,"Jadeveon Clowney","jadeveon clowney","DE","TEN","28","2014","1","1","1993-02-14"
+"11707","9758b9e2-5809-4a16-890f-e239f0808723","00-0031412",NA,NA,"TuitSt00","stephon-tuitt-1","1925","16798",NA,"Stephon Tuitt","stephon tuitt","DE","PIT","27.7","2014","2","46","1993-05-23"
+"11709","5d98bad5-1730-4095-825d-3ff8d10d1116","00-0031300",NA,NA,"MurpTr00","trent-murphy-1","2099","16751",NA,"Trent Murphy","trent murphy","DE","BUF","30.1","2014","2","47","1990-12-20"
+"11711","6c434322-0ee2-4df5-a5e8-1a6e5f12285e","00-0031297",NA,NA,"FordDe00","dee-ford-1","2015","16707",NA,"Dee Ford","dee ford","DE","SFO","29.9","2014","1","23","1991-03-19"
+"11712","df4d7b62-ef37-494b-b068-f319ad336bbb","00-0030993",NA,NA,"LyncAa00","aaron-lynch-1","2259","16941",NA,"Aaron Lynch","aaron lynch","LB","JAC","27.9","2014","5","150","1993-03-08"
+"11717","1de5c7ea-54dd-4a1a-a319-4429ce604b3d","00-0031170",NA,NA,"JernTi00","timmy-jernigan-1","1872","16785",NA,"Timmy Jernigan","timmy jernigan","DT","FA","28.4","2014","2","48","1992-09-24"
+"11719","f6ff73b1-d607-4226-83ab-b523bdc0be4e",NA,NA,NA,"McCuDa00","daniel-mccullers-1","1921","16952",NA,"Daniel McCullers","daniel mccullers","DT","CHI","28.5","2014","6","215","1992-08-11"
+"11720","23616a22-8266-4b0c-b0b9-5f8187178168","00-0031256",NA,NA,"BarrAn00","anthony-barr-1","2151","16711",NA,"Anthony Barr","anthony barr","LB","MIN","28.9","2014","1","9","1992-03-18"
+"11721","33c74bf8-7621-48be-a769-e219703988d9","00-0031040",NA,NA,NA,NA,"2036","16710",NA,"Khalil Mack","khalil mack","LB","CHI","29.9","2014","1","5","1991-02-22"
+"11722","8a372789-3c74-406d-b3de-d2ee387b1f22","00-0031365",NA,NA,"ShazRy00","ryan-shazier-1","1924","16727",NA,"Ryan Shazier","ryan shazier","LB","FA","28.4","2014","1","15","1992-09-06"
+"11723","0ad845ff-44e8-4576-bc91-61b557e06f05","00-0031360",NA,NA,"VanNKy00","kyle-van-noy-1","2130","16772",NA,"Kyle Van Noy","kyle van noy","LB","MIA","29.9","2014","2","40","1991-03-26"
+"11724","10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8","00-0034641",NA,NA,"JoneCh05",NA,"2110","17070",NA,"Christian Jones","christian jones","LB","DET","30","2014",NA,NA,"1991-02-18"
+"11725","614c6237-8fe9-4a62-beec-0c44ca0fc2ad","00-0031258",NA,NA,NA,NA,"2042","16761",NA,"Jeremiah Attaochu","jeremiah attaochu","DE","DEN","28","2014","2","18","1993-01-17"
+"11728","bf5f7564-349a-439a-a8a9-4ddb10448a8d","00-0031296",NA,NA,"MoslC.00","cj-mosley-1","1875","16720",NA,"CJ Mosley","cj mosley","LB","NYJ","28.6","2014","1","17","1992-06-19"
+"11735","b6c9d494-a3cd-4d57-96e1-f807f0b9be63","00-0031372",NA,NA,"RobyBr00","bradley-roby-1","2008","16719",NA,"Bradley Roby","bradley roby","CB","HOU","28.8","2014","1","31","1992-05-01"
+"11737","05b308c7-13f6-4ea7-baed-4314896663cb","00-0031380",NA,NA,"DennDa00","darqueze-dennard-1","1887","16718",NA,"Darqueze Dennard","darqueze dennard","CB","ATL","29.5","2014","1","24","1991-08-10"
+"11739","76c630cf-0fd3-4210-a73d-9347da9d9d66","00-0031259",NA,NA,"ColvAa00","aaron-colvin-1","1982","16900",NA,"Aaron Colvin","aaron colvin","CB","FA","29.3","2014","4","114","1991-10-02"
+"11740","977e4e40-c596-43c3-a5a9-2141f6590b89","00-0031333",NA,NA,"ClinHa00","ha-ha-clinton-dix-1","2135","16735",NA,"Ha Ha Clinton-Dix","ha ha clinton-dix","S","FA","28.1","2014","1","21","1992-12-21"
+"11742","99d9eebd-808f-4573-b39b-b9fef4ce5e98","00-0031389",NA,NA,NA,NA,"2230","16769",NA,"Lamarcus Joyner","lamarcus joyner","CB","LVR","30.2","2014","2","9","1990-11-27"
+"11747","39f70428-a78a-494c-8676-438d953c289e","00-0031062","12195","2154","WhitJa02","james-white-2","1848","16913",NA,"James White","james white","RB","NEP","29","2014","4","130","1992-02-03"
+"11757","8bb5c7ef-e7be-4015-8874-2f0982286acc","00-0031388",NA,NA,NA,NA,"2227","16716",NA,"Aaron Donald","aaron donald","DT","LAR","29.7","2014","1","13","1991-05-23"
+"11758","fbb1cc32-4cbd-4089-b8ec-1e7bce8da408","00-0031344",NA,NA,"LatiCo00","cody-latimer-1","2004","16793",NA,"Cody Latimer","cody latimer","WR","FA","28.3","2014","2","56","1992-10-10"
+"11760","42de9d1d-0352-460b-9172-9452414fd7fd","00-0031345","12208","2131","GaroJi00",NA,"1837","16760",NA,"Jimmy Garoppolo","jimmy garoppolo","QB","SFO","29.2","2014","2","62","1991-11-02"
+"11761","f77479d7-51a5-41f9-8924-69526dd078cd","00-0031376","12209","2140","McKiJe00",NA,"2161","16782",NA,"Jerick McKinnon","jerick mckinnon","RB","SFO","28.7","2014","3","96","1992-05-03"
+"11764","054f4c09-6bc9-49c9-a466-80abd2a39e74","00-0031041",NA,NA,"FullKy00","kyle-fuller-1","2108","16715",NA,"Kyle Fuller","kyle fuller","CB","CHI","29","2014","1","14","1992-02-16"
+"11765","13112f4f-03c9-432c-a033-454870cda46b","00-0031334",NA,NA,NA,NA,"2055","16726",NA,"Jason Verrett","jason verrett","CB","SFO","29.7","2014","1","25","1991-05-13"
+"11767","a1902bda-47bc-4436-9165-2d79620e4030","00-0031366",NA,NA,"BucaDe00","deone-bucannon-1","2240","16723",NA,"Deone Bucannon","deone bucannon","LB","TBB","28.4","2014","1","27","1992-08-30"
+"11768","1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931","00-0031298",NA,NA,"WardJi01","jimmie-ward-1","2267","16717",NA,"Jimmie Ward","jimmie ward","S","SFO","29.5","2014","1","30","1991-07-18"
+"11769","3e3bd10a-6462-47f8-8938-42518781d060","00-0031411",NA,NA,"LawrDe00","demarcus-lawrence-1","2064","16802",NA,"Demarcus Lawrence","demarcus lawrence","DE","DAL","28.8","2014","2","34","1992-04-02"
+"11772","462bfd22-1159-408f-8f92-7fde712ffc3a","00-0031361",NA,NA,"KirkCh00","christian-kirksey-1","1905","16767",NA,"Christian Kirksey","christian kirksey","LB","GBP","28.4","2014","3","71","1992-08-31"
+"11775","42a9be0e-66cd-4efc-8150-91950ed97955","00-0031171",NA,NA,"BrowPr00","preston-brown-4","1808","16762",NA,"Preston Brown","preston brown","LB","FA","28.3","2014","3","73","1992-10-27"
+"11776","5cb1fbaa-96f9-4211-96b7-f3492f2bc467","00-0031338",NA,NA,"BrooTe00","terrence-brooks-1","1864","16768",NA,"Terrence Brooks","terrence brooks","S","NEP","29.9","2014","3","79","1991-03-02"
+"11779","69c1e87f-7ffc-487d-8724-09f4fba12b59","00-0031050",NA,NA,"MartKa00","kareem-martin-1","2244","16764",NA,"Kareem Martin","kareem martin","LB","DET","29","2014","3","84","1992-02-19"
+"11781","5f173aec-86fc-40b5-b0ae-805b46476022","00-0031015",NA,NA,"GainPh00","phillip-gaines-1","2017","16750",NA,"Phillip Gaines","phillip gaines","CB","HOU","29.8","2014","3","87","1991-04-04"
+"11783","9b13d2bc-b22c-4f91-8eeb-309f43422d6e","00-0031051","12231","2138","BrowJo02",NA,"2238","16804",NA,"John Brown","john brown","WR","BUF","30.8","2014","3","91","1990-04-03"
+"11785","e00b3426-238b-4bdb-85c3-bbf08b7469e3","00-0031384",NA,NA,"RodgRi00","richard-rodgers-1","2146","16786",NA,"Richard Rodgers","richard rodgers","TE","PHI","29","2014","3","98","1992-01-22"
+"11787","2d28c7f5-21e8-40cb-afb4-a8391a5923e7","00-0031173",NA,NA,"WatkJa01","jaylen-watkins-1","1806","16919",NA,"Jaylen Watkins","jaylen watkins","S","LAC","28.2","2014","4","101","1992-11-27"
+"11788","ba905b34-8412-4553-9055-3460368cc608","00-0031052",NA,NA,"BreeBa00","bashaud-breeland-1","2091","16890",NA,"Bashaud Breeland","bashaud breeland","CB","KCC","29","2014","4","102","1992-01-30"
+"11789","7e2c36bd-bae6-42e8-84fc-147106ed7270","00-0031346",NA,NA,NA,NA,"2031","16857",NA,"Justin Ellis","justin ellis","DT","BAL","30.1","2014","4","7","1990-12-27"
+"11790","a18446e0-c116-4d12-83d7-6b12c5fb983f","00-0031175",NA,NA,"MarsCa00","cassius-marsh-1","2275","16873",NA,"Cassius Marsh","cassius marsh","LB","PIT","28.6","2014","4","108","1992-07-07"
+"11791","36da9517-98fe-4258-807d-6d7e4b334c2f","00-0031016",NA,NA,"CockRo00","ross-cockrell-1","1809","16843",NA,"Ross Cockrell","ross cockrell","CB","TBB","29.5","2014","4","109","1991-08-06"
+"11792","959852b0-ce24-4c89-abff-ded427cbfbdf","00-0031393",NA,NA,NA,NA,"2224","16937",NA,"Maurice Alexander","maurice alexander","S","FA","30","2014","4","10","1991-02-16"
+"11793","0d038341-cd66-4651-93c4-e76c6d218135","00-0031054",NA,NA,"JoneDa04","daquan-jones-1","1932","16910",NA,"DaQuan Jones","daquan jones","DT","TEN","29.1","2014","4","112","1991-12-17"
+"11795","919cdf12-3811-49d1-a7a5-65ff29a59434","00-0031348",NA,NA,"HitcAn00","anthony-hitchens-1","2062","16883",NA,"Anthony Hitchens","anthony hitchens","LB","KCC","28.6","2014","4","119","1992-06-10"
+"11799","19403487-1d34-434b-8fc2-a8852167af76","00-0031307",NA,NA,"AikeWa00",NA,"1818","16819",NA,"Walt Aikens","walt aikens","S","TEN","29.6","2014","4","125","1991-06-19"
+"11801","f8f7a845-ae30-404c-8800-66bd643b6d2d","00-0031331",NA,NA,"DesiPi00",NA,"1902","16948",NA,"Pierre Desir","pierre desir","CB","BAL","30.4","2014","4","127","1990-09-08"
+"11802","4ca2f25d-7a0c-42e2-9b35-c9b9a025990b","00-0031261",NA,NA,"BostTr00","tre-boston-1","2184","16877",NA,"Tre Boston","tre boston","S","CAR","28.6","2014","4","128","1992-06-25"
+"11803","d5ba025d-5e9d-452d-8b86-f68a3bff5e22","00-0031061",NA,NA,"JohnDo02","dontae-johnson-1","2258","16893",NA,"Dontae Johnson","dontae johnson","CB","SFO","29.2","2014","4","129","1991-12-01"
+"11805","14656a50-c687-48e0-a2d9-819709e3ffa3","00-0031308",NA,NA,"PierKe00","kevin-pierre-louis-1","2277","16888",NA,"Kevin Pierre-Louis","kevin pierre-louis","LB","WAS","29.3","2014","4","132","1991-10-07"
+"11806","7ec05721-dba9-4e27-8cf0-92d626754624","00-0031176",NA,NA,"LawsNe00","nevin-lawson-1","2122","16929",NA,"Nevin Lawson","nevin lawson","CB","LVR","29.8","2014","4","133","1991-04-23"
+"11807","63cef4ac-6e22-497b-9f8c-fbccd0694d17","00-0031177",NA,NA,"UrbaBr00","brent-urban-1","1881","16831",NA,"Brent Urban","brent urban","DE","CHI","29.7","2014","4","134","1991-05-05"
+"11812","cc9df25a-bb22-4737-83df-ff01d3fd7695","00-0031068",NA,NA,"GranRy01","ryan-grant-2","2093","16845",NA,"Ryan Grant","ryan grant","WR","FA","30.1","2014","5","142","1990-12-19"
+"11813","dfbbe1cc-1fce-4599-92ae-922a8b79fb83","00-0031309",NA,NA,"SmitTe01","telvin-smith-1","1995","16891",NA,"Telvin Smith","telvin smith","LB","FA","29.8","2014","5","144","1991-04-11"
+"11814","4ba33131-8214-45bf-9ce1-5ac08f1b68c5","00-0031181",NA,NA,"AlleRi00","ricardo-allen-1","2167","16882",NA,"Ricardo Allen","ricardo allen","S","ATL","29.1","2014","5","147","1991-12-18"
+"11816","a36dd143-6b0f-429e-95ba-335559ff4845","00-0031263",NA,NA,"WillAv00","avery-williamson-1","1940","16920",NA,"Avery Williamson","avery williamson","LB","PIT","28.9","2014","5","151","1992-03-09"
+"11820","aa82ed23-934e-451f-ac47-65c63a84bf16","00-0031071",NA,NA,"ReidCa00",NA,"2126","16853",NA,"Caraun Reid","caraun reid","DE","JAC","29.2","2014","5","158","1991-11-23"
+"11821","df08d4a5-2979-469d-9775-ed34fc3f43ee","00-0031264",NA,NA,"SmitCh03","chris-smith-14","1994","16917",NA,"Chris Smith","chris smith","DE","LVR","29","2014","5","159","1992-02-11"
+"11830","036131ed-3862-4f06-8379-084d3b2352d5","00-0031241",NA,NA,"KennDe00","devon-kennard-1","2084","16820",NA,"Devon Kennard","devon kennard","LB","ARI","29.6","2014","5","174","1991-06-24"
+"11833","2a027210-21b3-4723-868d-df995e5d7441","00-0031267",NA,NA,"ExumAn00","antone-exum-1","2156","16833",NA,"Antone Exum","antone exum","S","FA","29.9","2014","6","182","1991-02-27"
+"11834","cbf1cdba-d165-45f7-a695-5e0971dd9042","00-0031075",NA,NA,"BlueAl00","alfred-blue-1","1944","16921",NA,"Alfred Blue","alfred blue","RB","FA","29.8","2014","6","181","1991-04-27"
+"11835","eab69ec2-9cba-4783-8260-cf99121ed2c8","00-0031076",NA,NA,"FaleDa00","david-fales-1","2106","16821",NA,"David Fales","david fales","QB","FA","30.3","2014","6","183","1990-10-04"
+"11837","144ef260-a22e-45df-9bbe-52a11f9188ba","00-0031188",NA,NA,"JackBe00","bennett-jackson-1","2083","16879",NA,"Bennett Jackson","bennett jackson","S","NYJ","29.4","2014","6","187","1991-09-16"
+"11840","ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f","00-0031079",NA,NA,"ODonPa00","pat-odonnell-1","2113","16863",NA,"Pat ODonnell","pat odonnell","PN","CHI","29.9","2014","6","191","1991-02-22"
+"11850","0adf5b2c-35bd-41f2-8e73-3dad53454d78","00-0031023",NA,NA,"EnunQu00","quincy-enunwa-1","1854","16899",NA,"Quincy Enunwa","quincy enunwa","WR","FA","28.7","2014","6","209","1992-05-31"
+"11854","56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4","00-0031395",NA,NA,NA,NA,"2229","16809",NA,"Garrett Gilbert","garrett gilbert","QB","DAL","29.6","2014","6","38","1991-07-01"
+"11858","3f0613a9-f060-4b43-95cb-3b263f05cd0f","00-0031269",NA,NA,NA,NA,"2029","16808",NA,"TJ Carrie","tj carrie","CB","IND","30.5","2014","7","4","1990-07-28"
+"11859","e1b3b636-39b5-46cf-aa7f-216b09ead7e6","00-0031242",NA,NA,"StepSh00","shamar-stephen-1","2163","16866",NA,"Shamar Stephen","shamar stephen","DT","MIN","29.9","2014","7","220","1991-02-25"
+"11862","8e16968a-ac98-4e30-a7b4-5e90202277f6","00-0031089",NA,NA,"AlleBe00","beau-allen-1","1788","16912",NA,"Beau Allen","beau allen","DT","NEP","29.2","2014","7","224","1991-11-14"
+"11872","20d66704-9c12-467f-a6ca-9cf9dc00730c","00-0031270",NA,NA,NA,NA,"2033","16837",NA,"Shelby Harris","shelby harris","DE","DEN","29.5","2014","7","20","1991-08-11"
+"11877","663dae9c-0484-4eb6-a093-ae19d0a743db","00-0031350",NA,NA,"NelsCo00","corey-nelson-2","2005","16902",NA,"Corey Nelson","corey nelson","LB","FA","28.8","2014","7","242","1992-04-22"
+"11883","94f04ef5-238a-4f38-b45a-de2e7f3b9f9e","00-0031097",NA,NA,"MitcTe00","terrance-mitchell-1","2067","16927",NA,"Terrance Mitchell","terrance mitchell","CB","CLE","28.7","2014","7","254","1992-05-27"
+"11886","90908a56-901b-466d-8689-943075da96fe","00-0030874","12334",NA,"WillDa05",NA,"1833","17359",NA,"Damien Williams","damien williams","RB","KCC","28.8","2014",NA,NA,"1992-04-03"
+"11890","2958ea86-e2dc-4719-93e5-cc9d093ca963","00-0030669","12338",NA,"WilsAl02",NA,"2025","17051",NA,"Albert Wilson","albert wilson","WR","MIA","28.6","2014",NA,NA,"1992-07-12"
+"11894","481da4a3-fb29-4480-9db4-9cffdf33f510","00-0030711",NA,NA,NA,NA,"1794","16994",NA,"David Fluellen","david fluellen","RB","FA","29","2014",NA,NA,"1992-01-29"
+"11925","10952a8e-9da1-447b-a016-c699db00c5f0","00-0030821",NA,NA,"HurnAl01",NA,"1984","17177",NA,"Allen Hurns","allen hurns","WR","MIA","29.2","2014",NA,NA,"1991-11-21"
+"11931","132721b4-fd32-4795-b214-ab4baaaceb3a","00-0030670",NA,NA,"FowlBe00",NA,"2003","16995",NA,"Bennie Fowler","bennie fowler","WR","NOS","29.6","2014",NA,NA,"1991-06-10"
+"11936","441eb531-1ec8-4f65-9174-78bc6adada63","00-0031136","13029","2340",NA,NA,"1945","17372",NA,"Chris Boswell","chris boswell","PK","PIT","31.1","2014",NA,NA,"1989-12-16"
+"11938","2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4","00-0030035","13429","2431","ThieAd00",NA,"1689","16460",NA,"Adam Thielen","adam thielen","WR","MIN","30.4","2014",NA,NA,"1990-08-22"
+"11945","d96ff17c-841a-4768-8e08-3a4cfcb7f717","00-0031203","13731",NA,"SantCa01",NA,"2020","17427",NA,"Cairo Santos","cairo santos","PK","CHI","29.2","2014",NA,NA,"1991-11-21"
+"11947","6444feb1-f5a4-4b45-9a45-79308a4445fd","00-0029822","13274","2336","McMaBr01",NA,"1433","16339",NA,"Brandon McManus","brandon mcmanus","PK","DEN","29.5","2014",NA,NA,"1991-07-25"
+"11951","8482bc94-0eb0-4e92-8f99-ced135f3cd5d","00-0030663","12904",NA,"SneaWi00",NA,"1911","17258",NA,"Willie Snead","willie snead","WR","BAL","28.3","2014",NA,NA,"1992-10-17"
+"11954","4642915e-8c37-4692-9169-fa210b6efc8c","00-0030752",NA,NA,"ElliJa02",NA,"4903","16991",NA,"Jayrone Elliott","jayrone elliott","LB","PIT","29.2","2014",NA,NA,"1991-11-11"
+"11956","d1e46e40-5e8c-4b5a-ae03-5d0093b98633","00-0030665",NA,NA,"SoreDa01",NA,"2022","17259",NA,"Daniel Sorensen","daniel sorensen","S","KCC","30.9","2014",NA,NA,"1990-03-05"
+"11957","61194d09-1caf-4bd6-9ff2-a6b1601a1839","00-0028411",NA,NA,NA,NA,"2291","14269",NA,"Dontrelle Inman","dontrelle inman","WR","WAS","32","2013",NA,NA,"1989-01-31"
+"11960","0d1171d4-c955-4966-9257-640b569866d1","00-0030896","13606",NA,"CataCh00",NA,"2242","16976",NA,"Chandler Catanzaro","chandler catanzaro","PK","FA","29.9","2014",NA,NA,"1991-02-26"
+"11964","3d94860c-82db-43fd-aa99-3b72390111a4","00-0031209",NA,NA,"PerrSe00",NA,"2114","17421",NA,"Senorise Perry","senorise perry","RB","TEN","29.4","2014",NA,NA,"1991-09-19"
+"11965","ab49bafe-7023-46ce-9606-9a9823eabee6","00-0031218",NA,NA,"ButlMa01",NA,"1834","17435",NA,"Malcolm Butler","malcolm butler","CB","TEN","30.9","2014",NA,NA,"1990-03-02"
+"11966","4b99ead5-0f79-4899-84a7-075c08890698","00-0030850","13806",NA,"ParkCo03",NA,"1974","17082",NA,"Cody Parkey","cody parkey","PK","CLE","29","2014",NA,NA,"1992-02-19"
+"11970","8b9bc551-66bb-4948-849f-c0471caaeb19","00-0030757",NA,NA,"PennMi00",NA,"2143","17230",NA,"Mike Pennel","mike pennel","DT","KCC","29.7","2014",NA,NA,"1991-05-09"
+"11975","4b3677f5-712e-43f2-b7bb-51ac6f291b86","00-0031228",NA,NA,"GabrTa00",NA,"1903","17437",NA,"Taylor Gabriel","taylor gabriel","WR","FA","30","2014",NA,NA,"1991-02-17"
+"11985","55e1ecbd-96c5-456e-833b-9cd3f046f3fc","00-0030140",NA,NA,NA,NA,"1506","16166",NA,"Tress Way","tress way","PN","WAS","30.8","2013",NA,NA,"1990-04-18"
+"11993","5165ce25-382b-4809-83b7-8c66d93c2aef","00-0031105",NA,NA,"KerrZa00",NA,"1965","17071",NA,"Zach Kerr","zach kerr","DT","CAR","30.4","2014",NA,NA,"1990-08-29"
+"12008","d694d99d-0dd2-443f-b02a-6cd377cdaf6e","00-0030776",NA,NA,"WynnKe00",NA,"2089","17296",NA,"Kerry Wynn","kerry wynn","DE","FA","30","2014",NA,NA,"1991-02-12"
+"12015","63a656b9-bcbb-44a3-95c8-e8a63660e71b","00-0031253",NA,NA,NA,NA,"1913","17444",NA,"KWaun Williams","kwaun williams","CB","SFO","29.6","0",NA,NA,"1991-07-12"
+"12040","955093e0-39aa-48b4-b34d-259b369e6535","00-0030968",NA,NA,"SmitKe03",NA,"2073","17315",NA,"Keith Smith","keith smith","RB","ATL","28.8","2014",NA,NA,"1992-04-08"
+"12072","1db9d170-d0cf-4b2c-a160-fe828a7339eb",NA,NA,NA,"GlanAd00",NA,"2190","17401",NA,"Adarius Taylor","adarius taylor","LB","CAR","30.4","2014",NA,NA,"1990-09-21"
+"12075","df483199-088f-47d6-b8fc-1574f74bb4e2","00-0031101",NA,NA,NA,NA,"1999","16967",NA,"Shaq Barrett","shaq barrett","LB","TBB","28.2","2014",NA,NA,"1992-11-17"
+"12083","a21d1e4a-aae6-4ebe-8f70-1087151b2b50","00-0031254",NA,NA,"AutrDe00",NA,"2027","17447",NA,"Denico Autry","denico autry","DT","IND","30.5","2014",NA,NA,"1990-07-15"
+"12087","a5c2a8bd-7935-4819-800f-32e3eefe4f61","00-0031427",NA,NA,"DaviTo01",NA,"2689","17497",NA,"Todd Davis","todd davis","LB","MIN","28.7","2014",NA,NA,"1992-05-17"
+"12088","3c119ef7-fe68-439d-93e4-89ab4fd1df44","00-0031404",NA,NA,"PhilAd00",NA,"2287","17487",NA,"Adrian Phillips","adrian phillips","S","NEP","28.8","2014",NA,NA,"1992-03-28"
+"12098","65f91b8b-6794-4273-bf42-4d00b5973ddd","00-0030668",NA,NA,"WestCh01",NA,"2024","17284",NA,"Charcandrick West","charcandrick west","RB","FA","29.7","2014",NA,NA,"1991-06-02"
+"12099","6399b33c-6d3d-4fc5-b142-1a5deb33ef76","00-0030883",NA,NA,"MaurJo00",NA,"1920","17017",NA,"Josh Mauro","josh mauro","DE","FA","30","2014",NA,NA,"1991-02-17"
+"12110","5afe93fd-0caf-4cca-83fc-7f405bebfa3e","00-0031273","13470",NA,"BratCa00",NA,"2214","17453",NA,"Cameron Brate","cameron brate","TE","TBB","29.6","2014",NA,NA,"1991-07-03"
+"12111","29626ee6-b528-4618-a4a5-771a5b0ff54d","00-0031127",NA,NA,"DunnBr00",NA,"2105","17061",NA,"Brandon Dunn","brandon dunn","DT","HOU","28.4","2014",NA,NA,"1992-09-05"
+"12126","291aca07-a3b7-4666-a8c0-2e0c01024de5","00-0029890",NA,NA,NA,NA,"1640","16377",NA,"Mike Purcell","mike purcell","DT","DEN","29.8","2013",NA,NA,"1991-04-20"
+"12136","3a8befa1-04e8-4aa7-bc14-504e3d2de483","00-0030697",NA,NA,"MedeJa00",NA,"1874","17214",NA,"Jamie Meder","jamie meder","DT","FA","29.8","2014",NA,NA,"1991-04-12"
+"12138","b77aa319-b97f-4316-84c5-e51390432644","00-0031167",NA,NA,"SimoSc00",NA,"2040","17391",NA,"Scott Simonson","scott simonson","TE","FA","28.8","2014",NA,NA,"1992-04-13"
+"12140","fb3b36fc-b985-4807-8199-d038d7e62a93","00-0031503","13891",NA,"WinsJa00","jameis-winston-1","2306","2969939",NA,"Jameis Winston","jameis winston","QB","NOS","27.1","2015","1","1","1994-01-06"
+"12141","7c16c04c-04de-41f3-ac16-ad6a9435e3f7","00-0032268","13890",NA,"MariMa01","marcus-mariota-1","2307","2576980",NA,"Marcus Mariota","marcus mariota","QB","LVR","27.3","2015","1","2","1993-10-30"
+"12142","e97f5ca9-186e-4346-ae65-1cd757ada455","00-0031589",NA,NA,"HundBr00","brett-hundley-1","2450","2577189",NA,"Brett Hundley","brett hundley","QB","ARI","27.6","2015","5","147","1993-06-15"
+"12145","91ead748-e3b0-4926-bd3b-3e327b44e6bc","00-0032245",NA,NA,NA,NA,"2394","2517017",NA,"Sean Mannion","sean mannion","QB","MIN","28.8","2015","3","25","1992-04-25"
+"12150","14263792-d1d3-4b0c-85f7-2a85b4aed6f1","00-0032241","13912","2280",NA,NA,"2315","2977644",NA,"Todd Gurley","todd gurley","RB","ATL","26.5","2015","1","10","1994-08-03"
+"12151","0f8ccece-d663-4069-944b-f318f64c60b7","00-0032144","13903","2282",NA,NA,"2320","2576434",NA,"Melvin Gordon","melvin gordon","RB","DEN","27.8","2015","1","15","1993-04-13"
+"12152","5827b78b-5150-4ba9-bc46-902428e99a31","00-0032058","13926","2289","ColeTe01","tevin-coleman-1","2378","2979477",NA,"Tevin Coleman","tevin coleman","RB","SFO","27.8","2015","3","73","1993-04-16"
+"12153","d28afbc1-16c0-4012-b24a-1bd99817e8a9","00-0032209","13941",NA,"YeldT.00","tj-yeldon-1","2341","2976516",NA,"TJ Yeldon","tj yeldon","RB","BUF","27.3","2015","2","36","1993-10-02"
+"12154","bb78a66a-a8ec-4294-8858-c7e5a1d15106","00-0031590",NA,NA,"AjayJa00","jay-ajayi-1","2452","2573300",NA,"Jay Ajayi","jay ajayi","RB","FA","27.6","2015","5","149","1993-06-15"
+"12155","c5e430c5-7a8e-4e29-b30f-1a527f05cb89","00-0032104",NA,NA,"AbduAm00","ameer-abdullah-1","2359","2576336",NA,"Ameer Abdullah","ameer abdullah","RB","MIN","27.6","2015","2","54","1993-06-13"
+"12157","31c376b7-2e10-473a-aa54-d9f709a5b93e","00-0032257","13939","2285","JohnDu00","duke-johnson-1","2382","2969962",NA,"Duke Johnson","duke johnson","RB","HOU","27.4","2015","3","77","1993-09-23"
+"12159","9173225c-4e88-4c87-ad78-41aa0d00a1be","00-0031577",NA,NA,"AlleJa01","javorius-allen-1","2430","2577253",NA,"Javorius Allen","javorius allen","RB","FA","29.4","2015","4","125","1991-08-27"
+"12161","f413d6fb-5105-4110-b915-d92840a3e656","00-0031599",NA,NA,"ArtiCa00","cameron-artis-payne-1","2477","3043097",NA,"Cameron Artis-Payne","cameron artis-payne","RB","FA","30.6","2015","5","174","1990-06-23"
+"12164","e311a7a2-eddb-439c-86b4-b1f1984186bc","00-0032063","13943",NA,"DaviMi01","mike-davis-9","2431","3025433",NA,"Mike Davis","mike davis","RB","CAR","27.9","2015","4","126","1993-02-19"
+"12169","488c3707-26ee-4e1a-8742-494a06f77801","00-0031897",NA,NA,"RawlTh00",NA,"2585","2576237",NA,"Thomas Rawls","thomas rawls","RB","FA","27.5","2015",NA,NA,"1993-08-03"
+"12171","2c8670ae-0c23-4d20-9d2b-f4c3e25f8938","00-0032187","13948","2297","JohnDa08",NA,"2391","2508176",NA,"David Johnson","david johnson","RB","HOU","29.1","2015","3","86","1991-12-16"
+"12173","7f911008-146b-43e9-a292-9ad90c621087","00-0032261",NA,NA,"BrowMa01","malcom-brown-1","2337","2971698",NA,"Malcom Brown","malcom brown","DT","NOS","27","2015","1","32","1994-02-02"
+"12175","00f88be8-45f9-4237-b2b8-3271ec790d07","00-0031544","13894","2277",NA,NA,"2309","2976499",NA,"Amari Cooper","amari cooper","WR","DAL","26.6","2015","1","4","1994-06-18"
+"12176","e9ee9209-dd8f-4e4a-be3c-407756a2749c","00-0031547","13897","2279","ParkDe01","devante-parker-1","2319","2576623",NA,"DeVante Parker","devante parker","WR","MIA","28","2015","1","14","1993-01-20"
+"12177","5b496c58-83ef-4763-b1e0-5f052af46b3e","00-0031545",NA,NA,"WhitKe00","kevin-white-6","2312","3042435",NA,"Kevin White","kevin white","WR","SFO","28.6","2015","1","7","1992-06-25"
+"12179","704b9da0-2a07-4f64-be2e-dc9897d24e63","00-0031560",NA,NA,"StroJa01","jaelen-strong-1","2375","3043263",NA,"Jaelen Strong","jaelen strong","WR","FA","27","2015","3","70","1994-01-25"
+"12181","cfb0ff68-51cb-4dad-ba81-f9e019a93a91","00-0031549","13969",NA,"AghoNe00","nelson-agholor-1","2325","2971618",NA,"Nelson Agholor","nelson agholor","WR","LVR","27.7","2015","1","20","1993-05-24"
+"12182","ca2d277b-835d-4f4b-bf3a-3993001d71d8","00-0031934",NA,NA,"SmitDe04","devin-smith-2","2342","2576395",NA,"Devin Smith","devin smith","WR","NEP","28.9","2015","2","37","1992-03-03"
+"12184","8002dd5e-a75a-4d72-9a8c-0f4dbc80d459","00-0031941","13976","2331","CrowJa00","jamison-crowder-1","2410","2576716",NA,"Jamison Crowder","jamison crowder","WR","NYJ","27.6","2015","4","105","1993-06-17"
+"12185","052a93cf-8536-4a12-9831-84b27e8608da","00-0031570",NA,NA,"HardJu00","justin-hardy-1","2412","2518678",NA,"Justin Hardy","justin hardy","WR","FA","29.1","2015","4","107","1991-12-18"
+"12186","a1c40664-b265-4083-aad2-54b4c734f2c5","00-0031588","13981","2316","DiggSt00","stefon-diggs-1","2449","2976212",NA,"Stefon Diggs","stefon diggs","WR","BUF","27.2","2015","5","146","1993-11-29"
+"12187","dffa69ad-331e-4f09-ae38-40a5a4406be6","00-0032211","13971","2304","LockTy00","tyler-lockett-1","2374","2577327",NA,"Tyler Lockett","tyler lockett","WR","SEA","28.3","2015","3","69","1992-09-28"
+"12188","c682e8ea-fe48-45d2-af60-682a6125ab22","00-0032208","13979",NA,"DorsPh00","phillip-dorsett-1","2334","2579604",NA,"Phillip Dorsett","phillip dorsett","WR","SEA","28.1","2015","1","29","1993-01-05"
+"12197","0dc98d11-34e4-46f6-96a6-7707c6f29500","00-0032054","13975","2286","PerrBr02","breshad-perriman-1","2331","2972460",NA,"Breshad Perriman","breshad perriman","WR","NYJ","27.4","2015","1","26","1993-09-10"
+"12205","7f5f2a81-ac40-420c-9421-5b9e2a21faf8","00-0032055","13915",NA,"FuncDe00","devin-funchess-1","2346","2977609",NA,"Devin Funchess","devin funchess","WR","GBP","26.7","2015","2","41","1994-05-21"
+"12206","52f4a43a-64a9-4d69-a9e2-28bd60f68e49","00-0031558",NA,NA,"WillMa04","maxx-williams-1","2360","2970726",NA,"Maxx Williams","maxx williams","TE","ARI","26.8","2015","2","55","1994-04-12"
+"12207","c257b2e6-dfc9-45c8-b30c-a497f2ce82a2","00-0032117",NA,NA,"OLeaNi00","nick-oleary-1","2495","2576804",NA,"Nick OLeary","nick oleary","TE","LVR","28.4","2015","6","194","1992-08-31"
+"12208","1fe3aadd-336b-4838-888e-8c9609747afc","00-0032227",NA,NA,"HeueJe00","jeff-heuerman-1","2397","2576389",NA,"Jeff Heuerman","jeff heuerman","TE","FA","28.2","2015","3","92","1992-11-24"
+"12209","666e3121-3daa-4413-b1ec-8e728f7cc645","00-0032139",NA,NA,"KoyaBe00","ben-koyack-1","2528","2579846",NA,"Ben Koyack","ben koyack","TE","FA","27.8","2015","7","229","1993-04-09"
+"12210","2e56cca7-b898-4aac-bbc5-b5bda9163be1","00-0032256",NA,NA,NA,NA,"2373","2512593",NA,"Clive Walford","clive walford","TE","FA","29.3","2015","3","4","1991-10-21"
+"12211","a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d","00-0032135",NA,NA,"JameJe00","jesse-james-1","2463","2979590",NA,"Jesse James","jesse james","TE","DET","26.7","2015","5","160","1994-06-04"
+"12212","36f54823-9d51-4180-9c91-d10281deb4bf","00-0032214",NA,NA,"KrofTy00","tyler-kroft-1","2390","2582410",NA,"Tyler Kroft","tyler kroft","TE","BUF","28.3","2015","3","85","1992-10-15"
+"12213","0cc4e449-185a-4b08-9f07-c907ad0c3e05","00-0032062",NA,NA,"BellBl00","blake-bell-1","2422","2514206",NA,"Blake Bell","blake bell","TE","DAL","29.5","2015","4","117","1991-08-07"
+"12215","5c913725-c52a-4633-b3b9-efa6a9d2cf05","00-0032197",NA,NA,"GregRa00","randy-gregory-1","2365","3895806",NA,"Randy Gregory","randy gregory","DE","DAL","28.2","2015","2","60","1992-11-23"
+"12217","6bc85af5-fc58-4656-82da-d02780a0f6f6","00-0032052",NA,NA,"FowlDa00","dante-fowler-jr-1","2308","2980100",NA,"Dante Fowler","dante fowler","DE","ATL","26.5","2015","1","3","1994-08-03"
+"12218","acb7169f-3ffa-4386-9866-e06af6ed7fef","00-0032164",NA,NA,"ArmsAr01","arik-armstead-1","2322","2971275",NA,"Arik Armstead","arik armstead","DE","SFO","26.2","2015","1","17","1994-11-15"
+"12219","fdfb980b-1493-4698-9b97-f445a8f495da","00-0032265",NA,NA,NA,NA,"2340","2969921",NA,"Mario Edwards","mario edwards","DE","CHI","27","2015","2","3",NA
+"12221","ba7fe857-df63-4aed-803a-80993b157be4","00-0031565","14036",NA,"HuntDa01","danielle-hunter-1","2393","2976560",NA,"Danielle Hunter","danielle hunter","DE","MIN","26.3","2015","3","88","1994-10-29"
+"12222","57deb6ba-ce26-4ccc-a859-adf0564fb78e","00-0031566",NA,NA,"FlowTr00","trey-flowers-1","2406","2574519",NA,"Trey Flowers","trey flowers","DE","DET","27.5","2015","4","101","1993-08-16"
+"12223","f024c29d-c4e6-4f23-b8e5-c7788bc87e47","00-0031556",NA,NA,"OrchNa00","nate-orchard-1","2356","3052511",NA,"Nate Orchard","nate orchard","DE","TEN","28.1","2015","2","51","1993-01-05"
+"12225","2b5152aa-cbcc-439c-b72a-ac7577c8422b","00-0031933",NA,NA,"WillLe02","leonard-williams-1","2311","2971622",NA,"Leonard Williams","leonard williams","DE","NYG","26.6","2015","1","6","1994-06-20"
+"12226","cb491475-1814-4914-9777-fb865ae0d70b","00-0032143",NA,NA,"ShelDa01","danny-shelton-1","2317","2578384",NA,"Danny Shelton","danny shelton","DT","DET","27.4","2015","1","12","1993-08-20"
+"12227","50de642a-7e6c-4625-9966-ed8fc64acfa0","00-0031938",NA,NA,"DaviCa01","carl-davis-3","2395","2511690",NA,"Carl Davis","carl davis","DT","NEP","28.9","2015","3","90","1992-03-02"
+"12229","023af11a-3aa1-4266-b163-31cf6369ef3b","00-0031557",NA,NA,"PhilJo01","jordan-phillips-1","2357","2577466",NA,"Jordan Phillips","jordan phillips","DE","ARI","28.4","2015","2","52","1992-09-21"
+"12230","d1d46ded-4585-4760-81b4-62b80d31a3b0","00-0032240",NA,NA,"BeasVi00","vic-beasley-1","2313","2512400",NA,"Vic Beasley","vic beasley","LB","LVR","28.6","2015","1","8","1992-07-08"
+"12231","3bf0711c-793a-47e7-bcbd-a0ddf350fef4","00-0031550",NA,NA,"ThomSh01","shaq-thompson-1","2330","2978313",NA,"Shaq Thompson","shaq thompson","LB","CAR","26.8","2015","1","25","1994-04-21"
+"12232","2f901553-926f-44c4-8ef0-1f0ff2d772cf","00-0031578",NA,NA,"RyanJa00","jake-ryan-1","2434","2515337",NA,"Jake Ryan","jake ryan","LB","FA","28.9","2015","4","129","1992-02-27"
+"12233","fd3bd475-4327-4ba7-8540-ab6cc8ecf12f","00-0032109",NA,NA,"AlexKw00","kwon-alexander-1","2429","2976541",NA,"Kwon Alexander","kwon alexander","LB","NOS","26.5","2015","4","124","1994-08-03"
+"12234","48dca4c3-c6ac-4122-aee6-26f7cd259824","00-0032146",NA,NA,"DuprAl00","alvin-dupree-1","2327","2576702",NA,"Bud Dupree","bud dupree","LB","PIT","28","2015","1","22","1993-02-12"
+"12237","5f727913-cfa9-44e5-89e4-e2a52dc11760","00-0031943",NA,NA,"WilsRa00","ramik-wilson-1","2423","2578565",NA,"Ramik Wilson","ramik wilson","LB","FA","28.5","2015","4","118","1992-08-19"
+"12238","9fc6e49f-c863-419d-9dca-8f0da3f3c9c7","00-0032103",NA,NA,NA,NA,"2353","2579621",NA,"Denzel Perryman","denzel perryman","LB","LAC","27.2","2015","2","16","1993-12-05"
+"12239","b345f3db-d5aa-43ba-9f17-914c54864236","00-0031554","14026",NA,"KendEr00","eric-kendricks-1","2350","2510863",NA,"Eric Kendricks","eric kendricks","LB","MIN","28.9","2015","2","45","1992-02-29"
+"12241","e9b50746-32c9-478c-a8cc-3f037e762ecc","00-0034887",NA,NA,"JohnAl01",NA,"5822","2577712",NA,"Alexander Johnson","alexander johnson","LB","DEN","29.1","2018",NA,NA,"1991-12-24"
+"12243","e2a4fca8-0482-442e-93f7-3cef0fb2358d","00-0032102",NA,NA,"AnthSt00","stephone-anthony-1","2336","2576482",NA,"Stephone Anthony","stephone anthony","LB","FA","28.5","2015","1","31","1992-07-28"
+"12244","ba447b79-44c1-48a7-b30a-a2460f219afe","00-0032248",NA,NA,NA,NA,"2523","2512999",NA,"Bryce Hager","bryce hager","LB","NYJ","28.7","2015","7","7","1992-05-04"
+"12245","402f063b-4703-4729-b6ea-3a9d45a314c7","00-0032165",NA,NA,"PeteMa00","marcus-peters-1","2323","2578378",NA,"Marcus Peters","marcus peters","CB","BAL","28.1","2015","1","18","1993-01-09"
+"12246","36538da8-9ac7-4f7d-beb4-8b773da4a080","00-0032059",NA,NA,"WillP.00","pj-williams-1","2383","2977661",NA,"PJ Williams","pj williams","CB","NOS","27.7","2015","3","78","1993-06-01"
+"12248","338adc8a-173d-4b1b-a5de-92818bf96823","00-0031546",NA,NA,"WaynTr00","trae-waynes-1","2316","2576283",NA,"Trae Waynes","trae waynes","CB","CIN","28.5","2015","1","11","1992-07-25"
+"12249","12f4a38f-17b4-42b1-a1e6-9fd6ef08d150","00-0031548",NA,NA,"JohnKe04","kevin-johnson-7","2321","2511523",NA,"Kevin Johnson","kevin johnson","CB","CLE","28.5","2015","1","16","1992-08-05"
+"12250","a9c41c5b-0dcf-40cc-a76c-644307f2f2df","00-0032262","13895",NA,"CollLa00","landon-collins-1","2338","2979841",NA,"Landon Collins","landon collins","S","WAS","27.1","2015","2","33","1994-01-10"
+"12252","a7413fb5-8d05-457f-a97f-504bee73a910","00-0031799",NA,NA,"HarrAn01",NA,"2719","2577814",NA,"Anthony Harris","anthony harris","S","MIN","28.7","2015",NA,NA,"1992-06-04"
+"12257","bd01d907-cd57-48cb-9136-5692a4764a20","00-0032128","14151",NA,"ConlCh00","chris-conley-1","2381","2578533",NA,"Chris Conley","chris conley","WR","JAC","28.3","2015","3","76","1992-10-25"
+"12261","0c39e276-7a5b-448f-a696-532506f1035a","00-0032200","13977",NA,"MontTy01","ty-montgomery-1","2399","2577134",NA,"Ty Montgomery","ty montgomery","RB","NOS","28","2015","3","94","1993-01-22"
+"12263","14c97c9f-26e8-4944-9299-f90de6aeada3","00-0031610","14104",NA,"WallDa01","darren-waller-1","2505","2576925",NA,"Darren Waller","darren waller","TE","LVR","28.4","2015","6","204","1992-09-13"
+"12264","2a4de276-55bd-4756-9fa5-89fe30f5304f","00-0031665",NA,NA,NA,NA,"2560","2521161",NA,"Zach Zenner","zach zenner","RB","FA","29.4","2015",NA,NA,"1991-09-13"
+"12266","e20a7609-8129-400f-87b9-d11dda3836b4","00-0031502",NA,NA,"BerrJo00",NA,"2975","2472364",NA,"Jordan Berry","jordan berry","PN","PIT","29.9","2015",NA,NA,"1991-03-18"
+"12268","64b1bda8-8c0d-4c17-b8a9-6b5ef292c924","00-0032239",NA,NA,"JoneBy00","byron-jones-2","2332","2513035",NA,"Byron Jones","byron jones","CB","MIA","28.4","2015","1","27","1992-08-26"
+"12269","b9e6500f-2bb4-47b1-a3ea-1e3f925a3743","00-0032251",NA,NA,"RandDa00","damarious-randall-1","2335","3043258",NA,"Damarious Randall","damarious randall","S","SEA","28.4","2015","1","30","1992-08-29"
+"12270","ede260be-5ae6-4a06-887b-e4a130932705","00-0031935",NA,NA,"SmitPr00","preston-smith-2","2343","2577446",NA,"Preston Smith","preston smith","LB","GBP","28.2","2015","2","38","1992-11-17"
+"12271","881eb214-c981-46c0-a0cf-34023e773754","00-0031551",NA,NA,"GoldEd00","eddie-goldman-1","2344","2969924",NA,"Eddie Goldman","eddie goldman","DT","CHI","27.1","2015","2","39","1994-01-06"
+"12272","5aac7b03-3b39-4084-bda5-8423abf28903","00-0031553",NA,NA,"McKiBe00","benardrick-mckinney-1","2348","2577429",NA,"Benardrick McKinney","benardrick mckinney","LB","HOU","28.2","2015","2","43","1992-11-19"
+"12274","92da4f95-8f58-4379-b236-ee4ab8ff5daf","00-0032057",NA,NA,"TartJa00",NA,"2351","2509844",NA,"Jaquiski Tartt","jaquiski tartt","S","SFO","29","2015","2","46","1992-02-18"
+"12275","30b045f1-b8e4-4ae9-b062-5181847b508c","00-0031555",NA,NA,"RoweEr00","eric-rowe-1","2352","2576002",NA,"Eric Rowe","eric rowe","S","MIA","28.3","2015","2","47","1992-10-03"
+"12276","c63eb787-fa1f-406b-82a1-2eed0a65b58c","00-0032195",NA,NA,"DarbRo00","ronald-darby-1","2355","2969920",NA,"Ronald Darby","ronald darby","CB","WAS","27.1","2015","2","50","1994-01-02"
+"12278","78eb0872-fff0-4fc2-94ee-6a5c518ecaa5","00-0032127",NA,NA,"GoldMa00","markus-golden-1","2363","2971432",NA,"Markus Golden","markus golden","LB","ARI","29.9","2015","2","58","1991-03-13"
+"12280","490c15eb-accc-4441-be7d-c7114e1e42fc","00-0032210",NA,NA,"ClarFr01","frank-clark-1","2368","2576242",NA,"Frank Clark","frank clark","DE","KCC","27.6","2015","2","63","1993-06-14"
+"12281","13f716fb-7249-4b0a-9858-8af8cb83f78b","00-0031559",NA,NA,"RichJo00","jordan-richards-2","2369","2577139",NA,"Jordan Richards","jordan richards","S","BAL","28","2015","2","64","1993-01-21"
+"12287","4f090881-03fc-4a34-b02f-fd1df1e411de","00-0032129",NA,NA,"HickJo00","jordan-hicks-1","2389","2514270",NA,"Jordan Hicks","jordan hicks","LB","ARI","28.6","2015","3","84","1992-06-27"
+"12288","2d3a6c81-183f-431b-9b3f-d7f1ce2b294b","00-0032269",NA,NA,"AndeHe00","henry-anderson-1","2398","2517752",NA,"Henry Anderson","henry anderson","DE","NYJ","29.5","2015","3","93","1991-08-03"
+"12291","c2e80cfc-33a8-43f4-a61e-57048244e4f8","00-0032150",NA,NA,"NelsSt01","steven-nelson-1","2403","3045287",NA,"Steven Nelson","steven nelson","CB","PIT","28","2015","3","98","1993-01-22"
+"12292","e9799059-f592-47e8-aab3-e2027fe7b148","00-0032107",NA,NA,"BlacAn00","angelo-blackson-1","2405","2574582",NA,"Angelo Blackson","angelo blackson","DE","ARI","28.2","2015","4","100","1992-11-14"
+"12295","c6392013-57ae-46b3-8a86-791f94bc0c79","00-0031571",NA,NA,"GeatCl00","clayton-geathers-1","2414","2519211",NA,"Clayton Geathers","clayton geathers","S","FA","28.7","2015","4","109","1992-06-01"
+"12297","294b8433-6560-4117-82e9-79f51d361b0b","00-0032198",NA,NA,"CampIb00","ibraheim-campbell-1","2420","2511090",NA,"Ibraheim Campbell","ibraheim campbell","S","IND","28.7","2015","4","115","1992-05-13"
+"12298","e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9","00-0032131",NA,NA,"GuntRo00",NA,"2421","2507719",NA,"Rodney Gunter","rodney gunter","DT","FA","29","2015","4","116","1992-01-19"
+"12301","af3599a5-5eb4-4dd4-87ab-e0032ebfa644","00-0031576",NA,NA,"SmitZa00","zadarius-smith-1","2427","3043168",NA,"ZaDarius Smith","zadarius smith","LB","GBP","28.4","2015","4","122","1992-09-08"
+"12302","96c822e6-5484-476b-8ab0-64b3cff791ef","00-0032215",NA,NA,"WilsDa02","damien-wilson-1","2432","3040207",NA,"Damien Wilson","damien wilson","LB","KCC","27.7","2015","4","127","1993-05-28"
+"12305","e1fe1900-fae3-414e-8530-55eece80471f","00-0031583",NA,NA,"JarrGr00","grady-jarrett-1","2592","2576492",NA,"Grady Jarrett","grady jarrett","DT","ATL","27.8","2015","5","137","1993-04-28"
+"12308","81aaf55d-df8f-47d6-9bf1-06b78df37bf6","00-0031584",NA,NA,"AmosAd00","adrian-amos-1","2445","2582132",NA,"Adrian Amos","adrian amos","S","GBP","27.8","2015","5","142","1993-04-29"
+"12309","f22b34cf-6ecf-4522-9c77-1da275dfda7d","00-0031585",NA,NA,"PruiMy00",NA,"2446","2508256",NA,"MyCole Pruitt","mycole pruitt","TE","TEN","28.9","2015","5","143","1992-03-24"
+"12311","7f32c3e6-113f-4922-b51d-a1a5a1d43bcf","00-0031587",NA,NA,"McCaBo01","bobby-mccain-1","2448","2575606",NA,"Bobby McCain","bobby mccain","S","MIA","27.5","2015","5","145","1993-08-18"
+"12315","bb4619b4-30e6-473d-947e-41d75a573475","00-0032110",NA,NA,NA,NA,"2456","2508212",NA,"Kyle Emanuel","kyle emanuel","LB","HOU","29.5","2015","5","17","1991-08-16"
+"12316","be07b323-a23c-4589-9fe0-29ae6a537de9","00-0031947",NA,NA,"DaviTy01","tyeler-davison-1","2457","2517230",NA,"Tyeler Davison","tyeler davison","DT","ATL","28.4","2015","5","154","1992-09-23"
+"12317","19858900-5c8e-49a7-ab02-34ef625724ca","00-0032134","14084",NA,"UzomC.00","cj-uzomah-1","2460","2574576",NA,"CJ Uzomah","cj uzomah","TE","CIN","28","2015","5","157","1993-01-14"
+"12319","617269c1-88b3-45a6-b4a8-b2806a0cdaea","00-0032112",NA,NA,"NelsJJ00",NA,"2462","2515759",NA,"JJ Nelson","jj nelson","WR","FA","28.8","2015","5","159","1992-04-24"
+"12323","9000be32-15ad-4c43-bf8d-79a9c7113cdd","00-0032065",NA,NA,"PiniBr00","bradley-pinion-1","2468","2977680",NA,"Bradley Pinion","bradley pinion","PN","TBB","26.7","2015","5","165","1994-06-01"
+"12325","80715ecf-ffc9-4a93-a305-2193451b3382","00-0031595",NA,NA,"BurtMi00","michael-burton-1","2471","2515270",NA,"Michael Burton","michael burton","RB","NOS","29","2015","5","168","1992-02-01"
+"12326","677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a","00-0031596",NA,NA,"MayoDa00","david-mayo-1","2472","2972400",NA,"David Mayo","david mayo","LB","NYG","27.5","2015","5","169","1993-08-18"
+"12327","b5fb8706-5436-422d-a4df-2d5235b17aee","00-0031597",NA,NA,"SmitTy01",NA,"2473","2588098",NA,"Tye Smith","tye smith","CB","TEN","27.7","2015","5","170","1993-05-03"
+"12328","9480dd9f-151f-4e6d-b5a3-35f07bda4cac","00-0031598",NA,NA,"BoylNi00",NA,"2474","2574591",NA,"Nick Boyle","nick boyle","TE","BAL","28","2015","5","171","1993-02-17"
+"12329","503066ed-f217-4c3a-bda5-07bfc68c1cac","00-0031950",NA,NA,"AlexD.00","dj-alexander-1","2475","3001171",NA,"DJ Alexander","dj alexander","LB","FA","29.3","2015","5","172","1991-09-30"
+"12330","e5c6b0d4-3e77-422b-a6d8-574a10ed385e","00-0031951",NA,NA,"O'ShJa00",NA,"2476","2508079",NA,"James OShaughnessy","james oshaughnessy","TE","JAC","29","2015","5","173","1992-01-14"
+"12338","53dc492f-b4cc-4da2-a6cc-f61f7c23272f","00-0031953",NA,NA,"DaviGe00","geremy-davis-1","2487","2513030",NA,"Geremy Davis","geremy davis","WR","FA","29.1","2015","6","186","1992-01-10"
+"12349","8092ffd3-3f39-43eb-a602-b14fff77d413","00-0031608",NA,NA,"DiggQu00","quandre-diggs-1","2501","2577553",NA,"Quandre Diggs","quandre diggs","S","SEA","29.2","2015","6","200","1991-11-07"
+"12358","a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1","00-0031956",NA,NA,"ChicAn00","anthony-chickillo-1","2513","2579601",NA,"Anthony Chickillo","anthony chickillo","LB","DEN","28.1","2015","6","212","1992-12-10"
+"12360","efe64fc8-9987-4fe6-b7a4-e2ff363cf443","00-0031619",NA,NA,"CoviCh00","christian-covington-1","2517","2580666",NA,"Christian Covington","christian covington","DT","CIN","27.3","2015","6","216","1993-10-16"
+"12361","d6ce0b64-9526-4983-8c3c-7f14f2918f8e","00-0031957",NA,NA,"NuneRa00","rakeem-nunez-roches-1","2993","2575453",NA,"Rakeem Nunez-Roches","rakeem nunez-roches","DT","TBB","27.6","2015","6","217","1993-07-03"
+"12367","36007e6e-ca6b-42ee-b9f8-79a9a964f5bc","00-0031959",NA,NA,"MurpMa03","marcus-murphy-1","2529","2514123",NA,"Marcus Murphy","marcus murphy","RB","FA","29.3","2015","7","230","1991-10-03"
+"12369","530f22b9-0f36-4ad1-9ead-ea44292b83a8","00-0031624",NA,NA,"RobiEd00",NA,"2531","3137087",NA,"Edmond Robinson","edmond robinson","LB","ATL","28.9","2015","7","232","1992-02-23"
+"12372","6f1bc007-d446-48f2-a6e5-58c5e53df94f","00-0031961",NA,NA,"NzeoMa00","mark-nzeocha-1","2535","2576030",NA,"Mark Nzeocha","mark nzeocha","LB","SFO","31.1","2015","7","236","1990-01-01"
+"12378","d0f9112d-2496-450a-9fc5-d2d01b4d2454","00-0032141",NA,NA,"SwaiGe00","geoff-swaim-1","2545","3046704",NA,"Geoff Swaim","geoff swaim","TE","TEN","27.4","2015","7","246","1993-09-16"
+"12379","5ce96781-4dea-4995-a6ae-7e8ba7acfdbc","00-0031628",NA,NA,"RobeDa00","darryl-roberts-1","2546","2515490",NA,"Darryl Roberts","darryl roberts","CB","DET","30.2","2015","7","247","1990-11-26"
+"12380","76392d70-bbcb-429c-82df-853b72a926de","00-0031630",NA,NA,"KingAk00","akeem-king-1","2548","2509574",NA,"Akeem King","akeem king","CB","FA","28.4","2015","7","249","1992-08-29"
+"12381","e23dc743-ecee-4cf3-a263-69d3da3bae94","00-0032156",NA,NA,"SiemTr00","trevor-siemian-1","2549","2511109",NA,"Trevor Siemian","trevor siemian","QB","NOS","29.1","2015","7","250","1991-12-26"
+"12386","0e7e6cbb-0e88-4a74-b457-1753851e37f3","00-0031806","13953",NA,"BrowMa03",NA,"2588","2570986",NA,"Malcolm Brown","malcolm brown","RB","LAR","27.7","2015",NA,NA,"1993-05-15"
+"12391","a6fe5f18-d78d-4a56-aea2-ef4bed7e647a","00-0032160","14324",NA,"WillTy00",NA,"2583","2587819",NA,"Tyrell Williams","tyrell williams","WR","LVR","29","2015",NA,NA,"1992-02-12"
+"12394","9ae2584a-40c1-4b30-be34-a9567659eacd","00-0031763",NA,NA,NA,NA,"2750","2580216",NA,"DeAndre Carter","deandre carter","WR","CHI","27.8","2015",NA,NA,"1993-04-10"
+"12402","af944a80-eba7-479d-b3b1-73279abdc67a","00-0031731",NA,NA,NA,NA,"2729","2515934",NA,"Corey Grant","corey grant","RB","FA","29.1","2015",NA,NA,"1991-12-19"
+"12417","69bdf41e-3c32-46c1-93b8-e952edf5c61d","00-0032087","14327",NA,NA,NA,"2671","2998120",NA,"Josh Lambo","josh lambo","PK","JAC","30.2","2015",NA,NA,"1990-11-19"
+"12428","8363a880-0f4d-44be-bad7-2815c7c3ea00","00-0031713",NA,NA,"WillXa00",NA,"2668","2508191",NA,"Xavier Williams","xavier williams","DT","CIN","29","2015",NA,NA,"1992-01-18"
+"12429","e0abf267-f265-4682-9bb7-72bbcefda451","00-0031511",NA,NA,"WhitDe01",NA,"2801","2515962",NA,"DeAndrew White","deandrew white","WR","BAL","29.3","2015",NA,NA,"1991-10-16"
+"12437","7af4c94b-529b-4403-ab66-2bfed3fcf0c7","00-0031492","14003",NA,NA,NA,"2747","2473037",NA,"Jason Myers","jason myers","PK","SEA","29.7","2014",NA,NA,"1991-05-12"
+"12443","aa759477-6206-4984-ab9c-eb213abfd020","00-0031787",NA,NA,NA,NA,"2821","3085107",NA,"Jake Kumerow","jake kumerow","WR","FA","29","2017",NA,NA,"1992-02-17"
+"12444","37339e36-741c-4c1c-a9ab-bd89ed866fa0","00-0031900",NA,NA,"SmitRo06",NA,"2892","2512197",NA,"Rod Smith","rod smith","RB","FA","29.1","2015",NA,NA,"1992-01-10"
+"12447","b040e601-ec40-4757-bf3d-71bf64ef99cf","00-0031687","14338","2737","MostRa00",NA,"2749","2576414",NA,"Raheem Mostert","raheem mostert","RB","SFO","28.8","2015",NA,NA,"1992-04-09"
+"12448","872bbe18-ea66-415c-b556-6d15bda05b0e","00-0032007",NA,NA,NA,NA,"2645","2516049",NA,"Quinton Dunbar","quinton dunbar","CB","SEA","28.5","2015",NA,NA,"1992-07-22"
+"12464","48d7bc31-808f-423c-afc8-45c2c5dfa45f","00-0031868","14222",NA,NA,NA,"2673","2577667",NA,"Damiere Byrd","damiere byrd","WR","NEP","28","2015",NA,NA,"1993-01-27"
+"12465","9de98c5e-ee62-4a2b-be93-07287d831e06","00-0031912",NA,NA,"MereCa00",NA,"2699","2520698",NA,"Cameron Meredith","cameron meredith","WR","FA","28.4","2015",NA,NA,"1992-09-21"
+"12471","27e60657-f73d-4125-906d-aa72cc3477dc","00-0031166",NA,NA,"RobeSe00",NA,"2039","17402",NA,"Seth Roberts","seth roberts","WR","FA","29.9","2014",NA,NA,"1991-02-22"
+"12474","07c51c65-489b-4bae-b997-f1a0f35deffe","00-0032162",NA,NA,NA,NA,"2614","2577757",NA,"TY McGill","ty mcgill","DT","PHI","28.2","2015",NA,NA,"1992-11-23"
+"12476","2c259733-ec2c-4e3c-bb7b-34dc0d37dc34","00-0031800",NA,NA,NA,NA,"2711","2565969",NA,"Taylor Heinicke","taylor heinicke","QB","WAS","27.9","2015",NA,NA,"1993-03-15"
+"12479","98a944cf-0fc3-4a0b-9011-490722667d37","00-0031922",NA,NA,"LeexKh00",NA,"2686","3144062",NA,"Khari Lee","khari lee","TE","FA","29","2015",NA,NA,"1992-01-16"
+"12481","fa4ae025-fd66-4752-94fa-63e22ae8abd4","00-0031740",NA,NA,"HewiNe00",NA,"2677","3059880",NA,"Neville Hewitt","neville hewitt","LB","NYJ","27.8","2015",NA,NA,"1993-04-06"
+"12486","461b6e57-a2b0-4648-ab1f-b3ca4b111fe3","00-0031870",NA,NA,"MarlDe00",NA,"2679","2519038",NA,"Dean Marlowe","dean marlowe","S","BUF","28.5","2015",NA,NA,"1992-07-25"
+"12489","b6d2274d-87cf-4427-bddf-ee8a1b4ea652","00-0030010",NA,NA,NA,NA,"1657","16393",NA,"Brandon Copeland","brandon copeland","LB","NEP","29.6","2014",NA,NA,"1991-07-02"
+"12494","b0b804c6-b75b-4497-8f47-86ce924f862a","00-0032081",NA,NA,"DzubNi00",NA,"2655","2518789",NA,"Nick Dzubnar","nick dzubnar","LB","TEN","29.5","2015",NA,NA,"1991-08-15"
+"12505","d6d41a89-a8af-48b9-bf75-561de99a1d87","00-0032009","14498",NA,"HumpAd00",NA,"2822","2576491",NA,"Adam Humphries","adam humphries","WR","TEN","27.6","2015",NA,NA,"1993-06-24"
+"12506","8a7fa9bc-f589-4458-9a58-8ac3432a3df9","00-0031904",NA,NA,"CallBr00",NA,"2860","2515641",NA,"Bryce Callahan","bryce callahan","CB","DEN","29.3","2015",NA,NA,"1991-10-23"
+"12523","d766ee35-8ece-447d-94e6-1d33ba427b02","00-0031796",NA,NA,"ColeJu01",NA,"2572","2577707",NA,"Justin Coleman","justin coleman","CB","DET","27.8","2015",NA,NA,"1993-03-27"
+"12525","fa059382-e52c-40c8-93fd-bd69decdc1c8","00-0030761",NA,NA,"ThomJo04",NA,"2147","17266",NA,"Joe Thomas","joe thomas","LB","DAL","29.7","2014",NA,NA,"1991-05-06"
+"12536","9061a751-bfd4-41f5-a585-9f3b20708b94","00-0031997",NA,NA,"IrviDa00",NA,"3040","2577162",NA,"David Irving","david irving","DT","FA","27.5","2015",NA,NA,"1993-08-18"
+"12544","6e91b25a-4bf4-4a53-a328-69d3e7ef86c1","00-0031844",NA,NA,"EverDe01",NA,"2643","2578692",NA,"Deshazor Everett","deshazor everett","S","WAS","28.9","2015",NA,NA,"1992-02-22"
+"12585","1b016b52-62ba-4da9-9ead-6bad689f8d33","00-0032098",NA,NA,"BrowDa04",NA,"2751","2519013",NA,"Daniel Brown","daniel brown","TE","NYJ","28.7","2015",NA,NA,"1992-05-26"
+"12586","865d8df9-06ec-40c3-8c71-637f9fd0bcbf","00-0031972",NA,NA,"JennDa00",NA,"2602","2577808",NA,"Darius Jennings","darius jennings","WR","FA","28.6","2015",NA,NA,"1992-06-28"
+"12589","5b9acfe7-f166-4a55-85f6-a654799b08dd","00-0031785",NA,NA,"HillTr01",NA,"2826","2525933",NA,"Troy Hill","troy hill","CB","LAR","29.4","2015",NA,NA,"1991-08-29"
+"12596","25e58aee-1b33-4468-9a81-6586426b91d5","00-0031744",NA,NA,"LaCoMa00",NA,"2944","2576179",NA,"Matt LaCosse","matt lacosse","TE","NEP","28.4","2015",NA,NA,"1992-09-21"
+"12608","996a0607-8046-46c2-97a0-b94ff9f5a1c8","00-0030615",NA,NA,NA,NA,"1785","16665",NA,"James Winchester","james winchester","TE","KCC","31.5","2013",NA,NA,"1989-08-06"
+"12610","e9a5c16b-4472-4be9-8030-3f77be7890cb","00-0032950","15520","2352","WentCa00","carson-wentz-1","3161","2573079",NA,"Carson Wentz","carson wentz","QB","PHI","28.1","2016","1","2","1992-12-30"
+"12611","aba8f925-ffbf-4654-bfa7-a25d3d237494","00-0033106","15501","2351",NA,NA,"3163","3046779",NA,"Jared Goff","jared goff","QB","LAR","26.3","2016","1","1","1994-10-14"
+"12612","19e253df-b121-43e4-a222-6df5fa8ad93f","00-0033108",NA,NA,"LyncPa00","paxton-lynch-1","3170","2977881",NA,"Paxton Lynch","paxton lynch","QB","FA","27","2016","1","26","1994-02-12"
+"12615","92c02ef1-8400-4f5a-9420-6458755e14d4","00-0033098",NA,NA,"JoneCa01","cardale-jones-1","3210","2976299",NA,"Cardale Jones","cardale jones","QB","FA","28.3","2016","4","139","1992-09-29"
+"12616","ad2258ab-67f0-41c2-bcf3-f3ba145187dc","00-0033119","15642",NA,"BrisJa00","jacoby-brissett-2","3257","2578570",NA,"Jacoby Brissett","jacoby brissett","QB","IND","28.1","2016","3","91","1992-12-11"
+"12617","573f7acc-376b-4f37-8039-5c4c15c4a508","00-0033104",NA,NA,"KessCo00","cody-kessler-1","3205","2577243",NA,"Cody Kessler","cody kessler","QB","FA","27.7","2016","3","93","1993-05-11"
+"12620","86197778-8d4b-4eba-affe-08ef7be7c70b","00-0033077","15600","2377","PresDa01","dak-prescott-1","3294","2577417",NA,"Dak Prescott","dak prescott","QB","DAL","27.5","2016","4","135","1993-07-29"
+"12621","a8c3bcd7-69d0-4c5e-a876-6b33857942bc","00-0032434",NA,NA,"AlleBr00","brandon-allen-2","3357","2574511",NA,"Brandon Allen","brandon allen","QB","CIN","28.4","2016","6","201","1992-09-05"
+"12623","4d517d8f-fe4d-4c89-9a2a-fee836ba4a71","00-0032436",NA,NA,"DrisJe00","jeff-driskel-1","3362","2574630",NA,"Jeff Driskel","jeff driskel","QB","DEN","27.8","2016","6","207","1993-04-23"
+"12625","bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a","00-0033045","15498","2343","ElliEz00","ezekiel-elliott-1","3164","3051392",NA,"Ezekiel Elliott","ezekiel elliott","RB","DAL","25.5","2016","1","4","1995-07-22"
+"12626","87c481c7-7414-43cc-82df-19ca0c2ae22e","00-0032764","15514","2350","HenrDe00","derrick-henry-2","3198","3043078",NA,"Derrick Henry","derrick henry","RB","TEN","27.1","2016","2","45","1994-01-04"
+"12627","f4992e8f-73f0-43e4-a9ca-c83953fe3f5b","00-0032393",NA,NA,"ProsC.00","cj-prosise-1","3204","2980148",NA,"CJ Prosise","cj prosise","RB","FA","26.7","2016","3","90","1994-05-20"
+"12628","990a689e-200b-4cda-85db-85d6c3af911c","00-0032426",NA,NA,"CollAl00","alex-collins-1","3327","3046409",NA,"Alex Collins","alex collins","RB","SEA","26.4","2016","5","171","1994-08-26"
+"12629","cd705357-f282-4cbf-8f11-391618d981c3","00-0032972","15555",NA,"BookDe00","devontae-booker-1","3209","3122866",NA,"Devontae Booker","devontae booker","RB","LVR","28.7","2016","4","136","1992-05-27"
+"12630","a0b93053-d349-4dd1-a840-24577102699b","00-0033118","15637","2360","DrakKe00","kenyan-drake-1","3242","2979843",NA,"Kenyan Drake","kenyan drake","RB","ARI","27","2016","3","73","1994-01-26"
+"12631","73015642-080b-48a9-b1b5-bfa4a606cfd1","00-0032417",NA,NA,"PerkPa00","paul-perkins-1","3211","2971589",NA,"Paul Perkins","paul perkins","RB","IND","26.2","2016","5","149","1994-11-16"
+"12632","997525cb-5d0d-4f3b-bd56-7488b62627ec","00-0032411",NA,NA,"DixoKe00","kenneth-dixon-1","3208","2971888",NA,"Kenneth Dixon","kenneth dixon","RB","FA","27","2016","4","134","1994-01-21"
+"12634","4b09ab09-1457-4c9d-a99d-6a03d8e76c76","00-0032780","15585","2384","HowaJo00","jordan-howard-1","3306","3060022",NA,"Jordan Howard","jordan howard","RB","PHI","26.2","2016","5","150","1994-11-02"
+"12635","697200ea-cabb-40b8-aeac-e52763310306","00-0032975","15611",NA,"WillJo07","jonathan-williams-2","3312","2980077",NA,"Jonathan Williams","jonathan williams","RB","WAS","27","2016","5","156","1994-02-02"
+"12636","c7d0a740-fcf2-4971-b1b6-43761d984bf9","00-0032782",NA,NA,"SmalWe00","wendell-smallwood-1","3309","3042429",NA,"Wendell Smallwood","wendell smallwood","RB","FA","27","2016","5","153","1994-01-26"
+"12637","86363c46-567e-41d6-a59a-3fed9ca64591","00-0032741","15920",NA,"BarbPe01",NA,"3594","3051902",NA,"Peyton Barber","peyton barber","RB","WAS","26.6","2016",NA,NA,"1994-06-27"
+"12639","442eb96a-deb6-4e73-b65a-a2bb25ffa968","00-0032404",NA,NA,"ErviTy00","tyler-ervin-1","3280","2573974",NA,"Tyler Ervin","tyler ervin","RB","GBP","27.3","2016","4","119","1993-10-07"
+"12640","1bdc067c-6376-4c35-b9f8-cebbb1ad595f","00-0032377",NA,NA,"FergJo02",NA,"3453","2576165",NA,"Josh Ferguson","josh ferguson","RB","FA","27.7","2016",NA,NA,"1993-05-23"
+"12645","2e0badcd-b78c-40ee-a83b-a1bbb36bc545","00-0032951",NA,NA,"TreaLa00","laquon-treadwell-1","3155","3051889",NA,"Laquon Treadwell","laquon treadwell","WR","ATL","25.6","2016","1","23","1995-06-14"
+"12646","6efb8027-b537-4dd1-883f-459450708ad4","00-0032966",NA,NA,"ColeCo00","corey-coleman-1","3177","2978929",NA,"Corey Coleman","corey coleman","WR","FA","26.6","2016","1","15","1994-07-06"
+"12647","095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30","00-0033127","15629","2345","FullWi01","william-fuller-2","3157","3052876",NA,"Will Fuller","will fuller","WR","HOU","26.8","2016","1","21","1994-04-16"
+"12648","c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6","00-0032760",NA,NA,"DoctJo00","josh-doctson-1","3178","2576019",NA,"Josh Doctson","josh doctson","WR","NYJ","28.2","2016","1","22","1992-12-03"
+"12650","76a5edec-5ff7-49fa-a8ec-5768a372279d","00-0033009","15547","2359","BoydTy00","tyler-boyd-1","3225","3045144",NA,"Tyler Boyd","tyler boyd","WR","CIN","26.2","2016","2","55","1994-11-15"
+"12651","c678b91c-53a7-4a29-ae4e-d0bbe964069b","00-0033069",NA,NA,"MillBr03","braxton-miller-1","3203","2570987",NA,"Braxton Miller","braxton miller","WR","FA","28.2","2016","3","85","1992-11-30"
+"12652","90c1756d-1f47-41b7-89fe-b113c9850bc1","00-0032765","15528","2357","ThomMi05","michael-thomas-3","3199","2976316",NA,"Michael Thomas","michael thomas","WR","NOS","27.9","2016","2","47","1993-03-03"
+"12656","7e34053d-00bf-4f3f-a464-329c8f5057d0","00-0032977","15586",NA,"HiggRa00","rashard-higgins-1","3328","3042910",NA,"Rashard Higgins","rashard higgins","WR","CLE","26.3","2016","5","172","1994-10-07"
+"12657","b4e5a9af-6d00-4d51-9bb9-c7d5f69898df","00-0032778",NA,NA,"SharTa00","tajae-sharpe-1","3297","2982828",NA,"Tajae Sharpe","tajae sharpe","WR","FA","26.1","2016","5","140","1994-12-23"
+"12658","1ffc735b-74d8-44d2-ab32-00c5485c799f","00-0032385","15569","2349","ShepSt00","sterling-shepard-1","3200","2976592",NA,"Sterling Shepard","sterling shepard","WR","NYG","28","2016","2","40","1993-02-10"
+"12660","4f724338-aa8c-436d-90b2-45299572c53e","00-0033111",NA,NA,NA,NA,"3278","3048897",NA,"Pharoh Cooper","pharoh cooper","WR","CAR","25.9","2016","4","19","1995-03-07"
+"12665","cadecca8-a102-43a5-9a0c-f7cef0b9a579","00-0032626","15853",NA,"AlliGe01",NA,"3503","3115913",NA,"Geronimo Allison","geronimo allison","WR","DET","27","2016",NA,NA,"1994-01-18"
+"12667","55482edf-8604-4cf6-9a5c-d1124e22ac83","00-0032945",NA,NA,NA,NA,"3846","3115315",NA,"Duke Williams","duke williams","WR","BUF","27.7","2018",NA,NA,"1993-05-13"
+"12673","58ea6518-6fb7-4e5a-a586-7202d4c5f07e","00-0032959",NA,NA,"PeakCh00","charone-peake-1","3396","2576498",NA,"Charone Peake","charone peake","WR","FA","28.3","2016","7","241","1992-10-16"
+"12675","88856dfa-45ce-4b6e-bbf7-4f8413ac89ca","00-0033114",NA,NA,NA,NA,"3652","3123986",NA,"Mike Thomas","mike thomas","WR","CIN","26.5","2016","6","31","1994-08-16"
+"12676","705899da-3c20-4bc3-b5d0-2e6e40655131","00-0033090","15561","2354",NA,NA,"3214","3046439",NA,"Hunter Henry","hunter henry","TE","LAC","26.2","2016","2","4","1994-12-07"
+"12677","90c2a93f-d837-4e1b-b57c-56648903a8db","00-0032392","15581","2361","HoopAu00","austin-hooper-1","3202","3043275",NA,"Austin Hooper","austin hooper","TE","CLE","26.3","2016","3","81","1994-10-29"
+"12678","0df7912d-9e81-47ea-b4f7-d04986df4ee8","00-0033110","15623","2370",NA,NA,"3271","2573401",NA,"Tyler Higbee","tyler higbee","TE","LAR","28.1","2016","4","12","1993-01-01"
+"12680","c731aa8a-778b-4ccd-a19f-517eb66f47b7","00-0032394",NA,NA,"VannNi00","nick-vannett-1","3258","2576399",NA,"Nick Vannett","nick vannett","TE","DEN","27.9","2016","3","94","1993-03-06"
+"12681","47426d59-7af4-4714-8050-a85a0ae70f65","00-0032429",NA,NA,"AdamJe01","jerell-adams-1","3340","2978727",NA,"Jerell Adams","jerell adams","TE","FA","28.1","2016","6","184","1992-12-31"
+"12685","9c18801d-bdaa-4036-9663-24280c763bcf","00-0032599",NA,NA,"PerkJo02",NA,"3668","2578377",NA,"Joshua Perkins","joshua perkins","TE","PHI","27.5","2016",NA,NA,"1993-08-05"
+"12686","1ce88c74-024e-4288-94ee-5dca10362153","00-0033156","15488",NA,NA,NA,"3156","3051389",NA,"Joey Bosa","joey bosa","DE","LAC","25.6","2016","1","3","1995-07-11"
+"12687","89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3","00-0033096",NA,NA,"LawsSh00","shaq-lawson-1","3182","2977679",NA,"Shaq Lawson","shaq lawson","DE","MIA","26.6","2016","1","19","1994-06-17"
+"12688","d97529e5-f1cd-4fe0-8697-4b51bbe52fd4","00-0032378",NA,NA,"BuckDe00","deforest-buckner-1","3172","2971282",NA,"DeForest Buckner","deforest buckner","DT","IND","26.9","2016","1","7","1994-03-17"
+"12690","ddde7b09-faa0-4fc4-a45e-aa38c3905f6d","00-0032952",NA,NA,"SpenNo00","noah-spence-1","3195","2976313",NA,"Noah Spence","noah spence","DE","NOS","27.1","2016","2","39","1994-01-08"
+"12691","2300fe3b-c81f-4786-ae0c-0c229644239d","00-0033073",NA,NA,"OgbaEm00","emmanuel-ogbah-1","3197","2977740",NA,"Emmanuel Ogbah","emmanuel ogbah","DE","MIA","27.2","2016","2","32","1993-11-06"
+"12693","12645147-c0fa-4aff-a395-496f8b9fb275","00-0033122",NA,NA,NA,NA,"3244","2576257",NA,"Shilique Calhoun","shilique calhoun","DE","NEP","28.9","2016","3","12","1992-03-20"
+"12695","6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee","00-0032435",NA,NA,"ZettAn00","anthony-zettel-1","3358","2582150",NA,"Anthony Zettel","anthony zettel","DE","FA","28.5","2016","6","202","1992-08-09"
+"12696","60cc4395-be8e-441f-b6b2-7e74e15f2593","00-0032761",NA,NA,"NkemRo00","robert-nkemdiche-1","3180","3051886",NA,"Robert Nkemdiche","robert nkemdiche","DT","FA","26.4","2016","1","29","1994-09-19"
+"12697","3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd","00-0032889",NA,NA,"RobiAS00","ashawn-robinson-1","3218","3054857",NA,"AShawn Robinson","ashawn robinson","DT","LAR","25.9","2016","2","46","1995-03-21"
+"12698","c02b49d3-ddc1-4ffc-9f40-487199882fa5","00-0032387",NA,NA,"ReedJa02","jarran-reed-1","3220","3115312",NA,"Jarran Reed","jarran reed","DT","SEA","27.1","2016","2","49","1993-12-16"
+"12699","67760ee1-c969-488f-b449-b8c37e7e32bb","00-0033066",NA,NA,"BillAn00","andrew-billings-1","3207","3051775",NA,"Andrew Billings","andrew billings","DT","CLE","25.9","2016","4","122","1995-03-06"
+"12700","014038bd-e9b7-476f-b7bd-bd78a46a9a57","00-0032763",NA,NA,"JohnAu01","austin-johnson-2","3560","2979591",NA,"Austin Johnson","austin johnson","DT","NYG","26.7","2016","2","43","1994-05-08"
+"12701","0bf6b11f-920a-4ced-9a69-0b4afc5df36f","00-0033052","15504",NA,"SmitJa05","jaylon-smith-1","3167","3052896",NA,"Jaylon Smith","jaylon smith","LB","DAL","25.6","2016","2","34","1995-06-14"
+"12702","66e776e7-f354-4939-835b-a23dc889c6ae","00-0032968","15497",NA,"JackMy00","myles-jack-1","3166","3047566",NA,"Myles Jack","myles jack","LB","JAC","25.4","2016","2","36","1995-09-03"
+"12703","cda62c8b-89dd-4c03-a86d-dba70541693a","00-0033058",NA,NA,"RaglRe00","reggie-ragland-1","3176","2979855",NA,"Reggie Ragland","reggie ragland","LB","DET","27.4","2016","2","41","1993-09-24"
+"12705","03af62dd-c843-4790-b2dd-bd5b5897ed94","00-0033147",NA,NA,"LeexDa00","darron-lee-1","3190","3051398",NA,"Darron Lee","darron lee","LB","BUF","26.3","2016","1","20","1994-10-18"
+"12707","ae3bb00f-84e8-439f-ab56-38c6838b8b97","00-0032970",NA,NA,"JenkJo01","jordan-jenkins-2","3251","2977647",NA,"Jordan Jenkins","jordan jenkins","LB","NYJ","26.6","2016","3","83","1994-07-01"
+"12710","9823700a-2d8e-4872-862d-382d69c67a46","00-0032422",NA,NA,"BrotKe00","kentrell-brothers-1","3316","2577354",NA,"Kentrell Brothers","kentrell brothers","LB","FA","28","2016","5","160","1993-02-08"
+"12711","ca53fda9-d20a-4bc7-b8dc-deef28355399","00-0033055",NA,NA,"RamsJa00","jalen-ramsey-1","3160","3045373",NA,"Jalen Ramsey","jalen ramsey","CB","LAR","26.3","2016","1","5","1994-10-24"
+"12712","0da88ee9-26f4-4d59-aa66-1e2dbda05580","00-0032758",NA,NA,"HargVe00","vernon-hargreaves-iii-1","3194","3054955",NA,"Vernon Hargreaves","vernon hargreaves","CB","HOU","25.7","2016","1","11","1995-06-03"
+"12713","9b14942e-0ddc-436c-a6be-5947a39589e5","00-0032389",NA,NA,"AlexMa01","mackensie-alexander-1","3224","3045120",NA,"Mackensie Alexander","mackensie alexander","CB","CIN","27.2","2016","2","54","1993-11-12"
+"12714","81ba31db-e21a-4944-8d0f-4e12cb83e3c4","00-0033084",NA,NA,"FullKe00","kendall-fuller-1","3252","3045465",NA,"Kendall Fuller","kendall fuller","CB","WAS","26","2016","3","84","1995-02-13"
+"12715","72a42703-19b7-417c-87ce-344fd792f5ca","00-0032379",NA,NA,"ApplEl00","eli-apple-1","3189","3040506",NA,"Eli Apple","eli apple","CB","FA","25.5","2016","1","10","1995-08-09"
+"12716","12563365-b4aa-4b85-93a3-b220c8212707","00-0032803",NA,NA,"MillJa02","jalen-mills-1","3388","2976540",NA,"Jalen Mills","jalen mills","S","PHI","26.8","2016","7","233","1994-04-06"
+"12717","741c1ab2-378b-45ce-86c7-533e6a031f22","00-0032888",NA,NA,NA,NA,"3191","2976639",NA,"Karl Joseph","karl joseph","S","CLE","27.4","2016","1","14","1993-09-08"
+"12718","656b68e1-651d-4596-8f6d-c97b4e4d9536","00-0032939",NA,NA,"BellVo00","vonn-bell-2","3230","3051388",NA,"Vonn Bell","vonn bell","S","CIN","26.1","2016","2","61","1994-12-12"
+"12719","3ec4f630-592c-4848-a76c-c30ecc090ecb","00-0033083",NA,NA,"ThomDa05","darian-thompson-1","3240","2573317",NA,"Darian Thompson","darian thompson","S","DAL","27.4","2016","3","71","1993-09-22"
+"12720","708e045b-17fd-4f81-87e3-8686b165a278","00-0032454",NA,NA,"KearJa00","jayron-kearse-1","3399","3045130",NA,"Jayron Kearse","jayron kearse","S","FA","27","2016","7","244","1994-02-11"
+"12731","bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e","00-0031782",NA,NA,NA,NA,"2980","2576643",NA,"Eli Rogers","eli rogers","WR","FA","28.1","2015",NA,NA,"1992-12-23"
+"12733","c008f3d4-7141-4d58-aa63-cb86088b0c0b","00-0031999",NA,NA,NA,NA,"2839","2574282",NA,"Justin March","justin march","LB","DAL","27.6","2015",NA,NA,"1993-07-05"
+"12734","13c4b449-65e4-4a3e-9152-85e9cbb2b8c6","00-0033072",NA,NA,"FloyLe00","leonard-floyd-1","3174","3043136",NA,"Leonard Floyd","leonard floyd","LB","LAR","28.4","2016","1","9","1992-09-08"
+"12735","3b1227f6-05c9-421f-a2c1-4c8f1368b80b","00-0032759",NA,NA,"RankSh00","sheldon-rankins-1","3188","2970204",NA,"Sheldon Rankins","sheldon rankins","DT","NOS","26.8","2016","1","12","1994-04-02"
+"12736","cc9c2006-e72b-4073-afcc-69c187cb28b7","00-0032382",NA,NA,"NealKe01","keanu-neal-1","3181","3054962",NA,"Keanu Neal","keanu neal","S","ATL","25.5","2016","1","17","1995-07-26"
+"12737","c967809a-7c88-447d-9d9f-6aebfc8370f7","00-0033107",NA,NA,"JackWi02","william-jackson-iii-1","3184","3061106",NA,"William Jackson","william jackson","CB","CIN","28.1","2016","1","24","1993-01-01"
+"12738","f40995fc-bd95-41f1-b9ef-4ab938c3aafa","00-0033103",NA,NA,"BurnAr00","artie-burns-1","3192","3051921",NA,"Artie Burns","artie burns","CB","CHI","25.8","2016","1","25","1995-05-01"
+"12739","d848e4e6-ff3e-421c-9bd3-c2f62a16efd4","00-0033120",NA,NA,"ClarKe01","kenneth-clark-1","3186","3122752",NA,"Kenny Clark","kenny clark","DT","GBP","25.3","2016","1","27","1995-10-04"
+"12740","73e84e89-4bd3-480e-b862-68502c8c295a","00-0032967",NA,NA,"ButlVe00","vernon-butler-1","3183","2971883",NA,"Vernon Butler","vernon butler","DT","BUF","26.6","2016","1","30","1994-06-14"
+"12741","ef7b5ce8-a929-46be-b9f3-328752c6d125","00-0032762",NA,NA,"JoneCh09","chris-jones-8","3558","3044859",NA,"Chris Jones","chris jones","DT","KCC","26.6","2016","2","37","1994-07-03"
+"12742","e6bcb4f1-c2c8-4dd9-b826-af01182875f2","00-0033050",NA,NA,"HowaXa00","xavien-howard-1","3215","2978935",NA,"Xavien Howard","xavien howard","CB","MIA","27.6","2016","2","38","1993-07-04"
+"12743","08c01429-e747-48f1-b38c-8e712fa53c8e","00-0032386",NA,NA,"CorrKa00","kamalei-correa-1","3216","3042874",NA,"Kamalei Correa","kamalei correa","LB","JAC","26.8","2016","2","42","1994-04-27"
+"12744","852b00dd-fd1c-4edb-809d-912a6472cd07","00-0033046",NA,NA,NA,NA,"3217","3115914",NA,"Jihad Ward","jihad ward","DE","BAL","26.9","2016","2","13","1994-03-11"
+"12745","a2a587d3-2971-41f5-a5d4-828d9cf1494e","00-0032388","15608",NA,"JoneDe01","deion-jones-1","3222","2976545",NA,"Deion Jones","deion jones","LB","ATL","26.2","2016","2","52","1994-11-04"
+"12746","6aa53b87-fcbf-4edb-b61a-460580f93e5d","00-0032767",NA,NA,"CravSu00","sua-cravens-1","3223","3043215",NA,"Sua Cravens","sua cravens","S","FA","25.6","2016","2","53","1995-07-07"
+"12748","dfb0b126-9c75-41d3-9371-04065db7506a","00-0033053",NA,NA,"DaviSe00","sean-davis-1","3228","2976210",NA,"Sean Davis","sean davis","S","PIT","27.3","2016","2","58","1993-10-23"
+"12749","342fe758-e8d0-4baf-af71-1fa568197837","00-0032390",NA,NA,"JoneCy00","cyrus-jones-2","3229","2979849",NA,"Cyrus Jones","cyrus jones","CB","FA","27.2","2016","2","60","1993-11-29"
+"12750","0db6df51-945b-4123-a790-0ba9d0473415","00-0032890",NA,NA,"BradJa00","james-bradberry-1","3231","2572841",NA,"James Bradberry","james bradberry","CB","NYG","27.5","2016","2","62","1993-08-04"
+"12751","56c81bc7-72ac-4356-a737-b8010f931b56","00-0033064",NA,NA,"GotsAd00","adam-gotsis-1","3232","2971498",NA,"Adam Gotsis","adam gotsis","DE","JAC","28.4","2016","2","63","1992-09-23"
+"12752","c909532a-693e-4e8f-b853-fbf41037c100","00-0033132",NA,NA,"ByarKe01","kevin-byard-1","3233","2574056",NA,"Kevin Byard","kevin byard","S","TEN","27.5","2016","3","64","1993-08-17"
+"12753","ed2317f2-1cc5-4a84-a46e-7423a9a1c730","00-0033129",NA,NA,"NassCa00","carl-nassib-1","3234","2614825",NA,"Carl Nassib","carl nassib","DE","LVR","27.8","2016","3","65","1993-04-12"
+"12754","54f13aa1-4a2f-46a3-99ef-743c1d3ee234","00-0033131",NA,NA,"CollMa00","maliek-collins-1","3236","3040471",NA,"Maliek Collins","maliek collins","DT","LVR","25.8","2016","3","67","1995-04-08"
+"12755","c7fccdf9-dd52-4483-862b-d58a94560135","00-0033124",NA,NA,"RedmWi00","will-redmond-1","3237","2971364",NA,"Will Redmond","will redmond","S","GBP","27.1","2016","3","68","1993-12-28"
+"12756","41524c86-8ab6-42e9-871b-a00e29cd2705","00-0033123","15579",NA,"NgakYa00","yannick-ngakoue-1","3238","3053044",NA,"Yannick Ngakoue","yannick ngakoue","DE","BAL","25.8","2016","3","69","1995-03-31"
+"12757","dac819b2-245f-4845-a73e-b6f92fbe3abb","00-0033117",NA,NA,"KaufBr01","bronson-kaufusi-1","3239","2980444",NA,"Bronson Kaufusi","bronson kaufusi","LB","GBP","29.6","2016","3","70","1991-07-06"
+"12758","ccfcbd2c-6e35-49b9-b131-ba2143665260","00-0033093",NA,NA,"BullJo00","jonathan-bullard-1","3241","2980097",NA,"Jonathan Bullard","jonathan bullard","DE","SEA","27.3","2016","3","72","1993-10-22"
+"12760","cbce4c7c-b22f-48de-b653-cdc19f9a6320","00-0032891",NA,NA,"WorlDa00","daryl-worley-1","3246","3042436",NA,"Daryl Worley","daryl worley","CB","LVR","25.9","2016","3","77","1995-02-22"
+"12762","c44b31cd-0480-4aa0-b500-12e9ba0765ac","00-0032892",NA,NA,"VigiNi00","nick-vigil-1","3254","2971816",NA,"Nick Vigil","nick vigil","LB","LAC","27.4","2016","3","87","1993-08-20"
+"12763","d073c3c0-b9b0-4382-84d0-5de88a427ad6","00-0032955",NA,NA,"FackKy00","kyler-fackrell-1","3255","2574229",NA,"Kyler Fackrell","kyler fackrell","LB","NYG","29.2","2016","3","88","1991-11-25"
+"12764","3f8e4972-2361-4939-b5e3-c5f6c63b9f68","00-0033109",NA,NA,"HargJa00",NA,"3256","2983055",NA,"Javon Hargrave","javon hargrave","DT","PHI","28","2016","3","89","1993-02-07"
+"12765","cdb10720-0d41-4cb6-9fb8-c00713754a1e",NA,NA,NA,"WillBr07","brandon-williams-10","1696","2972286",NA,"Brandon Williams","brandon williams","CB","FA","28.4","2016","3","92","1992-09-09"
+"12767","2df474e5-7117-4650-8d53-34b3fd0f1bbb","00-0032971",NA,NA,"SimmJu00","justin-simmons-1","3262","2969860",NA,"Justin Simmons","justin simmons","S","DEN","27.2","2016","3","98","1993-11-19"
+"12768","82a70525-35cd-4389-a5d1-3b0f11f05a28","00-0033125","15650",NA,"SchoJo00","joe-schobert-1","3206","2977819",NA,"Joe Schobert","joe schobert","LB","JAC","27.2","2016","4","99","1993-11-06"
+"12770","1880777d-9908-4a32-a492-264b4fec967d","00-0032770",NA,NA,"YounTa01","tavon-young-1","3266","2976244",NA,"Tavon Young","tavon young","CB","BAL","26.9","2016","4","104","1994-03-14"
+"12771","82fcb439-d5da-4f6b-a68c-17778fe19ce4","00-0033010",NA,NA,"DayxSh00","sheldon-day-1","3265","2976194",NA,"Sheldon Day","sheldon day","DT","FA","26.6","2016","4","103","1994-07-01"
+"12772","16e4ffec-959d-4210-8702-36c0bf20dda5","00-0033038",NA,NA,"MurrEr00","eric-murray-1","3268","2970716",NA,"Eric Murray","eric murray","S","HOU","27.1","2016","4","106","1994-01-07"
+"12773","0b504d67-639b-4ba8-979a-498a3086257b","00-0032398",NA,NA,"MoorCh00","chris-moore-4","3269","2576581",NA,"Chris Moore","chris moore","WR","BAL","27.6","2016","4","107","1993-06-16"
+"12774","981cfb99-ff6f-452e-806c-116f56a484a5","00-0033121",NA,NA,"GoodB.00","bj-goodson-1","3270","2576489",NA,"BJ Goodson","bj goodson","LB","CLE","27.7","2016","4","109","1993-05-29"
+"12775","479b4819-3377-4255-9156-c1ce82cbf1d4","00-0032772",NA,NA,"SmitRy00",NA,"3559","2574666",NA,"Ryan Smith","ryan smith","CB","TBB","27.4","2016","4","108","1993-09-07"
+"12776","4419b655-867f-436b-8233-6d45f4dfef77","00-0032399",NA,NA,"KillMi00",NA,"3272","2575164",NA,"Miles Killebrew","miles killebrew","S","DET","27.7","2016","4","111","1993-05-10"
+"12778","6e16ec27-2cd9-49b6-848a-df17d654683d","00-0032773",NA,NA,"KwiaNi00","nick-kwiatkoski-1","3274","2581818",NA,"Nick Kwiatkoski","nick kwiatkoski","LB","LVR","27.7","2016","4","113","1993-05-26"
+"12779","25a643a9-3b59-4739-8430-2713a818fb69","00-0032401",NA,NA,"CampDe00","devondre-campbell-1","3276","3040180",NA,"DeVondre Campbell","devondre campbell","LB","ARI","27.6","2016","4","115","1993-07-01"
+"12780","a72ab12a-751b-4a0d-9f9d-a44d2510ac23","00-0032402",NA,NA,"RidgHa00","hassan-ridgeway-1","3277","2971725",NA,"Hassan Ridgeway","hassan ridgeway","DT","PHI","26.2","2016","4","116","1994-11-02"
+"12781","5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9","00-0032403",NA,NA,"BurrJu00","juston-burris-1","3279","2577740",NA,"Juston Burris","juston burris","S","CAR","27.5","2016","4","118","1993-08-04"
+"12782","08d27d1a-e039-4ccc-9ba7-65a22f6002fd","00-0033051",NA,NA,"OnyeDa00",NA,"3281","4002046",NA,"David Onyemata","david onyemata","DT","NOS","28.2","2016","4","120","1992-11-13"
+"12783","abb612d4-f5b9-4644-b9ed-f13fa0da7e98","00-0032774",NA,NA,"BushDe00","deon-bush-1","3284","2969944",NA,"Deon Bush","deon bush","S","CHI","27.5","2016","4","124","1993-08-14"
+"12785","46b16198-116f-4913-85db-2bc21462bd66","00-0032775","15665",NA,"RobiDe01","demarcus-robinson-3","3286","3043116",NA,"Demarcus Robinson","demarcus robinson","WR","KCC","26.4","2016","4","126","1994-09-21"
+"12786","27a541bc-47b6-4185-aa3d-6cb194666dbe","00-0032776",NA,NA,"HallDe02",NA,"3287","2986767",NA,"Deiondre Hall","deiondre hall","CB","FA","26.7","2016","4","127","1994-05-31"
+"12787","822e1946-3df1-4a25-b967-291a0c435cf5","00-0033076",NA,NA,"KindDe00","derrick-kindred-1","3289","2971550",NA,"Derrick Kindred","derrick kindred","S","FA","27.1","2016","4","129","1993-12-15"
+"12788","0392b852-2783-4ce4-ad39-dc8661a5be3d","00-0032408","15613",NA,"MartBl01","blake-martinez-1","3291","2978273",NA,"Blake Martinez","blake martinez","LB","NYG","27.1","2016","4","131","1994-01-09"
+"12790","f8c2e532-8de2-4c8b-85bf-ed2e24c3b273","00-0032410",NA,NA,"RobiRa00","rashard-robinson-1","3293","3042718",NA,"Rashard Robinson","rashard robinson","CB","DAL","25.5","2016","4","133","1995-07-23"
+"12791","0df44cfb-8dab-4fc1-8556-108505a4b428","00-0032412",NA,NA,"LowrDe00","dean-lowry-1","3295","2974348",NA,"Dean Lowry","dean lowry","DE","GBP","26.6","2016","4","137","1994-06-09"
+"12792","a2451bf7-83dd-496c-b527-c14d8d518598","00-0033080",NA,NA,"DevaSe00",NA,"3296","2566659",NA,"Seth DeValve","seth devalve","TE","ARI","28","2016","4","138","1993-01-29"
+"12794","e8fa43ed-ae19-4603-b69c-a555664bd368","00-0032413",NA,NA,"BlaiRo00","ronald-blair-1","3299","2567711",NA,"Ronald Blair","ronald blair","DE","SFO","28","2016","5","142","1993-01-21"
+"12795","99d79bb9-45aa-4c64-99aa-a92ba2c278af","00-0032415",NA,NA,"JudoMa00",NA,"3303","3961466",NA,"Matt Judon","matt judon","LB","BAL","28.5","2016","5","146","1992-08-15"
+"12796","c187d2b3-5d96-4035-a166-db6689b463bf","00-0032416",NA,NA,"JeffQu00","quinton-jefferson-1","3304","2577078",NA,"Quinton Jefferson","quinton jefferson","DT","BUF","27.8","2016","5","147","1993-03-31"
+"12797","0777efdd-14bf-4561-bbb4-20f926fe115c","00-0032781",NA,NA,NA,NA,"3308","2976263",NA,"Matt Ioannidis","matt ioannidis","DT","WAS","27.1","2016","5","13","1994-01-11"
+"12799","44d917f8-d9e4-4b12-a107-0330156a92dd","00-0032783",NA,NA,"SimsLe00",NA,"3313","2575171",NA,"LeShaun Sims","leshaun sims","CB","CIN","27.4","2016","5","157","1993-09-18"
+"12800","bc175901-4a1f-4132-abb4-e49cc7d35e12","00-0032423",NA,NA,"DaviTr03","trevor-davis-1","3319","2573343",NA,"Trevor Davis","trevor davis","WR","WAS","27.6","2016","5","163","1993-07-04"
+"12801","01d8aee3-e1c4-4988-970a-8c0c2d08bd83","00-0033040","15802","2390","HillTy00",NA,"3321","3116406",NA,"Tyreek Hill","tyreek hill","WR","KCC","26.9","2016","5","165","1994-03-01"
+"12802","42bb4895-bdfb-40e2-8119-f5b06611bf1b","00-0032424",NA,NA,"ReadD.00","dj-reader-1","3322","2977670",NA,"DJ Reader","dj reader","DT","CIN","26.6","2016","5","166","1994-07-01"
+"12803","b6fa8c3c-c729-4178-8e9c-c7e784a872c1","00-0032786",NA,NA,"ChriMa00",NA,"3323","3960454",NA,"Marqui Christian","marqui christian","S","CHI","26.3","2016","5","167","1994-10-27"
+"12805","5a0c79a3-fd9e-4914-b3e1-27aae59d86fe","00-0032895",NA,NA,NA,NA,"3331","2971929",NA,"Jatavis Brown","jatavis brown","LB","FA","27","2016","5","38","1994-02-18"
+"12806","2c35ed5f-7317-4776-8ee7-0438e0286508","00-0032956",NA,NA,"JanoAn00","andy-janovich-1","3332","2974317",NA,"Andy Janovich","andy janovich","RB","CLE","27.7","2016","6","176","1993-05-23"
+"12807","02fc59d0-8a66-431f-97fc-21fdc096eb14","00-0033112",NA,NA,NA,NA,"3333","2580330",NA,"Temarrick Hemingway","temarrick hemingway","TE","WAS","27.5","2016","6","2","1993-07-30"
+"12812","bd6ca667-99e9-42ea-9be7-a680945eece9","00-0032789",NA,NA,"BondDe00","devante-bond-1","3339","3116368",NA,"Devante Bond","devante bond","LB","FA","27.6","2016","6","183","1993-07-03"
+"12813","43ccb78e-353d-4d0b-ac51-4103415a568c","00-0032790",NA,NA,"HousDe00",NA,"3341","2566034",NA,"DeAndre Houston-Carson","deandre houston-carson","S","CHI","27.8","2016","6","185","1993-04-13"
+"12814","5de11f0b-8da9-42ba-9a93-db7f0a58543b","00-0032791","15680",NA,"GranJa00","jakeem-grant-1","3342","2577641",NA,"Jakeem Grant","jakeem grant","WR","MIA","28.3","2016","6","186","1992-10-30"
+"12815","e1c506bd-9e36-45e7-b2b9-fff6a9728a06","00-0032792",NA,NA,"SudfNa00","nate-sudfeld-1","3343","2979501",NA,"Nate Sudfeld","nate sudfeld","QB","PHI","27.3","2016","6","187","1993-10-07"
+"12817","6445ca00-93b4-46d8-8ac6-451ae70a75f5","00-0033047",NA,NA,"BrowAn02","anthony-brown-6","3345","2977756",NA,"Anthony Brown","anthony brown","CB","DAL","27.1","2016","6","189","1993-12-15"
+"12819","bfd0c6e3-dc98-4280-bd6a-f82902c0f46b","00-0032431",NA,NA,"RudoJa00","jake-rudock-1","3347","2582424",NA,"Jake Rudock","jake rudock","QB","MIA","28","2016","6","191","1993-01-21"
+"12821","e1754596-4764-4686-8359-dc53fdabbd1d","00-0032793",NA,NA,"CounBl00","blake-countess-1","3352","2576229",NA,"Blake Countess","blake countess","S","PHI","27.5","2016","6","196","1993-08-08"
+"12822","c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf","00-0032794",NA,NA,NA,NA,"3353","2974365",NA,"Dan Vitale","dan vitale","RB","NEP","27.3","2016","6","22","1993-10-26"
+"12823","7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4","00-0032897",NA,NA,NA,NA,"3354","2576450",NA,"Derek Watt","derek watt","RB","PIT","28.2","2016","6","23","1992-11-07"
+"12824","fa6b16fe-d3cd-4296-a0e6-03ad13d27a57","00-0032795",NA,NA,"CoreCo00","cody-core-1","3355","2980378",NA,"Cody Core","cody core","WR","NYG","26.8","2016","6","199","1994-04-17"
+"12826","978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5","00-0032797",NA,NA,"LucaJo00","jordan-lucas-1","3360","2979595",NA,"Jordan Lucas","jordan lucas","S","CHI","27.5","2016","6","204","1993-08-02"
+"12828","bcbbd7af-5a61-41f2-bae6-1e034755e7ef","00-0032437",NA,NA,"GrugKa00",NA,"3363","3050851",NA,"Kamu Grugier-Hill","kamu grugier-hill","LB","MIA","26.7","2016","6","208","1994-05-16"
+"12829","32884cc4-ff90-42d0-b02b-f9a7df6ce6fb","00-0032438",NA,NA,"CanaMa00","maurice-canady-1","3364","2979655",NA,"Maurice Canady","maurice canady","CB","DAL","26.7","2016","6","209","1994-05-26"
+"12830","a6493c08-f70e-4aef-ab07-914625b9c047","00-0033048",NA,NA,"FrazKa00","kavon-frazier-1","3367","2972505",NA,"Kavon Frazier","kavon frazier","S","MIA","26.5","2016","6","212","1994-08-11"
+"12831","f6d7cf0f-72d2-473f-a44b-4a253587ca0f","00-0032442",NA,NA,"RobeEl00","elandon-roberts-1","3369","2987743",NA,"Elandon Roberts","elandon roberts","LB","MIA","26.8","2016","6","214","1994-04-22"
+"12832","b6ec1773-309e-422c-b82c-b55a557031d6","00-0033049",NA,NA,"JackDa01",NA,"3371","2980197",NA,"Darius Jackson","darius jackson","RB","FA","27.2","2016","6","216","1993-12-01"
+"12833","ec2db5f2-ffec-4ece-9ca9-7a860c4880b6","00-0033054",NA,NA,NA,NA,"3372","2990959",NA,"Rico Gathers","rico gathers","TE","FA","27.1","2016","6","42","1994-01-07"
+"12834","e431a42b-5abe-49de-9c8c-f143f393591c","00-0032942",NA,NA,"SeymKe00","kevon-seymour-1","3374","2971603",NA,"Kevon Seymour","kevon seymour","CB","PHI","27.2","2016","6","218","1993-11-30"
+"12835","8a214c9b-8c31-48d0-a83a-039ec6ddbd9d","00-0032958",NA,NA,"ParkWi01",NA,"3373","2971248",NA,"Will Parks","will parks","S","DEN","26.5","2016","6","219","1994-07-29"
+"12840","e93e7aee-b38f-43d1-ab96-6eeb7c6f1392","00-0032800",NA,NA,"WoodJo00",NA,"3381","2567970",NA,"Jonathan Woodard","jonathan woodard","DE","FA","27.4","2016","7","226","1993-09-19"
+"12841","6ef5045f-9215-4354-a1af-3f86e4c4a03d","00-0032448",NA,NA,"WeatSt00","stephen-weatherly-1","3382","2972362",NA,"Stephen Weatherly","stephen weatherly","DE","CAR","26.9","2016","7","227","1994-03-19"
+"12842","f45835c5-aa9e-4e32-b545-20d1e322fe8f","00-0032943",NA,NA,"DixoRi00","riley-dixon-1","3383","2577619",NA,"Riley Dixon","riley dixon","PN","NYG","27.4","2016","7","228","1993-08-24"
+"12844","d57ef862-8cb9-4f27-a294-f86eb26b6cce","00-0032449",NA,NA,NA,NA,"3390","3061740",NA,"Lachlan Edwards","lachlan edwards","PN","LAC","28.8","2016","7","14","1992-04-27"
+"12845","30ff46bc-a039-4af7-9050-81af98901a3e","00-0032450",NA,NA,"WashDw00","dwayne-washington-1","3391","3002265",NA,"Dwayne Washington","dwayne washington","RB","NOS","26.8","2016","7","236","1994-04-24"
+"12850","94001c44-9eea-4d2b-a766-079ddcb2e8b0","00-0032807",NA,NA,"FejeCl00","clayton-fejedelem-1","3400","3042455",NA,"Clayton Fejedelem","clayton fejedelem","S","MIA","27.7","2016","7","245","1993-06-02"
+"12851","b217c699-2eb4-4c60-9d7f-2df8e4232009","00-0032366",NA,NA,"MataTy00","tyler-matakevich-1","3401","2976249",NA,"Tyler Matakevich","tyler matakevich","LB","BUF","28.1","2016","7","246","1992-12-22"
+"12854","897fc741-34bd-4f34-a1ed-125d56805b70","00-0032809",NA,NA,"WalkJo01","joe-walker-3","3406","3043184",NA,"Joe Walker","joe walker","LB","SFO","28.1","2016","7","251","1992-12-11"
+"12857","c7b7d27f-97c3-4c12-95c4-36205175c959","00-0032940","15806","2382",NA,NA,"3300","2577654",NA,"DeAndre Washington","deandre washington","RB","MIA","27.9","2016","5","4","1993-02-22"
+"12859","5cb0bf9c-03b4-4201-97c5-a59c6db50841","00-0032725",NA,NA,"AndeSt01",NA,"3496","2576854",NA,"Stephen Anderson","stephen anderson","TE","LAC","28","2016",NA,NA,"1993-01-30"
+"12860","203b60aa-cb94-499c-a4ca-d3c6b94dddc4","00-0032726","15756","2531",NA,NA,"3451","2971573",NA,"Kaimi Fairbairn","kaimi fairbairn","PK","HOU","27","2016",NA,NA,"1994-01-29"
+"12868","d76c8e95-7c6e-4def-9fd9-d813df18b3b8","00-0032661",NA,NA,"BrauBe00",NA,"3465","2969241",NA,"Ben Braunecker","ben braunecker","TE","FA","27","2016",NA,NA,"1994-02-07"
+"12871","39d12962-65a4-4107-8924-56f48fce31ef","00-0032577",NA,NA,"FostD.01",NA,"3488","2978124",NA,"DJ Foster","dj foster","RB","ARI","27.2","2016",NA,NA,"1993-11-22"
+"12873","c57b1184-e381-40cc-b603-f703e10d3fad","00-0032707",NA,NA,NA,NA,"3702","2982761",NA,"Andy Jones","andy jones","WR","FA","26.6","2016",NA,NA,"1994-06-28"
+"12887","6a65641c-5ee2-44e3-8a75-7f98887b40ae","00-0032371",NA,NA,NA,NA,"3657","2575408",NA,"Rob Kelley","rob kelley","RB","FA","28.3","2016",NA,NA,"1992-10-03"
+"12888","f125395e-820f-40d7-9775-ac101292719d","00-0032518",NA,NA,NA,NA,"3473","3057899",NA,"Justin Zimmer","justin zimmer","DT","BUF","28.3","2016",NA,NA,"1992-10-23"
+"12890","44d9bb75-f947-406c-b847-6b11684a07c1","00-0032728",NA,NA,NA,NA,"3730","2586703",NA,"Tevin Jones","tevin jones","WR","FA","28.1","2016",NA,NA,"1992-12-26"
+"12898","75dfd9cc-5419-49e1-bade-0632d03ca4b4","00-0032319",NA,NA,NA,NA,"3041","3936647",NA,"Ross Travis","ross travis","TE","NYJ","28.1","2015",NA,NA,"1993-01-09"
+"12906","0a4980fc-0ffc-45b4-a2a9-f9d38334618f","00-0032525",NA,NA,"WilsJa00",NA,"3550","2970661",NA,"Jarrod Wilson","jarrod wilson","S","JAC","27","2016",NA,NA,"1994-02-09"
+"12910","3cd103cf-cc2e-458e-94bc-a7a7ce1632c0","00-0032320",NA,NA,NA,NA,"3144","4010714",NA,"Erik Harris","erik harris","S","LVR","30.8","2015",NA,NA,"1990-04-02"
+"12912","c78c299b-7c73-40fc-9155-2ede7f9849c7","00-0033025","16120",NA,"RichJa01",NA,"3868","2972091",NA,"Jalen Richard","jalen richard","RB","LVR","27.3","2016",NA,NA,"1993-10-15"
+"12913","6bb4d6f8-c8fb-4ca7-a416-a7010526114d","00-0032543",NA,NA,"EricAl01",NA,"3433","2977800",NA,"Alex Erickson","alex erickson","WR","CIN","28.2","2016",NA,NA,"1992-11-06"
+"12916","0ee05dd7-e99e-43c8-ba2b-0922be1d8be1","00-0032935",NA,NA,"HoltJo00",NA,"3476","3056906",NA,"Johnny Holton","johnny holton","WR","NYG","29.4","2016",NA,NA,"1991-08-22"
+"12917","c1ca7e3d-f072-41c7-8017-53401dbdd4d4","00-0032362",NA,NA,"HarrMa05",NA,"3650","2576868",NA,"Maurice Harris","maurice harris","WR","FA","28.2","2016",NA,NA,"1992-11-11"
+"12921","b103b096-6be9-4f87-9ae4-5d217f560685","00-0032881",NA,NA,"LewiTo00",NA,"3614","2574918",NA,"Tommylee Lewis","tommylee lewis","WR","FA","28.3","2016",NA,NA,"1992-10-24"
+"12923","971fc9e5-bebb-4a2c-a822-8c52f92a3d07","00-0032918",NA,NA,NA,NA,"3832","4012556",NA,"CJ Ham","cj ham","RB","MIN","27.5","2016",NA,NA,"1993-07-22"
+"12929","5a9401fc-e43e-43e8-9e63-dadecb12491b","00-0033164",NA,NA,"PopeTr00",NA,"3934","2983319",NA,"Troymaine Pope","troymaine pope","RB","FA","27.2","2016",NA,NA,"1993-11-29"
+"12930","e81fb788-1478-4936-ae12-f6ed7ec23476","00-0032688","15688","2523","AndeRo04",NA,"3423","2574808",NA,"Robby Anderson","robby anderson","WR","CAR","27.7","2016",NA,NA,"1993-05-09"
+"12934","958c9833-2e55-411a-8e0e-ecc229bbeb14","00-0032355",NA,NA,"RogeCh02",NA,"3582","2983209",NA,"Chester Rogers","chester rogers","WR","TEN","27.1","2016",NA,NA,"1994-01-12"
+"12938","901c84c7-ef46-4c9f-9941-ac8becc02986","00-0032596",NA,NA,"PoolBr01",NA,"3669","2980115",NA,"Brian Poole","brian poole","CB","NYJ","28.3","2016",NA,NA,"1992-10-20"
+"12940","64d8dddf-b3fe-4146-8d08-36e9c0b6eede","00-0032628",NA,NA,"BricKe00",NA,"3716","2971881",NA,"Kentrell Brice","kentrell brice","S","FA","26.5","2016",NA,NA,"1994-08-11"
+"12948","b53384f0-6eb8-4d50-80f5-a2f955183317","00-0032655",NA,NA,"OkwaRo01",NA,"3502","2980147",NA,"Romeo Okwara","romeo okwara","DE","DET","25.6","2016",NA,NA,"1995-06-17"
+"12950","30f9ff1e-e66c-40b4-b6a0-46186de3b932","00-0032727",NA,NA,"HeatJo00",NA,"3446","2576267",NA,"Joel Heath","joel heath","DE","DEN","27.6","2016",NA,NA,"1993-06-18"
+"12952","9aa0b292-f4ad-4517-83e9-717567edec19","00-0032574",NA,NA,"PierMi00",NA,"3681","2972144",NA,"Michael Pierce","michael pierce","DT","MIN","28.2","2016",NA,NA,"1992-11-06"
+"12955","7c7b5515-7786-4e24-9ce0-34e6a8bd5727","00-0031484",NA,NA,NA,NA,"3048","2531358",NA,"Chris Manhertz","chris manhertz","TE","CAR","28.8","2016",NA,NA,"1992-04-10"
+"12956","c4cf84d0-6022-4ac1-a9ba-85587921c53f","00-0032569","16026","2522","LutzWi00",NA,"3678","2985659",NA,"Wil Lutz","wil lutz","PK","NOS","26.6","2016",NA,NA,"1994-07-07"
+"12957","f12ecfb0-085f-42d6-b063-97f0bc4fd5ee","00-0032875",NA,NA,"CrawKe02",NA,"3426","2979612",NA,"Ken Crawley","ken crawley","CB","NOS","28","2016",NA,NA,"1993-02-08"
+"12958","e7b9abe1-2a5f-4029-90f5-7fd174750093","00-0032998",NA,NA,"NorrJa00",NA,"3513","2575997",NA,"Jared Norris","jared norris","LB","WAS","27.5","2016",NA,NA,"1993-07-19"
+"12964","5a422c26-d686-4ad2-af10-d7d691150e27","00-0032734",NA,NA,"ScarBr00",NA,"3734","2576885",NA,"Brennan Scarlett","brennan scarlett","LB","HOU","27.5","2016",NA,NA,"1993-07-31"
+"12966","0c042513-aba2-461c-ae16-db4bf83833fa","00-0031914",NA,NA,NA,NA,"3000","2579622",NA,"Olsen Pierre","olsen pierre","DT","FA","29.4","2016",NA,NA,"1991-08-27"
+"12970","2967c556-a7b2-407a-8013-cee8d99b41cf","00-0032517",NA,NA,"BoddBr01",NA,"3474","2970694",NA,"Briean Boddy-Calhoun","briean boddy-calhoun","CB","FA","28","2016",NA,NA,"1993-01-21"
+"12974","784b55b7-2822-4f38-9daa-a704151d1b35","00-0030023",NA,NA,NA,NA,"1643","16179",NA,"Jordan Dangerfield","jordan dangerfield","S","PIT","30.1","2015",NA,NA,"1990-12-25"
+"12976","9bc107dc-1920-49db-b009-436d1a77955d","00-0032933",NA,NA,NA,NA,"3838","3056354",NA,"Antonio Hamilton","antonio hamilton","CB","KCC","28","0",NA,NA,"1993-01-24"
+"12978","6d62aaa2-fe41-4672-941f-7314a0b9b367","00-0031357",NA,NA,NA,NA,"2869","17474",NA,"CJ Goodwin","cj goodwin","CB","DAL","31","2015",NA,NA,"1990-02-04"
+"12979","9492f51a-22eb-465f-b3bb-aaee81ce76f5","00-0031795",NA,NA,NA,NA,"2827","2576508",NA,"DeShawn Williams","deshawn williams","DT","DEN","28.1","0",NA,NA,"1992-12-29"
+"12985","385953af-6b16-42b8-9a58-23fd8d50d935","00-0032677",NA,NA,"LittCo01",NA,"3747","2978304",NA,"Cory Littleton","cory littleton","LB","LVR","27.2","2016",NA,NA,"1993-11-18"
+"12987","e00a7f77-8320-4415-8c71-ba9c5d0240b8","00-0030946",NA,NA,NA,NA,"1857","17068",NA,"Kerry Hyder","kerry hyder","DE","SFO","29.8","2016",NA,NA,"1991-05-02"
+"12988","537c88d4-c403-43f4-94a1-fdccea0ee24a","00-0032580",NA,NA,"JoneJo03",NA,"3415","2971027",NA,"Jonathan Jones","jonathan jones","CB","NEP","27.4","2016",NA,NA,"1993-09-20"
+"12990","22d9354f-3277-4ae6-bfaa-351ce38f1140","00-0032496",NA,NA,"FarlMa00",NA,"3605","2579840",NA,"Matthias Farley","matthias farley","S","NYJ","28.5","2016",NA,NA,"1992-07-15"
+"12998","23557a45-6dc7-43c8-a4c6-f53ae72ff660","00-0032637",NA,NA,"AdamAn00",NA,"3764","2576599",NA,"Andrew Adams","andrew adams","S","TBB","27.4","2016",NA,NA,"1993-08-28"
+"13001","06a67b3c-d482-4767-b2ce-49edd8777525","00-0032581",NA,NA,"LeBlCr01",NA,"3416","2982870",NA,"Crevon LeBlanc","crevon leblanc","CB","PHI","26.5","2016",NA,NA,"1994-07-25"
+"13013","b3beb95a-c1e7-4d03-b61a-097199528816","00-0032578",NA,NA,"HamiWo00",NA,"3763","2577392",NA,"Woodrow Hamilton","woodrow hamilton","DT","CAR","28.1","2016",NA,NA,"1992-12-20"
+"13017","dfa638bd-7c3a-4269-8b39-b9e6b2148a41","00-0032042",NA,NA,NA,NA,"2983","2525492",NA,"Curtis Riley","curtis riley","S","FA","28.5","2015",NA,NA,"1992-07-18"
+"13022","e7f4b773-e944-4b62-a67b-fa0968862a37","00-0032916",NA,NA,"WillTr05",NA,"3438","2979605",NA,"Trevor Williams","trevor williams","CB","PIT","27.4","2016",NA,NA,"1993-09-15"
+"13026","a5111f5d-0b0c-4745-874c-672904200c32","00-0032573",NA,NA,"OnwuPa00",NA,"3680","2576761",NA,"Patrick Onwuasor","patrick onwuasor","LB","NYJ","28.4","2016",NA,NA,"1992-08-22"
+"13034","8491b12f-68a7-4227-9b8b-17630ff52101","00-0031991",NA,NA,NA,NA,"3022","2613234",NA,"DeVante Bausby","devante bausby","CB","DEN","28","2015",NA,NA,"1993-01-15"
+"13044","4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2","00-0031788",NA,NA,NA,NA,"3036","2470916",NA,"Matt Lengel","matt lengel","TE","FA","30.1","2015",NA,NA,"1990-12-27"
+"13045","dc447507-2380-494c-96c9-e0edb2679a3c","00-0032820",NA,NA,"SmitTe04",NA,"3417","2576809",NA,"Terrance Smith","terrance smith","LB","ARI","27.9","2016",NA,NA,"1993-03-03"
+"13051","5f3cc875-e802-46b2-81ad-3ffb7a3a1662","00-0031363",NA,NA,NA,NA,"2818","17475",NA,"Michael Palardy","michael palardy","PN","CAR","28.6","2015",NA,NA,"1992-07-06"
+"13056","4278baf5-f774-4031-ab0f-12a9c7e43c45","00-0031876",NA,NA,"WileMa01",NA,"3008","2576240",NA,"Matt Wile","matt wile","PN","FA","28.6","2016",NA,NA,"1992-06-20"
+"13057","ba36a4bb-5cc4-4113-9b5d-32bab02ef966","00-0032540",NA,NA,NA,NA,"3688","2972283",NA,"Tra Carson","tra carson","RB","FA","28.3","2016",NA,NA,"1992-10-24"
+"13065","b3d7169b-9cf6-4fea-815a-26e4fb0ec16a","00-0031690",NA,NA,NA,NA,"2755","2511973",NA,"Eric Tomlinson","eric tomlinson","TE","BAL","28.8","2015",NA,NA,"1992-04-22"
+"13066","e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36","00-0032464",NA,NA,"RaymKa00",NA,"3634","2973405",NA,"Kalif Raymond","kalif raymond","WR","TEN","26.5","2016",NA,NA,"1994-08-08"
+"13072","21199f7c-91bc-4295-a6c8-bc0cfd017616","00-0033024",NA,NA,"JackBr04",NA,"3867","2577642",NA,"Branden Jackson","branden jackson","DE","SEA","28.2","2016",NA,NA,"1992-11-11"
+"13075","3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3","00-0032353",NA,NA,NA,NA,"3589","2576895",NA,"Chris Milton","chris milton","CB","TEN","28.4","2016",NA,NA,"1992-09-15"
+"13082","0e41e388-6e5b-4a12-aa2f-45bf83ffadc5","00-0032697",NA,NA,"MiddDo01",NA,"3643","2567725",NA,"Doug Middleton","doug middleton","S","JAC","27.4","2016",NA,NA,"1993-09-25"
+"13083","08770f4a-4b29-490e-b76a-f60d87fdc414","00-0033070",NA,NA,"ElliJa01",NA,"3886","3116598",NA,"Javien Elliott","javien elliott","CB","FA","27.5","2016",NA,NA,"1993-07-18"
+"13085","ed54f1f3-65b8-4b54-8a64-81858ca9f50f","00-0032671",NA,NA,"FoxxMo00",NA,"3743","3059620",NA,"Morgan Fox","morgan fox","DE","LAR","26.4","2016",NA,NA,"1994-09-12"
+"13087","90434aff-bd29-44be-8e76-056e412a9624","00-0032592",NA,NA,"NeasSh00",NA,"3667","2982866",NA,"Sharrod Neasman","sharrod neasman","S","ATL","29.3","2016",NA,NA,"1991-10-14"
+"13100","6575474c-d106-406f-9b90-ef9b598a213d","00-0032871",NA,NA,"WoodAn02",NA,"3479","2577278",NA,"Antwaun Woods","antwaun woods","DT","DAL","28.1","2016",NA,NA,"1993-01-03"
+"13108","260e8f87-1d08-4c69-8e2b-afa825c1a68a","00-0032602","16230",NA,"McKiJ.00",NA,"3664","2572861",NA,"JD McKissic","jd mckissic","RB","WAS","27.3","2016",NA,NA,"1993-10-15"
+"13113","eec5265c-7731-4bb6-8af2-4f98a67f9ab7","00-0033537","16398","2444","WatsDe00","deshaun-watson-1","4017","3122840",NA,"Deshaun Watson","deshaun watson","QB","HOU","25.4","2017","1","12","1995-09-14"
+"13114","2a78e2e7-4ef3-4cdd-85e8-0d254b65143e","00-0033899",NA,NA,"KizeDe00","deshone-kizer-1","4026","3129302",NA,"DeShone Kizer","deshone kizer","QB","TEN","25.1","2017","2","52","1996-01-03"
+"13115","7a1b8f1a-9024-4897-86b0-01c63e00305e","00-0033869","16381",NA,NA,NA,"3976","3039707",NA,"Mitchell Trubisky","mitchell trubisky","QB","CHI","26.5","2017","1","2","1994-08-20"
+"13116","11cad59d-90dd-449c-a839-dddaba4fe16c","00-0033873","16413",NA,"MahoPa00","patrick-mahomes-1","4046","3139477",NA,"Patrick Mahomes","patrick mahomes","QB","KCC","25.4","2017","1","10","1995-09-17"
+"13119","15bedebc-839e-450a-86f6-1f5ad1f4f820","00-0033949",NA,NA,"DobbJo00","joshua-dobbs-1","4179","3044720",NA,"Joshua Dobbs","joshua dobbs","QB","PIT","26","2017","4","135","1995-01-26"
+"13120","b45cd0e5-42b3-4847-aeec-a3afd07a0160","00-0033550",NA,NA,"WebbDa00","davis-webb-1","4061","3052600",NA,"Davis Webb","davis webb","QB","FA","26","2017","3","87","1995-01-22"
+"13121","878d95f5-22d9-4f20-a3ec-2b5b117a8c5c","00-0033597",NA,NA,"KellCh00","chad-kelly-1","4051","2977665",NA,"Chad Kelly","chad kelly","QB","FA","26.9","2017","7","253","1994-03-26"
+"13124","4595c8ea-9d85-4504-8a34-2c8a02349105","00-0033662",NA,NA,"RushCo00",NA,"4574","2972515",NA,"Cooper Rush","cooper rush","QB","DAL","27.2","2017",NA,NA,"1993-11-21"
+"13125","6608fdbf-6c93-47cc-ad44-9da2fda598ce","00-0033936",NA,NA,"BeatC.00","cj-beathard-1","4127","2979520",NA,"CJ Beathard","cj beathard","QB","SFO","27.2","2017","3","104","1993-11-16"
+"13127","4e4ba1f9-35c6-4e41-85f5-d8f12d32f459","00-0033958",NA,NA,"PeteNa00","nathan-peterman-1","4183","2972236",NA,"Nathan Peterman","nathan peterman","QB","LVR","26.7","2017","5","171","1994-05-04"
+"13128","8960d61e-433b-41ea-a7ad-4e76be87b582","00-0033893","16374","2432","CookDa01","dalvin-cook-1","4029","3116593",NA,"Dalvin Cook","dalvin cook","RB","MIN","25.5","2017","2","41","1995-08-10"
+"13129","7f46a7be-286e-4bfe-8778-d03dbe600ce9","00-0033856","16378","2433","FourLe00","leonard-fournette-1","3969","3115364",NA,"Leonard Fournette","leonard fournette","RB","TBB","26","2017","1","4","1995-01-18"
+"13130","f96db0af-5e25-42d1-a07a-49b4e065b364","00-0033280","16393","2434","McCaCh01","christian-mccaffrey-1","4034","3117251",NA,"Christian McCaffrey","christian mccaffrey","RB","CAR","24.7","2017","1","8","1996-06-07"
+"13131","7797f36e-87e8-4282-b6d2-bdb1774fc3b3","00-0033897","16420","2438","MixoJo00","joe-mixon-1","4018","3116385",NA,"Joe Mixon","joe mixon","RB","CIN","24.5","2017","2","48","1996-07-24"
+"13132","d9c857b2-97da-4fb8-a527-afbbb2a67413","00-0033906","16421","2439","KamaAl00","alvin-kamara-1","4035","3054850",NA,"Alvin Kamara","alvin kamara","RB","NOS","25.5","2017","3","67","1995-07-25"
+"13133","e601812f-ce24-4e99-bee0-e33c1e9014e4","00-0033526",NA,NA,"PeriSa00","samaje-perine-1","4147","3116389",NA,"Samaje Perine","samaje perine","RB","CIN","25.4","2017","4","114","1995-09-16"
+"13134","02779042-2b4e-4fa9-b598-364fe01b523a","00-0033925","16407",NA,"ForeDO00","donta-foreman-1","4111","3125116",NA,"DOnta Foreman","donta foreman","RB","TEN","24.8","2017","3","89","1996-04-24"
+"13135","567fe739-5425-4d78-896c-f1486813910d","00-0033950","16422",NA,"GallWa00","wayne-gallman-1","4150","3045127",NA,"Wayne Gallman","wayne gallman","RB","NYG","26.3","2017","4","140","1994-10-01"
+"13136","69568326-f210-4b88-a5cb-10376c64893e","00-0033725","16446",NA,"ClemCo00",NA,"4651","3045260",NA,"Corey Clement","corey clement","RB","PHI","26.2","2017",NA,NA,"1994-11-02"
+"13138","0ef0d0ca-2d2d-455b-ab63-a20c01303e37","00-0033923","16425","2450","HuntKa00","kareem-hunt-1","4098","3059915",NA,"Kareem Hunt","kareem hunt","RB","CLE","25.5","2017","3","86","1995-08-06"
+"13139","122e131c-b08c-4b10-901d-481a20aeffb8","00-0033948","16424",NA,"WillJa06","jamaal-williams-1","4149","2980453",NA,"Jamaal Williams","jamaal williams","RB","GBP","25.8","2017","4","134","1995-04-03"
+"13140","cee77408-f330-4a16-bb6f-dead52f9291f","00-0033596",NA,NA,"DayeMa00","matt-dayes-1","4232","3051711",NA,"Matthew Dayes","matthew dayes","RB","FA","25.4","2017","7","252","1995-09-03"
+"13142","987fb8b2-98ba-4a01-bd84-d962dcdcd053","00-0033789",NA,NA,"LogaT.00","tj-logan-1","4186","3039723",NA,"TJ Logan","tj logan","RB","TBB","26.4","2017","5","179","1994-09-03"
+"13143","25cc3585-6194-4786-968a-2600db46b6c6","00-0033955","16445",NA,"McNiJe00","jeremy-mcnichols-1","4219","3127586",NA,"Jeremy McNichols","jeremy mcnichols","RB","TEN","25.1","2017","5","162","1995-12-26"
+"13144","13ade86a-20c7-48fe-9d18-b3bfc135f5e9","00-0033295",NA,NA,"McGuEl00","elijah-mcguire-1","4263","3042494",NA,"Elijah McGuire","elijah mcguire","RB","MIA","26.7","2017","6","188","1994-06-01"
+"13146","28a084c0-14df-499f-bd1f-b975603626b7","00-0033553","16447","2470","ConnJa00","james-conner-1","4137","3045147",NA,"James Conner","james conner","RB","PIT","25.7","2017","3","105","1995-05-05"
+"13148","42b57148-fc06-4aee-b40b-bb941271b5b7","00-0033854","16879",NA,"OgunDa00",NA,"4718","2983509",NA,"Dare Ogunbowale","dare ogunbowale","RB","JAC","26.7","2017",NA,NA,"1994-05-04"
+"13153","e21e9081-44aa-464b-8d3e-83918d48b921","00-0033871","16385",NA,"DaviCo03","corey-davis-3","4036","3042778",NA,"Corey Davis","corey davis","WR","TEN","26.1","2017","1","5","1995-01-11"
+"13154","12f27311-7cd6-4ca5-ba7d-571e9de5e1eb","00-0033536","16377","2436","WillMi07","mike-williams-17","4068","3045138",NA,"Mike Williams","mike williams","WR","LAC","26.3","2017","1","7","1994-10-04"
+"13155","938b363a-6967-4cef-bcd2-bb358a9f6c98","00-0033460","16388",NA,"RossJo00","john-ross-1","4038","3052177",NA,"John Ross","john ross","WR","CIN","25.2","2017","1","9","1995-11-27"
+"13156","9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9","00-0033857","16427","2442","SmitJu00","juju-smith-1","4040","3120348",NA,"JuJu Smith-Schuster","juju smith-schuster","WR","PIT","24.2","2017","2","62","1996-11-22"
+"13157","66a21b6d-97e5-4732-8bb0-062145d6bbc6","00-0033282","16434","2443","SamuCu00","curtis-samuel-1","4082","3121427",NA,"Curtis Samuel","curtis samuel","WR","CAR","24.5","2017","2","40","1996-08-11"
+"13158","046c51bc-319e-4fbb-9cf3-f6ab808b8edf","00-0033839","16436",NA,"WestDe00","dede-westbrook-1","4146","3892889",NA,"Dede Westbrook","dede westbrook","WR","JAC","27.2","2017","4","110","1993-11-21"
+"13161","a9b58dcf-40f6-4c27-a415-b922fc39f0bb","00-0033706",NA,NA,NA,NA,"4670","3122839",NA,"Artavis Scott","artavis scott","WR","FA","26.1","2017",NA,NA,"1994-12-12"
+"13162","73af6932-2701-470e-9668-02d6cb35a5c9","00-0033471","16432",NA,"FordIs00","isaiah-ford-1","4252","3124069",NA,"Isaiah Ford","isaiah ford","WR","MIA","25","2017","7","237","1996-02-09"
+"13163","baa61bb5-f8d0-4f90-bbe2-028576b8d33d","00-0033921","16406","2465","GodwCh00","chris-godwin-1","4037","3116165",NA,"Chris Godwin","chris godwin","WR","TBB","24.9","2017","3","84","1996-02-27"
+"13164","2806e915-c46f-492f-8a29-71d3a85e5620","00-0033908","16433","2449","KuppCo00",NA,"4039","2977187",NA,"Cooper Kupp","cooper kupp","WR","LAR","27.6","2017","3","69","1993-06-15"
+"13165","6259f62d-e16f-4369-a3be-ca02f79f3026","00-0033562",NA,NA,"SwitRy00","ryan-switzer-1","4162","3039725",NA,"Ryan Switzer","ryan switzer","WR","CLE","26.2","2017","4","133","1994-11-04"
+"13166","91aac0f7-60ed-4333-8aee-15bd56764464","00-0033937",NA,NA,"DarbAm00","amara-darboh-1","4139","2977629",NA,"Amara Darboh","amara darboh","WR","CAR","27","2017","3","106","1994-02-01"
+"13167","29972cbe-2912-49df-916b-200eead9a218","00-0033911",NA,NA,"TaylTa00","taywan-taylor-1","4125","3059760",NA,"Taywan Taylor","taywan taylor","WR","CLE","25.9","2017","3","72","1995-03-02"
+"13168","682eda79-0026-4ad8-8f45-a61ce42cb908","00-0033943","16439",NA,"ReynJo00","josh-reynolds-1","4171","3115306",NA,"Josh Reynolds","josh reynolds","WR","LAR","26","2017","4","117","1995-02-16"
+"13169","3d655ae8-d510-47d4-b5ab-936cd6a492f1","00-0033464",NA,NA,"ChesJe00","jehu-chesson-1","4169","2977631",NA,"Jehu Chesson","jehu chesson","WR","FA","27.1","2017","4","139","1993-12-29"
+"13170","c58e6a2c-2206-4d42-b368-fe6f0ecb1262","00-0033573",NA,NA,"GibsSh00","shelton-gibson-1","4214","3042417",NA,"Shelton Gibson","shelton gibson","WR","FA","25.9","2017","5","166","1995-03-20"
+"13172","36f62824-1cdb-4e9e-8a11-55df97e562b9","00-0033591",NA,NA,"BrowNo00","noah-brown-2","4234","3121409",NA,"Noah Brown","noah brown","WR","DAL","23.5","2017","7","239","1997-07-19"
+"13176","a28f7368-0306-4d20-855f-285a1a09c09c","00-0033891","16431",NA,"JoneZa00","isaiah-jones-2","4080","3059722",NA,"Zay Jones","zay jones","WR","LVR","25.8","2017","2","37","1995-03-30"
+"13179","5727f7d5-35a6-4ad9-a96a-8408f8a84bd3","00-0033474",NA,NA,NA,NA,"4489","2980460",NA,"Gehrig Dieter","gehrig dieter","WR","KCC","27.9","2017",NA,NA,"1993-02-24"
+"13183","6335a39b-9cb4-4703-bed9-1835b9fc4791","00-0033840","16430",NA,"HansCh00","chad-hansen-1","4175","3066074",NA,"Chad Hansen","chad hansen","WR","HOU","26","2017","4","141","1995-01-18"
+"13188","93ed8c6f-b676-46d3-bf82-6155e89b4a68","00-0033879","16380",NA,"HowaO.00","oj-howard-1","4055","3043080",NA,"OJ Howard","oj howard","TE","TBB","26.2","2017","1","19","1994-11-19"
+"13189","e21365af-8d66-416e-b0a5-8816d18fcfd9","00-0033881","16411","2451","EngrEv00","evan-engram-1","4066","3051876",NA,"Evan Engram","evan engram","TE","NYG","26.4","2017","1","23","1994-09-02"
+"13190","6d49d4d1-a254-48de-9f6f-eeecac82ad88","00-0033564",NA,NA,"ButtJa00","jake-butt-1","4151","3045225",NA,"Jake Butt","jake butt","TE","DEN","25.6","2017","5","145","1995-07-11"
+"13192","8f86fcea-90e8-49ea-bc78-5c7659313e57","00-0033885","16399",NA,"NjokDa00","david-njoku-1","4033","3123076",NA,"David Njoku","david njoku","TE","CLE","24.6","2017","1","29","1996-07-10"
+"13193","e4f25a37-74de-4bfb-b6c9-f50a4fab0b87","00-0033858","16460","2490","SmitJo01","jonnu-smith-1","4144","3054212",NA,"Jonnu Smith","jonnu smith","TE","TEN","25.4","2017","3","100","1995-08-22"
+"13194","2dcc8e56-ac32-4774-a011-b1e65ca73786","00-0033528",NA,NA,"SpriJe00","jeremy-sprinkle-1","4221","2980073",NA,"Jeremy Sprinkle","jeremy sprinkle","TE","WAS","26.5","2017","5","154","1994-08-10"
+"13195","bea00842-e4db-4955-857a-ea8d4a0e215b","00-0033953",NA,NA,"LeggJo00","jordan-leggett-1","4153","3045118",NA,"Jordan Leggett","jordan leggett","TE","DEN","26","2017","5","150","1995-01-31"
+"13197","bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6","00-0033559",NA,NA,"RobeMi01","michael-roberts-3","4164","3059945",NA,"Michael Roberts","michael roberts","TE","FA","26.7","2017","4","127","1994-05-07"
+"13198","a85a0ba9-674c-4f37-a944-474fc6cdf557","00-0033868","16370",NA,"GarrMy00","myles-garrett-1","3973","3122132",NA,"Myles Garrett","myles garrett","DE","CLE","25.1","2017","1","1","1995-12-29"
+"13199","74473bcc-5bdb-4650-8549-8a8a12874cbf","00-0033870",NA,NA,"ThomSo00","solomon-thomas-2","4058","3117258",NA,"Solomon Thomas","solomon thomas","DT","SFO","25.1","2017","1","3","1995-12-20"
+"13200","aaff3798-2b50-47a1-b629-5771454a45d7","00-0033541",NA,NA,"CharTa00","taco-charlton-1","4073","3045210",NA,"Taco Charlton","taco charlton","DE","KCC","26.2","2017","1","28","1994-11-07"
+"13201","2d74a108-2b17-4db3-8ef1-0c2e845b414e","00-0033876",NA,NA,"BarnDe01","derek-barnett-2","4065","3115336",NA,"Derek Barnett","derek barnett","DE","PHI","24.6","2017","1","14","1996-06-25"
+"13202","e75ed538-1888-4864-bd1d-e703d1ce4b5b","00-0033463",NA,NA,"LawsCa00","carl-lawson-2","4148","3051911",NA,"Carl Lawson","carl lawson","DE","CIN","25.6","2017","4","116","1995-06-29"
+"13203","f89332c7-decb-438a-bf7c-220d6c28e098","00-0033588",NA,NA,"RochIs00","isaac-rochell-1","4271","3052894",NA,"Isaac Rochell","isaac rochell","DE","LAC","25.8","2017","7","225","1995-04-22"
+"13204","f7d0d3ea-6de1-4adc-b431-166c6dde9cc9","00-0033880",NA,NA,"HarrCh03","charles-harris-4","4075","3051852",NA,"Charles Harris","charles harris","DE","ATL","25.9","2017","1","22","1995-03-06"
+"13205","dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf","00-0033540",NA,NA,"McKiTa00","takkarist-mckinley-1","4069","3152371",NA,"Takkarist McKinley","takkarist mckinley","DE","LVR","25.2","2017","1","26","1995-11-02"
+"13206","764df188-bced-410b-ac54-84a86ef125a9","00-0033285",NA,NA,"HallDa01","daeshon-hall-1","4103","3051807",NA,"Daeshon Hall","daeshon hall","DE","SFO","25.6","2017","3","77","1995-06-14"
+"13207","92c77d16-f8bf-4716-bcde-6328838f4e65","00-0033912",NA,NA,"WillJo09","jordan-willis-1","4105","3052434",NA,"Jordan Willis","jordan willis","DE","SFO","25.8","2017","3","73","1995-05-02"
+"13208","5ba11bd2-e764-4dea-98e1-dad01a21cdd3","00-0033523",NA,NA,"AlleJo01","jonathan-allen-1","4032","3054840",NA,"Jonathan Allen","jonathan allen","DT","WAS","26","2017","1","17","1995-01-16"
+"13209","fe1a1b0d-1d0e-496c-8777-2b5aff1f7231","00-0033962",NA,NA,"BranCa00","caleb-brantley-1","4231","3054950",NA,"Caleb Brantley","caleb brantley","DT","WAS","26.4","2017","6","185","1994-09-02"
+"13211","1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf","00-0033563",NA,NA,"WatkCa00","carlos-watkins-1","4166","2977681",NA,"Carlos Watkins","carlos watkins","DE","HOU","27.2","2017","4","142","1993-12-05"
+"13212","9ea97d0c-6af7-46cd-a69f-b61a649e5a28","00-0033913",NA,NA,"WormCh00","chris-wormley-1","4101","2977615",NA,"Chris Wormley","chris wormley","DE","PIT","27.3","2017","3","74","1993-10-25"
+"13213","e1677afe-2d03-4e11-b6af-ba3810720799","00-0033915",NA,NA,"WillTi00","tim-williams-7","4100","3054862",NA,"Tim Williams","tim williams","LB","FA","27.2","2017","3","78","1993-11-12"
+"13214","f340201b-a1b1-43ba-a47a-484a44334553","00-0033886","16469",NA,"WattT.00","tj-watt-1","4070","3045282",NA,"TJ Watt","tj watt","LB","PIT","26.3","2017","1","30","1994-10-11"
+"13215","4217a140-cd83-4b9b-8493-b5b27688d055","00-0033887",NA,NA,"FostRe00","reuben-foster-1","4030","3054844",NA,"Reuben Foster","reuben foster","LB","WAS","26.8","2017","1","31","1994-04-04"
+"13216","8cb76d80-0326-474f-86c8-869a86405777","00-0033547","16387",NA,"CunnZa00","zach-cunningham-1","4110","3051750",NA,"Zach Cunningham","zach cunningham","LB","HOU","26.1","2017","2","57","1994-12-12"
+"13217","4123860b-90a2-425e-ba0b-051aad7c327e","00-0033938",NA,NA,"BeckKe00","kendell-beckwith-1","4143","3042733",NA,"Kendell Beckwith","kendell beckwith","LB","FA","26.2","2017","3","107","1994-12-02"
+"13218","2afc82df-1048-414d-bef7-1692198cedde","00-0033525",NA,NA,"AndeRy00","ryan-anderson-1","4097","2976495",NA,"Ryan Anderson","ryan anderson","LB","WAS","26.5","2017","2","49","1994-08-12"
+"13220","16661483-3da0-4461-ac44-46fddb386e19","00-0033549",NA,NA,"RileDu00","duke-riley-1","4099","3042725",NA,"Duke Riley","duke riley","LB","PHI","26.5","2017","3","75","1994-08-09"
+"13221","808fe9a2-51dc-4d22-8f09-da1857b5a699","00-0033539",NA,NA,"DaviJa01","jarrad-davis-1","4067","3054951",NA,"Jarrad Davis","jarrad davis","LB","DET","25.2","2017","1","21","1995-11-16"
+"13222","8aad56a2-0589-4ebc-99f8-b07c5023fd70","00-0033461",NA,NA,"McMiRa02","raekwon-mcmillan-1","4090","3121423",NA,"Raekwon McMillan","raekwon mcmillan","LB","LVR","24.2","2017","2","54","1996-11-17"
+"13223","bf9749c6-6609-456e-a3eb-b8cab21dd76a","00-0033281",NA,NA,"HumpMa00","marlon-humphrey-1","4071","3126356",NA,"Marlon Humphrey","marlon humphrey","CB","BAL","24.6","2017","1","16","1996-07-08"
+"13224","66386076-7d61-47b7-88e2-34a883de250f","00-0033874",NA,NA,"LattMa01","marshon-lattimore-1","4059","3121421",NA,"Marshon Lattimore","marshon lattimore","CB","NOS","24.7","2017","1","11","1996-05-19"
+"13225","4de23d54-2169-4b17-b0d0-c47b2edd9f73","00-0033543",NA,NA,"JoneSi00","sidney-jones-1","4083","3127299",NA,"Sidney Jones","sidney jones","CB","JAC","24.7","2017","2","43","1996-05-21"
+"13226","6db40c6e-7d09-486e-b80d-1d8008547250","00-0033878",NA,NA,"JackAd00","adoree-jackson-1","4078","3120347",NA,"Adoree Jackson","adoree jackson","CB","TEN","25.4","2017","1","18","1995-09-18"
+"13227","7ff68f1d-204c-4d49-9179-ecb2514094dc","00-0033928",NA,NA,"LewiJo01","jourdan-lewis-1","4129","3045207",NA,"Jourdan Lewis","jourdan lewis","CB","DAL","25.4","2017","3","92","1995-08-31"
+"13228","3cb26a5c-9c90-46ad-b539-e29ad6934e30","00-0033877",NA,NA,"HookMa00","malik-hooker-1","4074","3121415",NA,"Malik Hooker","malik hooker","S","IND","24.8","2017","1","15","1996-04-02"
+"13229","f4c59ced-4d11-4314-a761-ec0883edd3c1","00-0033784",NA,NA,"JackEd01","eddie-jackson-6","4158","3054847",NA,"Eddie Jackson","eddie jackson","S","CHI","28.1","2017","4","112","1992-12-10"
+"13230","1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c","00-0033872","16375",NA,"AdamJa00","jamal-adams-1","4077","3115373",NA,"Jamal Adams","jamal adams","S","SEA","25.3","2017","1","6","1995-10-17"
+"13231","45ef2670-2382-434b-8f26-ba13f044236e","00-0033883","16382",NA,"PeppJa00","jabrill-peppers-1","4056","3115962",NA,"Jabrill Peppers","jabrill peppers","S","NYG","25.3","2017","1","25","1995-10-04"
+"13232","1c41b4ac-bec1-4943-b0a3-5b57642faaaa","00-0033566",NA,NA,"KingDe01","desmond-king-1","4216","3040145",NA,"Desmond King","desmond king","CB","TEN","26.1","2017","5","151","1994-12-14"
+"13234","413f7971-4d5b-496d-a11b-f623e9bc3b7c","00-0033951","16444","2469","MackMa00","marlon-mack-1","4152","3139605",NA,"Marlon Mack","marlon mack","RB","IND","24.9","2017","4","143","1996-03-07"
+"13235","c5a8b02c-d380-4f22-a690-b335001de8b7","00-0033859",NA,NA,"MaloJo00","josh-malone-1","4160","3115330",NA,"Josh Malone","josh malone","WR","NYJ","24.9","2017","4","128","1996-03-21"
+"13236","ebeceb00-57e0-4b74-9cf7-853da2afed18","00-0033895","16459",NA,"EverGe00","gerald-everett-1","4089","3918639",NA,"Gerald Everett","gerald everett","TE","LAR","26.6","2017","2","44","1994-06-25"
+"13238","d0879c68-6387-4edc-b55b-07e128546ae7","00-0033530",NA,NA,"DaviRo00","robert-davis-10","4285","3042373",NA,"Robert Davis","robert davis","WR","FA","25.8","2017","6","209","1995-04-02"
+"13239","6c6a6099-0169-4c9a-b024-0d8f4a795f38","00-0032813",NA,NA,NA,NA,"3803","2575965",NA,"Elijhaa Penny","elijhaa penny","RB","NYG","27.5","2016",NA,NA,"1993-08-17"
+"13240","26873576-2bbd-4622-bc3e-ec847577855b","00-0033567","16448",NA,"HillBr02","brian-hill-4","4187","3125403",NA,"Brian Hill","brian hill","RB","ATL","25.2","2017","5","156","1995-11-09"
+"13241","8fb2ca06-3d13-4552-98e0-7b913b4ab5b9","00-0032870","16072",NA,NA,NA,"3827","3068939",NA,"Aldrick Rosas","aldrick rosas","PK","JAC","26.1","2016",NA,NA,"1994-12-30"
+"13245","ee399a97-6868-4db1-9381-09073914c2d6","00-0033875",NA,NA,"ReddHa00","haason-reddick-1","4063","2980504",NA,"Haason Reddick","haason reddick","LB","ARI","26.4","2017","1","13","1994-09-22"
+"13246","8809c0dd-786b-4255-a7d0-333c9498c19a","00-0033217","16579",NA,NA,NA,"4054","2998565",NA,"Mo Alie-Cox","mo alie-cox","TE","IND","27.4","2017",NA,NA,"1993-09-19"
+"13247","a57a96ca-7aa8-4e0f-9ba8-437690fe50dc","00-0030197",NA,NA,NA,NA,"1774","16475",NA,"Deon Lacey","deon lacey","LB","FA","30.5","2016",NA,NA,"1990-07-18"
+"13248","96f646e2-0984-4092-8031-22d2bf9b620c","00-0033882",NA,NA,NA,NA,"4057","3051391",NA,"Gareon Conley","gareon conley","CB","HOU","25.6","2017","1","24","1995-06-29"
+"13249","13de701c-c77c-4eb5-b54c-8881ca5e0871","00-0033884",NA,NA,"WhitTr01","tredavious-white-1","4072","3042717",NA,"TreDavious White","tredavious white","CB","BUF","26","2017","1","27","1995-01-16"
+"13250","ae0498b4-0ccb-4b11-9449-f26c621d7c79","00-0033524",NA,NA,"KingKe01","kevin-king-5","4079","3052170",NA,"Kevin King","kevin king","CB","GBP","25.7","2017","2","33","1995-05-05"
+"13251","5ce20f3e-0f02-4f53-a2ef-5b076361f2b1","00-0033890","16733",NA,"BakeBu00","budda-baker-1","4081","3127287",NA,"Budda Baker","budda baker","S","ARI","25.1","2017","2","36","1996-01-10"
+"13252","dfbbaf35-08d6-4f58-8577-c2e53a492454","00-0033892",NA,NA,"MayeMa00","marcus-maye-1","4093","2980110",NA,"Marcus Maye","marcus maye","S","NYJ","27.1","2017","2","39","1994-01-01"
+"13253","662bf69e-10eb-4c2e-970e-1a13f1c7fa07","00-0033894",NA,NA,"WillMa06","marcus-williams-9","4091","3122882",NA,"Marcus Williams","marcus williams","S","NOS","24.4","2017","2","42","1996-09-08"
+"13254","87171077-4c1c-4b67-b159-2cc6242988e0","00-0033896",NA,NA,"ShahAd00",NA,"4085","4198676",NA,"Adam Shaheen","adam shaheen","TE","MIA","27.1","2017","2","45","1994-01-01"
+"13255","41ca30bb-890b-4d30-ae2a-2b12eee9423a","00-0033544",NA,NA,"WilsQu01","quincy-wilson-2","4088","3121660",NA,"Quincy Wilson","quincy wilson","CB","NYG","25.1","2017","2","46","1996-01-01"
+"13256","b36539fa-de45-4cfd-90be-49d14149e64e","00-0033283",NA,NA,"BowsTy00","tyus-bowser-1","4084","3040037",NA,"Tyus Bowser","tyus bowser","LB","BAL","25.7","2017","2","47","1995-05-23"
+"13257","410037b3-d7f2-4188-9d87-53bf51fd31fe","00-0033898",NA,NA,"EvanJu00","justin-evans-1","4096","3895859",NA,"Justin Evans","justin evans","S","FA","25.4","2017","2","50","1995-08-26"
+"13258","e1048910-1b5f-4d91-8702-f5ad06844b24","00-0033782",NA,NA,"WalkDe03","demarcus-walker-1","4086","3045377",NA,"DeMarcus Walker","demarcus walker","DE","DEN","26.3","2017","2","51","1994-09-30"
+"13260","6371b42c-2783-49e8-8def-ce4d7dc91081","00-0033546",NA,NA,"TomlDa00","dalvin-tomlinson-1","4092","2979860",NA,"Dalvin Tomlinson","dalvin tomlinson","DT","NYG","27.1","2017","2","55","1994-01-01"
+"13261","3c151ffc-4fd3-4785-96e0-3a257e99706a","00-0033900",NA,NA,NA,NA,"4120","2974247",NA,"Obi Melifonwu","obi melifonwu","S","SFO","26.8","2017","2","24","1994-04-05"
+"13262","cb43fb1e-9c65-4462-8c05-798d5885b845","00-0033902",NA,NA,"KpasTa00",NA,"4114","2982313",NA,"Tanoh Kpassagnon","tanoh kpassagnon","DE","KCC","26.6","2017","2","59","1994-06-14"
+"13263","5e11c306-6387-46ed-8a6d-3ff7a8210ed5","00-0033548",NA,NA,"AwuzCh00","chidobe-awuzie-1","4107","3052101",NA,"Chidobe Awuzie","chidobe awuzie","CB","DAL","25.7","2017","2","60","1995-05-24"
+"13264","8ddd0a30-563c-4fae-a6a8-a19747721924","00-0033903",NA,NA,"JoneJo06","josh-jones-3","4109","3051716",NA,"Josh Jones","josh jones","S","JAC","26.4","2017","2","61","1994-09-20"
+"13265","915f567f-ca74-426a-8ed0-123c45f67baa","00-0033905",NA,NA,"OgunLa00","larry-ogunjobi-1","4106","3050122",NA,"Larry Ogunjobi","larry ogunjobi","DT","CLE","26.7","2017","3","65","1994-06-03"
+"13266","a80f1b08-3977-48b6-97e0-5991ca26bfae","00-0033783",NA,NA,"WithAh00","ahkello-witherspoon-1","4124","3122630",NA,"Ahkello Witherspoon","ahkello witherspoon","CB","SFO","25.9","2017","3","66","1995-03-21"
+"13267","887dc7b2-fb32-4126-be14-509b40424d34","00-0033907",NA,NA,"SmooDa00","dawuane-smoot-1","4113","3042476",NA,"Dawuane Smoot","dawuane smoot","DE","JAC","25.9","2017","3","68","1995-03-02"
+"13268","8bb2d40a-6dd2-4108-9810-5def1b45f192","00-0033914",NA,NA,"AnzaAl00","alex-anzalone-1","4118","3043107",NA,"Alex Anzalone","alex anzalone","LB","NOS","27.1","2017","3","76","1994-01-01"
+"13269","d7068799-55b7-47c2-91d9-0e532957939e","00-0033917",NA,NA,"BashTa00","tarell-basham-1","4112","3052977",NA,"Tarell Basham","tarell basham","LB","NYJ","26.9","2017","3","80","1994-03-18"
+"13270","5ff63fe6-3b33-4f0d-bc51-d5e84d862b08","00-0033918",NA,NA,"MoreFa00","fabian-moreau-1","4126","2971586",NA,"Fabian Moreau","fabian moreau","CB","WAS","26.8","2017","3","81","1994-04-09"
+"13271","7d1d8954-3836-4bbc-9d70-cd85e57c7c69","00-0033920",NA,NA,"RiveDe00",NA,"4117","3049268",NA,"Derek Rivers","derek rivers","DE","LAR","27.1","2017","3","83","1994-01-01"
+"13272","3618e094-0273-4e99-9641-65cc488128e5","00-0033924",NA,NA,NA,NA,"4121","3047570",NA,"Eddie Vanderdoes","eddie vanderdoes","DT","HOU","26.3","2017","3","24","1994-10-13"
+"13273","dd7640e6-d81d-4605-b900-451bf40e5bd6","00-0033926",NA,NA,NA,NA,"4140","3054026",NA,"Shaq Griffin","shaq griffin","CB","SEA","27.1","2017","3","26","1994-01-01"
+"13274","8c824157-eb33-4378-bf19-6c738a186ceb","00-0033927","16747",NA,"JohnJo10","john-johnson-9","4133","3046292",NA,"John Johnson","john johnson","S","LAR","27.1","2017","3","91","1994-01-01"
+"13275","794760c3-b654-48fa-ba3c-3b07fdb4c03e","00-0033929",NA,NA,"AdamMo00","montravius-adams-1","4132","3051894",NA,"Montravius Adams","montravius adams","DE","GBP","26.6","2017","3","93","1994-06-24"
+"13276","d8fc7bb7-333c-4caf-9512-893c334f56ef","00-0033930",NA,NA,"SuttCa00","cameron-sutton-1","4138","3044724",NA,"Cameron Sutton","cameron sutton","CB","PIT","25.9","2017","3","94","1995-02-27"
+"13277","659d31a3-9c62-4e3d-a0ea-b2e4967d6947","00-0033932","16488","2488","GollKe00","kenny-golladay-1","4131","2974858",NA,"Kenny Golladay","kenny golladay","WR","DET","27.2","2017","3","96","1993-11-03"
+"13278","d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2","00-0033931",NA,NA,"HillDe02","delano-hill-1","4141","3045214",NA,"Delano Hill","delano hill","S","SEA","25.2","2017","3","95","1995-11-26"
+"13279","ecd53958-08c3-4ef0-8984-ec68d58deec1","00-0033462",NA,NA,"TankCo00","cordrea-tankersley-1","4134","3045136",NA,"Cordrea Tankersley","cordrea tankersley","CB","MIN","27.2","2017","3","97","1993-11-19"
+"13280","35c970b1-cd2c-42b8-bcb6-e0b8dbe39423","00-0033933",NA,NA,"WillCh05",NA,"4128","3066052",NA,"Chad Williams","chad williams","WR","KCC","26.3","2017","3","98","1994-10-19"
+"13281","ff89ab1d-4c9c-4e8b-943d-6a9305c5793e","00-0033551",NA,NA,"DougRa00","rasul-douglas-1","4136","3943270",NA,"Rasul Douglas","rasul douglas","CB","CAR","27.4","2017","3","99","1993-08-29"
+"13283","ddc66539-5847-4c01-9283-595bde0ff97a","00-0033934",NA,NA,"JoneNa00","nazair-jones-1","4142","3039721",NA,"Nazair Jones","nazair jones","DE","FA","26.1","2017","3","102","1994-12-13"
+"13284","41d217b9-ec7b-4d72-8a0a-5f0e3a16b693","00-0033935",NA,NA,"HendTr00","trey-hendrickson-1","4135","3052743",NA,"Trey Hendrickson","trey hendrickson","DE","NOS","26.2","2017","3","103","1994-12-05"
+"13285","28b0d2fd-18d0-442e-a9ec-70b2f8065ff2","00-0033939",NA,NA,"BiegVi00","vince-biegel-1","4145","2977798",NA,"Vince Biegel","vince biegel","LB","MIA","27.6","2017","4","108","1993-07-02"
+"13286","016a6d56-0b72-490e-8dae-41b5d3d2db63","00-0033940",NA,NA,"JohnJa09","jaleel-johnson-1","4173","2979523",NA,"Jaleel Johnson","jaleel johnson","DT","MIN","26.6","2017","4","109","1994-07-12"
+"13287","5af719d9-4a47-4a93-a522-a5060fd0df79","00-0033554",NA,NA,"ThomTe00","tedric-thompson-1","4181","3052125",NA,"Tedric Thompson","tedric thompson","S","FA","26","2017","4","111","1995-01-20"
+"13288","18f174c9-a956-4c14-bd23-9e799fef6dc7","00-0033941",NA,NA,"JenkRa00","rayshawn-jenkins-1","4180","2969961",NA,"Rayshawn Jenkins","rayshawn jenkins","S","LAC","27","2017","4","113","1994-01-25"
+"13289","93cb5790-1012-4c42-bccb-5748c27ba7d6","00-0033555",NA,NA,"HollMa00","mack-hollins-1","4177","2991662",NA,"Mack Hollins","mack hollins","WR","MIA","27.4","2017","4","118","1993-09-16"
+"13290","a8342d20-9901-49a6-bc45-79f192418188","00-0033556","16450","2493","CoheTa00",NA,"4157","3066158",NA,"Tarik Cohen","tarik cohen","RB","CHI","25.5","2017","4","119","1995-07-26"
+"13291","1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc","00-0033944",NA,NA,"GedeBe00","ben-gedeon-1","4172","3045212",NA,"Ben Gedeon","ben gedeon","LB","FA","26.3","2017","4","120","1994-10-16"
+"13292","5455b3f0-9ee0-41cb-9409-13303f5e6c8b","00-0033527",NA,NA,"NichMo00","montae-nicholson-1","4182","3134683",NA,"Montae Nicholson","montae nicholson","S","FA","25.2","2017","4","123","1995-12-04"
+"13293","61e1881b-a33e-4d33-b518-017145d5fc03","00-0033557",NA,NA,"ReevJa00","jalen-reeves-maybin-1","4163","3044729",NA,"Jalen Reeves-Maybin","jalen reeves-maybin","LB","DET","26","2017","4","124","1995-01-31"
+"13294","1d05c82f-81cd-4fad-84f5-8be990c5258d","00-0033945",NA,NA,"EbukSa00",NA,"4170","3045527",NA,"Samson Ebukam","samson ebukam","LB","LAR","25.7","2017","4","125","1995-05-09"
+"13296","2516f9e7-9927-409d-adbe-b32d680ae71d","00-0033947",NA,NA,"WiseDe00","deatrich-wise-jr-1","4174","2980080",NA,"Deatrich Wise","deatrich wise","DE","NEP","26.5","2017","4","131","1994-07-26"
+"13297","40d6eeb6-cd53-474d-97f4-a00fed5b4d64","00-0033786",NA,NA,"GlasRy00","ryan-glasgow-1","4159","2977635",NA,"Ryan Glasgow","ryan glasgow","DT","NOS","27.3","2017","4","138","1993-09-30"
+"13298","fae57441-a198-4674-8a37-401b64d17961","00-0033952",NA,NA,"StewGr00",NA,"4168","4058825",NA,"Grover Stewart","grover stewart","DT","IND","27.3","2017","4","144","1993-10-20"
+"13299","2ada91b0-036e-454f-83c3-6d939ff584a9","00-0033288","16499","2499","KittGe00","george-kittle-1","4217","3040151",NA,"George Kittle","george kittle","TE","SFO","27.3","2017","5","146","1993-10-09"
+"13301","f9c86838-11e5-4582-a03e-c15e02b2013c","00-0033512",NA,NA,"KazeDa00","damontae-kazee-1","4188","2976099",NA,"Damontae Kazee","damontae kazee","S","ATL","27.7","2017","5","149","1993-06-05"
+"13302","fde0f790-29a9-4212-a357-17657055c1db","00-0033289",NA,NA,"EldeCo00","corn-elder-1","4192","3051929",NA,"Corn Elder","corn elder","CB","CAR","26.3","2017","5","152","1994-10-09"
+"13303","059e5bb7-1842-4558-9aaf-77c352a21216","00-0033787","16540","2529","ElliJa03","jake-elliott-1","4195","3050478",NA,"Jake Elliott","jake elliott","PK","PHI","26","2017","5","153","1995-01-21"
+"13304","29c53cbc-9d94-46af-b46a-674f9c1e5c79","00-0033954",NA,NA,"BrowJa06","jayon-brown-1","4220","3047559",NA,"Jayon Brown","jayon brown","LB","TEN","25.9","2017","5","155","1995-02-26"
+"13305","aaa9228d-7399-4b53-a2e7-259438bd2959","00-0033568",NA,NA,"HairNa00","nathan-hairston-1","4202","2976259",NA,"Nate Hairston","nate hairston","S","DEN","26.6","2017","5","158","1994-06-30"
+"13306","14b52c32-e9f6-4b64-aa22-1d96bb20cf84","00-0033570",NA,NA,"WalkAn01","anthony-walker-1","4203","3045251",NA,"Anthony Walker","anthony walker","LB","IND","25.5","2017","5","161","1995-08-08"
+"13307","825fe252-36b9-48d9-a845-29114c5aae8a","00-0033571",NA,NA,"MilaMa00","matt-milano-1","4191","3046287",NA,"Matt Milano","matt milano","LB","BUF","26.5","2017","5","163","1994-07-28"
+"13308","c871b3a8-72c4-425e-a357-2de37e033c8d","00-0033572",NA,NA,"AgneJa00",NA,"4198","3061612",NA,"Jamal Agnew","jamal agnew","WR","DET","25.8","2017","5","165","1995-04-03"
+"13309","48dede0f-2441-4549-8892-9d37c79321a1","00-0033574",NA,NA,"MossAv00",NA,"4210","2974324",NA,"Avery Moss","avery moss","LB","FA","26.4","2017","5","167","1994-09-16"
+"13310","99e9c388-c562-40d4-b225-e99c57cb55ba","00-0033956",NA,NA,NA,NA,"4212","3039776",NA,"Marquel Lee","marquel lee","LB","FA","25.3","2017","5","24","1995-10-21"
+"13313","6130be96-edf3-4361-b666-860c4ec46e7d","00-0033466","16604",NA,"McKeIs00","isaiah-mckenzie-1","4197","3128724",NA,"Isaiah McKenzie","isaiah mckenzie","WR","BUF","25.8","2017","5","172","1995-04-09"
+"13314","a5780ea2-376e-4187-8be1-7c7fd2d0a12f","00-0033467",NA,NA,"AlleBr01","brian-allen-6","4215","2971632",NA,"Brian Allen","brian allen","CB","CLE","27.3","2017","5","173","1993-10-21"
+"13315","582dc00e-e7ec-4ca7-bff0-f7b1d604017b","00-0033576",NA,NA,"SaubEr00",NA,"4189","2975863",NA,"Eric Saubert","eric saubert","TE","JAC","26.8","2017","5","174","1994-05-01"
+"13316","3e2e74e9-18a8-4275-9437-b275db27e2ff","00-0033292",NA,NA,"TaylTr02","trent-taylor-2","4218","3040569",NA,"Trent Taylor","trent taylor","WR","SFO","26.8","2017","5","177","1994-04-30"
+"13317","6e6dcc9c-06f5-40fd-9134-d0afd0e349d8","00-0033860",NA,NA,"GodcDa00","davon-gaudchaux-1","4207","3115383",NA,"Davon Godchaux","davon godchaux","DT","MIA","26.2","2017","5","178","1994-11-11"
+"13319","27dd5b6e-ea65-4622-a6b4-460fd144407c","00-0033293","16673","2507","JoneAa00","aaron-jones-6","4199","3042519",NA,"Aaron Jones","aaron jones","RB","GBP","26.2","2017","5","182","1994-12-02"
+"13321","8a6672c9-79b9-4c49-9d7c-0061a1141a7c","00-0033577",NA,NA,NA,NA,"4213","3040475",NA,"Nate Gerry","nate gerry","LB","PHI","25.9","2017","5","40","1995-02-23"
+"13322","1105ae60-a4b6-4246-a77e-0849179b07b2","00-0033294",NA,NA,"ClarCh00","chuck-clark-1","4224","3045463",NA,"Chuck Clark","chuck clark","S","BAL","25.8","2017","6","186","1995-04-19"
+"13324","243b786c-744d-4a6b-9a8a-0b4e5fd2ad18","00-0033963",NA,NA,"SmarTa00","tanzel-smart-1","4251","3041112",NA,"Tanzel Smart","tanzel smart","DE","NYJ","26.2","2017","6","189","1994-11-06"
+"13325","cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc","00-0033579",NA,NA,"WoodXa00","xavier-woods-1","4238","3040572",NA,"Xavier Woods","xavier woods","S","DAL","25.5","2017","6","191","1995-07-26"
+"13326","686cab35-6da0-4e10-ba65-0d1f97e0bc8b","00-0033296",NA,NA,NA,NA,"4226","4212884",NA,"Alexander Armah","alexander armah","RB","CAR","26.7","2017","6","8","1994-05-17"
+"13327","3fec685f-b7bb-45a3-ad9c-e27c3fbc9951","00-0033790",NA,NA,"EvanJo01","jordan-evans-1","4228","3052660",NA,"Jordan Evans","jordan evans","LB","CIN","26","2017","6","193","1995-01-27"
+"13328","eb904c68-f01b-4af3-9427-dd6a6c35511b","00-0033469",NA,NA,"TaylVi00","vincent-taylor-1","4253","3046343",NA,"Vincent Taylor","vincent taylor","DT","CLE","27.1","2017","6","194","1994-01-05"
+"13329","23f29e42-92e5-41b2-88eb-b9fb17a0eede","00-0033580",NA,NA,"VallTa00","tanner-vallejo-1","4225","3042895",NA,"Tanner Vallejo","tanner vallejo","LB","ARI","26.1","2017","6","195","1994-12-16"
+"13330","08875a0a-0a3c-4fc1-b5f7-41d510503628","00-0033964",NA,NA,"MuhaAl00","al-quadin-muhammad-1","4259","3051942",NA,"Al-Quadin Muhammad","al-quadin muhammad","DE","IND","25.8","2017","6","196","1995-03-28"
+"13332","d2e2b313-6769-48c6-a217-d167f04068df","00-0033297",NA,NA,"JoneD.01","dj-jones-4","4278","3894915",NA,"DJ Jones","dj jones","DT","SFO","26","2017","6","198","1995-01-19"
+"13333","c69c8d25-f81b-4240-a361-6bb328ad9474","00-0033298",NA,NA,"TaumPi00","pita-taumoepenu-3","4279","3055105",NA,"Pita Taumoepenu","pita taumoepenu","LB","ATL","26.9","2017","6","202","1994-03-09"
+"13334","294b247f-c8b9-4fe7-9fce-bb4011fff02f","00-0033581",NA,NA,"HendDe01",NA,"4239","2968226",NA,"DeAngelo Henderson","deangelo henderson","RB","FA","28.2","2017","6","203","1992-11-24"
+"13336","02c7bde8-3715-462e-a268-95b3f2e19311","00-0033582",NA,NA,"LedbJe00","jeremiah-ledbetter-1","4240","3892689",NA,"Jeremiah Ledbetter","jeremiah ledbetter","DE","TBB","26.7","2017","6","205","1994-06-02"
+"13338","0bf5f31d-e2fe-441f-845e-7573cc21b22d","00-0033791",NA,NA,"WilsBr01","brandon-wilson-3","4230","2982632",NA,"Brandon Wilson","brandon wilson","S","CIN","26.5","2017","6","207","1994-07-27"
+"13339","b12174ec-fea9-4e05-b54f-c00e10920245","00-0033792",NA,NA,NA,NA,"4223","3051901",NA,"Johnathan Ford","johnathan ford","S","PHI","26.3","2017","6","24","1994-11-01"
+"13343","eb2c9e63-3a33-441e-aa95-462eaf97a371","00-0033969",NA,NA,"OdenIf00","ifeadi-odenigbo-1","4256","2974353",NA,"Ifeadi Odenigbo","ifeadi odenigbo","DE","MIN","26.8","2017","7","220","1994-04-08"
+"13344","2bbbcaf8-553d-4250-b0e7-24cd90b5604b","00-0033970",NA,NA,NA,NA,"4266","3894908",NA,"Shalom Luani","shalom luani","S","FA","26.5","2017","7","3","1994-08-15"
+"13347","cd0f4ef0-9914-4125-be4d-804a72350ceb","00-0033862","16548","2512","GonzZa00","zane-gonzalez-1","4233","3043234",NA,"Zane Gonzalez","zane gonzalez","PK","ARI","25.7","2017","7","224","1995-05-07"
+"13348","aecc1809-4628-4c3a-8b2b-c8f2858d2492","00-0033589","16757",NA,"MoorDa03",NA,"4274","4212909",NA,"David Moore","david moore","WR","SEA","26","2017","7","226","1995-01-15"
+"13351","24a58900-649f-4a29-a34c-26ff92b63be3","00-0033302",NA,NA,"ColbAd00","adrian-colbert-1","4277","2971699",NA,"Adrian Colbert","adrian colbert","S","NYG","27.3","2017","7","229","1993-10-06"
+"13352","bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4","00-0033532",NA,NA,"HarvJo01","josh-harvey-clemons-1","4286","2977645",NA,"Josh Harvey-Clemons","josh harvey-clemons","LB","WAS","26.9","2017","7","230","1994-02-20"
+"13353","c362b855-a313-4b46-ab26-a82082e1e8ee","00-0033973",NA,NA,"LeexEl00","elijah-lee-1","4255","3125073",NA,"Elijah Lee","elijah lee","LB","CLE","25","2017","7","232","1996-02-08"
+"13354","4ceb866c-8eaf-49b5-9043-56228e43a2e5","00-0033303","16712","2514","ButkHa00","harrison-butker-1","4227","3055899",NA,"Harrison Butker","harrison butker","PK","KCC","25.6","2017","7","233","1995-07-14"
+"13360","6a859e36-f31a-4a75-8cd2-905833042fcc","00-0033976",NA,NA,NA,NA,"4264","2973027",NA,"Treyvon Hester","treyvon hester","DE","PHI","28.4","2017","7","26","1992-09-21"
+"13364","0afca88b-83e7-49d6-80df-1f68b21cca9f","00-0033594","16754","2518","CarsCh00","chris-carson-1","4273","3919596",NA,"Chris Carson","chris carson","RB","SEA","26.4","2017","7","249","1994-09-16"
+"13365","2157df58-ca82-46cd-9897-261a80060292","00-0033595",NA,NA,"OConPa00","pat-oconnor-1","4241","2980206",NA,"Pat OConnor","pat oconnor","DE","TBB","27.2","2017","7","250","1993-11-01"
+"13366","ca6c7b35-6ae1-4ba7-ae98-1f26174e407d","00-0033798",NA,NA,"SchrMa00","mason-schreck-1","4229","2972331",NA,"Mason Schreck","mason schreck","TE","CIN","27.2","2017","7","251","1993-11-04"
+"13367","4316bbf5-0d02-4392-9fbc-33be86f87446","00-0033382",NA,NA,"CarrAu00",NA,"4416","2974339",NA,"Austin Carr","austin carr","WR","FA","27.1","2017",NA,NA,"1993-12-25"
+"13369","53fd9a69-1b10-4fd6-90e7-ee84cca9e041","00-0033338",NA,NA,"CartCe00",NA,"4362","3040470",NA,"Cethan Carter","cethan carter","TE","CIN","27.4","2017",NA,NA,"1993-09-05"
+"13370","a2368d42-9e6b-4268-883a-f23ef7ef5638","00-0033604",NA,NA,"HogaKr00",NA,"4526","4198679",NA,"Krishawn Hogan","krishawn hogan","WR","ARI","25.7","2017",NA,NA,"1995-05-12"
+"13375","30641ad1-3511-48a4-a63a-95c88846b705","00-0033306",NA,NA,"BoldVi00",NA,"4453","3056476",NA,"Victor Bolden","victor bolden","WR","DET","25.8","2017",NA,NA,"1995-04-04"
+"13377","2a443351-5e63-4a49-819e-912b51a745f2","00-0033375","16556",NA,NA,NA,"4351","3134353",NA,"Tim Patrick","tim patrick","WR","DEN","27.2","2017",NA,NA,"1993-11-23"
+"13378","6249d2c0-75dc-4586-943b-1c103a9eb419","00-0033308","17058","2525","BreiMa00",NA,"4455","3049916",NA,"Matt Breida","matt breida","RB","MIA","25.9","2017",NA,NA,"1995-02-28"
+"13382","52735659-a294-4f64-a7f4-3591450834e5","00-0033611",NA,NA,"SealRi00",NA,"4531","3051806",NA,"Ricky Seals-Jones","ricky seals-jones","TE","KCC","25.9","2017",NA,NA,"1995-03-15"
+"13384","b8033c75-de94-46df-a645-284f419c4497","00-0033373",NA,NA,"MizzTa00",NA,"4349","3048680",NA,"Taquan Mizzell","taquan mizzell","RB","NYG","27.3","2017",NA,NA,"1993-10-21"
+"13387","fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c","00-0032980",NA,NA,NA,NA,"3445","2971718",NA,"Marcus Johnson","marcus johnson","WR","FA","26.5","2016",NA,NA,"1994-08-05"
+"13388","d3e192b5-4523-4d65-94e0-a1fb164b6542","00-0033392",NA,NA,"LangHa00",NA,"4426","2570996",NA,"Harvey Langi","harvey langi","LB","NYJ","28.4","2017",NA,NA,"1992-09-24"
+"13389","e23505d9-b677-4a86-ba17-564c165a6e66","00-0033672",NA,NA,NA,NA,"4588","2972092",NA,"Kyle Sloter","kyle sloter","QB","LVR","27","2017",NA,NA,"1994-02-07"
+"13391","ad2a1d03-020b-487a-bd5f-7ca9fbc250fe","00-0033387","16527",NA,"HollJa03",NA,"4421","3125404",NA,"Jacob Hollister","jacob hollister","TE","SEA","27.2","2017",NA,NA,"1993-11-18"
+"13392","4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4","00-0032094",NA,NA,"AdamTy00",NA,"2613","3895228",NA,"Tyrell Adams","tyrell adams","LB","HOU","28.8","2016",NA,NA,"1992-04-11"
+"13396","7574eb56-a34a-419e-9682-c4788cfe2019","00-0033258",NA,NA,NA,NA,"4323","3052166",NA,"Darrell Daniels","darrell daniels","TE","ARI","26.2","2016",NA,NA,"1994-11-22"
+"13397","fa8fbc2f-5160-4aaa-8f86-bbba666368a3","00-0033649",NA,NA,"NacuKa00",NA,"4564","3053804",NA,"Kai Nacua","kai nacua","S","SFO","25.9","2017",NA,NA,"1995-03-03"
+"13398","4592fc87-9864-452d-8a19-5d4df714658f","00-0033379",NA,NA,NA,NA,"4355","3915403",NA,"Tim White","tim white","WR","FA","26.5","2017",NA,NA,"1994-07-15"
+"13402","eceef7ad-494e-4a84-a6d6-e7253fb554f0","00-0033242",NA,NA,"GracJe00",NA,"4311","3051924",NA,"Jermaine Grace","jermaine grace","LB","FA","27.2","2017",NA,NA,"1993-11-08"
+"13403","a8c79523-3d0e-48dd-b4c6-e3d8afd24a13","00-0033702","16910","2527","KooxYo00",NA,"4666","3049899",NA,"Younghoe Koo","younghoe koo","PK","ATL","26.5","2017",NA,NA,"1994-08-03"
+"13404","e5b8c439-a48a-4f83-b63b-1a4d30e04cd3","00-0033699","16483","2625","EkelAu00",NA,"4663","3068267",NA,"Austin Ekeler","austin ekeler","RB","LAC","25.7","2017",NA,NA,"1995-05-17"
+"13406","5f5fd1a9-1085-404b-a978-426a8895fb83","00-0033366",NA,NA,"AdebQu00",NA,"4342","3051869",NA,"Quincy Adeboyejo","quincy adeboyejo","WR","NEP","25.7","2017",NA,NA,"1995-05-26"
+"13407","d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2","00-0033435",NA,NA,"BordBr00",NA,"4439","3048663",NA,"Breon Borders","breon borders","CB","TEN","25.5","2017",NA,NA,"1995-07-22"
+"13410","fdc01035-18e4-4928-808f-26ee414948d4","00-0032480",NA,NA,NA,NA,"3637","2576040",NA,"Eddie Yarbrough","eddie yarbrough","DE","MIN","27.8","2016",NA,NA,"1993-04-24"
+"13411","2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170","00-0033742",NA,NA,"SwooTy00",NA,"4678","3046705",NA,"Tyrone Swoopes","tyrone swoopes","TE","WAS","26.2","2017",NA,NA,"1994-11-14"
+"13412","a8c96abf-a911-47a0-ac16-dd51a8782b5e","00-0033681","16864",NA,"ColeKe00",NA,"4622","3071572",NA,"Keelan Cole","keelan cole","WR","JAC","27.8","2017",NA,NA,"1993-04-20"
+"13414","972f93d7-158b-4464-b119-952f298cea52","00-0032521",NA,NA,NA,NA,"3546","2980383",NA,"Mike Hilton","mike hilton","CB","PIT","26.9","2016",NA,NA,"1994-03-09"
+"13416","0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c","00-0033275","16841",NA,NA,NA,"4335","3051308",NA,"PJ Walker","pj walker","QB","CAR","25.9","2017",NA,NA,"1995-02-26"
+"13418","5aba3610-ab55-4922-ac46-806ded5eb8bf","00-0033307","17066",NA,"BourKe00",NA,"4454","3045523",NA,"Kendrick Bourne","kendrick bourne","WR","SFO","25.5","2017",NA,NA,"1995-08-04"
+"13423","1817f16b-5ff3-4d64-8d7a-f64e02f5a033","00-0033765",NA,NA,"ColeDy00",NA,"4606","2986109",NA,"Dylan Cole","dylan cole","LB","HOU","26.7","2017",NA,NA,"1994-05-19"
+"13424","3c8a55dd-20a8-4375-b711-49eb5e6e1d0e","00-0033357","17115",NA,"HillTa00",NA,"4381","2468609",NA,"Taysom Hill","taysom hill","QB","NOS","30.4","2017",NA,NA,"1990-08-23"
+"13426","7c1a8ecd-e3e5-4123-b89f-36e58b99126f","00-0033445",NA,NA,"MorrNi00",NA,"4449","4232830",NA,"Nicholas Morrow","nicholas morrow","LB","LVR","25.6","2017",NA,NA,"1995-07-10"
+"13427","7c9c7800-69d0-459b-812b-a07ac48e9f2a","00-0033757","16502",NA,NA,NA,"4602","2975674",NA,"Robert Tonyan","robert tonyan","TE","GBP","26.8","2017",NA,NA,"1994-04-30"
+"13430","9164fac3-2540-4f64-ba29-96fb0ce1c7eb","00-0033400",NA,NA,"HaacMa00",NA,"4390","3043237",NA,"Matt Haack","matt haack","PN","MIA","26.5","2017",NA,NA,"1994-07-25"
+"13431","8237c04f-a1c4-4c31-b5de-3afb3c81389f","00-0033269",NA,NA,"SancRi00",NA,"4331","3914922",NA,"Rigoberto Sanchez","rigoberto sanchez","PN","IND","26.4","2017",NA,NA,"1994-09-08"
+"13434","36248cd5-f747-4960-b66a-a5d4f481e098","00-0032667",NA,NA,NA,NA,"3526","2574891",NA,"Roy Robertson-Harris","roy robertson-harris","DE","CHI","27.5","2016",NA,NA,"1993-07-23"
+"13435","8905d02c-c7f7-4a50-901b-6eee71e39cc6","00-0032566",NA,NA,NA,NA,"3676","2982880",NA,"Trevon Coley","trevon coley","DE","NYJ","26.6","2016",NA,NA,"1994-07-13"
+"13438","5cc0007b-4561-4ff2-8fa7-242bec47dc5a","00-0033696",NA,NA,"CulkSe00",NA,"4660","2971426",NA,"Sean Culkin","sean culkin","TE","BAL","27.6","2017",NA,NA,"1993-06-11"
+"13439","3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5","00-0033234",NA,NA,"OdomCh00",NA,"4304","3042361",NA,"Chris Odom","chris odom","DE","FA","26.4","2017",NA,NA,"1994-09-16"
+"13440","8e06b4a9-d210-465c-80b7-9bae20dc64b2","00-0033410",NA,NA,NA,NA,"4359","3052883",NA,"Cole Luke","cole luke","CB","WAS","25.6","2017",NA,NA,"1995-06-30"
+"13443","1fc0af83-3c6e-4f4d-aadf-233e501c7241","00-0033819",NA,NA,"CartJa02",NA,"4689","3051925",NA,"Jamal Carter","jamal carter","S","ARI","26.8","2017",NA,NA,"1994-04-12"
+"13444","d3ba3eca-c71d-449b-b5f1-7397a9cab3f1","00-0033716",NA,NA,"MunsCa00",NA,"4643","3047530",NA,"Calvin Munson","calvin munson","LB","MIA","26.1","2017",NA,NA,"1994-12-27"
+"13445","d6647491-8a3c-4f9f-999c-823823bd478d","00-0033421",NA,NA,"AuclAn00",NA,"4468","4081127",NA,"Antony Auclair","antony auclair","TE","TBB","27.7","2017",NA,NA,"1993-05-28"
+"13446","2c33ff53-6c16-46b5-a3b0-20db70fe430a","00-0033344",NA,NA,"NickHa02",NA,"4368","2978211",NA,"Hardy Nickerson","hardy nickerson","LB","MIN","27.1","2017",NA,NA,"1994-01-05"
+"13447","bfe704fc-266d-4f6a-afbf-c903b5934e23","00-0033336",NA,NA,"WilsEr00",NA,"4413","3056916",NA,"Eric Wilson","eric wilson","LB","MIN","26.3","2017",NA,NA,"1994-09-26"
+"13448","54814199-dd18-408f-9dc4-ce59a121431b","00-0033381",NA,NA,"ButlAd00",NA,"4415","2972342",NA,"Adam Butler","adam butler","DT","NEP","26.8","2017",NA,NA,"1994-04-12"
+"13452","9b4e4d1d-ad88-4c10-b1c0-b9116755c184","00-0033838",NA,NA,"EdmuTr00",NA,"4696","2970090",NA,"Trey Edmunds","trey edmunds","RB","PIT","26.1","2017",NA,NA,"1994-12-30"
+"13453","eddd3f47-fdd1-4d53-9e31-93b46624fd0f","00-0032649",NA,NA,NA,NA,"3728","3040661",NA,"Brian Price","brian price","DT","GBP","26.6","2017",NA,NA,"1994-06-24"
+"13455","cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5","00-0033376",NA,NA,"RicaPa00",NA,"4353","2975417",NA,"Patrick Ricard","patrick ricard","RB","BAL","26.7","2017",NA,NA,"1994-05-27"
+"13456","593d31fd-212e-47a5-b3cc-0793cf075a98","00-0033430",NA,NA,"MabiGr00",NA,"4476","2979515",NA,"Greg Mabin","greg mabin","CB","JAC","26.6","2017",NA,NA,"1994-06-25"
+"13460","32b5fb32-1fcf-4955-9621-669c246a9fd3","00-0033598",NA,NA,"AnkoEl00",NA,"4604","3008150",NA,"Eli Ankou","eli ankou","DT","DAL","26.7","2017",NA,NA,"1994-06-08"
+"13461","93d10760-436e-4638-b506-a5c655ed5365","00-0033420",NA,NA,"PaynDo00",NA,"4352","3048402",NA,"Donald Payne","donald payne","LB","FA","26.6","2017",NA,NA,"1994-07-12"
+"13463","3513168f-e8ec-4dc8-984d-c305758d2e38","00-0033399",NA,NA,"AlleCh02",NA,"4389","2975680",NA,"Chase Allen","chase allen","LB","FA","27.4","2017",NA,NA,"1993-08-29"
+"13465","1d1d59bc-ed91-4ed6-adf3-f40d0e296554","00-0033642",NA,NA,"BellB.00",NA,"4558","2970622",NA,"BJ Bello","bj bello","LB","LAC","26.3","2017",NA,NA,"1994-10-31"
+"13466","0b06c168-c660-440a-922e-954ac15c0df0","00-0032627",NA,NA,NA,NA,"3444","2970181",NA,"James Burgess","james burgess","LB","GBP","26.9","2016",NA,NA,"1994-03-09"
+"13468","7757384a-6b03-41fb-9c77-3c016a968d1c","00-0032560",NA,NA,NA,NA,"3714","2579163",NA,"Charles Washington","charles washington","S","ARI","27.9","2016",NA,NA,"1993-03-10"
+"13470","cbfb7144-357e-4feb-82d7-a6104fdbf908","00-0033393",NA,NA,"MoorKe03",NA,"4427","4218312",NA,"Kenny Moore","kenny moore","CB","IND","25.4","2017",NA,NA,"1995-08-23"
+"13474","09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1","00-0033746",NA,NA,"BarrAl00",NA,"4594","2976114",NA,"Alex Barrett","alex barrett","DE","SFO","27","2017",NA,NA,"1994-02-06"
+"13476","fd25a007-dedb-42db-a31e-55dcd5e17967","00-0033763",NA,NA,"BaylEv00",NA,"4605","2971280",NA,"Evan Baylis","evan baylis","TE","FA","27.2","2017",NA,NA,"1993-11-18"
+"13479","86099301-67d0-4370-8e42-d14f34bbbb91","00-0033697",NA,NA,"DaviMi03",NA,"4661","3053795",NA,"Michael Davis","michael davis","CB","LAC","26.1","2017",NA,NA,"1995-01-06"
+"13488","7fc949b6-a1cb-4f9d-a06d-b65773409a44","00-0033251","16972",NA,NA,NA,"4319","2978109",NA,"Zach Pascal","zach pascal","WR","IND","26.1","2017",NA,NA,"1994-12-18"
+"13491","35150d4a-0dca-4daa-91b3-ffc46d44d1b8","00-0033770",NA,NA,"HardJu01",NA,"4611","2970625",NA,"Justin Hardee","justin hardee","CB","NOS","27","2017",NA,NA,"1994-02-07"
+"13502","1fb9a153-f1e0-4396-81fd-c3b1d331338f","00-0031636",NA,NA,NA,NA,"2859","2574009",NA,"Justin Hamilton","justin hamilton","DT","DAL","27.5","2016",NA,NA,"1993-07-27"
+"13503","11b9bcde-b2c8-412b-9689-4420182ca928","00-0033481",NA,NA,"KempMa00",NA,"4491","3046399",NA,"Marcus Kemp","marcus kemp","WR","KCC","25.5","2017",NA,NA,"1995-08-14"
+"13504","be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3","00-0032934",NA,NA,NA,NA,"3841","2969422",NA,"Tony McRae","tony mcrae","CB","DET","27.7","2016",NA,NA,"1993-05-03"
+"13505","1283923a-9716-4936-920a-a57f019bb2e8","00-0033094",NA,NA,NA,NA,"3895","2578369",NA,"Marvin Hall","marvin hall","WR","CLE","27.8","2016",NA,NA,"1993-04-10"
+"13510","a0498a95-9dc3-4df5-8f51-a1564fb3de57","00-0033006",NA,NA,NA,NA,"3852","2978308",NA,"Jaydon Mickens","jaydon mickens","WR","TBB","26.8","2016",NA,NA,"1994-04-21"
+"13512","0043c962-e726-4ed2-8aa3-b0eb5cdc5567","00-0033408",NA,NA,"CoxxBr01",NA,"4357","2980098",NA,"Bryan Cox","bryan cox","DE","BUF","26.6","2017",NA,NA,"1994-06-25"
+"13529","2d52ede5-1c65-4f18-a8ac-9306192ef625","00-0033266",NA,NA,NA,NA,"4330","2971830",NA,"JoJo Natson","jojo natson","WR","CLE","27","2016",NA,NA,"1994-02-01"
+"13531","779bef9f-4c2c-409f-9079-784e03645eea","00-0031512",NA,NA,"WhitJe02",NA,"3016","2574557",NA,"Jermaine Whitehead","jermaine whitehead","S","FA","27.9","2016",NA,NA,"1993-03-12"
+"13536","983aee62-70d8-4d39-a857-da6fee82bef1","00-0033635",NA,NA,"IrviIs00",NA,"4552","3043197",NA,"Isaiah Irving","isaiah irving","LB","ARI","26.6","2017",NA,NA,"1994-06-09"
+"13537","d38bd9b4-1927-4cca-84da-5c7dd5b21716","00-0033324",NA,NA,"BoweTa00",NA,"4402","3042726",NA,"Tashawn Bower","tashawn bower","LB","NEP","26","2017",NA,NA,"1995-02-18"
+"13543","5554177a-c14b-4931-85c6-fc302eb6770a","00-0033659",NA,NA,"JoneJo05",NA,"4572","2974344",NA,"Joseph Jones","joseph jones","LB","DEN","26.9","2017",NA,NA,"1994-02-21"
+"13544","ee8800ba-af54-4d69-9182-63fd0f789551","00-0033434",NA,NA,"WilsJe00",NA,"4480","3045380",NA,"Bobo Wilson","bobo wilson","WR","FA","26","2017",NA,NA,"1995-01-25"
+"13547","bf21bd83-9c97-4faf-97be-859f033848e2","00-0033503",NA,NA,NA,NA,"4503","3916144",NA,"Art Maulet","art maulet","CB","NYJ","27.6","2017",NA,NA,"1993-07-13"
+"13553","46e11bbc-8d8a-4b32-96a0-d059472b8fc6","00-0033405",NA,NA,"McTyTo00",NA,"4395","3058965",NA,"Torry McTyer","torry mctyer","CB","WAS","25.8","2017",NA,NA,"1995-04-10"
+"13559","8b44e3b8-81ae-4f02-b598-965872d12816","00-0033403",NA,NA,"MalvCa00",NA,"4393","2981511",NA,"Cameron Malveaux","cameron malveaux","LB","CLE","26.4","2017",NA,NA,"1994-08-22"
+"13562","8bfbee63-feb4-4862-b3c8-08d2f65c8b5f","00-0033535",NA,NA,"RossDa02",NA,"4617","4220624",NA,"Daniel Ross","daniel ross","DT","JAC","27.9","2017",NA,NA,"1993-03-05"
+"13564","f61e6429-3f9b-478c-8697-e00fe813ce9c","00-0033138",NA,NA,NA,NA,"3909","2582139",NA,"Sam Ficken","sam ficken","PK","NYJ","28.1","2015",NA,NA,"1992-12-14"
+"13565","b14bcb8f-a563-4b68-8a4f-5ef7da8b181d","00-0032633",NA,NA,NA,NA,"3720","2576755",NA,"Reggie Gilbert","reggie gilbert","LB","FA","27.8","2016",NA,NA,"1993-04-01"
+"13585","3885b40b-c31b-4cd6-a0fd-3d24bede2771","00-0034052",NA,NA,"ZylsBr00",NA,"4878","4294520",NA,"Brandon Zylstra","brandon zylstra","WR","CAR","27.9","2018",NA,NA,"1993-03-25"
+"13589","3069db07-aa43-4503-ab11-2ae5c0002721","00-0034857","17298","2885","AlleJo02","josh-allen-7","4984","3918298",NA,"Josh Allen","josh allen","QB","BUF","24.7","2018","1","7","1996-05-21"
+"13590","30198d30-9769-4e10-ac86-b4c91d940802","00-0034855","17237","2886","MayfBa00","baker-mayfield-1","4892","3052587",NA,"Baker Mayfield","baker mayfield","QB","CLE","25.8","2018","1","1","1995-04-14"
+"13591","5c079a21-ae9e-4b38-a69a-47706fa8dd67","00-0034343",NA,NA,"RoseJo01","josh-rosen-1","4863","3886377",NA,"Josh Rosen","josh rosen","QB","SFO","24","2018","1","10","1997-02-10"
+"13592","13d826c5-9b22-4e0a-a877-02d8c84c546b","00-0034869","17236",NA,"DarnSa00","sam-darnold-1","4943","3912547",NA,"Sam Darnold","sam darnold","QB","NYJ","23.7","2018","1","3","1997-06-05"
+"13593","e06a9c07-453a-4bb0-a7e9-2c3a64166dad","00-0034796","17233","2888","JackLa00","lamar-jackson-1","4881","3916387",NA,"Lamar Jackson","lamar jackson","QB","BAL","24.1","2018","1","32","1997-01-07"
+"13594","b88e39e6-3247-4f85-9909-c18d373eaeee","00-0034412",NA,NA,"FalkLu00","luke-falk-1","5108","3052061",NA,"Luke Falk","luke falk","QB","FA","26.1","2018","6","199","1994-12-28"
+"13595","be4ca0ad-f3d6-4b98-a37f-79d0cbc06390","00-0034771",NA,NA,"RudoMa00","mason-rudolph-1","4972","3116407",NA,"Mason Rudolph","mason rudolph","QB","PIT","25.5","2018","3","76","1995-07-17"
+"13596","b6f50b3b-0b8b-4318-be6d-b6677616a3c6","00-0034126",NA,NA,NA,NA,"5228","3040507",NA,"JT Barrett","jt barrett","QB","FA","26","2018",NA,NA,"1995-01-23"
+"13598","f4808328-86e9-459d-a2bc-18e90c7d211e","00-0034401",NA,NA,"WhitMi01","mike-white-6","5089","3051381",NA,"Mike White","mike white","QB","NYJ","25.9","2018","5","171","1995-03-25"
+"13600","bd684ac3-89d5-4b6b-84df-2a4a9b04cae1","00-0034131",NA,NA,NA,NA,"5142","3040535",NA,"Kurt Benkert","kurt benkert","QB","ATL","25.5","2018",NA,NA,"1995-07-17"
+"13601","d11ad65e-9d24-4157-9f5b-ef8495bcc791","00-0034369",NA,NA,"LaulKy00",NA,"4996","3049872",NA,"Kyle Lauletta","kyle lauletta","QB","CLE","25.9","2018","4","108","1995-03-17"
+"13604","9811b753-347c-467a-b3cb-85937e71e2b9","00-0034844","17240","2860","BarkSa00","saquon-barkley-1","4866","3929630",NA,"Saquon Barkley","saquon barkley","RB","NYG","24","2018","1","2","1997-02-07"
+"13605","1c42cbe4-115b-4f28-ac50-e9bc977371b2","00-0034358",NA,NA,"GuicDe00","derrius-guice-1","4949","3843750",NA,"Derrius Guice","derrius guice","RB","FA","23.6","2018","2","59","1997-06-21"
+"13606","15965c39-17be-4338-911a-8f337f48a3ce","00-0034816","17243","2867","JoneRo01","ronald-jones-4","5052","3912550",NA,"Ronald Jones","ronald jones","RB","TBB","23.5","2018","2","38","1997-08-03"
+"13607","1376da0d-0448-4a37-bd99-842c4580eeda","00-0034845","17309","2865","MichSo00","sony-michel-1","4962","3128721",NA,"Sony Michel","sony michel","RB","NEP","26","2018","1","31","1995-02-17"
+"13608","2b119688-83b5-4d19-acbf-fa2087035fae","00-0034750","17308",NA,"PennRa00","rashaad-penny-1","4985","3139925",NA,"Rashaad Penny","rashaad penny","RB","SEA","25","2018","1","27","1996-02-02"
+"13610","4bd60b33-9fbf-4156-ba2b-8264ac37b418","00-0034791","17246","2863","ChubNi00","nick-chubb-1","4988","3128720",NA,"Nick Chubb","nick chubb","RB","CLE","25.1","2018","2","35","1995-12-27"
+"13611","23b17031-de21-412d-8182-5a4bca1049a1","00-0034457","17248",NA,"AdamJo03",NA,"5136","3932420",NA,"Josh Adams","josh adams","RB","NYJ","24.3","2018",NA,NA,"1996-10-29"
+"13612","6faa5a10-56b8-4dd0-b8de-0cf1378b6726","00-0034349","17247","2868","JohnKe06","kerryon-johnson-1","5068","3916925",NA,"Kerryon Johnson","kerryon johnson","RB","DET","23.6","2018","2","43","1997-06-30"
+"13613","fd4241f9-ab42-4dba-a701-455b896eca28","00-0034331","17271",NA,"SamuJa00","jaylen-samuels-1","5107","3116721",NA,"Jaylen Samuels","jaylen samuels","RB","PIT","24.5","2018","5","165","1996-07-20"
+"13614","8322b598-ab65-4b2c-8a54-af37f67a062d","00-0034109","17498","3032","LindPh00",NA,"5170","3052117",NA,"Phillip Lindsay","phillip lindsay","RB","DEN","26.5","2018",NA,NA,"1994-07-24"
+"13615","5df36deb-d147-42e9-9059-11cb86d35b43","00-0034432","17299",NA,"ScarBo01","bo-scarbrough-1","5112","3126367",NA,"Bo Scarbrough","bo scarbrough","RB","SEA","24.3","2018","7","236","1996-09-29"
+"13616","b120cb2d-04b8-4dd3-809e-92c9b4c29b0c","00-0034679",NA,NA,"WaltMa00","mark-walton-1","4997","3917846",NA,"Mark Walton","mark walton","RB","FA","23.8","2018","4","112","1997-03-29"
+"13617","82f459c4-bf23-4d60-9eb6-b062994f5517","00-0034838","17245",NA,"FreeRo00","royce-freeman-1","5046","3122672",NA,"Royce Freeman","royce freeman","RB","DEN","24.9","2018","3","71","1996-02-24"
+"13619","27156b0b-e82d-4d02-8a04-ca1891d77110","00-0034808",NA,NA,"KellJo00","john-kelly-6","5076","3915381",NA,"John Kelly","john kelly","RB","CLE","24.3","2018","6","176","1996-10-04"
+"13620","e6c3f896-0223-4fc2-be09-c959ea4a475c","00-0034440","17300","2970","JackJu01","justin-jackson-5","5131","3116136",NA,"Justin Jackson","justin jackson","RB","LAC","25.8","2018","7","251","1995-04-22"
+"13621","c6728282-0648-4926-a07c-be64f3ff5e0d","00-0034799","17250",NA,"BallKa00","kalen-ballage-1","4994","3128774",NA,"Kalen Ballage","kalen ballage","RB","LAC","25.1","2018","4","131","1995-12-22"
+"13622","ed5bcd2c-6335-4c0b-93b7-2116684a9b02","00-0034367","17297","2948","HineNy00","nyheim-hines-1","5347","3916430",NA,"Nyheim Hines","nyheim hines","RB","IND","24.2","2018","4","104","1996-11-12"
+"13623","c2a19a09-74a2-4ace-8cc3-6dfb65070a70","00-0034301","17514","3091","WillDa10",NA,"5549","3115375",NA,"Darrel Williams","darrel williams","RB","KCC","25.8","2018",NA,NA,"1995-04-15"
+"13628","7fbf8067-075e-4db7-8090-6ead0e5b8910","00-0034221",NA,NA,"ThomRo05",NA,"5274","3121583",NA,"Roc Thomas","roc thomas","RB","FA","25.4","2018",NA,NA,"1995-09-02"
+"13629","926e2674-52d6-4cec-9991-46ee85cc8cfd","00-0034837","17258","2866","RidlCa00","calvin-ridley-1","4981","3925357",NA,"Calvin Ridley","calvin ridley","WR","ATL","26.1","2018","1","26","1994-12-20"
+"13630","b55ae5ba-593f-4560-9cab-14e10698e01d","00-0034348","17253","2862","SuttCo00","courtland-sutton-1","5045","3128429",NA,"Courtland Sutton","courtland sutton","WR","DEN","25.3","2018","2","40","1995-10-10"
+"13631","814aa074-fc61-4649-b7a1-098bd3a199fd","00-0034676","17254",NA,"WashJa00","james-washington-5","5024","3122449",NA,"James Washington","james washington","WR","PIT","24.8","2018","2","60","1996-04-02"
+"13632","6a23db75-021b-4808-99e6-21a33d34202b","00-0034521","17301","3077","LazaAl00",NA,"5185","3128390",NA,"Allen Lazard","allen lazard","WR","GBP","25.1","2018",NA,NA,"1995-12-11"
+"13633","ebcd87ce-218c-4144-810b-921c2f59d6e8","00-0034775","17268","2870","KirkCh01","christian-kirk-1","4950","3895856",NA,"Christian Kirk","christian kirk","WR","ARI","24.2","2018","2","47","1996-11-18"
+"13634","20d16690-560b-4a01-af20-8870ef07ea70","00-0034860","17264",NA,"PettDa00","dante-pettis-1","4992","3127306",NA,"Dante Pettis","dante pettis","WR","NYG","25.3","2018","2","44","1995-10-23"
+"13635","d8202e6d-d03b-4cd1-a793-ff8fd39d9755","00-0034827","17265","2876","MoorD.00","dj-moore-3","4983","3915416",NA,"DJ Moore","dj moore","WR","CAR","23.8","2018","1","24","1997-04-14"
+"13636","3da67e95-bd15-409f-b5de-b2feb54efda7","00-0034406",NA,NA,"CainDe00","deon-cain-1","5101","3728254",NA,"Deon Cain","deon cain","WR","BAL","24.5","2018","6","185","1996-08-09"
+"13637","0b97067d-9e06-4ec0-97b2-e1cb491e12a6","00-0034279","17307",NA,"St.BEq00","equanimeous-st-brown-1","5323","3932442",NA,"Equanimeous St Brown","equanimeous st brown","WR","GBP","24.3","2018","6","207","1996-09-30"
+"13638","18f0bd30-1432-4fae-9cb4-c212bad6d0bb","00-0034419",NA,NA,"BerrBr00","braxton-berrios-1","5121","3123075",NA,"Braxton Berrios","braxton berrios","WR","NYJ","25.3","2018","6","210","1995-10-06"
+"13639","bfaedf99-7618-4925-b362-90415c22a3b6","00-0034353","17255","2878","MillAn02","anthony-miller-6","5013","3050487",NA,"Anthony Miller","anthony miller","WR","CHI","26.3","2018","2","51","1994-10-09"
+"13640","71d9c2a0-81ee-4788-86bb-7ae326396e73","00-0034772",NA,NA,"CallAn00","antonio-callaway-1","5310","3915097",NA,"Antonio Callaway","antonio callaway","WR","KCC","24.1","2018","4","105","1997-01-09"
+"13641","f7ff7599-a175-4a0c-b887-3ae9e596fc64","00-0034407",NA,NA,NA,NA,"5096","3728262",NA,"Ray-Ray McCloud","ray-ray mccloud","WR","PIT","24.3","2018","6","13","1996-10-15"
+"13642","75a646ac-b2d2-42d9-91c7-3b00fdf71ef9","00-0034686","17306",NA,"TateAu00","auden-tate-1","5130","3921564",NA,"Auden Tate","auden tate","WR","CIN","24","2018","7","253","1997-02-03"
+"13644","8f249da2-2528-4f68-8587-4400c924aba4","00-0034426","17388",NA,"WimsJa00","javon-wims-1","5111","4035019",NA,"Javon Wims","javon wims","WR","CHI","26.4","2018","7","224","1994-09-11"
+"13645","c65b8d70-ac93-4782-996a-ef96fd11047c","00-0034765","17261",NA,"SmitTr03","trequan-smith-1","5026","3128451",NA,"TreQuan Smith","trequan smith","WR","NOS","25.1","2018","3","91","1996-01-07"
+"13646","9e174ff2-ca0e-4e6b-96f7-90f0088f7edd","00-0034764","17259","2879","GallMi00","michael-gallup-1","5038","4036348",NA,"Michael Gallup","michael gallup","WR","DAL","24.9","2018","3","81","1996-03-04"
+"13647","b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51","00-0034747",NA,NA,NA,NA,"4942","3046320",NA,"Marcell Ateman","marcell ateman","WR","FA","26.4","2018","7","10","1994-09-16"
+"13648","a4290c7e-ffc0-4f5b-a442-b1d821c24f88","00-0034653",NA,NA,"BurnDe00",NA,"5290","3932935",NA,"Deontay Burnett","deontay burnett","WR","PHI","23.3","2018",NA,NA,"1997-10-04"
+"13649","ccd5239f-e8ba-484c-acf5-af0bd9f6dadc","00-0034370","17470",NA,"HamiDa01","daesean-hamilton-1","4998","3057987",NA,"DaeSean Hamilton","daesean hamilton","WR","DEN","25.9","2018","4","113","1995-03-10"
+"13652","a964f59b-af2b-48e1-b64d-c376cc1d8c28","00-0034418","17262",NA,"WilsCe01","cedric-wilson-3","5113","4036335",NA,"Cedrick Wilson","cedrick wilson","WR","DAL","25.2","2018","6","208","1995-11-20"
+"13653","17f52030-0a86-408d-b7e3-194ed4374fbb","00-0034510","17458",NA,"FostRo01",NA,"5250","3054845",NA,"Robert Foster","robert foster","WR","WAS","26.7","2018",NA,NA,"1994-05-07"
+"13655","14b0de01-a0f1-491f-86fe-01f83478046d","00-0034512",NA,NA,"PhilCa01",NA,"5625","3124079",NA,"Cam Phillips","cam phillips","WR","FA","25.1","2018",NA,NA,"1995-12-16"
+"13656","9fd7fab6-1c26-418f-9696-e8dd0208d508","00-0034633",NA,NA,NA,NA,"5261","3045164",NA,"Jester Weah","jester weah","WR","CHI","26","2018",NA,NA,"1995-02-07"
+"13657","c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb","00-0034268",NA,NA,"MoorJM00","jmon-moore-2","5006","3051857",NA,"JMon Moore","jmon moore","WR","HOU","25.7","2018","4","133","1995-05-23"
+"13658","be898c2b-4780-4c33-a54b-e93ab2822bec","00-0034271",NA,NA,"LaslJo00","jordan-lasley-1","5070","3134302",NA,"Jordan Lasley","jordan lasley","WR","FA","24.2","2018","5","162","1996-11-13"
+"13659","775e71fb-96af-4831-af0c-78b2e89897ff","00-0034081",NA,NA,"MitcSt02",NA,"5132","3043225",NA,"Steven Mitchell","steven mitchell","WR","HOU","26.8","2018",NA,NA,"1994-05-02"
+"13662","40caae08-0389-4c59-b796-d924047f57f9","00-0034366","17490",NA,"CoutKe00","keke-coutee-1","5007","3915823",NA,"Keke Coutee","keke coutee","WR","HOU","24","2018","4","103","1997-01-14"
+"13663","74761635-c70b-4cbb-abcc-f882e5efae00","00-0034267",NA,NA,"ScotJa02","jaleel-scott-1","5005","4040792",NA,"Jaleel Scott","jaleel scott","WR","NYJ","25.9","2018","4","132","1995-02-23"
+"13664","35341f6c-bca9-427b-a8eb-f9a24a334184","00-0034339","17266",NA,"QuinTr00","trey-quinn-1","5139","3115365",NA,"Trey Quinn","trey quinn","WR","LVR","25.2","2018","7","256","1995-12-07"
+"13666","5226f6a9-a6af-45f9-93ec-669542f3cfc9","00-0034395",NA,NA,"FounDa00",NA,"5102","3120659",NA,"Daurice Fountain","daurice fountain","WR","IND","25.1","2018","5","159","1995-12-22"
+"13668","c2a7bd8a-d141-423a-8810-0988a59ff0b4","00-0034777","17292","2912","CharDJ00","dj-chark-1","4951","3115394",NA,"DJ Chark","dj chark","WR","JAC","24.4","2018","2","61","1996-09-23"
+"13669","82a7e1ff-019a-4f4b-aeb6-c41420e44891","00-0034867",NA,NA,"TurnMa00",NA,"5781","3115928",NA,"Malik Turner","malik turner","WR","DAL","25","2018",NA,NA,"1996-01-30"
+"13671","0618f387-9b72-4270-8b8f-dec4cccc9e4a","00-0034753","17269","2872","AndrMa00","mark-andrews-1","5012","3116365",NA,"Mark Andrews","mark andrews","TE","BAL","24.4","2018","3","86","1996-09-06"
+"13672","1012cbe0-7eba-4169-bfca-183a0204e1a7","00-0034829","17272","2906","GesiMi00","mike-gesicki-1","4993","3116164",NA,"Mike Gesicki","mike gesicki","TE","MIA","25.3","2018","2","42","1995-10-03"
+"13673","579d92e6-ab4f-43e0-803f-b2d5a54d106a","00-0034393",NA,NA,"FumaTr00","troy-fumagalli-2","5092","3045264",NA,"Troy Fumagalli","troy fumagalli","TE","DEN","26","2018","5","156","1995-02-17"
+"13674","e8029983-87cf-49a2-bc04-04c8233a0630","00-0034351","17270",NA,"GoedDa00",NA,"5022","3121023",NA,"Dallas Goedert","dallas goedert","TE","PHI","26.1","2018","2","49","1995-01-03"
+"13675","f0d17dfa-ebf3-416c-a8d2-c6bc30675103","00-0034439",NA,NA,"ConkTy00","tyler-conklin-1","5133","3122920",NA,"Tyler Conklin","tyler conklin","TE","MIN","25.5","2018","5","157","1995-07-30"
+"13676","7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8","00-0034798",NA,NA,"SmytDu00","durham-smythe-1","5008","3052897",NA,"Durham Smythe","durham smythe","TE","MIA","25.5","2018","4","123","1995-08-09"
+"13678","ed8a8fd2-df67-45e7-a34f-984afb82f6ea","00-0034365","17387",NA,"ThomIa00","ian-thomas-3","4995","4045305",NA,"Ian Thomas","ian thomas","TE","CAR","24.7","2018","4","101","1996-06-06"
+"13679","780a48de-d092-4e87-9c34-8d1b45a154cc","00-0034766","17536","2958","HernCh00","christopher-herndon-iv-1","5009","3123050",NA,"Chris Herndon","chris herndon","TE","NYJ","24.9","2018","4","107","1996-02-23"
+"13680","1b125fc4-5dd9-4eb9-a42f-048e61ca42b7","00-0034830","17283","2889","HursHa00","hayden-hurst-1","4973","3924365",NA,"Hayden Hurst","hayden hurst","TE","ATL","27.4","2018","1","25","1993-08-24"
+"13681","66313049-299d-4e58-beb9-8e051ab6548a","00-0034832",NA,NA,"ChubBr00","bradley-chubb-1","4967","3116733",NA,"Bradley Chubb","bradley chubb","LB","DEN","24.6","2018","1","5","1996-06-24"
+"13682","acc85868-4848-4de3-8e6f-5427e93c8d80","00-0034825",NA,NA,NA,NA,"5067","3843843",NA,"Arden Key","arden key","DE","LVR","24.7","2018","3","23","1996-05-03"
+"13683","e4114f9d-80da-4e39-bd12-cd9cf2c0d720","00-0034371",NA,NA,"HandDa00","dashawn-hand-1","5351","3126352",NA,"DaShawn Hand","dashawn hand","DE","DET","25.2","2018","4","114","1995-11-14"
+"13684","17d1f9ee-f65e-4c4d-bf73-a69b2fa17877","00-0034834",NA,NA,"HubbSa00","sam-hubbard-1","5015","3121416",NA,"Sam Hubbard","sam hubbard","DE","CIN","25.6","2018","3","77","1995-06-29"
+"13685","eacc232b-701d-4a67-9ce5-61b9b931fd42","00-0034807",NA,NA,"OkorOg00","ogbonnia-okoronkwo-1","5075","3052667",NA,"Ogbonnia Okoronkwo","ogbonnia okoronkwo","LB","LAR","25.8","2018","5","160","1995-04-24"
+"13686","a4ce9a04-668a-4120-938b-3f05983cc0f3","00-0034813",NA,NA,"LawlJu00","justin-lawler-1","5307","3040109",NA,"Justin Lawler","justin lawler","LB","LAR","26.1","2018","7","244","1994-12-23"
+"13687","7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9","00-0034359",NA,NA,"LewiTy00","tyquan-lewis-1","5057","3040513",NA,"Tyquan Lewis","tyquan lewis","DT","IND","26","2018","2","64","1995-01-30"
+"13688","9c2c9c29-516a-4e0f-8dcd-319291823370","00-0034344",NA,NA,"DaveMa00","marcus-davenport-1","4965","3124058",NA,"Marcus Davenport","marcus davenport","DE","NOS","24.4","2018","1","14","1996-09-04"
+"13689","1146776b-e591-4f81-8a56-459c1845bead","00-0034215",NA,NA,NA,NA,"5212","3127274",NA,"Hercules Mataafa","hercules mataafa","DT","MIN","25.4","2018",NA,NA,"1995-09-18"
+"13690","66a67b5d-500d-46e8-90c6-e2f127d38190","00-0034381",NA,NA,"SweaJo00","josh-sweat-1","4999","3693166",NA,"Josh Sweat","josh sweat","DE","PHI","23.8","2018","4","130","1997-03-29"
+"13691","81b159d5-86ac-4130-a87d-dbd5e0b211b3","00-0034746",NA,NA,NA,NA,"5002","3045220",NA,"Maurice Hurst","maurice hurst","DT","LVR","25.7","2018","5","3","1995-05-09"
+"13692","503eb9a7-83ed-4b96-b0f2-7afe4920bde9","00-0034773",NA,NA,"VeaxVi00","vita-vea-1","4969","3134362",NA,"Vita Vea","vita vea","DT","TBB","26","2018","1","12","1995-02-05"
+"13693","840b2183-02bc-4a2a-b415-c62ceecca1b2","00-0034782",NA,NA,"PhilHa00","harrison-phillips-1","5049","3117255",NA,"Harrison Phillips","harrison phillips","DT","BUF","25","2018","3","96","1996-01-25"
+"13694","8442c8f8-7fbb-4a0b-8407-355c2dfdf72c","00-0034397",NA,NA,"SettTi00","tim-settle-1","5366","3929956",NA,"Tim Settle","tim settle","DT","WAS","23.6","2018","5","163","1997-07-11"
+"13695","3971d35c-17f6-400e-8970-86bbf92cc744","00-0034842",NA,NA,"BryaTa00","taven-bryan-1","4975","3115249",NA,"Taven Bryan","taven bryan","DT","JAC","24.9","2018","1","29","1996-03-11"
+"13696","3291c582-9377-4bc2-8ee5-61d887873797","00-0034874","17311",NA,"SmitRo07","roquan-smith-1","4960","3915189",NA,"Roquan Smith","roquan smith","LB","CHI","23.8","2018","1","8","1997-04-08"
+"13697","88976fed-0ffd-40a8-98ea-0c6c55010000","00-0034673","17342",NA,"EdmuTr01","tremaine-edmunds-1","4968","3929950",NA,"Tremaine Edmunds","tremaine edmunds","LB","BUF","22.8","2018","1","16","1998-05-02"
+"13698","c3e579cc-6693-47c4-91a9-b688935ae048","00-0034835",NA,NA,"JeffMa00","malik-jefferson-1","5016","3821576",NA,"Malik Jefferson","malik jefferson","LB","LAC","24.2","2018","3","78","1996-11-15"
+"13699","0813c5eb-608c-4a6d-8bfb-ed3538767e90","00-0034743",NA,NA,"EvanRa01","rashaan-evans-1","4978","3126349",NA,"Rashaan Evans","rashaan evans","LB","TEN","24.2","2018","1","22","1996-11-08"
+"13700","60d5e71e-e127-463b-8e6b-26a7dac3db76","00-0034828",NA,NA,"LandHa00","harold-landry-1","5030","3122793",NA,"Harold Landry","harold landry","LB","TEN","24.7","2018","2","41","1996-06-05"
+"13701","aafe4b32-1a8f-4691-9702-3141c14ff5c8","00-0034781",NA,NA,"ODanDo00","dorian-odaniel-1","5033","3045132",NA,"Dorian ODaniel","dorian odaniel","LB","KCC","26.4","2018","3","100","1994-09-04"
+"13702","a473e7a2-8f31-43ad-b87f-c39e6635f1b0","00-0034368",NA,NA,"JeweJo00","josey-jewell-1","5334","3040150",NA,"Josey Jewell","josey jewell","LB","DEN","26.1","2018","4","106","1994-12-25"
+"13703","074acf5e-748f-4d42-9875-0090f1480bec","00-0034360",NA,NA,"CartLo01","lorenzo-carter-1","5021","3128715",NA,"Lorenzo Carter","lorenzo carter","LB","NYG","25.1","2018","3","66","1995-12-10"
+"13704","40941261-cfd0-4e8d-b895-21fb7e20b407","00-0034350",NA,NA,"NwosUc00","uchenna-nwosu-1","5061","3120358",NA,"Uchenna Nwosu","uchenna nwosu","LB","LAC","24.1","2018","2","48","1996-12-28"
+"13705","7c7d286f-5c3f-4fe1-864d-9351499bd530","00-0034755",NA,NA,"GrifSh01","shaquem-griffin-1","5003","3054029",NA,"Shaquem Griffin","shaquem griffin","LB","SEA","25.5","2018","5","141","1995-07-20"
+"13706","53e7c80e-8bf9-4ab2-ab3e-80cb556ea784","00-0034797","17356",NA,"BakeJe00","jerome-baker-1","5056","3915507",NA,"Jerome Baker","jerome baker","LB","MIA","24.1","2018","3","73","1996-12-25"
+"13707","aefdc3d3-0851-4782-b298-f06f137d42c9","00-0034856",NA,NA,"WardDe02","denzel-ward-3","4964","3915535",NA,"Denzel Ward","denzel ward","CB","CLE","23.8","2018","1","4","1997-04-28"
+"13708","fbf2dd5f-b324-424d-8cd3-335b0d695c6a","00-0034751",NA,NA,"JackJo01","joshua-jackson-3","5029","3144984",NA,"Josh Jackson","josh jackson","CB","GBP","24.8","2018","2","45","1996-04-03"
+"13709","83d45661-2687-4ca9-ac45-91beac7b7082","00-0034357",NA,NA,"OlivIs00","isaiah-oliver-1","5044","3915437",NA,"Isaiah Oliver","isaiah oliver","CB","ATL","24.3","2018","2","58","1996-09-30"
+"13710","2df83b38-7b2b-4aea-91ee-bfc5974486a1","00-0034778",NA,NA,"DaviCa02","carlton-davis-1","5054","3916923",NA,"Carlton Davis","carlton davis","CB","TBB","24.1","2018","2","63","1996-12-31"
+"13711","3cd88d26-6c80-47a1-a044-9164fa96459a","00-0034514",NA,NA,"WallLe00",NA,"5153","3133440",NA,"Levi Wallace","levi wallace","CB","BUF","25.6","2018",NA,NA,"1995-06-12"
+"13713","1aede0b9-557c-444d-9a2f-4cc690e1563c","00-0034789",NA,NA,"FitzMi00","minkah-fitzpatrick-1","4963","3925345",NA,"Minkah Fitzpatrick","minkah fitzpatrick","S","PIT","24.2","2018","1","11","1996-11-17"
+"13714","01c52412-7257-4213-b8b3-effa7c5dd5c7","00-0034790","17310",NA,"JameDe00","derwin-james-1","4971","3691739",NA,"Derwin James","derwin james","S","LAC","24.5","2018","1","17","1996-08-03"
+"13715","9b96ef63-04bd-41ae-b59c-acc0f2561d19","00-0034779",NA,NA,"HarrRo02","ronnie-harrison-1","5025","3859006",NA,"Ronnie Harrison","ronnie harrison","S","CLE","23.8","2018","3","93","1997-04-18"
+"13716","e4739abd-d524-4857-85fc-ed4845462817","00-0034858",NA,NA,"EdmuTe00","terrell-edmunds-1","4974","3124067",NA,"Terrell Edmunds","terrell edmunds","S","PIT","24","2018","1","28","1997-01-20"
+"13717","bb9db665-7f9f-425d-9e4b-df78c65c8b97","00-0034361",NA,NA,"ReidJu00","justin-reid-1","5036","3931399",NA,"Justin Reid","justin reid","S","HOU","24","2018","3","68","1997-02-15"
+"13718","7bb70550-c28a-4e47-9a13-cc0c0fef8b38","00-0034161","17420",NA,"CarlDa00","daniel-carlson-1","5095","3051909",NA,"Daniel Carlson","daniel carlson","PK","LVR","26","2018","5","167","1995-01-23"
+"13719","1c50997f-c56e-47f9-a750-33ab100ed28b","00-0034173",NA,NA,NA,NA,"5189","4034949",NA,"Eddy Pineiro","eddy pineiro","PK","CHI","25.4","2018",NA,NA,"1995-09-13"
+"13722","43e8a6ac-d451-4dbd-b145-797764f91494","00-0033658","16638","2643","JarwBl00",NA,"4571","2991767",NA,"Blake Jarwin","blake jarwin","TE","DAL","26.5","2017",NA,NA,"1994-07-16"
+"13723","0a1be8da-5839-4768-bfe5-9fec74908268","00-0034333",NA,NA,"PaynDa00","daron-payne-1","4976","3925354",NA,"DaRon Payne","daron payne","DT","WAS","23.7","2018","1","13","1997-05-27"
+"13724","4aae1781-1eec-48c0-b41f-e4fee61c3c32","00-0034286","17303",NA,"JameRi00","richie-james-1","5137","3122899",NA,"Richie James","richie james","WR","SFO","25.8","2018","7","240","1995-04-05"
+"13726","d8d9b161-7ef4-42bf-89b7-7edf806a0ad1","00-0034681","17496","2980","EdmoCh00",NA,"5000","3119195",NA,"Chase Edmonds","chase edmonds","RB","ARI","24.8","2018","4","134","1996-04-13"
+"13727","b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc","00-0034674","17351",NA,"VandLe00","leighton-vander-esch-1","4980","3138677",NA,"Leighton Vander Esch","leighton vander esch","LB","DAL","24","2018","1","19","1997-02-09"
+"13730","db9fa46f-f0f6-40b8-a207-60d46173d7e1","00-0034728",NA,NA,"AlexJa00","jaire-alexander-1","4979","3895429",NA,"Jaire Alexander","jaire alexander","CB","GBP","24","2018","1","18","1997-02-09"
+"13731","1f181c47-ad84-4758-a295-4c4f5c56120f","00-0034843",NA,NA,"HughMi00","mike-hughes-4","4982","3895841",NA,"Mike Hughes","mike hughes","CB","MIN","25","2018","1","30","1996-02-11"
+"13732","9d8effd8-9693-4b7a-b235-cf1d5124af64","00-0034064",NA,NA,"WadmCo00",NA,"4954","3050015",NA,"Colby Wadman","colby wadman","PN","FA","25.8","2018",NA,NA,"1995-04-19"
+"13733","f9a138e3-829d-442f-8345-43d1cdbac225","00-0034846","17385",NA,"LeonDa00",NA,"4990","3056362",NA,"Darius Leonard","darius leonard","LB","IND","25.5","2018","2","36","1995-07-27"
+"13734","54074654-5618-4b09-98e7-560d4b0d91f6","00-0034774",NA,NA,"SpeaBr00","breeland-speaks-1","5037","3128740",NA,"Breeland Speaks","breeland speaks","DE","NYG","25.1","2018","2","46","1995-12-18"
+"13735","d22c6b00-da97-4ccf-ae49-f06405fccc3e","00-0034354",NA,NA,"TuraKe00","kemoko-turay-1","5058","3047512",NA,"Kemoko Turay","kemoko turay","DE","IND","25.6","2018","2","52","1995-07-11"
+"13736","3d405d21-bfdd-4495-afe3-9e96d1972ee2","00-0034355",NA,NA,"StewM.00","mj-stewart-1","5055","3116679",NA,"MJ Stewart","mj stewart","CB","CLE","25.4","2018","2","53","1995-09-16"
+"13737","89c84a59-18ad-4aeb-8879-d4ba7dd1491e","00-0034675","17544",NA,"BateJe00","jessie-bates-1","5017","3919512",NA,"Jessie Bates","jessie bates","S","CIN","23.9","2018","2","54","1997-02-26"
+"13738","9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f","00-0034356",NA,NA,"JackDo02","donte-jackson-1","5051","3843769",NA,"Donte Jackson","donte jackson","CB","CAR","25.2","2018","2","55","1995-11-08"
+"13739","c2ee7e58-321d-44b6-9db8-f333b75b3a1b","00-0034744",NA,NA,"DawsDu00","duke-dawson-1","5028","3115250",NA,"Duke Dawson","duke dawson","CB","DEN","25.3","2018","2","56","1995-10-13"
+"13740","b4974d96-a831-4914-9de6-6758a4ae12dd","00-0034262",NA,NA,NA,NA,"5066","3050754",NA,"PJ Hall","pj hall","DT","HOU","25.8","2018","2","25","1995-04-05"
+"13741","8fecfc12-c9be-400e-8b5a-4684c6884daa","00-0034770",NA,NA,"ThomCh06","chad-thomas-1","5019","3123045",NA,"Chad Thomas","chad thomas","DE","FA","25.3","2018","3","67","1995-10-12"
+"13742","5c24d0c5-076c-4db5-9bd0-e67f7c42ad50","00-0034800",NA,NA,"HillB.00","bj-hill-3","5020","3116748",NA,"BJ Hill","bj hill","DE","NYG","25.8","2018","3","69","1995-04-20"
+"13743","75a74283-5ab6-49d4-bf2f-e6fcaf91ec36","00-0034815","17526",NA,"WarnFr00","fred-warner-1","5041","3138826",NA,"Fred Warner","fred warner","LB","SFO","24.2","2018","3","70","1996-11-19"
+"13744","4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c","00-0034760",NA,NA,"ShepNa00",NA,"5043","4076951",NA,"Nathan Shepherd","nathan shepherd","DE","NYJ","28.1","2018","3","72","1993-01-01"
+"13745","a1182eb3-26cb-4d34-b29a-df673973f08b","00-0034818",NA,NA,"NnadDe00","derrick-nnadi-1","5035","3122930",NA,"Derrick Nnadi","derrick nnadi","DT","KCC","24.7","2018","3","75","1996-05-09"
+"13746","9912fa7a-040d-40cf-99b5-0a7a28e0ba1a","00-0034831",NA,NA,"GreeRa01","rasheem-green-1","5059","3912562",NA,"Rasheem Green","rasheem green","DE","SEA","23.7","2018","3","79","1997-05-15"
+"13747","6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a","00-0034745",NA,NA,"WalkTr01","tracy-walker-1","5064","3042499",NA,"Tracy Walker","tracy walker","S","DET","26","2018","3","82","1995-02-01"
+"13748","c82a3f67-90b7-4cc8-ac3b-e6cf469cc541","00-0034677",NA,NA,"JoneJu03","justin-jones-4","5063","3116746",NA,"Justin Jones","justin jones","DT","LAC","25.5","2018","3","84","1995-08-17"
+"13749","a494c7f4-3d8a-4a2c-ae0c-95dd6855f719","00-0034362",NA,NA,"GaulRa00","rashaan-gaulden-1","5050","3115333",NA,"Rashaan Gaulden","rashaan gaulden","CB","LVR","26","2018","3","85","1995-01-23"
+"13750","ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17","00-0034754",NA,NA,"BurkOr00","oren-burks-1","5031","3051746",NA,"Oren Burks","oren burks","LB","GBP","25.9","2018","3","88","1995-03-21"
+"13751","6524f633-b8dd-439d-82df-cd4f9f07ad29","00-0034363",NA,NA,"SenaDe00","deadrin-senat-1","5042","3051376",NA,"Deadrin Senat","deadrin senat","DT","ATL","26.5","2018","3","90","1994-07-22"
+"13752","55414554-e550-435e-a108-6047a9318e0a","00-0034263",NA,NA,"MoorTa00","tarvarius-moore-1","5040","4039278",NA,"Tarvarius Moore","tarvarius moore","CB","SFO","24.5","2018","3","95","1996-08-16"
+"13753","0cb5a32a-a340-4671-ba2a-93f5fa6aee8d","00-0034364","17415",NA,"AkinJo00","jordan-akins-1","5032","3128452",NA,"Jordan Akins","jordan akins","TE","HOU","28.8","2018","3","98","1992-04-19"
+"13754","5bde0a71-c7ec-465f-ad35-c195e1d10b29","00-0034780",NA,NA,"YiadIs00","isaac-yiadom-1","5048","3122797",NA,"Isaac Yiadom","isaac yiadom","CB","NYG","24.9","2018","3","99","1996-02-20"
+"13755","9b8e379d-2362-415f-b51d-ec3b8bedda93","00-0034264",NA,NA,"HolmJa01","jalyn-holmes-1","5333","3121414",NA,"Jalyn Holmes","jalyn holmes","DT","MIN","25","2018","4","102","1996-01-25"
+"13756","d187953e-102f-4f78-b840-79fb385fa15a","00-0034334",NA,NA,"ApkeTr00","tony-apke-1","5365","3116152",NA,"Troy Apke","troy apke","S","WAS","25.8","2018","4","109","1995-04-11"
+"13757","91714138-9d0c-446d-b509-709d95f9202b","00-0034767",NA,NA,NA,NA,"5382","3124574",NA,"Nick Nelson","nick nelson","CB","IND","24.3","2018","4","10","1996-10-16"
+"13758","ea59d8de-e3df-4a7b-9778-7d6dc4892fc3","00-0034372",NA,NA,"IyieJo00","joel-iyiegbuniwe-1","5303","3124779",NA,"Joel Iyiegbuniwe","joel iyiegbuniwe","LB","CHI","25.3","2018","4","115","1995-10-12"
+"13759","a28daf84-6354-49e6-a047-1bc549997f29","00-0034373",NA,NA,"ArmsDo00","dorance-armstrong-jr-1","5330","3928979",NA,"Dorance Armstrong","dorance armstrong","DE","DAL","23.6","2018","4","116","1997-06-10"
+"13760","4deb42ec-bece-4b00-b697-3caeff8c1997","00-0034374",NA,NA,"WhitJo03","jordan-whitehead-1","5375","3895798",NA,"Jordan Whitehead","jordan whitehead","S","TBB","23.9","2018","4","117","1997-03-18"
+"13761","791b7f98-c5ff-4145-ab8c-c67e3ca801c4","00-0034265",NA,NA,"AverAn00","anthony-averett-1","5301","3054841",NA,"Anthony Averett","anthony averett","CB","BAL","26.2","2018","4","118","1994-11-29"
+"13762","c6303f3b-9c18-4afe-b0bf-d8270ca9db21","00-0034375",NA,NA,"WhitKy00","kyzir-white-1","5348","4039254",NA,"Kyzir White","kyzir white","LB","LAC","24.9","2018","4","119","1996-03-24"
+"13763","383f4814-6836-4766-a297-fc063e8509cc","00-0034159","18049",NA,"DissWi00","will-dissly-1","5010","3127292",NA,"Will Dissly","will dissly","TE","SEA","24.6","2018","4","120","1996-07-08"
+"13764","3443dde2-23bc-4dba-b499-069d501a59cf","00-0034376",NA,NA,"JohnTa01",NA,"5341","3121003",NA,"Taron Johnson","taron johnson","CB","BUF","24.5","2018","4","121","1996-07-27"
+"13765","13a9ad48-6886-4390-b2d8-9c79cda111d1","00-0034266",NA,NA,"YounKe03","kenny-young-1","5300","3134310",NA,"Kenny Young","kenny young","LB","LAR","25.2","2018","4","122","1995-11-15"
+"13766","046b6d1f-cc56-486c-8d45-45b3a150b141","00-0034680",NA,NA,"WattAr00","armani-watts-1","5329","3122136",NA,"Armani Watts","armani watts","S","KCC","24.9","2018","4","124","1996-03-19"
+"13767","942b9da8-e0c6-4087-886b-370fe357f5f3","00-0034377",NA,NA,"MaddAv00","avonte-maddox-1","5361","3123938",NA,"Avonte Maddox","avonte maddox","CB","PHI","24.8","2018","4","125","1996-03-31"
+"13768","d033bdd4-2a32-4b08-a9a7-8365933816c3","00-0034378","17249",NA,"SmitIt00","ito-smith-1","5004","3123969",NA,"Ito Smith","ito smith","RB","ATL","25.4","2018","4","126","1995-09-11"
+"13769","eb864600-7562-491a-b7a7-9eb3068dba06","00-0034320",NA,NA,"StreKe00","kentavius-street-1","5371","3116726",NA,"Kentavius Street","kentavius street","DE","SFO","24.7","2018","4","128","1996-05-08"
+"13770","e08d71dd-58d9-4295-bcf8-9a6faf59c333","00-0034805",NA,NA,"FranJo02",NA,"5466","3120464",NA,"John Franklin-Myers","john franklin-myers","DE","NYJ","24.3","2018","4","135","1996-09-26"
+"13771","8a60686b-fdf6-4293-846e-92c1b1d586b9","00-0034382",NA,NA,"HaynMa01","marquis-haynes-1","5342","3115456",NA,"Marquis Haynes","marquis haynes","DE","CAR","27.1","2018","4","136","1993-12-16"
+"13772","8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a","00-0034383","17349",NA,"SchuDa00","dalton-schultz-1","5001","3117256",NA,"Dalton Schultz","dalton schultz","TE","DAL","24.6","2018","4","137","1996-07-11"
+"13773","2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2","00-0034848",NA,NA,"McInR.00","rj-mcintosh-1","5311","3917872",NA,"RJ McIntosh","rj mcintosh","DE","NYG","24.7","2018","5","139","1996-06-02"
+"13774","17664e93-8236-4eb0-9505-4e71f43b5a7d","00-0034384",NA,NA,"ReedD.00","dj-reed-2","5372","3139387",NA,"DJ Reed","dj reed","S","SEA","24.2","2018","5","142","1996-11-11"
+"13775","3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88","00-0034385",NA,NA,"BentJa00","jawhan-bentley-1","5318","3116187",NA,"JaWhaun Bentley","jawhaun bentley","LB","NEP","24.4","2018","5","143","1996-08-24"
+"13776","bdb77276-7191-4454-85c2-e1693a33d709","00-0034386","17603",NA,"WatsJu01",NA,"5374","3118892",NA,"Justin Watson","justin watson","WR","TBB","25.8","2018","5","144","1995-04-04"
+"13777","0a6c2bfc-19a4-47f9-ba60-74265af6e947","00-0034387",NA,NA,"NichBi00",NA,"5302","3117922",NA,"Bilal Nichols","bilal nichols","DE","CHI","24.4","2018","5","145","1996-09-14"
+"13778","73c958ee-0d55-49e9-a613-f4475b444fd5","00-0034756",NA,NA,"FlowTr01","tre-flowers-1","5379","3046326",NA,"Tre Flowers","tre flowers","CB","SEA","25.7","2018","5","146","1995-06-02"
+"13779","c16fcef9-ecdb-4696-9c92-5d5b959aafeb","00-0034806",NA,NA,"KiseMi00","micah-kiser-1","5074","3048692",NA,"Micah Kiser","micah kiser","LB","LAR","26","2018","5","147","1995-01-25"
+"13780","c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf","00-0034335",NA,NA,"AlleMa03","marcus-allen-5","5360","3116149",NA,"Marcus Allen","marcus allen","S","PIT","24.5","2018","5","148","1996-08-07"
+"13781","a56b9958-2eb9-47d2-a50e-be8aeaea3eaf","00-0034682",NA,NA,"AverGe00","genard-avery-1","5081","3126204",NA,"Genard Avery","genard avery","LB","PHI","25.8","2018","5","150","1995-04-26"
+"13782","d1ae3222-8892-49bc-bb3e-0bcd7c74522e","00-0034160",NA,NA,"DickMi00","michael-dickson-1","5011","3929851",NA,"Michael Dickson","michael dickson","PN","SEA","25.1","2018","5","149","1996-01-04"
+"13783","45c926b6-0f2f-4d29-b806-d21e4ea89ba2","00-0034388",NA,NA,"HarrDa05",NA,"5078","3047188",NA,"Davontae Harris","davontae harris","CB","BAL","26","2018","5","151","1995-01-21"
+"13784","7f969cc9-59cd-43e9-bcd0-c1885f0b18b7","00-0034389",NA,NA,"CruiDa00","dane-cruikshank-1","5369","3931422",NA,"Dane Cruikshank","dane cruikshank","S","TEN","25.8","2018","5","152","1995-04-27"
+"13785","82100457-f4ee-4f24-8ca2-584bfdc85749","00-0034391",NA,NA,"NealSi00",NA,"5098","3057524",NA,"Siran Neal","siran neal","S","BUF","26.5","2018","5","154","1994-08-04"
+"13786","0df7834e-6373-4f30-9935-5c05d28e752d","00-0034394",NA,NA,"BrowAn05","andrew-brown-2","5077","3116761",NA,"Andrew Brown","andrew brown","DT","HOU","25.1","2018","5","158","1995-12-30"
+"13787","829c836e-8040-48ca-aa20-5ad24f0ff37f","00-0034396",NA,NA,"CartJe00","jermaine-carter-jr-1","5099","3053047",NA,"Jermaine Carter","jermaine carter","LB","CAR","26","2018","5","161","1995-01-14"
+"13788","f2f71ec1-cc13-4215-aa5d-1948c42c6b28","00-0034398",NA,NA,"JameNa00","natrell-jamerson-1","5084","3121552",NA,"Natrell Jamerson","natrell jamerson","CB","CAR","25.1","2018","5","164","1995-12-15"
+"13789","070850a3-7387-4836-b3eb-b1c8f8731aab","00-0034400","17497",NA,"WilkJo01","jordan-wilkins-1","5100","3051891",NA,"Jordan Wilkins","jordan wilkins","RB","IND","26.5","2018","5","169","1994-07-18"
+"13790","12178d3d-49d3-4cb4-88b9-cc8f044bb684","00-0034683",NA,NA,"PhilDa02","darius-phillips-1","5079","3042785",NA,"Darius Phillips","darius phillips","CB","CIN","25.6","2018","5","170","1995-06-26"
+"13791","5067e5ee-bae8-411e-bc05-011a88a3d954","00-0034162",NA,NA,"ScotJK00","jk-scott-3","5087","3126368",NA,"JK Scott","jk scott","PN","GBP","25.3","2018","5","172","1995-10-30"
+"13792","2eb0706c-3017-4895-a207-71d6fe9e1549","00-0034684",NA,NA,NA,NA,"5381","3054971",NA,"Johnny Townsend","johnny townsend","PN","BAL","26","2018","5","36","1995-02-14"
+"13793","e7f0a505-8060-403e-a3b3-9d4e88dda1dc","00-0034272","17528",NA,"ValdMa00","marquez-valdes-scantling-1","5086","3051738",NA,"Marquez Valdes-Scantling","marquez valdes-scantling","WR","GBP","26.3","2018","5","174","1994-10-10"
+"13794","6e01959d-9860-49e4-a997-eee257718812","00-0034273",NA,NA,"RatlDa00","damion-ratley-1","5080","3895857",NA,"Damion Ratley","damion ratley","WR","HOU","25.8","2018","6","175","1995-04-16"
+"13795","43aeb127-28e7-4fac-a611-39c38f3f7628","00-0034402",NA,NA,"EjioDu00","duke-ejiofor-1","5088","3039783",NA,"Duke Ejiofor","duke ejiofor","LB","HOU","25.8","2018","6","177","1995-04-24"
+"13796","021fddc1-4ba1-4bcb-9f40-347a0be8866a","00-0034403",NA,NA,"SamxCh00","christian-sam-1","5085","3128801",NA,"Christian Sam","christian sam","LB","FA","24.7","2018","6","178","1996-06-02"
+"13797","2177026c-2b34-4b88-bc88-50d7c9962064","00-0034274",NA,NA,"NickPa00","parry-nickerson-1","5091","3041098",NA,"Parry Nickerson","parry nickerson","CB","GBP","26.3","2018","6","179","1994-10-11"
+"13798","acc3f3fc-12b7-40b6-b773-b73b2b10cf32","00-0034275",NA,NA,NA,NA,"5090","3045172",NA,"Foley Fatukasi","foley fatukasi","DT","NYJ","25.9","2018","6","6","1995-03-04"
+"13799","ec198436-31b1-458e-a47b-9d1cd134300f","00-0034404",NA,NA,"FittKy00","kylie-fitts-1","5069","3047582",NA,"Kylie Fitts","kylie fitts","LB","ARI","26.3","2018","6","181","1994-10-11"
+"13801","d1e280f9-6df0-45d9-841e-0cfe6ea081b1","00-0034730",NA,NA,"HarrMa03","marcell-harris-1","5370","3043110",NA,"Marcell Harris","marcell harris","S","SFO","24.6","2018","6","184","1996-06-09"
+"13802","b7337487-017c-42f4-b500-6802a35efbfc","00-0034163",NA,NA,NA,NA,"5378","3138764",NA,"Jake Martin","jake martin","LB","HOU","25.1","2018","6","12","1995-12-11"
+"13804","c0520c25-b89b-4f4b-a905-dd0c5612cf88","00-0034276",NA,NA,"ThomSi00","simeon-thomas-1","5082","3042496",NA,"Simeon Thomas","simeon thomas","CB","FA","27.4","2018","6","188","1993-09-22"
+"13806","83128a20-392f-4ca7-878e-689c6e6dfbfc","00-0034277",NA,NA,"ElliDe02","deshon-elliott-1","5071","3929846",NA,"DeShon Elliott","deshon elliott","S","BAL","24.1","2018","6","190","1997-01-01"
+"13807","870e89e7-018a-466b-adff-d0fe872b3e20","00-0034409",NA,NA,"CantDy00","dylan-cantrell-1","5103","3052576",NA,"Dylan Cantrell","dylan cantrell","TE","WAS","26.6","2018","6","191","1994-06-29"
+"13808","c897e280-6597-4dce-9c0d-ed845148d714","00-0034410",NA,NA,"CoviCh01","chris-covington-1","5331","3128252",NA,"Chris Covington","chris covington","LB","FA","25.1","2018","6","193","1996-01-03"
+"13809","4501e6f4-4683-4357-b241-8b4a0b6aae81","00-0034411","17606",NA,"GageRu00","russell-gage-1","5110","3115378",NA,"Russell Gage","russell gage","WR","ATL","25","2018","6","194","1996-01-22"
+"13810","21c60b9f-98f3-4b6f-8911-89aba2622347","00-0034810",NA,NA,NA,NA,"5073","3047495",NA,"Sebastian Joseph-Day","sebastian joseph-day","DT","LAR","25.9","2018","6","21","1995-03-21"
+"13811","aecd8785-d22b-43b4-bbff-76b7e4319ed6","00-0034278",NA,NA,"SmitTr04",NA,"5328","3134448",NA,"Tremon Smith","tremon smith","CB","IND","24.5","2018","6","196","1996-07-20"
+"13812","37476573-91a5-454f-a849-baf46c293940","00-0034336",NA,NA,"DionSh00","shaun-dion-hamilton-1","5367","3115310",NA,"Shaun Dion Hamilton","shaun dion hamilton","LB","DET","25.4","2018","6","197","1995-09-11"
+"13813","0a415a08-ea30-40b2-aac9-42689e3e996a","00-0034413",NA,NA,"OluoFo00",NA,"5332","3050073",NA,"Foyesade Oluokun","foyesade oluokun","LB","ATL","25.5","2018","6","200","1995-08-02"
+"13814","768f6afa-ba24-40d9-bdc1-3184bba2ec2b","00-0034414","17612","2994","ScotBo02","boston-scott-1","5122","3051439",NA,"Boston Scott","boston scott","RB","PHI","25.8","2018","6","201","1995-04-27"
+"13815","9a4fd6b9-9ddc-4161-ab9a-3013a792c70d","00-0034415",NA,NA,"CichJa00","jack-cichy-1","5376","3045259",NA,"Jack Cichy","jack cichy","LB","TBB","25.7","2018","6","202","1995-05-05"
+"13816","b89c853a-6bd8-42ec-ae52-a11831923631","00-0034164",NA,NA,"CannTr00",NA,"5123","4261020",NA,"Trenton Cannon","trenton cannon","RB","CAR","26.5","2018","6","204","1994-07-23"
+"13818","0a08ca62-e488-4369-8e26-8b158443865f","00-0034792",NA,NA,"ArmsCo00","cornell-armstrong-1","5344","3123963",NA,"Cornell Armstrong","cornell armstrong","CB","HOU","25.4","2018","6","209","1995-09-22"
+"13819","f993832a-f81f-4706-90b8-80fd193bdfd7","00-0034420",NA,NA,"ThomJo05","jordan-thomas-6","5117","4035379",NA,"Jordan Thomas","jordan thomas","TE","IND","24.5","2018","6","211","1996-08-02"
+"13820","872967b4-d1ab-4b27-82e9-c40774fc995e","00-0034421",NA,NA,"KalaPe00","peter-kalambayi-1","5325","3043276",NA,"Peter Kalambayi","peter kalambayi","LB","HOU","25.6","2018","6","214","1995-06-26"
+"13822","3b10d2d7-f361-4bc2-93ca-1bbe414b1862","00-0034422",NA,NA,"BierKe00","keishawn-bierria-1","5338","3052161",NA,"Keishawn Bierria","keishawn bierria","LB","FA","24.1","2018","6","217","1996-12-28"
+"13824","e2104140-4ce0-42a8-8b00-346b4a9258b2","00-0034423",NA,NA,"EtliDa00","danny-etling-1","5120","3052450",NA,"Danny Etling","danny etling","QB","SEA","26.5","2018","7","219","1994-07-22"
+"13825","b47fe0b2-e002-42a7-ab84-4b9e61adc9e3","00-0034732",NA,NA,"McGoAl00","alex-mcgough-1","5124","3128843",NA,"Alex McGough","alex mcgough","QB","SEA","25.2","2018","7","220","1995-11-19"
+"13826","73040fb2-2b26-444b-956e-df0927985bb2","00-0034424",NA,NA,"AdamMa00","matthew-adams-1","5345","3126179",NA,"Matthew Adams","matthew adams","LB","IND","25.1","2018","7","221","1995-12-12"
+"13828","2a97c476-70e9-479a-be0b-11ebaeee11d3","00-0034283",NA,NA,"TaylJu00","jullian-taylor-1","5373","3051320",NA,"Jullian Taylor","jullian taylor","DE","FA","26","2018","7","223","1995-01-30"
+"13829","6bf775cf-391f-4455-ba0f-264af0803ea8","00-0034167",NA,NA,"DownDe00","devante-downs-1","5337","3122593",NA,"Devante Downs","devante downs","LB","NYG","25.3","2018","7","225","1995-10-18"
+"13832","5ffb654f-0de5-424b-aa2f-ad511deb5b51","00-0034794","17533",NA,"SandJa00","jason-sanders-1","5119","3124679",NA,"Jason Sanders","jason sanders","PK","MIA","25.2","2018","7","229","1995-11-16"
+"13833","7874842b-9b5f-4307-81cd-37f48e981e9f","00-0034812",NA,NA,"HowaTr00","travin-howard-1","5306","3116424",NA,"Travin Howard","travin howard","LB","LAR","24.7","2018","7","231","1996-05-10"
+"13834","ef65234e-2459-4ecd-b9d1-8751a7c7153d","00-0034428",NA,NA,"JacoLe00","leon-jacobs-1","5315","3045267",NA,"Leon Jacobs","leon jacobs","LB","JAC","25.3","2018","7","230","1995-10-03"
+"13836","f72d4897-8dd9-48d4-9da9-90deb4550d4f","00-0034430",NA,NA,"SmitAn04","andre-smith-7","5340","3895831",NA,"Andre Smith","andre smith","LB","BUF","23.8","2018","7","234","1997-04-20"
+"13837","b0ad00bc-3b30-41ce-8892-f8105e0943e2","00-0034431",NA,NA,"FranZa00","zaire-franklin-1","5346","3124005",NA,"Zaire Franklin","zaire franklin","LB","IND","24.6","2018","7","235","1996-07-02"
+"13838","452520cc-4921-47f1-8d6a-55f7cee8bb0c","00-0034433",NA,NA,"BawdNi00","nick-bawden-1","5116","3125232",NA,"Nick Bawden","nick bawden","RB","DET","24.6","2018","7","237","1996-06-22"
+"13839","c85c0efc-3391-4a8e-b8a4-370b32fd09ce","00-0034285",NA,NA,"SielZa00",NA,"5297","3057956",NA,"Zach Sieler","zach sieler","DE","MIA","25.4","2018","7","238","1995-09-07"
+"13840","4296dd5b-261c-4c64-b1e2-e2afcda719c5","00-0034337",NA,NA,"StroGr00","greg-stroman-1","5368","3124086",NA,"Greg Stroman","greg stroman","CB","WAS","24.9","2018","7","241","1996-03-08"
+"13841","ce0badde-28c3-45ce-a6f4-e2f82ef129f8","00-0034435",NA,NA,"CrosKe00",NA,"5317","3117135",NA,"Keion Crossen","keion crossen","CB","HOU","24.8","2018","7","243","1996-04-17"
+"13844","8301d82b-0ad1-4988-a978-2925e2ae9377","00-0034437",NA,NA,"CookLo00","logan-cooke-1","5314","3115480",NA,"Logan Cooke","logan cooke","PN","JAC","25.5","2018","7","247","1995-07-28"
+"13846","ddff375b-365e-4af1-b9ae-58d03b1b1195","00-0034438",NA,NA,"WoodLo00","logan-woodside-1","5128","3042749",NA,"Logan Woodside","logan woodside","QB","TEN","26","2018","7","249","1995-01-27"
+"13847","40b8fa44-b289-42dd-9606-a1ae30adc7bc","00-0034270",NA,NA,"IzzoRy00","ryan-izzo-1","5094","3915486",NA,"Ryan Izzo","ryan izzo","TE","NEP","25.1","2018","7","250","1995-12-21"
+"13848","d2f6de91-089a-4845-9b90-bfbc00487444","00-0033729",NA,NA,NA,NA,"4654","3051397",NA,"Cam Johnston","cam johnston","PN","PHI","28.9","2017",NA,NA,"1992-02-24"
+"13849","02880089-ccba-44f0-9d6c-fe6f12d15e5b","00-0034597",NA,NA,NA,NA,"5163","3127335",NA,"Ryan Nall","ryan nall","RB","CHI","25.1","2018",NA,NA,"1995-12-27"
+"13850","3ffc3993-461e-4477-9def-c9633b7feac1","00-0034184","17687",NA,"EdwaGu00",NA,"5248","3051926",NA,"Gus Edwards","gus edwards","RB","BAL","25.8","2018",NA,NA,"1995-04-13"
+"13851","6a8b0081-6ac5-4eb7-8840-8fd633568e78","00-0033386",NA,NA,NA,NA,"4420","3115443",NA,"Cody Hollister","cody hollister","WR","TEN","27.2","2017",NA,NA,"1993-11-18"
+"13853","6bfc1107-7883-47db-85ef-3f8f24222a20","00-0034090",NA,NA,"MoorSk00",NA,"5450","3048912",NA,"Skai Moore","skai moore","LB","IND","26.1","2018",NA,NA,"1995-01-08"
+"13857","cad43704-4231-4a72-b616-c66642103452","00-0034319",NA,NA,"YeldDe00",NA,"5277","3059766",NA,"Deon Yelder","deon yelder","TE","KCC","25.9","2018",NA,NA,"1995-03-06"
+"13862","6124c4d4-337b-4926-b3f8-d2feb1c16fa9","00-0034054",NA,NA,NA,NA,"4854","3052056",NA,"River Cracraft","river cracraft","WR","SFO","26.3","2017",NA,NA,"1994-11-01"
+"13863","9e55ec9a-ce18-4b4b-b69f-e2d82c219846","00-0034297","17739",NA,NA,NA,"5199","4036416",NA,"Byron Pringle","byron pringle","WR","KCC","27.2","2018",NA,NA,"1993-11-17"
+"13864","0832c8ad-0872-446f-ad6e-0e309e8443d1","00-0033733","17130",NA,NA,NA,"6744","3040035",NA,"Greg Ward","greg ward","WR","PHI","25.6","2017",NA,NA,"1995-07-12"
+"13866","eb264430-a673-41be-9d81-588d9a9e10e1","00-0034839",NA,NA,NA,NA,"5766","3916720",NA,"Sam Beal","sam beal","CB","NYG","24.4","2018",NA,NA,"1996-08-30"
+"13868","9424475a-fba7-4bfd-b79c-f372ad28082a","00-0034208","17813",NA,"BoonMi00",NA,"5209","3139033",NA,"Mike Boone","mike boone","RB","MIN","25.6","2018",NA,NA,"1995-06-30"
+"13869","1073ac8d-d12f-4ad0-845d-5351503931bd","00-0034721",NA,NA,"BojoCo00",NA,"5721","4039396",NA,"Corey Bojorquez","corey bojorquez","PN","BUF","24.4","2018",NA,NA,"1996-09-13"
+"13870","56615da2-0091-4683-8596-5b13d933db93","00-0033447",NA,NA,"ThomAh00",NA,"4859","3042403",NA,"Ahmad Thomas","ahmad thomas","LB","FA","26.1","2018",NA,NA,"1994-12-15"
+"13871","ef21feb3-991e-42d7-bb16-8bc92f7894bf","00-0034253","18037",NA,"HillDo00",NA,"5536","3126246",NA,"Dontrell Hilliard","dontrell hilliard","RB","HOU","25.9","2018",NA,NA,"1995-02-26"
+"13873","d897b70f-29d9-477e-a72a-c9bfbadb70d3","00-0034177",NA,NA,NA,NA,"5257","3045169",NA,"Tim Boyle","tim boyle","QB","GBP","26.3","2018",NA,NA,"1994-10-03"
+"13874","3d36bdab-2521-44da-8ede-30226510c2b0","00-0034621",NA,NA,"WilsSh01",NA,"5395","3116563",NA,"Shaun Wilson","shaun wilson","RB","FA","25.2","2018",NA,NA,"1995-12-02"
+"13877","622c2cf0-a29e-4943-8819-f9dc48f3d7a0","00-0034202",NA,NA,NA,NA,"5460","3068715",NA,"Kaare Vedvik","kaare vedvik","PK","WAS","26.9","2018",NA,NA,"1994-03-16"
+"13878","8db3a609-73f4-4797-ae22-8adf024d473c","00-0033367",NA,NA,NA,NA,"4344","2973626",NA,"CJ Board","cj board","WR","NYG","27.1","2017",NA,NA,"1993-12-12"
+"13879","d2023f5b-f73b-43ad-a816-f10dadfdfaed","00-0034577",NA,NA,"AlleKy00",NA,"5127","3115293",NA,"Kyle Allen","kyle allen","QB","WAS","24.9","2018",NA,NA,"1996-03-08"
+"13880","d479a777-b53b-4bbf-a8e4-0c1675ac48df","00-0034011","17143",NA,NA,NA,"4741","4212989",NA,"Dan Arnold","dan arnold","TE","ARI","25.9","2017",NA,NA,"1995-03-15"
+"13882","430446f6-a74c-496b-8f49-4464e7d8149d","00-0034317",NA,NA,"KirkKe00",NA,"5134","3046401",NA,"Keith Kirkwood","keith kirkwood","WR","CAR","27.1","2018",NA,NA,"1993-12-26"
+"13884","a63918a5-da89-40d9-8518-30a3e0e46da1","00-0034631",NA,NA,"SmitVy00",NA,"5260","3155188",NA,"Vyncint Smith","vyncint smith","WR","NYJ","24.6","2018",NA,NA,"1996-06-09"
+"13888","48700b7b-210c-4ced-9c57-3e21162e7752","00-0034473",NA,NA,"GardDe01",NA,"5158","4334300",NA,"Dennis Gardeck","dennis gardeck","LB","ARI","26.5","2018",NA,NA,"1994-08-09"
+"13890","e17b5817-d955-42be-bb8d-e34d89f6dd71","00-0033627",NA,NA,NA,NA,"4536","2972240",NA,"Jason Croom","jason croom","TE","PHI","26.9","2017",NA,NA,"1994-02-28"
+"13893","18ccb826-5584-4f6a-8434-cf9a3b927b0f","00-0034487",NA,NA,"SherTr00",NA,"5154","3122168",NA,"Trent Sherfield","trent sherfield","WR","ARI","24.9","2018",NA,NA,"1996-02-26"
+"13895","f4f11bc2-2fe6-4da8-a83c-63085788e789","00-0034104","18016",NA,"SimsCa00",NA,"5432","3115314",NA,"Cam Sims","cam sims","WR","WAS","25.1","2018",NA,NA,"1996-01-06"
+"13898","a2aab80d-174c-4639-beac-e2b70bb3625f","00-0034450",NA,NA,"JoseGr00",NA,"5272","3975763",NA,"Greg Joseph","greg joseph","PK","TBB","26.5","2018",NA,NA,"1994-08-04"
+"13900","63e63ae6-5a88-4b04-a3a0-5e0cb0404f95","00-0032669",NA,NA,NA,NA,"3467","2578718",NA,"Taylor Bertolet","taylor bertolet","PK","FA","28.3","2017",NA,NA,"1992-10-24"
+"13906","da8694f7-3e30-4500-b890-bd28c7bc0ddc","00-0034171",NA,NA,"CabiJa00",NA,"5565","3116158",NA,"Jason Cabinda","jason cabinda","LB","DET","24.9","2018",NA,NA,"1996-03-17"
+"13908","927dfc54-48f1-4566-a58d-a1351e8ad704","00-0034626",NA,NA,"DaniTr00",NA,"5206","3044725",NA,"Trevor Daniel","trevor daniel","PN","FA","26.1","2018",NA,NA,"1994-12-08"
+"13909","99c9de87-7fe1-4d5e-928e-586f48af2d79","00-0030332","12378",NA,NA,NA,"4958","16486",NA,"Brett Maher","brett maher","PK","ARI","31.2","2017",NA,NA,"1989-11-21"
+"13910","5ec01774-4a79-40aa-be4a-e33c71bd5bf4","00-0034646",NA,NA,"PoweBr00",NA,"5695","3115255",NA,"Brandon Powell","brandon powell","WR","ATL","24.4","2018",NA,NA,"1996-09-12"
+"13911","bdeddbb2-2b56-4b46-915b-19eb71fbbe45","00-0034258",NA,NA,"WillDe06",NA,"5539","3040137",NA,"Derrick Willies","derrick willies","WR","CLE","26.3","2018",NA,NA,"1994-10-17"
+"13912","54c60acc-65ac-4e63-a988-697ee26e862a","00-0034652",NA,NA,"BatsCa00",NA,"5289","3139456",NA,"Cameron Batson","cameron batson","WR","TEN","25.1","2018",NA,NA,"1995-12-20"
+"13913","46689e7b-4a03-463b-9978-1496ab89313e","00-0034296",NA,NA,"NiemBe00",NA,"5576","3140643",NA,"Ben Niemann","ben niemann","LB","KCC","25.5","2018",NA,NA,"1995-07-27"
+"13914","3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da","00-0034516",NA,NA,"HernTr00",NA,"5479","3122160",NA,"Tre Herndon","tre herndon","CB","JAC","24.9","2018",NA,NA,"1996-03-05"
+"13915","b2d80e3c-1485-488d-8033-52443c63909b","00-0033452",NA,NA,"CaliAu00",NA,"4811","2982304",NA,"Austin Calitro","austin calitro","LB","DEN","27.1","2018",NA,NA,"1994-01-10"
+"13916","7f5c931b-4ebd-4309-a1d2-e04a5cf782e8","00-0034449",NA,NA,"HoweGr00",NA,"5271","3122716",NA,"Buddy Howell","buddy howell","RB","HOU","24.8","2018",NA,NA,"1996-03-27"
+"13917","b590479c-79df-4505-be19-b0838574b434","00-0034591",NA,NA,"JackJ.00",NA,"5193","3121649",NA,"JC Jackson","jc jackson","CB","NEP","25.2","2018",NA,NA,"1995-11-17"
+"13918","3f178f8f-97fc-491c-ae5a-4c2544e611ef","00-0034071",NA,NA,"JohnDa09",NA,"5388","3141066",NA,"Danny Johnson","danny johnson","CB","WAS","25.2","2018",NA,NA,"1995-11-17"
+"13919","b0719e3d-199b-46e5-a2b4-1091f6fd5c0d","00-0033455","16787",NA,"FirkAn00",NA,"4435","3049698",NA,"Anthony Firkser","anthony firkser","TE","TEN","25.9","2018",NA,NA,"1995-02-19"
+"13920","04f6abef-834f-470e-9c15-8c0cc62fde4e","00-0034573",NA,NA,"WardCh01",NA,"5493","4037361",NA,"Charvarius Ward","charvarius ward","CB","KCC","24.7","2018",NA,NA,"1996-05-16"
+"13921","401fac38-aa48-4f45-b6c4-a4705b50f9bd","00-0033438",NA,NA,NA,NA,"4442","2981846",NA,"Fadol Brown","fadol brown","DE","FA","27.8","2017",NA,NA,"1993-04-15"
+"13922","dcd1b7b0-5768-4b66-b760-30dbcfd04b93","00-0034461",NA,NA,"HectBr00",NA,"5613","3051369",NA,"Bruce Hector","bruce hector","DT","CAR","26.3","2018",NA,NA,"1994-10-07"
+"13923","cc67f4a1-99e9-48a9-84f4-245d7425ba6f","00-0034204",NA,NA,NA,NA,"5183","3126081",NA,"Ola Adeniyi","ola adeniyi","LB","PIT","23.4","2018",NA,NA,"1997-09-12"
+"13926","07247409-1cf8-4e67-a05b-15de83ca1bf9","00-0034787",NA,NA,"BoarCh00",NA,"5753","3060403",NA,"Chris Board","chris board","LB","BAL","25.5","2018",NA,NA,"1995-07-23"
+"13927","7bce07de-7179-459c-97a4-279fb53641a2","00-0034657",NA,NA,"DickMa00",NA,"5615","3134316",NA,"Matt Dickerson","matt dickerson","DE","TEN","25.2","2018",NA,NA,"1995-11-09"
+"13928","2238219b-a0bc-464f-b83d-ff902e65bb87","00-0034481",NA,NA,"NichDe00",NA,"5159","3126311",NA,"Deatrick Nichols","deatrick nichols","CB","FA","26.7","2018",NA,NA,"1994-06-08"
+"13929","7d7aae3c-c186-4ded-bbaa-df05f697ef29","00-0031500",NA,NA,NA,NA,"2796","3734467",NA,"Efe Obada","efe obada","DE","CAR","28.8","2017",NA,NA,"1992-04-13"
+"13930","83849bc5-0b6c-4c76-b622-9c7042758e97","00-0034490",NA,NA,"TurnZe00",NA,"5161","3894901",NA,"Zeke Turner","zeke turner","LB","ARI","24.6","2018",NA,NA,"1996-06-09"
+"13933","09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5","00-0034234",NA,NA,"FordPo00",NA,"5226","3125114",NA,"Poona Ford","poona ford","DT","SEA","25.2","2018",NA,NA,"1995-11-19"
+"13934","e11ce848-c797-460b-bb46-6b9ceae48542","00-0034545",NA,NA,"FacyBr00",NA,"5416","3045458",NA,"Brandon Facyson","brandon facyson","CB","LAC","26.4","2018",NA,NA,"1994-09-08"
+"13935","87c4b182-e4bc-4f35-97ec-8537a2665875","00-0033501",NA,NA,NA,NA,"4501","3121581",NA,"Devaroe Lawrence","devaroe lawrence","DT","WAS","28.3","2017",NA,NA,"1992-10-13"
+"13936","b4464e0d-acbf-4a69-9450-ca7d59e8dff9","00-0033779",NA,NA,NA,NA,"4619","2973647",NA,"Dee Virgin","dee virgin","CB","NEP","27.3","2017",NA,NA,"1993-10-29"
+"13937","a84d5d5d-3fa3-483e-b737-6587971decc5","00-0034881",NA,NA,"CrawJa01",NA,"5141","3042445",NA,"James Crawford","james crawford","LB","FA","26.2","2018",NA,NA,"1994-12-02"
+"13938","374036ec-f329-4098-8972-0d9ca326fd37","00-0034179",NA,NA,"GreeRa02",NA,"5545","3049331",NA,"Raven Greene","raven greene","S","GBP","26","2018",NA,NA,"1995-02-02"
+"13939","b736f05a-38a5-47b4-aaab-734667967ac2","00-0034091",NA,NA,"OdumGe00",NA,"5445","3050199",NA,"George Odum","george odum","S","IND","27.2","2018",NA,NA,"1993-11-03"
+"13940","6414998b-5831-44aa-8bd8-39e42a323c2c","00-0033246",NA,NA,"MundJo00",NA,"4314","3052096",NA,"Johnny Mundt","johnny mundt","TE","LAR","26.2","2017",NA,NA,"1994-11-23"
+"13941","4ab9df5a-3e40-4402-9f68-bbc659a94784","00-0034325",NA,NA,"StalTa00",NA,"5191","3126489",NA,"Taylor Stallworth","taylor stallworth","DT","IND","25.5","2018",NA,NA,"1995-08-18"
+"13942","e0248ecc-27b4-4368-bf97-47a73cb41ec2","00-0034116",NA,NA,"GrayJ.00",NA,"5452","3115481",NA,"JT Gray","jt gray","S","NOS","25","2018",NA,NA,"1996-01-18"
+"13943","b220a72d-6870-418a-98af-ef50632be774","00-0034500",NA,NA,"DaviTa00",NA,"5646","3131775",NA,"Tae Davis","tae davis","LB","CLE","24.5","2018",NA,NA,"1996-08-14"
+"13945","27f3694c-a9a1-4c64-ab84-45bdea45d44e","00-0034213",NA,NA,"HillHo00",NA,"5214","3929847",NA,"Holton Hill","holton hill","CB","FA","23.8","2018",NA,NA,"1997-03-28"
+"13946","3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814","00-0034603",NA,NA,"ToliKe00",NA,"5629","3843234",NA,"Kevin Toliver","kevin toliver","CB","DEN","25.2","2018",NA,NA,"1995-11-24"
+"13952","717ebb17-f54f-4052-b9fb-af641a25ebe2","00-0034302",NA,NA,"LuvuFr00",NA,"5580","3127273",NA,"Frankie Luvu","frankie luvu","LB","NYJ","24.4","2018",NA,NA,"1996-09-19"
+"13953","0a63f97d-9cc2-44d0-b65a-ac2e78db73f9","00-0034488",NA,NA,"ThomTa01",NA,"5519","4334405",NA,"Tavierre Thomas","tavierre thomas","CB","CLE","24.9","2018",NA,NA,"1996-03-11"
+"13954","571152e1-0a76-4562-b257-4729e4401549","00-0034659",NA,NA,"FincSh00",NA,"5669","3051333",NA,"Sharif Finch","sharif finch","LB","NYJ","25.3","2018",NA,NA,"1995-10-01"
+"13955","f9ae156c-f690-401f-b964-34b0ff6187f9","00-0034594",NA,NA,"MoorA.00",NA,"5662","3128746",NA,"AJ Moore","aj moore","S","HOU","25.1","2018",NA,NA,"1995-12-15"
+"13956","88f31a44-caae-4e5b-a786-8a229374a19d","00-0034496",NA,NA,"ChanSe00",NA,"5178","3138733",NA,"Sean Chandler","sean chandler","S","CAR","24.8","2018",NA,NA,"1996-04-27"
+"13958","b928bd74-ad93-4251-9c96-300bfa04857e","00-0034201",NA,NA,"TurnDe01",NA,"5464","3928461",NA,"DeLance Turner","delance turner","RB","FA","25.4","2018",NA,NA,"1995-08-23"
+"13959","a40a9b55-7850-4572-8197-f57a5354f921","00-0034203",NA,NA,"WillDa09",NA,"5526","4239833",NA,"Darious Williams","darious williams","CB","LAR","27.9","2018",NA,NA,"1993-03-15"
+"13961","12c39c1f-d579-4bd5-b736-62afd23b8208","00-0034654",NA,NA,"DawkDa01",NA,"5619","3052449",NA,"Dalyn Dawkins","dalyn dawkins","RB","FA","26.1","2018",NA,NA,"1994-12-26"
+"13963","6f124753-5c6c-454b-97c7-0f9b4d14e7c2","00-0034854",NA,NA,"HodgKh00",NA,"5773","3047876",NA,"KhaDarel Hodge","khadarel hodge","WR","CLE","26.1","2018",NA,NA,"1995-01-03"
+"13964","ba95b150-fad0-4a8d-b15d-a5e318d95b7f","00-0033608",NA,NA,NA,NA,"4529","2970264",NA,"Ryan Lewis","ryan lewis","CB","NYG","26.8","2017",NA,NA,"1994-04-15"
+"13965","1ad3e535-2b5c-48a8-82f0-c7a933d250f0","00-0033347",NA,NA,"TupoJo00",NA,"4371","2979632",NA,"Josh Tupou","josh tupou","DT","CIN","26.8","2017",NA,NA,"1994-05-02"
+"13968","7738fea8-7ea2-4c4c-b589-bca90b070819","00-0033319","16726",NA,NA,NA,"4464","3059989",NA,"Nick Mullens","nick mullens","QB","SFO","25.9","2017",NA,NA,"1995-03-21"
+"13970","d5a270bd-6f41-4637-ae09-d5534f1a4d3e","00-0034540",NA,NA,"BrowTo01",NA,"5424","3115308",NA,"Tony Brown","tony brown","CB","CIN","25.6","2018",NA,NA,"1995-07-13"
+"13980","375b0d7f-8d03-4111-8c1b-62907f0326a1","00-0034084","17693",NA,NA,NA,"5230","3123052",NA,"Mike Badgley","mike badgley","PK","LAC","25.5","2018",NA,NA,"1995-07-28"
+"13987","3b59e08c-0c3b-42c9-a4e2-9b79103ea715","00-0034720",NA,NA,"SpilRo00",NA,"5726","3129446",NA,"Robert Spillane","robert spillane","LB","PIT","25.1","2018",NA,NA,"1995-12-14"
+"13988","70473218-5ae3-47b4-86fd-151e68f1e8b9","00-0034073",NA,NA,"DwelRo00",NA,"5285","3120303",NA,"Ross Dwelley","ross dwelley","TE","SFO","26","2018",NA,NA,"1995-01-26"
+"13989","ca113409-c714-40f8-82db-727eae1e455e","00-0034185",NA,NA,"LancTy00",NA,"5483","3045242",NA,"Tyler Lancaster","tyler lancaster","DE","GBP","26.2","2018",NA,NA,"1994-11-04"
+"13990","aec7472c-3e0b-443f-8c48-cd8cf0e9734c","00-0034256",NA,NA,"ScotDa02",NA,"5166","3056577",NA,"DaMari Scott","damari scott","WR","NYG","25.5","2018",NA,NA,"1995-08-08"
+"13994","6733b953-de77-44e5-acbf-c2d3a0940243","00-0033439",NA,NA,"BrowPh01",NA,"4443","2971281",NA,"Pharaoh Brown","pharaoh brown","TE","HOU","26.7","2017",NA,NA,"1994-05-04"
+"13996","66dbd211-6835-4c06-9e4d-9f74cffac250","00-0034502",NA,NA,"HaleGr00",NA,"5647","3116166",NA,"Grant Haley","grant haley","CB","NOS","25.1","2018",NA,NA,"1996-01-06"
+"13998","ae6a5f6b-20ac-4b44-9d05-b75634aa1199","00-0034096",NA,NA,"MoseEm00",NA,"5436","3115337",NA,"Emmanuel Moseley","emmanuel moseley","CB","SFO","24.9","2018",NA,NA,"1996-03-25"
+"13999","50eb4454-71bf-4012-a216-2fc9770ffd86","00-0034309",NA,NA,"BeebCh00",NA,"5570","3047968",NA,"Chad Beebe","chad beebe","WR","MIN","26.7","2018",NA,NA,"1994-06-01"
+"14012","965df459-3f21-4a93-9a99-15559eb977a4","00-0034639",NA,NA,"FordMi01",NA,"5691","3050916",NA,"Mike Ford","mike ford","CB","DET","25.5","2018",NA,NA,"1995-08-04"
+"14013","e669f022-4065-4ef7-b850-a90e8b2367c0","00-0034468",NA,NA,"SullCh00",NA,"5181","3124849",NA,"Chandon Sullivan","chandon sullivan","CB","GBP","24.5","2018",NA,NA,"1996-08-07"
+"14016","00fab770-3336-436e-9901-89849769b7b2","00-0034539",NA,NA,"ThomCo02",NA,"5680","2976524",NA,"Corey Thompson","corey thompson","LB","FA","27.1","2018",NA,NA,"1993-12-23"
+"14017","72cf3127-3953-4fd8-8049-3de1b6fa9825","00-0034115","18026",NA,NA,NA,"5284","3122976",NA,"Jeffery Wilson","jeffery wilson","RB","SFO","25.2","2018",NA,NA,"1995-11-16"
+"14026","ab741f46-d660-48f2-a910-774d0514d2e4","00-0034662",NA,NA,"KaluJo00",NA,"5671","3116105",NA,"Joshua Kalu","joshua kalu","CB","TEN","25.4","2018",NA,NA,"1995-08-28"
+"14027","cd340b59-3ee0-4829-8d08-be8744f670a6","00-0034310",NA,NA,"JameCr01",NA,"5583","3116058",NA,"Craig James","craig james","CB","PHI","24.8","2018",NA,NA,"1996-04-29"
+"14028","67c2f38f-b568-4bcf-a40f-750cef707a05","00-0034527",NA,NA,"NealRy00",NA,"5655","3121344",NA,"Ryan Neal","ryan neal","S","SEA","25.1","2018",NA,NA,"1995-12-24"
+"14032","ac7b90e4-0f47-4f77-b521-7dc92043a9f3","00-0034511",NA,NA,"LoveMi00",NA,"5623","3051371",NA,"Mike Love","mike love","DE","BUF","27","2018",NA,NA,"1994-01-22"
+"14037","57a21028-b3a1-494b-ade8-7e94c7108823","00-0034446",NA,NA,"DaviJa06",NA,"5222","3125356",NA,"Jalen Davis","jalen davis","CB","CIN","25","2018",NA,NA,"1996-02-02"
+"14038","648bcdd5-7239-41b4-b346-a2424f6c01d3","00-0034586",NA,NA,"AtkiJo01",NA,"5659","3043127",NA,"John Atkins","john atkins","DT","DET","28.1","2018",NA,NA,"1992-12-21"
+"14043","c281fdc7-76a9-4734-a13d-19ad354c67db","00-0034726",NA,NA,"LeavDa00",NA,"5736","3053801",NA,"Dallin Leavitt","dallin leavitt","S","LVR","26.5","2018",NA,NA,"1994-08-08"
+"14045","b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01","00-0034593",NA,NA,"LacyCh00",NA,"5661","3122430",NA,"Chris Lacy","chris lacy","WR","DAL","25","2018",NA,NA,"1996-01-28"
+"14056","dd5a6b6e-ffae-45a5-b8e6-718a9251f374","00-0035228","18600","3299","MurrKy00","kyler-murray-1","5849","3917315",NA,"Kyler Murray","kyler murray","QB","ARI","23.5","2019","1","1","1997-08-07"
+"14057","94325301-e0ad-4a9f-a0e5-ffec0f529be3","00-0035704","18225","3263","LockDr00","drew-lock-1","5854","3924327",NA,"Drew Lock","drew lock","QB","DEN","24.2","2019","2","42","1996-11-10"
+"14058","6e4eda90-2656-434f-a262-4e5e9fde3946","00-0035232","18214",NA,"HaskDw00","dwayne-haskins-1","5845","4040616",NA,"Dwayne Haskins","dwayne haskins","QB","PIT","23.7","2019","1","15","1997-05-03"
+"14059","0042266b-cb28-4012-bfd2-06650badad97","00-0035710","18232","3264","JoneDa05","daniel-jones-4","5870","3917792",NA,"Daniel Jones","daniel jones","QB","NYG","23.7","2019","1","6","1997-05-27"
+"14060","2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9","00-0035356",NA,NA,NA,NA,"6040","3916564",NA,"Tyree Jackson","tyree jackson","QB","PHI","24","2019",NA,NA,"1997-02-07"
+"14061","d4d135fd-b710-4c12-9082-9d6e544b3f8d","00-0035146",NA,NA,"McSoTr00","trace-mcsorley-1","5974","3116172",NA,"Trace McSorley","trace mcsorley","QB","BAL","25.4","2019","6","197","1995-08-23"
+"14062","7905e9be-2f66-4ff5-a6e9-dbe281bf4822","00-0035251",NA,NA,"GrieWi00","will-grier-1","5903","3115252",NA,"Will Grier","will grier","QB","CAR","25.8","2019","3","100","1995-04-03"
+"14063","582fe465-135a-4901-beef-60aebce99067","00-0035264","18604",NA,"StidJa00","jarrett-stidham-1","6136","3892775",NA,"Jarrett Stidham","jarrett stidham","QB","NEP","24.5","2019","4","133","1996-08-08"
+"14064","3cbf12f3-11df-4ced-a321-4877b129420c","00-0035283",NA,NA,"ThorCl00","clayton-thorson-1","6147","3116144",NA,"Clayton Thorson","clayton thorson","QB","NYG","25.1","2019","5","167","1995-12-25"
+"14065","9ab44516-2a26-4049-b630-66539c7a5dfd","00-0034955",NA,NA,NA,NA,"6037","3722362",NA,"Brett Rypien","brett rypien","QB","DEN","24.6","2019",NA,NA,"1996-07-09"
+"14067","dabb52c0-455b-48fe-996b-abf758120623","00-0035289","18562","3474","MinsGa00","gardner-minshew-1","6011","4038524",NA,"Gardner Minshew","gardner minshew","QB","JAC","24.7","2019","6","178","1996-05-16"
+"14068","d935df27-5be4-4aab-b117-8ec8e81c2196","00-0035652",NA,NA,"FinlRy00","ryan-finley-1","5885","3042876",NA,"Ryan Finley","ryan finley","QB","CIN","26.1","2019","4","104","1994-12-26"
+"14069","af291d43-a51f-44ce-b8ac-430ec68c78c8","00-0035282",NA,NA,"SticEa00",NA,"6185","3120590",NA,"Easton Stick","easton stick","QB","LAC","25.4","2019","5","166","1995-09-15"
+"14070","a259d6b2-0238-4f22-b3aa-de7132cf9285","00-0035040",NA,NA,NA,NA,"6450","3116188",NA,"David Blough","david blough","QB","DET","25.5","2019",NA,NA,"1995-07-31"
+"14071","1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c","00-0035685","18239","3238","MontDa01","david-montgomery-1","5892","4035538",NA,"David Montgomery","david montgomery","RB","CHI","23.7","2019","3","73","1997-06-07"
+"14072","74af3906-083e-49d1-b8c6-556101390381","00-0035217","18609","3420","SnelBe00","benjamin-snell-jr-1","6156","4035072",NA,"Benny Snell","benny snell","RB","PIT","22.9","2019","4","122","1998-02-27"
+"14073","61694ab9-b099-408e-b48d-6a643dd069ec","00-0035700","18269",NA,NA,NA,"5850","4047365",NA,"Josh Jacobs","josh jacobs","RB","LVR","23","2019","1","24","1998-02-11"
+"14074","a2e0f742-e608-4e29-99cd-e7cd765afba1","00-0034995","18460",NA,"WillDe07","dexter-williams-1","6153","3932449",NA,"Dexter Williams","dexter williams","RB","FA","24.1","2019","6","194","1997-01-06"
+"14075","59482736-ce42-4058-b68e-0f9f66eac2d9","00-0035657","18230","3243","HarrDa06","damien-harris-1","5890","3925347",NA,"Damien Harris","damien harris","RB","NEP","24","2019","3","87","1997-02-11"
+"14076","478fcd24-2617-41d5-a900-b272aa6ef515","00-0035291","18607",NA,"WillTr06","trayveon-williams-1","6144","4035222",NA,"Trayveon Williams","trayveon williams","RB","CIN","23.3","2019","6","182","1997-10-18"
+"14077","3f454d05-40b8-45a8-b195-ff2565b6c79e",NA,NA,NA,"WebeMi00","mike-weber-1","6159","3915536",NA,"Mike Weber","mike weber","RB","GBP","23.4","2019","7","218","1997-08-25"
+"14078","677b17b7-a8c2-4f2b-ac73-fe086de32103","00-0035454",NA,NA,NA,NA,"5976","3929927",NA,"Karan Higdon","karan higdon","RB","FA","24","2019",NA,NA,NA
+"14079","ef3ceaf4-b733-4e06-a7f4-a94fc67361c1","00-0035243","18283","3252","SandMi01","miles-sanders-1","6151","4045163",NA,"Miles Sanders","miles sanders","RB","PHI","23.8","2019","2","53","1997-05-01"
+"14080","a961b0d4-5d7c-438e-90f0-2e1fa09f6c89","00-0035250","18280","3267","SingDe00","devin-singletary-1","6130","4040761",NA,"Devin Singletary","devin singletary","RB","BUF","23.4","2019","3","74","1997-09-03"
+"14081","cad49098-1523-4e52-9f50-caa3423e1bb6","00-0035311","17251",NA,"GaskMy00","myles-gaskin-1","5980","3886818",NA,"Myles Gaskin","myles gaskin","RB","MIA","24","2019","7","234","1997-02-15"
+"14082","6cf9a842-dc3f-408a-887a-97b0b07d4289","00-0035256","18266","3259","LoveBr00","bryce-love-1","5889","3931398",NA,"Bryce Love","bryce love","RB","WAS","23.6","2019","4","112","1997-07-08"
+"14083","4afb77d8-4564-469b-be4c-5a8587df8046","00-0035594","18616",NA,"HomeTr00","travis-homer-1","6012","4037457",NA,"Travis Homer","travis homer","RB","SEA","22.5","2019","6","204","1998-08-07"
+"14084","ebae3f19-b8bb-43d6-ae78-d21e9dc08b61","00-0035442",NA,NA,NA,NA,"5919","4035006",NA,"Elijah Holyfield","elijah holyfield","RB","PHI","23.2","2019",NA,NA,"1997-11-30"
+"14085","33b0227d-4c21-4e71-b4cd-be35f7db9123","00-0035261","18705","3435","PollTo00","tony-pollard-1","5967","3916148",NA,"Tony Pollard","tony pollard","RB","DAL","23.8","2019","4","128","1997-04-30"
+"14086","528e71ec-8fb3-4928-ace5-fc5ffbf26eb3","00-0034975","18256",NA,"HillJu00","justice-hill-1","5995","4038441",NA,"Justice Hill","justice hill","RB","BAL","23.2","2019","4","113","1997-11-14"
+"14087","380c4d9b-d4c8-456c-ba50-25519edde899","00-0035664","18588","3253","HendDa00","darrell-henderson-1","5916","4039359",NA,"Darrell Henderson","darrell henderson","RB","LAR","23.5","2019","3","70","1997-08-19"
+"14088","f3c3c5ba-2788-4708-bbc5-4ea525d06a81","00-0035299",NA,NA,"AndeRo02","rodney-anderson-1","5918","3705353",NA,"Rodney Anderson","rodney anderson","RB","FA","24.4","2019","6","211","1996-09-12"
+"14092","bbb3812b-cfee-4cab-80c9-6da225fec5b2","00-0035505",NA,NA,NA,NA,"5961","3123675",NA,"Jalin Moore","jalin moore","RB","FA","25.2","2019",NA,NA,"1995-11-28"
+"14093","ce079a73-5884-4184-909a-8feafd4645d9","00-0035268","18521","3473","ArmsRy00","ryquell-armstead-1","6007","3923397",NA,"Ryquell Armstead","ryquell armstead","RB","JAC","24.3","2019","5","140","1996-10-30"
+"14094","38abfa4e-ad62-4392-89a0-ac2a012efd87","00-0035275",NA,NA,"ScarJo00","jordan-scarlett-1","6167","3915115",NA,"Jordan Scarlett","jordan scarlett","RB","MIA","25.6","2019","5","154","1995-07-08"
+"14095","96e6687b-2b89-4dd9-98df-6e7507cd82cf","00-0035537","18406",NA,"JohnTy02","ty-johnson-1","6039","3915411",NA,"Ty Johnson","ty johnson","RB","NYJ","23.4","2019","6","186","1997-09-17"
+"14096","25bc08ac-8420-4340-94c6-93993ff87d6f","00-0035184","18630",NA,"OzigDe01",NA,"6068","3699935",NA,"Devine Ozigbo","devine ozigbo","RB","JAC","24.3","2019",NA,NA,"1996-10-02"
+"14097","c44534f8-a567-40e7-b51e-1a72c49cb24e","00-0035273","18480",NA,"OlliQa00","oadree-ollison-1","6002","3123944",NA,"Qadree Ollison","qadree ollison","RB","ATL","24.4","2019","5","152","1996-09-08"
+"14098","d4f0aa89-6309-4977-b779-7501eb8c8508","00-0035448",NA,NA,NA,NA,"6334","4035102",NA,"Damarea Crockett","damarea crockett","RB","DEN","23.1","2019",NA,NA,"1997-12-22"
+"14099","ebbd3227-f6e1-4311-ad57-a76c361888ff","00-0035043",NA,NA,NA,NA,"6448","3895788",NA,"Darrin Hall","darrin hall","RB","FA","24.4","2019",NA,NA,"1996-09-06"
+"14101","3e6e15ce-1c81-408e-9a94-b0a2924d0b8c","00-0035624","18222","3237","HarrNK00","nkeal-harry-1","5878","4047839",NA,"NKeal Harry","nkeal harry","WR","NEP","23.1","2019","1","32","1997-12-17"
+"14102","754faf0f-40f7-45f0-b23b-6ce990ecaf26","00-0035640","18219","3239","MetcDK00","dk-metcalf-1","5846","4047650",NA,"DK Metcalf","dk metcalf","WR","SEA","23.1","2019","2","64","1997-12-14"
+"14103","9c04ad60-9726-42d3-9836-7d95723f8eb6","00-0035590","18264",NA,"RidlRi00","riley-ridley-1","5873","4035015",NA,"Riley Ridley","riley ridley","WR","CHI","24.5","2019","4","126","1996-07-21"
+"14104","a9e580f2-1fbe-46fb-887c-c84089b507e4","00-0035676","18218","3247","BrowAJ00","aj-brown-3","5859","4047646",NA,"AJ Brown","aj brown","WR","TEN","23.6","2019","2","51","1997-06-30"
+"14105","feeee40a-dd63-41a7-89cd-6c95b5456833","00-0035662","18226","3249","BrowMa04","marquise-brown-1","5848","4241372",NA,"Marquise Brown","marquise brown","WR","BAL","23.7","2019","1","25","1997-06-04"
+"14106","472945d8-0062-417b-9967-430d381c80ae","00-0035529",NA,NA,"ButlHa00","hakeem-butler-1","5886","3917940",NA,"Hakeem Butler","hakeem butler","WR","PHI","24.7","2019","4","103","1996-05-16"
+"14107","0cc1a941-1a6d-4a4a-8c7c-88157165c126","00-0035246","18235",NA,"ArceJJ00","jj-arcega-whiteside-1","5863","3931397",NA,"JJ Arcega-Whiteside","jj arcega-whiteside","WR","PHI","24.1","2019","2","57","1996-12-31"
+"14108","4484c7d1-025a-4f26-8e9b-48503afb0c68","00-0035500",NA,NA,"DortGr01",NA,"5970","4037235",NA,"Greg Dortch","greg dortch","WR","ATL","22.7","2019",NA,NA,"1998-05-29"
+"14109","7e8c4641-2beb-4213-ba22-69fe0307005f","00-0035659","18466","3449","McLaTe00","terry-mclaurin-1","5927","3121422",NA,"Terry McLaurin","terry mclaurin","WR","WAS","25.4","2019","3","76","1995-09-15"
+"14110","97f6c20c-1110-4551-82c1-41d3247397a2","00-0035359",NA,NA,NA,NA,"6154","3871102",NA,"David Sills","david sills","WR","NYG","24.7","2019",NA,NA,"1996-05-29"
+"14111","aa916eb5-53cf-4895-b979-540f433be2e1","00-0035475",NA,NA,NA,NA,"6017","3930064",NA,"DaMarkus Lodge","damarkus lodge","WR","FA","23.7","2019",NA,NA,"1997-05-12"
+"14112","db0c3b1c-8d18-435a-864a-cdd696f963b6","00-0035639","18463","3411","CampPa00","parris-campbell-1","5880","3121410",NA,"Parris Campbell","parris campbell","WR","IND","23.5","2019","2","59","1997-07-16"
+"14113","fe6dc768-d576-476c-b150-53b85af2a1d1","00-0035140","18587","3426","HardMe00","mecole-hardman-1","5917","4035004",NA,"Mecole Hardman","mecole hardman","WR","KCC","22.9","2019","2","56","1998-03-12"
+"14114","d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6","00-0035297","18228",NA,"HarmKe00","kelvin-harmon-1","5884","4036163",NA,"Kelvin Harmon","kelvin harmon","WR","WAS","24.1","2019","6","206","1996-12-15"
+"14115","d6f5ecdf-be55-430e-9370-0ea608395dad","00-0035070",NA,NA,NA,NA,"5924","3924318",NA,"Emanuel Hall","emanuel hall","WR","WAS","23.7","2019",NA,NA,"1997-05-21"
+"14116","917d4304-d039-42a9-9c43-84e3786f105c","00-0034971","18318",NA,"HurdJa00","jalen-hurd-1","5911","3115328",NA,"Jalen Hurd","jalen hurd","WR","SFO","25","2019","3","67","1996-01-23"
+"14117","064c4eda-1b10-40ac-a9d2-66caf76a213a","00-0035457","18804",NA,NA,NA,"6063","3894912",NA,"Tyron Johnson","tyron johnson","WR","LAC","25.1","2019",NA,NA,"1996-01-08"
+"14118","b7f930af-ddd2-4a48-9617-96bda81b0334","00-0035406",NA,NA,"HumpLi01",NA,"5938","4039057",NA,"LilJordan Humphrey","liljordan humphrey","WR","NOS","22.8","2019",NA,NA,"1998-04-18"
+"14119","e0dc9dce-fe33-4092-b6bd-6af3cbcb762e","00-0035474",NA,NA,NA,NA,"5929","4049301",NA,"Anthony Johnson","anthony johnson","WR","PIT","26","2019",NA,NA,"1995-01-29"
+"14120","49f9f357-e90a-45b7-9f55-fe451125149f","00-0035589",NA,NA,"JennGa00","gary-jennings-1","6045","3916071",NA,"Gary Jennings","gary jennings","WR","IND","23.9","2019","4","120","1997-03-07"
+"14121","04f9a4be-b236-4eed-9bc4-794f615ccd13","00-0035527","18409",NA,"IsabAn00","andy-isabella-1","5915","3914328",NA,"Andy Isabella","andy isabella","WR","ARI","24.2","2019","2","62","1996-11-18"
+"14122","82ed30a5-54a8-4ed0-b040-99c3a78fb055","00-0035535","18706","3437","SlayDa01","darius-slayton-1","6149","3916945",NA,"Darius Slayton","darius slayton","WR","NYG","24.1","2019","5","171","1997-01-12"
+"14123","34c523c7-bc58-49f0-a9cc-f9edd91fe00f","00-0034983","18345",NA,NA,NA,"5955","3135321",NA,"Hunter Renfrow","hunter renfrow","WR","LVR","25.1","2019","5","11","1995-12-21"
+"14124","7e8f4076-25e1-41e5-8e71-f70397a3729d","00-0035287","18618",NA,"JohnKe07","keesean-johnson-1","5962","3124537",NA,"KeeSean Johnson","keesean johnson","WR","ARI","24.3","2019","6","174","1996-10-09"
+"14125","d1ed6f8c-1611-4695-8b48-5adce0de50dd","00-0035703","18636",NA,"BoykMi00","miles-boykin-1","5965","3932423",NA,"Miles Boykin","miles boykin","WR","BAL","24.3","2019","3","93","1996-10-12"
+"14126","497758de-5f0b-481f-8c68-7aa5e21df322","00-0035350","18612","3588","WillPr01",NA,"6148","3915399",NA,"Preston Williams","preston williams","WR","MIA","23.8","2019",NA,NA,"1997-03-27"
+"14127","73e194d1-a4b7-4de4-b1c2-3c24ef502918","00-0034960","18598",NA,"MeyeJa01",NA,"5947","3916433",NA,"Jakobi Meyers","jakobi meyers","WR","NEP","24.2","2019",NA,NA,"1996-11-09"
+"14129","ab04bbda-ee5d-45f8-851a-6fe36ad0c21a","00-0035002",NA,NA,"MitcDi00","dillon-mitchell-1","6047","4038938",NA,"Dillon Mitchell","dillon mitchell","WR","FA","23.7","2019","7","239","1997-05-16"
+"14130","8e43eb21-92e4-4720-8766-c9204259c063","00-0035126",NA,NA,NA,NA,"6165","4043161",NA,"Antoine Wesley","antoine wesley","WR","BAL","23.3","2019",NA,NA,"1997-10-22"
+"14131","8f32cbe6-9c50-4bf7-9e68-057d718fb490","00-0035399",NA,NA,"MorgSt02",NA,"6069","3699902",NA,"Stanley Morgan","stanley morgan","WR","CIN","23.4","2019",NA,NA,"1997-09-07"
+"14132","8535bd19-f47b-4dad-a041-8daec77ab9ad",NA,NA,NA,NA,NA,"6097",NA,NA,"Jamal Custis","jamal custis","WR","FA","25.2","2019",NA,NA,"1995-11-06"
+"14134","4a8fee2c-2870-42fa-8d71-429d36e057d2","00-0035450",NA,NA,NA,NA,"6019","3121413",NA,"Johnnie Dixon","johnnie dixon","WR","FA","26.4","2019",NA,NA,"1994-09-16"
+"14136","628a6a0a-4fde-4024-8d7c-28674953d5af","00-0035719","18244","3246","SamuDe00","deebo-samuel-1","5872","3126486",NA,"Deebo Samuel","deebo samuel","WR","SFO","25","2019","2","36","1996-01-15"
+"14137","cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f","00-0035644","17527","3251","FantNo00","noah-fant-1","5857","4036131",NA,"Noah Fant","noah fant","TE","DEN","23.2","2019","1","20","1997-11-20"
+"14138","bd1120b6-38b3-4225-a4b0-20660a149d0d","00-0035229","18290","3307","HockTJ00","tj-hockenson-1","5844","4036133",NA,"TJ Hockenson","tj hockenson","TE","DET","23.6","2019","1","8","1997-07-03"
+"14139","dbda3235-5f3a-4c16-81da-48c093ad6c85","00-0035309",NA,NA,"MackAl00","alize-mack-1","5975","3932433",NA,"Alize Mack","alize mack","TE","FA","23.8","2019","7","231","1997-03-29"
+"14140","f808794b-3135-4f75-b46a-ba90bf6b8502","00-0035671","18614",NA,"SterJa00","jace-sternberger-1","6139","3917962",NA,"Jace Sternberger","jace sternberger","TE","GBP","24.6","2019","3","75","1996-06-26"
+"14141","ed0e6a30-83d5-4f4b-bf49-f7ff80e21304","00-0034970","18610",NA,"SmitIr01","irv-smith-jr-1","6126","4040980",NA,"Irv Smith","irv smith","TE","MIN","22.5","2019","2","50","1998-08-09"
+"14142","7bb7f5e7-f00e-47d8-954d-90bf5baf4292","00-0034988","18293",NA,"SmitKa00","kaden-smith-1","6146","4044452",NA,"Kaden Smith","kaden smith","TE","NYG","23.8","2019","6","176","1997-04-24"
+"14143","5fb525c5-4e70-4ede-8c49-94ad0cf66b7d","00-0035689","18631",NA,"KnoxDa00","dawson-knox-1","5906","3930086",NA,"Dawson Knox","dawson knox","TE","BUF","24.2","2019","3","96","1996-11-14"
+"14144","e0755328-7fe1-4df7-9dfb-93e9cf9ef5be","00-0035539",NA,NA,"NautIs00","isaac-nauta-1","5957","4035014",NA,"Isaac Nauta","isaac nauta","TE","FA","23.7","2019","7","224","1997-05-21"
+"14145","a195e517-f732-4e55-a84c-2ce132a73c65","00-0035320",NA,NA,"WilsCa00","caleb-wilson-2","6142","3932936",NA,"Caleb Wilson","caleb wilson","TE","PHI","24.5","2019","7","254","1996-07-15"
+"14146","15a4f552-ecaf-45bd-9006-aa5dda93bee6","00-0035631","18561",NA,"SampDr00","drew-sample-1","6001","3127310",NA,"Drew Sample","drew sample","TE","CIN","24.8","2019","2","52","1996-04-16"
+"14147","987c5e68-21d5-4bcb-a5f3-2e09cc512374","00-0035717","18199",NA,"BosaNi00","nick-bosa-1","5816","4040605",NA,"Nick Bosa","nick bosa","DE","SFO","23.3","2019","1","2","1997-10-23"
+"14148","e3601423-c3ac-4013-bbe9-3478e2b7e1dd","00-0035647",NA,NA,"SweaMo00","montez-sweat-1","6124","3134690",NA,"Montez Sweat","montez sweat","DE","WAS","24.4","2019","1","26","1996-09-04"
+"14149","99847f76-5bf2-4cbe-8573-9a477f7fb472","00-0034967",NA,NA,"GaryRa00","rashan-gary-1","5839","4046523",NA,"Rashan Gary","rashan gary","LB","GBP","23.2","2019","1","12","1997-12-03"
+"14150","5314292d-aac5-4fe1-be7e-8f2ddf2d45a8","00-0035531",NA,NA,"BryaAu00","austin-bryant-1","5942","3728253",NA,"Austin Bryant","austin bryant","DE","DET","24.2","2019","4","117","1996-11-12"
+"14151","108759bf-8c78-41c6-a409-b87c63985c21","00-0035692",NA,NA,NA,NA,"5842","3728258",NA,"Clelin Ferrell","clelin ferrell","DE","LVR","23.7","2019","1","4","1997-05-17"
+"14152","d0d2e26b-f5a7-4455-86b8-096508ac8eea","00-0035281",NA,NA,"JackJo02","joe-jackson-3","5923","4037459",NA,"Joe Jackson","joe jackson","DE","CLE","24.1","2019","5","165","1996-12-20"
+"14153","f68685e7-9904-47bc-b39a-e1c813435385","00-0035248",NA,NA,"AlleZa01","zach-allen-5","5871","3915282",NA,"Zach Allen","zach allen","DE","ARI","23.4","2019","3","65","1997-08-20"
+"14154","8bc51884-c9db-4745-8731-20eff25f41b0","00-0035254",NA,NA,"NelsAn01","anthony-nelson-1","6003","3894856",NA,"Anthony Nelson","anthony nelson","LB","TBB","23.9","2019","4","107","1997-03-04"
+"14155","9d546e3b-0eb3-4926-a5ef-eb5e48b9330e","00-0035636",NA,NA,"CollLJ00","lj-collier-1","5861","3116449",NA,"LJ Collier","lj collier","DE","SEA","25.4","2019","1","29","1995-09-12"
+"14156","26d3edb9-e572-4272-835a-21b63200ea64","00-0035267",NA,NA,"MillSh00","shareef-miller-1","5900","3929648",NA,"Shareef Miller","shareef miller","DE","ARI","23.9","2019","4","138","1997-03-14"
+"14157","b8e0fa49-1122-4e97-9fe2-d90f6b7cb444","00-0035718",NA,NA,"WillQu00","quinnen-williams-1","6118","4040982",NA,"Quinnen Williams","quinnen williams","DE","NYJ","23.1","2019","1","3","1997-12-21"
+"14158","adabdc56-278f-48b9-a003-1329b7f2f663","00-0035230",NA,NA,"OlivEd00","ed-oliver-2","5841","4039303",NA,"Ed Oliver","ed oliver","DT","BUF","23.1","2019","1","9","1997-12-12"
+"14159","31bd7a4c-8eaf-4ea3-871c-b44420c804f8","00-0035683",NA,NA,"LawrDe03","dexter-lawrence-1","5847","4035483",NA,"Dexter Lawrence","dexter lawrence","DT","NYG","23.2","2019","1","17","1997-11-12"
+"14160","5ec1f072-8ce0-449d-bbc0-5e8160836007","00-0035219",NA,NA,"BuggIs00","isaiah-buggs-1","6033","4241451",NA,"Isaiah Buggs","isaiah buggs","DE","PIT","23.4","2019","6","192","1997-08-24"
+"14161","9da6119d-b135-4b90-9f9d-7d08ab00b15d","00-0035674",NA,NA,"TillJe00","jerry-tillery-2","6129","3863182",NA,"Jerry Tillery","jerry tillery","DT","LAC","24.3","2019","1","28","1996-10-08"
+"14162","6c640668-de81-49c4-a0da-e367e1747923","00-0035231",NA,NA,"WilkCh00","christian-wilkins-1","6120","3728266",NA,"Christian Wilkins","christian wilkins","DT","MIA","25.1","2019","1","13","1995-12-20"
+"14163","dcbe3642-aa52-43e6-8f4c-4b9809377c4d","00-0035643",NA,NA,"SimmJe01","jeffery-simmons-1","6125","4035369",NA,"Jeffery Simmons","jeffery simmons","DT","TEN","23.5","2019","1","19","1997-07-28"
+"14164","92c8bc67-756d-4e3c-981c-3df010e15e2d","00-0035678",NA,NA,"JoneDr00","dremont-jones-1","5865","3915525",NA,"DreMont Jones","dremont jones","DE","DEN","24.1","2019","3","71","1997-01-05"
+"14165","f042a554-0303-4cbb-8ca3-b56281664b7f","00-0035128",NA,NA,"WillGe02",NA,"6134","3115258",NA,"Gerald Willis","gerald willis","DE","FA","25","2019",NA,NA,NA
+"14166","b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7","00-0034985",NA,NA,"MackDa00","daylon-mack-1","6048","3917316",NA,"Daylon Mack","daylon mack","DT","TEN","23.9","2019","5","160","1997-02-23"
+"14167","dd7be5f3-c615-4621-92e1-2434519cb1f9","00-0035642",NA,NA,"AlleJo03","josh-allen-6","5840","3915239",NA,"Josh Allen","josh allen","DE","JAC","23.6","2019","1","7","1997-07-13"
+"14168","37849d01-7d7e-4a35-8840-e17cacd73d85","00-0035707","18204",NA,"WhitDe02","devin-white-1","6119","4035434",NA,"Devin White","devin white","LB","TBB","23","2019","1","5","1998-02-17"
+"14169","0790a8d6-5316-4204-91a6-8508ca48973b","00-0035144",NA,NA,"WilsMa03","mack-wilson-1","6131","4040983",NA,"Mack Wilson","mack wilson","LB","CLE","23","2019","5","155","1998-02-14"
+"14170","ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf","00-0035525","18237",NA,"BushDe01","devin-bush-2","5843","4036261",NA,"Devin Bush","devin bush","LB","PIT","22.5","2019","1","10","1998-07-18"
+"14171","dbf199a9-542e-4279-8764-3341b9f80910","00-0035713",NA,NA,"BurnBr00","brian-burns-2","5862","4035631",NA,"Brian Burns","brian burns","DE","CAR","22.8","2019","1","16","1998-04-23"
+"14172","c3f75363-b89a-4d6f-be40-e10ee2704c6c","00-0035115",NA,NA,NA,NA,"6020","3862861",NA,"Tevon Coney","tevon coney","LB","FA","23.6","2019",NA,NA,"1997-06-10"
+"14173","9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a",NA,NA,NA,"PoliJa00","jachai-polite-1","5851","4034967",NA,"Jachai Polite","jachai polite","LB","FA","22.8","2019","3","68","1998-03-30"
+"14175","a1ed2859-499b-4dbb-96b7-0d8728290de6","00-0035284",NA,NA,"WalkDA02","dandre-walker-1","6135","3915196",NA,"DAndre Walker","dandre walker","LB","FA","24","2019","5","168","1997-01-23"
+"14176","5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee","00-0035654",NA,NA,"WinoCh00","chase-winovich-1","6133","3115974",NA,"Chase Winovich","chase winovich","DE","NEP","25.8","2019","3","77","1995-04-19"
+"14177","54feeb01-a1d6-4313-b8b5-5663f698b5bd","00-0035638",NA,NA,"WillGr00","greedy-williams-1","6123","4035437",NA,"Greedy Williams","greedy williams","CB","CLE","23.2","2019","2","46","1997-12-03"
+"14178","02d1b3c3-f292-4174-89fa-9ecc6286adb0","00-0035684",NA,NA,"BakeDe00","deandre-baker-1","5852","3915163",NA,"Deandre Baker","deandre baker","CB","KCC","23.4","2019","1","30","1997-09-04"
+"14179","a1052a59-114e-4340-8936-bffb17431300","00-0034974",NA,NA,"LoveJu00","julian-love-1","5876","4046675",NA,"Julian Love","julian love","S","NYG","22.9","2019","4","108","1998-03-19"
+"14180","c025b513-9431-4097-bc25-9777bf08f846","00-0035236",NA,NA,"MurpBy00","byron-murphy-1","5864","4038999",NA,"Byron Murphy","byron murphy","CB","ARI","23","2019","2","33","1998-01-18"
+"14181","c5e92aff-ce1e-4ce0-b838-6149f8ce875f","00-0035695",NA,NA,NA,NA,"5853","4035458",NA,"Trayvon Mullen","trayvon mullen","CB","LVR","23.4","2019","2","8","1997-09-20"
+"14182","aac96096-362f-4254-952a-5b3b04472f19","00-0035632",NA,NA,"HookAm00","amani-hooker-1","5908","4036134",NA,"Amani Hooker","amani hooker","S","TEN","22.6","2019","4","116","1998-06-14"
+"14183","db3a0416-6758-485d-89e1-806af99e0991","00-0035532",NA,NA,"ThomDe06","deionte-thompson-1","5866","3859100",NA,"Deionte Thompson","deionte thompson","S","ARI","24","2019","5","139","1997-02-11"
+"14184","26b6ac3e-facf-48eb-ae5b-afd30b2544b2","00-0035693",NA,NA,NA,NA,"5860","3728305",NA,"Johnathan Abram","johnathan abram","S","LVR","24.3","2019","1","27","1996-10-25"
+"14185","279be739-bfd5-47aa-8302-fc58bcba37d5","00-0035677",NA,NA,"AddeNa00",NA,"5881","3912028",NA,"Nasir Adderley","nasir adderley","S","LAC","23.7","2019","2","60","1997-05-31"
+"14186","1cccc54a-c168-4359-bfbc-30556db0ca73","00-0035663",NA,NA,"RappTa00","tyler-rapp-2","5882","4039007",NA,"Taylor Rapp","taylor rapp","S","LAR","23.1","2019","2","61","1997-12-22"
+"14190","2b129eab-b967-4d0d-bc6e-28c0781bcdd3","00-0031543",NA,NA,"LongTy00",NA,"2650","2582324",NA,"Ty Long","ty long","PN","LAC","27.8","2019",NA,NA,"1993-04-06"
+"14191",NA,NA,NA,NA,NA,NA,"6031",NA,NA,"Alex Barnes","alex barnes","RB","FA","24.3","2019",NA,NA,"1996-10-27"
+"14192","495651ef-1a14-42be-9f6a-40385a428dd8",NA,NA,NA,NA,NA,"6169","3884368",NA,"James Williams","james williams","RB","FA",NA,"2019",NA,NA,NA
+"14194","a511be63-5fc1-4e67-b798-fc801e3c166d","00-0035728",NA,NA,NA,NA,"6196","4420894",NA,"Christian Wade","christian wade","RB","FA","29.7","2019",NA,NA,"1991-05-15"
+"14195","a96e777e-120a-4843-8bfb-59069bd1bd52","00-0035660","18680",NA,"WarrKa00","kahale-warring-1","6164","3933327",NA,"Kahale Warring","kahale warring","TE","HOU","23.9","2019","3","86","1997-03-23"
+"14197","e1b066fb-d077-42a3-9f5d-4ed560c9d777","00-0034968",NA,NA,"SavaDa00","darnell-savage-jr-1","6210","3915419",NA,"Darnell Savage","darnell savage","S","GBP","23.5","2019","1","21","1997-07-30"
+"14198","bbeb74ae-87d4-417d-ba57-670391baf8ca","00-0035637",NA,NA,"Ya-SRo00","rock-ya-sin-1","6128","3910229",NA,"Rock Ya-Sin","rock ya-sin","CB","IND","24.7","2019","2","34","1996-05-23"
+"14199","f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d","00-0035239",NA,NA,"BuntSe00","sean-bunting-1","6060","3932886",NA,"Sean Murphy-Bunting","sean murphy-bunting","CB","TBB","23.6","2019","2","39","1997-06-19"
+"14200","dfb05fbc-7329-4893-8dc1-3d30033e49d0","00-0035240",NA,NA,"TavaJa00","jahlani-tavai-1","6179","3124587",NA,"Jahlani Tavai","jahlani tavai","LB","DET","24.3","2019","2","43","1996-09-28"
+"14201","154d65c6-b3fc-4ac4-99a6-48c191e90ffc","00-0035241",NA,NA,NA,NA,"6127","4035286",NA,"Joejuan Williams","joejuan williams","CB","NEP","23.2","2019","2","13","1997-12-06"
+"14202","1c468a8a-355f-429a-a12d-d8528fdc6aa2","00-0035139",NA,NA,"BlaiMa01","marquise-blair-1","5982","4243244",NA,"Marquise Blair","marquise blair","S","SEA","23.5","2019","2","47","1997-07-18"
+"14204","8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3","00-0034969",NA,NA,"BanoBe00","ben-banogu-1","5971","3124970",NA,"Ben Banogu","ben banogu","DE","IND","25","2019","2","49","1996-01-19"
+"14205","acbf5978-d7da-4d01-8f1d-22dd65d4484c","00-0035244",NA,NA,"JohnLo01","lonnie-johnson-4","5883","4240780",NA,"Lonnie Johnson","lonnie johnson","CB","HOU","25","2019","2","54",NA
+"14206","c6c5ae5d-59c6-437d-9768-34e377fddcec","00-0035247",NA,NA,"HillTr00","trysten-hill-1","5989","4042141",NA,"Trysten Hill","trysten hill","DT","DAL","22.9","2019","2","58","1998-03-25"
+"14207","73ec5a10-dd68-448e-938f-25021cbc3004","00-0035625",NA,NA,"ThorJu00","juan-thornhill-1","6145","3917909",NA,"Juan Thornhill","juan thornhill","S","KCC","24.3","2019","2","63","1996-10-19"
+"14208","244c00c7-fe9a-4f4f-adff-1d5b9c8877e7","00-0035216","18615","3419","JohnDi01","diontae-johnson-1","5937","3932905",NA,"Diontae Johnson","diontae johnson","WR","PIT","24.6","2019","3","66","1996-07-05"
+"14209","dc83f7af-7b30-4c4a-9c93-f67bd8db954b","00-0035249","18487",NA,"OlivJo00","josh-oliver-1","5973","3921690",NA,"Josh Oliver","josh oliver","TE","JAC","23.9","2019","3","69","1997-03-21"
+"14210","ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2","00-0035697",NA,NA,"PratGe00","germaine-pratt-1","5894","3116724",NA,"Germaine Pratt","germaine pratt","LB","CIN","23.7","2019","3","72","1997-05-21"
+"14211","57bda6af-7324-4e96-a207-525501224c41","00-0035665",NA,NA,"LongDa02","david-long-3","5914","4046536",NA,"David Long","david long","CB","LAR","23","2019","3","79","1998-02-06"
+"14212","471db686-fa8e-484c-8525-0169b0a8f773","00-0035646",NA,NA,"TakiSi00","sione-takitaki-1","6211","3138834",NA,"Sione Takitaki","sione takitaki","LB","CLE","25.7","2019","3","80","1995-06-08"
+"14213","cae34950-dcb7-4021-ad21-0a8ae7cf47f1","00-0035655",NA,NA,"HarrWi02","william-harris-4","5920","3915297",NA,"Will Harris","will harris","S","DET","25.1","2019","3","81","1995-12-19"
+"14214","4fce55c1-1afb-4667-9115-0e239b72285b","00-0035650",NA,NA,"LaynJu00","justin-layne-1","5905","4046719",NA,"Justin Layne","justin layne","CB","PIT","23.1","2019","3","83","1998-01-12"
+"14215","757c55e1-2f3a-41d2-a211-16bf577a1586","00-0035656",NA,NA,"SaunKh00",NA,"6177","3121634",NA,"Khalen Saunders","khalen saunders","DT","KCC","24.5","2019","3","84","1996-08-09"
+"14216","4706e72c-c7ef-4fa0-b16b-e864a1085dd7","00-0035651",NA,NA,"FergJa02","jaylon-ferguson-1","5879","3122766",NA,"Jaylon Ferguson","jaylon ferguson","LB","BAL","25.1","2019","3","85","1995-12-14"
+"14217","577dfac0-3f0b-45ee-afff-c851c6aebb1e","00-0035672",NA,NA,"BartCo00","cody-barton-1","6065","3926229",NA,"Cody Barton","cody barton","LB","SEA","24.2","2019","3","88","1996-11-13"
+"14218","6c338c70-42d9-4d35-bf87-04fe7e2f690a","00-0035687",NA,NA,"OkerBo00","bobby-okereke-1","5944","3117253",NA,"Bobby Okereke","bobby okereke","LB","IND","24.5","2019","3","89","1996-07-29"
+"14219","278a0811-98b8-42d2-96e9-160b7f364ae0","00-0035699",NA,NA,"DeanJa00","jamel-dean-1","5946","3873935",NA,"Jamel Dean","jamel dean","CB","TBB","24.3","2019","3","94","1996-10-15"
+"14220","9898a791-ba28-4a68-beee-ad12f61af7db","00-0035708",NA,NA,"XimiOs00","oshane-ximines-1","6132","3123233",NA,"Oshane Ximines","oshane ximines","DE","NYG","25.2","2019","3","95","1995-12-07"
+"14221","8227621d-ad2e-4dea-aef5-64d4f154adb2","00-0035680",NA,NA,"WillQu01",NA,"6214","3110565",NA,"Quincy Williams","quincy williams","LB","JAC","24.4","2019","3","98","1996-08-28"
+"14222","b2da84c5-e51c-47d8-bccc-888f8caaa8ad","00-0035681",NA,NA,"EdwaMi01","mike-edwards-8","5959","3155647",NA,"Mike Edwards","mike edwards","S","TBB","24.7","2019","3","99","1996-05-18"
+"14223","ae4faec0-509d-4080-b5cb-d1a44d062858","00-0034972","18621","3458","MattAl01","alexander-mattison-1","5987","4048244",NA,"Alexander Mattison","alexander mattison","RB","MIN","22.6","2019","3","102","1998-06-19"
+"14224","5fb6e9f1-2efa-44c9-876f-4d635484be88","00-0035253",NA,NA,"GardCh00","chauncey-gardner-1","5893","4034953",NA,"Chauncey Gardner-Johnson","chauncey gardner-johnson","S","NOS","23.1","2019","4","105","1997-12-20"
+"14225","3ae55cda-ad32-46c5-bde7-470755f37f3a","00-0034973",NA,NA,NA,NA,"5991","3916655",NA,"Maxx Crosby","maxx crosby","DE","LVR","23.4","2019","4","4","1997-08-22"
+"14226","26421b57-c32f-45d3-abcf-c23defaf4f2e","00-0035530",NA,NA,"WillKh00","khari-willis-1","6152","3929835",NA,"Khari Willis","khari willis","S","IND","24.7","2019","4","109","1996-05-07"
+"14227","e8e8a5fe-00d1-4ffc-9401-9e5cb254afea","00-0034941",NA,NA,"WishMi00","mitch-wishnowsky-1","6173","4035685",NA,"Mitch Wishnowsky","mitch wishnowsky","PN","SFO","28.9","2019","4","110","1992-03-03"
+"14228","fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1","00-0035255",NA,NA,"ShefKe00","kendall-sheffield-1","6140","3925358",NA,"Kendall Sheffield","kendall sheffield","CB","ATL","24.7","2019","4","111","1996-05-30"
+"14229","6c1cd007-fea3-47bb-a8b1-4e4c040a2d94","00-0035257",NA,NA,"MillCh04","christian-miller-2","5986","3126362",NA,"Christian Miller","christian miller","LB","CAR","24.6","2019","4","115","1996-06-16"
+"14230","32b601e7-4491-479a-895a-2f96add83e09","00-0034977",NA,NA,"RedwSh00","sheldrick-redwine-1","5983","3917852",NA,"Sheldrick Redwine","sheldrick redwine","S","CLE","24.2","2019","4","119","1996-11-06"
+"14231","f6c34178-e063-444b-96b3-df6b3cf66419","00-0035259",NA,NA,"WescTr00","trevon-wesco-1","6181","4039253",NA,"Trevon Wesco","trevon wesco","TE","NYJ","25.4","2019","4","121","1995-09-12"
+"14232","0ee41c7d-1afa-4ac7-ae6d-66e4da18052d","00-0035260",NA,NA,"WrenRe00","renell-wren-1","6157","3128815",NA,"Renell Wren","renell wren","DT","CIN","25.3","2019","4","125","1995-10-23"
+"14233","0b93712a-3c39-4d73-aca5-ca04ed05bd59","00-0034979",NA,NA,"MarsIm00","iman-marshall-1","6023","3912545",NA,"Iman Marshall","iman marshall","CB","BAL","23.9","2019","4","127","1997-02-27"
+"14234","079575a5-029c-4960-bd45-66cd63f659fb","00-0034980",NA,NA,NA,NA,"5951","3126182",NA,"Isaiah Johnson","isaiah johnson","CB","LVR","25.1","2019","4","27","1995-12-20"
+"14235","d468dfe5-8ad2-4c8b-b7ba-0962316a2156","00-0035262",NA,NA,"TranDr00","drue-tranquill-1","6141","3129310",NA,"Drue Tranquill","drue tranquill","LB","LAC","25.5","2019","4","130","1995-08-15"
+"14236","9448aee3-538c-4ff3-8781-bc848b086bfc","00-0035142",NA,NA,NA,NA,"6216","3886834",NA,"Ugo Amadi","ugo amadi","CB","SEA","23.7","2019","4","30","1997-05-16"
+"14237","724c3e97-bd2a-4d48-850e-352829e51708","00-0035667",NA,NA,"GainGr00","greg-gaines-2","5981","3127294",NA,"Greg Gaines","greg gaines","DT","LAR","24.7","2019","4","134","1996-05-06"
+"14238","c41a772c-8458-4f5d-b7b5-8c2a23406fa3","00-0035265",NA,NA,"ComiJo00",NA,"6116","4411771",NA,"John Cominsky","john cominsky","DE","ATL","25.2","2019","4","135","1995-11-22"
+"14239","9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a","00-0034981","18397",NA,NA,NA,"5985","3843945",NA,"Foster Moreau","foster moreau","TE","LVR","23.7","2019","4","35","1997-05-06"
+"14240","58f18567-a050-49c4-aeca-b34499338b37","00-0035222",NA,NA,"GentZa00","zach-gentry-2","6018","3929924",NA,"Zach Gentry","zach gentry","TE","PIT","24.4","2019","5","141","1996-09-10"
+"14241","8fe853ae-184e-4c65-a00e-70d2f141504f","00-0035143",NA,NA,"BurrBe00","ben-burr-kirven-1","6098","3886816",NA,"Ben Burr-Kirven","ben burr-kirven","LB","SEA","23.4","2019","5","142","1997-09-08"
+"14242","598a8d06-43b3-40f2-b4e1-59e06baddf83","00-0035533",NA,NA,"ConnRy00","ryan-connelly-1","5979","3121538",NA,"Ryan Connelly","ryan connelly","LB","MIN","25.3","2019","5","143","1995-10-03"
+"14243","8d44783d-6149-4e6c-8a5f-5fead0ec7677",NA,NA,NA,"TellMa00","marvell-tell-iii-1","6143","3912544",NA,"Marvell Tell","marvell tell","S","IND","24.5","2019","5","144","1996-08-02"
+"14244","2b90e091-ef78-4753-93eb-0acf3632c206","00-0035269",NA,"4867","GayxMa00","matt-gay-2","6083","4249087",NA,"Matt Gay","matt gay","PK","LAR","26.9","2019","5","145","1994-03-15"
+"14245","3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568","00-0035270",NA,NA,"OruwAm00","amani-oruwariye-1","5888","3116175",NA,"Amani Oruwariye","amani oruwariye","CB","DET","25","2019","5","146","1996-02-09"
+"14246","0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7","00-0035271",NA,NA,"JoseVo00","vosean-joseph-1","5907","4034945",NA,"Vosean Joseph","vosean joseph","LB","FA","23.1","2019","5","147","1997-12-15"
+"14247","e6eb9d50-9231-44ff-89eb-7f7b996e042f","00-0034982",NA,NA,"GreeDr00","dre-greenlaw-1","6056","3916903",NA,"Dre Greenlaw","dre greenlaw","LB","SFO","23.7","2019","5","148","1997-05-25"
+"14248","0681ed0d-6b7a-4582-85b8-2692f0c2f058","00-0034984",NA,NA,"KekeKi00","kingsley-keke-1","6103","3917340",NA,"Kingsley Keke","kingsley keke","DE","GBP","24.3","2019","5","150","1996-09-26"
+"14249","7b47d190-168b-44bc-bb91-a688fe28f768","00-0035272",NA,NA,"VanGAn00","andrew-van-ginkel-1","6183","3133487",NA,"Andrew Van Ginkel","andrew van ginkel","LB","MIA","25.6","2019","5","151","1995-07-01"
+"14250","210bfe87-1c9c-48c3-951c-81aef4b2c763","00-0035591",NA,NA,"HollJu00","justin-hollins-1","6076","3122678",NA,"Justin Hollins","justin hollins","LB","LAR","25","2019","5","156","1996-01-15"
+"14251","17dfbad4-f4fc-4a65-a085-6cdcefe36879","00-0035276",NA,NA,"CashBl00","blake-cashman-1","6217","3728281",NA,"Blake Cashman","blake cashman","LB","NYJ","24.7","2019","5","157","1996-05-10"
+"14252","63fd7882-5d20-426e-9834-e85c0ebb4d5b","00-0035277",NA,NA,"JackMi01","michael-jackson-6","6025","3917853",NA,"Michael Jackson","michael jackson","CB","NEP","24.1","2019","5","158","1997-01-10"
+"14253","3fa97e08-13d9-47a8-b155-39f975964d47","00-0035278",NA,NA,"CowaBy00","byron-cowart-1","6006","3916922",NA,"Byron Cowart","byron cowart","DT","NEP","24.7","2019","5","159","1996-05-20"
+"14254","eff1c40e-715c-49c4-93d8-6155322c1205","00-0035279",NA,NA,"OmenCh00","charles-omenihu-1","5934","3929865",NA,"Charles Omenihu","charles omenihu","DE","HOU","23.4","2019","5","161","1997-08-20"
+"14255","14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0","00-0034986",NA,NA,"SmitCa01","cameron-smith-3","6176","3701669",NA,"Cameron Smith","cameron smith","LB","MIN","23.9","2019","5","162","1997-03-26"
+"14256","af1335c6-c262-4488-9352-86ba80754583","00-0035280",NA,NA,"BailJa00","jake-bailey-1","6093","3931395",NA,"Jake Bailey","jake bailey","PN","NEP","23.6","2019","5","163","1997-06-18"
+"14257","e653effc-2bdc-4bfe-bf3d-272e783ae4c4","00-0034987",NA,NA,"SpeeEJ00",NA,"6218","3071353",NA,"EJ Speed","ej speed","LB","IND","25.7","2019","5","164","1995-06-01"
+"14258","bd1f047a-978f-4643-b55f-f4d3b0719a4e","00-0035145",NA,NA,"SeibAu00","austin-seibert-1","6219","3821683",NA,"Austin Seibert","austin seibert","PK","CIN","24.2","2019","5","170","1996-11-15"
+"14259","c5614795-d8e3-4104-ad9b-edfb575410bb","00-0035285",NA,NA,"MillJo05","jordan-miller-3","6009","3886824",NA,"Jordan Miller","jordan miller","CB","SEA","24","2019","5","172","1997-02-08"
+"14260","c727b9d9-9776-415d-953c-9ae046e10a05","00-0035286",NA,NA,"HolcCo00","cole-holcomb-1","6220","3116689",NA,"Cole Holcomb","cole holcomb","LB","WAS","24.5","2019","5","173","1996-07-30"
+"14261","50ffb7df-ae23-4211-a495-3beac62a6522","00-0035218",NA,NA,"SmitSu00","sutton-smith-1","6188","3921970",NA,"Sutton Smith","sutton smith","LB","FA","24.9","2019","6","175","1996-03-22"
+"14262","b8db855b-fd1f-46e6-ac23-466f68130e6c","00-0035288",NA,NA,"HampSa00","saquan-hampton-1","6013","3127367",NA,"Saquan Hampton","saquan hampton","S","NYJ","25.1","2019","6","177","1995-12-12"
+"14263","e3a4104a-ceba-4df2-b265-70843ecf1fb0","00-0035633",NA,NA,"BallCo00",NA,"6283","4411769",NA,"Corey Ballentine","corey ballentine","CB","NYJ","24.8","2019","6","180","1996-04-13"
+"14264","c128dad7-899d-4bdf-af9b-9c205dbd4666","00-0035290",NA,NA,"JohnJa11","jaquan-johnson-1","5930","3672862",NA,"Jaquan Johnson","jaquan johnson","S","BUF","25.2","2019","6","181","1995-11-13"
+"14265","030f3ecf-f32f-497d-96a8-8f28d44fc311","00-0035592","18470",NA,"FulgTr00","travis-fulgham-1","6059","3139522",NA,"Travis Fulgham","travis fulgham","WR","PHI","25.4","2019","6","184","1995-09-13"
+"14266","ca08b2bc-7fad-4dec-88d9-5f5f9712a830","00-0034990",NA,NA,"HollKa00","kadar-hollman-1","6222","3916676",NA,"Kadar Hollman","kadar hollman","CB","GBP","26.4","2019","6","185","1994-09-18"
+"14267","fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e","00-0035593",NA,NA,"WinfJu00","juwann-winfree-1","6223","3128317",NA,"Juwann Winfree","juwann winfree","WR","GBP","24.4","2019","6","187","1996-09-04"
+"14268","55d7adb4-be58-4c59-9a6e-1ceb73c10c4d","00-0035292",NA,NA,"LongDa04","david-long-2","5928","3916074",NA,"David Long","david long","LB","TEN","22.3","2019","6","188","1998-10-12"
+"14269","1cb784d8-de4d-4962-a775-c7379b7053c2","00-0034992",NA,NA,"WattAr01","armon-watts-1","6186","3128685",NA,"Armon Watts","armon watts","DT","MIN","24.5","2019","6","190","1996-07-22"
+"14270","4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b","00-0034993",NA,NA,"EppsMa00","marcus-epps-1","6284","3139368",NA,"Marcus Epps","marcus epps","S","PHI","25","2019","6","191","1996-01-27"
+"14271","c3ff85db-bad4-444c-9123-812c933c8227","00-0035293",NA,NA,"CrawXa00","xavier-crawford-2","6285","3860287",NA,"Xavier Crawford","xavier crawford","CB","CHI","25.1","2019","6","195","1995-12-10"
+"14272","57df194b-d445-4e66-af51-7b781b0f529f","00-0035294",NA,NA,"AustBl00","blessuan-austin-1","5933","3870072",NA,"Blessuan Austin","blessuan austin","CB","NYJ","24.5","2019","6","196","1996-07-19"
+"14274","461b76db-dbf6-44c1-8cfa-a3c3edb100fd","00-0034997",NA,NA,"GreeGe00","gerri-green-1","6272","3115469",NA,"Gerri Green","gerri green","DE","LVR","25.4","2019","6","199","1995-09-14"
+"14275","c5e24b59-cafa-4174-b5dc-e02f5934fb2d","00-0035538",NA,NA,"EgbuEm00","emeke-egbule-1","5978","3914613",NA,"Emeke Egbule","emeke egbule","LB","LAC","24.3","2019","6","200","1996-10-13"
+"14276","a76eb878-71ee-418e-a46f-b35f6950aa95","00-0035147",NA,NA,"FentRa00","rashad-fenton-1","6014","3924364",NA,"Rashad Fenton","rashad fenton","CB","KCC","24","2019","6","201","1997-02-17"
+"14277","3ca39a84-5ba9-445d-bf6e-895be06edb34","00-0035296",NA,NA,"GreeMa02","marcus-green-6","6288","3124964",NA,"Marcus Green","marcus green","WR","FA","24.5","2019","6","203","1996-08-13"
+"14278","a7450b47-b784-490b-8edd-b5502f16366f","00-0035696",NA,NA,"ShelDu00","duke-shelley-1","6289","3916126",NA,"Duke Shelley","duke shelley","CB","CHI","24.3","2019","6","205","1996-10-08"
+"14279","d1e8f343-9556-46f6-a238-2053a50b57d6","00-0035223",NA,NA,"GilbUl00","ulysees-gilbert-iii-1","6057","3920867",NA,"Ulysees Gilbert","ulysees gilbert","LB","PIT","23.5","2019","6","207","1997-08-09"
+"14280","85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e","00-0035298","18714",NA,"MillSc01","scott-miller-3","6290","3914397",NA,"Scott Miller","scott miller","WR","TBB","23.5","2019","6","208","1997-07-31"
+"14283","2e9ef3ac-eca5-4eb9-a41d-f404dfaae460","00-0035301",NA,NA,"WilsDo01","donovan-wilson-2","6291","3122135",NA,"Donovan Wilson","donovan wilson","S","DAL","25.9","2019","6","213","1995-02-21"
+"14284","a1a73c32-c409-4ee0-8a7b-0ae589db85c8","00-0035148","18620",NA,"ThomDa06","darwin-thompson-1","6178","4361606",NA,"Darwin Thompson","darwin thompson","RB","KCC","24","2019","6","214","1997-02-12"
+"14286","96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb","00-0035150",NA,NA,"BoydKr00","kris-boyd-1","5921","3929845",NA,"Kris Boyd","kris boyd","CB","MIN","24.4","2019","7","217","1996-09-12"
+"14287","1731325a-0303-4a56-81f5-3c4a588cf0d6","00-0035304",NA,NA,"GillCu00","cullen-gillaspia-1","6293","3122143",NA,"Cullen Gillaspia","cullen gillaspia","RB","HOU","25.7","2019","7","220","1995-05-12"
+"14289","0a040f48-4fa1-479d-ae9d-3ab1457539ee","00-0035596",NA,NA,"WhytKe00","kerrith-whyte-1","6175","3919104",NA,"Kerrith Whyte","kerrith whyte","RB","FA","24.3","2019","7","222","1996-10-31"
+"14291","0e72812f-db64-4eb8-a7e4-41347067b375","00-0035306",NA,NA,"JohnDa10",NA,"6051","3957672",NA,"Darryl Johnson","darryl johnson","DE","BUF","23.8","2019","7","225","1997-04-04"
+"14292","5203e275-5554-47de-bc0a-5b13639e5b50","00-0034999",NA,NA,"SummTy00","ty-summers-1","6294","3116431",NA,"Ty Summers","ty summers","LB","GBP","25.1","2019","7","226","1995-12-31"
+"14293","4bbe8ab7-3ae2-42a6-a471-fd2b344843a2","00-0035307",NA,NA,"MoreJi00",NA,"6070","3120508",NA,"Jimmy Moreland","jimmy moreland","CB","WAS","25.4","2019","7","227","1995-08-26"
+"14294","ec63ee49-3a03-44ca-a083-3916f0bccd76","00-0035308",NA,NA,"SweeTo00","tommy-sweeney-1","6137","3122818",NA,"Tommy Sweeney","tommy sweeney","TE","BUF","25.6","2019","7","228","1995-07-01"
+"14295","ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6","00-0035310",NA,NA,"CoxxCh01","chandler-cox-1","6298","3843217",NA,"Chandler Cox","chandler cox","RB","FA","24.5","2019","7","233","1996-07-29"
+"14296","d61b7bc0-beec-4cab-97b0-7dbd27ded26e","00-0035312",NA,NA,"RussDo00","dontavius-russell-1","5926","3121587",NA,"Dontavius Russell","dontavius russell","DT","JAC","25.4","2019","7","235","1995-09-18"
+"14297","c00e0b6f-367f-4cf5-ba11-d23b1aa114f1","00-0035597",NA,NA,"UrsuJo00","john-ursua-1","6168","3933064",NA,"John Ursua","john ursua","WR","SEA","27","2019","7","236","1994-01-17"
+"14298","fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3","00-0035313",NA,NA,"GodwTe00","terry-godwin-1","5977","3915174",NA,"Terry Godwin","terry godwin","WR","JAC","24.3","2019","7","237","1996-10-23"
+"14301","6ee96e28-60b0-4e30-b014-6962e7d1c3db","00-0035315",NA,NA,"BrouCo00","cortez-broughton-1","6300","3139036",NA,"Cortez Broughton","cortez broughton","DT","LAC","24.4","2019","7","242","1996-09-02"
+"14302","4d383922-53ab-48f8-bb8a-29176ea3ffbc","00-0035669",NA,NA,"ScotNi01","nick-scott-1","6301","3116179",NA,"Nick Scott","nick scott","S","LAR","25.7","2019","7","243","1995-05-17"
+"14303","7c51883f-8ea7-4f54-8c03-a562b4524858","00-0035316",NA,NA,"ElliKa00","kadem-elliss-1","6302","3124890",NA,"Kaden Elliss","kaden elliss","LB","NOS","25.6","2019","7","244","1995-07-10"
+"14305","814e9529-e00f-4d02-925b-158ba1c6f840",NA,"18713",NA,"JohnOl00","olabisi-johnson-1","6088","3917067",NA,"Olabisi Johnson","olabisi johnson","WR","MIN","23.9","2019","7","247","1997-03-17"
+"14306","cf0c253d-45bd-48f5-9602-88c3d9ca1082","00-0035541",NA,NA,"DogbMi00","michael-dogbe-1","6304","3138765",NA,"Michael Dogbe","michael dogbe","DE","ARI","24.7","2019","7","249","1996-05-05"
+"14307","4d094a58-1cbe-4ede-abaa-cd2f1a492f0d","00-0035670",NA,NA,"AlleDa01","dakota-allen-1","5993","3139453",NA,"Dakota Allen","dakota allen","LB","JAC","25.2","2019","7","251","1995-11-02"
+"14308","b4f07920-56e3-4e9d-b787-014b2f940b0e","00-0035318",NA,NA,"WebsKe00","kendarius-webster-1","6405","3128743",NA,"Ken Webster","ken webster","CB","SFO","24.6","2019","7","252","1996-06-19"
+"14309","cd9b9d93-4368-4495-803e-f5d2524c8468","00-0035319",NA,NA,"BraiJo00","jordan-brailford-1","5954","3122420",NA,"Jordan Brailford","jordan brailford","LB","MIN","25.3","2019","7","253","1995-10-09"
+"14310","c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b","00-0035000",NA,NA,NA,NA,"6296","3933407",NA,"Quinton Bell","quinton bell","LB","FA","23.7","2019","7","16","1997-05-09"
+"14313","4aea9720-d991-44be-ac3b-cd778af531a1","00-0034943",NA,NA,NA,NA,"6107","3119471",NA,"Emmanuel Butler","emmanuel butler","WR","FA","24.4","2019",NA,NA,"1996-08-27"
+"14314","60acd19b-4197-4b04-ab5b-c287ca5a0b56",NA,NA,NA,NA,NA,"6072","3930901",NA,"Bruce Anderson","bruce anderson","RB","FA","23.6","2019",NA,NA,"1997-06-20"
+"14315","f374262b-d642-4d05-9584-5955548ee4d1","00-0035021",NA,NA,"DuliAs00",NA,"6427","4061956",NA,"Ashton Dulin","ashton dulin","WR","IND","23.7","2019",NA,NA,"1997-05-15"
+"14316","a296f2fe-7af8-4796-b50a-28ef010d0933","00-0035022",NA,NA,NA,NA,"5902","3917546",NA,"Penny Hart","penny hart","WR","SEA","24.6","2019",NA,NA,"1996-07-05"
+"14317","fcae1e29-5ca2-463e-92a6-0be893f5eb4a","00-0035120",NA,NA,"DossKe00",NA,"6032","3120980",NA,"Keelan Doss","keelan doss","WR","LVR","24.9","2019",NA,NA,"1996-03-21"
+"14318","1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc","00-0035090",NA,NA,NA,NA,"5997","3843603",NA,"Jazz Ferguson","jazz ferguson","WR","FA","24.1","2019",NA,NA,"1997-01-12"
+"14319","b556a98d-16aa-4a0d-9134-1b59c46cc640","00-0034959",NA,NA,"BeckAn01",NA,"6323","3125107",NA,"Andrew Beck","andrew beck","TE","DEN","24.7","2019",NA,NA,"1996-05-15"
+"14320","e98ce252-583a-4c74-a718-d38f1ba5793d","00-0034207",NA,NA,NA,NA,"5275","3053760",NA,"Jeff Badet","jeff badet","WR","WAS","26.5","2018",NA,NA,"1994-08-02"
+"14321","16da963d-a300-4d72-8e4d-7771196c03e9","00-0035164",NA,NA,NA,NA,"6171","3126115",NA,"Cody Thompson","cody thompson","WR","SEA","25.1","2019",NA,NA,"1996-01-11"
+"14322","a7b4b50a-9431-4551-89e1-6b8cb80536d7","00-0035386",NA,NA,"EdwaTJ02",NA,"5960","3121544",NA,"TJ Edwards","tj edwards","LB","PHI","24.5","2019",NA,NA,"1996-08-12"
+"14324","9d95c076-0ceb-4ecc-9187-4f77354c2d1f","00-0035058",NA,NA,NA,NA,"6016","3932963",NA,"Dax Raymond","dax raymond","TE","PIT","26.2","2019",NA,NA,"1994-11-30"
+"14328","65e778fa-4639-4973-bb82-c76efa2ff309","00-0035378",NA,NA,"WingAn01",NA,"6416","3918331",NA,"Andrew Wingard","andrew wingard","S","JAC","24.2","2019",NA,NA,"1996-12-05"
+"14329","adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d","00-0035019",NA,NA,NA,NA,"6261","3121225",NA,"Reggie White","reggie white","WR","FA","24.9","2019",NA,NA,"1996-03-10"
+"14330","4bfd6f35-f0ac-4c43-a023-f8236df31deb","00-0035181",NA,NA,"ShepDa00",NA,"6519","3120588",NA,"Darrius Shepherd","darrius shepherd","WR","FA","25.3","2019",NA,NA,"1995-11-01"
+"14331","f46e812f-14c6-4af8-9316-01a880adebc5","00-0035628",NA,NA,"JohnDE04",NA,"6694","3139602",NA,"DErnest Johnson","dernest johnson","RB","CLE","24.9","2019",NA,NA,"1996-02-27"
+"14332","16551ae2-a27c-4c2d-aa48-0fce4fde68a8","00-0035009",NA,NA,NA,NA,"6501","3915230",NA,"CJ Conrad","cj conrad","TE","FA","24.7","2019",NA,NA,"1996-05-09"
+"14333","14e3c57f-0eb2-49b5-9e94-10a4a54990cf","00-0035489",NA,NA,"HillWe00",NA,"6115","3060919",NA,"Wes Hills","wes hills","RB","FA","25.7","2019",NA,NA,"1995-06-05"
+"14335","67da0db1-ed58-435d-b8bf-f7ffa02d8a24","00-0034921",NA,NA,NA,NA,"6208","3048898",NA,"Elliott Fry","elliott fry","PK","ATL","26.1","2019",NA,NA,"1994-12-12"
+"14336","bc67a9f0-8c96-4114-8b46-4c97fdd577d1","00-0035417",NA,NA,NA,NA,"6420","3126095",NA,"JonVea Johnson","jonvea johnson","WR","DAL","25.1","2019",NA,NA,"1995-12-23"
+"14337","ae9495b2-4c62-4e14-8e43-beb53e1ae28a","00-0035414","18941",NA,"GuytJa01",NA,"6421","3932430",NA,"Jalen Guyton","jalen guyton","WR","LAC","23.7","2019",NA,NA,"1997-06-07"
+"14338","6d882a8b-c34f-4de1-89d2-8ee71628e039","00-0035013",NA,NA,"HillJo03",NA,"6446","3122799",NA,"Jon Hilliman","jon hilliman","RB","FA","25.2","2019",NA,NA,"1995-11-14"
+"14339","a138f20f-8a41-4d0e-930a-a16b6cb597b3","00-0033215",NA,NA,NA,NA,"4050","4217370",NA,"Cyril Grayson","cyril grayson","WR","FA","27.2","2017",NA,NA,"1993-12-05"
+"14341","4f246e92-3d21-450f-977a-dc16892c7238","00-0035329","18835",NA,NA,NA,"6074","3912092",NA,"Donald Parham","donald parham","TE","LAC","23.5","2019",NA,NA,"1997-08-16"
+"14342","d90a2ae8-cbd6-40cd-a545-3501c93c0822","00-0034132",NA,NA,NA,NA,"5241","3126002",NA,"Christian Blake","christian blake","WR","ATL","24.6","2018",NA,NA,"1996-06-08"
+"14344","751d6fe8-85d9-4caa-bcca-493155dbff6b","00-0035394",NA,NA,NA,NA,"6317","3921586",NA,"Jacob Dolegala","jacob dolegala","QB","NEP","24.3","2019",NA,NA,"1996-10-07"
+"14348","634dcf96-92ca-474a-8a09-e26a12a7bafa","00-0034922",NA,NA,"HymaIs00",NA,"6209","3039968",NA,"Ishmael Hyman","ishmael hyman","WR","CAR","25.4","2019",NA,NA,"1995-08-23"
+"14350","ddd1fbb3-4db8-4d77-b522-9efd938ec8c5","00-0034551",NA,NA,NA,NA,"5168","3053732",NA,"Jordan Chunn","jordan chunn","RB","NYG","26.1","2018",NA,NA,"1995-01-02"
+"14352","1eaede88-f9fd-497d-93bf-2849948c993c","00-0033994",NA,NA,NA,NA,"4752","2971397",NA,"Fred Brown","fred brown","WR","DEN","27.2","2017",NA,NA,"1993-12-01"
+"14356","cafbcd5f-8b40-444e-baec-a48f49d8c5f0","00-0034192",NA,NA,NA,NA,"5465","4329472",NA,"Nick Keizer","nick keizer","TE","KCC","25.8","2018",NA,NA,"1995-05-02"
+"14358","f2f29019-7306-4b1c-a9d8-e9f802cb06e0","00-0035100",NA,NA,NA,NA,"6111","3886812",NA,"Jake Browning","jake browning","QB","MIN","24.8","2019",NA,NA,"1996-04-11"
+"14359","12b701c8-7f40-4437-aeef-782fd1d25f2e","00-0035726",NA,NA,"JohnJa12",NA,"6202","3115349",NA,"Jakob Johnson","jakob johnson","RB","NEP","26.1","2019",NA,NA,"1994-12-15"
+"14363","1ea6e870-84ff-44ba-8302-f0f08623fa26","00-0034193",NA,NA,NA,NA,"5171","3049290",NA,"Kevin Rader","kevin rader","TE","PIT","25.8","2018",NA,NA,"1995-04-26"
+"14365","ff05729b-558a-494c-b075-abdacb639279","00-0033705",NA,NA,NA,NA,"4669","3047504",NA,"Andre Patton","andre patton","WR","FA","26.7","2017",NA,NA,"1994-05-28"
+"14367","7f48c754-002d-4d0c-ba40-8c402f95a7c4","00-0035428",NA,NA,NA,NA,"6089","3115359",NA,"Daniel Helm","daniel helm","TE","SFO","25.8","2019",NA,NA,"1995-04-20"
+"14368","e25b6e0d-efa3-4425-bab6-5f846b902195","00-0035187",NA,NA,"WaltAu00",NA,"6553","3123857",NA,"Austin Walter","austin walter","RB","SFO","24.5","2019",NA,NA,"1996-08-17"
+"14370","2fa75e05-cac4-4b40-8924-dbc9ae0c959c","00-0034613",NA,NA,NA,NA,"5409","3050481",NA,"Tanner Hudson","tanner hudson","TE","TBB","26.2","2018",NA,NA,"1994-11-12"
+"14372","8d3ac8d8-e18f-4485-acc6-55c79adcc2a8","00-0032986",NA,NA,NA,NA,"3695","2970262",NA,"JP Holtz","jp holtz","TE","CHI","27.4","2016",NA,NA,"1993-08-28"
+"14373","967a20b1-e334-4ebb-a1b5-f46111ab7325","00-0035401",NA,NA,"WillDa11",NA,"6549","4241723",NA,"Damion Willis","damion willis","WR","FA","23.6","2019",NA,NA,"1997-06-20"
+"14377","3bdd0681-066b-477f-bca9-6b38bad6d8e9","00-0034587",NA,NA,NA,NA,"5636","3119119",NA,"Abdullah Anderson","abdullah anderson","DE","MIN","25","2018",NA,NA,"1996-01-24"
+"14379","abdf27dc-a54d-427c-a745-173f1c485292","00-0034801",NA,NA,NA,NA,"5757","3128303",NA,"Josh Woods","josh woods","LB","CHI","24.6","2018",NA,NA,"1996-07-01"
+"14380","7917b396-b7e0-4722-9a5a-7c608dd0a6ff","00-0034533",NA,NA,NA,NA,"5642","3046382",NA,"Trayvon Henderson","trayvon henderson","CB","CIN","25.5","2018",NA,NA,"1995-08-15"
+"14384","7f35aa83-30f3-4997-b5de-11b0c19e90cb","00-0034954",NA,NA,"ReedMa01",NA,"6436","3124634",NA,"Malik Reed","malik reed","LB","DEN","24.5","2019",NA,NA,"1996-08-05"
+"14387","d58166e2-24ee-4dd2-ae22-36b05634eb6d","00-0034648",NA,NA,NA,NA,"5692","3040204",NA,"Ryan Santoso","ryan santoso","PK","NYG","25.4","2018",NA,NA,"1995-08-26"
+"14388","1aec5d74-58c8-4bf2-9508-f09e6384952c","00-0033997",NA,NA,"ShelBr01",NA,"4761","3057876",NA,"Brady Sheldon","brady sheldon","LB","NYJ","27.9","2017",NA,NA,"1993-02-23"
+"14394","bc6aa137-cef3-481e-a87a-e06dad32882c","00-0032830",NA,NA,NA,NA,"3808","3916678",NA,"Rolan Milligan","rolan milligan","S","IND","26.5","2016",NA,NA,"1994-08-16"
+"14398","43211a61-4d89-4982-bbf1-9b932316b571","00-0034736",NA,NA,NA,NA,"5741","3116387",NA,"Steven Parker","steven parker","S","DAL","25.1","2018",NA,NA,"1995-12-14"
+"14400","c03646a8-503b-49a9-8251-b9c44f13a2ff","00-0035343",NA,NA,"LedbJo01",NA,"5945","3728308",NA,"Jonathan Ledbetter","jonathan ledbetter","DE","MIA","23.4","2019",NA,NA,"1997-09-12"
+"14401","3b4c4797-d35d-4885-93a3-06d85242b522","00-0034902",NA,NA,NA,NA,"5830","2577637",NA,"Sam Eguavoen","sam eguavoen","LB","MIA","27.9","2019",NA,NA,"1993-02-22"
+"14405","d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e","00-0035402",NA,NA,"GranCa01",NA,"5912","3918310",NA,"Carl Granderson","carl granderson","DE","NOS","24.1","2019",NA,NA,"1996-12-18"
+"14411","68b3f7e5-cc33-41e1-833c-8f48cb70bf72","00-0034903",NA,NA,NA,NA,"5827","4410136",NA,"Tevaughn Campbell","tevaughn campbell","CB","LAC","27.6","2018",NA,NA,"1993-06-14"
+"14412","954d9ed8-41ed-4222-b0d8-b3cc8d1755a5","00-0031898",NA,NA,NA,NA,"2617","2612151",NA,"Alex Singleton","alex singleton","LB","PHI","27.2","2015",NA,NA,"1993-12-07"
+"14414","411c2af8-64c9-4982-8d72-3ba4c683c0db","00-0034485",NA,NA,NA,NA,"5520","4331768",NA,"Jonathan Owens","jonathan owens","CB","HOU","25.5","2018",NA,NA,"1995-07-22"
+"14419","1a59e864-5282-4d94-b678-8537d524e181","00-0032835",NA,NA,NA,NA,"3805","3135726",NA,"Jon Brown","jon brown","PK","FA","28.2","2016",NA,NA,"1992-12-07"
+"14420","7ade135c-0760-4548-b7d9-cf1174e2be33","00-0035125",NA,NA,"IngoAl01",NA,"6109","3917668",NA,"Alec Ingold","alec ingold","RB","LVR","24.6","2019",NA,NA,"1996-07-09"
+"14421","18264a0b-cb51-487a-b2cc-f9258f0325f6","00-0034588",NA,NA,NA,NA,"5664","3123054",NA,"Trent Harris","trent harris","DE","NYG","25.4","2018",NA,NA,"1995-09-17"
+"14426","f0c7de3c-9e8b-4c3d-b42f-985f29ce163f","00-0035189",NA,NA,NA,NA,"6268","3128444",NA,"Matthew Wright","matthew wright","PK","DET","24.9","2019",NA,NA,"1996-03-22"
+"14434","186a4bda-d3b3-48c1-8ed7-cb4ad1014062",NA,NA,NA,"ReavJe00",NA,"5792","3125248",NA,"Jeremy Reaves","jeremy reaves","S","WAS","24.4","2018",NA,NA,"1996-08-29"
+"14435","2d16fcef-89b8-4a92-844f-a92c4e20b5c9","00-0034578",NA,NA,"BonnRe00",NA,"5162","3116642",NA,"Reggie Bonnafon","reggie bonnafon","RB","CAR","25.1","2019",NA,NA,"1996-01-04"
+"14440","019f8019-2a29-4131-b6fb-ea32568c1fc8","00-0035374",NA,NA,"WalkMi00",NA,"6363","3915296",NA,"Michael Walker","michael walker","WR","FA","24.3","2019",NA,NA,"1996-10-29"
+"14450","c64e0229-181c-4a4d-9994-4501b09cd646","00-0035154",NA,NA,NA,NA,"5941","3929817",NA,"Felton Davis","felton davis","WR","FA","23.9","2019",NA,NA,"1997-02-25"
+"14456","095f659a-2aaa-4961-912c-66f337755787","00-0035375",NA,NA,"WatsBr01",NA,"6244","3115968",NA,"Brandon Watson","brandon watson","CB","JAC","25.6","2019",NA,NA,"1995-07-11"
+"14458","3eb32502-2ecd-44b9-978e-33473fdd8354","00-0035427",NA,NA,NA,NA,"6246","3914534",NA,"Jeremy Cox","jeremy cox","RB","DEN","24.5","2019",NA,NA,"1996-08-16"
+"14464","97e65d1d-c738-4812-840e-030f0242bc29","00-0034788",NA,NA,NA,NA,"5754","3118954",NA,"Jaeden Graham","jaeden graham","TE","ATL","25.3","2018",NA,NA,"1995-10-10"
+"14465","fc793c8d-b29d-46f8-8f89-8e2964ff4480","00-0035551",NA,NA,"BrooTo01",NA,"6585","3886841",NA,"Tony Brooks-James","tony brooks-james","RB","ATL","26.2","2019",NA,NA,"1994-12-06"
+"14467","a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9","00-0035202",NA,NA,NA,NA,"6348","4240528",NA,"DelShawn Phillips","delshawn phillips","LB","FA","24.3","2019",NA,NA,"1996-10-09"
+"14472","1881d1a7-218b-4690-9065-497946d1ec1e","00-0035352",NA,NA,NA,NA,"6315","4035232",NA,"Tyrel Dodson","tyrel dodson","LB","BUF","22.6","2019",NA,NA,"1998-06-25"
+"14478","ee209aa3-145f-4acb-85fd-e8a2420b4d2a","00-0031838",NA,NA,NA,NA,"2778","2577145",NA,"James Vaughters","james vaughters","LB","CHI","27.6","2015",NA,NA,"1993-06-27"
+"14481","85325fdc-da47-4992-af60-a20d0b1ec980","00-0035548",NA,NA,"BryaVe00",NA,"6628","3138760",NA,"Ventell Bryant","ventell bryant","WR","CAR","24.4","2019",NA,NA,"1996-08-24"
+"14482","5a79cba5-d633-4ed0-8aa7-a244060432b3","00-0035549",NA,NA,"DawkNo00",NA,"6666","3911689",NA,"Noah Dawkins","noah dawkins","LB","NYJ","23.5","2019",NA,NA,"1997-08-13"
+"14486","021f2c32-0876-4db3-9605-e829f7d449d7","00-0035045",NA,NA,NA,NA,"6453","4249030",NA,"DJ Montgomery","dj montgomery","WR","NYJ","24.2","2019",NA,NA,"1996-11-17"
+"14488","013477a2-0271-4441-a0af-9bc25924a2f6","00-0035039",NA,NA,"CarlSt00",NA,"6451","3948283",NA,"Stephen Carlson","stephen carlson","TE","CLE","24.1","2019",NA,NA,"1996-12-12"
+"14489","bc63567a-81e7-44c9-a85f-8aa9532ab4fd","00-0035042",NA,NA,"GillJa00",NA,"6452","3936185",NA,"Jamie Gillan","jamie gillan","PN","CLE","23.6","2019",NA,NA,"1997-07-04"
+"14493","2b13e2a3-22c5-41cc-b13f-30c501f7c810","00-0035415",NA,NA,NA,NA,"6027","3116134",NA,"Nate Hall","nate hall","LB","HOU","24.8","2019",NA,NA,"1996-04-06"
+"14495","bc8260d5-231f-4337-9979-7c1c40bc6cd0","00-0035413",NA,NA,"GiffLu00",NA,"6612","3116097",NA,"Luke Gifford","luke gifford","LB","DAL","25.4","2019",NA,NA,"1995-08-28"
+"14499","40a9d668-269b-48ec-be2f-128d89aeb20f","00-0034930",NA,NA,NA,NA,"6395","4422214",NA,"Trinity Benson","trinity benson","WR","DEN","24","2019",NA,NA,"1997-01-16"
+"14502","bfdeb053-b503-4f35-968b-78d8a9997473","00-0034111",NA,NA,"MarsTr00",NA,"5442","3116602",NA,"Trey Marshall","trey marshall","S","DEN","25","2018",NA,NA,"1996-02-13"
+"14509","dd62d18d-3438-408f-8b53-a68399bd4a04","00-0035076",NA,NA,NA,NA,"6430","3116367",NA,"Curtis Bolton","curtis bolton","LB","HOU","25.1","2019",NA,NA,"1995-12-18"
+"14510","17c30647-39b9-46c2-9ba5-599f6007fc71","00-0035483",NA,NA,NA,NA,"6371","4040826",NA,"Drew Anderson","drew anderson","QB","FA","25.3","2019",NA,NA,"1995-10-18"
+"14517","14683736-9d8f-4e99-86c4-a778d343569c","00-0034169",NA,NA,NA,NA,"5233","3051387",NA,"Marcus Baugh","marcus baugh","TE","WAS","26.1","2018",NA,NA,"1994-12-09"
+"14518","56992f39-70e7-4b6a-86da-0a4776504e7a","00-0035705",NA,NA,NA,NA,"6711","4043089",NA,"Jalen Thompson","jalen thompson","S","ARI","22.5","2019",NA,NA,"1998-07-18"
+"14519","fceeeac9-470d-4864-bc19-36c5d03013b0","00-0035444",NA,NA,"KunaJo00",NA,"6307","4035866",NA,"Jordan Kunaszyk","jordan kunaszyk","LB","WAS","24.3","2019",NA,NA,"1996-10-15"
+"14531","ded35e89-0ed7-44e2-8e97-5566330e6d3d","00-0035455",NA,NA,"HuggAl01",NA,"6026","3728248",NA,"Albert Huggins","albert huggins","DT","DET","23.6","2019",NA,NA,"1997-06-27"
+"14532","f60017c5-e44c-4256-831f-86c8d8626481","00-0035155",NA,NA,"FielMa01",NA,"5968","3728261",NA,"Mark Fields","mark fields","CB","HOU","24.3","2019",NA,NA,"1996-10-10"
+"14533","228b0dd8-3f75-4b60-90d1-59036858b8ae","00-0035480",NA,NA,NA,NA,"6239","4408988",NA,"Malik Taylor","malik taylor","WR","GBP","25.1","2019",NA,NA,"1995-12-21"
+"14535","1a7d431e-f97b-4631-a067-438ed2debe24","00-0035513",NA,NA,NA,NA,"6043","4037633",NA,"Amani Bledsoe","amani bledsoe","DE","CIN","23","2019",NA,NA,"1998-02-06"
+"14536","ef0a8abc-074e-4ed1-a053-846c3b1d9cc5","00-0034590",NA,NA,NA,NA,"5660","3042746",NA,"Frank Herron","frank herron","DE","FA","26.6","2018",NA,NA,"1994-07-09"
+"14543","fa443b6d-6d31-4030-9afa-b223f08b03d7","00-0035157",NA,NA,NA,NA,"6551","3122906",NA,"Darius Harris","darius harris","LB","KCC","25","2019",NA,NA,"1996-01-17"
+"14545","8346e196-ce56-4cfd-8438-f3c39131b327","00-0035432",NA,NA,"MoorJa02",NA,"6247","4069806",NA,"Jason Moore","jason moore","WR","LAC","25.6","2019",NA,NA,"1995-06-23"
+"14548","427038d8-ff50-4d6e-a088-4fdb8bc2f0e3","00-0035602",NA,NA,NA,NA,"6386","3919510",NA,"Alex Bachman","alex bachman","WR","NYG","24.7","2019",NA,NA,"1996-05-29"
+"14549","bbc981ff-556b-4346-abea-f6efc0f94001","00-0035621",NA,NA,"WebsNs00",NA,"6387","3119317",NA,"Nsimba Webster","nsimba webster","WR","LAR","25","2019",NA,NA,"1996-01-27"
+"14551","ee79ad2e-353a-40cd-9344-c9d84f7e4b63","00-0035341",NA,NA,"IrwiTr00",NA,"6598","3931391",NA,"Trenton Irwin","trenton irwin","WR","CIN","25.1","2019",NA,NA,"1995-12-10"
+"14552","bd12a2c0-e6ce-460b-9f09-27b75c306608","00-0035099",NA,NA,"BlasKh00",NA,"6379","3122154",NA,"Khari Blasingame","khari blasingame","RB","TEN","24.6","2019",NA,NA,"1996-07-01"
+"14554","d0780152-5d3e-4add-99bd-e330c258df10","00-0035104",NA,NA,"HollAl00",NA,"6381","4249496",NA,"Alexander Hollins","alexander hollins","WR","CLE","24.2","2019",NA,NA,"1996-11-24"
+"14555","625a1777-dd9a-48c6-b512-c450b0914450","00-0035645",NA,NA,"OlszGu00",NA,"6699","4424106",NA,"Gunner Olszewski","gunner olszewski","WR","NEP","24.2","2019",NA,NA,"1996-11-26"
+"14557","49bf0cd8-c01f-4d31-b6f1-fdda02b4999f","00-0034962",NA,NA,NA,NA,"5990","3924319",NA,"Terez Hall","terez hall","LB","NEP","24.2","2019",NA,NA,"1996-11-18"
+"14558","8f1147cb-3040-4128-b113-5813816241ec","00-0035215","18876",NA,"HarrDe07",NA,"6234","4411193",NA,"Deonte Harris","deonte harris","WR","NOS","23.2","2019",NA,NA,"1997-12-04"
+"14559","20395574-a767-44be-8e79-e1b15eef0f11","00-0035404",NA,NA,"GustPo01",NA,"5996","3912553",NA,"Porter Gustin","porter gustin","LB","CLE","24","2019",NA,NA,"1997-02-08"
+"14560","0eb7966b-01b7-40b0-bb2b-9d6de58bbd95","00-0035018",NA,NA,NA,NA,"6163","3121110",NA,"Alex Wesley","alex wesley","WR","FA","25.3","2019",NA,NA,"1995-10-27"
+"14561","767b1112-c77a-4a58-89b4-30f1ffa2a497","00-0035510",NA,NA,"SmitJe03",NA,"6557","3929118",NA,"Jeff Smith","jeff smith","WR","NYJ","23.8","2019",NA,NA,"1997-04-21"
+"14563","8b66001c-c41f-406a-9583-d8b6848ea6d2","00-0035385",NA,NA,NA,NA,"6540","3116182",NA,"DeAndre Thompkins","deandre thompkins","WR","FA","25.3","2019",NA,NA,"1995-10-01"
+"14565","379f98b1-2f12-4f9e-8332-61cb930ac97a","00-0031319",NA,NA,NA,NA,"5828","17463",NA,"Diontae Spencer","diontae spencer","WR","DEN","28.9","2014",NA,NA,"1992-03-19"
+"14568","b24beb2f-de5d-4160-8b82-d7a5578b59af","00-0035433",NA,NA,NA,NA,"6563","3129309",NA,"Tyler Newsome","tyler newsome","PN","FA","25.6","2019",NA,NA,"1995-07-14"
+"14579","aee4f924-aaf5-4351-b503-9fce1ade59c5","00-0035573",NA,NA,"OrrxKa00",NA,"6682","3675805",NA,"Kareem Orr","kareem orr","S","TEN","24.1","2019",NA,NA,"1997-01-02"
+"14584","ccd34e5b-38a5-4633-8279-77e3a47f5424","00-0034956",NA,NA,"WatsJo00",NA,"2894","2512419",NA,"Josh Watson","josh watson","LB","DEN","24.7","2019",NA,NA,"1996-05-20"
+"14590","e9348fc5-273d-4ac3-9760-462f37c025dc","00-0035166",NA,NA,"AlShAz00",NA,"6485","3919117",NA,"Azeez Al-Shaair","azeez al-shaair","LB","SFO","23.5","2019",NA,NA,"1997-08-04"
+"14591","fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484","00-0035161",NA,NA,NA,NA,"6231","3118906",NA,"John Lovett","john lovett","TE","GBP","24.8","2019",NA,NA,"1996-04-25"
+"14592","d8281390-f081-41e5-b55e-75779536fe94","00-0035208","18864",NA,"ZaccOl01",NA,"6271","3917914",NA,"Olamide Zaccheaus","olamide zaccheaus","WR","ATL","23.5","2019",NA,NA,"1997-07-23"
+"14595","6c8c270b-7412-452a-a221-7ec5600cc2a3","00-0035334",NA,NA,"StroKe00",NA,"6536","3124052",NA,"Kevin Strong","kevin strong","DT","DET","24.5","2019",NA,NA,"1996-08-05"
+"14600","ef4998e0-c9ef-4afe-88ab-d09b48975a08","00-0035192",NA,NA,"SlyeJo00",NA,"6528","3124084",NA,"Joey Slye","joey slye","PK","CAR","24.8","2019",NA,NA,"1996-04-10"
+"14612","5c424ecf-07c8-471e-a400-8d5f834af2e0","00-0035342","18332",NA,"LairPa00",NA,"6311","3127211",NA,"Patrick Laird","patrick laird","RB","MIA","25.5","2019",NA,NA,"1995-08-17"
+"14613","4a213e4e-b0ba-4124-833e-33c528bd5908","00-0034928","18962",NA,"SimsSt00",NA,"6402","3917960",NA,"Steven Sims","steven sims","WR","WAS","23.8","2019",NA,NA,"1997-03-31"
+"14618","a577ef90-17c3-4dbf-b6b8-e054f21a778d","00-0035577",NA,NA,"HodgDe00",NA,"6595","3127051",NA,"Devlin Hodges","devlin hodges","QB","FA","24.8","2019",NA,NA,"1996-04-12"
+"14622","c14f8faa-62db-4fb2-a7b1-d9b5998ce604","00-0035735",NA,NA,NA,NA,"6730","4242418",NA,"Jordan Taamu","jordan taamu","QB","KCC","23.1","2019",NA,NA,"1997-12-10"
+"14627","8b1be2ac-e483-4f39-9bf9-a81be33ac92e","00-0032660",NA,NA,NA,NA,"3785","2982857",NA,"Brandin Bryant","brandin bryant","DT","BUF","27.4","2016",NA,NA,"1993-09-16"
+"14630","36f93677-a95b-4362-ac5f-6722f5c05b6d","00-0035190",NA,NA,"ColeAJ01",NA,"6555","3686689",NA,"AJ Cole","aj cole","PN","LVR","25.2","2019",NA,NA,"1995-11-27"
+"14650","cefd0600-93f2-4e0f-9624-81e3dc495c1d","00-0034909",NA,NA,NA,NA,"5823","3127313",NA,"Tristan Vizcaino","tristan vizcaino","PK","FA","24.5","2019",NA,NA,"1996-07-31"
+"14652","2a86a6b4-58ef-42f5-aff9-d5d979bea6c7","00-0035026",NA,NA,"GiveKe01",NA,"6005","3929641",NA,"Kevin Givens","kevin givens","DT","SFO","23.9","2019",NA,NA,"1997-03-01"
+"14653","b22c91a2-e11c-4ca2-8dd1-54c6bce8225c","00-0035519",NA,NA,"MackIs00",NA,"6601","3131784",NA,"Isaiah Mack","isaiah mack","DE","FA","24.9","2019",NA,NA,"1996-03-19"
+"14654","fe7dea44-fd21-45e4-a8f0-1436e1108da1","00-0035025",NA,NA,"HentHa00",NA,"6439","3925348",NA,"Hale Hentges","hale hentges","TE","MIN","24.5","2019",NA,NA,"1996-08-19"
+"14657","7ca273b2-a4bc-44c4-a670-98d86942adb5","00-0034255",NA,NA,NA,NA,"5528","3046700",NA,"Montrel Meander","montrel meander","S","CLE","26.4","2018",NA,NA,"1994-09-20"
+"14660","18750e3f-5625-4253-ac44-61c6b8fc07d4","00-0035016",NA,NA,"TauaJo00",NA,"6160","3914595",NA,"Josiah Tauaefa","josiah tauaefa","LB","FA","23.7","2019",NA,NA,"1997-05-05"
+"14665","c1576aca-1bd1-4b9f-ba83-10235f1e2eca","00-0035102",NA,NA,"DillBr00",NA,"6279","4411192",NA,"Brandon Dillon","brandon dillon","TE","MIN","23.8","2019",NA,NA,"1997-04-30"
+"14666","1ad00b25-912a-4e92-b585-906594f3020e","00-0034556",NA,NA,NA,NA,"5489","3139926",NA,"Kameron Kelly","kameron kelly","CB","FA","24.5","2018",NA,NA,"1996-08-19"
+"14669","e94ac14d-0122-4dc8-ad20-b71226cb8cfe","00-0035133",NA,NA,"NixoKe00",NA,"6333","4259493",NA,"Keisean Nixon","keisean nixon","CB","LVR","23.6","2019",NA,NA,"1997-06-22"
+"14670","55998ec0-4d69-4d14-a2f4-cf72de36e998","00-0034251",NA,NA,NA,NA,"5532","3052059",NA,"Daniel Ekuale","daniel ekuale","DT","JAC","27","2018",NA,NA,"1994-01-13"
+"14671","ab47d1ab-af14-4054-ace2-0cd2fc1def85",NA,NA,NA,NA,NA,"6724",NA,NA,"CJ Moore","cj moore","S","DET","27.3","2017",NA,NA,"1993-09-28"
+"14672","d0412c6f-ac97-420c-a9e2-1ca587c480b2","00-0035617",NA,NA,"ReedTr01",NA,"6353","3116177",NA,"Troy Reeder","troy reeder","LB","LAR","26.4","2019",NA,NA,"1994-09-13"
+"14673","92e78492-1e80-453e-ab31-862e12ffe7d7","00-0035615",NA,NA,"PatrNa00",NA,"6055","3728310",NA,"Natrez Patrick","natrez patrick","LB","FA","23.6","2019",NA,NA,"1997-07-09"
+"14674","8d56094a-7aaa-45fd-bfb1-348f2a994d99","00-0033734",NA,NA,NA,NA,"4658","3892777",NA,"Jamal Perry","jamal perry","CB","MIA","26.3","2017",NA,NA,"1994-10-23"
+"14675","c8fb3887-c2bb-4038-af6f-f9b81aeee0ac","00-0035409",NA,NA,"TuttSh00",NA,"6627","3886601",NA,"Shy Tuttle","shy tuttle","DT","NOS","25.3","2019",NA,NA,"1995-10-20"
+"14676","4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00","00-0035507",NA,NA,"PhilKy00",NA,"6235","3886528",NA,"Kyle Phillips","kyle phillips","DE","NYJ","23.7","2019",NA,NA,"1997-05-05"
+"14677","010806af-e6ba-409a-b7fb-a119714238f6","00-0035486",NA,NA,"BrowMi01",NA,"6378","3913020",NA,"Miles Brown","miles brown","DT","FA","23.4","2019",NA,NA,"1997-09-04"
+"14678","8471f3e4-b507-4554-afbb-df333694360b","00-0035579",NA,NA,"SkipTu00",NA,"6679","4039521",NA,"Tuzar Skipper","tuzar skipper","LB","TEN","25.7","2019",NA,NA,"1995-06-05"
+"14680","f00ccf29-884e-4914-b9f9-aca0090ee9e6","00-0035094",NA,NA,"MoneBr00",NA,"6494","3115979",NA,"Bryan Mone","bryan mone","DT","SEA","25.3","2019",NA,NA,"1995-10-20"
+"14681","3180d257-5f46-4a25-b50a-3311235bc8b3","00-0034612",NA,NA,"HarrDe06",NA,"5218","3052926",NA,"Demone Harris","demone harris","DE","FA","25.1","2018",NA,NA,"1995-12-30"
+"14682","209307c5-8e39-44a6-8879-5e033e017eb4","00-0035103",NA,NA,NA,NA,"6432","3122141",NA,"Otaro Alaka","otaro alaka","LB","BAL","24.7","2019",NA,NA,"1996-05-18"
+"14683","351963c7-bdc1-4966-bed2-845ccddfdfbf","00-0034641",NA,NA,"JoneCh06",NA,"5815","3116104",NA,"Chris Jones","chris jones","CB","MIN","25.5","2018",NA,NA,"1995-08-13"
+"14696","78ca0233-a32a-4435-ba06-6ececaa3c537","00-0035108",NA,NA,"MeadNa00",NA,"6354","3886327",NA,"Nate Meadors","nate meadors","CB","JAC","24","2019",NA,NA,"1997-02-13"
+"14702","dba7bc1b-c414-404a-8845-4b0245df64a9","00-0035437",NA,NA,"TeamRo00",NA,"6257","3917058",NA,"Roderic Teamer","roderic teamer","S","IND","23.7","2019",NA,NA,"1997-05-12"
+"14713","d962a98d-cbba-47e0-ad20-dedc094a1822","00-0034088",NA,NA,NA,NA,"5448","4036898",NA,"Robert Jackson","robert jackson","CB","CLE","27.1","2018",NA,NA,"1993-12-08"
+"14716","29815a83-1d6b-4e1b-b1c6-9bf44e7166c9","00-0035073",NA,NA,"HarrJo05",NA,"6467","4422407",NA,"Jonathan Harris","jonathan harris","DE","DEN","24.5","2019",NA,NA,"1996-08-04"
+"14717","12d28404-63e1-432f-adde-c93631a5c39c","00-0035358",NA,NA,"McLaCh00",NA,"6650","3150744",NA,"Chase McLaughlin","chase mclaughlin","PK","NYJ","24.8","2019",NA,NA,"1996-04-09"
+"14720","1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb","00-0035172",NA,NA,"TaylSh00",NA,"6579","3935064",NA,"Shakial Taylor","shakial taylor","CB","NYG","24.1","2019",NA,NA,"1996-12-27"
+"14722","03e6a751-5206-4f9e-8ffa-f92672f7c159","00-0035346",NA,NA,"NeedNi00",NA,"6258","3124702",NA,"Nik Needham","nik needham","CB","MIA","24.2","2019",NA,NA,"1996-11-04"
+"14727","0deb1dc9-0945-470d-8352-220d26d03d7d","00-0035567",NA,NA,"ReynCr00",NA,"6659","4421446",NA,"Craig Reynolds","craig reynolds","RB","JAC","24.6","2019",NA,NA,"1996-06-15"
+"14728","8f442456-427c-4d96-8596-a7928074a094","00-0035521",NA,NA,"RobeDe01",NA,"6581","3125126",NA,"Derick Roberson","derick roberson","LB","TEN","25.2","2019",NA,NA,"1995-11-15"
+"14737","62976179-ae2c-495f-9e94-cb3e49933243","00-0035363",NA,NA,"GileJo01",NA,"6105","3917797",NA,"Joe Giles-Harris","joe giles-harris","LB","JAC","23.8","2019",NA,NA,"1997-04-01"
+"14738","65a702f3-1e60-46a3-bce9-8b4e3f939888","00-0035390",NA,NA,"RushAn00",NA,"6542","4239817",NA,"Anthony Rush","anthony rush","DT","FA","24.4","2019",NA,NA,"1996-09-01"
+"14741","588d8e04-98dc-478a-b3ba-9e3cb58d9afc","00-0035365",NA,NA,"HayeTa00",NA,"6310","3917147",NA,"Tae Hayes","tae hayes","CB","MIN","23.5","2019",NA,NA,"1997-08-19"
+"14746","e47c71c1-2e10-42d0-b5f8-5651909a0ff4","00-0034154",NA,NA,NA,NA,"5505","3134315",NA,"Jacob Tuioti-Mariner","jacob tuioti-mariner","DT","ATL","24.5","2018",NA,NA,"1996-07-25"
+"14752","48c56733-6644-42ee-9020-07bd2deba1ad","00-0035562",NA,NA,"HorsJe00",NA,"6075","3940587",NA,"Jesper Horsted","jesper horsted","TE","CHI","23.9","2019",NA,NA,"1997-02-27"
+"14753","fe30ca46-c995-46ce-bca3-12451bfb5ad8","00-0035044",NA,NA,"HassJT00",NA,"6429","4264341",NA,"JT Hassell","jt hassell","S","NYJ","25.5","2019",NA,NA,"1995-08-14"
+"14756","9fe70732-0c55-42ff-a79c-9d234fbc995c","00-0034559",NA,NA,NA,NA,"5495","4035726",NA,"Austin Larkin","austin larkin","DE","CAR","25.8","2018",NA,NA,"1995-04-06"
+"14760","f7365f88-4cd0-42e9-9e4e-7bade08e9e5b","00-0034660",NA,NA,"GaffRi00",NA,"5197","4048717",NA,"Rico Gafford","rico gafford","WR","ARI","24.7","2018",NA,NA,"1996-05-23"
+"14762","1163ba47-560b-4705-82be-69967c4fc096","00-0034130",NA,NA,NA,NA,"5474","3125816",NA,"Linden Stephens","linden stephens","CB","SEA","25.9","2018",NA,NA,"1995-03-21"
+"14777","3023ac10-4e7f-425f-9fc5-2b8e6332c92e",NA,"19196","4882","BurrJo01","joe-burrow-1","6770","3915511",NA,"Joe Burrow","joe burrow","QB","CIN","24.1","2020","1","1","1996-12-10"
+"14778","26ad9c27-de38-495e-913c-6fb2428e76d3",NA,"19198",NA,"TagoTu00","tua-tagovailoa-1","6768","4241479",NA,"Tua Tagovailoa","tua tagovailoa","QB","MIA","22.9","2020","1","5","1998-03-02"
+"14779","f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44",NA,"18635",NA,"HerbJu00","justin-herbert-1","6797","4038941",NA,"Justin Herbert","justin herbert","QB","LAC","22.9","2020","1","6","1998-03-10"
+"14780","060d05d6-aa31-4571-9f91-12c8050b6aaf",NA,"19220",NA,"EasoJa00","jacob-eason-1","6823","4035003",NA,"Jacob Eason","jacob eason","QB","IND","23.2","2020","4","122","1997-11-17"
+"14781","12ce10f6-7f95-42db-8ed3-36b14933484f",NA,NA,NA,"FromJa00","jake-fromm-1","6822","4240689",NA,"Jake Fromm","jake fromm","QB","BUF","22.5","2020","5","167","1998-07-30"
+"14782","e5094779-e94f-4052-8597-bdbee3719f6b",NA,"19246",NA,"LoveJo03","jordan-love-2","6804","4036378",NA,"Jordan Love","jordan love","QB","GBP","22.2","2020","1","26","1998-11-02"
+"14783","64bd0f02-6a5d-407e-98f1-fd02048ea21d",NA,"19275",NA,"HurtJa00","jalen-hurts-1","6904","4040715",NA,"Jalen Hurts","jalen hurts","QB","PHI","22.5","2020","2","53","1998-08-07"
+"14784","d446443f-130c-4bce-a300-a15cf66f27f1",NA,NA,NA,NA,NA,"7013","3915436",NA,"Steven Montez","steven montez","QB","WAS","24","2020",NA,NA,"1997-01-14"
+"14785","fa781bd3-04ed-4536-8d48-af9742c8aa13",NA,NA,NA,"StanNa00","nathan-stanley-2","6892","4036149",NA,"Nate Stanley","nate stanley","QB","MIN","23.4","2020","7","244","1997-08-26"
+"14786",NA,NA,NA,NA,NA,NA,"7063",NA,NA,"Shea Patterson","shea patterson","QB","FA",NA,"2020",NA,NA,NA
+"14787","71a2444a-a6b1-4e62-8974-2d858e2c5b73",NA,NA,NA,NA,NA,"6898","4055171",NA,"Anthony Gordon","anthony gordon","QB","KCC","23.4","2020",NA,NA,"1997-08-28"
+"14788","e8b4f505-28b2-4a87-8bf8-87041afab45c",NA,NA,NA,NA,NA,"7008","3929824",NA,"Brian Lewerke","brian lewerke","QB","FA","24.3","2020",NA,NA,"1996-10-24"
+"14789","7c226f73-a59f-4db6-ad98-2766d05d4d5a",NA,NA,NA,NA,NA,"7083","4035671",NA,"Tyler Huntley","tyler huntley","QB","BAL","22","2020",NA,NA,NA
+"14790","d0b866b8-6221-492c-a80b-4a12bbd13e64",NA,NA,NA,"MorgJa00","james-morgan-1","7081","3914395",NA,"James Morgan","james morgan","QB","NYJ","23.9","2020","4","125","1997-02-28"
+"14791",NA,NA,NA,NA,NA,NA,"7102",NA,NA,"Mason Fine","mason fine","QB","FA",NA,"2020",NA,NA,NA
+"14792","da837572-0558-4946-9af4-aeb11582cca8",NA,NA,NA,NA,NA,"7335","3675812",NA,"Bryce Perkins","bryce perkins","QB","LAR","24.1","2020",NA,NA,"1996-12-20"
+"14793","c81ae6df-f87f-4197-b68f-a460321b48b4",NA,NA,NA,"LutoJa00","jake-luton-1","7084","3124900",NA,"Jake Luton","jake luton","QB","JAC","24.8","2020","6","189","1996-04-11"
+"14794","2d907c0c-cf4e-4564-b9eb-560d84f16144",NA,NA,NA,"McDoCo00","cole-mcdonald-1","6954","4038220",NA,"Cole McDonald","cole mcdonald","QB","FA","22.7","2020","7","224","1998-05-20"
+"14795",NA,NA,NA,NA,NA,NA,"7110",NA,NA,"Kelly Bryant","kelly bryant","QB","FA",NA,"2020",NA,NA,NA
+"14796","8e4cd763-30ec-4a00-9dc2-5567a80a3191",NA,NA,NA,NA,NA,"7158",NA,NA,"Riley Neal","riley neal","QB","FA","24.3","2020",NA,NA,"1996-10-02"
+"14797","cc4b5f58-a11c-4450-a1df-617ad88336e4",NA,"19210","4862","SwifDA00","dandre-swift-1","6790","4259545",NA,"DAndre Swift","dandre swift","RB","DET","22","2020","2","35","1999-01-14"
+"14798","d8fef424-aa41-4c26-9bce-1265b53cd5e2",NA,"19263","4877","MossZa00","zack-moss-1","6845","4035676",NA,"Zack Moss","zack moss","RB","BUF","23.1","2020","3","86","1997-12-15"
+"14799","74980532-8158-4b56-91db-5053878737b4",NA,"19268","4881","AkerCa00","cam-akers-1","6938","4240021",NA,"Cam Akers","cam akers","RB","LAR","21.6","2020","2","52","1999-06-22"
+"14800","a57b9914-4315-4295-98b4-9b348c52d6a1",NA,"19245","4888","DobbJK00","jk-dobbins-1","6806","4241985",NA,"JK Dobbins","jk dobbins","RB","BAL","22.1","2020","2","55","1998-12-17"
+"14801","aebf7b65-da15-4499-b1af-6687fa50b2e4",NA,"19361",NA,"BenjEn00","eno-benjamin-1","6951","4242873",NA,"Eno Benjamin","eno benjamin","RB","ARI","21.1","2020","7","222","1999-12-13"
+"14802","925195a4-06ba-4e37-ae7d-a3d6a5419139",NA,"19217","4864","TaylJo02","jonathan-taylor-1","6813","4242335",NA,"Jonathan Taylor","jonathan taylor","RB","IND","22","2020","2","41","1999-01-19"
+"14803","8aa01565-4481-443a-9951-642c98ded113",NA,"19325","4889","EdwaCl00","clyde-edwards-helaire-1","6820","4242214",NA,"Clyde Edwards-Helaire","clyde edwards-helaire","RB","KCC","21.8","2020","1","32","1999-04-11"
+"14804","30487ab2-836d-4e4b-a46a-89e31b414374",NA,"19366",NA,"McFaAn00","anthony-mcfarland-2","6878","4241941",NA,"Anthony McFarland","anthony mcfarland","RB","PIT","21.9","2020","4","124","1999-03-04"
+"14805","e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3",NA,"19358","4886","DillAJ00","aj-dillon-1","6828","4239934",NA,"AJ Dillon","aj dillon","RB","GBP","22.8","2020","2","62","1998-05-02"
+"14806","f86e291f-d678-463c-93cb-beedab9a309a",NA,"19333",NA,"PeriLa00","lamical-perine-1","6908","4034952",NA,"Lamical Perine","lamical perine","RB","NYJ","23","2020","4","120","1998-01-30"
+"14807","62542e04-3c44-4b75-8165-be674c8be75f",NA,"19445","5031","KellJo01","joshua-kelley-1","7045","3910544",NA,"Joshua Kelley","joshua kelley","RB","LAC","23.2","2020","4","112","1997-11-20"
+"14808","eb3c219d-6489-4f2f-a542-bdbf7423a325",NA,"19418",NA,"EvanDa02","darrynton-evans-1","7064","4036431",NA,"Darrynton Evans","darrynton evans","RB","TEN","22.6","2020","3","93","1998-07-09"
+"14809","ee96c74a-7a51-478a-99f9-97ddaaac1e34",NA,"19470",NA,NA,NA,"7101",NA,NA,"Rodney Smith","rodney smith","RB","CAR","24.9","2020",NA,NA,"1996-02-28"
+"14810","4b0a90db-f007-4ac1-8542-b531342b9da5",NA,"19351","4899","VaugKe00","keshawn-vaughn-1","6885","3917612",NA,"KeShawn Vaughn","keshawn vaughn","RB","TBB","23.7","2020","3","76","1997-05-04"
+"14811","0dbbd211-0372-4751-9751-e4df4ab1f8eb",NA,"19449",NA,NA,NA,"6918","4243315",NA,"Salvon Ahmed","salvon ahmed","RB","MIA","22.1","2020",NA,NA,"1998-12-29"
+"14812","9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6",NA,NA,NA,NA,NA,"7038","4038533",NA,"Darius Anderson","darius anderson","RB","IND","23.4","2020",NA,NA,"1997-09-10"
+"14813","5fc196a1-2015-49c7-85b2-1adbd2c33cf5",NA,"19631",NA,NA,NA,"6955","4052042",NA,"James Robinson","james robinson","RB","JAC","22.5","2020",NA,NA,"1998-08-09"
+"14814","af366ded-5eba-4a8d-b9fe-37ace1e173f0",NA,NA,NA,NA,NA,"7001",NA,NA,"Brian Herrien","brian herrien","RB","FA","23","2020",NA,NA,"1998-02-07"
+"14815","48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2",NA,"19521",NA,"DallDe00","deejay-dallas-1","6931","4240631",NA,"DeeJay Dallas","deejay dallas","RB","SEA","22.4","2020","4","144","1998-09-16"
+"14816","4a096c4e-7738-43b3-984c-7ea604a96742",NA,NA,NA,NA,NA,"6992","4239083",NA,"Michael Warren","michael warren","RB","WAS","22.2","2020",NA,NA,"1998-11-12"
+"14817","ef87e355-8e0c-40ed-a85d-bca4896d4f1e",NA,NA,NA,NA,NA,"6963","4039358",NA,"Patrick Taylor","patrick taylor","RB","GBP","22.8","2020",NA,NA,"1998-04-29"
+"14818","70110b01-060d-443d-b799-5d4edc9272de",NA,NA,NA,NA,NA,"7088","3916209",NA,"Xavier Jones","xavier jones","RB","LAR","23.4","2020",NA,NA,"1997-08-24"
+"14819","0d77e008-ec6d-4816-a186-329c0ecdb6be",NA,NA,NA,NA,NA,"7103","4035470",NA,"Tavien Feaster","tavien feaster","RB","FA","23.1","2020",NA,NA,"1997-12-31"
+"14820","241d5e15-f9e6-4bf2-ac36-74dcbc9cc148",NA,NA,NA,NA,NA,"6966","4241940",NA,"Javon Leake","javon leake","RB","WAS","22.5","2020",NA,NA,"1998-08-01"
+"14821","c6c50d09-f14f-41c2-9eb3-87514f0121f6",NA,"19627",NA,NA,NA,"6996","3928925",NA,"JaMycal Hasty","jamycal hasty","RB","SFO","24.4","2020",NA,NA,"1996-09-12"
+"14822",NA,NA,NA,NA,NA,NA,"6978",NA,NA,"Reggie Corbin","reggie corbin","RB","FA",NA,"2020",NA,NA,NA
+"14823","bba755a2-63b6-4ac1-b806-0609816135de",NA,NA,NA,NA,NA,"7021","4038815",NA,"Rico Dowdle","rico dowdle","RB","DAL","22.6","2020",NA,NA,"1998-06-14"
+"14824","26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd",NA,NA,NA,NA,NA,"7005","4362878",NA,"Scottie Phillips","scottie phillips","RB","HOU","23.3","2020",NA,NA,"1997-10-06"
+"14825",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Jordan Conkrite","jordan conkrite","RB","FA",NA,"2020",NA,NA,NA
+"14826","a21cba9e-32a9-494b-b2a1-d454b65872b6",NA,NA,NA,NA,NA,"7227","4042808",NA,"Artavis Pierce","artavis pierce","RB","CHI","24.7","2020",NA,NA,"1996-05-14"
+"14827","879325b1-c961-4c9a-a3a4-679d77a28293",NA,NA,NA,NA,NA,"6973","4039607",NA,"JJ Taylor","jj taylor","RB","NEP","23.1","2020",NA,NA,"1998-01-04"
+"14828","83d4c4c3-3c40-49b1-8b86-25d256a0b5ad",NA,NA,NA,NA,NA,"6984","4046676",NA,"Tony Jones","tony jones","RB","NOS","23","2020",NA,NA,NA
+"14829","46cf23c5-7096-4f18-a3d8-59f0befc95ff",NA,NA,NA,NA,NA,"7048","4045702",NA,"Benny LeMay","benny lemay","RB","IND","23.3","2020",NA,NA,"1997-10-18"
+"14830","53022661-b6bb-481b-9ce8-b603e521925f",NA,NA,NA,NA,NA,"6959","3916721",NA,"LeVante Bellamy","levante bellamy","RB","DEN","24.2","2020",NA,NA,"1996-11-28"
+"14831","2af6db68-3ad7-4699-8f86-0140fffce577",NA,NA,NA,NA,NA,"7093","4042112",NA,"Adrian Killins","adrian killins","RB","FA","23.1","2020",NA,NA,"1998-01-02"
+"14832","a72ea15b-5199-4101-a300-846e1c655add",NA,"19202","4869","LambCe00","ceedee-lamb-1","6786","4241389",NA,"CeeDee Lamb","ceedee lamb","WR","DAL","21.8","2020","1","17","1999-04-08"
+"14833","eaaa4a61-c2a7-4926-8e9b-3ec71be2f991",NA,"19201","4861","JeudJe00","jerry-jeudy-1","6783","4241463",NA,"Jerry Jeudy","jerry jeudy","WR","DEN","21.8","2020","1","15","1999-04-24"
+"14834","8a453858-7309-49ae-b8eb-de691847393f",NA,"19207",NA,NA,NA,"6789","4241475",NA,"Henry Ruggs","henry ruggs","WR","LVR","22","2020","1","12","1999-01-24"
+"14835","7963b029-5de4-4541-b00a-44eefe4349af",NA,"19211",NA,"HiggTe00","tee-higgins-1","6801","4239993",NA,"Tee Higgins","tee higgins","WR","CIN","22","2020","2","33","1999-01-28"
+"14836","4131d4ee-0318-4bb5-832a-4dec80668a4f",NA,"19236","4876","JeffJu00","justin-jefferson-1","6794","4262921",NA,"Justin Jefferson","justin jefferson","WR","MIN","21.6","2020","1","22","1999-06-16"
+"14837","89338a12-65a8-4670-ac99-97281732ff79",NA,"19267",NA,"HamlKJ00","kj-hamler-1","6805","4240380",NA,"KJ Hamler","kj hamler","WR","DEN","21.6","2020","2","46","1999-07-08"
+"14838","131d3b1a-5746-499e-98ee-4bbf67cd377e",NA,"19221",NA,"ShenLa00","laviska-shenault-jr-1","6814","4243160",NA,"Laviska Shenault","laviska shenault","WR","JAC","22.3","2020","2","42","1998-10-05"
+"14839","06ff7f42-5fe7-4899-84a5-9ba5349d17e8",NA,"19219","4879","ReagJa00","jalen-reagor-1","6798","4241802",NA,"Jalen Reagor","jalen reagor","WR","PHI","22.1","2020","1","21","1999-01-01"
+"14840","c90471cc-fa60-4416-9388-5aebb5d877eb",NA,"19252","4891","AiyuBr00","brandon-aiyuk-1","6803","4360438",NA,"Brandon Aiyuk","brandon aiyuk","WR","SFO","22.9","2020","1","25","1998-03-17"
+"14841","53ed110c-f022-4759-afd3-1cd3436dbba7",NA,"18627",NA,"ClayCh01","chase-claypool-1","6886","4046692",NA,"Chase Claypool","chase claypool","WR","PIT","22.6","2020","2","49","1998-07-07"
+"14842","1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d",NA,"19278","4880","PittMi01","michael-pittman-jr-1","6819","4035687",NA,"Michael Pittman","michael pittman","WR","IND","23.3","2020","2","34","1997-10-05"
+"14843","bd783f2e-b931-4d3e-ab71-60fa1431f598",NA,"19587",NA,NA,NA,"6909","4259979",NA,"Lynn Bowden","lynn bowden","RB","MIA","23.3","2020","3","16","1997-10-14"
+"14844","5abee27b-2710-46ed-b110-fece5c2654e8",NA,"18634",NA,NA,NA,"6870","4038818",NA,"Bryan Edwards","bryan edwards","WR","LVR","22.2","2020","3","17","1998-11-13"
+"14845","dc397432-7157-4ce4-976d-b9662cc6f551",NA,"19398",NA,"DaviGa01","gabriel-davis-1","6943","4243537",NA,"Gabriel Davis","gabriel davis","WR","BUF","21.8","2020","4","128","1999-04-01"
+"14846","adfc13b3-1eb6-49f3-9ba6-d4d87fd13685",NA,"19344",NA,"MimsDe00","denzel-mims-1","6849","4035403",NA,"Denzel Mims","denzel mims","WR","NYJ","23.3","2020","2","59","1997-10-10"
+"14847","d93dbc83-e604-4823-a24e-d162cbd8d4d9",NA,"19270",NA,"DuveDe00","devin-duvernay-1","6847","4039050",NA,"Devin Duvernay","devin duvernay","WR","BAL","23.4","2020","3","92","1997-09-12"
+"14848","c65488d4-251e-40fc-9f32-7019bbdaf75e",NA,NA,NA,"ProcJa00","james-proche-1","6957","3916204",NA,"James Proche","james proche","WR","BAL","24.4","2020","6","201","1996-09-21"
+"14849","1d1c217b-6407-40d7-aebb-ba95fa05d127",NA,NA,NA,"HodgIs00","isaiah-hodgins-1","6920","4242540",NA,"Isaiah Hodgins","isaiah hodgins","WR","BUF","22.3","2020","6","207","1998-10-21"
+"14850","3bd012f5-1fdf-4ed7-b660-5013122df93f",NA,"19396",NA,"CephQu00","quintez-cephus-1","6895","4035793",NA,"Quintez Cephus","quintez cephus","WR","DET","22.8","2020","5","166","1998-04-01"
+"14851","a42da2a1-42c0-4d45-85f0-ab5c9af37e6f",NA,"19332",NA,"HillKJ00","kj-hill-1","6866","3915522",NA,"KJ Hill","kj hill","WR","LAC","23.4","2020","7","220","1997-09-15"
+"14852","c0a8a5d0-583f-457a-9d96-70027d3f69e7",NA,"19624","5008","GibsAn00","antonio-gibson-2","6945","4360294",NA,"Antonio Gibson","antonio gibson","RB","WAS","22.6","2020","3","66","1998-06-23"
+"14853","214ae0bc-d6ed-4216-a154-f253c85bb90b",NA,"18289",NA,"JohnCo01","collin-johnson-2","6857","4039043",NA,"Collin Johnson","collin johnson","WR","JAC","23.4","2020","5","165","1997-09-23"
+"14854","630e6b5d-0486-4bc3-a919-1f02687c1291",NA,NA,NA,NA,NA,"6939","4040628",NA,"Binjimen Victor","binjimen victor","WR","BAL","24","2020",NA,NA,"1997-01-15"
+"14855","126811e0-f856-49c2-b36d-15e71e06f4c0",NA,NA,NA,NA,NA,"6873","4040623",NA,"Austin Mack","austin mack","WR","NYG","23","2020",NA,NA,NA
+"14856","5c54defd-6f6d-4884-9fcb-80343d2d72d3",NA,NA,NA,NA,NA,"6879","4035221",NA,"Quartney Davis","quartney davis","WR","IND","22.8","2020",NA,NA,"1998-04-07"
+"14857","924edb03-29a9-42ae-92dd-ef7e8a498095",NA,"19298",NA,"PeopDo00","donovan-peoples-jones-1","6824","4258195",NA,"Donovan Peoples-Jones","donovan peoples-jones","WR","CLE","21.9","2020","6","187","1999-02-19"
+"14858","8e1285f7-6e4c-41e4-aac9-92e09f9f32b2",NA,"19483",NA,"JeffVa00","van-jefferson-1","6853","3930066",NA,"Van Jefferson","van jefferson","WR","LAR","24.5","2020","2","57","1996-07-26"
+"14859","9a2cd41e-a6e8-42d6-aad4-65c42939d733",NA,NA,NA,NA,NA,"7009","4046715",NA,"Trishton Jackson","trishton jackson","WR","LAR","22.9","2020",NA,NA,"1998-03-09"
+"14860","3ae9f0fa-c711-4663-80cf-4707856c07aa",NA,NA,NA,"JennJa00","jauan-jennings-1","7049","3886598",NA,"Jauan Jennings","jauan jennings","WR","SFO","23.6","2020","7","217","1997-07-10"
+"14861","0226b03b-f91d-4223-9813-9fcd2e9c3acc",NA,NA,NA,NA,NA,"7002","3929645",NA,"Juwan Johnson","juwan johnson","WR","NOS","24.4","2020",NA,NA,"1996-09-13"
+"14862","4c449f2b-a566-4c9c-882c-a70991d1aa54",NA,"19468",NA,"ReedJo03","joe-reed-4","6913","4037591",NA,"Joe Reed","joe reed","WR","LAC","23.1","2020","5","151","1998-01-04"
+"14863","7bb0744a-c93f-401b-9091-2a34072a40c2",NA,"19338",NA,"GandAn00","antonio-gandy-golden-1","6906","4029893",NA,"Antonio Gandy-Golden","antonio gandy-golden","WR","WAS","22.8","2020","4","142","1998-04-11"
+"14864","93c17735-5275-45cf-b3ef-620351c62313",NA,"18633",NA,"JohnTy00","tyler-johnson-6","6960","2310331",NA,"Tyler Johnson","tyler johnson","WR","TBB","22.4","2020","5","161","1998-08-25"
+"14865","81997ce2-9e70-4014-999a-25ebb405dbf6",NA,"19729",NA,"SwaiFr00","freddie-swain-1","7135","4034950",NA,"Freddie Swain","freddie swain","WR","SEA","22.5","2020","6","214","1998-08-04"
+"14866","a80ccad9-4e50-4796-955e-0278f0c9bd2f",NA,NA,NA,NA,NA,"7076","4240626",NA,"Jeff Thomas","jeff thomas","WR","FA","23.6","2020",NA,NA,"1997-06-17"
+"14867","036feeb6-9a22-43c5-a8e3-7ac611d8ff49",NA,"19229",NA,"KmetCo00","cole-kmet-1","6826","4258595",NA,"Cole Kmet","cole kmet","TE","CHI","21.9","2020","2","43","1999-03-10"
+"14868","39cb1520-dda8-4167-95c4-4947c8383bc4",NA,"19234",NA,"HopkBr01","brycen-hopkins-1","6926","3918003",NA,"Brycen Hopkins","brycen hopkins","TE","LAR","23.8","2020","4","136","1997-03-27"
+"14869","309b8104-8407-4365-989a-f726251714a7",NA,NA,NA,NA,NA,"6919","4036189",NA,"Thaddeus Moss","thaddeus moss","TE","WAS","22.7","2020",NA,NA,"1998-05-14"
+"14870","4e14183b-f974-4745-9d7f-8f5eb2a92a7d",NA,"19423",NA,"TrauAd00",NA,"6869","3911853",NA,"Adam Trautman","adam trautman","TE","NOS","24","2020","3","105","1997-02-05"
+"14871","1ea7affb-e5e7-491a-aaa3-55e200b2eb48",NA,"19372",NA,"ParkCo02","colby-parkinson-1","6865","4242557",NA,"Colby Parkinson","colby parkinson","TE","SEA","22.1","2020","4","133","1999-01-08"
+"14872","3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8",NA,NA,NA,NA,NA,"6834","3915772",NA,"Jared Pinkney","jared pinkney","TE","TEN","23.4","2020",NA,NA,"1997-08-21"
+"14873","617aee8a-70be-4bdf-9a71-2e2b74e647e6",NA,"18246",NA,"OkwuAl00","albert-okwuegbunam-1","6843","4035115",NA,"Albert Okwuegbunam","albert okwuegbunam","TE","DEN","22.8","2020","4","118","1998-04-25"
+"14874","826c6c22-2a3a-48bb-befb-8e552fb391ea",NA,NA,NA,NA,NA,"6846","4243318",NA,"Hunter Bryant","hunter bryant","TE","DET","22.5","2020",NA,NA,"1998-08-20"
+"14875","f58a5899-8b78-46e8-a29a-ba6273b7d872",NA,"19389",NA,"BryaHa00","harrison-bryant-1","6850","4040774",NA,"Harrison Bryant","harrison bryant","TE","CLE","22.8","2020","4","115","1998-04-23"
+"14876","7874d188-0fcd-4af9-9289-27c27e2bbd16",NA,NA,NA,"DeguJo00","josiah-deguara-1","7050","3914151",NA,"Josiah Deguara","josiah deguara","TE","GBP","24","2020","3","94","1997-02-14"
+"14877","9947409c-4a34-45f5-99a1-aa6daa13c430",NA,"19195",NA,"YounCh04","chase-young-1","6782","4241986",NA,"Chase Young","chase young","DE","WAS","21.8","2020","1","2","1999-04-14"
+"14878","d96afcfe-32fb-4a59-b75c-94a6184d3136",NA,NA,NA,"GrosYe00","yetur-gross-matos-1","6812","4259594",NA,"Yetur Gross-Matos","yetur gross-matos","DE","CAR","22.9","2020","2","38","1998-02-26"
+"14879","3fa3a270-f8b2-4d53-a265-84bc928af5c5",NA,NA,NA,"EpenAJ00","aj-epenesa-1","6802","4240585",NA,"AJ Epenesa","aj epenesa","DE","BUF","22.4","2020","2","54","1998-09-15"
+"14880","3f4fe254-f18f-4b56-83e0-c37cfc72c7f7",NA,NA,NA,"KareKh00","khalid-kareem-1","6864","4039029",NA,"Khalid Kareem","khalid kareem","DE","CIN","22.8","2020","5","147","1998-04-28"
+"14881","67d2e7dd-e937-49d5-bf37-0efed947609f",NA,NA,NA,NA,NA,"6861","4047458",NA,"Nick Coe","nick coe","DE","MIA","23.5","2020",NA,NA,"1997-08-12"
+"14882","bc69c92c-58ff-44b2-a18b-07a08ee78dc6",NA,NA,NA,"GreeJo04","jonathan-greenard-1","6900","3916409",NA,"Jonathan Greenard","jonathan greenard","LB","HOU","23.7","2020","3","90","1997-05-25"
+"14883","73afc75b-68f0-4cb0-823d-5bfe33969766",NA,NA,NA,"DaviMa01","marlon-davidson-1","6838","4035494",NA,"Marlon Davidson","marlon davidson","DT","ATL","22.7","2020","2","47","1998-05-11"
+"14884","14766908-6ec1-461b-b6fa-e874287a6517",NA,NA,NA,"StroJa02","jason-strowbridge-1","6830","3895843",NA,"Jason Strowbridge","jason strowbridge","DE","MIA","24.4","2020","5","154","1996-09-10"
+"14885","2160ed45-4a2a-4d3b-9da4-d18446dfa292",NA,NA,NA,"ZuniJa00","jabari-zuniga-1","6897","3915123",NA,"Jabari Zuniga","jabari zuniga","LB","NYJ","23.5","2020","3","79","1997-08-14"
+"14886","854d07f2-11cc-4dc1-bdaf-e8cce2c89a75",NA,NA,NA,"AnaeBr00","bradlee-anae-1","6827","4035660",NA,"Bradlee Anae","bradlee anae","DE","DAL","22.3","2020","5","179","1998-10-17"
+"14887","b87d80b7-f129-4f3d-938a-1272f8122589",NA,NA,NA,"SimmIs00","isaiah-simmons-1","6781","4035462",NA,"Isaiah Simmons","isaiah simmons","LB","ARI","22.5","2020","1","8","1998-07-26"
+"14888","74439c42-a6db-4a9a-be25-559f3e03ef59",NA,NA,NA,"ChaiKL00","klavon-chaisson-1","6800","4242205",NA,"KLavon Chaisson","klavon chaisson","DE","JAC","21.5","2020","1","20","1999-07-25"
+"14889","79bf0ca5-a8db-4c39-a40b-67674ccb60d0",NA,NA,NA,"MurrKe00","kenneth-murray-1","6811","4241394",NA,"Kenneth Murray","kenneth murray","LB","LAC","22.2","2020","1","23","1998-11-16"
+"14890","894c783a-ddcd-4dba-b337-06d7db037a6e",NA,NA,NA,"PhilJa01","jacob-phillips-1","7006","4242206",NA,"Jacob Phillips","jacob phillips","LB","CLE","21.8","2020","3","97","1999-04-01"
+"14891","32575119-3aca-47cb-aaaf-162c48b7d372",NA,NA,NA,"HarrMa06","malik-harrison-1","6867","4040615",NA,"Malik Harrison","malik harrison","LB","BAL","22.9","2020","3","98","1998-03-05"
+"14892","ef422c88-b74f-4720-a831-947010c44ebe",NA,NA,NA,"BrooJo01","jordyn-brooks-1","6949","4043130",NA,"Jordyn Brooks","jordyn brooks","LB","SEA","23.3","2020","1","27","1997-10-21"
+"14893","719a7e8e-8286-453e-8aee-d2487c45e53f",NA,NA,NA,"BaunZa00","zack-baun-1","6815","3917657",NA,"Zack Baun","zack baun","LB","NOS","24.1","2020","3","74","1996-12-30"
+"14894","56692800-dd44-4b82-a988-398314845fd9",NA,NA,NA,"JennAn00","anfernee-jennings-1","6848","3925350",NA,"Anfernee Jennings","anfernee jennings","LB","NEP","23.8","2020","3","87","1997-05-01"
+"14895",NA,NA,NA,NA,NA,NA,"7029",NA,NA,"David Woodward","david woodward","LB","FA",NA,"2020",NA,NA,NA
+"14896","bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232",NA,"19421",NA,"QueePa00","patrick-queen-1","6807","4242207",NA,"Patrick Queen","patrick queen","LB","BAL","21.5","2020","1","28","1999-08-13"
+"14897","9c8292c7-b406-4a31-a781-7c72aac6b053",NA,NA,NA,"BrowDe05","derrick-brown-6","6784","4035495",NA,"Derrick Brown","derrick brown","DT","CAR","22.8","2020","1","7","1998-04-15"
+"14898","9666a6bd-4321-4acd-823e-b872943a436e",NA,NA,NA,"DaviRa03","raekwon-davis-1","6831","4040965",NA,"Raekwon Davis","raekwon davis","DT","MIA","23.6","2020","2","56","1997-06-10"
+"14899","1a8eff7a-1057-47c9-aa82-3dbf3f47a76c",NA,NA,NA,"KinlJa00","javon-kinlaw-1","6792","4259491",NA,"Javon Kinlaw","javon kinlaw","DT","SFO","23.3","2020","1","14","1997-10-03"
+"14900","904f702b-e8b1-4fef-a4a0-278d18cc15e3",NA,NA,NA,"MaduJu00","justin-madubuike-1","6818","4035245",NA,"Justin Madubuike","justin madubuike","DT","BAL","23.2","2020","3","71","1997-11-17"
+"14901","fda10175-38e3-4678-a94c-ccd6008d40ec",NA,NA,NA,"GallNe00","neville-gallimore-1","6825","3892883",NA,"Neville Gallimore","neville gallimore","DT","DAL","24","2020","3","82","1997-01-17"
+"14902","790ae305-a3ea-4a98-a13a-31dacadec04e",NA,NA,NA,"OkudJe00","jeffrey-okudah-1","6785","4241984",NA,"Jeff Okudah","jeff okudah","CB","DET","22","2020","1","3","1999-02-02"
+"14903","02753dc9-52ac-4ed1-8086-7894d35a3bd1",NA,NA,NA,"DiggTr00","trevon-diggs-1","6809","4040966",NA,"Trevon Diggs","trevon diggs","CB","DAL","22.4","2020","2","51","1998-09-20"
+"14904","c87aaf5b-e1e9-4d18-b0f1-f328b646031d",NA,NA,NA,"FultKr00","kristian-fulton-1","6829","4035433",NA,"Kristian Fulton","kristian fulton","CB","TEN","22.4","2020","2","61","1998-09-03"
+"14905","afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9",NA,NA,NA,"HendCJ00","cj-henderson-1","6791","4240596",NA,"CJ Henderson","cj henderson","CB","JAC","22.3","2020","1","9","1998-09-30"
+"14906","fe85708b-4644-4f77-ba2b-5726ff83439a",NA,NA,NA,NA,NA,"6840","3915506",NA,"Damon Arnette","damon arnette","CB","LVR","25","2020","1","19","1996-02-02"
+"14907","1bbe7ce0-3707-4d4d-b8f6-7577008f1763",NA,NA,NA,"DelpGr00","grant-delpit-1","6799","4242208",NA,"Grant Delpit","grant delpit","S","CLE","22.4","2020","2","44","1998-09-20"
+"14908","dbeff2ee-8d26-48f3-b345-3cd88c374c87",NA,NA,NA,"McKiXa00","xavier-mckinney-1","6788","4241470",NA,"Xavier McKinney","xavier mckinney","S","NYG","21.5","2020","2","36","1999-08-09"
+"14909","27732f2b-2009-4954-a0a0-d29f5ce1abdf",NA,NA,NA,"WinfAn00","antoine-winfield-jr-1","6888","4034790",NA,"Antoine Winfield","antoine winfield","S","TBB","22.5","2020","2","45","1998-08-16"
+"14910","f0c60c6e-513b-40df-9794-d555ed59202f",NA,NA,NA,"JoneBr06","brandon-jones-13","6911","4039059",NA,"Brandon Jones","brandon jones","S","MIA","22.8","2020","3","70","1998-04-02"
+"14911","7d491979-7d1b-4b55-9f3a-f68db22d8bb1",NA,NA,NA,"DaviAs00","ashtyn-davis-1","6855","3858271",NA,"Ashtyn Davis","ashtyn davis","S","NYJ","24.3","2020","3","68","1996-10-10"
+"14912","c8bbff7b-3b6e-413f-8945-24c01bfd84c5",NA,"19469",NA,NA,NA,"7062","3915165",NA,"Rodrigo Blankenship","rodrigo blankenship","PK","IND","24","2020",NA,NA,"1997-01-29"
+"14913","e34d2f84-e5ec-4818-a54c-94176e515a90","00-0034605",NA,NA,NA,NA,"5628","3053054",NA,"Cavon Walker","cavon walker","DE","FA","26.6","2018",NA,NA,"1994-07-04"
+"14914","5a09de36-5fac-4053-b3a0-2b56d2519a9b",NA,NA,NA,NA,NA,"7094","4682912",NA,"Lirim Hajrullahu","lirim hajrullahu","PK","CAR","30.8","2019",NA,NA,"1990-04-24"
+"14915","7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f",NA,NA,NA,NA,NA,"7095","3053774",NA,"Austin MacGinnis","austin macginnis","PK","LAR","25.7","2019",NA,NA,"1995-05-04"
+"14916","5f871c3c-9df8-4869-a967-9df253747a73","00-0035370",NA,NA,NA,NA,"6138","4035425",NA,"Saivion Smith","saivion smith","CB","DAL","23.2","2019",NA,NA,"1997-11-05"
+"14917","e2f3af7f-dd17-44f2-a000-d487a29f0f03",NA,NA,NA,NA,NA,"6108","3693033",NA,"Jacques Patrick","jacques patrick","RB","CIN","24.1","2019",NA,NA,"1997-01-07"
+"14918","1eae2610-be1d-4f53-82a2-28cf4a2db352",NA,NA,NA,"TerrAJ00","aj-terrell-1","6836","4239995",NA,"AJ Terrell","aj terrell","CB","ATL","22.4","2020","1","16","1998-09-23"
+"14919","b4b346b6-6175-407c-a6cd-103368a1609f",NA,NA,NA,"IgbiNo00","noah-igbinoghene-1","6817","4242516",NA,"Noah Igbinoghene","noah igbinoghene","CB","MIA","21.2","2020","1","30","1999-11-27"
+"14920","6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4",NA,NA,NA,"GladJe00","jeff-gladney-1","6842","3676819",NA,"Jeff Gladney","jeff gladney","CB","MIN","24.1","2020","1","31","1996-12-12"
+"14921","1d8d5c04-15e7-4346-9d1f-f128e4df3adb",NA,NA,NA,"DuggKy00",NA,"6872","4401811",NA,"Kyle Dugger","kyle dugger","S","NEP","24.9","2020","2","37","1996-03-22"
+"14922","7e2046da-1bdb-49b6-abb1-c35e725d84a3",NA,NA,NA,"BlacRo00","ross-blacklock-1","6795","4038557",NA,"Ross Blacklock","ross blacklock","DT","HOU","22.6","2020","2","40","1998-07-09"
+"14923","5670f3dd-822d-4d13-a6c9-f981354441fc",NA,NA,NA,"TaylDa00","darrell-taylor-1","6910","3915396",NA,"Darrell Taylor","darrell taylor","DE","SEA","23.9","2020","2","48","1997-03-24"
+"14924","99b81b41-fb3b-4650-940b-9cb3770021ba",NA,NA,NA,"JohnJa13","jaylon-johnson-1","6839","4243253",NA,"Jaylon Johnson","jaylon johnson","CB","CHI","21.8","2020","2","50","1999-04-19"
+"14925","8738c2cc-4ac6-4288-922d-ce4590d9af42",NA,NA,NA,"UcheJo00","josh-uche-1","6921","4046528",NA,"Josh Uche","josh uche","LB","NEP","22.4","2020","2","60","1998-09-18"
+"14926","9b2d5497-738b-47bc-bd96-2c550b4649ee",NA,NA,NA,"GayJWi00","willie-gay-1","7023","4259804",NA,"Willie Gay","willie gay","LB","KCC","23","2020","2","63","1998-02-15"
+"14927","5f623fbc-415e-4035-b423-7850cf1153b4",NA,NA,NA,"ChinJe00",NA,"7016","4043169",NA,"Jeremy Chinn","jeremy chinn","S","CAR","22.9","2020","2","64","1998-02-26"
+"14928","05cb1d47-3517-4410-a61b-75adabbfb910",NA,NA,NA,"WilsLo00","logan-wilson-1","6880","3918330",NA,"Logan Wilson","logan wilson","LB","CIN","24.6","2020","3","65","1996-07-08"
+"14929","e91734d9-8e7d-4e55-9027-e7c338cc809a",NA,NA,NA,"OkwaJu00","julian-okwara-1","6851","4046690",NA,"Julian Okwara","julian okwara","DE","DET","23.1","2020","3","67","1997-12-27"
+"14930","a94f0507-44b0-4fb5-9e8c-fd21157ec1a6",NA,NA,NA,"HamiDa02","davon-hamilton-1","6972","3915520",NA,"Davon Hamilton","davon hamilton","DT","JAC","24","2020","3","73","1997-02-01"
+"14931","bc399631-6a3c-4515-9f8b-acc9a08bc434",NA,NA,NA,"OjemMi00","michael-ojemudia-1","6983","3894830",NA,"Michael Ojemudia","michael ojemudia","CB","DEN","23.4","2020","3","77","1997-09-12"
+"14932","a0ebc174-02ad-4bf4-8c0f-517d04a29a95",NA,NA,NA,"LewiTe00","terrell-lewis-2","6837","4040968",NA,"Terrell Lewis","terrell lewis","LB","LAR","22","2020","3","84",NA
+"14933","c2ec4712-147c-49b1-b6ec-fdb298913080",NA,NA,NA,"BlacJu01","julian-blackmon-1","7044","4035661",NA,"Julian Blackmon","julian blackmon","S","IND","22.4","2020","3","85","1998-08-24"
+"14934","445efcfc-1646-4823-89f7-8b6005266d13",NA,NA,NA,"ElliJo02","jordan-elliott-1","6841","4039052",NA,"Jordan Elliott","jordan elliott","DT","CLE","23.2","2020","3","88","1997-11-23"
+"14935","c10aceb5-abcc-4e42-a399-cce8e5832671",NA,NA,NA,"DantCa00","cameron-dantzler-1","6871","4035385",NA,"Cameron Dantzler","cameron dantzler","CB","MIN","22.4","2020","3","89","1998-09-03"
+"14936","05e15d81-6bb1-49f7-b677-63475d073961",NA,"19435",NA,"AsiaDe00","devin-asiasi-1","6956","4046522",NA,"Devin Asiasi","devin asiasi","TE","NEP","23.5","2020","3","91","1997-08-14"
+"14937","ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58",NA,NA,NA,"AgimMc00","mctelvin-agim-1","7111","4035566",NA,"McTelvin Agim","mctelvin agim","DT","DEN","23.4","2020","3","95","1997-09-25"
+"14938","b9f364a0-5553-4475-8388-6dfd1d7a2e62",NA,NA,NA,NA,NA,"6990","3728263",NA,"Tanner Muse","tanner muse","LB","LVR","24.4","2020","3","36","1996-09-06"
+"14939","4da5e05d-fc5c-4e87-aa38-d9cde42dd476",NA,"19563",NA,"KeenDa00","dalton-keene-1","7082","4240861",NA,"Dalton Keene","dalton keene","TE","NEP","21.8","2020","3","101","1999-04-14"
+"14940","3f4025d1-5782-43e4-9f42-8eee2da66a95",NA,NA,NA,"HighAl02","alex-highsmith-1","7113","4037333",NA,"Alex Highsmith","alex highsmith","LB","PIT","23.5","2020","3","102","1997-08-07"
+"14941","423b3b98-da9a-4786-84c9-0662ec0ce11f",NA,NA,NA,"TaylDa01","davion-taylor-1","6912","4360645",NA,"Davion Taylor","davion taylor","LB","PHI","22.5","2020","3","103","1998-08-05"
+"14942","b222de39-0a5e-4bbe-b239-083a500194bb",NA,NA,NA,"BurgTe00","terrell-burgess-1","7036","4035663",NA,"Terrell Burgess","terrell burgess","S","LAR","22.2","2020","3","104","1998-11-12"
+"14943","d152b2d5-402d-47f4-a6d1-7870e5a32df5",NA,NA,NA,"DaviAk01","akeem-davis-gaither-1","6860","3917142",NA,"Akeem Davis-Gaither","akeem davis-gaither","LB","CIN","23.4","2020","4","107","1997-09-21"
+"14944","8e19d167-cee8-4048-8f28-d476b11ec330",NA,NA,NA,NA,NA,"6882","4242973",NA,"Darney Holmes","darney holmes","CB","NYG","22.6","2020","4","4","1998-06-23"
+"14945","0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9",NA,NA,NA,"PridTr00","troy-pride-jr-1","6856","4046679",NA,"Troy Pride","troy pride","CB","CAR","23","2020","4","113","1998-01-19"
+"14946","2040899a-0b04-4de7-900b-f9e6861c6150",NA,NA,NA,"FotuLe00","leki-fotu-1","6948","4035666",NA,"Leki Fotu","leki fotu","DT","ARI","22.4","2020","4","114","1998-08-23"
+"14947","68356887-b59e-4210-9726-828ea7f83928",NA,NA,NA,"WonnDJ00","dj-wonnum-1","6868","4038849",NA,"DJ Wonnum","dj wonnum","DE","MIN","23.3","2020","4","117","1997-10-31"
+"14948","86d7dd69-9957-4853-b069-5ad7e35edc64",NA,NA,NA,"WalkMy00","mykal-walker-1","7012","4243009",NA,"Mykal Walker","mykal walker","LB","ATL","23.4","2020","4","119","1997-08-28"
+"14949","e44308c4-2505-4b79-855a-18d83d407fc5",NA,NA,NA,"RobiRe00","reginald-robinson-ii-1","7114","3917006",NA,"Reggie Robinson","reggie robinson","CB","DAL","23.8","2020","4","123","1997-04-14"
+"14950","789af1aa-253e-4fda-a93b-cef346bd91b3",NA,NA,NA,"WallKV00","kvon-wallace-1","6947","4035463",NA,"KVon Wallace","kvon wallace","S","PHI","23.5","2020","4","127","1997-07-25"
+"14951","ce8b21f7-6f93-40e6-8068-0432e10d855f",NA,NA,NA,"LyncJa00","james-lynch-3","6858","4259181",NA,"James Lynch","james lynch","DT","MIN","22","2020","4","130","1999-01-20"
+"14952","6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65",NA,NA,NA,"LawrRa01","rashard-lawrence-1","7004","4035452",NA,"Rashard Lawrence","rashard lawrence","DT","ARI","22.4","2020","4","131","1998-08-27"
+"14953","f070d4ef-1904-47f2-87d3-b9e2788789ed",NA,NA,NA,"DyexTr00","troy-dye-1","6941","4038946",NA,"Troy Dye","troy dye","LB","MIN","24.4","2020","4","132","1996-09-18"
+"14954","c588e277-fc9e-4187-9358-2b9e1a2b0cd9",NA,NA,NA,"HawkJa00","jaylinn-hawkins-1","7058","3858276",NA,"Jaylinn Hawkins","jaylinn hawkins","S","ATL","23.4","2020","4","134","1997-08-25"
+"14955","72d2a51c-7f02-4db8-8cce-19c45820f170",NA,NA,NA,"ScotJo00","josiah-scott-1","6935","4241977",NA,"Josiah Scott","josiah scott","CB","JAC","21.8","2020","4","137","1999-04-05"
+"14956","92b059b3-6b1b-4db4-a535-ceba629176d1",NA,NA,NA,"SneeLJ00","ljarius-sneed-1","7117","4040432",NA,"LJarius Sneed","ljarius sneed","CB","KCC","24","2020","4","138","1997-01-21"
+"14957","23525664-b547-413b-9221-b09091b90edf",NA,NA,NA,NA,NA,"6896","4239694",NA,"Amik Robertson","amik robertson","CB","LVR","22.6","2020","4","33","1998-07-06"
+"14958","dd7218be-5eaa-4d51-94f8-a9f68d2f0af9",NA,NA,NA,"QuarSh00","shaquille-quarterman-1","6997","4037468",NA,"Shaquille Quarterman","shaquille quarterman","LB","JAC","23.3","2020","4","140","1997-10-28"
+"14959","f113cf01-5a86-4ed9-ae34-dcdbac9e11a6",NA,NA,NA,"ReidJo00","john-reid-1","7052","3929653",NA,"John Reid","john reid","CB","HOU","24.7","2020","4","141","1996-05-15"
+"14960","fc116de9-ceb8-409b-b322-60659c73e943",NA,NA,NA,"RobiAl03","alton-robinson-1","6915","4254276",NA,"Alton Robinson","alton robinson","DE","SEA","22.7","2020","5","148","1998-06-02"
+"14961","0d226e62-3a43-4a9f-a985-05214182146f",NA,NA,NA,"RobiKe02","kenny-robinson-4","7119","4241889",NA,"Kenny Robinson","kenny robinson","S","CAR","22","2020","5","152",NA
+"14962","2814f1e7-dca6-4bd9-80a9-9af480d10546",NA,NA,NA,"GipsTr00","trevis-gipson-1","7120","3917016",NA,"Trevis Gipson","trevis gipson","DE","CHI","23.6","2020","5","155","1997-06-13"
+"14963","15a6249f-f4cf-47c2-8251-8a3a802b3db0",NA,NA,NA,"ThomDa07","daniel-thomas-3","7053","4035505",NA,"Daniel Thomas","daniel thomas","S","JAC","22.6","2020","5","157","1998-07-01"
+"14964","e81fcb68-e579-455f-9278-1bc28d5d332b",NA,NA,NA,"HallBr02","bryce-hall-1","6833",NA,NA,"Bryce Hall","bryce hall","CB","NYJ","23.7","2020","5","158","1997-05-11"
+"14965","f8788fca-16b2-4214-b0a4-1bacff5e9fcd",NA,NA,NA,"RohrJu00","justin-rohrwasser-1","7121","3913295",NA,"Justin Rohrwasser","justin rohrwasser","PK","NEP","24.2","2020","5","159","1996-12-07"
+"14966","5c52edd1-7566-483d-9564-03c21438fb29",NA,NA,NA,"HudsKh00","khaleke-hudson-1","6937","4046525",NA,"Khaleke Hudson","khaleke hudson","LB","WAS","23.2","2020","5","162","1997-12-06"
+"14967","e1072f9a-86f7-4d01-89a6-33fe0186f232",NA,NA,NA,"VildKi00","kindle-vildor-1","6928","4036651",NA,"Kindle Vildor","kindle vildor","CB","CHI","23.1","2020","5","163","1997-12-11"
+"14968","5f313f6e-4a5b-495b-8442-176c145f68c4",NA,NA,NA,"WeavCu00","curtis-weaver-1","6854","4048257",NA,"Curtis Weaver","curtis weaver","DE","CLE","22.5","2020","5","164","1998-08-03"
+"14969","58e217cd-53c0-40e7-b40b-62f53d246751",NA,"19329",NA,"HighJo00","john-hightower-1","7086","4373673",NA,"John Hightower","john hightower","WR","PHI","24.7","2020","5","168","1996-05-31"
+"14970","ef3475dd-30bc-4f1a-9c44-4a8ecaca476e",NA,NA,NA,"HandHa00","harrison-hand-2","6961","4259170",NA,"Harrison Hand","harrison hand","CB","MIN","22.2","2020","5","169","1998-11-12"
+"14971","6f695364-f31f-420d-8baa-434539e2b12d",NA,NA,NA,"WashBr01","broderick-washington-1","7122","3915837",NA,"Broderick Washington","broderick washington","DT","BAL","24.2","2020","5","170","1996-12-04"
+"14972","0063fe36-d8c2-43e6-8ab1-af890eb58cea",NA,"19771",NA,"CoulIs00",NA,"7085","4248504",NA,"Isaiah Coulter","isaiah coulter","WR","HOU","22","2020","5","171",NA
+"14973","632f863e-ad20-424f-a468-7ee40c098c2c",NA,"19655",NA,"HuntJa01","jason-huntley-1","7107","4040790",NA,"Jason Huntley","jason huntley","RB","PHI","22.8","2020","5","172","1998-04-20"
+"14974","bafe8df1-66b5-4200-8fb3-ff188c25a4e2",NA,"19810",NA,"MoonDa00","darnell-mooney-1","7090","4040655",NA,"Darnell Mooney","darnell mooney","WR","CHI","23.3","2020","5","173","1997-10-29"
+"14975","ff0950aa-357f-47b4-b4dd-d4374413ffc1",NA,NA,NA,"MurcLa00","larrell-murchison-1","6887","4240123",NA,"Larrell Murchison","larrell murchison","DE","TEN","23.8","2020","5","174","1997-04-24"
+"14976","e1917291-e27c-4221-b62e-36b5d9df254c",NA,NA,NA,"MartKa01","kamal-martin-1","6890","4034781",NA,"Kamal Martin","kamal martin","LB","GBP","22.6","2020","5","175","1998-06-17"
+"14977","3bf5c049-9daa-43ba-9758-c6c895a9d462",NA,NA,NA,"OsboKJ00","kj-osborn-1","7066","3916566",NA,"KJ Osborn","kj osborn","WR","MIN","23.6","2020","5","176","1997-06-10"
+"14978","9e9d2934-a273-4e39-a413-d991d083297b",NA,NA,NA,"DannMi00","mike-danna-1","6958","3915487",NA,"Michael Danna","michael danna","DE","KCC","23.2","2020","5","177","1997-12-04"
+"14979","f8f0760e-8f04-45bf-9371-fa33c945bc1c",NA,NA,NA,"StrnJu00","justin-strnad-1","6977","3919548",NA,"Justin Strnad","justin strnad","LB","DEN","24.4","2020","5","178","1996-08-21"
+"14980","65533cd0-792b-42cb-808f-18cbac2e51cb",NA,NA,NA,"BrowCa01","cameron-brown-1","7020","4045165",NA,"Cam Brown","cam brown","LB","NYG","22.8","2020","6","183","1998-04-01"
+"14981","47dedc0e-a2fd-415c-8619-5a46867d83e2",NA,NA,NA,"RoyxBr00","bravvion-roy-1","7124","4035407",NA,"Bravvion Roy","bravvion roy","DT","CAR","24.3","2020","6","184","1996-10-18"
+"14982","f3a7ab39-ead2-4dbf-b760-d652b8a26853",NA,NA,NA,"GilmAl00","alohi-gilman-1","7069","4039413",NA,"Alohi Gilman","alohi gilman","S","LAC","23.4","2020","6","186","1997-09-17"
+"14983","bfccbff4-bc01-41ed-aa11-be976160504c",NA,"19760",NA,"BassTy00","tyler-bass-3","7042","3917232",NA,"Tyler Bass","tyler bass","PK","BUF","24","2020","6","188","1997-02-14"
+"14984","527dfee0-a242-4dc7-830a-ab7028308259",NA,NA,NA,"WoerCh00","charlie-woerner-1","7075","4035020",NA,"Charlie Woerner","charlie woerner","TE","SFO","23.3","2020","6","190","1997-10-16"
+"14985","85eaaf9f-59cf-4150-943c-c1abdaa78eb1",NA,NA,NA,"MannBr01","braden-mann-1","6950","4035239",NA,"Braden Mann","braden mann","PN","NYJ","23.2","2020","6","191","1997-11-24"
+"14986","e26bb68a-8987-40b6-a2d1-af013a13306a",NA,NA,NA,"WindRo01","robert-windsor-1","6893","3929658",NA,"Robert Windsor","robert windsor","DT","IND","24","2020","6","193","1997-01-15"
+"14987","2f471656-9ecc-42ea-977f-0c56756d0557",NA,NA,NA,"DaviKh00","khalil-davis-1","7125","3699530",NA,"Khalil Davis","khalil davis","DT","TBB","24.4","2020","6","194","1996-08-22"
+"14988","a004c949-7097-4faf-bac9-0edc5b1b2b67",NA,NA,NA,"BradSh00","shaun-bradley-1","7127","4038902",NA,"Shaun Bradley","shaun bradley","LB","PHI","23.8","2020","6","196","1997-04-08"
+"14989","00a28b92-3567-45bc-9fdb-61276dc57755",NA,NA,NA,"PeniJo00","john-penisini-1","7128","4243257",NA,"John Penisini","john penisini","DT","DET","23.7","2020","6","197","1997-05-31"
+"14990","60871327-0349-4246-8996-4a594addd8cf",NA,NA,NA,"BrooAn00","antoine-brooks-1","6917","4036213",NA,"Antoine Brooks","antoine brooks","S","PIT","22.3","2020","6","198","1998-10-28"
+"14991","c72cb618-fb6b-4327-8ced-91088c936c81",NA,NA,NA,"FullJo01","jordan-fuller-1","6968","4040613",NA,"Jordan Fuller","jordan fuller","S","LAR","22.9","2020","6","199","1998-03-04"
+"14992","ca85137c-205c-458e-8b77-8457849f614c",NA,"19715",NA,"WatkQu00","quez-watkins-1","6927","4050373",NA,"Quez Watkins","quez watkins","WR","PHI","22.6","2020","6","200","1998-06-09"
+"14993","41dabf34-2055-4420-8aef-c222d7df48e6",NA,NA,NA,"WeavEv00","evan-weaver-1","7040","4035875",NA,"Evan Weaver","evan weaver","LB","ARI","22.5","2020","6","202","1998-08-11"
+"14994","43d50dbb-38cf-4713-a667-15f4692d8c20",NA,NA,NA,"MaluCa00","cassh-maluia-1","7130","4048736",NA,"Cassh Maluia","cassh maluia","LB","NEP","22.3","2020","6","204","1998-10-03"
+"14995","e135eaa4-1688-487a-a924-4d83b16977df",NA,NA,NA,"MeteJo00","josh-metellus-1","6901","4046537",NA,"Josh Metellus","josh metellus","S","MIN","23","2020","6","205","1998-01-21"
+"14996","e7a9186e-5e19-4f70-b45c-527c888e6fc7",NA,NA,NA,"DaviTy02","tyler-davis-2","7131","3914240",NA,"Tyler Davis","tyler davis","TE","JAC","23.8","2020","6","206","1997-04-02"
+"14997","72100db3-2daa-4c17-aaa8-6c2c52bea5f3",NA,NA,NA,"RodgIs00","isaiah-rodgers-1","7133","4044540",NA,"Isaiah Rodgers","isaiah rodgers","CB","IND","23.1","2020","6","211","1998-01-07"
+"14998","be29caf2-9942-4e21-939a-a29407555c56",NA,NA,NA,"PatmDe00","dezmon-patmon-1","6985","4054085",NA,"Dezmon Patmon","dezmon patmon","WR","IND","22.5","2020","6","212","1998-08-06"
+"14999","08765a08-c1cf-4065-81b3-67cbad7e0e17",NA,NA,NA,"GlasJo00","jordan-glasgow-1","7134","3929928",NA,"Jordan Glasgow","jordan glasgow","LB","IND","24.6","2020","6","213","1996-06-28"
+"15000","cbe52cf7-a9fe-495c-bd77-3a22a7f7208f",NA,NA,NA,"BailMa01","markus-bailey-1","6891","3917992",NA,"Markus Bailey","markus bailey","LB","CIN","23.9","2020","7","215","1997-03-07"
+"15001","eff8e3ec-98e4-49c8-b865-436e3abb0870",NA,"19459",NA,"CurlKa00","kamren-curl-1","7136","4242154",NA,"Kamren Curl","kamren curl","S","WAS","21.8","2020","7","216","1999-03-31"
+"15002","d2f9e776-11e2-47ce-82fd-60908aeb2769",NA,NA,NA,"CougCa00","carter-coughlin-1","7011","4034766",NA,"Carter Coughlin","carter coughlin","LB","NYG","23.5","2020","7","218","1997-07-21"
+"15003","95f3b8ac-e10f-4f0d-8650-b464b37ded86",NA,NA,NA,"StonGe00","geno-stone-1","6923","4240575",NA,"Geno Stone","geno stone","S","HOU","21.8","2020","7","219","1999-04-19"
+"15004","6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5",NA,NA,NA,"ThomSt00","stantley-thomas-oliver-iii-1","7137","4046353",NA,"Stantley Thomas-Oliver","stantley thomas-oliver","CB","CAR","22.7","2020","7","221","1998-06-04"
+"15005","3a10616d-e6bd-4328-ac4d-db423b0abbdb",NA,NA,NA,"WillKe06","kenny-willekes-1","6874","3929833",NA,"Kenny Willekes","kenny willekes","DE","MIN","23.5","2020","7","225","1997-07-22"
+"15006","aecf0860-27aa-49ac-b133-69fe2c4c63e1",NA,NA,NA,"HofrSt00","sterling-hofrichter-1","7141","3916449",NA,"Sterling Hofrichter","sterling hofrichter","PN","ATL","24.2","2020","7","228","1996-12-05"
+"15007","63758554-7225-48de-a553-c43c03419c49",NA,NA,NA,"SmitJa08","james-smith-williams-1","7024","3686690",NA,"James Smith-Williams","james smith-williams","DE","WAS","23.5","2020","7","229","1997-07-30"
+"15008","c744ade6-bce2-4c71-8f1b-742cb183c8eb",NA,NA,NA,"DiNuBe00","ben-dinucci-1","7143","3895785",NA,"Ben DiNucci","ben dinucci","QB","DAL","24.2","2020","7","231","1996-11-24"
+"15009","1dada1ff-5475-425e-8f38-0728d50c91c5",NA,NA,NA,"DaviCa03","carlos-davis-3","6995","3699462",NA,"Carlos Davis","carlos davis","DT","PIT","24.4","2020","7","232","1996-08-22"
+"15010","8d617c67-6e6a-4afd-b5c8-f98dd744c36d",NA,NA,NA,"ToohCa00","casey-toohill-1","7030","3931408",NA,"Casey Toohill","casey toohill","LB","WAS","24.4","2020","7","233","1996-08-21"
+"15011","d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d",NA,NA,NA,"JohnCl00","clay-johnston-1","7144","3928928",NA,"Clay Johnston","clay johnston","LB","CAR","24.5","2020","7","234","1996-08-08"
+"15012","564fdf8b-c21e-4889-b371-e8ca079ae9b7",NA,NA,NA,"CornJa01","jashon-cornell-1","7145","3873928",NA,"Jashon Cornell","jashon cornell","DE","DET","24.1","2020","7","235","1996-12-30"
+"15013","41ff2f2c-6ddb-4bc5-9712-3664501f7af9",NA,NA,NA,"ScotVe00","vernon-scott-1","7146","4038538",NA,"Vernon Scott","vernon scott","S","GBP","23.4","2020","7","236","1997-09-11"
+"15014","04401033-2785-4a87-b19a-312f45a53502",NA,NA,NA,"KeyeTh00","thakarius-keyes-1","7147","4040652",NA,"Thakarius Keyes","thakarius keyes","CB","KCC","23.2","2020","7","237","1997-11-09"
+"15015","8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b",NA,NA,NA,"BrunTJ00","tj-brunson-1","7148","4038811",NA,"TJ Brunson","tj brunson","LB","NYG","23.2","2020","7","238","1997-12-03"
+"15016","089763ae-208d-4ad9-bb30-c97c0fcfdcd1",NA,NA,NA,"JackDa02","dane-jackson-1","6969","3895791",NA,"Dane Jackson","dane jackson","CB","BUF","24.2","2020","7","239","1996-11-29"
+"15017","93a1f2fd-fd5e-4b06-8086-476028d83eed",NA,NA,NA,"StevTo01","tommy-stevens-1","7149","3791110",NA,"Tommy Stevens","tommy stevens","QB","CAR","24.1","2020","7","240","1996-12-15"
+"15018","6a2ee9da-4df9-4486-8060-8362a20bbb40",NA,NA,NA,"RussCh00","chapelle-russell-1","7000","3923413",NA,"Chapelle Russell","chapelle russell","LB","JAC","24","2020","7","241","1997-01-20"
+"15019","586bc34d-f368-4d82-96b1-816d08fa2837",NA,NA,NA,"GarvJo00","jonathan-garvin-1","6965","4240655",NA,"Jonathan Garvin","jonathan garvin","LB","GBP","21.5","2020","7","242","1999-07-28"
+"15020","099c975d-104f-4bac-9815-52346771a515",NA,NA,NA,"JackCh01","chris-jackson-9","7150","4043605",NA,"Chris Jackson","chris jackson","CB","TEN","22.8","2020","7","243","1998-04-13"
+"15021","748d5fdf-8a06-4cc1-a8b1-257f4377236a",NA,NA,NA,"CalaRa00","raymond-calais-1","6988",NA,NA,"Raymond Calais","raymond calais","RB","LAR","22.8","2020","7","245","1998-04-02"
+"15022","73236a66-ba10-44a6-b12f-2ca13cad33b4",NA,NA,NA,"PerrMa00","malcolm-perry-1","7109","4039436",NA,"Malcolm Perry","malcolm perry","RB","MIA","23.8","2020","7","246","1997-04-19"
+"15023","25396df1-3597-468c-b1d7-ce40edb0f7f2",NA,NA,NA,"WillCh07","chris-williamson-1","7151","3915122",NA,"Chris Williamson","chris williamson","CB","ATL","23.7","2020","7","247","1997-05-19"
+"15024","e44cc736-fe98-4b80-a138-4ebc5f087335",NA,NA,NA,"SlomSa00","samuel-sloman-1","7152","4038994",NA,"Sam Sloman","sam sloman","PK","TEN","23.4","2020","7","248","1997-09-19"
+"15025","73b6e69a-516b-4b95-9edd-0a8959500956",NA,NA,NA,"ColeBr01","brian-cole-1","6929",NA,NA,"Brian Cole","brian cole","S","MIA","23.8","2020","7","249","1997-04-03"
+"15026","a41b8454-0326-4c56-87a2-f2aac3814961",NA,NA,NA,"SullSt00","stephen-sullivan-1","6970","4035426",NA,"Stephen Sullivan","stephen sullivan","TE","SEA","24.2","2020","7","251","1996-11-28"
+"15027","8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4",NA,NA,NA,"ClevTy00","tyrie-cleveland-1","7032","4034964",NA,"Tyrie Cleveland","tyrie cleveland","WR","DEN","23.4","2020","7","252","1997-09-20"
+"15028","abbfa41c-ccb6-4378-b75b-28ec7d54e277",NA,NA,NA,"TuszDe00",NA,"7154","3930915",NA,"Derrek Tuszka","derrek tuszka","DE","DEN","24.6","2020","7","254","1996-07-11"
+"15029","22f733ff-fd31-4731-acf1-97843e9eb665",NA,NA,NA,"CrowTa00","tae-crowder-1","7155","3915171",NA,"Tae Crowder","tae crowder","LB","NYG","23.9","2020","7","255","1997-03-12"
+"15030","8b91b834-6eae-4a18-8fc6-9c99caafa615","00-0034769",NA,NA,NA,NA,"5748","3128747",NA,"DeMarquis Gates","demarquis gates","LB","FA","24.9","2018",NA,NA,"1996-03-07"
+"15032","7141ec7a-4f3d-44a4-979e-6644ab9e8f7b","00-0035156",NA,NA,NA,NA,"6523","3916370",NA,"Jack Fox","jack fox","PN","DET","24.4","2019",NA,NA,"1996-09-01"
+"15033","6fb8803e-2a84-454b-827f-df747e9157d8",NA,NA,NA,NA,NA,"6763","2974503",NA,"Reggie Begelton","reggie begelton","WR","FA","27.4","2019",NA,NA,"1993-08-31"
+"15034","1364cb22-1bfa-429b-8bde-dfd0d2938163",NA,"19505",NA,NA,NA,"6989","4035170",NA,"Marquez Callaway","marquez callaway","WR","NOS","22.9","2020",NA,NA,"1998-03-27"
+"15035","2ab1b694-1013-4661-85d4-55415d3b147f","00-0034899",NA,NA,NA,NA,"5806","3124092",NA,"John Wolford","john wolford","QB","LAR","25.3","2018",NA,NA,"1995-10-16"
+"15036","0c1998f2-7fd2-4191-a05f-1f7f5b5e2ea3",NA,NA,NA,NA,NA,"7156",NA,NA,"Jmar Smith","jmar smith","QB","FA","24.4","2020",NA,NA,"1996-09-24"
+"15037","528b6f5c-7043-4c5a-bb04-7314b1e0f155",NA,NA,NA,NA,NA,"6832","4035277",NA,"Kalija Lipscomb","kalija lipscomb","WR","FA","23.3","2020",NA,NA,"1997-10-06"
+"15038","488cf673-fb92-4701-abd0-4641987642ee",NA,NA,NA,NA,NA,"7080","3917166",NA,"Omar Bayless","omar bayless","WR","CAR","24.1","2020",NA,NA,"1996-12-15"
+"15039","08df3736-14f2-465e-af74-cdcdebe19a66",NA,NA,NA,NA,NA,"7091","4032749",NA,"Aaron Parker","aaron parker","WR","DAL","22.7","2020",NA,NA,"1998-05-21"
+"15040","9e31f935-1e60-437d-9859-e1f2bb936aa5",NA,NA,NA,NA,NA,"7098",NA,NA,"TySon Williams","tyson williams","RB","BAL","24.4","2020",NA,NA,"1996-09-04"
+"15041","2f2181f8-cb0a-42e4-9468-17f5f5a219cc",NA,NA,NA,NA,NA,"7106","3917849",NA,"Lawrence Cager","lawrence cager","WR","NYJ","23.4","2020",NA,NA,"1997-08-20"
+"15042","1dc6b133-355f-451e-856f-d02839681578",NA,NA,NA,NA,NA,"7087","4039274",NA,"Jonathan Ward","jonathan ward","RB","ARI","23.3","2020",NA,NA,"1997-09-30"
+"15043","5d52e146-9f64-4b04-bcea-b5ae28a027de",NA,NA,NA,NA,NA,"7367","3916927",NA,"Will Hastings","will hastings","WR","FA","24.5","2020",NA,NA,"1996-07-30"
+"15044","0ff73dee-f160-492d-b7c8-7d23b15e141d",NA,NA,NA,NA,NA,"7435","3931401",NA,"Cameron Scarlett","cameron scarlett","RB","FA","24.3","2020",NA,NA,"1996-10-09"
+"15045","a8614822-2740-4b1f-a01e-b7960a4f07f6",NA,NA,NA,NA,NA,"7015","3915136",NA,"Jacob Breeland","jacob breeland","TE","BAL","23.2","2020",NA,NA,"1997-11-20"
+"15046","521f597a-0709-4cc4-afab-72d93eccb5fc",NA,NA,NA,NA,NA,"7351","3915145",NA,"Kirk Merritt","kirk merritt","WR","MIA","24.1","2020",NA,NA,"1997-01-05"
+"15047","7ba5935c-0e54-4ad0-b90e-ff4af7d62b85","00-0032849",NA,NA,NA,NA,"3813","2578317",NA,"Tre Roberson","tre roberson","CB","CHI","28.3","2016",NA,NA,"1992-10-22"
+"15048","6cbc1162-39e7-439f-bdc0-f06775f50e6a",NA,NA,NA,NA,NA,"7387","3692942",NA,"George Campbell","george campbell","WR","FA","24.3","2020",NA,NA,"1996-10-27"
+"15049","c44bdac4-0732-4f94-8bae-df47ecec5656",NA,NA,NA,NA,NA,"7014","4036507",NA,"Joe Bachie","joe bachie","LB","PHI","22.9","2020",NA,NA,"1998-02-26"
+"15050","f0a9018a-4429-4c02-a4ed-04df77b4a389",NA,NA,NA,NA,NA,"6932","3910630",NA,"Charlie Taumoepeau","charlie taumoepeau","TE","FA","22.9","2020",NA,NA,"1998-03-25"
+"15051","edfc712a-54f7-4c34-a838-c50c14dbf7dc",NA,NA,NA,NA,NA,"7307","3915398",NA,"Tommy Townsend","tommy townsend","PN","KCC","24.2","2020",NA,NA,"1996-11-12"
+"15052","4f077de6-d368-4246-84d5-de809736ddb2",NA,NA,NA,NA,NA,"7056","3929831",NA,"Darrell Stewart","darrell stewart","WR","FA","24.6","2020",NA,NA,"1996-07-14"
+"15053","40f11577-5646-4da3-99ba-ea8b038b17a3",NA,NA,NA,NA,NA,"7175","4052137",NA,"Chris Rowland","chris rowland","WR","ATL","23.1","2020",NA,NA,"1997-12-19"
+"15054","689de342-1d99-4a4d-976d-f6573ef3a8c2",NA,NA,NA,NA,NA,"7216","3916749",NA,"Giovanni Ricci","giovanni ricci","TE","CAR","24.3","2020",NA,NA,"1996-10-16"
+"15055","9a76c690-1946-4860-9564-a0b7b9bbaf0a",NA,NA,NA,NA,NA,"6936","3924357",NA,"Joseph Charlton","joseph charlton","PN","CAR","23.8","2020",NA,NA,"1997-04-07"
+"15056","3f95afdc-2140-424b-8250-7d4e273c2efc",NA,NA,NA,NA,NA,"7311","3921709",NA,"Javin White","javin white","LB","LVR","23.9","2020",NA,NA,"1997-02-21"
+"15057","92529995-41e9-48db-b429-c96540ad357b",NA,NA,NA,NA,NA,"7357","3929637",NA,"Dan Chisena","dan chisena","WR","MIN","23.9","2020",NA,NA,"1997-02-25"
+"15058","a850609c-efba-446d-ae0f-17de46503061",NA,NA,NA,NA,NA,"7363","4036445",NA,"Jordan Fehr","jordan fehr","LB","FA","22.6","2020",NA,NA,"1998-06-16"
+"15059","e11eff18-b567-47c2-99e6-f4c6bc3d10c3",NA,NA,NA,NA,NA,"7366","4037511",NA,"Myles Dorn","myles dorn","S","MIN","22.6","2020",NA,NA,"1998-06-25"
+"15060","23461354-f2d7-4e36-9046-fe9cde6dd413",NA,NA,NA,NA,NA,"6778","3040206",NA,"Chris Streveler","chris streveler","QB","ARI","26.1","2019",NA,NA,"1995-01-06"
+"15061","91584998-260d-4d2e-a154-e4b6f7886ff0",NA,NA,NA,NA,NA,"7185","4361650",NA,"Ray Wilborn","ray wilborn","LB","GBP","23.8","2020",NA,NA,"1997-04-01"
+"15062","b84b99f3-5fac-46ed-b892-5800159edbf9","00-0035048",NA,NA,NA,NA,"5966","3915285",NA,"Wyatt Ray","wyatt ray","LB","TEN","24.3","2019",NA,NA,"1996-10-24"
+"15063","8ca83e4e-d3a5-4dcb-a917-e58e36b77721",NA,NA,NA,NA,NA,"7504","4035577",NA,"DeJon Harris","dejon harris","LB","GBP","23.2","2020",NA,NA,"1997-11-01"
+"15064","5f58e780-62ff-414e-8d32-b0608679e9b3","00-0034667",NA,NA,NA,NA,"5292","3052122",NA,"Devin Ross","devin ross","WR","FA","25.5","2018",NA,NA,"1995-08-12"
+"15065","b7cbd456-e07c-45ba-bae6-cf7c43a5c199",NA,NA,NA,NA,NA,"7334","4034320",NA,"Earnest Edwards","earnest edwards","WR","FA","22.8","2020",NA,NA,"1998-03-30"
+"15066","71c657d6-a2d9-48f3-b6db-dd4372e910f4",NA,NA,NA,NA,NA,"7065","3915400",NA,"Eli Wolf","eli wolf","TE","BAL","23.9","2020",NA,NA,"1997-03-11"
+"15067","f8f7c003-1c6d-4715-bef7-5238bdb600dd","00-0034802",NA,NA,NA,NA,"5759","3052527",NA,"Nate Holley","nate holley","LB","MIA","26.2","2020",NA,NA,"1994-12-05"
+"15068","160934d8-6fac-4a5f-8121-d8bca301d1b4",NA,NA,NA,NA,NA,"7356","3914456",NA,"Tyshun Render","tyshun render","DE","MIA","23.8","2020",NA,NA,"1997-03-28"
+"15069","df2caa7b-29f4-4391-8ce0-b1b711196379",NA,NA,NA,NA,NA,"6967","4039000",NA,"Aaron Fuller","aaron fuller","WR","SEA","23.3","2020",NA,NA,"1997-09-30"
+"15070","a01ffd42-5fdb-42f8-95ab-157025e3fba8","00-0035547",NA,NA,NA,NA,"6665","4408854",NA,"Jody Fortson","jody fortson","WR","FA","25.2","2019",NA,NA,"1995-12-07"
+"15071","2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b",NA,NA,NA,NA,NA,"7253","3930024",NA,"RonDell Carter","rondell carter","DE","DAL","23.6","2020",NA,NA,"1997-07-03"
+"15072","2b604cd5-2ed5-41ab-864b-3e527c922c11",NA,NA,NA,NA,NA,"7249","4246885",NA,"Solomon Ajayi","solomon ajayi","LB","FA","23.5","2020",NA,NA,"1997-07-16"
+"15073","eaacee31-0a3c-4f9d-be85-86490ae16f6b",NA,NA,NA,NA,NA,"7449","4037647",NA,"Parnell Motley","parnell motley","CB","DEN","23.3","2020",NA,NA,"1997-10-28"
+"15074","dec323b8-fb75-4182-b03d-6c412d3d51a5",NA,NA,NA,NA,NA,"7232","4040762",NA,"Rashad Smith","rashad smith","LB","PHI","23.8","2020",NA,NA,"1997-04-20"
+"15075","397901eb-5589-4f0e-8c02-f50509e22f3c",NA,NA,NA,NA,NA,"7446","4035098",NA,"Tucker McCann","tucker mccann","PK","TEN","23.2","2020",NA,NA,"1997-11-10"
+"15076","49abd11f-fe2b-4d15-99ed-f316d2ec67e1",NA,NA,NA,NA,NA,"7346","3909013",NA,"Christian Rozeboom","christian rozeboom","LB","LAR","24","2020",NA,NA,"1997-01-30"
+"15077","af534c7d-791e-4b7f-900d-2d8fd47c0d2a",NA,NA,NA,NA,NA,"7407","4044121",NA,"Isaiah Wright","isaiah wright","WR","WAS","24","2020",NA,NA,"1997-01-13"
+"15078","039d817f-17a4-471d-8949-197335dcd1ad",NA,NA,NA,"ClayCh02","chris-claybrooks-1","7138","4371737",NA,"Chris Claybrooks","chris claybrooks","CB","JAC","23.5","2020","7","223","1997-07-17"
+"15079","34853ce3-5e1f-4b23-b730-6f51444291ac",NA,NA,NA,NA,NA,"6925","4037216",NA,"Essang Bassey","essang bassey","CB","DEN","22.5","2020",NA,NA,"1998-08-12"
+"15080","86707c8e-fec4-4ebe-9111-4d3ad238ad43",NA,NA,NA,NA,NA,"7404","3930298",NA,"Noah Togiai","noah togiai","TE","IND","23.6","2020",NA,NA,"1997-07-06"
+"15081","632a8382-27d6-45ae-b3d2-a37157e09ab7",NA,NA,NA,NA,NA,"7301","4058925",NA,"Tershawn Wharton","tershawn wharton","DT","KCC","22.6","2020",NA,NA,"1998-06-25"
+"15082","fc081a72-124d-4648-86a4-45aebb95a5ba",NA,NA,NA,NA,NA,"7268","4035817",NA,"Krys Barnes","krys barnes","LB","GBP","22.8","2020",NA,NA,"1998-04-02"
+"15087","bc43e18a-c2f9-4e49-a90c-41a95cffa736",NA,NA,NA,NA,NA,"7466","3917812",NA,"Nathan Cottrell","nathan cottrell","RB","JAC","24.5","2020",NA,NA,"1996-08-02"
+"15088","ca393469-d587-4bf7-905d-838e960de851",NA,NA,NA,NA,NA,"7288","3930900",NA,"Ben Ellefson","ben ellefson","TE","JAC","24.4","2020",NA,NA,"1996-09-01"
+"15089","bb01a04e-0d54-4fc6-98c8-2b8614d07afe",NA,NA,NA,NA,NA,"7018","4039064",NA,"Malcolm Roach","malcolm roach","DT","NOS","22.6","2020",NA,NA,"1998-06-09"
+"15093","7e4f9b27-edc4-4f5c-b77a-81604220a454","00-0035607",NA,NA,NA,NA,"6390","3914150",NA,"Marquise Copeland","marquise copeland","DT","LAR","23.7","2019",NA,NA,"1997-05-09"
+"15094","155980c2-e289-48c4-a047-09c08d0ce7ae","00-0035227",NA,NA,NA,NA,"6419","3929850",NA,"PJ Locke","pj locke","S","DEN","24","2019",NA,NA,"1997-02-12"
+"15095","fa797d7d-4537-4e2e-8fd1-cd8831894092",NA,NA,NA,NA,NA,"6981","3676832",NA,"Tipa Galeai","tipa galeai","LB","GBP","23.9","2020",NA,NA,"1997-02-26"
+"15096","538cf938-8f65-435f-b8fd-2856ce5c4e6d",NA,NA,NA,NA,NA,"7318","4035611",NA,"Gabe Nabers","gabe nabers","RB","LAC","23.2","2020",NA,NA,"1997-11-05"
+"15097","0f369885-8ecd-4ca0-a3dc-df8530a0db6e",NA,NA,NA,NA,NA,"6964","4036275",NA,"Sean McKeon","sean mckeon","TE","DAL","23.1","2020",NA,NA,"1997-12-28"
+"15098","06f3e98d-7d73-4007-b673-4a74ed72bda3",NA,NA,NA,NA,NA,"7505",NA,NA,"Darius Bradwell","darius bradwell","RB","LAC","23.7","2020",NA,NA,"1997-05-15"
+"15099","621e177a-e23d-489e-a747-369eb662f0de",NA,NA,NA,NA,NA,"7328","3932422",NA,"Asmar Bilal","asmar bilal","LB","FA","23.8","2020",NA,NA,"1997-04-12"
+"15101","594c3651-1a2f-453e-a39d-2c84a377f2b5","00-0035600",NA,NA,"AkinFr01",NA,"6657","3116082",NA,"Freedom Akinmoladun","freedom akinmoladun","DT","CIN","25","2019",NA,NA,"1996-02-11"
+"15103","4475bb8a-b5a6-4527-bfc7-8e7e03900984",NA,NA,NA,NA,NA,"7204","4039505",NA,"Reggie Gilliam","reggie gilliam","TE","BUF","23.4","2020",NA,NA,"1997-08-20"
+"15109","5e63e674-adf3-4f4e-929e-4a0ff2cfb1df",NA,NA,NA,NA,NA,"7496","3929785",NA,"Nick Westbrook","nick westbrook","WR","TEN","23.9","2020",NA,NA,"1997-03-21"
+"15110","ded1a577-51cc-4f13-8b79-4f4c09655f44","00-0034723",NA,NA,NA,NA,"5727","3040031",NA,"Nick Thurman","nick thurman","DE","NEP","25.6","2018",NA,NA,"1995-06-12"
+"15111","61980614-1609-4b68-b11f-05aa30fefb89",NA,NA,NA,NA,NA,"7296",NA,NA,"Brandon Wright","brandon wright","PK","LAR","24","2020",NA,NA,"1997-02-18"
+"15114","87e59fe7-8744-4318-a41e-53a18d1f9647",NA,NA,NA,NA,NA,"7226","4035290",NA,"Myles Hartsfield","myles hartsfield","S","CAR","23.5","2020",NA,NA,"1997-08-05"
+"15116","e83c7957-58c7-48eb-aaf2-47e410607957",NA,NA,NA,NA,NA,"7458","3916129",NA,"Isaiah Zuber","isaiah zuber","WR","NEP","23.8","2020",NA,NA,"1997-04-15"
+"15117","c5175598-1392-4eaa-ae62-d99811a0c477","00-0035020",NA,NA,NA,NA,"6610","3931424",NA,"Demetrius Flannigan-Fowles","demetrius flannigan-fowles","LB","SFO","24.4","2019",NA,NA,"1996-09-04"
+"15121","07b963d4-aef7-4874-ba04-f9b1ec1142d3",NA,NA,NA,NA,NA,"7391","4039375",NA,"Bryce Huff","bryce huff","DE","NYJ","22.8","2020",NA,NA,"1998-04-17"
+"15123","1d55ba37-c09e-4945-b7ae-8d84e2357283","00-0033720",NA,NA,NA,NA,"4647","2980120",NA,"Colin Thompson","colin thompson","TE","CAR","27.1","2017",NA,NA,"1993-12-15"
+"15124","6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87",NA,NA,NA,NA,NA,"7419","4259252",NA,"James Pierre","james pierre","CB","PIT","24.4","2020",NA,NA,"1996-09-16"
+"15125","22e0f7ed-9b46-4a75-9780-d9b66c245744",NA,NA,NA,NA,NA,"6994","4034849",NA,"Lamar Jackson","lamar jackson","CB","NYJ","22.8","2020",NA,NA,"1998-04-13"
+"15126","41bc429b-f4c2-4edd-bbe1-9a36a178caeb",NA,NA,NA,NA,NA,"7068","3932336",NA,"Francis Bernard","francis bernard","LB","DAL","25.8","2020",NA,NA,"1995-04-08"
+"15127","cc5a9d21-10cd-4966-ad17-44edb238834d",NA,NA,NA,NA,NA,"7289","4038987",NA,"Doug Costin","doug costin","DT","JAC","23.3","2020",NA,NA,"1997-10-05"
+"15129","e8b1322a-6162-4535-b6af-4ca60ce8b09c",NA,NA,NA,NA,NA,"7200","4027919",NA,"Khalil Dorsey","khalil dorsey","CB","BAL","22.8","2020",NA,NA,"1998-03-31"
+"15130","d014789f-6cc0-435b-bd18-9faaf12ffd6e",NA,NA,NA,NA,NA,"7347","4040901",NA,"Juju Hughes","juju hughes","S","LAR","22.5","2020",NA,NA,"1998-07-19"
+"15131","bea5ccd6-b05b-43f8-975f-396399349a42",NA,NA,NA,NA,NA,"7251","3914450",NA,"Jovante Moffatt","jovante moffatt","S","CLE","24.1","2020",NA,NA,"1996-12-25"
+"15132","0cd46b5f-5397-4947-9331-8d3420af7852","00-0034125",NA,NA,NA,NA,"5470","3044732",NA,"Kendal Vickers","kendal vickers","DT","LVR","25.7","2018",NA,NA,"1995-05-23"
+"15133","3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0",NA,NA,NA,NA,NA,"7312","4038440",NA,"Madre Harper","madre harper","CB","NYG","23.3","2020",NA,NA,"1997-10-13"
+"15134","ba760d2d-a35a-4f9c-912d-05217aff53ab",NA,NA,NA,NA,NA,"7324","4365493",NA,"Jessie Lemonier","jessie lemonier","DE","LAC","24","2020",NA,NA,"1997-01-31"
+"15137","d6969476-95dc-42e4-9cd1-a1e8ae6973ff",NA,NA,NA,NA,NA,"7051","4035389",NA,"Grayland Arnold","grayland arnold","S","PHI","23.4","2020",NA,NA,"1997-09-04"
+"15140","d5dee97b-aa96-4fa6-868f-b6dc1f66245c","00-0035357",NA,NA,NA,NA,"6314","3916577",NA,"Cam Lewis","cam lewis","CB","BUF","23.8","2019",NA,NA,"1997-04-13"
+"15141","112b95ea-d080-4aa7-bedc-5755c6c6b80c",NA,NA,NA,NA,NA,"7451","4034496",NA,"Cam Gill","cam gill","LB","TBB","23.1","2020",NA,NA,"1997-12-14"
+"15142","74761bca-f09c-4a06-8dd4-5f3cf2a2b897",NA,NA,NA,NA,NA,"7188","4048718",NA,"Tyler Hall","tyler hall","CB","ATL","22.3","2020",NA,NA,"1998-10-31"
+"15146","e738f88d-6a49-4efd-b53e-d031bc8c5772","00-0034731",NA,NA,NA,NA,"5327","3915388",NA,"Kahlil McKenzie","kahlil mckenzie","DT","CIN","24.1","2018",NA,NA,"1997-01-03"
+"15147","dfdf250e-0457-4008-be27-a0be2a3ae5bd",NA,NA,NA,NA,NA,"7392","4243250",NA,"Javelin Guidry","javelin guidry","CB","NYJ","22.5","2020",NA,NA,"1998-08-06"
+"15148","3b1bb0da-607a-4502-8855-8ab5095334da",NA,NA,NA,NA,NA,"7224","4044133",NA,"Sam Franklin","sam franklin","S","CAR","25","2020",NA,NA,"1996-02-02"
+"15149","18a3fb57-3220-4fa3-af42-20e179ec896f",NA,NA,NA,NA,NA,"7279","4374496",NA,"DeMichael Harris","demichael harris","WR","IND","22.6","2020",NA,NA,"1998-07-12"
+"15151","0782b3a2-9693-40f6-aff2-a21bc8fa4c5d",NA,NA,NA,NA,NA,"7197","4036153",NA,"Kristian Welch","kristian welch","LB","BAL","22.7","2020",NA,NA,"1998-05-24"
+"15152","75513062-bfe5-4e32-af04-04a805c0fd8d",NA,NA,NA,NA,NA,"7398","4046605",NA,"Reggie Walker","reggie walker","LB","FA","24.8","2020",NA,NA,"1996-04-22"
+"15154","1f2c7574-f56a-47b3-bd75-5dd0d5ff8d93",NA,NA,NA,NA,NA,"7515",NA,NA,"Sergio Castillo","sergio castillo","PK","FA","30.3","2014",NA,NA,"1990-11-01"
+"15155","cec656f2-7a0b-4993-9489-7a0cef088c0f",NA,NA,NA,NA,NA,"7027","4040975",NA,"Jared Mayden","jared mayden","S","SFO","22.6","2020",NA,NA,"1998-06-24"
+"15156","eb626cc4-10ec-4385-933e-eea81e2dbfbc",NA,NA,NA,NA,NA,"7078","3915821",NA,"Tony Brown","tony brown","WR","WAS","23.5","2020",NA,NA,"1997-08-08"
+"15159","d7f79a32-6a28-4e14-bedf-6186dec771e6","00-0034318",NA,NA,NA,NA,"5572","3122690",NA,"Henry Mondeaux","henry mondeaux","DE","PIT","25.4","2018",NA,NA,"1995-09-19"
+"15160","959f035c-b8ce-45a3-bbe3-fda439c1e9f1",NA,NA,NA,NA,NA,"7271","3928920",NA,"Henry Black","henry black","S","GBP","24.1","2020",NA,NA,"1997-01-03"
+"15162","3267e534-526e-4db8-8e1f-49fc7ee8aedb","00-0035085",NA,NA,NA,NA,"6517","3128675",NA,"Randy Ramsey","randy ramsey","LB","GBP","25.4","2019",NA,NA,"1995-09-07"
+"15163","f4a5d12e-9169-4601-85e6-79bc99eab455","00-0035130",NA,NA,NA,NA,"6332","3909365",NA,"Dylan Mabin","dylan mabin","CB","MIN","23.4","2019",NA,NA,"1997-09-14"
+"15164","7af54f9d-0a09-45ce-b96c-a179bcbb11ca",NA,NA,NA,NA,NA,"6639","3147988",NA,"Terrell Bonds","terrell bonds","CB","FA","24.5","2019",NA,NA,"1996-07-22"
+"15165","e9746156-842c-475e-806d-4bcb26032e3b",NA,NA,NA,NA,NA,"6999","4035299",NA,"Benito Jones","benito jones","DT","MIA","23.2","2020",NA,NA,"1997-11-27"
+"15167","9c84646c-75d9-41f3-9cad-f3f002ca82a5",NA,NA,NA,NA,NA,"7208","3917159",NA,"Josh Thomas","josh thomas","S","BUF","24.2","2020",NA,NA,"1996-11-19"
+"15168","8dde622e-645e-4e89-85b1-a8aca7bdfd7e",NA,NA,NA,NA,NA,"7405","3917576",NA,"Michael Jacquet","michael jacquet","CB","PHI","24","2020",NA,NA,"1997-01-29"
+"15170","c1bbdfa3-5171-4018-a812-1dddacb3b421",NA,NA,NA,NA,NA,"6916","4240024",NA,"Stanford Samuels","stanford samuels","CB","GBP","21.9","2020",NA,NA,"1999-02-23"
+"15171","48efc038-96b7-4c63-a33c-41f6abe6d3de",NA,NA,NA,NA,NA,"7516",NA,NA,"Hunter Niswander","hunter niswander","PN","DAL","26","0",NA,NA,NA
+"15172","fb48038c-8f33-47a5-abb4-cda19f66c853",NA,NA,NA,NA,NA,"7055","4038539",NA,"Sewo Olonilua","sewo olonilua","RB","DAL","23.2","2020",NA,NA,"1997-11-27"
+"15173","a78206af-6d78-4b4c-90e3-dc4bd62ac80b",NA,NA,NA,NA,NA,"7443","4374269",NA,"Teair Tart","teair tart","DT","TEN","23.9","2020",NA,NA,"1997-02-28"
+"15176","528bf5c9-1d23-40c3-adda-df21f8f0e2ab",NA,NA,NA,NA,NA,"7169","3821572",NA,"Jace Whittaker","jace whittaker","CB","ARI","25.5","2020",NA,NA,"1995-07-16"
+"15177","7a51270b-cbdf-451e-a9e7-0f0b23435dd0",NA,NA,NA,NA,NA,"6946","4039010",NA,"Myles Bryant","myles bryant","CB","NEP","23.1","2020",NA,NA,"1998-01-02"
+"15179","14063f54-4935-4043-90f0-a6d2d6ab6143","00-0034463",NA,NA,NA,NA,"5179","3044706",NA,"Joe Ostman","joe ostman","DE","PHI","25.6","2018",NA,NA,"1995-07-12"
+"15180","56d8015b-aed7-4a46-868e-a85672cde790",NA,NA,NA,NA,NA,"7293","4361499",NA,"Luq Barcoo","luq barcoo","CB","JAC","22.5","2020",NA,NA,"1998-07-27"
+"15181","1e8293b4-25ec-479d-83b3-ef231d84ebca","00-0034948",NA,NA,"HoldAl01",NA,"6104","3117249",NA,"Alijah Holder","alijah holder","S","DEN","25","2019",NA,NA,"1996-01-26"
+"15183","0830e644-2d6e-446b-9da6-57d7e3472fcd",NA,NA,NA,NA,NA,"7210","3700815",NA,"Kendall Hinton","kendall hinton","QB","DEN","23.9","2020",NA,NA,"1997-02-19"
+"15185","b03240e5-759e-4e09-aa70-8fabe877f322",NA,NA,NA,NA,NA,"7381","4030955",NA,"Niko Lalos","niko lalos","DE","NYG","23.6","2020",NA,NA,"1997-06-25"
+"15186","8f36321c-c317-40ce-ae09-fca8694083b4",NA,NA,NA,NA,NA,"7281","4041572",NA,"Kameron Cline","kameron cline","DT","IND","22.9","2020",NA,NA,"1998-02-19"
+"15187","8de972e7-c997-4444-83a5-10f975d4fff6","00-0035210",NA,NA,NA,NA,"6640","3919107",NA,"Herb Miller","herb miller","CB","TBB","23.2","2019",NA,NA,"1997-11-11"
+"15189","1c1c956f-0f4c-4b22-98f2-6bbbd5e4a504",NA,NA,NA,NA,NA,"7194","3895837",NA,"Aaron Crawford","aaron crawford","DT","BAL","23.2","2020",NA,NA,"1997-11-04"
+"15191","b80be347-fd65-4a40-bdad-e11c75bded39",NA,NA,NA,NA,NA,"7259","4030779",NA,"Bobby Price","bobby price","S","DET","22.8","2020",NA,NA,"1998-04-25"
+"15194","ae372a9d-6f85-4e37-a910-47fd77483ebc",NA,NA,NA,NA,NA,"7329","4036959",NA,"Cole Christiansen","cole christiansen","LB","LAC","23.5","2020",NA,NA,"1997-07-30"
+"15195","96d75855-2d83-4e13-b395-846d6aaaadec",NA,NA,NA,NA,NA,"6933","3929834",NA,"Raequan Williams","raequan williams","DT","PHI","24","2020",NA,NA,"1997-02-14"
+"15197","66d74e2b-9a7f-406f-97db-b5b82f0c4cd2",NA,NA,NA,NA,NA,"7170","3911073",NA,"Jarren Williams","jarren williams","CB","NYG","23.5","2020",NA,NA,"1997-07-18"
+"15198","ac84c815-7ed4-49b2-b84a-08cf6c016eb5","00-0035422",NA,NA,NA,NA,"6243","3915255",NA,"Chris Westry","chris westry","CB","BAL","23.6","2019",NA,NA,"1997-07-10"
+"15199","9b747474-db7f-4137-a559-38402c828139",NA,NA,NA,NA,NA,"6975","3919607",NA,"Darrion Daniels","darrion daniels","DT","SFO","23.2","2020",NA,NA,"1997-12-04"
+"15200","52766d25-2e8b-408f-ba3c-2ef9c3d082dc",NA,NA,NA,NA,NA,"7518",NA,NA,"Taylor Russolino","taylor russolino","PK","DEN","31.7","2019",NA,NA,"1989-05-23"
+"15201","d0dcbe53-8c71-4488-b468-785a756ee489",NA,NA,NA,NA,NA,"6266","4039292",NA,"Alex Myres","alex myres","CB","DET","24.8","2019",NA,NA,"1996-04-20"
+"15202","2d233d49-fca4-4ddf-a73d-21f4451ce3fc",NA,NA,NA,NA,NA,"7276","3911982",NA,"Auzoyah Alufohai","auzoyah alufohai","DT","HOU","24.3","2020",NA,NA,"1996-10-16"
+"15203","299cb403-1cea-48da-baaa-b55510a6b78b",NA,NA,NA,NA,NA,"7364","3892773",NA,"Blake Lynch","blake lynch","LB","MIN","24","2020",NA,NA,"1997-02-14"
+"15204","4c577f09-a082-43f8-b249-c821350302dc",NA,NA,NA,NA,NA,"7046","3917012",NA,"JR Reed","jr reed","S","LAR","24.9","2020",NA,NA,"1996-03-11"
+"15206","f1236815-5ed7-4bab-808f-700c4516fd7d",NA,NA,NA,NA,NA,"7244","3917569",NA,"JaMarcus Bradley","jamarcus bradley","WR","CLE","24.1","2020",NA,NA,"1996-12-11"
+"15208","877c9dd4-a60d-4b8a-865c-ab46fb2efefc",NA,NA,NA,NA,NA,"7302","4043618",NA,"Omari Cobb","omari cobb","LB","KCC","23.7","2020",NA,NA,"1997-05-31"
+"15209","c9b2e966-bdfb-4ccb-be3c-42473f63929b","00-0035393",NA,NA,NA,NA,"6645","3910754",NA,"Anthony Chesley","anthony chesley","CB","IND","24.7","2019",NA,NA,"1996-05-31"
+"15210","75741cd3-8b9f-445f-b24e-47c8c51de618",NA,NA,NA,NA,NA,"7474","4040621",NA,"Keandre Jones","keandre jones","LB","CIN","23.4","2020",NA,NA,"1997-09-24"
+"15212","bab100c6-1a6c-4411-9286-f719244f5d35",NA,NA,NA,NA,NA,"7325","3915990",NA,"Joe Gaziano","joe gaziano","DE","LAC","24.3","2020",NA,NA,"1996-09-27"
+"15213","21a33144-63ee-4125-ac44-3fc911a39d50","00-0035436",NA,NA,NA,NA,"6233","3121378",NA,"Matt Sokol","matt sokol","TE","LAC","25.2","2019",NA,NA,"1995-11-09"
+"15214","921d49c2-64d1-4108-a3a3-0c237e17748a",NA,NA,NA,NA,NA,"7502","4036129",NA,"Dominique Dafney","dominique dafney","TE","GBP","23.7","2020",NA,NA,"1997-06-03"
+"15216","de41a84a-9f98-42c3-b35e-7c99b0ffa5c7","00-0035462",NA,NA,NA,NA,"6335","4241221",NA,"Walter Palmore","walter palmore","DT","DAL","24.5","2019",NA,NA,"1996-08-09"
+"15217","17a17a1a-787d-46b3-94c0-8d4e1928c492",NA,NA,NA,NA,NA,"7459","3915508",NA,"Rashod Berry","rashod berry","TE","NEP","24.3","2020",NA,NA,"1996-10-14"
+"15220","aae9da80-c88f-4de3-b088-42553cf351ce",NA,NA,NA,NA,NA,"7203","4040629",NA,"Antonio Williams","antonio williams","RB","BUF","23.3","2020",NA,NA,"1997-10-22"
+"15222","70ce9a98-8dbf-4e16-a20d-f3cfb76e70d7","00-0035135",NA,NA,NA,NA,"6321","3914553",NA,"Tim Ward","tim ward","DE","KCC","23.5","2019",NA,NA,"1997-08-11"
+"15224","da92303d-1419-4cde-aa52-b120635f364a",NA,NA,NA,NA,NA,"7352","4041703",NA,"Matt Cole","matt cole","WR","SFO","24.2","2020",NA,NA,"1996-11-07"
+"15225","8782ad19-a41a-455d-84f9-aa64f7038ee6",NA,NA,NA,NA,NA,"7406","4036924",NA,"Elijah Riley","elijah riley","CB","PHI","22.6","2020",NA,NA,"1998-06-12"
+"15226","7dcdf083-2f41-4788-a668-000cbfd1c8b1",NA,NA,NA,NA,NA,"7491","4036138",NA,"Cedrick Lattimore","cedrick lattimore","DT","SEA","23","2020",NA,NA,"1998-02-06"
+"15228","3f6d588b-dfcb-4758-95f0-545f61ddf275","00-0034944",NA,NA,NA,NA,"5952","2971641",NA,"Chase Hansen","chase hansen","LB","NOS","27.7","2019",NA,NA,"1993-05-20"
+"2842","9ecf8040-10f9-4a5c-92da-1b4d77bd6760","00-0016919","9004",NA,NA,NA,"120","1097","2074","Adam Vinatieri","adam vinatieri","PK","FA","48.1","1996",NA,NA,"1972-12-28"
+"4397","f611f87a-1e49-4196-9088-8c760f26006d","00-0030741",NA,NA,NA,NA,"2174","17223",NA,"Roosevelt Nix","roosevelt nix","RB","FA","28.8","2014",NA,NA,"1992-03-30"
+"4925","bb5957e6-ce7d-47ab-8036-22191ffc1c44","00-0020531","9200","127",NA,NA,"289","2580","325","Drew Brees","drew brees","QB","NOS","42","2001","2","1","1979-01-15"
+"5848","41c44740-d0f6-44ab-8347-3b5d515e5ecf","00-0019596","9603","119","BradTo00","tom-brady-1","167","2330","309","Tom Brady","tom brady","QB","TBB","43.5","2000","6","199","1977-08-03"
+"6254","30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8","00-0032848",NA,NA,NA,NA,"3527","2977742",NA,"Kevin Peterson","kevin peterson","CB","ARI","26.9","2016",NA,NA,"1994-03-22"
+"6589","a261fd0a-b096-4db7-bd51-2f13bde485da","00-0021206",NA,NA,"McCoJo01","josh-mccown-1","208","3609",NA,"Josh McCown","josh mccown","QB","HOU","41.6","2002","3","81","1979-07-04"
+"6789","218d1644-603e-4da3-9ce1-48ce3927494f","00-0020578","9434",NA,"bryanmat01",NA,"127","4333","2376","Matt Bryant","matt bryant","PK","FA","45.7","2002",NA,NA,"1975-05-29"
+"6938","acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29","00-0022161",NA,NA,"SuggTe99","terrell-suggs-1","296","4468","1566","Terrell Suggs","terrell suggs","LB","FA","38.3","2003","1","10","1982-10-11"
+"6997","e38c9b1b-7c51-48a2-ac1d-a752502e8930","00-0022127",NA,NA,"WittJa00","jason-witten-1","23","4527",NA,"Jason Witten","jason witten","TE","LVR","38.7","2003","3","69","1982-05-06"
+"7391","6cb6226e-f08c-4192-95f1-69709ed686c6","00-0022803",NA,NA,NA,NA,"188","5526",NA,"Eli Manning","eli manning","QB","FA","40.1","2004","1","1","1981-01-03"
+"7393","b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5","00-0022921","9383","374","FitzLa00","larry-fitzgerald-1","223","5528","1732","Larry Fitzgerald","larry fitzgerald","WR","ARI","37.4","2004","1","3","1983-08-31"
+"7394","e47706c7-e14d-41fb-b13b-83a835a1f3bc","00-0022942","9509",NA,"RivePh00","philip-rivers-1","331","5529",NA,"Philip Rivers","philip rivers","QB","FA","39.1","2004","1","4","1981-12-08"
+"7401","ea357add-1a41-4a8b-8f34-bbfade7f4d98","00-0022924","9039","1006","RoetBe00","ben-roethlisberger-1","138","5536","394","Ben Roethlisberger","ben roethlisberger","QB","PIT","38.9","2004","1","11","1982-03-02"
+"7422","d81844de-54c3-42ee-9850-072dc4131b6f","00-0022943",NA,NA,"WatsBe00","benjamin-watson-1","663","5557",NA,"Ben Watson","ben watson","TE","FA","40.1","2004","1","32","1980-12-18"
+"7480","1f09583f-dcc1-43e8-a7fc-f063d2c96508","00-0022787",NA,NA,"SchaMa00","matt-schaub-1","178","5615",NA,"Matt Schaub","matt schaub","QB","FA","39.6","2004","3","90","1981-06-25"
+"7578","edaad8e3-62cd-4715-b225-0010ee9825a0","00-0022824",NA,NA,"LeexAn20","andy-lee-1","112","5713",NA,"Andy Lee","andy lee","PN","ARI","38.5","2004","6","188","1982-08-11"
+"7757","0f0ff562-af1c-4be8-8011-1f71e8441e00","00-0022247",NA,NA,"AdamMi21",NA,"74","5893",NA,"Mike Adams","mike adams","S","FA","39.9","2004",NA,NA,"1981-03-24"
+"7813","2fda010a-8c62-4c07-b601-4ba03f57e6af","00-0023436","9012",NA,"SmitAl03","alex-smith-3","268","8416","3356","Alex Smith","alex smith","QB","WAS","36.7","2005","1","1","1984-05-07"
+"7826","c8af316c-0e46-41ab-bce5-e63a1730c356","00-0023448",NA,NA,"DaviTh20","thomas-davis-1","187","8429",NA,"Thomas Davis","thomas davis","LB","WAS","37.9","2005","1","14","1983-03-22"
+"7836","0ce48193-e2fa-466e-a986-33f751add206","00-0023459","9001","1004","RodgAa00","aaron-rodgers-1","96","8439","3452","Aaron Rodgers","aaron rodgers","QB","GBP","37.2","2005","1","24","1983-12-02"
+"7859","e017e12b-07a7-4a35-b837-2faa9ffe3ce8","00-0023482",NA,NA,"nugenmik01","mike-nugent-1","658","8461",NA,"Mike Nugent","mike nugent","PK","ARI","38.9","2005","2","47","1982-03-02"
+"7877","6a2b129d-a9e5-4131-b491-82269b323f77","00-0023500",NA,NA,"GoreFr00","frank-gore-1","232","8479","2848","Frank Gore","frank gore","RB","NYJ","37.7","2005","3","65","1983-05-14"
+"7911","cdf8908a-7092-4054-a49c-a9884211aaa1","00-0023534",NA,NA,"ColqDu20","dustin-colquitt-1","330","8513",NA,"Dustin Colquitt","dustin colquitt","PN","KCC","38.7","2005","3","99","1982-05-06"
+"7942","15b156b5-30cc-4070-b60a-1c09e62c5a9b","00-0023564",NA,NA,NA,NA,"246","8544",NA,"Darren Sproles","darren sproles","RB","FA","37.6","2005","4","29","1983-06-20"
+"8062","0742d2ea-1cf2-49a6-a150-77ba6e034d8c","00-0023682","9545",NA,NA,NA,"333","8664","3011","Ryan Fitzpatrick","ryan fitzpatrick","QB","MIA","38.2","2005","7","36","1982-11-24"
+"8153","abd73d50-ce60-47f1-b37f-2f9a05b0d7b9","00-0023252","9534","439","gouldrob01",NA,"49","9354",NA,"Robbie Gould","robbie gould","PK","SFO","38.2","2005",NA,NA,"1982-12-06"
+"8247","0a95e792-6455-4927-9539-f95fa7f41fbb","00-0024221",NA,NA,"DaviVe00","vernon-davis-1","200","9592",NA,"Vernon Davis","vernon davis","TE","FA","37","2006","1","6","1984-01-31"
+"8265","06dab231-dbbd-4ccb-8233-3c2d70318ee3","00-0024239",NA,NA,"JoseJo20",NA,"172","9610","4575","Johnathan Joseph","johnathan joseph","CB","ARI","36.8","2006","1","24","1984-04-16"
+"8269","9c21e9af-681c-41ef-9b00-fbc9e1668ed1","00-0024243",NA,NA,"LewiMa00","marcedes-lewis-1","111","9614","4007","Marcedes Lewis","marcedes lewis","TE","GBP","36.7","2006","1","28","1984-05-19"
+"8359","a527b7db-0b52-4379-9e4c-2e08c1fe1bed","00-0024333","9573",NA,"GostSt20","stephen-gostkowski-1","110","9704","3986","Stephen Gostkowski","stephen gostkowski","PK","TEN","37","2006","4","118","1984-01-28"
+"8364","6a3bcfd5-a855-4173-a2aa-94e2c77c8268","00-0024338",NA,NA,"PekoDo20","domata-peko-1","236","9709",NA,"Domata Peko","domata peko","DT","ARI","36.2","2006","4","123","1984-11-27"
+"8416","ccce5e8e-52ca-4f0f-a40f-fe5e7227d156","00-0024389",NA,NA,"WalkHu00",NA,"284","9761","4353","Delanie Walker","delanie walker","TE","FA","36.5","2006","6","175","1984-08-12"
+"8444","544e4159-3da3-47ad-866c-bf48d7634f25","00-0024417",NA,NA,"KochSa20","sam-koch-1","13","9789",NA,"Sam Koch","sam koch","PN","BAL","38.5","2006","6","203","1982-08-13"
+"8448","7a2612f3-ea18-444c-95ee-f1ca597d6fb0","00-0024421",NA,NA,"BethAn20",NA,"88","9793",NA,"Antoine Bethea","antoine bethea","S","FA","36.6","2006","6","207","1984-07-07"
+"8658","ab58c0ac-a747-47e6-9b3c-505e41d2bd3d","00-0025394","9006","925","PeteAd01","adrian-peterson-1","184","10452",NA,"Adrian Peterson","adrian peterson","RB","DET","35.9","2007","1","7","1985-03-21"
+"8670","82bce0be-9a87-4b6d-a85b-623bf8d1674e","00-0025399",NA,NA,"LyncMa00","marshawn-lynch-1","745","10456",NA,"Marshawn Lynch","marshawn lynch","RB","FA","34.8","2007","1","12","1986-04-22"
+"8673","3aef6950-1c19-4454-a3d0-0afe9634ea9f","00-0025396",NA,NA,"GinnTe00","ted-ginn-jr-1","695","10453","4710","Ted Ginn","ted ginn","WR","FA","35.8","2007","1","9","1985-04-12"
+"8687","587d0a98-7ec5-45a5-adba-8af26e8f256b","00-0025418","9238",NA,"OlseGr00","greg-olsen-1","58","10475",NA,"Greg Olsen","greg olsen","TE","SEA","35.9","2007","1","31","1985-03-11"
+"8712","22fb2b54-4936-4e8a-a48d-62096c0c9bb1","00-0025430",NA,NA,"StanDr00","drew-stanton-1","181","10487",NA,"Drew Stanton","drew stanton","QB","FA","36.7","2007","2","43","1984-05-07"
+"8713","26138e8b-b776-492a-9684-b1c07e51b25c","00-0025424",NA,NA,NA,NA,"290","10481",NA,"Eric Weddle","eric weddle","S","FA","36.1","2007","2","5","1985-01-04"
+"8721","1c5a8bd4-1b02-458e-943d-c391d3f0258e","00-0025472",NA,NA,"MebaBr99","brandon-mebane-1","6","10529",NA,"Brandon Mebane","brandon mebane","DT","FA","36","2007","3","85","1985-01-15"
+"8742","e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8","00-0025580","9433",NA,"CrosMa20","mason-crosby-1","59","10636","4715","Mason Crosby","mason crosby","PK","GBP","36.4","2007","6","193","1984-09-03"
+"8851","b37c621e-1125-4c35-bea0-fcabb1527060","00-0025565",NA,NA,"FolkNi20","nick-folk-1","650","10621",NA,"Nick Folk","nick folk","PK","NEP","36.2","2007","6","178","1984-11-05"
+"8930","67f5e782-f91c-4536-9818-cf4a0e7e821d","00-0023853","9443","1390",NA,NA,"17","11122",NA,"Matt Prater","matt prater","PK","DET","36.5","2006",NA,NA,"1984-08-10"
+"8944","76d7615e-8eb5-4761-b6a6-1e895d01baf3","00-0025708",NA,NA,"MoorMa01",NA,"233","11128",NA,"Matt Moore","matt moore","QB","KCC","36.5","2007",NA,NA,"1984-08-09"
+"8951","38a7122f-5c9d-4b65-99bc-b9822f9d981a","00-0023259",NA,NA,NA,NA,"678","9424",NA,"Lorenzo Alexander","lorenzo alexander","LB","FA","37.7","2006",NA,NA,"1983-05-31"
+"8958","640710b9-72f2-47e1-9afa-f3070b23c119","00-0024061",NA,NA,NA,NA,"146","5432",NA,"Tramon Williams","tramon williams","CB","GBP","37.9","2006",NA,NA,"1983-03-16"
+"9028","7979b613-6dbf-4534-8166-6430433c1ec3","00-0024183",NA,NA,NA,NA,"242","10913","4012","Brent Grimes","brent grimes","CB","FA","37.5","2006",NA,NA,"1983-07-19"
+"9051","0333b8f0-3aab-45aa-a684-6d402a309413","00-0026190",NA,NA,"CampCa99","calais-campbell-1","125","11284","5317","Calais Campbell","calais campbell","DE","BAL","34.4","2008","2","50","1986-09-01"
+"9064","64797df2-efd3-4b27-86ee-1d48f7edb09f","00-0026158",NA,NA,"FlacJo00","joe-flacco-1","19","11252",NA,"Joe Flacco","joe flacco","QB","NYJ","36","2008","1","18","1985-01-16"
+"9073","f55053e4-4bfd-495d-981a-d62e3662f01b","00-0026197",NA,NA,"HennCh01","chad-henne-1","89","11291","5343","Chad Henne","chad henne","QB","KCC","35.6","2008","2","57","1985-07-02"
+"9075","3e618eb6-41f2-4f20-ad70-2460f9366f43","00-0026189","9186","1357","JackDe00","desean-jackson-1","147","11283",NA,"DeSean Jackson","desean jackson","WR","PHI","34.2","2008","2","49","1986-12-01"
+"9097","c881b179-070d-4289-909f-4d3594abbd79","00-0026156",NA,NA,"RodgDo99",NA,"95","11250",NA,"Dominique Rodgers-Cromartie","dominique rodgers-cromartie","CB","FA","34.8","2008","1","16","1986-04-07"
+"9099","7e648a0b-fdc8-4661-a587-5826f2cac11b","00-0026143","9444","1342","RyanMa00","matt-ryan-1","24","11237","5371","Matt Ryan","matt ryan","QB","ATL","35.7","2008","1","3","1985-05-17"
+"9103","5927b542-db0f-445f-b6cd-eb8c9e80c427","00-0026160",NA,NA,"TaliAq99","aqib-talib-1","180","11254",NA,"Aqib Talib","aqib talib","CB","FA","35","2008","1","20","1986-02-13"
+"9188","23893852-6ef4-48a9-99a0-c51f41670508","00-0026280",NA,NA,"CarrBr99",NA,"105","11363","5441","Brandon Carr","brandon carr","CB","FA","34.7","2008","5","140","1986-05-19"
+"9191","85a051d3-3f76-411d-a59e-82d04a971c3a","00-0026283",NA,NA,"ScanOr99","orlando-scandrick-1","266","11366","5528","Orlando Scandrick","orlando scandrick","CB","FA","34","2008","5","143","1987-02-10"
+"9200","9d404288-65c5-414f-8ea5-ceb97eccaea0","00-0026293",NA,NA,NA,NA,"312","11387",NA,"Matt Slater","matt slater","WR","NEP","35.4","2008","5","18","1985-09-09"
+"9250","a824d9ff-12a4-4ed2-812d-404b0b4e52f9","00-0026345",NA,NA,"GarcPi00",NA,"269","11439","5381","Pierre Garcon","pierre garcon","WR","FA","34.5","2008","6","205","1986-08-08"
+"9308","973bfe3c-6d0d-4130-a79c-f860650b1da6","00-0026035","9146",NA,NA,NA,"491","11674","5595","Danny Amendola","danny amendola","WR","DET","35.2","2008",NA,NA,"1985-11-02"
+"9310","9aec0e35-cef7-4093-8de6-49868ca8644b","00-0025825",NA,NA,"KernBr20",NA,"497","11555",NA,"Brett Kern","brett kern","PN","TEN","35","2008",NA,NA,"1986-02-17"
+"9319","40cda44b-2ee3-4ad1-834e-995e30db84d4","00-0025944","9581",NA,NA,NA,"775","11923",NA,"Steven Hauschka","steven hauschka","PK","FA","35.6","2008",NA,NA,"1985-06-29"
+"9330","e9b4a5be-80ed-4e00-9db3-6ee69e32b529","00-0025828",NA,NA,"WoodWe20",NA,"210","11609","5575","Wesley Woodyard","wesley woodyard","LB","FA","34.5","2008",NA,NA,"1986-07-21"
+"9425","2d23b5d1-fbee-41df-bd6f-dd984d03a4d1","00-0023368",NA,NA,"WakeCa00",NA,"342","12417","6351","Cameron Wake","cameron wake","LB","FA","39","2009",NA,NA,"1982-01-30"
+"9427","fe767946-236d-4c04-9c59-5e3edd51acfe","00-0026986",NA,NA,"CrabMi00","michael-crabtree-1","455","12563",NA,"Michael Crabtree","michael crabtree","WR","FA","33.4","2009","1","10","1987-09-14"
+"9430","0a4c5237-08a4-41d5-873d-18f70c025149","00-0026990",NA,NA,"JenkMa99","malcolm-jenkins-1","444","12426","6051","Malcolm Jenkins","malcolm jenkins","S","NOS","33.1","2009","1","14","1987-12-20"
+"9431","ade43b1a-0601-4672-83b6-d246bc066a19","00-0026498","9451","1664","StafMa00","matthew-stafford-1","421","12483","6038","Matthew Stafford","matthew stafford","QB","DET","33","2009","1","1","1988-02-07"
+"9441","3752af7b-f40d-4f82-8072-4fb84d15090d",NA,NA,NA,"HarvPe00","percy-harvin-1","429","12569",NA,"Percy Harvin","percy harvin","WR","FA","32.7","2009","1","22","1988-05-28"
+"9448","166292fc-629e-4c7b-b7bf-f572ca9eeb43","00-0027029","9398","1645","McCoLe01","lesean-mccoy-1","676","12514",NA,"LeSean McCoy","lesean mccoy","RB","TBB","32.6","2009","2","53","1988-07-12"
+"9464","b5a6d6f3-73a9-4d70-bfa1-786bf166d14c","00-0027002",NA,NA,"MattCl99","clay-matthews-1","425","12438","6063","Clay Matthews","clay matthews","LB","FA","34.7","2009","1","26","1986-05-14"
+"9465","64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2","00-0027010",NA,NA,"ChunPa99","patrick-chung-1","343","12527",NA,"Patrick Chung","patrick chung","S","NEP","33.5","2009","2","34","1987-08-19"
+"9474","3b7a1409-d154-4e5c-8c94-9d4a0e0993c7","00-0027061","9265","1658","CookJa02","jared-cook-2","367","12537","6126","Jared Cook","jared cook","TE","NOS","33.8","2009","3","89","1987-04-07"
+"9525","b37b5be9-4771-4368-988f-fb936f4fc0ad","00-0026901",NA,NA,"WallMi00","mike-wallace-1","365","12601","6121","Mike Wallace","mike wallace","WR","FA","34.5","2009","3","84","1986-08-01"
+"9577","d14302ef-0224-4c92-961a-6d10452936ff","00-0027103",NA,NA,"HubeKe20","kevin-huber-1","353","12669",NA,"Kevin Huber","kevin huber","PN","CIN","35.5","2009","5","142","1985-07-16"
+"9596","e5371625-0c83-4f1f-9252-c7e0b6bc616e","00-0027114",NA,NA,"MorsTh00","thomas-morstead-1","445","12701",NA,"Thomas Morstead","thomas morstead","PN","NOS","34.9","2009","5","164","1986-03-08"
+"9633","7c73efae-bf01-4226-a2f8-ec6243da9b99","00-0027136",NA,NA,"McCoJa99","jason-mccourty-1","368","12691","6240","Jason McCourty","jason mccourty","CB","NEP","33.5","2009","6","203","1987-08-13"
+"9662","2bb70d56-a79a-4fa1-ae37-99858a3ffd55","00-0027150","9332","1708","EdelJu00","julian-edelman-1","344","12649","6269","Julian Edelman","julian edelman","WR","NEP","34.7","2009","7","232","1986-05-22"
+"9679","c3b6a5da-b9a5-415a-8239-1fd92dd34b80","00-0026964",NA,NA,"McDoCl99","clinton-mcdonald-1","757","12692","6286","Clinton McDonald","clinton mcdonald","DT","FA","34.1","2009","7","249","1987-01-06"
+"9686","ecc4f0c1-64e0-46cc-9b58-91c2b215e62a","00-0026968","9549",NA,"SuccRy44","ryan-succop-1","391","12731",NA,"Ryan Succop","ryan succop","PK","TBB","34.4","2009","7","256","1986-09-19"
+"9694","63f8a401-f308-4463-9d0b-4335b98da682","00-0026858","9232",NA,"GanoGr44",NA,"503","12460","6304","Graham Gano","graham gano","PK","NYG","33.8","2009",NA,NA,"1987-04-09"
+"9706","0045a36c-f464-49e0-a25a-9210edc94bc1","00-0026544",NA,NA,NA,NA,"490","12471","6353","Chase Daniel","chase daniel","QB","DET","34.3","2009",NA,NA,"1986-10-07"
+"9712","26164d5b-1e27-445d-8684-67b80e576567","00-0026516",NA,NA,NA,NA,"385","12773",NA,"Britton Colquitt","britton colquitt","PN","MIN","35.9","2009",NA,NA,"1985-03-20"
+"9714","af4ba620-2f00-4b00-9111-7897f2b1cde8","00-0026625",NA,NA,"HoyeBr00",NA,"345","12477","6324","Brian Hoyer","brian hoyer","QB","NEP","35.3","2009",NA,NA,"1985-10-31"
+"9749","485369eb-3586-4aa2-9628-77d954f23da3","00-0026618",NA,NA,"BennMi99",NA,"495","12762",NA,"Michael Bennett","michael bennett","DE","FA","35.2","2009",NA,NA,"1985-11-13"
+"9815","f0f60621-a075-41f6-a07d-74fd9e1348f2","00-0027855",NA,NA,"SuhxNd99","ndamukong-suh-1","594","13234","6579","Ndamukong Suh","ndamukong suh","DT","TBB","34.1","2010","1","2","1987-01-06"
+"9816","6e8964e3-bc64-4cff-acdf-b984f9b28811","00-0027858",NA,NA,"BerrEr99","eric-berry-1","563","13252","6556","Eric Berry","eric berry","S","FA","32.1","2010","1","5","1988-12-29"
+"9817","cc3640b0-7560-431f-84ab-599e9dc8cac6","00-0027854",NA,NA,NA,NA,"621","13197","6558","Sam Bradford","sam bradford","QB","FA","33.2","2010","1","1","1987-11-08"
+"9819","d2d8345f-8eaf-4f61-8df8-df6e808b6aec","00-0027856",NA,NA,"McCoGe99","gerald-mccoy-1","619","13240","6571","Gerald McCoy","gerald mccoy","DT","FA","32.9","2010","1","3","1988-02-25"
+"9820","3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9","00-0027860",NA,NA,"HadeJo99","joe-haden-1","531","13249","6564","Joe Haden","joe haden","CB","PIT","31.8","2010","1","7","1989-04-14"
+"9823","b84fb536-9705-45a9-b652-92a33578ac48","00-0027902","9681",NA,"BryaDe01","dez-bryant-1","574","13215",NA,"Dez Bryant","dez bryant","WR","BAL","32.2","2010","1","24","1988-11-04"
+"9825","e79d8a12-4ec0-46d3-ae42-384f16deebed","00-0027662",NA,NA,"DunlCa99","carlos-dunlap-1","529","13274","6606","Carlos Dunlap","carlos dunlap","DE","SEA","31.9","2010","2","54","1989-02-28"
+"9826","b3e41b52-a8aa-4be8-8513-8ede6f3f83d3","00-0027865",NA,NA,"GrahBr99","brandon-graham-1","583","13239","6562","Brandon Graham","brandon graham","DE","PHI","32.8","2010","1","13","1988-04-03"
+"9828","54475db4-f0e8-4513-bcc8-7e76362c19f7","00-0027701",NA,NA,"GrifEv99","everson-griffen-1","605","13373","6706","Everson Griffen","everson griffen","DE","DET","33.1","2010","4","100","1987-12-22"
+"9829","4094730d-a3ad-4c7e-a899-a3c8001748d9","00-0027866",NA,NA,"ThomEa99","earl-thomas-1","643","13251",NA,"Earl Thomas","earl thomas","S","FA","31.7","2010","1","14","1989-05-07"
+"9831","c88d9352-b835-45ed-a909-1cfec09a58bc","00-0027891","9683","1730","TateGo00","golden-tate-1","642","13217",NA,"Golden Tate","golden tate","WR","NYG","32.5","2010","2","60","1988-08-02"
+"9833","e56569f1-eaf4-473b-b92c-fc5c84cc7338","00-0027867",NA,NA,"PierJa99","jason-pierre-paul-1","720","13256","6575","Jason Pierre-Paul","jason pierre-paul","DE","TBB","31.9","2010","1","15","1989-02-28"
+"9841","24a847e7-8a4e-4123-967c-bd6145d9c3ec","00-0027882",NA,NA,"RobiPa99","patrick-robinson-1","617","13238","6577","Patrick Robinson","patrick robinson","CB","NOS","33.4","2010","1","32","1987-09-07"
+"9843","5707d2b0-ea9e-4a5e-8289-9d52197301d9","00-0027681",NA,NA,"LaFeBr00","brandon-lafell-1","613","12576","6619","Brandon LaFell","brandon lafell","WR","FA","34.2","2010","3","78","1986-11-04"
+"9846","88d2dbf4-3b9f-43ea-bac6-a8722cb24f43","00-0027647",NA,NA,"McCoDe99","devin-mccourty-1","518","13236","6570","Devin McCourty","devin mccourty","S","NEP","33.5","2010","1","27","1987-08-13"
+"9853","f40e0707-1bf5-44d4-b447-7c03255aa423","00-0027881",NA,NA,"HughJe99","jerry-hughes-1","550","13245",NA,"Jerry Hughes","jerry hughes","DE","BUF","32.5","2010","1","31","1988-08-13"
+"9861","f7b49d9d-2ce4-459f-8065-fa3b52d28069","00-0027872",NA,NA,"JackKa99","kareem-jackson-1","544","13254","6567","Kareem Jackson","kareem jackson","S","DEN","32.8","2010","1","20","1988-04-10"
+"9864","409377a4-293c-4eee-a9d1-02a46449a540","00-0027676",NA,NA,"BurnMo99","morgan-burnett-1","597","13264","6595","Morgan Burnett","morgan burnett","S","FA","32","2010","3","71","1989-01-13"
+"9866","439874cf-4057-4a7b-922b-f77a90a5bba2","00-0027663",NA,NA,"LeexSe99","sean-lee-1","576","13284","6621","Sean Lee","sean lee","LB","DAL","34.5","2010","2","55","1986-07-22"
+"9868","2beaf8a8-ccf1-4500-a941-33ffc8141d60","00-0027720",NA,NA,"AtkiGe99","geno-atkins-1","528","13311","6655","Geno Atkins","geno atkins","DT","CIN","32.8","2010","4","120","1988-03-28"
+"9875","1aa8d83f-c084-4893-b9b0-b1296ec822f1","00-0027862",NA,NA,"AluaTy99","tyson-alualu-1","554","13233","6555","Tyson Alualu","tyson alualu","DE","PIT","33.7","2010","1","10","1987-05-12"
+"9884","6e444737-a1e1-4ddd-b963-cd6a9496fde0","00-0027874",NA,NA,"ThomDe03","demaryius-thomas-1","560","13216","6581","Demaryius Thomas","demaryius thomas","WR","FA","33.1","2010","1","22","1987-12-25"
+"9898","f5d20030-d934-45e3-8282-e34c6c83ad84","00-0027325",NA,NA,"BlouLe00",NA,"730","13213",NA,"LeGarrette Blount","legarrette blount","RB","FA","34.2","2010",NA,NA,"1986-12-05"
+"9899","3699dfd9-d437-43f7-b674-adbb31e7e64b","00-0027688",NA,NA,"McCoCo00","colt-mccoy-1","533","13199","6625","Colt McCoy","colt mccoy","QB","NYG","34.4","2010","3","85","1986-09-05"
+"9902","2142a164-48ad-47d6-bb27-0bc58c6b2e62","00-0027656","9721","1740","GronRo00","rob-gronkowski-1","515","13229",NA,"Rob Gronkowski","rob gronkowski","TE","TBB","31.7","2010","2","42","1989-05-14"
+"9904","6c48b2a7-924e-43ec-bcd9-f1cda06b2332","00-0027885",NA,NA,"JoseLi99","linval-joseph-1","579","13281","6617","Linval Joseph","linval joseph","DT","LAC","32.3","2010","2","46","1988-10-10"
+"9912","46bb9a85-523c-4530-95c3-2c2a9737e65f","00-0027675",NA,NA,"DickEd00","ed-dickson-1","701","13272","6604","Ed Dickson","ed dickson","TE","FA","33.5","2010","3","70","1987-07-25"
+"9917","c9fe00a2-7620-49f3-a744-7d04c5b30560","00-0027684",NA,NA,"MitcEa99","earl-mitchell-1","546","13288",NA,"Earl Mitchell","earl mitchell","DT","FA","33.4","2010","3","81","1987-09-25"
+"9918","fd4e8681-f2f4-47c7-b954-a72be9b1ca00","00-0027685","9707","1762","SandEm00","emmanuel-sanders-1","538","13295","6636","Emmanuel Sanders","emmanuel sanders","WR","NOS","33.9","2010","3","82","1987-03-17"
+"9919","a50e3085-370b-4fd2-b79a-28d3b9c5c1c7","00-0027686",NA,NA,"PeteCo00","corey-peters-1","608","13292",NA,"Corey Peters","corey peters","DT","ARI","32.6","2010","3","83","1988-06-08"
+"9921","9691f874-be36-4529-a7eb-dde22ee4a848","00-0027691",NA,NA,"RobeAn00",NA,"627","13226","6634","Andre Roberts","andre roberts","WR","BUF","33.1","2010","3","88","1988-01-09"
+"9925","fd85786d-3900-4dc0-9b30-334ee30413ed","00-0027696","9712",NA,"GrahJi00","jimmy-graham-1","616","13232","6610","Jimmy Graham","jimmy graham","TE","CHI","34.2","2010","3","95","1986-11-24"
+"9940","7011a0e7-f402-4bc0-bba3-b31d3613e47f","00-0027723",NA,NA,"WoodAl99","al-woods-2","754","13493","6806","Al Woods","al woods","DT","JAC","33.9","2010","4","123","1987-03-25"
+"9966","76f95387-3bc1-4756-a714-a4b1a93f23ff","00-0027762",NA,NA,"JoneRe99","reshad-jones-1","714","13395","6722","Reshad Jones","reshad jones","S","FA","32.9","2010","5","163","1988-02-25"
+"9988","16e33176-b73e-49b7-b0aa-c405b47a706e","00-0027793","9808",NA,"BrowAn04","antonio-brown-1","536","13934",NA,"Antonio Brown","antonio brown","WR","TBB","32.6","2010","6","195","1988-07-10"
+"9992","250199f2-1387-4b55-b96f-17fedea6db7f","00-0027796",NA,NA,"WebbJo00","joe-webb-2","606","13484",NA,"Joe Webb","joe webb","QB","NYG","34.2","2010","6","199","1986-11-14"
diff --git a/tests/testthat/gh_dynastyprocess/values-players.csv.txt b/tests/testthat/gh_dynastyprocess/values-players.csv.txt
new file mode 100644
index 00000000..6e875d56
--- /dev/null
+++ b/tests/testthat/gh_dynastyprocess/values-players.csv.txt
@@ -0,0 +1,565 @@
+"player","pos","team","age","draft_year","ecr_1qb","ecr_2qb","ecr_pos","value_1qb","value_2qb","scrape_date","fp_id"
+"Christian McCaffrey","RB","CAR",NA,NA,1,0.9,1,10256,10280,2021-01-31,"16393"
+"Saquon Barkley","RB","NYG",NA,NA,2.4,2.9,2.2,9917,9808,2021-01-31,"17240"
+"Dalvin Cook","RB","MIN",NA,NA,3.3,4.1,3.4,9719,9536,2021-01-31,"16374"
+"Alvin Kamara","RB","NOS",NA,NA,4.4,5.7,4,9462,9184,2021-01-31,"16421"
+"Davante Adams","WR","GBP",NA,NA,5,6.1,1,9336,9098,2021-01-31,"12123"
+"Jonathan Taylor","RB","IND",NA,NA,5.7,7.5,5,9181,8803,2021-01-31,"19217"
+"Derrick Henry","RB","TEN",NA,NA,7,9.2,5.6,8907,8459,2021-01-31,"15514"
+"Tyreek Hill","WR","KCC",NA,NA,9.3,12.1,2.8,8441,7901,2021-01-31,"15802"
+"Nick Chubb","RB","CLE",NA,NA,11,14.8,7,8108,7416,2021-01-31,"17246"
+"DeAndre Hopkins","WR","ARI",NA,NA,12,15.9,4.3,7920,7226,2021-01-31,"11606"
+"D.K. Metcalf","WR","SEA",NA,NA,12.7,16.8,4.8,7789,7075,2021-01-31,"18219"
+"A.J. Brown","WR","TEN",NA,NA,13.3,17.7,4.8,7683,6927,2021-01-31,"18218"
+"George Kittle","TE","SFO",NA,NA,14.1,21.1,1.8,7531,6395,2021-01-31,"16499"
+"Travis Kelce","TE","KCC",NA,NA,14.4,21.4,1.2,7480,6350,2021-01-31,"11594"
+"Stefon Diggs","WR","BUF",NA,NA,15.3,20.4,5.2,7331,6501,2021-01-31,"13981"
+"Justin Jefferson","WR","MIN",NA,NA,16.6,22.2,5.8,7113,6232,2021-01-31,"19236"
+"Ezekiel Elliott","RB","DAL",NA,NA,18.7,25.4,9.8,6765,5780,2021-01-31,"15498"
+"Aaron Jones","RB","GBP",NA,NA,20.6,28,11.6,6475,5438,2021-01-31,"16673"
+"D'Andre Swift","RB","DET",NA,NA,21.7,29.5,10.4,6304,5249,2021-01-31,"19210"
+"J.K. Dobbins","RB","BAL",NA,NA,23,31.3,12.4,6116,5032,2021-01-31,"19245"
+"Michael Thomas","WR","NOS",NA,NA,23.6,32.1,8,6034,4938,2021-01-31,"15528"
+"Josh Jacobs","RB","LVR",NA,NA,24.1,32.9,13.8,5954,4846,2021-01-31,"18269"
+"Miles Sanders","RB","PHI",NA,NA,24.9,33.9,12.4,5854,4734,2021-01-31,"18283"
+"Calvin Ridley","WR","ATL",NA,NA,25,34.2,8.3,5835,4701,2021-01-31,"17258"
+"Patrick Mahomes II","QB","KCC",NA,NA,25.3,4.2,1,5795,9513,2021-01-31,"16413"
+"Austin Ekeler","RB","LAC",NA,NA,26.3,35.8,14.8,5661,4527,2021-01-31,"16483"
+"Clyde Edwards-Helaire","RB","KCC",NA,NA,29.1,39.7,14.4,5294,4131,2021-01-31,"19325"
+"Chris Godwin","WR","TBB",NA,NA,29.3,40.3,11.2,5275,4073,2021-01-31,"16406"
+"Terry McLaurin","WR","WAS",NA,NA,30.3,41.8,12.2,5153,3932,2021-01-31,"18466"
+"CeeDee Lamb","WR","DAL",NA,NA,32,44.3,13.3,4950,3707,2021-01-31,"19202"
+"D.J. Moore","WR","CAR",NA,NA,32.1,44.5,13.5,4934,3690,2021-01-31,"17265"
+"Antonio Gibson","RB","WAS",NA,NA,32.3,44,14.2,4916,3734,2021-01-31,"19624"
+"Cam Akers","RB","LAR",NA,NA,32.3,44,14.4,4916,3734,2021-01-31,"19268"
+"Allen Robinson II","WR","CHI",NA,NA,33.1,45.9,14.3,4819,3571,2021-01-31,"12126"
+"Keenan Allen","WR","LAC",NA,NA,35.4,49.2,16,4567,3304,2021-01-31,"11616"
+"Darren Waller","TE","LVR",NA,NA,36.6,47.4,3.2,4446,3447,2021-01-31,"14104"
+"Kenny Golladay","WR","DET",NA,NA,36.9,51.3,16.7,4416,3145,2021-01-31,"16488"
+"Amari Cooper","WR","DAL",NA,NA,37.1,51.7,17.5,4387,3116,2021-01-31,"13894"
+"Mike Evans","WR","TBB",NA,NA,38,52.9,18.3,4299,3029,2021-01-31,"12119"
+"Tee Higgins","WR","CIN",NA,NA,40,55.8,19,4102,2829,2021-01-31,"19211"
+"James Robinson","RB","JAC",NA,NA,42,56.9,18.4,3913,2757,2021-01-31,"19631"
+"Joe Mixon","RB","CIN",NA,NA,42.7,57.8,17.8,3849,2700,2021-01-31,"16420"
+"David Montgomery","RB","CHI",NA,NA,44.3,59.9,18.4,3708,2570,2021-01-31,"18239"
+"Diontae Johnson","WR","PIT",NA,NA,45.3,63.4,22.8,3622,2367,2021-01-31,"18615"
+"Mark Andrews","TE","BAL",NA,NA,45.6,57.8,4.2,3598,2700,2021-01-31,"17269"
+"Courtland Sutton","WR","DEN",NA,NA,46.1,64.6,23.5,3550,2301,2021-01-31,"17253"
+"Kyler Murray","QB","ARI",NA,NA,47.6,10.8,3,3433,8146,2021-01-31,"18600"
+"Brandon Aiyuk","WR","SFO",NA,NA,48.4,67.8,22.7,3364,2134,2021-01-31,"19252"
+"Kareem Hunt","RB","CLE",NA,NA,51,68.3,21.4,3167,2109,2021-01-31,"16425"
+"Josh Allen","QB","BUF",NA,NA,51.7,12.1,3.2,3115,7901,2021-01-31,"17298"
+"Julio Jones","WR","ATL",NA,NA,53.9,75.3,24.7,2961,1789,2021-01-31,"9867"
+"Cooper Kupp","WR","LAR",NA,NA,53.9,75.3,26.3,2961,1789,2021-01-31,"16433"
+"Robert Woods","WR","LAR",NA,NA,55.1,77,27.2,2874,1719,2021-01-31,"11610"
+"Deshaun Watson","QB","HOU",NA,NA,56.6,13.6,4.8,2779,7628,2021-01-31,"16398"
+"Jerry Jeudy","WR","DEN",NA,NA,57.7,80.5,26.8,2705,1583,2021-01-31,"19201"
+"JuJu Smith-Schuster","WR","PIT",NA,NA,58.6,81.6,27.8,2651,1543,2021-01-31,"16427"
+"Dak Prescott","QB","DAL",NA,NA,59.6,14.7,4.3,2590,7433,2021-01-31,"15600"
+"Lamar Jackson","QB","BAL",NA,NA,59.9,14.8,5.3,2572,7416,2021-01-31,"17233"
+"D.J. Chark Jr.","WR","JAC",NA,NA,59.9,83.3,28.5,2572,1483,2021-01-31,"17292"
+"Chris Carson","RB","SEA",NA,NA,60.1,79.2,23.4,2555,1633,2021-01-31,"16754"
+"Chase Claypool","WR","PIT",NA,NA,60.6,84.3,27.8,2529,1448,2021-01-31,"18627"
+"Ronald Jones II","RB","TBB",NA,NA,63.7,83.4,24.2,2349,1479,2021-01-31,"17243"
+"Kenyan Drake","RB","ARI",NA,NA,65.1,85,26,2272,1425,2021-01-31,"15637"
+"T.J. Hockenson","TE","DET",NA,NA,65.3,80.2,4.8,2264,1595,2021-01-31,"18290"
+"Tyler Boyd","WR","CIN",NA,NA,66.1,91.4,30.5,2219,1226,2021-01-31,"15547"
+"Odell Beckham Jr.","WR","CLE",NA,NA,66.3,91.6,30.3,2211,1220,2021-01-31,"12127"
+"Tyler Lockett","WR","SEA",NA,NA,67,92.5,30.2,2175,1194,2021-01-31,"13971"
+"Melvin Gordon III","RB","DEN",NA,NA,67.9,88.1,26.8,2131,1324,2021-01-31,"13903"
+"Justin Herbert","QB","LAC",NA,NA,71.7,19,7.7,1947,6719,2021-01-31,"18635"
+"Adam Thielen","WR","MIN",NA,NA,73.1,100.1,34.3,1882,999,2021-01-31,"13429"
+"Will Fuller V","WR","HOU",NA,NA,75.4,102.8,34.3,1784,938,2021-01-31,"15629"
+"Noah Fant","TE","DEN",NA,NA,75.9,91.9,6.3,1766,1211,2021-01-31,"17527"
+"Joe Burrow","QB","CIN",NA,NA,77,21,7.5,1719,6410,2021-01-31,"19196"
+"Dallas Goedert","TE","PHI",NA,NA,77.3,93.4,8.7,1708,1169,2021-01-31,"17270"
+"Deebo Samuel","WR","SFO",NA,NA,79.3,107.4,36.5,1629,842,2021-01-31,"18244"
+"Raheem Mostert","RB","SFO",NA,NA,79.9,101.6,30,1607,964,2021-01-31,"14338"
+"Hunter Henry","TE","LAC",NA,NA,81.3,97.8,8.7,1554,1055,2021-01-31,"15561"
+"AJ Dillon","RB","GBP",NA,NA,82.4,104.4,28,1513,903,2021-01-31,"19358"
+"Russell Wilson","QB","SEA",NA,NA,85.1,24.3,9.3,1420,5932,2021-01-31,"11180"
+"James Conner","RB","PIT",NA,NA,85.6,107.9,30.2,1406,832,2021-01-31,"16447"
+"David Johnson","RB","HOU",NA,NA,85.9,108.2,30.6,1396,826,2021-01-31,"13948"
+"Marquise Brown","WR","BAL",NA,NA,89.1,118.5,39.2,1293,648,2021-01-31,"18226"
+"Zack Moss","RB","BUF",NA,NA,89.7,112.5,30.8,1275,746,2021-01-31,"19263"
+"Leonard Fournette","RB","TBB",NA,NA,89.9,112.6,31.8,1271,745,2021-01-31,"16378"
+"Aaron Rodgers","QB","GBP",NA,NA,90.4,26.5,10.3,1254,5633,2021-01-31,"9001"
+"DeVante Parker","WR","MIA",NA,NA,90.4,119.9,40.7,1254,627,2021-01-31,"13897"
+"Damien Harris","RB","NEP",NA,NA,90.6,113.4,32.2,1250,731,2021-01-31,"18230"
+"Jarvis Landry","WR","CLE",NA,NA,91.3,120.8,41.3,1229,614,2021-01-31,"12128"
+"Mike Gesicki","TE","MIA",NA,NA,91.4,108.6,9.7,1225,818,2021-01-31,"17272"
+"Michael Gallup","WR","DAL",NA,NA,91.4,121,40.7,1225,611,2021-01-31,"17259"
+"Myles Gaskin","RB","MIA",NA,NA,94,117.2,35.2,1153,668,2021-01-31,"17251"
+"Brandin Cooks","WR","HOU",NA,NA,94.3,124,41.3,1145,570,2021-01-31,"12122"
+"Devin Singletary","RB","BUF",NA,NA,94.4,117.6,34.4,1141,662,2021-01-31,"18280"
+"Laviska Shenault Jr.","WR","JAC",NA,NA,97.7,127.6,43.7,1057,523,2021-01-31,"19221"
+"Ryan Tannehill","QB","TEN",NA,NA,98.9,30,11.5,1029,5188,2021-01-31,"11174"
+"Jalen Reagor","WR","PHI",NA,NA,98.9,128.8,43,1029,509,2021-01-31,"19219"
+"Chase Edmonds","RB","ARI",NA,NA,101.3,125.1,35.4,971,555,2021-01-31,"17496"
+"Evan Engram","TE","NYG",NA,NA,101.9,119.5,11,959,633,2021-01-31,"16411"
+"Michael Pittman Jr.","WR","IND",NA,NA,106.3,136.4,45,864,426,2021-01-31,"19278"
+"Tarik Cohen","RB","CHI",NA,NA,107,131.2,37.6,849,481,2021-01-31,"16450"
+"Mike Williams","WR","LAC",NA,NA,107,137.1,46,849,419,2021-01-31,"16377"
+"Tua Tagovailoa","QB","MIA",NA,NA,107.1,33.5,13.3,847,4778,2021-01-31,"19198"
+"Baker Mayfield","QB","CLE",NA,NA,108.1,34,13.8,827,4723,2021-01-31,"17237"
+"Denzel Mims","WR","NYJ",NA,NA,110.6,140.7,46.2,781,385,2021-01-31,"19344"
+"Alexander Mattison","RB","MIN",NA,NA,111.6,136.1,38,763,429,2021-01-31,"18621"
+"Robby Anderson","WR","CAR",NA,NA,112,142.1,47,755,372,2021-01-31,"15688"
+"Irv Smith Jr.","TE","MIN",NA,NA,112.1,129.9,12.2,753,496,2021-01-31,"18610"
+"Jalen Hurts","QB","PHI",NA,NA,113.9,36.6,15.3,723,4443,2021-01-31,"19275"
+"Matthew Stafford","QB","DET",NA,NA,114.9,37.1,16.2,706,4391,2021-01-31,"9451"
+"Henry Ruggs III","WR","LVR",NA,NA,115.9,146,46.2,690,340,2021-01-31,"19207"
+"Corey Davis","WR","TEN",NA,NA,116.3,146.4,48.8,683,337,2021-01-31,"16385"
+"Curtis Samuel","WR","CAR",NA,NA,116.4,146.6,45.5,681,335,2021-01-31,"16434"
+"Nyheim Hines","RB","IND",NA,NA,117.3,142.1,41.6,667,372,2021-01-31,"17297"
+"Tony Pollard","RB","DAL",NA,NA,119.6,144.4,36.6,632,353,2021-01-31,"18705"
+"Christian Kirk","WR","ARI",NA,NA,125.1,155.2,52,555,274,2021-01-31,"17268"
+"Matt Ryan","QB","ATL",NA,NA,126.9,44,17.7,533,3734,2021-01-31,"9444"
+"Austin Hooper","TE","CLE",NA,NA,127.4,144.7,14.7,526,350,2021-01-31,"15581"
+"Kirk Cousins","QB","MIN",NA,NA,127.6,44.5,17.8,524,3690,2021-01-31,"11177"
+"Darius Slayton","WR","NYG",NA,NA,128.7,158.9,52.7,510,251,2021-01-31,"18706"
+"Sterling Shepard","WR","NYG",NA,NA,129.9,160,52.7,496,244,2021-01-31,"15569"
+"Darnell Mooney","WR","CHI",NA,NA,131.2,161.4,56.4,481,237,2021-01-31,"19810"
+"Logan Thomas","TE","WAS",NA,NA,131.3,148.3,14,480,322,2021-01-31,"12095"
+"Jonnu Smith","TE","TEN",NA,NA,131.9,148.8,16,474,318,2021-01-31,"16460"
+"Jared Goff","QB","LAR",NA,NA,133.3,48.6,19.2,458,3351,2021-01-31,"15501"
+"Darrell Henderson","RB","LAR",NA,NA,137.6,161.6,42,414,235,2021-01-31,"18588"
+"Tyler Higbee","TE","LAR",NA,NA,138,154.4,19,410,279,2021-01-31,"15623"
+"Zach Ertz","TE","PHI",NA,NA,139.9,156.1,20.5,392,268,2021-01-31,"11689"
+"Phillip Lindsay","RB","DEN",NA,NA,140.1,163.9,45,390,223,2021-01-31,"17498"
+"Robert Tonyan","TE","GBP",NA,NA,140.4,156.6,12.3,387,265,2021-01-31,"16502"
+"Jamison Crowder","WR","NYJ",NA,NA,141,171.4,56.8,382,187,2021-01-31,"13976"
+"Cole Kmet","TE","CHI",NA,NA,141.1,157.2,20.5,381,261,2021-01-31,"19229"
+"Carson Wentz","QB","PHI",NA,NA,143.1,55.3,22.8,363,2863,2021-01-31,"15520"
+"Le'Veon Bell","RB","KCC",NA,NA,144.1,167.4,47.2,355,205,2021-01-31,"11645"
+"Hayden Hurst","TE","ATL",NA,NA,144.3,159.9,16.7,354,245,2021-01-31,"17283"
+"Daniel Jones","QB","NYG",NA,NA,145.4,56.6,22.2,344,2777,2021-01-31,"18232"
+"James White","RB","NEP",NA,NA,147.3,170.1,51.8,330,193,2021-01-31,"12195"
+"Todd Gurley II","RB","ATL",NA,NA,148.4,171,46.8,321,189,2021-01-31,"13912"
+"Marvin Jones Jr.","WR","DET",NA,NA,148.7,179.2,57.2,319,156,2021-01-31,"11215"
+"Blake Jarwin","TE","DAL",NA,NA,149,164,19.3,317,223,2021-01-31,"16638"
+"Jeff Wilson Jr.","RB","SFO",NA,NA,151.2,173.4,47.4,301,178,2021-01-31,"18026"
+"Mecole Hardman","WR","KCC",NA,NA,153.9,184.2,60,282,138,2021-01-31,"18587"
+"Marlon Mack","RB","IND",NA,NA,157.9,179.1,51.2,257,156,2021-01-31,"16444"
+"Sony Michel","RB","NEP",NA,NA,158.1,179.4,48,255,155,2021-01-31,"17309"
+"J.D. McKissic","RB","WAS",NA,NA,159.2,180.3,50.4,249,152,2021-01-31,"16230"
+"Derek Carr","QB","LVR",NA,NA,159.3,61.9,21.7,249,2452,2021-01-31,"12092"
+"T.Y. Hilton","WR","IND",NA,NA,159.4,189.3,62.8,248,123,2021-01-31,"11206"
+"Eric Ebron","TE","PIT",NA,NA,161.6,174.5,21,236,174,2021-01-31,"12143"
+"Tom Brady","QB","TBB",NA,NA,162.6,63.2,22.7,230,2378,2021-01-31,"9603"
+"Parris Campbell","WR","IND",NA,NA,163.1,192.6,62,227,114,2021-01-31,"18463"
+"Preston Williams","WR","MIA",NA,NA,165.4,194.5,63.7,215,109,2021-01-31,"18612"
+"Jamaal Williams","RB","GBP",NA,NA,165.9,186.2,50.8,213,132,2021-01-31,"16424"
+"Rashaad Penny","RB","SEA",NA,NA,167,187.2,48.6,207,129,2021-01-31,"17308"
+"Ke'Shawn Vaughn","RB","TBB",NA,NA,170.6,190.4,51.6,191,120,2021-01-31,"19351"
+"Taysom Hill","QB","NOS",NA,NA,171.4,69.1,26.7,187,2070,2021-01-31,"17115"
+"John Brown","WR","BUF",NA,NA,173,200.7,63.7,180,94,2021-01-31,"12231"
+"Gabriel Davis","WR","BUF",NA,NA,173.8,201.3,68.6,177,93,2021-01-31,"19398"
+"Dawson Knox","TE","BUF",NA,NA,177.4,187.1,24.3,162,129,2021-01-31,"18631"
+"Sam Darnold","QB","NYJ",NA,NA,179,76.4,26.2,156,1744,2021-01-31,"17236"
+"La'Mical Perine","RB","NYJ",NA,NA,179.3,198.1,57,155,100,2021-01-31,"19333"
+"Joshua Kelley","RB","LAC",NA,NA,179.9,198.6,55.4,153,99,2021-01-31,"19445"
+"KJ Hamler","WR","DEN",NA,NA,180.3,206,68,152,83,2021-01-31,"19267"
+"Gus Edwards","RB","BAL",NA,NA,180.7,199.3,54.6,150,97,2021-01-31,"17687"
+"Jimmy Garoppolo","QB","SFO",NA,NA,180.9,78.2,27,150,1671,2021-01-31,"12208"
+"Latavius Murray","RB","NOS",NA,NA,183.1,201.4,54,142,92,2021-01-31,"11821"
+"Teddy Bridgewater","QB","CAR",NA,NA,187.1,84.1,27.5,129,1455,2021-01-31,"12088"
+"Anthony McFarland Jr.","RB","PIT",NA,NA,187.1,204.6,56.2,129,86,2021-01-31,"19366"
+"Bryan Edwards","WR","LVR",NA,NA,187.3,210.8,68.3,129,74,2021-01-31,"18634"
+"Adam Trautman","TE","NOS",NA,NA,187.6,194.8,22.2,128,108,2021-01-31,"19423"
+"Chris Herndon IV","TE","NYJ",NA,NA,188.7,195.6,25.2,125,106,2021-01-31,"17536"
+"Cole Beasley","WR","BUF",NA,NA,189.1,212,70.8,123,72,2021-01-31,"11459"
+"Kerryon Johnson","RB","DET",NA,NA,189.6,206.6,58,122,82,2021-01-31,"17247"
+"O.J. Howard","TE","TBB",NA,NA,189.9,196.5,23.8,121,104,2021-01-31,"16380"
+"Anthony Miller","WR","CHI",NA,NA,190.1,212.6,64.3,120,71,2021-01-31,"17255"
+"N'Keal Harry","WR","NEP",NA,NA,190.4,212.8,70.2,120,71,2021-01-31,"18222"
+"Allen Lazard","WR","GBP",NA,NA,193.7,214.8,72.8,111,67,2021-01-31,"17301"
+"Boston Scott","RB","PHI",NA,NA,198.4,213,60.2,99,70,2021-01-31,"17612"
+"Lynn Bowden Jr.","RB","MIA",NA,NA,200.9,214.5,61.2,94,68,2021-01-31,"19587"
+"Drew Lock","QB","DEN",NA,NA,204,94.7,27.5,87,1134,2021-01-31,"18225"
+"Benny Snell Jr.","RB","PIT",NA,NA,206.4,217.8,59.8,82,63,2021-01-31,"18609"
+"Darrynton Evans","RB","TEN",NA,NA,207,218.2,62.4,81,62,2021-01-31,"19418"
+"Duke Johnson Jr.","RB","HOU",NA,NA,208.7,219.1,63.2,78,61,2021-01-31,"13939"
+"Antonio Brown","WR","TBB",NA,NA,209.6,223.1,77.5,76,55,2021-01-31,"9808"
+"Damien Williams","RB","KCC",NA,NA,211.3,220.3,63,73,59,2021-01-31,"12334"
+"A.J. Green","WR","CIN",NA,NA,211.4,223.9,74.2,73,54,2021-01-31,"9857"
+"Jared Cook","TE","NOS",NA,NA,212.6,212.7,31.2,71,71,2021-01-31,"9265"
+"Gerald Everett","TE","LAR",NA,NA,213.1,213.1,28.8,70,70,2021-01-31,"16459"
+"James Washington","WR","PIT",NA,NA,213.7,224.9,77.3,69,53,2021-01-31,"17254"
+"Sammy Watkins","WR","KCC",NA,NA,217,226.2,78.3,64,52,2021-01-31,"12118"
+"Nelson Agholor","WR","LVR",NA,NA,217.9,226.6,79.3,63,51,2021-01-31,"13969"
+"Rob Gronkowski","TE","TBB",NA,NA,219,217.1,30.5,61,64,2021-01-31,"9721"
+"Emmanuel Sanders","WR","NOS",NA,NA,220.9,227.7,80.3,58,50,2021-01-31,"9707"
+"Wayne Gallman","RB","NYG",NA,NA,221.7,224.3,63.4,57,54,2021-01-31,"16422"
+"Keke Coutee","WR","HOU",NA,NA,225.7,229.4,90.3,52,48,2021-01-31,"17490"
+"Mitchell Trubisky","QB","CHI",NA,NA,231.1,134.6,30.7,46,444,2021-01-31,"16381"
+"Ben Roethlisberger","QB","PIT",NA,NA,232,138.3,32.3,45,407,2021-01-31,"9039"
+"Van Jefferson","WR","LAR",NA,NA,233.1,231.8,86.3,44,45,2021-01-31,"19483"
+"Justin Jackson","RB","LAC",NA,NA,233.9,227.1,69.8,43,51,2021-01-31,"17300"
+"David Njoku","TE","CLE",NA,NA,235,227.9,27.8,42,50,2021-01-31,"16399"
+"Breshad Perriman","WR","NYJ",NA,NA,235.9,232.7,86.8,41,44,2021-01-31,"13975"
+"Mark Ingram II","RB","FA",NA,NA,237.2,227.7,71.4,40,50,2021-01-31,"9872"
+"Salvon Ahmed","RB","MIA",NA,NA,237.7,227.7,69.4,39,50,2021-01-31,"19449"
+"Hunter Renfrow","WR","LVR",NA,NA,241.1,234.3,88.3,36,43,2021-01-31,"18345"
+"Cam Newton","QB","NEP",NA,NA,242.7,192.2,32,35,115,2021-01-31,"9869"
+"Mike Davis","RB","CAR",NA,NA,244.7,228.9,65.8,33,48,2021-01-31,"13943"
+"Giovani Bernard","RB","CIN",NA,NA,245.9,229.1,67.6,33,48,2021-01-31,"11644"
+"Donovan Peoples-Jones","WR","CLE",NA,NA,248.2,236.4,89.8,31,41,2021-01-31,"19298"
+"Chad Hansen","WR","HOU",NA,NA,248.5,236.5,122,31,41,2021-01-31,"16430"
+"Jameis Winston","QB","NOS",NA,NA,249.4,199.5,27.8,30,97,2021-01-31,"13891"
+"Josh Reynolds","WR","LAR",NA,NA,251.4,237.4,91.7,29,40,2021-01-31,"16439"
+"Quintez Cephus","WR","DET",NA,NA,251.5,237.4,89,28,40,2021-01-31,"19396"
+"Tim Patrick","WR","DEN",NA,NA,252.9,237.8,91.7,28,39,2021-01-31,"16556"
+"Julian Edelman","WR","NEP",NA,NA,253.6,238,93.5,27,39,2021-01-31,"9332"
+"Russell Gage","WR","ATL",NA,NA,253.9,238.1,90.5,27,39,2021-01-31,"17606"
+"Jakobi Meyers","WR","NEP",NA,NA,253.9,238.1,92.2,27,39,2021-01-31,"18598"
+"Andy Isabella","WR","ARI",NA,NA,255.3,238.6,91,26,39,2021-01-31,"18409"
+"DeeJay Dallas","RB","SEA",NA,NA,256.3,230.9,73.2,25,46,2021-01-31,"19521"
+"Tevin Coleman","RB","SFO",NA,NA,256.6,230.9,73.6,25,46,2021-01-31,"13926"
+"Matt Breida","RB","MIA",NA,NA,258.1,231.2,75.6,24,46,2021-01-31,"17058"
+"Marquez Valdes-Scantling","WR","GBP",NA,NA,259.4,239.8,94.7,24,37,2021-01-31,"17528"
+"Harrison Bryant","TE","CLE",NA,NA,262.1,246.1,32,22,32,2021-01-31,"19389"
+"Tyler Johnson","WR","TBB",NA,NA,263.2,241,94.2,22,36,2021-01-31,"18633"
+"Drew Brees","QB","NOS",NA,NA,264.2,211.4,46.7,21,73,2021-01-31,"9200"
+"Justice Hill","RB","BAL",NA,NA,264.3,232.2,76,21,45,2021-01-31,"18256"
+"Collin Johnson","WR","JAC",NA,NA,264.5,241.4,93.4,21,36,2021-01-31,"18289"
+"Albert Okwuegbunam","TE","DEN",NA,NA,266.1,248.8,33.5,20,30,2021-01-31,"18246"
+"Ian Thomas","TE","CAR",NA,NA,268.9,250.6,40.8,19,29,2021-01-31,"17387"
+"Chris Thompson","RB","JAC",NA,NA,269.6,233.1,100.8,19,44,2021-01-31,"11651"
+"Jerick McKinnon","RB","SFO",NA,NA,270.5,233.2,77.6,18,44,2021-01-31,"12209"
+"John Ross","WR","CIN",NA,NA,270.8,243.3,105.8,18,35,2021-01-31,"16388"
+"Devonta Freeman","RB","BUF",NA,NA,273.4,233.7,95.2,17,43,2021-01-31,"12108"
+"Devin Duvernay","WR","BAL",NA,NA,273.7,244.2,98.5,17,34,2021-01-31,"19270"
+"Philip Rivers","QB","IND",NA,NA,275,220,65.5,16,60,2021-01-31,"9509"
+"Ito Smith","RB","ATL",NA,NA,275.7,234.1,73.6,16,43,2021-01-31,"17249"
+"Miles Boykin","WR","BAL",NA,NA,276.4,245,97.8,16,33,2021-01-31,"18636"
+"Will Dissly","TE","SEA",NA,NA,276.6,255.8,37.5,16,26,2021-01-31,"18049"
+"Vance McDonald","TE","PIT",NA,NA,278,256.8,86.7,15,25,2021-01-31,"11699"
+"Ryan Fitzpatrick","QB","MIA",NA,NA,279.2,223.4,42.2,15,55,2021-01-31,"9545"
+"Scotty Miller","WR","TBB",NA,NA,280.6,246.2,108,14,32,2021-01-31,"18714"
+"Tre'Quan Smith","WR","NOS",NA,NA,281.6,246.5,98.7,14,32,2021-01-31,"17261"
+"Cam Sims","WR","WAS",NA,NA,282.4,246.8,99.4,14,32,2021-01-31,"18016"
+"Rashard Higgins","WR","CLE",NA,NA,283.3,247.1,107.3,13,32,2021-01-31,"15586"
+"Golden Tate","WR","NYG",NA,NA,284,247.3,108.5,13,31,2021-01-31,"9683"
+"Randall Cobb","WR","HOU",NA,NA,284.3,247.4,103.3,13,31,2021-01-31,"9902"
+"Royce Freeman","RB","DEN",NA,NA,285.3,235.7,77.6,13,41,2021-01-31,"17245"
+"Jack Doyle","TE","IND",NA,NA,286,262.1,41.3,13,22,2021-01-31,"11987"
+"Malcolm Brown","RB","LAR",NA,NA,286.4,235.9,79.4,13,41,2021-01-31,"13953"
+"Antonio Gandy-Golden","WR","WAS",NA,NA,287.2,248.2,104.6,12,31,2021-01-31,"19338"
+"Greg Ward","WR","PHI",NA,NA,287.3,248.3,112.8,12,31,2021-01-31,"17130"
+"Dede Westbrook","WR","JAC",NA,NA,288.8,248.7,123.8,12,30,2021-01-31,"16436"
+"Tyrell Williams","WR","LVR",NA,NA,289.4,248.9,109,12,30,2021-01-31,"14324"
+"Anthony Firkser","TE","TEN",NA,NA,290,264.8,42,12,21,2021-01-31,"16787"
+"Eno Benjamin","RB","ARI",NA,NA,294.8,237.3,79.6,10,40,2021-01-31,"19361"
+"Carlos Hyde","RB","SEA",NA,NA,294.9,237.3,81.8,10,40,2021-01-31,"12105"
+"Kendrick Bourne","WR","SFO",NA,NA,296,250.9,103.5,10,29,2021-01-31,"17066"
+"Dante Pettis","WR","NYG",NA,NA,296,250.9,148.2,10,29,2021-01-31,"17264"
+"Marquez Callaway","WR","NOS",NA,NA,296.8,251.1,102.8,10,29,2021-01-31,"19505"
+"Dalton Schultz","TE","DAL",NA,NA,298.6,270.6,37.3,9,18,2021-01-31,"17349"
+"Darwin Thompson","RB","KCC",NA,NA,299,238,90.4,9,39,2021-01-31,"18620"
+"Dan Arnold","TE","ARI",NA,NA,300.8,272.1,36.8,9,18,2021-01-31,"17143"
+"Dion Lewis","RB","NYG",NA,NA,301,238.3,106,9,39,2021-01-31,"9983"
+"Zach Pascal","WR","IND",NA,NA,301.5,252.6,106,9,28,2021-01-31,"16972"
+"John Hightower","WR","PHI",NA,NA,301.5,252.6,133.8,9,28,2021-01-31,"19329"
+"Steven Sims","WR","WAS",NA,NA,301.7,252.6,107.2,9,28,2021-01-31,"18962"
+"Greg Olsen","TE","SEA",NA,NA,301.8,272.7,99.5,9,17,2021-01-31,"9238"
+"Jace Sternberger","TE","GBP",NA,NA,301.9,272.8,43.4,9,17,2021-01-31,"18614"
+"Jacob Hollister","TE","SEA",NA,NA,302.4,273.1,49.4,9,17,2021-01-31,"16527"
+"Marcus Mariota","QB","LVR",NA,NA,302.6,242.1,38,9,36,2021-01-31,"13890"
+"DeSean Jackson","WR","PHI",NA,NA,303.6,253.2,112.7,8,27,2021-01-31,"9186"
+"Jalen Hurd","WR","SFO",NA,NA,303.7,253.2,107,8,27,2021-01-31,"18318"
+"Isaiah McKenzie","WR","BUF",NA,NA,303.7,253.2,129.8,8,27,2021-01-31,"16604"
+"Alex Smith","QB","WAS",NA,NA,304.4,243.5,48.8,8,34,2021-01-31,"9012"
+"Keelan Cole Sr.","WR","JAC",NA,NA,305,253.6,115,8,27,2021-01-31,"16864"
+"Trayveon Williams","RB","CIN",NA,NA,305.3,239,82.8,8,38,2021-01-31,"18607"
+"Travis Fulgham","WR","PHI",NA,NA,306.8,254.2,118.2,8,27,2021-01-31,"18470"
+"Bryce Love","RB","WAS",NA,NA,307,239.3,87.2,8,38,2021-01-31,"18266"
+"C.J. Uzomah","TE","CIN",NA,NA,307,276.2,39.2,8,16,2021-01-31,"14084"
+"Kenny Stills","WR","BUF",NA,NA,307.3,254.4,117.5,8,27,2021-01-31,"11611"
+"Donald Parham Jr.","TE","LAC",NA,NA,308,276.9,43,8,16,2021-01-31,"18835"
+"Andy Dalton","QB","DAL",NA,NA,308.3,246.7,38.5,7,32,2021-01-31,"9907"
+"Tyron Johnson","WR","LAC",NA,NA,308.7,254.8,108.3,7,26,2021-01-31,"18804"
+"Devine Ozigbo","RB","JAC",NA,NA,309.5,239.7,93.2,7,38,2021-01-31,"18630"
+"Deonte Harris","WR","NOS",NA,NA,309.5,255,109,7,26,2021-01-31,"18876"
+"Demarcus Robinson","WR","KCC",NA,NA,311.3,255.6,111.5,7,26,2021-01-31,"15665"
+"Jordan Love","QB","GBP",NA,NA,311.7,249.3,37,7,30,2021-01-31,"19246"
+"Brian Hill","RB","ATL",NA,NA,312.1,240.2,83.2,7,37,2021-01-31,"16448"
+"Jordan Wilkins","RB","IND",NA,NA,312.2,240.2,95.4,7,37,2021-01-31,"17497"
+"Dalton Keene","TE","NEP",NA,NA,312.3,279.8,54.8,7,15,2021-01-31,"19563"
+"Jordan Howard","RB","PHI",NA,NA,313.5,240.4,93.2,7,37,2021-01-31,"15585"
+"Larry Fitzgerald","WR","ARI",NA,NA,313.8,256.3,118.2,7,25,2021-01-31,"9383"
+"Jason Huntley","RB","PHI",NA,NA,314,240.5,99.7,7,37,2021-01-31,"19655"
+"Kyle Rudolph","TE","MIN",NA,NA,314.4,281.2,45.2,6,14,2021-01-31,"9906"
+"DaeSean Hamilton","WR","DEN",NA,NA,315.8,256.9,134.2,6,25,2021-01-31,"17470"
+"Phillip Walker","QB","CAR",NA,NA,316,252.8,52.2,6,28,2021-01-31,"16841"
+"Dez Bryant","WR","BAL",NA,NA,317,257.3,155,6,25,2021-01-31,"9681"
+"JaMycal Hasty","RB","SFO",NA,NA,318,241.1,92.6,6,36,2021-01-31,"19627"
+"Jalen Guyton","WR","LAC",NA,NA,318,257.6,110.8,6,25,2021-01-31,"18941"
+"Jacoby Brissett","QB","IND",NA,NA,318.2,254.6,42.8,6,26,2021-01-31,"15642"
+"Alshon Jeffery","WR","PHI",NA,NA,319.2,258,118.3,6,24,2021-01-31,"11199"
+"Ryquell Armstead","RB","JAC",NA,NA,319.5,241.4,89.4,6,36,2021-01-31,"18521"
+"Josh Oliver","TE","JAC",NA,NA,319.5,284.6,43,6,13,2021-01-31,"18487"
+"Cameron Brate","TE","TBB",NA,NA,319.5,284.6,43.4,6,13,2021-01-31,"13470"
+"Trey Burton","TE","IND",NA,NA,321.1,285.7,45.4,6,13,2021-01-31,"12153"
+"Rodney Smith","RB","CAR",NA,NA,321.3,241.7,90.3,6,36,2021-01-31,"19470"
+"Mo Alie-Cox","TE","IND",NA,NA,322.2,286.4,42.6,5,13,2021-01-31,"16579"
+"Geronimo Allison","WR","DET",NA,NA,323,259.1,142,5,24,2021-01-31,"15853"
+"Zay Jones","WR","LVR",NA,NA,323,259.1,132.7,5,24,2021-01-31,"16431"
+"Ty Johnson","RB","NYJ",NA,NA,323.3,242,86,5,36,2021-01-31,"18406"
+"Albert Wilson","WR","MIA",NA,NA,323.5,259.3,127,5,24,2021-01-31,"12338"
+"Gardner Minshew II","QB","JAC",NA,NA,323.8,259.1,36.5,5,24,2021-01-31,"18562"
+"Kalen Ballage","RB","LAC",NA,NA,323.8,242.1,86.8,5,36,2021-01-31,"17250"
+"Darren Fells","TE","HOU",NA,NA,324.3,287.8,55.7,5,12,2021-01-31,"13636"
+"LeSean McCoy","RB","TBB",NA,NA,324.5,242.2,116,5,35,2021-01-31,"9398"
+"David Moore","WR","SEA",NA,NA,325.8,260,128.2,5,23,2021-01-31,"16757"
+"Jakeem Grant","WR","MIA",NA,NA,326.3,260.1,124.5,5,23,2021-01-31,"15680"
+"Darrel Williams","RB","KCC",NA,NA,327,242.6,88.2,5,35,2021-01-31,"17514"
+"Auden Tate","WR","CIN",NA,NA,327,260.3,115.3,5,23,2021-01-31,"17306"
+"Damiere Byrd","WR","NEP",NA,NA,327,260.3,123.5,5,23,2021-01-31,"14222"
+"Adrian Peterson","RB","DET",NA,NA,327.4,242.7,89.6,5,35,2021-01-31,"9006"
+"Jordan Akins","TE","HOU",NA,NA,328,290.3,41,5,11,2021-01-31,"17415"
+"Jimmy Graham","TE","CHI",NA,NA,330,291.6,56,5,11,2021-01-31,"9712"
+"Kahale Warring","TE","HOU",NA,NA,330.2,291.8,45,4,11,2021-01-31,"18680"
+"Olamide Zaccheaus","WR","ATL",NA,NA,331,261.5,129.5,4,23,2021-01-31,"18864"
+"Jacob Eason","QB","IND",NA,NA,331.2,265,37.8,4,21,2021-01-31,"19220"
+"Isaiah Coulter","WR","HOU",NA,NA,332.6,262,134.6,4,22,2021-01-31,"19771"
+"Foster Moreau","TE","LVR",NA,NA,333.5,294,48.2,4,10,2021-01-31,"18397"
+"Adam Humphries","WR","TEN",NA,NA,333.8,262.4,113.6,4,22,2021-01-31,"14498"
+"Richie James Jr.","WR","SFO",NA,NA,334,262.4,135.3,4,22,2021-01-31,"17303"
+"Dare Ogunbowale","RB","JAC",NA,NA,334.4,243.9,94.2,4,34,2021-01-31,"16879"
+"JJ Arcega-Whiteside","WR","PHI",NA,NA,334.4,262.6,128.2,4,22,2021-01-31,"18235"
+"Quez Watkins","WR","PHI",NA,NA,335,262.7,126.6,4,22,2021-01-31,"19715"
+"Isaiah Ford","WR","MIA",NA,NA,335,262.7,136.8,4,22,2021-01-31,"16432"
+"Peyton Barber","RB","WAS",NA,NA,335.4,244,106.6,4,34,2021-01-31,"15920"
+"Dwayne Haskins","QB","PIT",NA,NA,335.8,268.7,40.5,4,19,2021-01-31,"18214"
+"Jaylen Samuels","RB","PIT",NA,NA,335.9,244.1,93.6,4,34,2021-01-31,"17271"
+"Rex Burkhead","RB","NEP",NA,NA,337.2,244.3,98.2,4,34,2021-01-31,"11655"
+"KeeSean Johnson","WR","ARI",NA,NA,337.2,263.4,127.6,4,22,2021-01-31,"18618"
+"Lamar Miller","RB","WAS",NA,NA,337.3,244.4,122.3,4,34,2021-01-31,"11185"
+"Freddie Swain","WR","SEA",NA,NA,338,263.7,126.5,4,21,2021-01-31,"19729"
+"Josh Adams","RB","NYJ",NA,NA,341.5,245,105.7,3,33,2021-01-31,"17248"
+"Mohamed Sanu","WR","DET",NA,NA,342,264.9,133.2,3,21,2021-01-31,"11200"
+"Bo Scarbrough","RB","SEA",NA,NA,342.3,245.2,106.3,3,33,2021-01-31,"17299"
+"Drew Sample","TE","CIN",NA,NA,342.8,300.2,48.6,3,9,2021-01-31,"18561"
+"Jarrett Stidham","QB","NEP",NA,NA,343.2,274.6,47.4,3,17,2021-01-31,"18604"
+"Devontae Booker","RB","LVR",NA,NA,343.8,245.4,102.4,3,33,2021-01-31,"15555"
+"DeAndre Washington","RB","MIA",NA,NA,344,245.5,103,3,33,2021-01-31,"15806"
+"Tyler Eifert","TE","JAC",NA,NA,344.7,301.5,44.6,3,9,2021-01-31,"11692"
+"Mike Boone","RB","MIN",NA,NA,345.9,245.8,94.6,3,33,2021-01-31,"17813"
+"Joe Reed","WR","LAC",NA,NA,346,266.1,151.5,3,20,2021-01-31,"19468"
+"Devin Asiasi","TE","NEP",NA,NA,347.2,303.2,46.8,3,8,2021-01-31,"19435"
+"Patrick Laird","RB","MIA",NA,NA,350.7,246.6,104.3,3,32,2021-01-31,"18332"
+"Olabisi Johnson","WR","MIN",NA,NA,351.3,267.7,151,3,19,2021-01-31,"18713"
+"Devin Funchess","WR","GBP",NA,NA,352.8,268.1,120,3,19,2021-01-31,"13915"
+"Nick Foles","QB","CHI",NA,NA,353.6,282.9,44,3,14,2021-01-31,"11176"
+"Tyrod Taylor","QB","LAC",NA,NA,354.3,283.5,45.6,3,13,2021-01-31,"10007"
+"Jalen Richard","RB","LVR",NA,NA,354.9,247.3,98.8,3,31,2021-01-31,"16120"
+"Marquise Goodwin","WR","PHI",NA,NA,355,268.8,151.7,3,19,2021-01-31,"11599"
+"Chris Conley","WR","JAC",NA,NA,355.2,268.9,124.8,2,19,2021-01-31,"14151"
+"D'Onta Foreman","RB","TEN",NA,NA,355.5,247.4,111,2,31,2021-01-31,"16407"
+"Qadree Ollison","RB","ATL",NA,NA,355.7,247.4,115.3,2,31,2021-01-31,"18480"
+"T.J. Yeldon","RB","BUF",NA,NA,356,247.5,112.3,2,31,2021-01-31,"13941"
+"Kelvin Harmon","WR","WAS",NA,NA,357,269.4,124.8,2,19,2021-01-31,"18228"
+"Tyler Conklin","TE","MIN",NA,NA,357.5,310.1,49,2,7,2021-01-31,"17598"
+"Kaden Smith","TE","NYG",NA,NA,358,310.4,55.3,2,7,2021-01-31,"18293"
+"Travis Homer","RB","SEA",NA,NA,358.7,247.9,103.8,2,31,2021-01-31,"18616"
+"Ryan Griffin","TE","NYJ",NA,NA,359,311.1,68,2,7,2021-01-31,"11830"
+"Equanimeous St. Brown","WR","GBP",NA,NA,359,270,143.5,2,18,2021-01-31,"17307"
+"K.J. Hill","WR","LAC",NA,NA,361,270.6,145.8,2,18,2021-01-31,"19332"
+"Brycen Hopkins","TE","LAR",NA,NA,361.8,312.9,53,2,7,2021-01-31,"19234"
+"Cedrick Wilson","WR","DAL",NA,NA,364,271.5,143.7,2,18,2021-01-31,"17262"
+"Colby Parkinson","TE","SEA",NA,NA,364.3,314.7,53.3,2,6,2021-01-31,"19372"
+"Jordan Reed","TE","SFO",NA,NA,364.5,314.8,56,2,6,2021-01-31,"11690"
+"Danny Amendola","WR","DET",NA,NA,366.7,272.4,145.2,2,17,2021-01-31,"9146"
+"Hunter Bryant","TE","DET",NA,NA,366.8,316.3,58.3,2,6,2021-01-31,"19242"
+"James O'Shaughnessy","TE","JAC",NA,NA,368,317.1,59.5,2,6,2021-01-31,"14146"
+"Braxton Berrios","WR","NYJ",NA,NA,368.6,272.9,128.3,2,17,2021-01-31,"17289"
+"Ty Montgomery","RB","NOS",NA,NA,368.7,249.6,120,2,30,2021-01-31,"13977"
+"Jonathan Williams","RB","WAS",NA,NA,370,249.8,131,2,30,2021-01-31,"15611"
+"Tyler Kroft","TE","BUF",NA,NA,370.2,318.6,61.7,2,6,2021-01-31,"13960"
+"Josiah Deguara","TE","GBP",NA,NA,372,319.8,63.5,2,6,2021-01-31,"19456"
+"Adam Shaheen","TE","MIA",NA,NA,372,319.8,63.5,2,6,2021-01-31,"16457"
+"Durham Smythe","TE","MIA",NA,NA,372.5,320.1,64,2,6,2021-01-31,"17508"
+"Ryan Izzo","TE","NEP",NA,NA,372.5,320.1,64,2,6,2021-01-31,"17541"
+"Justin Watson","WR","TBB",NA,NA,372.5,274.1,151,2,17,2021-01-31,"17603"
+"Ross Dwelley","TE","SFO",NA,NA,373,320.5,64.5,2,6,2021-01-31,"17886"
+"Trey Quinn","WR","LVR",NA,NA,373.5,274.4,155.2,2,17,2021-01-31,"17266"
+"Robert Foster","WR","WAS",NA,NA,373.5,274.4,156,2,17,2021-01-31,"17458"
+"Nick Boyle","TE","BAL",NA,NA,374,321.1,65.5,2,6,2021-01-31,"13963"
+"Dexter Williams","RB","GBP",NA,NA,375,250.6,126.7,2,29,2021-01-31,"18460"
+"Jaeden Graham","TE","ATL",NA,NA,375,321.8,66.5,2,5,2021-01-31,"18135"
+"Tyler Davis","TE","JAC",NA,NA,376.5,322.8,68,2,5,2021-01-31,"19811"
+"Jeremy McNichols","RB","TEN",NA,NA,377.5,251,114.7,1,29,2021-01-31,"16445"
+"Stephen Anderson","TE","LAC",NA,NA,378,323.8,69.5,1,5,2021-01-31,"15760"
+"Richard Rodgers","TE","PHI",NA,NA,378.5,324.2,70,1,5,2021-01-31,"12233"
+"Samaje Perine","RB","CIN",NA,NA,379.7,251.4,102.3,1,29,2021-01-31,"16423"
+"Phillip Dorsett II","WR","SEA",NA,NA,381,276.7,147.2,1,16,2021-01-31,"13979"
+"Jesse James","TE","DET",NA,NA,381.5,326.2,73,1,5,2021-01-31,"13959"
+"Dontrell Hilliard","RB","HOU",NA,NA,382,251.8,125,1,28,2021-01-31,"18037"
+"Charlie Woerner","TE","SFO",NA,NA,382.5,326.8,74,1,5,2021-01-31,"19665"
+"Willie Snead IV","WR","BAL",NA,NA,383,277.3,133.5,1,16,2021-01-31,"12904"
+"Matt LaCosse","TE","NEP",NA,NA,383.5,327.5,75,1,5,2021-01-31,"14288"
+"Tanner Hudson","TE","TBB",NA,NA,384,327.9,75.5,1,5,2021-01-31,"17826"
+"Ricky Seals-Jones","TE","KCC",NA,NA,384.2,328,75.7,1,5,2021-01-31,"16730"
+"Raymond Calais","RB","LAR",NA,NA,384.8,252.3,107.5,1,28,2021-01-31,"19613"
+"Kyle Allen","QB","WAS",NA,NA,384.9,307.9,45.3,1,8,2021-01-31,"17869"
+"Isaiah Hodgins","WR","BUF",NA,NA,385.8,278.1,145.5,1,15,2021-01-31,"19375"
+"Cordarrelle Patterson","WR","CHI",NA,NA,386.2,278.3,146,1,15,2021-01-31,"11613"
+"Pharaoh Brown","TE","HOU",NA,NA,386.5,329.5,78,1,5,2021-01-31,"16937"
+"Jason Witten","TE","LVR",NA,NA,387.2,330,78.7,1,5,2021-01-31,"9275"
+"Nick Mullens","QB","SFO",NA,NA,387.3,309.9,47.8,1,7,2021-01-31,"16726"
+"Dominique Dafney","TE","GBP",NA,NA,387.5,330.2,79,1,4,2021-01-31,"22672"
+"Lil'Jordan Humphrey","WR","NOS",NA,NA,387.9,278.8,147.7,1,15,2021-01-31,"18590"
+"Josh Gordon","WR","SEA",NA,NA,387.9,278.8,147.7,1,15,2021-01-31,"11440"
+"Riley Ridley","WR","CHI",NA,NA,388,278.8,151.2,1,15,2021-01-31,"18264"
+"Byron Pringle","WR","KCC",NA,NA,388.5,279,163.3,1,15,2021-01-31,"17739"
+"Marcedes Lewis","TE","GBP",NA,NA,389,331.2,80.5,1,4,2021-01-31,"9413"
+"Taylor Heinicke","QB","WAS",NA,NA,389.2,311.4,49.7,1,7,2021-01-31,"13932"
+"Nick Vannett","TE","DEN",NA,NA,389.5,331.5,81,1,4,2021-01-31,"15645"
+"Marqise Lee","WR","NEP",NA,NA,389.6,279.3,149.3,1,15,2021-01-31,"12120"
+"Chad Beebe","WR","MIN",NA,NA,389.8,279.4,149.5,1,15,2021-01-31,"18063"
+"Josh Hill","TE","NOS",NA,NA,390.5,332.2,82,1,4,2021-01-31,"13565"
+"Blake Bell","TE","DAL",NA,NA,390.5,332.2,82,1,4,2021-01-31,"13966"
+"Thaddeus Moss","TE","WAS",NA,NA,390.8,332.4,82.3,1,4,2021-01-31,"19622"
+"Mason Rudolph","QB","PIT",NA,NA,391.2,313,51.7,1,7,2021-01-31,"17234"
+"Troy Fumagalli","TE","DEN",NA,NA,391.5,332.9,83,1,4,2021-01-31,"17273"
+"Jordan Thomas","TE","IND",NA,NA,392.5,333.6,84,1,4,2021-01-31,"17399"
+"Virgil Green","TE","LAC",NA,NA,392.5,333.6,84,1,4,2021-01-31,"10026"
+"Rico Dowdle","RB","DAL",NA,NA,392.8,253.6,115.5,1,27,2021-01-31,"19647"
+"Maxx Williams","TE","ARI",NA,NA,393,333.9,84.5,1,4,2021-01-31,"13919"
+"Nick Keizer","TE","KCC",NA,NA,393.5,334.2,85,1,4,2021-01-31,"18054"
+"Tyler Huntley","QB","BAL",NA,NA,394.1,315.3,54.5,1,6,2021-01-31,"19297"
+"Reggie Bonnafon","RB","CAR",NA,NA,394.7,253.9,117.3,1,27,2021-01-31,"17867"
+"Hakeem Butler","WR","PHI",NA,NA,395,280.9,154.8,1,14,2021-01-31,"18229"
+"Jeremy Sprinkle","TE","WAS",NA,NA,396,335.9,87.5,1,4,2021-01-31,"16461"
+"C.J. Beathard","QB","SFO",NA,NA,396.6,317.3,57,1,6,2021-01-31,"16419"
+"Tyrie Cleveland","WR","DEN",NA,NA,396.9,281.5,156.7,1,14,2021-01-31,"19674"
+"Trent Taylor","WR","SFO",NA,NA,397.2,281.6,157,1,14,2021-01-31,"16505"
+"Frank Gore","RB","NYJ",NA,NA,397.3,254.3,120,1,27,2021-01-31,"9218"
+"Ameer Abdullah","RB","MIN",NA,NA,397.3,254.3,120,1,27,2021-01-31,"13924"
+"Corey Clement","RB","PHI",NA,NA,398,254.5,120.7,1,27,2021-01-31,"16446"
+"Allen Hurns","WR","MIA",NA,NA,398,281.9,157.8,1,14,2021-01-31,"12996"
+"Josh Rosen","QB","SFO",NA,NA,398.1,318.5,58.5,1,6,2021-01-31,"17235"
+"Jared Pinkney","TE","TEN",NA,NA,398.5,337.6,90,1,4,2021-01-31,"19250"
+"Marcus Johnson","WR","TEN",NA,NA,398.6,282,158.3,1,14,2021-01-31,"15814"
+"Jeff Smith","WR","NYJ",NA,NA,399.2,282.2,159,1,14,2021-01-31,"18791"
+"Nate Stanley","QB","MIN",NA,NA,399.6,319.7,60,1,6,2021-01-31,"19461"
+"Javon Wims","WR","CHI",NA,NA,400,282.5,159.8,1,14,2021-01-31,"17388"
+"Kyle Juszczyk","RB","SFO",NA,NA,400.3,254.8,123,1,26,2021-01-31,"11798"
+"Malcolm Perry","WR","MIA",NA,NA,400.8,282.7,160.5,1,14,2021-01-31,"19746"
+"Artavis Pierce","RB","CHI",NA,NA,401.3,255,124,1,26,2021-01-31,"19547"
+"Jake Butt","TE","DEN",NA,NA,401.5,339.6,93,1,4,2021-01-31,"16456"
+"Darrell Daniels","TE","ARI",NA,NA,401.5,339.6,93,1,4,2021-01-31,"16582"
+"Brandon Allen","QB","CIN",NA,NA,401.6,321.3,62,1,6,2021-01-31,"15745"
+"Demetrius Harris","TE","CHI",NA,NA,402,339.9,93.5,1,4,2021-01-31,"11881"
+"Jake Luton","QB","JAC",NA,NA,403.1,322.5,63.5,1,5,2021-01-31,"19618"
+"Brett Hundley","QB","ARI",NA,NA,403.6,322.9,64,1,5,2021-01-31,"13907"
+"Blake Bortles","QB","LAR",NA,NA,404.1,323.3,64.5,1,5,2021-01-31,"12090"
+"Stephen Sullivan","TE","SEA",NA,NA,404.5,341.6,96,1,3,2021-01-31,"19641"
+"Matt Barkley","QB","BUF",NA,NA,404.6,323.7,65,1,5,2021-01-31,"11686"
+"Laquon Treadwell","WR","ATL",NA,NA,404.8,283.9,164.5,1,13,2021-01-31,"15495"
+"Chad Henne","QB","KCC",NA,NA,405.2,324.2,65.7,1,5,2021-01-31,"9101"
+"Jeff Driskel","QB","DEN",NA,NA,405.6,324.5,66,1,5,2021-01-31,"15615"
+"Caleb Wilson","TE","PHI",NA,NA,406.5,342.9,98,1,3,2021-01-31,"18613"
+"Will Grier","QB","CAR",NA,NA,406.6,325.3,67,1,5,2021-01-31,"18241"
+"Easton Stick","QB","LAC",NA,NA,406.6,325.3,67,1,5,2021-01-31,"18446"
+"Ryan Finley","QB","CIN",NA,NA,407.1,325.7,67.5,1,5,2021-01-31,"18255"
+"Johnny Mundt","TE","LAR",NA,NA,407.5,343.6,99,1,3,2021-01-31,"16743"
+"James Morgan","QB","NYJ",NA,NA,407.6,326.1,68,1,5,2021-01-31,"19628"
+"Jake Fromm","QB","BUF",NA,NA,408.1,326.5,68.5,1,5,2021-01-31,"19243"
+"Colin Thompson","TE","CAR",NA,NA,408.5,344.3,100,1,3,2021-01-31,"17182"
+"Tommy Sweeney","TE","BUF",NA,NA,409.5,345,101,1,3,2021-01-31,"18325"
+"Tommy Stevens","QB","CAR",NA,NA,409.6,327.7,70,1,5,2021-01-31,"19838"
+"Geoff Swaim","TE","TEN",NA,NA,410.5,345.6,102,1,3,2021-01-31,"14164"
+"Case Keenum","QB","CLE",NA,NA,410.6,328.5,71,1,5,2021-01-31,"11425"
+"AJ McCarron","QB","HOU",NA,NA,410.6,328.5,71,1,5,2021-01-31,"12091"
+"Ben DiNucci","QB","DAL",NA,NA,410.6,328.5,71,1,5,2021-01-31,"19827"
+"Deon Cain","WR","BAL",NA,NA,411.2,285.9,171,1,13,2021-01-31,"17263"
+"Theo Riddick","RB","LVR",NA,NA,411.3,256.7,134,1,25,2021-01-31,"11649"
+"Josh Perkins","TE","PHI",NA,NA,411.5,346.3,103,1,3,2021-01-31,"16233"
+"Kurt Benkert","QB","ATL",NA,NA,411.6,329.3,72,1,5,2021-01-31,"17835"
+"John Wolford","QB","LAR",NA,NA,412.2,329.8,72.7,1,5,2021-01-31,"18185"
+"James Proche","WR","BAL",NA,NA,412.2,286.2,172,1,13,2021-01-31,"19359"
+"Cethan Carter","TE","CIN",NA,NA,412.5,347,104,1,3,2021-01-31,"16543"
+"Trace McSorley","QB","BAL",NA,NA,412.6,330.1,73,1,4,2021-01-31,"18475"
+"Logan Woodside","QB","TEN",NA,NA,413.1,330.5,73.5,1,4,2021-01-31,"17239"
+"C.J. Prosise","RB","TBB",NA,NA,413.3,257,136,1,25,2021-01-31,"15614"
+"Isaac Nauta","TE","GBP",NA,NA,413.5,347.6,105,1,3,2021-01-31,"18601"
+"David Blough","QB","DET",NA,NA,413.6,330.9,74,1,4,2021-01-31,"18756"
+"Chase Daniel","QB","DET",NA,NA,414.1,331.3,74.5,1,4,2021-01-31,"9111"
+"MyCole Pruitt","TE","TEN",NA,NA,414.5,348.3,106,1,3,2021-01-31,"13964"
+"Jordan Ta'amu","QB","KCC",NA,NA,414.6,331.7,75,1,4,2021-01-31,"19128"
+"Jesper Horsted","TE","CHI",NA,NA,415.5,349,107,1,3,2021-01-31,"18482"
+"Brian Hoyer","QB","NEP",NA,NA,415.6,332.5,76,1,4,2021-01-31,"9078"
+"Nate Sudfeld","QB","PHI",NA,NA,416.6,333.3,77,1,4,2021-01-31,"15833"
+"John Kelly","RB","CLE",NA,NA,417,257.6,139.7,1,25,2021-01-31,"17304"
+"Tim Boyle","QB","GBP",NA,NA,417.1,333.7,77.5,1,4,2021-01-31,"17801"
+"Mike Glennon","QB","JAC",NA,NA,417.6,334.1,78,1,4,2021-01-31,"11685"
+"Joshua Dobbs","QB","PIT",NA,NA,417.6,334.1,78,1,4,2021-01-31,"16417"
+"Colt McCoy","QB","NYG",NA,NA,418.6,334.9,79,1,4,2021-01-31,"9702"
+"Wendell Smallwood","RB","PIT",NA,NA,418.7,257.9,141.3,1,24,2021-01-31,"15672"
+"Ashton Dulin","WR","IND",NA,NA,418.8,288.2,178.5,1,12,2021-01-31,"18656"
+"Trenton Cannon","RB","CAR",NA,NA,420.3,258.2,143,1,24,2021-01-31,"17538"
+"Eric Saubert","TE","JAC",NA,NA,420.5,352.3,112,1,3,2021-01-31,"16706"
+"Jordan Scarlett","RB","MIA",NA,NA,420.8,258.3,143.5,1,24,2021-01-31,"18603"
+"Antonio Callaway","WR","KCC",NA,NA,420.8,288.8,180.5,1,12,2021-01-31,"17286"
+"Dontrelle Inman","WR","WAS",NA,NA,421.2,288.9,181,1,12,2021-01-31,"13105"
+"Jacob Breeland","TE","BAL",NA,NA,422.5,353.7,114,1,3,2021-01-31,"19306"
+"Devlin Hodges","QB","LAR",NA,NA,422.6,338.1,83,1,4,2021-01-31,"19063"
+"Taywan Taylor","WR","CLE",NA,NA,422.9,289.4,182.7,1,12,2021-01-31,"16426"
+"Tajae Sharpe","WR","KCC",NA,NA,423.6,289.6,183.3,0,12,2021-01-31,"15587"
+"Mack Hollins","WR","MIA",NA,NA,423.8,289.7,183.5,0,12,2021-01-31,"16489"
+"Kerrith Whyte Jr.","RB","DET",NA,NA,424.3,258.8,147,0,24,2021-01-31,"18625"
+"Deon Yelder","TE","KCC",NA,NA,425.5,355.7,117,0,2,2021-01-31,"17879"
+"Chris Streveler","QB","ARI",NA,NA,425.6,340.5,86,0,4,2021-01-31,"19755"
+"Alex Erickson","WR","CIN",NA,NA,425.8,290.3,185.5,0,11,2021-01-31,"15706"
+"Jake Kumerow","WR","BUF",NA,NA,425.9,290.3,185.7,0,11,2021-01-31,"14083"
+"Daniel Brown","TE","NYJ",NA,NA,426.5,356.4,118,0,2,2021-01-31,"14470"
+"Josh Johnson","QB","SFO",NA,NA,426.6,341.3,87,0,3,2021-01-31,"9326"
+"K.J. Osborn","WR","MIN",NA,NA,427.2,290.7,187,0,11,2021-01-31,"19708"
+"Jauan Jennings","WR","SFO",NA,NA,427.2,290.7,187,0,11,2021-01-31,"19590"
+"Josh Doctson","WR","NYJ",NA,NA,427.2,290.7,187,0,11,2021-01-31,"15511"
+"Jordan Leggett","TE","DEN",NA,NA,427.5,357,119,0,2,2021-01-31,"16458"
+"Cooper Rush","QB","DAL",NA,NA,427.6,342.1,88,0,3,2021-01-31,"16477"
+"Seth DeValve","TE","ARI",NA,NA,428.5,357.7,120,0,2,2021-01-31,"15671"
+"Joe Flacco","QB","NYJ",NA,NA,428.6,342.9,89,0,3,2021-01-31,"9300"
+"Sean Mannion","QB","MIN",NA,NA,428.6,342.9,89,0,3,2021-01-31,"13930"
+"Lee Smith","TE","BUF",NA,NA,429.5,358.4,121,0,2,2021-01-31,"9992"
+"Zach Gentry","TE","PIT",NA,NA,430.5,359,122,0,2,2021-01-31,"18690"
+"Chad Kelly","QB","IND",NA,NA,430.6,344.5,91,0,3,2021-01-31,"16416"
+"Gary Jennings Jr.","WR","IND",NA,NA,430.6,291.7,190.3,0,11,2021-01-31,"18565"
+"Chris Manhertz","TE","CAR",NA,NA,431.5,359.7,123,0,2,2021-01-31,"14014"
+"Jaleel Scott","WR","NYJ",NA,NA,431.8,292.1,191.5,0,11,2021-01-31,"17260"
+"Hale Hentges","TE","MIN",NA,NA,432.5,360.4,124,0,2,2021-01-31,"18785"
+"Brett Rypien","QB","DEN",NA,NA,432.6,346.1,93,0,3,2021-01-31,"18323"
+"Mike White","QB","NYJ",NA,NA,432.6,346.1,93,0,3,2021-01-31,"17447"
+"Trent Sherfield","WR","ARI",NA,NA,433.2,292.5,193,0,11,2021-01-31,"17888"
+"Levine Toilolo","TE","NYG",NA,NA,433.5,361,125,0,2,2021-01-31,"11694"
+"Noah Togiai","TE","IND",NA,NA,434.5,361.7,126,0,2,2021-01-31,"19688"
+"Matt Schaub","QB","ATL",NA,NA,434.6,347.7,95,0,3,2021-01-31,"9445"
+"Vyncint Smith","WR","NYJ",NA,NA,434.8,293,194.5,0,11,2021-01-31,"17714"
+"Trevon Wesco","TE","NYJ",NA,NA,435.5,362.4,127,0,2,2021-01-31,"18567"
+"Stephen Carlson","TE","CLE",NA,NA,436.5,363.1,128,0,2,2021-01-31,"18757"
+"Jason Croom","TE","PHI",NA,NA,437.5,363.7,129,0,2,2021-01-31,"16770"
+"Luke Stocker","TE","ATL",NA,NA,438.5,364.4,130,0,2,2021-01-31,"9948"
+"Blaine Gabbert","QB","TBB",NA,NA,438.6,350.9,99,0,3,2021-01-31,"9858"
+"Damion Ratley","WR","HOU",NA,NA,438.8,294.2,198.5,0,10,2021-01-31,"17547"
+"Andrew Beck","TE","DEN",NA,NA,439.5,365.1,131,0,2,2021-01-31,"18748"
+"Luke Willson","TE","SEA",NA,NA,440.5,365.7,132,0,2,2021-01-31,"11812"
+"DeShone Kizer","QB","TEN",NA,NA,440.6,352.5,101,0,3,2021-01-31,"16389"
+"Garrett Gilbert","QB","DAL",NA,NA,441.6,353.3,102,0,3,2021-01-31,"12302"
+"Mason Schreck","TE","CIN",NA,NA,442.5,367.1,134,0,2,2021-01-31,"16541"
+"Sean McKeon","TE","DAL",NA,NA,443.5,367.8,135,0,2,2021-01-31,"19726"
+"Matt Moore","QB","KCC",NA,NA,443.6,354.9,104,0,3,2021-01-31,"9442"
+"Xavier Grimble","TE","BAL",NA,NA,444.5,368.4,136,0,2,2021-01-31,"12149"
+"Nathan Peterman","QB","LVR",NA,NA,444.6,355.7,105,0,2,2021-01-31,"16414"
+"Kyle Sloter","QB","LVR",NA,NA,445.6,356.5,106,0,2,2021-01-31,"16902"
+"Eric Tomlinson","TE","BAL",NA,NA,446.5,369.8,138,0,2,2021-01-31,"14339"
+"Keith Kirkwood","WR","CAR",NA,NA,449.2,297.4,209,0,10,2021-01-31,"17871"
+"Chester Rogers","WR","TEN",NA,NA,452.2,298.3,212,0,9,2021-01-31,"16038"
+"Donte Moncrief","WR","NEP",NA,NA,454.8,299.1,214.5,0,9,2021-01-31,"12125"
+"Corey Coleman","WR","NYG",NA,NA,454.8,299.1,214.5,0,9,2021-01-31,"15506"
+"Seth Roberts","WR","GBP",NA,NA,454.8,299.1,214.5,0,9,2021-01-31,"13840"
+"Travis Benjamin","WR","SFO",NA,NA,455.2,299.2,215,0,9,2021-01-31,"11214"
+"Chris Moore","WR","BAL",NA,NA,457.8,300,217.5,0,9,2021-01-31,"15654"
+"Emanuel Hall","WR","WAS",NA,NA,468.8,303.3,228.5,0,8,2021-01-31,"18432"
diff --git a/tests/testthat/gh_dynastyprocess/values.csv.txt b/tests/testthat/gh_dynastyprocess/values.csv.txt
new file mode 100644
index 00000000..31de2914
--- /dev/null
+++ b/tests/testthat/gh_dynastyprocess/values.csv.txt
@@ -0,0 +1,650 @@
+"player","pos","team","age","draft_year","ecr_1qb","ecr_2qb","ecr_pos","value_1qb","value_2qb","scrape_date","fp_id"
+"Christian McCaffrey","RB","CAR",NA,NA,1,0.9,1,10256,10280,2021-01-31,"16393"
+"Saquon Barkley","RB","NYG",NA,NA,2.4,2.9,2.2,9917,9808,2021-01-31,"17240"
+"Dalvin Cook","RB","MIN",NA,NA,3.3,4.1,3.4,9719,9536,2021-01-31,"16374"
+"Alvin Kamara","RB","NOS",NA,NA,4.4,5.7,4,9462,9184,2021-01-31,"16421"
+"Davante Adams","WR","GBP",NA,NA,5,6.1,1,9336,9098,2021-01-31,"12123"
+"Jonathan Taylor","RB","IND",NA,NA,5.7,7.5,5,9181,8803,2021-01-31,"19217"
+"Derrick Henry","RB","TEN",NA,NA,7,9.2,5.6,8907,8459,2021-01-31,"15514"
+"Tyreek Hill","WR","KCC",NA,NA,9.3,12.1,2.8,8441,7901,2021-01-31,"15802"
+"Nick Chubb","RB","CLE",NA,NA,11,14.8,7,8108,7416,2021-01-31,"17246"
+"DeAndre Hopkins","WR","ARI",NA,NA,12,15.9,4.3,7920,7226,2021-01-31,"11606"
+"D.K. Metcalf","WR","SEA",NA,NA,12.7,16.8,4.8,7789,7075,2021-01-31,"18219"
+"A.J. Brown","WR","TEN",NA,NA,13.3,17.7,4.8,7683,6927,2021-01-31,"18218"
+"George Kittle","TE","SFO",NA,NA,14.1,21.1,1.8,7531,6395,2021-01-31,"16499"
+"Travis Kelce","TE","KCC",NA,NA,14.4,21.4,1.2,7480,6350,2021-01-31,"11594"
+"Stefon Diggs","WR","BUF",NA,NA,15.3,20.4,5.2,7331,6501,2021-01-31,"13981"
+"Justin Jefferson","WR","MIN",NA,NA,16.6,22.2,5.8,7113,6232,2021-01-31,"19236"
+"Ezekiel Elliott","RB","DAL",NA,NA,18.7,25.4,9.8,6765,5780,2021-01-31,"15498"
+"Aaron Jones","RB","GBP",NA,NA,20.6,28,11.6,6475,5438,2021-01-31,"16673"
+"D'Andre Swift","RB","DET",NA,NA,21.7,29.5,10.4,6304,5249,2021-01-31,"19210"
+"J.K. Dobbins","RB","BAL",NA,NA,23,31.3,12.4,6116,5032,2021-01-31,"19245"
+"Michael Thomas","WR","NOS",NA,NA,23.6,32.1,8,6034,4938,2021-01-31,"15528"
+"Josh Jacobs","RB","LVR",NA,NA,24.1,32.9,13.8,5954,4846,2021-01-31,"18269"
+"Miles Sanders","RB","PHI",NA,NA,24.9,33.9,12.4,5854,4734,2021-01-31,"18283"
+"Calvin Ridley","WR","ATL",NA,NA,25,34.2,8.3,5835,4701,2021-01-31,"17258"
+"Patrick Mahomes II","QB","KCC",NA,NA,25.3,4.2,1,5795,9513,2021-01-31,"16413"
+"Austin Ekeler","RB","LAC",NA,NA,26.3,35.8,14.8,5661,4527,2021-01-31,"16483"
+"2021 Pick 1.01","PICK",NA,NA,NA,29.0275,23.8225,NA,5308,5999,2021-01-31,NA
+"Clyde Edwards-Helaire","RB","KCC",NA,NA,29.1,39.7,14.4,5294,4131,2021-01-31,"19325"
+"Chris Godwin","WR","TBB",NA,NA,29.3,40.3,11.2,5275,4073,2021-01-31,"16406"
+"Terry McLaurin","WR","WAS",NA,NA,30.3,41.8,12.2,5153,3932,2021-01-31,"18466"
+"CeeDee Lamb","WR","DAL",NA,NA,32,44.3,13.3,4950,3707,2021-01-31,"19202"
+"D.J. Moore","WR","CAR",NA,NA,32.1,44.5,13.5,4934,3690,2021-01-31,"17265"
+"Antonio Gibson","RB","WAS",NA,NA,32.3,44,14.2,4916,3734,2021-01-31,"19624"
+"Cam Akers","RB","LAR",NA,NA,32.3,44,14.4,4916,3734,2021-01-31,"19268"
+"Allen Robinson II","WR","CHI",NA,NA,33.1,45.9,14.3,4819,3571,2021-01-31,"12126"
+"Keenan Allen","WR","LAC",NA,NA,35.4,49.2,16,4567,3304,2021-01-31,"11616"
+"Darren Waller","TE","LVR",NA,NA,36.6,47.4,3.2,4446,3447,2021-01-31,"14104"
+"Kenny Golladay","WR","DET",NA,NA,36.9,51.3,16.7,4416,3145,2021-01-31,"16488"
+"Amari Cooper","WR","DAL",NA,NA,37.1,51.7,17.5,4387,3116,2021-01-31,"13894"
+"2021 Pick 1.02","PICK",NA,NA,NA,37.595,35.8375,NA,4340,4523,2021-01-31,NA
+"Mike Evans","WR","TBB",NA,NA,38,52.9,18.3,4299,3029,2021-01-31,"12119"
+"Tee Higgins","WR","CIN",NA,NA,40,55.8,19,4102,2829,2021-01-31,"19211"
+"James Robinson","RB","JAC",NA,NA,42,56.9,18.4,3913,2757,2021-01-31,"19631"
+"Joe Mixon","RB","CIN",NA,NA,42.7,57.8,17.8,3849,2700,2021-01-31,"16420"
+"David Montgomery","RB","CHI",NA,NA,44.3,59.9,18.4,3708,2570,2021-01-31,"18239"
+"Diontae Johnson","WR","PIT",NA,NA,45.3,63.4,22.8,3622,2367,2021-01-31,"18615"
+"Mark Andrews","TE","BAL",NA,NA,45.6,57.8,4.2,3598,2700,2021-01-31,"17269"
+"2021 Pick 1.03","PICK",NA,NA,NA,45.9225,47.28,NA,3569,3457,2021-01-31,NA
+"Courtland Sutton","WR","DEN",NA,NA,46.1,64.6,23.5,3550,2301,2021-01-31,"17253"
+"Kyler Murray","QB","ARI",NA,NA,47.6,10.8,3,3433,8146,2021-01-31,"18600"
+"Brandon Aiyuk","WR","SFO",NA,NA,48.4,67.8,22.7,3364,2134,2021-01-31,"19252"
+"Kareem Hunt","RB","CLE",NA,NA,51,68.3,21.4,3167,2109,2021-01-31,"16425"
+"2022 Early 1st","PICK",NA,NA,NA,51.1210952686898,50.7623452686898,NA,3158,3185,2021-01-31,NA
+"Josh Allen","QB","BUF",NA,NA,51.7,12.1,3.2,3115,7901,2021-01-31,"17298"
+"Julio Jones","WR","ATL",NA,NA,53.9,75.3,24.7,2961,1789,2021-01-31,"9867"
+"Cooper Kupp","WR","LAR",NA,NA,53.9,75.3,26.3,2961,1789,2021-01-31,"16433"
+"2021 Pick 1.04","PICK",NA,NA,NA,53.9575,58.1275,NA,2955,2679,2021-01-31,NA
+"Robert Woods","WR","LAR",NA,NA,55.1,77,27.2,2874,1719,2021-01-31,"11610"
+"Deshaun Watson","QB","HOU",NA,NA,56.6,13.6,4.8,2779,7628,2021-01-31,"16398"
+"Jerry Jeudy","WR","DEN",NA,NA,57.7,80.5,26.8,2705,1583,2021-01-31,"19201"
+"JuJu Smith-Schuster","WR","PIT",NA,NA,58.6,81.6,27.8,2651,1543,2021-01-31,"16427"
+"Dak Prescott","QB","DAL",NA,NA,59.6,14.7,4.3,2590,7433,2021-01-31,"15600"
+"Lamar Jackson","QB","BAL",NA,NA,59.9,14.8,5.3,2572,7416,2021-01-31,"17233"
+"D.J. Chark Jr.","WR","JAC",NA,NA,59.9,83.3,28.5,2572,1483,2021-01-31,"17292"
+"Chris Carson","RB","SEA",NA,NA,60.1,79.2,23.4,2555,1633,2021-01-31,"16754"
+"Chase Claypool","WR","PIT",NA,NA,60.6,84.3,27.8,2529,1448,2021-01-31,"18627"
+"2021 Pick 1.05","PICK",NA,NA,NA,61.7875,68.4475,NA,2458,2102,2021-01-31,NA
+"Ronald Jones II","RB","TBB",NA,NA,63.7,83.4,24.2,2349,1479,2021-01-31,"17243"
+"Kenyan Drake","RB","ARI",NA,NA,65.1,85,26,2272,1425,2021-01-31,"15637"
+"T.J. Hockenson","TE","DET",NA,NA,65.3,80.2,4.8,2264,1595,2021-01-31,"18290"
+"Tyler Boyd","WR","CIN",NA,NA,66.1,91.4,30.5,2219,1226,2021-01-31,"15547"
+"Odell Beckham Jr.","WR","CLE",NA,NA,66.3,91.6,30.3,2211,1220,2021-01-31,"12127"
+"Tyler Lockett","WR","SEA",NA,NA,67,92.5,30.2,2175,1194,2021-01-31,"13971"
+"Melvin Gordon III","RB","DEN",NA,NA,67.9,88.1,26.8,2131,1324,2021-01-31,"13903"
+"2021 Pick 1.06","PICK",NA,NA,NA,69.41,78.2475,NA,2055,1670,2021-01-31,NA
+"Justin Herbert","QB","LAC",NA,NA,71.7,19,7.7,1947,6719,2021-01-31,"18635"
+"Adam Thielen","WR","MIN",NA,NA,73.1,100.1,34.3,1882,999,2021-01-31,"13429"
+"Will Fuller V","WR","HOU",NA,NA,75.4,102.8,34.3,1784,938,2021-01-31,"15629"
+"Noah Fant","TE","DEN",NA,NA,75.9,91.9,6.3,1766,1211,2021-01-31,"17527"
+"2021 Pick 1.07","PICK",NA,NA,NA,76.7775,87.49,NA,1728,1344,2021-01-31,NA
+"Joe Burrow","QB","CIN",NA,NA,77,21,7.5,1719,6410,2021-01-31,"19196"
+"Dallas Goedert","TE","PHI",NA,NA,77.3,93.4,8.7,1708,1169,2021-01-31,"17270"
+"Deebo Samuel","WR","SFO",NA,NA,79.3,107.4,36.5,1629,842,2021-01-31,"18244"
+"Raheem Mostert","RB","SFO",NA,NA,79.9,101.6,30,1607,964,2021-01-31,"14338"
+"2022 1st","PICK",NA,NA,NA,81.2754702686898,89.3267202686898,NA,1555,1287,2021-01-31,NA
+"Hunter Henry","TE","LAC",NA,NA,81.3,97.8,8.7,1554,1055,2021-01-31,"15561"
+"AJ Dillon","RB","GBP",NA,NA,82.4,104.4,28,1513,903,2021-01-31,"19358"
+"2022 Mid 1st","PICK",NA,NA,NA,82.4648452686898,92.0929702686898,NA,1512,1206,2021-01-31,NA
+"2021 Pick 1.08","PICK",NA,NA,NA,83.9025,96.205,NA,1462,1095,2021-01-31,NA
+"Russell Wilson","QB","SEA",NA,NA,85.1,24.3,9.3,1420,5932,2021-01-31,"11180"
+"James Conner","RB","PIT",NA,NA,85.6,107.9,30.2,1406,832,2021-01-31,"16447"
+"David Johnson","RB","HOU",NA,NA,85.9,108.2,30.6,1396,826,2021-01-31,"13948"
+"Marquise Brown","WR","BAL",NA,NA,89.1,118.5,39.2,1293,648,2021-01-31,"18226"
+"Zack Moss","RB","BUF",NA,NA,89.7,112.5,30.8,1275,746,2021-01-31,"19263"
+"Leonard Fournette","RB","TBB",NA,NA,89.9,112.6,31.8,1271,745,2021-01-31,"16378"
+"Aaron Rodgers","QB","GBP",NA,NA,90.4,26.5,10.3,1254,5633,2021-01-31,"9001"
+"DeVante Parker","WR","MIA",NA,NA,90.4,119.9,40.7,1254,627,2021-01-31,"13897"
+"Damien Harris","RB","NEP",NA,NA,90.6,113.4,32.2,1250,731,2021-01-31,"18230"
+"2023 1st","PICK",NA,NA,NA,90.7709405373795,98.8221905373795,NA,1244,1029,2021-01-31,NA
+"2021 Pick 1.09","PICK",NA,NA,NA,90.895,104.48,NA,1240,901,2021-01-31,NA
+"Jarvis Landry","WR","CLE",NA,NA,91.3,120.8,41.3,1229,614,2021-01-31,"12128"
+"Mike Gesicki","TE","MIA",NA,NA,91.4,108.6,9.7,1225,818,2021-01-31,"17272"
+"Michael Gallup","WR","DAL",NA,NA,91.4,121,40.7,1225,611,2021-01-31,"17259"
+"Myles Gaskin","RB","MIA",NA,NA,94,117.2,35.2,1153,668,2021-01-31,"17251"
+"Brandin Cooks","WR","HOU",NA,NA,94.3,124,41.3,1145,570,2021-01-31,"12122"
+"Devin Singletary","RB","BUF",NA,NA,94.4,117.6,34.4,1141,662,2021-01-31,"18280"
+"2021 Pick 1.10","PICK",NA,NA,NA,97.62,112.24,NA,1059,751,2021-01-31,NA
+"Laviska Shenault Jr.","WR","JAC",NA,NA,97.7,127.6,43.7,1057,523,2021-01-31,"19221"
+"Ryan Tannehill","QB","TEN",NA,NA,98.9,30,11.5,1029,5188,2021-01-31,"11174"
+"Jalen Reagor","WR","PHI",NA,NA,98.9,128.8,43,1029,509,2021-01-31,"19219"
+"Chase Edmonds","RB","ARI",NA,NA,101.3,125.1,35.4,971,555,2021-01-31,"17496"
+"Evan Engram","TE","NYG",NA,NA,101.9,119.5,11,959,633,2021-01-31,"16411"
+"2021 Pick 1.11","PICK",NA,NA,NA,104.04,119.4525,NA,911,634,2021-01-31,NA
+"Michael Pittman Jr.","WR","IND",NA,NA,106.3,136.4,45,864,426,2021-01-31,"19278"
+"Tarik Cohen","RB","CHI",NA,NA,107,131.2,37.6,849,481,2021-01-31,"16450"
+"Mike Williams","WR","LAC",NA,NA,107,137.1,46,849,419,2021-01-31,"16377"
+"Tua Tagovailoa","QB","MIA",NA,NA,107.1,33.5,13.3,847,4778,2021-01-31,"19198"
+"Baker Mayfield","QB","CLE",NA,NA,108.1,34,13.8,827,4723,2021-01-31,"17237"
+"2022 Late 1st","PICK",NA,NA,NA,110.24047026869,125.12484526869,NA,787,555,2021-01-31,NA
+"2021 Pick 1.12","PICK",NA,NA,NA,110.425,126.345,NA,784,539,2021-01-31,NA
+"Denzel Mims","WR","NYJ",NA,NA,110.6,140.7,46.2,781,385,2021-01-31,"19344"
+"Alexander Mattison","RB","MIN",NA,NA,111.6,136.1,38,763,429,2021-01-31,"18621"
+"Robby Anderson","WR","CAR",NA,NA,112,142.1,47,755,372,2021-01-31,"15688"
+"Irv Smith Jr.","TE","MIN",NA,NA,112.1,129.9,12.2,753,496,2021-01-31,"18610"
+"Jalen Hurts","QB","PHI",NA,NA,113.9,36.6,15.3,723,4443,2021-01-31,"19275"
+"Matthew Stafford","QB","DET",NA,NA,114.9,37.1,16.2,706,4391,2021-01-31,"9451"
+"Henry Ruggs III","WR","LVR",NA,NA,115.9,146,46.2,690,340,2021-01-31,"19207"
+"Corey Davis","WR","TEN",NA,NA,116.3,146.4,48.8,683,337,2021-01-31,"16385"
+"2021 Pick 2.01","PICK",NA,NA,NA,116.3425,132.6075,NA,682,465,2021-01-31,NA
+"Curtis Samuel","WR","CAR",NA,NA,116.4,146.6,45.5,681,335,2021-01-31,"16434"
+"Nyheim Hines","RB","IND",NA,NA,117.3,142.1,41.6,667,372,2021-01-31,"17297"
+"Tony Pollard","RB","DAL",NA,NA,119.6,144.4,36.6,632,353,2021-01-31,"18705"
+"2021 Pick 2.02","PICK",NA,NA,NA,121.75,138.2175,NA,601,408,2021-01-31,NA
+"Christian Kirk","WR","ARI",NA,NA,125.1,155.2,52,555,274,2021-01-31,"17268"
+"Matt Ryan","QB","ATL",NA,NA,126.9,44,17.7,533,3734,2021-01-31,"9444"
+"Austin Hooper","TE","CLE",NA,NA,127.4,144.7,14.7,526,350,2021-01-31,"15581"
+"2021 Pick 2.03","PICK",NA,NA,NA,127.4725,143.8,NA,525,358,2021-01-31,NA
+"Kirk Cousins","QB","MIN",NA,NA,127.6,44.5,17.8,524,3690,2021-01-31,"11177"
+"Darius Slayton","WR","NYG",NA,NA,128.7,158.9,52.7,510,251,2021-01-31,"18706"
+"Sterling Shepard","WR","NYG",NA,NA,129.9,160,52.7,496,244,2021-01-31,"15569"
+"Darnell Mooney","WR","CHI",NA,NA,131.2,161.4,56.4,481,237,2021-01-31,"19810"
+"Logan Thomas","TE","WAS",NA,NA,131.3,148.3,14,480,322,2021-01-31,"12095"
+"Jonnu Smith","TE","TEN",NA,NA,131.9,148.8,16,474,318,2021-01-31,"16460"
+"Jared Goff","QB","LAR",NA,NA,133.3,48.6,19.2,458,3351,2021-01-31,"15501"
+"2021 Pick 2.04","PICK",NA,NA,NA,133.355,149.1325,NA,457,316,2021-01-31,NA
+"2022 Early 2nd","PICK",NA,NA,NA,134.22547026869,150.43484526869,NA,448,306,2021-01-31,NA
+"Darrell Henderson","RB","LAR",NA,NA,137.6,161.6,42,414,235,2021-01-31,"18588"
+"Tyler Higbee","TE","LAR",NA,NA,138,154.4,19,410,279,2021-01-31,"15623"
+"2021 Pick 2.05","PICK",NA,NA,NA,139.0575,153.985,NA,400,282,2021-01-31,NA
+"Zach Ertz","TE","PHI",NA,NA,139.9,156.1,20.5,392,268,2021-01-31,"11689"
+"Phillip Lindsay","RB","DEN",NA,NA,140.1,163.9,45,390,223,2021-01-31,"17498"
+"Robert Tonyan","TE","GBP",NA,NA,140.4,156.6,12.3,387,265,2021-01-31,"16502"
+"Jamison Crowder","WR","NYJ",NA,NA,141,171.4,56.8,382,187,2021-01-31,"13976"
+"Cole Kmet","TE","CHI",NA,NA,141.1,157.2,20.5,381,261,2021-01-31,"19229"
+"Carson Wentz","QB","PHI",NA,NA,143.1,55.3,22.8,363,2863,2021-01-31,"15520"
+"Le'Veon Bell","RB","KCC",NA,NA,144.1,167.4,47.2,355,205,2021-01-31,"11645"
+"Hayden Hurst","TE","ATL",NA,NA,144.3,159.9,16.7,354,245,2021-01-31,"17283"
+"2021 Pick 2.06","PICK",NA,NA,NA,145.085,158.9875,NA,347,250,2021-01-31,NA
+"Daniel Jones","QB","NYG",NA,NA,145.4,56.6,22.2,344,2777,2021-01-31,"18232"
+"James White","RB","NEP",NA,NA,147.3,170.1,51.8,330,193,2021-01-31,"12195"
+"Todd Gurley II","RB","ATL",NA,NA,148.4,171,46.8,321,189,2021-01-31,"13912"
+"Marvin Jones Jr.","WR","DET",NA,NA,148.7,179.2,57.2,319,156,2021-01-31,"11215"
+"Blake Jarwin","TE","DAL",NA,NA,149,164,19.3,317,223,2021-01-31,"16638"
+"Jeff Wilson Jr.","RB","SFO",NA,NA,151.2,173.4,47.4,301,178,2021-01-31,"18026"
+"2021 Pick 2.07","PICK",NA,NA,NA,151.675,164.3525,NA,297,221,2021-01-31,NA
+"Mecole Hardman","WR","KCC",NA,NA,153.9,184.2,60,282,138,2021-01-31,"18587"
+"Marlon Mack","RB","IND",NA,NA,157.9,179.1,51.2,257,156,2021-01-31,"16444"
+"Sony Michel","RB","NEP",NA,NA,158.1,179.4,48,255,155,2021-01-31,"17309"
+"2022 Mid 2nd","PICK",NA,NA,NA,158.10172026869,171.27547026869,NA,256,188,2021-01-31,NA
+"2021 Pick 2.08","PICK",NA,NA,NA,158.6075,169.795,NA,253,194,2021-01-31,NA
+"J.D. McKissic","RB","WAS",NA,NA,159.2,180.3,50.4,249,152,2021-01-31,"16230"
+"Derek Carr","QB","LVR",NA,NA,159.3,61.9,21.7,249,2452,2021-01-31,"12092"
+"2022 2nd","PICK",NA,NA,NA,159.33672026869,170.938386935356,NA,248,189,2021-01-31,NA
+"T.Y. Hilton","WR","IND",NA,NA,159.4,189.3,62.8,248,123,2021-01-31,"11206"
+"Eric Ebron","TE","PIT",NA,NA,161.6,174.5,21,236,174,2021-01-31,"12143"
+"Tom Brady","QB","TBB",NA,NA,162.6,63.2,22.7,230,2378,2021-01-31,"9603"
+"Parris Campbell","WR","IND",NA,NA,163.1,192.6,62,227,114,2021-01-31,"18463"
+"Preston Williams","WR","MIA",NA,NA,165.4,194.5,63.7,215,109,2021-01-31,"18612"
+"2021 Pick 2.09","PICK",NA,NA,NA,165.695,174.835,NA,214,173,2021-01-31,NA
+"Jamaal Williams","RB","GBP",NA,NA,165.9,186.2,50.8,213,132,2021-01-31,"16424"
+"Rashaad Penny","RB","SEA",NA,NA,167,187.2,48.6,207,129,2021-01-31,"17308"
+"2023 2nd","PICK",NA,NA,NA,168.83219053738,180.433857204046,NA,199,151,2021-01-31,NA
+"Ke'Shawn Vaughn","RB","TBB",NA,NA,170.6,190.4,51.6,191,120,2021-01-31,"19351"
+"Taysom Hill","QB","NOS",NA,NA,171.4,69.1,26.7,187,2070,2021-01-31,"17115"
+"2021 Pick 2.10","PICK",NA,NA,NA,172.7625,179.35,NA,181,155,2021-01-31,NA
+"John Brown","WR","BUF",NA,NA,173,200.7,63.7,180,94,2021-01-31,"12231"
+"Gabriel Davis","WR","BUF",NA,NA,173.8,201.3,68.6,177,93,2021-01-31,"19398"
+"Dawson Knox","TE","BUF",NA,NA,177.4,187.1,24.3,162,129,2021-01-31,"18631"
+"Sam Darnold","QB","NYJ",NA,NA,179,76.4,26.2,156,1744,2021-01-31,"17236"
+"La'Mical Perine","RB","NYJ",NA,NA,179.3,198.1,57,155,100,2021-01-31,"19333"
+"2021 Pick 2.11","PICK",NA,NA,NA,179.625,183.6825,NA,154,140,2021-01-31,NA
+"Joshua Kelley","RB","LAC",NA,NA,179.9,198.6,55.4,153,99,2021-01-31,"19445"
+"KJ Hamler","WR","DEN",NA,NA,180.3,206,68,152,83,2021-01-31,"19267"
+"Gus Edwards","RB","BAL",NA,NA,180.7,199.3,54.6,150,97,2021-01-31,"17687"
+"Jimmy Garoppolo","QB","SFO",NA,NA,180.9,78.2,27,150,1671,2021-01-31,"12208"
+"Latavius Murray","RB","NOS",NA,NA,183.1,201.4,54,142,92,2021-01-31,"11821"
+"2022 Late 2nd","PICK",NA,NA,NA,185.68297026869,191.10484526869,NA,134,118,2021-01-31,NA
+"2021 Pick 2.12","PICK",NA,NA,NA,186.6675,188.57,NA,131,125,2021-01-31,NA
+"Teddy Bridgewater","QB","CAR",NA,NA,187.1,84.1,27.5,129,1455,2021-01-31,"12088"
+"Anthony McFarland Jr.","RB","PIT",NA,NA,187.1,204.6,56.2,129,86,2021-01-31,"19366"
+"Bryan Edwards","WR","LVR",NA,NA,187.3,210.8,68.3,129,74,2021-01-31,"18634"
+"Adam Trautman","TE","NOS",NA,NA,187.6,194.8,22.2,128,108,2021-01-31,"19423"
+"Chris Herndon IV","TE","NYJ",NA,NA,188.7,195.6,25.2,125,106,2021-01-31,"17536"
+"Cole Beasley","WR","BUF",NA,NA,189.1,212,70.8,123,72,2021-01-31,"11459"
+"Kerryon Johnson","RB","DET",NA,NA,189.6,206.6,58,122,82,2021-01-31,"17247"
+"O.J. Howard","TE","TBB",NA,NA,189.9,196.5,23.8,121,104,2021-01-31,"16380"
+"Anthony Miller","WR","CHI",NA,NA,190.1,212.6,64.3,120,71,2021-01-31,"17255"
+"N'Keal Harry","WR","NEP",NA,NA,190.4,212.8,70.2,120,71,2021-01-31,"18222"
+"Allen Lazard","WR","GBP",NA,NA,193.7,214.8,72.8,111,67,2021-01-31,"17301"
+"2021 Pick 3.01","PICK",NA,NA,NA,193.9475,193.99,NA,110,110,2021-01-31,NA
+"Boston Scott","RB","PHI",NA,NA,198.4,213,60.2,99,70,2021-01-31,"17612"
+"2021 Pick 3.02","PICK",NA,NA,NA,200.6525,198.5875,NA,94,99,2021-01-31,NA
+"Lynn Bowden Jr.","RB","MIA",NA,NA,200.9,214.5,61.2,94,68,2021-01-31,"19587"
+"Drew Lock","QB","DEN",NA,NA,204,94.7,27.5,87,1134,2021-01-31,"18225"
+"2021 Pick 3.03","PICK",NA,NA,NA,205.0825,202.2125,NA,85,91,2021-01-31,NA
+"Benny Snell Jr.","RB","PIT",NA,NA,206.4,217.8,59.8,82,63,2021-01-31,"18609"
+"Darrynton Evans","RB","TEN",NA,NA,207,218.2,62.4,81,62,2021-01-31,"19418"
+"Duke Johnson Jr.","RB","HOU",NA,NA,208.7,219.1,63.2,78,61,2021-01-31,"13939"
+"2021 Pick 3.04","PICK",NA,NA,NA,209.205,205.5725,NA,77,84,2021-01-31,NA
+"Antonio Brown","WR","TBB",NA,NA,209.6,223.1,77.5,76,55,2021-01-31,"9808"
+"Damien Williams","RB","KCC",NA,NA,211.3,220.3,63,73,59,2021-01-31,"12334"
+"A.J. Green","WR","CIN",NA,NA,211.4,223.9,74.2,73,54,2021-01-31,"9857"
+"2022 Early 3rd","PICK",NA,NA,NA,211.71734526869,209.58609526869,NA,73,76,2021-01-31,NA
+"Jared Cook","TE","NOS",NA,NA,212.6,212.7,31.2,71,71,2021-01-31,"9265"
+"Gerald Everett","TE","LAR",NA,NA,213.1,213.1,28.8,70,70,2021-01-31,"16459"
+"2021 Pick 3.05","PICK",NA,NA,NA,213.245,208.7025,NA,70,78,2021-01-31,NA
+"James Washington","WR","PIT",NA,NA,213.7,224.9,77.3,69,53,2021-01-31,"17254"
+"2021 Pick 3.06","PICK",NA,NA,NA,216.87,211.2875,NA,64,73,2021-01-31,NA
+"Sammy Watkins","WR","KCC",NA,NA,217,226.2,78.3,64,52,2021-01-31,"12118"
+"Nelson Agholor","WR","LVR",NA,NA,217.9,226.6,79.3,63,51,2021-01-31,"13969"
+"Rob Gronkowski","TE","TBB",NA,NA,219,217.1,30.5,61,64,2021-01-31,"9721"
+"2021 Pick 3.07","PICK",NA,NA,NA,220.0625,213.3675,NA,60,70,2021-01-31,NA
+"Emmanuel Sanders","WR","NOS",NA,NA,220.9,227.7,80.3,58,50,2021-01-31,"9707"
+"Wayne Gallman","RB","NYG",NA,NA,221.7,224.3,63.4,57,54,2021-01-31,"16422"
+"2021 Pick 3.08","PICK",NA,NA,NA,223.4725,215.46,NA,55,66,2021-01-31,NA
+"Keke Coutee","WR","HOU",NA,NA,225.7,229.4,90.3,52,48,2021-01-31,"17490"
+"2021 Pick 3.09","PICK",NA,NA,NA,227.1375,217.345,NA,50,64,2021-01-31,NA
+"2022 3rd","PICK",NA,NA,NA,227.208803602023,220.17922026869,NA,50,59,2021-01-31,NA
+"2022 Mid 3rd","PICK",NA,NA,NA,227.90797026869,221.69984526869,NA,50,57,2021-01-31,NA
+"2021 Pick 3.10","PICK",NA,NA,NA,230.7125,218.8475,NA,46,61,2021-01-31,NA
+"Mitchell Trubisky","QB","CHI",NA,NA,231.1,134.6,30.7,46,444,2021-01-31,"16381"
+"Ben Roethlisberger","QB","PIT",NA,NA,232,138.3,32.3,45,407,2021-01-31,"9039"
+"Van Jefferson","WR","LAR",NA,NA,233.1,231.8,86.3,44,45,2021-01-31,"19483"
+"Justin Jackson","RB","LAC",NA,NA,233.9,227.1,69.8,43,51,2021-01-31,"17300"
+"2021 Pick 3.11","PICK",NA,NA,NA,234.2925,220.5375,NA,43,59,2021-01-31,NA
+"David Njoku","TE","CLE",NA,NA,235,227.9,27.8,42,50,2021-01-31,"16399"
+"Breshad Perriman","WR","NYJ",NA,NA,235.9,232.7,86.8,41,44,2021-01-31,"13975"
+"2023 3rd","PICK",NA,NA,NA,236.704273870713,229.67469053738,NA,40,48,2021-01-31,NA
+"Mark Ingram II","RB","FA",NA,NA,237.2,227.7,71.4,40,50,2021-01-31,"9872"
+"Salvon Ahmed","RB","MIA",NA,NA,237.7,227.7,69.4,39,50,2021-01-31,"19449"
+"2021 Pick 3.12","PICK",NA,NA,NA,237.88,222.295,NA,39,57,2021-01-31,NA
+"Hunter Renfrow","WR","LVR",NA,NA,241.1,234.3,88.3,36,43,2021-01-31,"18345"
+"2021 Pick 4.01","PICK",NA,NA,NA,241.4,223.8275,NA,36,55,2021-01-31,NA
+"2022 Late 3rd","PICK",NA,NA,NA,242.00109526869,229.25172026869,NA,36,48,2021-01-31,NA
+"Cam Newton","QB","NEP",NA,NA,242.7,192.2,32,35,115,2021-01-31,"9869"
+"Mike Davis","RB","CAR",NA,NA,244.7,228.9,65.8,33,48,2021-01-31,"13943"
+"2021 Pick 4.02","PICK",NA,NA,NA,244.88,225.4075,NA,33,53,2021-01-31,NA
+"Giovani Bernard","RB","CIN",NA,NA,245.9,229.1,67.6,33,48,2021-01-31,"11644"
+"Donovan Peoples-Jones","WR","CLE",NA,NA,248.2,236.4,89.8,31,41,2021-01-31,"19298"
+"2021 Pick 4.03","PICK",NA,NA,NA,248.3775,227.33,NA,31,50,2021-01-31,NA
+"Chad Hansen","WR","HOU",NA,NA,248.5,236.5,122,31,41,2021-01-31,"16430"
+"Jameis Winston","QB","NOS",NA,NA,249.4,199.5,27.8,30,97,2021-01-31,"13891"
+"Josh Reynolds","WR","LAR",NA,NA,251.4,237.4,91.7,29,40,2021-01-31,"16439"
+"Quintez Cephus","WR","DET",NA,NA,251.5,237.4,89,28,40,2021-01-31,"19396"
+"2021 Pick 4.04","PICK",NA,NA,NA,251.8625,229.52,NA,28,48,2021-01-31,NA
+"Tim Patrick","WR","DEN",NA,NA,252.9,237.8,91.7,28,39,2021-01-31,"16556"
+"Julian Edelman","WR","NEP",NA,NA,253.6,238,93.5,27,39,2021-01-31,"9332"
+"Russell Gage","WR","ATL",NA,NA,253.9,238.1,90.5,27,39,2021-01-31,"17606"
+"Jakobi Meyers","WR","NEP",NA,NA,253.9,238.1,92.2,27,39,2021-01-31,"18598"
+"Andy Isabella","WR","ARI",NA,NA,255.3,238.6,91,26,39,2021-01-31,"18409"
+"2021 Pick 4.05","PICK",NA,NA,NA,255.3325,231.75,NA,26,45,2021-01-31,NA
+"2022 Early 4th","PICK",NA,NA,NA,256.12547026869,236.01672026869,NA,26,41,2021-01-31,NA
+"DeeJay Dallas","RB","SEA",NA,NA,256.3,230.9,73.2,25,46,2021-01-31,"19521"
+"Tevin Coleman","RB","SFO",NA,NA,256.6,230.9,73.6,25,46,2021-01-31,"13926"
+"Matt Breida","RB","MIA",NA,NA,258.1,231.2,75.6,24,46,2021-01-31,"17058"
+"2021 Pick 4.06","PICK",NA,NA,NA,258.8025,234.09,NA,24,43,2021-01-31,NA
+"Marquez Valdes-Scantling","WR","GBP",NA,NA,259.4,239.8,94.7,24,37,2021-01-31,"17528"
+"Harrison Bryant","TE","CLE",NA,NA,262.1,246.1,32,22,32,2021-01-31,"19389"
+"2021 Pick 4.07","PICK",NA,NA,NA,262.29,236.555,NA,22,40,2021-01-31,NA
+"Tyler Johnson","WR","TBB",NA,NA,263.2,241,94.2,22,36,2021-01-31,"18633"
+"Drew Brees","QB","NOS",NA,NA,264.2,211.4,46.7,21,73,2021-01-31,"9200"
+"Justice Hill","RB","BAL",NA,NA,264.3,232.2,76,21,45,2021-01-31,"18256"
+"Collin Johnson","WR","JAC",NA,NA,264.5,241.4,93.4,21,36,2021-01-31,"18289"
+"2021 Pick 4.08","PICK",NA,NA,NA,265.7825,239.1325,NA,20,38,2021-01-31,NA
+"Albert Okwuegbunam","TE","DEN",NA,NA,266.1,248.8,33.5,20,30,2021-01-31,"18246"
+"Ian Thomas","TE","CAR",NA,NA,268.9,250.6,40.8,19,29,2021-01-31,"17387"
+"2021 Pick 4.09","PICK",NA,NA,NA,269.27,241.8075,NA,19,36,2021-01-31,NA
+"Chris Thompson","RB","JAC",NA,NA,269.6,233.1,100.8,19,44,2021-01-31,"11651"
+"2022 Mid 4th","PICK",NA,NA,NA,270.04734526869,244.87734526869,NA,18,33,2021-01-31,NA
+"2022 4th","PICK",NA,NA,NA,270.058386935356,245.50547026869,NA,18,33,2021-01-31,NA
+"Jerick McKinnon","RB","SFO",NA,NA,270.5,233.2,77.6,18,44,2021-01-31,"12209"
+"John Ross","WR","CIN",NA,NA,270.8,243.3,105.8,18,35,2021-01-31,"16388"
+"2021 Pick 4.10","PICK",NA,NA,NA,272.76,244.61,NA,17,33,2021-01-31,NA
+"Devonta Freeman","RB","BUF",NA,NA,273.4,233.7,95.2,17,43,2021-01-31,"12108"
+"Devin Duvernay","WR","BAL",NA,NA,273.7,244.2,98.5,17,34,2021-01-31,"19270"
+"Philip Rivers","QB","IND",NA,NA,275,220,65.5,16,60,2021-01-31,"9509"
+"Ito Smith","RB","ATL",NA,NA,275.7,234.1,73.6,16,43,2021-01-31,"17249"
+"2021 Pick 4.11","PICK",NA,NA,NA,276.25,247.525,NA,16,31,2021-01-31,NA
+"Miles Boykin","WR","BAL",NA,NA,276.4,245,97.8,16,33,2021-01-31,"18636"
+"Will Dissly","TE","SEA",NA,NA,276.6,255.8,37.5,16,26,2021-01-31,"18049"
+"Vance McDonald","TE","PIT",NA,NA,278,256.8,86.7,15,25,2021-01-31,"11699"
+"Ryan Fitzpatrick","QB","MIA",NA,NA,279.2,223.4,42.2,15,55,2021-01-31,"9545"
+"2023 4th","PICK",NA,NA,NA,279.553857204046,255.00094053738,NA,15,26,2021-01-31,NA
+"2021 Pick 4.12","PICK",NA,NA,NA,279.7475,250.565,NA,15,29,2021-01-31,NA
+"Scotty Miller","WR","TBB",NA,NA,280.6,246.2,108,14,32,2021-01-31,"18714"
+"Tre'Quan Smith","WR","NOS",NA,NA,281.6,246.5,98.7,14,32,2021-01-31,"17261"
+"Cam Sims","WR","WAS",NA,NA,282.4,246.8,99.4,14,32,2021-01-31,"18016"
+"2021 Pick 5.01","PICK",NA,NA,NA,283.2525,253.74,NA,14,27,2021-01-31,NA
+"Rashard Higgins","WR","CLE",NA,NA,283.3,247.1,107.3,13,32,2021-01-31,"15586"
+"Golden Tate","WR","NYG",NA,NA,284,247.3,108.5,13,31,2021-01-31,"9683"
+"2022 Late 4th","PICK",NA,NA,NA,284.00234526869,255.62234526869,NA,13,26,2021-01-31,NA
+"Randall Cobb","WR","HOU",NA,NA,284.3,247.4,103.3,13,31,2021-01-31,"9902"
+"Royce Freeman","RB","DEN",NA,NA,285.3,235.7,77.6,13,41,2021-01-31,"17245"
+"Jack Doyle","TE","IND",NA,NA,286,262.1,41.3,13,22,2021-01-31,"11987"
+"Malcolm Brown","RB","LAR",NA,NA,286.4,235.9,79.4,13,41,2021-01-31,"13953"
+"2021 Pick 5.02","PICK",NA,NA,NA,286.7675,257.045,NA,12,25,2021-01-31,NA
+"Antonio Gandy-Golden","WR","WAS",NA,NA,287.2,248.2,104.6,12,31,2021-01-31,"19338"
+"Greg Ward","WR","PHI",NA,NA,287.3,248.3,112.8,12,31,2021-01-31,"17130"
+"Dede Westbrook","WR","JAC",NA,NA,288.8,248.7,123.8,12,30,2021-01-31,"16436"
+"Tyrell Williams","WR","LVR",NA,NA,289.4,248.9,109,12,30,2021-01-31,"14324"
+"Anthony Firkser","TE","TEN",NA,NA,290,264.8,42,12,21,2021-01-31,"16787"
+"2021 Pick 5.03","PICK",NA,NA,NA,290.295,260.5,NA,11,23,2021-01-31,NA
+"2021 Pick 5.04","PICK",NA,NA,NA,293.8325,264.0975,NA,11,21,2021-01-31,NA
+"Eno Benjamin","RB","ARI",NA,NA,294.8,237.3,79.6,10,40,2021-01-31,"19361"
+"Carlos Hyde","RB","SEA",NA,NA,294.9,237.3,81.8,10,40,2021-01-31,"12105"
+"Kendrick Bourne","WR","SFO",NA,NA,296,250.9,103.5,10,29,2021-01-31,"17066"
+"Dante Pettis","WR","NYG",NA,NA,296,250.9,148.2,10,29,2021-01-31,"17264"
+"Marquez Callaway","WR","NOS",NA,NA,296.8,251.1,102.8,10,29,2021-01-31,"19505"
+"2021 Pick 5.05","PICK",NA,NA,NA,297.385,267.8525,NA,10,19,2021-01-31,NA
+"2022 Early 5th","PICK",NA,NA,NA,298.03234526869,268.34109526869,NA,10,19,2021-01-31,NA
+"Dalton Schultz","TE","DAL",NA,NA,298.6,270.6,37.3,9,18,2021-01-31,"17349"
+"Darwin Thompson","RB","KCC",NA,NA,299,238,90.4,9,39,2021-01-31,"18620"
+"Dan Arnold","TE","ARI",NA,NA,300.8,272.1,36.8,9,18,2021-01-31,"17143"
+"2021 Pick 5.06","PICK",NA,NA,NA,300.955,271.765,NA,9,18,2021-01-31,NA
+"Dion Lewis","RB","NYG",NA,NA,301,238.3,106,9,39,2021-01-31,"9983"
+"Zach Pascal","WR","IND",NA,NA,301.5,252.6,106,9,28,2021-01-31,"16972"
+"John Hightower","WR","PHI",NA,NA,301.5,252.6,133.8,9,28,2021-01-31,"19329"
+"Steven Sims","WR","WAS",NA,NA,301.7,252.6,107.2,9,28,2021-01-31,"18962"
+"Greg Olsen","TE","SEA",NA,NA,301.8,272.7,99.5,9,17,2021-01-31,"9238"
+"Jace Sternberger","TE","GBP",NA,NA,301.9,272.8,43.4,9,17,2021-01-31,"18614"
+"Jacob Hollister","TE","SEA",NA,NA,302.4,273.1,49.4,9,17,2021-01-31,"16527"
+"Marcus Mariota","QB","LVR",NA,NA,302.6,242.1,38,9,36,2021-01-31,"13890"
+"DeSean Jackson","WR","PHI",NA,NA,303.6,253.2,112.7,8,27,2021-01-31,"9186"
+"Jalen Hurd","WR","SFO",NA,NA,303.7,253.2,107,8,27,2021-01-31,"18318"
+"Isaiah McKenzie","WR","BUF",NA,NA,303.7,253.2,129.8,8,27,2021-01-31,"16604"
+"Alex Smith","QB","WAS",NA,NA,304.4,243.5,48.8,8,34,2021-01-31,"9012"
+"2021 Pick 5.07","PICK",NA,NA,NA,304.545,275.845,NA,8,16,2021-01-31,NA
+"Keelan Cole Sr.","WR","JAC",NA,NA,305,253.6,115,8,27,2021-01-31,"16864"
+"Trayveon Williams","RB","CIN",NA,NA,305.3,239,82.8,8,38,2021-01-31,"18607"
+"Travis Fulgham","WR","PHI",NA,NA,306.8,254.2,118.2,8,27,2021-01-31,"18470"
+"Bryce Love","RB","WAS",NA,NA,307,239.3,87.2,8,38,2021-01-31,"18266"
+"C.J. Uzomah","TE","CIN",NA,NA,307,276.2,39.2,8,16,2021-01-31,"14084"
+"Kenny Stills","WR","BUF",NA,NA,307.3,254.4,117.5,8,27,2021-01-31,"11611"
+"Donald Parham Jr.","TE","LAC",NA,NA,308,276.9,43,8,16,2021-01-31,"18835"
+"2021 Pick 5.08","PICK",NA,NA,NA,308.1575,280.0925,NA,8,15,2021-01-31,NA
+"Andy Dalton","QB","DAL",NA,NA,308.3,246.7,38.5,7,32,2021-01-31,"9907"
+"Tyron Johnson","WR","LAC",NA,NA,308.7,254.8,108.3,7,26,2021-01-31,"18804"
+"Devine Ozigbo","RB","JAC",NA,NA,309.5,239.7,93.2,7,38,2021-01-31,"18630"
+"Deonte Harris","WR","NOS",NA,NA,309.5,255,109,7,26,2021-01-31,"18876"
+"Demarcus Robinson","WR","KCC",NA,NA,311.3,255.6,111.5,7,26,2021-01-31,"15665"
+"Jordan Love","QB","GBP",NA,NA,311.7,249.3,37,7,30,2021-01-31,"19246"
+"2021 Pick 5.09","PICK",NA,NA,NA,311.7875,284.5125,NA,7,13,2021-01-31,NA
+"Brian Hill","RB","ATL",NA,NA,312.1,240.2,83.2,7,37,2021-01-31,"16448"
+"Jordan Wilkins","RB","IND",NA,NA,312.2,240.2,95.4,7,37,2021-01-31,"17497"
+"2022 5th","PICK",NA,NA,NA,312.244428602023,283.41609526869,NA,7,13,2021-01-31,NA
+"2022 Mid 5th","PICK",NA,NA,NA,312.25609526869,283.38422026869,NA,7,13,2021-01-31,NA
+"Dalton Keene","TE","NEP",NA,NA,312.3,279.8,54.8,7,15,2021-01-31,"19563"
+"Jordan Howard","RB","PHI",NA,NA,313.5,240.4,93.2,7,37,2021-01-31,"15585"
+"Larry Fitzgerald","WR","ARI",NA,NA,313.8,256.3,118.2,7,25,2021-01-31,"9383"
+"Jason Huntley","RB","PHI",NA,NA,314,240.5,99.7,7,37,2021-01-31,"19655"
+"Kyle Rudolph","TE","MIN",NA,NA,314.4,281.2,45.2,6,14,2021-01-31,"9906"
+"2021 Pick 5.10","PICK",NA,NA,NA,314.9575,285.99,NA,6,13,2021-01-31,NA
+"DaeSean Hamilton","WR","DEN",NA,NA,315.8,256.9,134.2,6,25,2021-01-31,"17470"
+"Phillip Walker","QB","CAR",NA,NA,316,252.8,52.2,6,28,2021-01-31,"16841"
+"Dez Bryant","WR","BAL",NA,NA,317,257.3,155,6,25,2021-01-31,"9681"
+"JaMycal Hasty","RB","SFO",NA,NA,318,241.1,92.6,6,36,2021-01-31,"19627"
+"Jalen Guyton","WR","LAC",NA,NA,318,257.6,110.8,6,25,2021-01-31,"18941"
+"Jacoby Brissett","QB","IND",NA,NA,318.2,254.6,42.8,6,26,2021-01-31,"15642"
+"2021 Pick 5.11","PICK",NA,NA,NA,318.6525,290.465,NA,6,11,2021-01-31,NA
+"Alshon Jeffery","WR","PHI",NA,NA,319.2,258,118.3,6,24,2021-01-31,"11199"
+"Ryquell Armstead","RB","JAC",NA,NA,319.5,241.4,89.4,6,36,2021-01-31,"18521"
+"Josh Oliver","TE","JAC",NA,NA,319.5,284.6,43,6,13,2021-01-31,"18487"
+"Cameron Brate","TE","TBB",NA,NA,319.5,284.6,43.4,6,13,2021-01-31,"13470"
+"Trey Burton","TE","IND",NA,NA,321.1,285.7,45.4,6,13,2021-01-31,"12153"
+"Rodney Smith","RB","CAR",NA,NA,321.3,241.7,90.3,6,36,2021-01-31,"19470"
+"2023 5th","PICK",NA,NA,NA,321.739898870713,292.911565537379,NA,5,11,2021-01-31,NA
+"Mo Alie-Cox","TE","IND",NA,NA,322.2,286.4,42.6,5,13,2021-01-31,"16579"
+"2021 Pick 5.12","PICK",NA,NA,NA,322.4,295.1425,NA,5,10,2021-01-31,NA
+"Geronimo Allison","WR","DET",NA,NA,323,259.1,142,5,24,2021-01-31,"15853"
+"Zay Jones","WR","LVR",NA,NA,323,259.1,132.7,5,24,2021-01-31,"16431"
+"Ty Johnson","RB","NYJ",NA,NA,323.3,242,86,5,36,2021-01-31,"18406"
+"Albert Wilson","WR","MIA",NA,NA,323.5,259.3,127,5,24,2021-01-31,"12338"
+"Gardner Minshew II","QB","JAC",NA,NA,323.8,259.1,36.5,5,24,2021-01-31,"18562"
+"Kalen Ballage","RB","LAC",NA,NA,323.8,242.1,86.8,5,36,2021-01-31,"17250"
+"Darren Fells","TE","HOU",NA,NA,324.3,287.8,55.7,5,12,2021-01-31,"13636"
+"LeSean McCoy","RB","TBB",NA,NA,324.5,242.2,116,5,35,2021-01-31,"9398"
+"David Moore","WR","SEA",NA,NA,325.8,260,128.2,5,23,2021-01-31,"16757"
+"Jakeem Grant","WR","MIA",NA,NA,326.3,260.1,124.5,5,23,2021-01-31,"15680"
+"2022 Late 5th","PICK",NA,NA,NA,326.44484526869,298.52297026869,NA,5,9,2021-01-31,NA
+"Darrel Williams","RB","KCC",NA,NA,327,242.6,88.2,5,35,2021-01-31,"17514"
+"Auden Tate","WR","CIN",NA,NA,327,260.3,115.3,5,23,2021-01-31,"17306"
+"Damiere Byrd","WR","NEP",NA,NA,327,260.3,123.5,5,23,2021-01-31,"14222"
+"Adrian Peterson","RB","DET",NA,NA,327.4,242.7,89.6,5,35,2021-01-31,"9006"
+"Jordan Akins","TE","HOU",NA,NA,328,290.3,41,5,11,2021-01-31,"17415"
+"Jimmy Graham","TE","CHI",NA,NA,330,291.6,56,5,11,2021-01-31,"9712"
+"Kahale Warring","TE","HOU",NA,NA,330.2,291.8,45,4,11,2021-01-31,"18680"
+"Olamide Zaccheaus","WR","ATL",NA,NA,331,261.5,129.5,4,23,2021-01-31,"18864"
+"Jacob Eason","QB","IND",NA,NA,331.2,265,37.8,4,21,2021-01-31,"19220"
+"Isaiah Coulter","WR","HOU",NA,NA,332.6,262,134.6,4,22,2021-01-31,"19771"
+"Foster Moreau","TE","LVR",NA,NA,333.5,294,48.2,4,10,2021-01-31,"18397"
+"Adam Humphries","WR","TEN",NA,NA,333.8,262.4,113.6,4,22,2021-01-31,"14498"
+"Richie James Jr.","WR","SFO",NA,NA,334,262.4,135.3,4,22,2021-01-31,"17303"
+"Dare Ogunbowale","RB","JAC",NA,NA,334.4,243.9,94.2,4,34,2021-01-31,"16879"
+"JJ Arcega-Whiteside","WR","PHI",NA,NA,334.4,262.6,128.2,4,22,2021-01-31,"18235"
+"Quez Watkins","WR","PHI",NA,NA,335,262.7,126.6,4,22,2021-01-31,"19715"
+"Isaiah Ford","WR","MIA",NA,NA,335,262.7,136.8,4,22,2021-01-31,"16432"
+"Peyton Barber","RB","WAS",NA,NA,335.4,244,106.6,4,34,2021-01-31,"15920"
+"Dwayne Haskins","QB","PIT",NA,NA,335.8,268.7,40.5,4,19,2021-01-31,"18214"
+"Jaylen Samuels","RB","PIT",NA,NA,335.9,244.1,93.6,4,34,2021-01-31,"17271"
+"Rex Burkhead","RB","NEP",NA,NA,337.2,244.3,98.2,4,34,2021-01-31,"11655"
+"KeeSean Johnson","WR","ARI",NA,NA,337.2,263.4,127.6,4,22,2021-01-31,"18618"
+"Lamar Miller","RB","WAS",NA,NA,337.3,244.4,122.3,4,34,2021-01-31,"11185"
+"Freddie Swain","WR","SEA",NA,NA,338,263.7,126.5,4,21,2021-01-31,"19729"
+"Josh Adams","RB","NYJ",NA,NA,341.5,245,105.7,3,33,2021-01-31,"17248"
+"Mohamed Sanu","WR","DET",NA,NA,342,264.9,133.2,3,21,2021-01-31,"11200"
+"Bo Scarbrough","RB","SEA",NA,NA,342.3,245.2,106.3,3,33,2021-01-31,"17299"
+"Drew Sample","TE","CIN",NA,NA,342.8,300.2,48.6,3,9,2021-01-31,"18561"
+"Jarrett Stidham","QB","NEP",NA,NA,343.2,274.6,47.4,3,17,2021-01-31,"18604"
+"Devontae Booker","RB","LVR",NA,NA,343.8,245.4,102.4,3,33,2021-01-31,"15555"
+"DeAndre Washington","RB","MIA",NA,NA,344,245.5,103,3,33,2021-01-31,"15806"
+"Tyler Eifert","TE","JAC",NA,NA,344.7,301.5,44.6,3,9,2021-01-31,"11692"
+"Mike Boone","RB","MIN",NA,NA,345.9,245.8,94.6,3,33,2021-01-31,"17813"
+"Joe Reed","WR","LAC",NA,NA,346,266.1,151.5,3,20,2021-01-31,"19468"
+"Devin Asiasi","TE","NEP",NA,NA,347.2,303.2,46.8,3,8,2021-01-31,"19435"
+"Patrick Laird","RB","MIA",NA,NA,350.7,246.6,104.3,3,32,2021-01-31,"18332"
+"Olabisi Johnson","WR","MIN",NA,NA,351.3,267.7,151,3,19,2021-01-31,"18713"
+"Devin Funchess","WR","GBP",NA,NA,352.8,268.1,120,3,19,2021-01-31,"13915"
+"Nick Foles","QB","CHI",NA,NA,353.6,282.9,44,3,14,2021-01-31,"11176"
+"Tyrod Taylor","QB","LAC",NA,NA,354.3,283.5,45.6,3,13,2021-01-31,"10007"
+"Jalen Richard","RB","LVR",NA,NA,354.9,247.3,98.8,3,31,2021-01-31,"16120"
+"Marquise Goodwin","WR","PHI",NA,NA,355,268.8,151.7,3,19,2021-01-31,"11599"
+"Chris Conley","WR","JAC",NA,NA,355.2,268.9,124.8,2,19,2021-01-31,"14151"
+"D'Onta Foreman","RB","TEN",NA,NA,355.5,247.4,111,2,31,2021-01-31,"16407"
+"Qadree Ollison","RB","ATL",NA,NA,355.7,247.4,115.3,2,31,2021-01-31,"18480"
+"T.J. Yeldon","RB","BUF",NA,NA,356,247.5,112.3,2,31,2021-01-31,"13941"
+"Kelvin Harmon","WR","WAS",NA,NA,357,269.4,124.8,2,19,2021-01-31,"18228"
+"Tyler Conklin","TE","MIN",NA,NA,357.5,310.1,49,2,7,2021-01-31,"17598"
+"Kaden Smith","TE","NYG",NA,NA,358,310.4,55.3,2,7,2021-01-31,"18293"
+"Travis Homer","RB","SEA",NA,NA,358.7,247.9,103.8,2,31,2021-01-31,"18616"
+"Ryan Griffin","TE","NYJ",NA,NA,359,311.1,68,2,7,2021-01-31,"11830"
+"Equanimeous St. Brown","WR","GBP",NA,NA,359,270,143.5,2,18,2021-01-31,"17307"
+"K.J. Hill","WR","LAC",NA,NA,361,270.6,145.8,2,18,2021-01-31,"19332"
+"Brycen Hopkins","TE","LAR",NA,NA,361.8,312.9,53,2,7,2021-01-31,"19234"
+"Cedrick Wilson","WR","DAL",NA,NA,364,271.5,143.7,2,18,2021-01-31,"17262"
+"Colby Parkinson","TE","SEA",NA,NA,364.3,314.7,53.3,2,6,2021-01-31,"19372"
+"Jordan Reed","TE","SFO",NA,NA,364.5,314.8,56,2,6,2021-01-31,"11690"
+"Danny Amendola","WR","DET",NA,NA,366.7,272.4,145.2,2,17,2021-01-31,"9146"
+"Hunter Bryant","TE","DET",NA,NA,366.8,316.3,58.3,2,6,2021-01-31,"19242"
+"James O'Shaughnessy","TE","JAC",NA,NA,368,317.1,59.5,2,6,2021-01-31,"14146"
+"Braxton Berrios","WR","NYJ",NA,NA,368.6,272.9,128.3,2,17,2021-01-31,"17289"
+"Ty Montgomery","RB","NOS",NA,NA,368.7,249.6,120,2,30,2021-01-31,"13977"
+"Jonathan Williams","RB","WAS",NA,NA,370,249.8,131,2,30,2021-01-31,"15611"
+"Tyler Kroft","TE","BUF",NA,NA,370.2,318.6,61.7,2,6,2021-01-31,"13960"
+"Josiah Deguara","TE","GBP",NA,NA,372,319.8,63.5,2,6,2021-01-31,"19456"
+"Adam Shaheen","TE","MIA",NA,NA,372,319.8,63.5,2,6,2021-01-31,"16457"
+"Durham Smythe","TE","MIA",NA,NA,372.5,320.1,64,2,6,2021-01-31,"17508"
+"Ryan Izzo","TE","NEP",NA,NA,372.5,320.1,64,2,6,2021-01-31,"17541"
+"Justin Watson","WR","TBB",NA,NA,372.5,274.1,151,2,17,2021-01-31,"17603"
+"Ross Dwelley","TE","SFO",NA,NA,373,320.5,64.5,2,6,2021-01-31,"17886"
+"Trey Quinn","WR","LVR",NA,NA,373.5,274.4,155.2,2,17,2021-01-31,"17266"
+"Robert Foster","WR","WAS",NA,NA,373.5,274.4,156,2,17,2021-01-31,"17458"
+"Nick Boyle","TE","BAL",NA,NA,374,321.1,65.5,2,6,2021-01-31,"13963"
+"Dexter Williams","RB","GBP",NA,NA,375,250.6,126.7,2,29,2021-01-31,"18460"
+"Jaeden Graham","TE","ATL",NA,NA,375,321.8,66.5,2,5,2021-01-31,"18135"
+"Tyler Davis","TE","JAC",NA,NA,376.5,322.8,68,2,5,2021-01-31,"19811"
+"Jeremy McNichols","RB","TEN",NA,NA,377.5,251,114.7,1,29,2021-01-31,"16445"
+"Stephen Anderson","TE","LAC",NA,NA,378,323.8,69.5,1,5,2021-01-31,"15760"
+"Richard Rodgers","TE","PHI",NA,NA,378.5,324.2,70,1,5,2021-01-31,"12233"
+"Samaje Perine","RB","CIN",NA,NA,379.7,251.4,102.3,1,29,2021-01-31,"16423"
+"Phillip Dorsett II","WR","SEA",NA,NA,381,276.7,147.2,1,16,2021-01-31,"13979"
+"Jesse James","TE","DET",NA,NA,381.5,326.2,73,1,5,2021-01-31,"13959"
+"Dontrell Hilliard","RB","HOU",NA,NA,382,251.8,125,1,28,2021-01-31,"18037"
+"Charlie Woerner","TE","SFO",NA,NA,382.5,326.8,74,1,5,2021-01-31,"19665"
+"Willie Snead IV","WR","BAL",NA,NA,383,277.3,133.5,1,16,2021-01-31,"12904"
+"Matt LaCosse","TE","NEP",NA,NA,383.5,327.5,75,1,5,2021-01-31,"14288"
+"Tanner Hudson","TE","TBB",NA,NA,384,327.9,75.5,1,5,2021-01-31,"17826"
+"Ricky Seals-Jones","TE","KCC",NA,NA,384.2,328,75.7,1,5,2021-01-31,"16730"
+"Raymond Calais","RB","LAR",NA,NA,384.8,252.3,107.5,1,28,2021-01-31,"19613"
+"Kyle Allen","QB","WAS",NA,NA,384.9,307.9,45.3,1,8,2021-01-31,"17869"
+"Isaiah Hodgins","WR","BUF",NA,NA,385.8,278.1,145.5,1,15,2021-01-31,"19375"
+"Cordarrelle Patterson","WR","CHI",NA,NA,386.2,278.3,146,1,15,2021-01-31,"11613"
+"Pharaoh Brown","TE","HOU",NA,NA,386.5,329.5,78,1,5,2021-01-31,"16937"
+"Jason Witten","TE","LVR",NA,NA,387.2,330,78.7,1,5,2021-01-31,"9275"
+"Nick Mullens","QB","SFO",NA,NA,387.3,309.9,47.8,1,7,2021-01-31,"16726"
+"Dominique Dafney","TE","GBP",NA,NA,387.5,330.2,79,1,4,2021-01-31,"22672"
+"Lil'Jordan Humphrey","WR","NOS",NA,NA,387.9,278.8,147.7,1,15,2021-01-31,"18590"
+"Josh Gordon","WR","SEA",NA,NA,387.9,278.8,147.7,1,15,2021-01-31,"11440"
+"Riley Ridley","WR","CHI",NA,NA,388,278.8,151.2,1,15,2021-01-31,"18264"
+"Byron Pringle","WR","KCC",NA,NA,388.5,279,163.3,1,15,2021-01-31,"17739"
+"Marcedes Lewis","TE","GBP",NA,NA,389,331.2,80.5,1,4,2021-01-31,"9413"
+"Taylor Heinicke","QB","WAS",NA,NA,389.2,311.4,49.7,1,7,2021-01-31,"13932"
+"Nick Vannett","TE","DEN",NA,NA,389.5,331.5,81,1,4,2021-01-31,"15645"
+"Marqise Lee","WR","NEP",NA,NA,389.6,279.3,149.3,1,15,2021-01-31,"12120"
+"Chad Beebe","WR","MIN",NA,NA,389.8,279.4,149.5,1,15,2021-01-31,"18063"
+"Josh Hill","TE","NOS",NA,NA,390.5,332.2,82,1,4,2021-01-31,"13565"
+"Blake Bell","TE","DAL",NA,NA,390.5,332.2,82,1,4,2021-01-31,"13966"
+"Thaddeus Moss","TE","WAS",NA,NA,390.8,332.4,82.3,1,4,2021-01-31,"19622"
+"Mason Rudolph","QB","PIT",NA,NA,391.2,313,51.7,1,7,2021-01-31,"17234"
+"Troy Fumagalli","TE","DEN",NA,NA,391.5,332.9,83,1,4,2021-01-31,"17273"
+"Jordan Thomas","TE","IND",NA,NA,392.5,333.6,84,1,4,2021-01-31,"17399"
+"Virgil Green","TE","LAC",NA,NA,392.5,333.6,84,1,4,2021-01-31,"10026"
+"Rico Dowdle","RB","DAL",NA,NA,392.8,253.6,115.5,1,27,2021-01-31,"19647"
+"Maxx Williams","TE","ARI",NA,NA,393,333.9,84.5,1,4,2021-01-31,"13919"
+"Nick Keizer","TE","KCC",NA,NA,393.5,334.2,85,1,4,2021-01-31,"18054"
+"Tyler Huntley","QB","BAL",NA,NA,394.1,315.3,54.5,1,6,2021-01-31,"19297"
+"Reggie Bonnafon","RB","CAR",NA,NA,394.7,253.9,117.3,1,27,2021-01-31,"17867"
+"Hakeem Butler","WR","PHI",NA,NA,395,280.9,154.8,1,14,2021-01-31,"18229"
+"Jeremy Sprinkle","TE","WAS",NA,NA,396,335.9,87.5,1,4,2021-01-31,"16461"
+"C.J. Beathard","QB","SFO",NA,NA,396.6,317.3,57,1,6,2021-01-31,"16419"
+"Tyrie Cleveland","WR","DEN",NA,NA,396.9,281.5,156.7,1,14,2021-01-31,"19674"
+"Trent Taylor","WR","SFO",NA,NA,397.2,281.6,157,1,14,2021-01-31,"16505"
+"Frank Gore","RB","NYJ",NA,NA,397.3,254.3,120,1,27,2021-01-31,"9218"
+"Ameer Abdullah","RB","MIN",NA,NA,397.3,254.3,120,1,27,2021-01-31,"13924"
+"Corey Clement","RB","PHI",NA,NA,398,254.5,120.7,1,27,2021-01-31,"16446"
+"Allen Hurns","WR","MIA",NA,NA,398,281.9,157.8,1,14,2021-01-31,"12996"
+"Josh Rosen","QB","SFO",NA,NA,398.1,318.5,58.5,1,6,2021-01-31,"17235"
+"Jared Pinkney","TE","TEN",NA,NA,398.5,337.6,90,1,4,2021-01-31,"19250"
+"Marcus Johnson","WR","TEN",NA,NA,398.6,282,158.3,1,14,2021-01-31,"15814"
+"Jeff Smith","WR","NYJ",NA,NA,399.2,282.2,159,1,14,2021-01-31,"18791"
+"Nate Stanley","QB","MIN",NA,NA,399.6,319.7,60,1,6,2021-01-31,"19461"
+"Javon Wims","WR","CHI",NA,NA,400,282.5,159.8,1,14,2021-01-31,"17388"
+"Kyle Juszczyk","RB","SFO",NA,NA,400.3,254.8,123,1,26,2021-01-31,"11798"
+"Malcolm Perry","WR","MIA",NA,NA,400.8,282.7,160.5,1,14,2021-01-31,"19746"
+"Artavis Pierce","RB","CHI",NA,NA,401.3,255,124,1,26,2021-01-31,"19547"
+"Jake Butt","TE","DEN",NA,NA,401.5,339.6,93,1,4,2021-01-31,"16456"
+"Darrell Daniels","TE","ARI",NA,NA,401.5,339.6,93,1,4,2021-01-31,"16582"
+"Brandon Allen","QB","CIN",NA,NA,401.6,321.3,62,1,6,2021-01-31,"15745"
+"Demetrius Harris","TE","CHI",NA,NA,402,339.9,93.5,1,4,2021-01-31,"11881"
+"Jake Luton","QB","JAC",NA,NA,403.1,322.5,63.5,1,5,2021-01-31,"19618"
+"Brett Hundley","QB","ARI",NA,NA,403.6,322.9,64,1,5,2021-01-31,"13907"
+"Blake Bortles","QB","LAR",NA,NA,404.1,323.3,64.5,1,5,2021-01-31,"12090"
+"Stephen Sullivan","TE","SEA",NA,NA,404.5,341.6,96,1,3,2021-01-31,"19641"
+"Matt Barkley","QB","BUF",NA,NA,404.6,323.7,65,1,5,2021-01-31,"11686"
+"Laquon Treadwell","WR","ATL",NA,NA,404.8,283.9,164.5,1,13,2021-01-31,"15495"
+"Chad Henne","QB","KCC",NA,NA,405.2,324.2,65.7,1,5,2021-01-31,"9101"
+"Jeff Driskel","QB","DEN",NA,NA,405.6,324.5,66,1,5,2021-01-31,"15615"
+"Caleb Wilson","TE","PHI",NA,NA,406.5,342.9,98,1,3,2021-01-31,"18613"
+"Will Grier","QB","CAR",NA,NA,406.6,325.3,67,1,5,2021-01-31,"18241"
+"Easton Stick","QB","LAC",NA,NA,406.6,325.3,67,1,5,2021-01-31,"18446"
+"Ryan Finley","QB","CIN",NA,NA,407.1,325.7,67.5,1,5,2021-01-31,"18255"
+"Johnny Mundt","TE","LAR",NA,NA,407.5,343.6,99,1,3,2021-01-31,"16743"
+"James Morgan","QB","NYJ",NA,NA,407.6,326.1,68,1,5,2021-01-31,"19628"
+"Jake Fromm","QB","BUF",NA,NA,408.1,326.5,68.5,1,5,2021-01-31,"19243"
+"Colin Thompson","TE","CAR",NA,NA,408.5,344.3,100,1,3,2021-01-31,"17182"
+"Tommy Sweeney","TE","BUF",NA,NA,409.5,345,101,1,3,2021-01-31,"18325"
+"Tommy Stevens","QB","CAR",NA,NA,409.6,327.7,70,1,5,2021-01-31,"19838"
+"Geoff Swaim","TE","TEN",NA,NA,410.5,345.6,102,1,3,2021-01-31,"14164"
+"Case Keenum","QB","CLE",NA,NA,410.6,328.5,71,1,5,2021-01-31,"11425"
+"AJ McCarron","QB","HOU",NA,NA,410.6,328.5,71,1,5,2021-01-31,"12091"
+"Ben DiNucci","QB","DAL",NA,NA,410.6,328.5,71,1,5,2021-01-31,"19827"
+"Deon Cain","WR","BAL",NA,NA,411.2,285.9,171,1,13,2021-01-31,"17263"
+"Theo Riddick","RB","LVR",NA,NA,411.3,256.7,134,1,25,2021-01-31,"11649"
+"Josh Perkins","TE","PHI",NA,NA,411.5,346.3,103,1,3,2021-01-31,"16233"
+"Kurt Benkert","QB","ATL",NA,NA,411.6,329.3,72,1,5,2021-01-31,"17835"
+"John Wolford","QB","LAR",NA,NA,412.2,329.8,72.7,1,5,2021-01-31,"18185"
+"James Proche","WR","BAL",NA,NA,412.2,286.2,172,1,13,2021-01-31,"19359"
+"Cethan Carter","TE","CIN",NA,NA,412.5,347,104,1,3,2021-01-31,"16543"
+"Trace McSorley","QB","BAL",NA,NA,412.6,330.1,73,1,4,2021-01-31,"18475"
+"Logan Woodside","QB","TEN",NA,NA,413.1,330.5,73.5,1,4,2021-01-31,"17239"
+"C.J. Prosise","RB","TBB",NA,NA,413.3,257,136,1,25,2021-01-31,"15614"
+"Isaac Nauta","TE","GBP",NA,NA,413.5,347.6,105,1,3,2021-01-31,"18601"
+"David Blough","QB","DET",NA,NA,413.6,330.9,74,1,4,2021-01-31,"18756"
+"Chase Daniel","QB","DET",NA,NA,414.1,331.3,74.5,1,4,2021-01-31,"9111"
+"MyCole Pruitt","TE","TEN",NA,NA,414.5,348.3,106,1,3,2021-01-31,"13964"
+"Jordan Ta'amu","QB","KCC",NA,NA,414.6,331.7,75,1,4,2021-01-31,"19128"
+"Jesper Horsted","TE","CHI",NA,NA,415.5,349,107,1,3,2021-01-31,"18482"
+"Brian Hoyer","QB","NEP",NA,NA,415.6,332.5,76,1,4,2021-01-31,"9078"
+"Nate Sudfeld","QB","PHI",NA,NA,416.6,333.3,77,1,4,2021-01-31,"15833"
+"John Kelly","RB","CLE",NA,NA,417,257.6,139.7,1,25,2021-01-31,"17304"
+"Tim Boyle","QB","GBP",NA,NA,417.1,333.7,77.5,1,4,2021-01-31,"17801"
+"Mike Glennon","QB","JAC",NA,NA,417.6,334.1,78,1,4,2021-01-31,"11685"
+"Joshua Dobbs","QB","PIT",NA,NA,417.6,334.1,78,1,4,2021-01-31,"16417"
+"Colt McCoy","QB","NYG",NA,NA,418.6,334.9,79,1,4,2021-01-31,"9702"
+"Wendell Smallwood","RB","PIT",NA,NA,418.7,257.9,141.3,1,24,2021-01-31,"15672"
+"Ashton Dulin","WR","IND",NA,NA,418.8,288.2,178.5,1,12,2021-01-31,"18656"
+"Trenton Cannon","RB","CAR",NA,NA,420.3,258.2,143,1,24,2021-01-31,"17538"
+"Eric Saubert","TE","JAC",NA,NA,420.5,352.3,112,1,3,2021-01-31,"16706"
+"Jordan Scarlett","RB","MIA",NA,NA,420.8,258.3,143.5,1,24,2021-01-31,"18603"
+"Antonio Callaway","WR","KCC",NA,NA,420.8,288.8,180.5,1,12,2021-01-31,"17286"
+"Dontrelle Inman","WR","WAS",NA,NA,421.2,288.9,181,1,12,2021-01-31,"13105"
+"Jacob Breeland","TE","BAL",NA,NA,422.5,353.7,114,1,3,2021-01-31,"19306"
+"Devlin Hodges","QB","LAR",NA,NA,422.6,338.1,83,1,4,2021-01-31,"19063"
+"Taywan Taylor","WR","CLE",NA,NA,422.9,289.4,182.7,1,12,2021-01-31,"16426"
+"Tajae Sharpe","WR","KCC",NA,NA,423.6,289.6,183.3,0,12,2021-01-31,"15587"
+"Mack Hollins","WR","MIA",NA,NA,423.8,289.7,183.5,0,12,2021-01-31,"16489"
+"Kerrith Whyte Jr.","RB","DET",NA,NA,424.3,258.8,147,0,24,2021-01-31,"18625"
+"Deon Yelder","TE","KCC",NA,NA,425.5,355.7,117,0,2,2021-01-31,"17879"
+"Chris Streveler","QB","ARI",NA,NA,425.6,340.5,86,0,4,2021-01-31,"19755"
+"Alex Erickson","WR","CIN",NA,NA,425.8,290.3,185.5,0,11,2021-01-31,"15706"
+"Jake Kumerow","WR","BUF",NA,NA,425.9,290.3,185.7,0,11,2021-01-31,"14083"
+"Daniel Brown","TE","NYJ",NA,NA,426.5,356.4,118,0,2,2021-01-31,"14470"
+"Josh Johnson","QB","SFO",NA,NA,426.6,341.3,87,0,3,2021-01-31,"9326"
+"K.J. Osborn","WR","MIN",NA,NA,427.2,290.7,187,0,11,2021-01-31,"19708"
+"Jauan Jennings","WR","SFO",NA,NA,427.2,290.7,187,0,11,2021-01-31,"19590"
+"Josh Doctson","WR","NYJ",NA,NA,427.2,290.7,187,0,11,2021-01-31,"15511"
+"Jordan Leggett","TE","DEN",NA,NA,427.5,357,119,0,2,2021-01-31,"16458"
+"Cooper Rush","QB","DAL",NA,NA,427.6,342.1,88,0,3,2021-01-31,"16477"
+"Seth DeValve","TE","ARI",NA,NA,428.5,357.7,120,0,2,2021-01-31,"15671"
+"Joe Flacco","QB","NYJ",NA,NA,428.6,342.9,89,0,3,2021-01-31,"9300"
+"Sean Mannion","QB","MIN",NA,NA,428.6,342.9,89,0,3,2021-01-31,"13930"
+"Lee Smith","TE","BUF",NA,NA,429.5,358.4,121,0,2,2021-01-31,"9992"
+"Zach Gentry","TE","PIT",NA,NA,430.5,359,122,0,2,2021-01-31,"18690"
+"Chad Kelly","QB","IND",NA,NA,430.6,344.5,91,0,3,2021-01-31,"16416"
+"Gary Jennings Jr.","WR","IND",NA,NA,430.6,291.7,190.3,0,11,2021-01-31,"18565"
+"Chris Manhertz","TE","CAR",NA,NA,431.5,359.7,123,0,2,2021-01-31,"14014"
+"Jaleel Scott","WR","NYJ",NA,NA,431.8,292.1,191.5,0,11,2021-01-31,"17260"
+"Hale Hentges","TE","MIN",NA,NA,432.5,360.4,124,0,2,2021-01-31,"18785"
+"Brett Rypien","QB","DEN",NA,NA,432.6,346.1,93,0,3,2021-01-31,"18323"
+"Mike White","QB","NYJ",NA,NA,432.6,346.1,93,0,3,2021-01-31,"17447"
+"Trent Sherfield","WR","ARI",NA,NA,433.2,292.5,193,0,11,2021-01-31,"17888"
+"Levine Toilolo","TE","NYG",NA,NA,433.5,361,125,0,2,2021-01-31,"11694"
+"Noah Togiai","TE","IND",NA,NA,434.5,361.7,126,0,2,2021-01-31,"19688"
+"Matt Schaub","QB","ATL",NA,NA,434.6,347.7,95,0,3,2021-01-31,"9445"
+"Vyncint Smith","WR","NYJ",NA,NA,434.8,293,194.5,0,11,2021-01-31,"17714"
+"Trevon Wesco","TE","NYJ",NA,NA,435.5,362.4,127,0,2,2021-01-31,"18567"
+"Stephen Carlson","TE","CLE",NA,NA,436.5,363.1,128,0,2,2021-01-31,"18757"
+"Jason Croom","TE","PHI",NA,NA,437.5,363.7,129,0,2,2021-01-31,"16770"
+"Luke Stocker","TE","ATL",NA,NA,438.5,364.4,130,0,2,2021-01-31,"9948"
+"Blaine Gabbert","QB","TBB",NA,NA,438.6,350.9,99,0,3,2021-01-31,"9858"
+"Damion Ratley","WR","HOU",NA,NA,438.8,294.2,198.5,0,10,2021-01-31,"17547"
+"Andrew Beck","TE","DEN",NA,NA,439.5,365.1,131,0,2,2021-01-31,"18748"
+"Luke Willson","TE","SEA",NA,NA,440.5,365.7,132,0,2,2021-01-31,"11812"
+"DeShone Kizer","QB","TEN",NA,NA,440.6,352.5,101,0,3,2021-01-31,"16389"
+"Garrett Gilbert","QB","DAL",NA,NA,441.6,353.3,102,0,3,2021-01-31,"12302"
+"Mason Schreck","TE","CIN",NA,NA,442.5,367.1,134,0,2,2021-01-31,"16541"
+"Sean McKeon","TE","DAL",NA,NA,443.5,367.8,135,0,2,2021-01-31,"19726"
+"Matt Moore","QB","KCC",NA,NA,443.6,354.9,104,0,3,2021-01-31,"9442"
+"Xavier Grimble","TE","BAL",NA,NA,444.5,368.4,136,0,2,2021-01-31,"12149"
+"Nathan Peterman","QB","LVR",NA,NA,444.6,355.7,105,0,2,2021-01-31,"16414"
+"Kyle Sloter","QB","LVR",NA,NA,445.6,356.5,106,0,2,2021-01-31,"16902"
+"Eric Tomlinson","TE","BAL",NA,NA,446.5,369.8,138,0,2,2021-01-31,"14339"
+"Keith Kirkwood","WR","CAR",NA,NA,449.2,297.4,209,0,10,2021-01-31,"17871"
+"Chester Rogers","WR","TEN",NA,NA,452.2,298.3,212,0,9,2021-01-31,"16038"
+"Donte Moncrief","WR","NEP",NA,NA,454.8,299.1,214.5,0,9,2021-01-31,"12125"
+"Corey Coleman","WR","NYG",NA,NA,454.8,299.1,214.5,0,9,2021-01-31,"15506"
+"Seth Roberts","WR","GBP",NA,NA,454.8,299.1,214.5,0,9,2021-01-31,"13840"
+"Travis Benjamin","WR","SFO",NA,NA,455.2,299.2,215,0,9,2021-01-31,"11214"
+"Chris Moore","WR","BAL",NA,NA,457.8,300,217.5,0,9,2021-01-31,"15654"
+"Emanuel Hall","WR","WAS",NA,NA,468.8,303.3,228.5,0,8,2021-01-31,"18432"
diff --git a/tests/testthat/helper.R b/tests/testthat/helper.R
index 5cfbb117..d70d3602 100644
--- a/tests/testthat/helper.R
+++ b/tests/testthat/helper.R
@@ -4,5 +4,5 @@ suppressPackageStartupMessages({
})
if (Sys.getenv("MOCK_BYPASS") == "true") {
- with_mock_api <- force
+ with_mock_api <- force
}
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-279298.R b/tests/testthat/mfl/2019/export-279298.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-279298.R
rename to tests/testthat/mfl/2019/export-279298.R
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-352259.R b/tests/testthat/mfl/2019/export-352259.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-352259.R
rename to tests/testthat/mfl/2019/export-352259.R
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-5b11ff.R b/tests/testthat/mfl/2019/export-5b11ff.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-5b11ff.R
rename to tests/testthat/mfl/2019/export-5b11ff.R
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-5ddec2.R b/tests/testthat/mfl/2019/export-5ddec2.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-5ddec2.R
rename to tests/testthat/mfl/2019/export-5ddec2.R
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-720c0f.R b/tests/testthat/mfl/2019/export-720c0f.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-720c0f.R
rename to tests/testthat/mfl/2019/export-720c0f.R
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-9df682.R b/tests/testthat/mfl/2019/export-9df682.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-9df682.R
rename to tests/testthat/mfl/2019/export-9df682.R
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-b7a002.R b/tests/testthat/mfl/2019/export-b7a002.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-b7a002.R
rename to tests/testthat/mfl/2019/export-b7a002.R
diff --git a/tests/testthat/mfl/2019/export-d2d913.R b/tests/testthat/mfl/2019/export-d2d913.R
new file mode 100644
index 00000000..2faec8a2
--- /dev/null
+++ b/tests/testthat/mfl/2019/export-d2d913.R
@@ -0,0 +1,47 @@
+structure(list(
+ url = "https://www54.myfantasyleague.com/2019/export?TYPE=tradeBait&L=12608&INCLUDE_DRAFT_PICKS=1&JSON=1",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:17:36 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "1376", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 302L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:17:36 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ location = "https://www54.myfantasyleague.com/2019/export?TYPE=tradeBait&L=12608&INCLUDE_DRAFT_PICKS=1&JSON=1",
+ `content-length` = "0", targethost = "www70"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ ), list(
+ status = 200L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:17:36 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "1376", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"version\":\"1.0\",\"tradeBaits\":{\"tradeBait\":[{\"timestamp\":\"1574520555\",\"franchise_id\":\"0001\",\"willGiveUp\":\"7394,13128\",\"inExchangeFor\":\"anyone need a QB?\"},{\"timestamp\":\"1580535809\",\"franchise_id\":\"0003\",\"willGiveUp\":\"13319,13139,11675\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580572165\",\"franchise_id\":\"0004\",\"willGiveUp\":\"12171,13132,13607,13163\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580661975\",\"franchise_id\":\"0008\",\"willGiveUp\":\"5848,13424,7836,7813,10697,12610,13131,13668,9918,13154,9474,13299\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580586339\",\"franchise_id\":\"0010\",\"willGiveUp\":\"12616,13138,14079,12676,14138\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1573591985\",\"franchise_id\":\"0018\",\"willGiveUp\":\"11760,12151,12447,11675\",\"inExchangeFor\":\"Youth and/or Picks.\"},{\"timestamp\":\"1580777411\",\"franchise_id\":\"0019\",\"willGiveUp\":\"13130,14079,11679,11671,11448\",\"inExchangeFor\":\"QBs\"},{\"timestamp\":\"1574615063\",\"franchise_id\":\"0020\",\"willGiveUp\":\"12637,11193,13850,13613,13632,13377\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1574170889\",\"franchise_id\":\"0021\",\"willGiveUp\":\"13234,12677\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1572103834\",\"franchise_id\":\"0022\",\"willGiveUp\":\"FP_0022_2020_5,FP_0022_2020_6\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580956185\",\"franchise_id\":\"0025\",\"willGiveUp\":\"14113,14136\",\"inExchangeFor\":\"2/5/20 reserve prices: Mecole Hardman: $185, Deebo Samuel: $250\"},{\"timestamp\":\"1557400007\",\"franchise_id\":\"0027\",\"willGiveUp\":\"7401,11192,13192,FP_0027_2020_5,FP_0027_2020_6\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580963979\",\"franchise_id\":\"0028\",\"willGiveUp\":\"13319,11222\",\"inExchangeFor\":\"\\r \"},{\"timestamp\":\"1580570282\",\"franchise_id\":\"0029\",\"willGiveUp\":\"14056,13768,11186,10261,11232,14305,14123,11516,13722,13772\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1577739833\",\"franchise_id\":\"0031\",\"willGiveUp\":\"13130,11671\",\"inExchangeFor\":\" \"},{\"timestamp\":\"1580571644\",\"franchise_id\":\"0032\",\"willGiveUp\":\"4925,12634,14080,11747,13163,10261,10729,14109,11247,13236,10312\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580587896\",\"franchise_id\":\"0033\",\"willGiveUp\":\"13590,9099,11760,13115,14057,11244\",\"inExchangeFor\":\"Looking for young RBs, young WRs, and draft capital. \"},{\"timestamp\":\"1580571088\",\"franchise_id\":\"0034\",\"willGiveUp\":\"11675,11222,11674,13671,12678\",\"inExchangeFor\":\"Everyone is available. I’m building for the future so picks and young players preferred \"},{\"timestamp\":\"1580681231\",\"franchise_id\":\"0035\",\"willGiveUp\":\"7394,13612,13130,12930,12184,13277,11257\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1570798087\",\"franchise_id\":\"0036\",\"willGiveUp\":\"11644,14113\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1557251511\",\"franchise_id\":\"0038\",\"willGiveUp\":\"13116,12620,14106,14113,FP_0038_2020_5,FP_0038_2020_6\",\"inExchangeFor\":\"2020 1st for 60\\r 2020 2nd for 20\\r Both for 75\"},{\"timestamp\":\"1580665276\",\"franchise_id\":\"0039\",\"willGiveUp\":\"11660,11244\",\"inExchangeFor\":\"Most interested in a WR.\"},{\"timestamp\":\"1580578258\",\"franchise_id\":\"0040\",\"willGiveUp\":\"\",\"inExchangeFor\":\"Looking for TE, RB or QB...willing to add rookie $ to deal if the price is right.\"},{\"timestamp\":\"1580562490\",\"franchise_id\":\"0041\",\"willGiveUp\":\"10276,11675,10308,11674,8673,10738,11890,11228,11250,13391\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1557147424\",\"franchise_id\":\"0042\",\"willGiveUp\":\"\",\"inExchangeFor\":\"Russ for $185\"},{\"timestamp\":\"1580917370\",\"franchise_id\":\"0043\",\"willGiveUp\":\"12637,11182,13146,14086,13606,13607,14071,8247,10838,11248\",\"inExchangeFor\":\"Looking for QB/WR ....\"},{\"timestamp\":\"1557117258\",\"franchise_id\":\"0044\",\"willGiveUp\":\"13115\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580735108\",\"franchise_id\":\"0045\",\"willGiveUp\":\"12151,14107,13153,14102,14136,12652\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580561732\",\"franchise_id\":\"0047\",\"willGiveUp\":\"12626,14105,12175,12647,13164,11680,11678,13157,14136,13630\",\"inExchangeFor\":\"QB/RB/TE\"},{\"timestamp\":\"1572412816\",\"franchise_id\":\"0049\",\"willGiveUp\":\"10729\",\"inExchangeFor\":\"youth/future picks\"},{\"timestamp\":\"1573077590\",\"franchise_id\":\"0050\",\"willGiveUp\":\"12151,7942,10973,12934\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1558600789\",\"franchise_id\":\"0051\",\"willGiveUp\":\"\",\"inExchangeFor\":\"Looking for a QB\"},{\"timestamp\":\"1572901485\",\"franchise_id\":\"0052\",\"willGiveUp\":\"\",\"inExchangeFor\":\"QBs, youth & picks\"},{\"timestamp\":\"1557350591\",\"franchise_id\":\"0053\",\"willGiveUp\":\"13156\",\"inExchangeFor\":\"\"},{\"timestamp\":\"1580647721\",\"franchise_id\":\"0054\",\"willGiveUp\":\"13116,12625,12626,12447,7393,14122,13645,11938\",\"inExchangeFor\":\"I’m new here so go ahead and try to rob me.\"},{\"timestamp\":\"1566934291\",\"franchise_id\":\"0055\",\"willGiveUp\":\"14085,12801,13299,FP_0055_2020_5,FP_0055_2020_6\",\"inExchangeFor\":\"\"}]},\"encoding\":\"utf-8\"}"),
+ date = structure(1606598256, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0.253958, namelookup = 0.029677,
+ connect = 0.093954, pretransfer = 0.244044, starttransfer = 0.6407,
+ total = 0.640903
+ )
+), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-d4f576.R b/tests/testthat/mfl/2019/export-d4f576.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-d4f576.R
rename to tests/testthat/mfl/2019/export-d4f576.R
diff --git a/tests/testthat/api.myfantasyleague.com/2019/export-f5d34a.R b/tests/testthat/mfl/2019/export-f5d34a.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2019/export-f5d34a.R
rename to tests/testthat/mfl/2019/export-f5d34a.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-0f727c.R b/tests/testthat/mfl/2020/export-0f727c.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-0f727c.R
rename to tests/testthat/mfl/2020/export-0f727c.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-24240f.R b/tests/testthat/mfl/2020/export-24240f.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-24240f.R
rename to tests/testthat/mfl/2020/export-24240f.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-265296.R b/tests/testthat/mfl/2020/export-265296.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-265296.R
rename to tests/testthat/mfl/2020/export-265296.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-279298.R b/tests/testthat/mfl/2020/export-279298.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-279298.R
rename to tests/testthat/mfl/2020/export-279298.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-288388.R b/tests/testthat/mfl/2020/export-288388.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-288388.R
rename to tests/testthat/mfl/2020/export-288388.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-288388.json b/tests/testthat/mfl/2020/export-288388.json
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-288388.json
rename to tests/testthat/mfl/2020/export-288388.json
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-51a867.R b/tests/testthat/mfl/2020/export-51a867.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-51a867.R
rename to tests/testthat/mfl/2020/export-51a867.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-53ace0.R b/tests/testthat/mfl/2020/export-53ace0.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-53ace0.R
rename to tests/testthat/mfl/2020/export-53ace0.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-586c35.R b/tests/testthat/mfl/2020/export-586c35.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-586c35.R
rename to tests/testthat/mfl/2020/export-586c35.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-586c35.json b/tests/testthat/mfl/2020/export-586c35.json
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-586c35.json
rename to tests/testthat/mfl/2020/export-586c35.json
diff --git a/tests/testthat/mfl/2020/export-5b11ff.R b/tests/testthat/mfl/2020/export-5b11ff.R
new file mode 100644
index 00000000..4e367038
--- /dev/null
+++ b/tests/testthat/mfl/2020/export-5b11ff.R
@@ -0,0 +1,47 @@
+structure(list(
+ url = "https://www61.myfantasyleague.com/2020/export?TYPE=league&L=54040&JSON=1",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:32 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "1197", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 302L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:32 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ location = "https://www61.myfantasyleague.com/2020/export?TYPE=league&L=54040&JSON=1",
+ `content-length` = "0", targethost = "www77"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ ), list(
+ status = 200L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:32 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "1197", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"version\":\"1.0\",\"league\":{\"currentWaiverType\":\"BBID_FCFS\",\"playerLimitUnit\":\"LEAGUE\",\"taxiSquad\":\"3\",\"endWeek\":\"17\",\"maxWaiverRounds\":\"8\",\"draft_kind\":\"email\",\"lockout\":\"No\",\"nflPoolStartWeek\":\"1\",\"franchises\":{\"count\":\"14\",\"franchise\":[{\"logo\":\"https://i.imgur.com/purgTuY.png\",\"icon\":\"https://i.imgur.com/purgTuY.png\",\"abbrev\":\"PIKA\",\"bbidAvailableBalance\":\"159.00\",\"name\":\"Team Pikachu\",\"id\":\"0001\",\"waiverSortOrder\":\"2\"},{\"logo\":\"https://i.imgur.com/spJaesT.png\",\"icon\":\"https://i.imgur.com/spJaesT.png\",\"abbrev\":\"SIMN\",\"bbidAvailableBalance\":\"100.00\",\"name\":\"Team Simon Belmont\",\"id\":\"0002\",\"waiverSortOrder\":\"5\"},{\"logo\":\"https://i.imgur.com/UW6ES3y.png\",\"icon\":\"https://i.imgur.com/UW6ES3y.png\",\"abbrev\":\"CFCN\",\"bbidAvailableBalance\":\"50.00\",\"name\":\"Team Captain Falcon\",\"id\":\"0003\",\"waiverSortOrder\":\"10\"},{\"logo\":\"https://i.imgur.com/Z51OK27.png\",\"icon\":\"https://i.imgur.com/Z51OK27.png\",\"abbrev\":\"ICE\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Ice Climbers\",\"id\":\"0004\",\"waiverSortOrder\":\"4\"},{\"logo\":\"https://i.imgur.com/wENaJKg.png\",\"icon\":\"https://i.imgur.com/wENaJKg.png\",\"abbrev\":\"DRM\",\"bbidAvailableBalance\":\"84.00\",\"name\":\"Team Dr. Mario\",\"id\":\"0005\",\"waiverSortOrder\":\"3\"},{\"logo\":\"https://i.imgur.com/5LnPtDi.png\",\"icon\":\"https://i.imgur.com/5LnPtDi.png\",\"abbrev\":\"KDDD\",\"bbidAvailableBalance\":\"87.00\",\"name\":\"Team King Dedede\",\"id\":\"0006\",\"waiverSortOrder\":\"8\"},{\"logo\":\"https://i.imgur.com/eift9jP.png\",\"icon\":\"https://i.imgur.com/eift9jP.png\",\"abbrev\":\"KRBY\",\"bbidAvailableBalance\":\"55.00\",\"name\":\"Team Kirby\",\"id\":\"0007\",\"waiverSortOrder\":\"7\"},{\"logo\":\"https://i.imgur.com/AMtyw0W.png\",\"icon\":\"https://i.imgur.com/AMtyw0W.png\",\"abbrev\":\"FOX\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Fox\",\"id\":\"0008\",\"waiverSortOrder\":\"9\"},{\"logo\":\"https://i.imgur.com/0zprlfO.png\",\"icon\":\"https://i.imgur.com/0zprlfO.png\",\"abbrev\":\"LINK\",\"bbidAvailableBalance\":\"81.00\",\"name\":\"Team Link\",\"id\":\"0009\",\"waiverSortOrder\":\"13\"},{\"logo\":\"https://i.imgur.com/RvsGTLu.png\",\"icon\":\"https://i.imgur.com/RvsGTLu.png\",\"abbrev\":\"YSHI\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Yoshi\",\"id\":\"0010\",\"waiverSortOrder\":\"12\"},{\"logo\":\"https://i.imgur.com/zDt3q5J.png\",\"icon\":\"https://i.imgur.com/zDt3q5J.png\",\"abbrev\":\"DDY\",\"bbidAvailableBalance\":\"179.00\",\"name\":\"Team Diddy Kong\",\"id\":\"0011\",\"waiverSortOrder\":\"11\"},{\"logo\":\"https://i.imgur.com/GHB1pVY.png\",\"icon\":\"https://i.imgur.com/GHB1pVY.png\",\"abbrev\":\"MEW2\",\"bbidAvailableBalance\":\"121.00\",\"name\":\"Team Mewtwo\",\"id\":\"0012\",\"waiverSortOrder\":\"6\"},{\"logo\":\"https://i.imgur.com/lp2XsQE.png\",\"icon\":\"https://i.imgur.com/lp2XsQE.png\",\"abbrev\":\"NESS\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Ness\",\"id\":\"0013\",\"waiverSortOrder\":\"1\"},{\"logo\":\"https://i.imgur.com/AQJ99hs.png\",\"icon\":\"https://i.imgur.com/AQJ99hs.png\",\"abbrev\":\"LUIG\",\"bbidAvailableBalance\":\"0.00\",\"name\":\"Team Luigi\",\"id\":\"0014\",\"waiverSortOrder\":\"14\"}]},\"standingsSort\":\"PCT,PTS,\",\"draftPlayerPool\":\"Rookie\",\"id\":\"54040\",\"nflPoolType\":\"Confidence\",\"history\":{\"league\":[{\"url\":\"https://www61.myfantasyleague.com/2020/home/54040\",\"year\":\"2020\"},{\"url\":\"https://www61.myfantasyleague.com/2018/home/54040\",\"year\":\"2018\"},{\"url\":\"https://www61.myfantasyleague.com/2019/home/54040\",\"year\":\"2019\"}]},\"rosterSize\":\"25\",\"name\":\"The Super Smash Bros Dynasty League\",\"bbidSeasonLimit\":\"200\",\"draftTimer\":\"ON\",\"bbidIncrement\":\"1\",\"mobileAlerts\":\"\",\"draftLimitHours\":\"12:00\",\"starters\":{\"count\":\"9\",\"position\":[{\"name\":\"QB\",\"limit\":\"1\"},{\"name\":\"RB\",\"limit\":\"1-6\"},{\"name\":\"WR\",\"limit\":\"1-6\"},{\"name\":\"TE\",\"limit\":\"1-6\"}],\"idp_starters\":\"\"},\"nflPoolEndWeek\":\"17\",\"bestLineup\":\"Yes\",\"precision\":\"2\",\"lastRegularSeasonWeek\":\"13\",\"survivorPool\":\"Yes\",\"bbidTiebreaker\":\"TURN\",\"usesContractYear\":\"0\",\"injuredReserve\":\"8\",\"bbidConditional\":\"No\",\"startWeek\":\"1\",\"survivorPoolStartWeek\":\"1\",\"survivorPoolEndWeek\":\"17\",\"rostersPerPlayer\":\"1\",\"h2h\":\"YES\",\"usesSalaries\":\"0\",\"baseURL\":\"https://www61.myfantasyleague.com\",\"loadRosters\":\"email_draft\"},\"encoding\":\"utf-8\"}"),
+ date = structure(1606597892, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0.138472, namelookup = 7.5e-05,
+ connect = 8.2e-05, pretransfer = 0.000225, starttransfer = 0.304788,
+ total = 0.304955
+ )
+), class = "response")
diff --git a/tests/testthat/mfl/2020/export-6788e2.R b/tests/testthat/mfl/2020/export-6788e2.R
new file mode 100644
index 00000000..59cd9a7d
--- /dev/null
+++ b/tests/testthat/mfl/2020/export-6788e2.R
@@ -0,0 +1,31 @@
+structure(list(
+ url = "https://api.myfantasyleague.com/2020/export?TYPE=allRules&JSON=1",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:18 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "5621", `content-type` = "application/json; charset=utf-8",
+ targethost = "www77"
+ ), class = c("insensitive", "list")), all_headers = list(list(
+ status = 200L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:18 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "5621", `content-type` = "application/json; charset=utf-8",
+ targethost = "www77"
+ ), class = c("insensitive", "list"))
+ )), cookies = structure(list(
+ domain = logical(0), flag = logical(0),
+ path = logical(0), secure = logical(0), expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"allRules\":{\"rule\":[{\"detailedDescription\":{\"$t\":\"This is the total number of Passing TDs in a game by a player or team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Passing TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#P\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a passing TD in a game. This rule is evaluated for EACH passing TD in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Passing TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PS\"}},{\"detailedDescription\":{\"$t\":\"This is the total passing yardage in a game. For individual player positions like QBs, it is the GROSS passing yardage. For team positions like the Team Offense, this is the NET passing yardage. The NET passing yardage is the total passing yardage minus the total sack yardage against the team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Passing Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PY\"}},{\"detailedDescription\":{\"$t\":\"This is the total passing yardage divided by the number of pass completions in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Pass Completion\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"APY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass attempts in a game. It usually applies to the QB position, but other offensive players can have a pass attempt. For example, if a team fakes a field goal, the holder or the kicker may attempt a pass. All pass completions, incompletions, and interceptions are considered to be pass attempts.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Attempts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PA\"}},{\"detailedDescription\":{\"$t\":\"The is the number of pass completions in a game. It usually applies to the QB position, but other offensive positions can also have a completion. For example, a RB might complete a pass after a handoff from the QB.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Completions\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PC\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game divided by the total number of pass attempts in a game, and then multiplied by 100. For example, if a QB completes 7 passes with 10 attempts, his completion percentage = 70.0%\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Pass Completion Percentage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PCP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of incomplete passes in a game. This includes Interceptions.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Incompletions\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"INC\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass interceptions thrown by a player in a game. Do not use this rule for individual defensive players or the team defense position. If you want to score an interception by a defensive player or the team defense, then use the rule called \\\"Interceptions Caught\\\" instead.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Pass Interceptions Thrown\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IN\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass interceptions that a player throws in a game that end up being Returned all the way back for a TD. This category is only valid for offensive positions.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Number of Interceptions Thrown Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#IT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a pass interception that ends up begin returned all the way back for a TD. This category gets evaluated for EACH Interception that is Returned for a TD in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Length of Interception Thrown Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IT\"}},{\"detailedDescription\":{\"$t\":\"This is the number of times a QB is sacked in a game. It can also be used for team positions, like the Team Offense, to score the total number of sacks given up by a team. Do not use this rule for individual defensive players. If you want to score a sack by a defensive player, then use the \\\"Sacked a QB\\\" rule instead.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"QB Sacked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TSK\"}},{\"detailedDescription\":{\"$t\":\"This is the total sack yards lost by a QB in a game. It can also be used for team positions, like the Team Offense, to score the sack yards given up by the team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"QB Sacked Yardage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TSY\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passer Rating\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RATE\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 20 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 20+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P20\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 30 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 30+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P30\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of pass completions in a game that result in a gain of 50 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Passing Plays of 50+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P50\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful two point conversion passes in a game by a player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Passing 2 Pointers\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"P2\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Rushing TDs in a game by a player or team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Rushing TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#R\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Rushing TD. This rule is evaluated for EACH rushing TD in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Rushing TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RS\"}},{\"detailedDescription\":{\"$t\":\"This is the total rushing yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rushing Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RY\"}},{\"detailedDescription\":{\"$t\":\"This is the total rushing yardage divided by the number of rush attempts in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Rush\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ARY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of rush attempts in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rush Attempts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RA\"}},{\"detailedDescription\":{\"$t\":\"This is the number of rush attempts in a game that result in a gain of 20 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Rushing Plays of 20+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"R20\"}},{\"detailedDescription\":{\"$t\":\"This is the number of rush attempts in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Rushing Plays of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"R40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful two point conversion rushes in a game by a player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rushing 2 Pointers\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"R2\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Receiving TDs in a game by a player or team.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Number of Receiving TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#C\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Receiving TD. This rule is evaluated for EACH receiving TD in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Length of Receiving TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RC\"}},{\"detailedDescription\":{\"$t\":\"This is the total receiving yardage in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receiving Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"CY\"}},{\"detailedDescription\":{\"$t\":\"This is the total receiving yardage divided by the number of receptions in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Reception\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ACY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of receptions in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receptions\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"CC\"}},{\"detailedDescription\":{\"$t\":\"This is the number of times the player was targeted as the intended receiver on a passing play.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Targets\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TGT\"}},{\"detailedDescription\":{\"$t\":\"This is the number of receptions in a game that result in a gain of 20 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Receptions of 20+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"C20\"}},{\"detailedDescription\":{\"$t\":\"This is the number of receptions in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Receptions of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"C40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful two point conversion receptions in a game by a player.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receiving 2 Pointers\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"C2\"}},{\"detailedDescription\":{\"$t\":\"This is the total Rushing plus Receiving Yards\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Rushing + Receiving Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"RCY\"}},{\"detailedDescription\":{\"$t\":\"This is the total Passing plus Rushing yards\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passing + Rushing Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PRY\"}},{\"detailedDescription\":{\"$t\":\"This is the total yards from scrimmage. It include Passing, Rushing, and Receiving yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Total Yards from Scrimmage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TYS\"}},{\"detailedDescription\":{\"$t\":\"This is the total yards. It includes Passing, Rushing, Receiving, Punt Return, and Kickoff Return yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Total Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TY\"}},{\"detailedDescription\":{\"$t\":\"This is the Total Number of TDs scored by a player or team. It includes all types of TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Touchdowns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#TD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful field goals in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Field Goals Made\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#F\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a successful field goal. This rule is evaluated for EACH successful field goal in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Field Goal Made\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FG\"}},{\"detailedDescription\":{\"$t\":\"This is the number of missed field goals in a game. This includes field goal attempts that were blocked, but not aborted attempts in which the kicker doesn't get a chance to make the kick.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Field Goals Missed\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#M\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a missed field goal attempt. This rule is evaluated for EACH missed field goal in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Missed Field Goal\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"MG\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of field goal attempts in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Field Goals Attempted\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#A\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful field goals divided by the total number of field goal attempts, and then multiplied by 100. For example, if a kicker makes 2 field goals and misses 2 field goals in a game, then he has a 50% Field Goal Percentage.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Field Goal Percentage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FGP\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of field goal attempts in a game that a kicker had blocked.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Field Goals Had Blocked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"HBF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful extra points in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Extra Points\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of missed extra points in a game. This includes extra point attempts that were blocked.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Extra Points Missed\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EM\"}},{\"detailedDescription\":{\"$t\":\"This is the number of extra points attempted in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Extra Points Attempted\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EA\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful extra points divided by the total number of extra point attempts, and then multiplied by 100.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Extra Point Percentage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"EPP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of extra points in a game that a kicker had blocked.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Extra Points Had Blocked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"HBE\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punts in a game. It does not include punt attempts that were blocked.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#N\"}},{\"detailedDescription\":{\"$t\":\"This is the GROSS punt yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punt Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PNY\"}},{\"detailedDescription\":{\"$t\":\"The is the total punt yardage divided by the number of punts.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Punt\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ANY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punts that end up inside the opponent's 20 yard line.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punts Inside 20\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PI\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punts in a game that a punter had blocked by the opponent.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Punts Had Blocked\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"HBP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt returns in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Punt Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#UT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a punt return TD. This rule is evaluated for EACH punt return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Punt Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PR\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt returns in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punt Returns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#U\"}},{\"detailedDescription\":{\"$t\":\"This is the total punt return yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Punt Return Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"UY\"}},{\"detailedDescription\":{\"$t\":\"This is the total punt return yardage divided by the number of punt returns.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Punt Return\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AUY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt returns in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Punt Returns of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"U40\"}},{\"detailedDescription\":{\"$t\":\"This is the number of kickoff returns in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Kickoff Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#KT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a kickoff return TD. This rule is evaluated for EACH kickoff return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Kickoff Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"KO\"}},{\"detailedDescription\":{\"$t\":\"This is the number of kickoff returns in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Kickoff Returns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#K\"}},{\"detailedDescription\":{\"$t\":\"This is the total kickoff return yardage in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Kickoff Return Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"KY\"}},{\"detailedDescription\":{\"$t\":\"This is the total kickoff return yardage divided by the number of kickoff returns.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Yards per Kickoff Return\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AKY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of kickoff returns in a game that result in a gain of 40 or more yards.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Long Kickoff Returns of 40+ Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"K40\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles by a player or a team in a game. This includes \\\"muffs\\\" that occur on a punt or kickoff when a player is trying to field the kick and it bounces off his chest. This includes ALL fumbles whether they are recovered by their own team or by the opponent. Also, this includes ALL fumbles in the entire game, whether they are on offense or defense or special teams. So if you assign this rule to the Team Defense position, it will include the total number of fumbles by the ENTIRE team, not just fumbles by the defense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FU\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles while on offense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles on Offense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FUO\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles while on special teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles on Special Teams\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FUS\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles while on defense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles on Defense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FUD\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles by a player or team that end up being recovered by the opponent. It does not include fumbles that are recovered by the player's own team. Also, this includes ALL fumbles lost in the entire game, whether they are on offense or special teams. So if you assign this rule to the Special Teams position, it will include the total number of fumbles by the ENTIRE team, even if they occurred on offense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost (to Opponent)\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FL\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles (and the opposing team recovers) while on offense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost on Offense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FLO\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles (and the opposing team recovers) while on special teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost on Special Teams\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FLS\"}},{\"detailedDescription\":{\"$t\":\"Includes anytime a player or team fumbles (and the opposing team recovers) while on defense.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumbles Lost on Defense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FLD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of fumble recoveries that are returned all the way for a TD. This includes any fumbles by the opponent that are returned for a TD, whether they are on defense or special teams. It does NOT include a fumble by a player's own team that is then recovered by a player and run in for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Defensive Fumble Recovery TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#DR\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a defensive or special teams fumble recovery TD. This rule is evaluated for EACH fumble recovery TD in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Defensive Fumble Recovery TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"DR\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles that are recovered by a player or team. This does not include fumbles by a player's own team that are then recovered by his team. It only includes fumbles that are then recovered by the opponent. This includes ALL fumble recoveries, whether they occurred on defense or special teams. So if you assign this rule to the Team Defense position, it will include the total number of fumble recoveries by the ENTIRE team, even if they occurred on Special Teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumble Recoveries (from Opponent)\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FC\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles that are recovered by a player or team while on defense. This stat is not updated during the games in the live stats. It is only updated after the games are finalized.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumble Recoveries on Defense\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FCD\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of fumbles that are recovered by a player or team while on special teams. This stat is not updated during the games in the live stats. It is only updated after the games are finalized.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fumble Recoveries on Special Teams\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FCS\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of yards that a player or team returned the ball after recovering a fumble that was lost by the opponent.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Opponent Fumble Recovery Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FCY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of fumbles lost by a player in a game that are returned all the way back for a TD by the other team. For example, if a running back fumbles the ball and it ends up being recovered by the opponent and returned for a TD on the same play. This includes fumbles that are lost on offense or on special teams.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Number of Fumbles Lost Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#FT\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a lost fumble that ends up being returned all the way back for a TD by the opposing. This rule is evaluated for EACH lost fumble that ends up being returned for a TD in a game.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Length of Lost Fumble Returned for a TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FT\"}},{\"detailedDescription\":{\"$t\":\"This is the number of fumble recoveries that are returned all the way for a TD after an offensive fumble by someone on the same NFL team. This includes fumbles that are recovered by a player's own team on any play from scrimmage. For example, if a Running Back fumbles at the 1 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 1 yard line and advances to the endzone for a TD, then it is considered an Offensive fumble recovery TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Offensive Fumble Recovery TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#FR\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of an offensive fumble recovery that is returned all the way for a TD. This includes fumbles that are recovered by a player's own team on any play from scrimmage. For example, if a Running Back fumbles at the 1 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 1 yard line and advances to the endzone for a TD, then it is considered an Offensive fumble recovery TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Offensive Fumble Recovery TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FR\"}},{\"detailedDescription\":{\"$t\":\"This is the number of own fumble recoveries. This ONLY includes fumbles that are recovered by a player's own team. For example, if a Running Back fumbles at the 1 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 1 yard line and advances to the endzone for a TD, then it is considered an Own fumble recovery TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Own Fumble Recoveries\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"OFC\"}},{\"detailedDescription\":{\"$t\":\"This is the total yardage all offensive fumble recoveries. This ONLY includes fumbles that are recovered by a player's own team. For example, if a Running Back fumbles at the 5 yard line right before scoring a TD, and then a Wide Receiver on the same team recovers the ball at the 3 yard line and advances to the endzone for a TD, then it is considered 3 yards of own fumble recovery yardage.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Own Fumble Recovery Yardage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"OFCY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Forced Fumbles by a player in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Forced Fumbles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of interceptions in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Interception Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#IR\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of an interception return TD. This rule is evaluated for EACH interception return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Interception Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IR\"}},{\"detailedDescription\":{\"$t\":\"This is the number of interceptions by a defensive player or team defense in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Interceptions Caught\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"IC\"}},{\"detailedDescription\":{\"$t\":\"This is the total return yardage by a player or team after an interception.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Interception Return Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ICY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of time a defensive player breaks up a pass, either by knocking it down or tipping it, etc.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passes Defended\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"PD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of blocked field goals that are returned all the way for a TD. The player that blocked the field goal is not necessarily the same player that returns it for a TD. So one player could have a blocked field goal and another player could have a blocked field goal TD on the same play.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Blocked Field Goal TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#BF\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a blocked field goal TD. This rule is evaluated for EACH blocked field goal TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Blocked Field Goal TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of field goal attempts in a game that are blocked by a defensive player or a team defense position.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Blocked Field Goals\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BLF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of missed field goals in a game that are returned all the way for a TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Missed Field Goal Return TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#MF\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a missed field goal return TD. This rule is evaluated for EACH missed field goal return TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Missed Field Goal Return TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"MF\"}},{\"detailedDescription\":{\"$t\":\"This is the number of blocked punts that are returned all the way for a TD. The player that blocked the punt is not necessarily the same player that returns it for a TD. So one player could have a blocked punt and another player could have a blocked punt TD on the same play.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Blocked Punt TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#BP\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a blocked punt TD. This rule is evaluated for EACH blocked punt TD.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Blocked Punt TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of punt attempts in a game that are blocked by a defensive player or a team defense position.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Blocked Punts\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BLP\"}},{\"detailedDescription\":{\"$t\":\"This is the number of extra point attempts that are blocked by a defensive player or a team defense position.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Blocked Extra Points\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"BLE\"}},{\"detailedDescription\":{\"$t\":\"This is the number of tackles in a game by a defensive player. It does not include tackles by offensive players after a fumble recovery or an interception. It also does not include tackles by players on special teams, such as on a punt or kickoff return. Please be aware that tackles are NOT an official stat.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Defensive Tackles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TKD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of assisted tackles in a game by a defensive player. It does not include assists by offensive players after a fumble recovery or an interception. It also does not include assists by players on special teams, such as on a punt or kickoff return. Please be aware that tackles and assists are NOT an official stat.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Defensive Assists\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"ASD\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of tackles in a game by a player. It includes tackles by an offensive player after a fumble or interception, and it includes miscellaneous tackles on special teams.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Tackles\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TK\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of assisted tackles in a game by a player. It includes assists by an offensive player after a fumble or interception, and it includes miscellaneous assists on special teams.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Assists\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AS\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Assists Divided by 2\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"AS2\"}},{\"detailedDescription\":{\"$t\":\"This is the number of sacks in a game by a defensive player or the team defense position. Individual defensive players can have 1/2 sacks.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Sacked a QB\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SK\"}},{\"detailedDescription\":{\"$t\":\"This is the total lost yardage of the sacks in a game by a defensive player or a team defense position. Individual defensive players can have 1/2 yards.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Sacked a QB Yardage\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SKY\"}},{\"detailedDescription\":{\"$t\":\"This is the number of times a defensive player makes a hit on a Quarterback behind the line of scrimmage during a pass attempt. It is not updated during live scoring.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Quarterback Hits\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"QH\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Tackles for a Loss in a game by a defensive player. This stat is not updated during the games in the live stats. It is only updated after the games are finalized.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Tackles for a Loss\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TKL\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Safeties in a game by a defensive player or a team defense position. It includes ALL safeties whether they are on defense or special teams.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Safeties\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SF\"}},{\"detailedDescription\":{\"$t\":\"This is the total points scored against a team in a game. (This matches the scoreboard points at the end of a game). If your league chooses to not include those points scored by the Defense then please see our Help Center for additional setup options.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Points Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TPA\"}},{\"detailedDescription\":{\"$t\":\"This is the points scored against a team on Special Teams, which only includes points scored on Punt Returns and Kickoff Returns. It also includes any conversion points scored after the TD (extra point or a 2 Pt Conversion)\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Special Teams Points Against\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"STPA\"}},{\"detailedDescription\":{\"$t\":\"This is the points scored against a team on Offense, which only includes points scored via Passing and Rushing TDs as well as Field Goals. It also includes any conversion points scored after the TDs (extra point or a 2 Pt Conversion).\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Offensive Points Against\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"OPA\"}},{\"detailedDescription\":{\"$t\":\"This is the total yardage allowed by a team in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Net Yards Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TYA\"}},{\"detailedDescription\":{\"$t\":\"This the total passing yardage allowed by a team in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Net Yards Passing Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TYP\"}},{\"detailedDescription\":{\"$t\":\"This is the total rushing yardage allowed by a team in a game.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Net Yards Rushing Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TYR\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of TDs allowed on Special Teams, which only includes Punt Return and Kickoff Return TDs scored by the opponent.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Special Teams TDs Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"STTA\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of TDs allowed on Offense, which only includes Passing and Rushing TDs scored by the opponent.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Offensive TDs Allowed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"OTA\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of Defensive TDs scored. It includes Interception Return TDs and Opponent Fumble Recovery TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Defensive TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#D\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Defensive TD. It includes Interception Return TDs and Opponent Fumble Recovery TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Defensive TD\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"DD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of defensive two point conversion returns in a game. This can be scored by blocking an extra point attempt, or by intercepting a 2-point conversion pass attempt, or by recovering a 2-point conversion fumble, and then returning it all the way to the other end zone.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Defensive Conversion Returns\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"D2\"}},{\"detailedDescription\":{\"$t\":\"This is the number of one point safeties in a game. This can be scored on a 2-point conversion attempt by tackling the opponent in their own end zone.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Safeties for 1 Point\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"SF1\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of successful two point conversions.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Successful 2 Point Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"M2\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of failed two point conversion attempts.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Failed 2 Point Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"F2\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Defensive and Special Teams TDs scored. It includes Interception Return TDs, Opponent Fumble Recovery TDs, Blocked Punt TDs, Blocked FG TDs, Punt Return TDs, Kickoff Return TDs, and Missed FG Return TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Number of Defensive & Special Teams TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"#T\"}},{\"detailedDescription\":{\"$t\":\"This is the length in yards of a Defensive or Special Teams TD. It includes Interception Return TDs, Opponent Fumble Recovery TDs, Blocked Punt TDs, Blocked FG TDs, Punt Return TDs, Kickoff Return TDs, and Missed FG Return TDs.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Length of Defensive/Special Teams TDs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"TT\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of penalties for the team or player. It is not divided between offense and defense. For example, if you assign this rule to the Team Defense, then they will be scored for all of the penalties by the entire team, whether they occurred on offense or defense. Note that this stat is not updated live for individual players.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Penalties\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"F\"}},{\"detailedDescription\":{\"$t\":\"This is the total yardage lost on all of the penalties by the team or player. Note that this stat is not updated live for individual players.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Penalty Yards\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FY\"}},{\"detailedDescription\":{\"$t\":\"This is the time of possession in minutes for a team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Time of Possession (in Minutes)\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TIME\"}},{\"detailedDescription\":{\"$t\":\"This is the total points scored by a team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Total Points Scored\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"TPS\"}},{\"detailedDescription\":{\"$t\":\"This is the difference in score between the team and the opponent. It can be positive or zero or negative. For example, if a team wins a game 20 to 17, then the point differential is 3. If a team loses a game 30 to 21, then the point differential is -9 (negative 9). This rule can be used to score a \\\"WIN\\\" or a \\\"LOSS\\\" or a \\\"TIE\\\" for a team position or an individual player. A point differential of 1 or more is considered a WIN. A point differential of -1 or less is considered a LOSS. A point differential of 0 is a TIE.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Point Differential\"},\"isCoach\":\"1\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"DIF\"}},{\"detailedDescription\":{\"$t\":\"This is the offensive points scored by a team. It includes Passing and Rushing TDs, as well as Field Goals\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Offensive Points Only\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"OPS\"}},{\"detailedDescription\":{\"$t\":\"This is the total number of First Downs for the team or player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"FD\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Passing First Downs gained by the team or player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Passing First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"1P\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Rushing First Downs gained by the team or player.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Rushing First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"1R\"}},{\"detailedDescription\":{\"$t\":\"This is the number of Receiving First Downs gained by the player.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Receiving First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"1\",\"abbreviation\":{\"$t\":\"1C\"}},{\"detailedDescription\":{\"$t\":\"This is the number of First Downs gained because of Penalties.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Penalty First Downs\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"1F\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful third down conversions by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Third Down Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"3D\"}},{\"detailedDescription\":{\"$t\":\"This is the number of failed third down conversion attempts by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Third Downs Failed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"3F\"}},{\"detailedDescription\":{\"$t\":\"This is the number of successful fourth down conversions by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fourth Down Conversions\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"4D\"}},{\"detailedDescription\":{\"$t\":\"This is the number of failed fourth down conversion attempts by the entire team.\"},\"isTeam\":\"1\",\"shortDescription\":{\"$t\":\"Fourth Downs Failed\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"4F\"}},{\"detailedDescription\":{\"$t\":\"This is the number of wins a coach has.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Games Won\"},\"isCoach\":\"1\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"W\"}},{\"detailedDescription\":{\"$t\":\"This is the number of losses a coach has.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Games Lost\"},\"isCoach\":\"1\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"L\"}},{\"detailedDescription\":{\"$t\":\"This is the number of ties a coach has.\"},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Games Tied\"},\"isCoach\":\"1\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"T\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Passing Yards Allowed per Game\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"APYAG\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Passing Defense Rank\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"APYAR\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Average Rushing Yards Allowed per Game\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"ARYAG\"}},{\"detailedDescription\":{},\"isTeam\":\"0\",\"shortDescription\":{\"$t\":\"Rushing Defense Rank\"},\"isCoach\":\"0\",\"isPlayer\":\"0\",\"abbreviation\":{\"$t\":\"ARYAR\"}}]},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"),
+ date = structure(1606597878, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 4.3e-05,
+ connect = 4.8e-05, pretransfer = 0.000132, starttransfer = 0.217411,
+ total = 0.227086
+ )
+), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-7ad747.R b/tests/testthat/mfl/2020/export-7ad747.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-7ad747.R
rename to tests/testthat/mfl/2020/export-7ad747.R
diff --git a/tests/testthat/mfl/2020/export-96a6d5.R b/tests/testthat/mfl/2020/export-96a6d5.R
new file mode 100644
index 00000000..f6c0a5d0
--- /dev/null
+++ b/tests/testthat/mfl/2020/export-96a6d5.R
@@ -0,0 +1,38 @@
+structure(list(
+ url = "https://api.myfantasyleague.com/2020/export?TYPE=players&DETAILS=1&JSON=1",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:17:37 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-type` = "application/json; charset=utf-8", targethost = "www70",
+ `transfer-encoding` = "chunked"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:17:37 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-type` = "application/json; charset=utf-8",
+ targethost = "www70", `transfer-encoding` = "chunked"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"version\":\"1.0\",\"players\":{\"timestamp\":\"1606597447\",\"player\":[{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMWR\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0151\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMWR\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0152\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMWR\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0153\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMWR\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0154\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMWR\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0155\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMWR\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0156\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMWR\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0157\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMWR\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0158\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMWR\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0159\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMWR\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0160\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMWR\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0161\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMWR\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0162\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMWR\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0163\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0164\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMWR\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0165\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMWR\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0166\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMWR\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0167\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMWR\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0168\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMWR\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0169\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMWR\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0170\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMWR\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0171\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMWR\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0172\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMWR\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0173\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMWR\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0174\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMWR\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0175\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMWR\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0176\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMWR\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0177\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMWR\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0178\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMWR\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0179\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMWR\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0180\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMWR\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0181\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMWR\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0182\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMRB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0201\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMRB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0202\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMRB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0203\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMRB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0204\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMRB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0205\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMRB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0206\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMRB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0207\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMRB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0208\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMRB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0209\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMRB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0210\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMRB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0211\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMRB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0212\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMRB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0213\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0214\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMRB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0215\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMRB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0216\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMRB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0217\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMRB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0218\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMRB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0219\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMRB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0220\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMRB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0221\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMRB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0222\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMRB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0223\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMRB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0224\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMRB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0225\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMRB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0226\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMRB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0227\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMRB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0228\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMRB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0229\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMRB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0230\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMRB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0231\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMRB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0232\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDL\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0251\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDL\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0252\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDL\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0253\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDL\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0254\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDL\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0255\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDL\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0256\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDL\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0257\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDL\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0258\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDL\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0259\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDL\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0260\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDL\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0261\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDL\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0262\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDL\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0263\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0264\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDL\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0265\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDL\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0266\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDL\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0267\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDL\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0268\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDL\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0269\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDL\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0270\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDL\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0271\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDL\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0272\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDL\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0273\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDL\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0274\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDL\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0275\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDL\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0276\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDL\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0277\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDL\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0278\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDL\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0279\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDL\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0280\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDL\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0281\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDL\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0282\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMLB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0301\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMLB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0302\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMLB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0303\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMLB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0304\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMLB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0305\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMLB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0306\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMLB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0307\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMLB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0308\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMLB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0309\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMLB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0310\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMLB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0311\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMLB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0312\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMLB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0313\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0314\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMLB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0315\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMLB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0316\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMLB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0317\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMLB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0318\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMLB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0319\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMLB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0320\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMLB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0321\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMLB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0322\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMLB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0323\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMLB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0324\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMLB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0325\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMLB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0326\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMLB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0327\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMLB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0328\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMLB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0329\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMLB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0330\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMLB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0331\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMLB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0332\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMDB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0351\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMDB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0352\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMDB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0353\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMDB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0354\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMDB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0355\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMDB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0356\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMDB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0357\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMDB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0358\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMDB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0359\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMDB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0360\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMDB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0361\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMDB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0362\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMDB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0363\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0364\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMDB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0365\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMDB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0366\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMDB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0367\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMDB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0368\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMDB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0369\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMDB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0370\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMDB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0371\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMDB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0372\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMDB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0373\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMDB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0374\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMDB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0375\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMDB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0376\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMDB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0377\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMDB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0378\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMDB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0379\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMDB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0380\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMDB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0381\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMDB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0382\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMTE\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0401\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMTE\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0402\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMTE\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0403\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMTE\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0404\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMTE\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0405\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMTE\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0406\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMTE\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0407\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMTE\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0408\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMTE\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0409\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMTE\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0410\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMTE\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0411\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMTE\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0412\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMTE\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0413\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0414\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMTE\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0415\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMTE\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0416\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMTE\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0417\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMTE\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0418\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMTE\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0419\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMTE\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0420\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMTE\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0421\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMTE\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0422\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMTE\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0423\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMTE\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0424\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMTE\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0425\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMTE\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0426\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMTE\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0427\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMTE\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0428\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMTE\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0429\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMTE\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0430\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMTE\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0431\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMTE\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0432\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"stats_id\":\"2\",\"draft_team\":\"BUF\",\"position\":\"Def\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"twitter_username\":\"buffalobills\",\"id\":\"0501\",\"team\":\"BUF\",\"fleaflicker_id\":\"2331\",\"cbs_id\":\"409\"},{\"draft_year\":\"1970\",\"stats_id\":\"11\",\"draft_team\":\"IND\",\"position\":\"Def\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"twitter_username\":\"nflcolts\",\"id\":\"0502\",\"team\":\"IND\",\"fleaflicker_id\":\"2341\",\"cbs_id\":\"402\"},{\"draft_year\":\"1970\",\"stats_id\":\"15\",\"draft_team\":\"MIA\",\"position\":\"Def\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"twitter_username\":\"MiamiDolphins\",\"id\":\"0503\",\"team\":\"MIA\",\"fleaflicker_id\":\"2344\",\"cbs_id\":\"404\"},{\"draft_year\":\"1970\",\"stats_id\":\"17\",\"draft_team\":\"NEP\",\"position\":\"Def\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"twitter_username\":\"patriots\",\"id\":\"0504\",\"team\":\"NEP\",\"fleaflicker_id\":\"2346\",\"cbs_id\":\"406\"},{\"draft_year\":\"1970\",\"stats_id\":\"20\",\"draft_team\":\"NYJ\",\"position\":\"Def\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"nyjets\",\"id\":\"0505\",\"team\":\"NYJ\",\"fleaflicker_id\":\"2349\",\"cbs_id\":\"410\"},{\"draft_year\":\"1970\",\"stats_id\":\"4\",\"draft_team\":\"CIN\",\"position\":\"Def\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"twitter_username\":\"Bengals\",\"id\":\"0506\",\"team\":\"CIN\",\"fleaflicker_id\":\"2334\",\"cbs_id\":\"426\"},{\"draft_year\":\"1970\",\"stats_id\":\"5\",\"draft_team\":\"CLE\",\"position\":\"Def\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"twitter_username\":\"OfficialBrowns\",\"id\":\"0507\",\"team\":\"CLE\",\"fleaflicker_id\":\"2335\",\"cbs_id\":\"419\"},{\"draft_year\":\"1970\",\"stats_id\":\"10\",\"draft_team\":\"TEN\",\"position\":\"Def\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"twitter_username\":\"tennesseetitans\",\"id\":\"0508\",\"team\":\"TEN\",\"fleaflicker_id\":\"2358\",\"cbs_id\":\"431\"},{\"draft_year\":\"1970\",\"stats_id\":\"30\",\"draft_team\":\"JAC\",\"position\":\"Def\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"twitter_username\":\"jaguarsinsider\",\"id\":\"0509\",\"team\":\"JAC\",\"fleaflicker_id\":\"2342\",\"cbs_id\":\"422\"},{\"draft_year\":\"1970\",\"stats_id\":\"23\",\"draft_team\":\"PIT\",\"position\":\"Def\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"twitter_username\":\"steelers\",\"id\":\"0510\",\"team\":\"PIT\",\"fleaflicker_id\":\"2352\",\"cbs_id\":\"413\"},{\"draft_year\":\"1970\",\"stats_id\":\"7\",\"draft_team\":\"DEN\",\"position\":\"Def\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"twitter_username\":\"DenverBroncos\",\"id\":\"0511\",\"team\":\"DEN\",\"fleaflicker_id\":\"2337\",\"cbs_id\":\"428\"},{\"draft_year\":\"1970\",\"stats_id\":\"12\",\"draft_team\":\"KCC\",\"position\":\"Def\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"twitter_username\":\"kcchiefs\",\"id\":\"0512\",\"team\":\"KCC\",\"fleaflicker_id\":\"2343\",\"cbs_id\":\"403\"},{\"draft_year\":\"1970\",\"stats_id\":\"13\",\"draft_team\":\"OAK\",\"position\":\"Def\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"twitter_username\":\"raiders\",\"id\":\"0513\",\"team\":\"LVR\",\"fleaflicker_id\":\"2350\",\"cbs_id\":\"424\"},{\"draft_year\":\"1970\",\"stats_id\":\"24\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"chargers\",\"id\":\"0514\",\"team\":\"LAC\",\"cbs_id\":\"414\"},{\"draft_year\":\"1970\",\"stats_id\":\"26\",\"draft_team\":\"SEA\",\"position\":\"Def\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"twitter_username\":\"seahawks\",\"id\":\"0515\",\"team\":\"SEA\",\"fleaflicker_id\":\"2354\",\"cbs_id\":\"416\"},{\"draft_year\":\"1970\",\"stats_id\":\"6\",\"draft_team\":\"DAL\",\"position\":\"Def\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"twitter_username\":\"dallascowboys\",\"id\":\"0516\",\"team\":\"DAL\",\"fleaflicker_id\":\"2336\",\"cbs_id\":\"427\"},{\"draft_year\":\"1970\",\"stats_id\":\"19\",\"draft_team\":\"NYG\",\"position\":\"Def\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"twitter_username\":\"giants\",\"id\":\"0517\",\"team\":\"NYG\",\"fleaflicker_id\":\"2348\",\"cbs_id\":\"408\"},{\"draft_year\":\"1970\",\"stats_id\":\"21\",\"draft_team\":\"PHI\",\"position\":\"Def\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"twitter_username\":\"Eagles\",\"id\":\"0518\",\"team\":\"PHI\",\"fleaflicker_id\":\"2351\",\"cbs_id\":\"411\"},{\"draft_year\":\"1970\",\"stats_id\":\"22\",\"draft_team\":\"ARI\",\"position\":\"Def\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"twitter_username\":\"AZCardinals\",\"id\":\"0519\",\"team\":\"ARI\",\"fleaflicker_id\":\"2328\",\"cbs_id\":\"412\"},{\"draft_year\":\"1970\",\"stats_id\":\"28\",\"draft_team\":\"WAS\",\"position\":\"Def\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"twitter_username\":\"Redskins\",\"id\":\"0520\",\"team\":\"WAS\",\"fleaflicker_id\":\"2359\",\"cbs_id\":\"418\"},{\"draft_year\":\"1970\",\"stats_id\":\"3\",\"draft_team\":\"CHI\",\"position\":\"Def\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"twitter_username\":\"ChicagoBears\",\"id\":\"0521\",\"team\":\"CHI\",\"fleaflicker_id\":\"2333\",\"cbs_id\":\"421\"},{\"draft_year\":\"1970\",\"stats_id\":\"8\",\"draft_team\":\"DET\",\"position\":\"Def\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"twitter_username\":\"detroitlionsnfl\",\"id\":\"0522\",\"team\":\"DET\",\"fleaflicker_id\":\"2338\",\"cbs_id\":\"429\"},{\"draft_year\":\"1970\",\"stats_id\":\"9\",\"draft_team\":\"GBP\",\"position\":\"Def\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"packers\",\"id\":\"0523\",\"team\":\"GBP\",\"fleaflicker_id\":\"2339\",\"cbs_id\":\"430\"},{\"draft_year\":\"1970\",\"stats_id\":\"16\",\"draft_team\":\"MIN\",\"position\":\"Def\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"twitter_username\":\"Vikings\",\"id\":\"0524\",\"team\":\"MIN\",\"fleaflicker_id\":\"2345\",\"cbs_id\":\"405\"},{\"draft_year\":\"1970\",\"stats_id\":\"27\",\"draft_team\":\"TBB\",\"position\":\"Def\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"twitter_username\":\"TBBuccaneers\",\"id\":\"0525\",\"team\":\"TBB\",\"fleaflicker_id\":\"2357\",\"cbs_id\":\"417\"},{\"draft_year\":\"1970\",\"stats_id\":\"1\",\"draft_team\":\"ATL\",\"position\":\"Def\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"twitter_username\":\"AtlantaFalcons\",\"id\":\"0526\",\"team\":\"ATL\",\"fleaflicker_id\":\"2329\",\"cbs_id\":\"401\"},{\"draft_year\":\"1970\",\"stats_id\":\"29\",\"draft_team\":\"CAR\",\"position\":\"Def\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"twitter_username\":\"Panthers\",\"id\":\"0527\",\"team\":\"CAR\",\"fleaflicker_id\":\"2332\",\"cbs_id\":\"420\"},{\"draft_year\":\"1970\",\"stats_id\":\"14\",\"draft_team\":\"FA\",\"position\":\"Def\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"twitter_username\":\"STLouisRams\",\"id\":\"0528\",\"team\":\"LAR\",\"cbs_id\":\"423\"},{\"draft_year\":\"1970\",\"stats_id\":\"18\",\"draft_team\":\"NOS\",\"position\":\"Def\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"twitter_username\":\"saints\",\"id\":\"0529\",\"team\":\"NOS\",\"fleaflicker_id\":\"2347\",\"cbs_id\":\"407\"},{\"draft_year\":\"1970\",\"stats_id\":\"25\",\"draft_team\":\"SFO\",\"position\":\"Def\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"twitter_username\":\"49ers\",\"id\":\"0530\",\"team\":\"SFO\",\"cbs_id\":\"415\"},{\"draft_year\":\"1970\",\"stats_id\":\"33\",\"draft_team\":\"BAL\",\"position\":\"Def\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"twitter_username\":\"ravens\",\"id\":\"0531\",\"team\":\"BAL\",\"fleaflicker_id\":\"2330\",\"cbs_id\":\"425\"},{\"draft_year\":\"1970\",\"stats_id\":\"34\",\"draft_team\":\"HOU\",\"position\":\"Def\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"twitter_username\":\"houstontexans\",\"id\":\"0532\",\"team\":\"HOU\",\"fleaflicker_id\":\"2340\",\"cbs_id\":\"432\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"ST\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0551\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\",\"cbs_id\":\"309\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"ST\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0552\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"302\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"ST\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0553\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"304\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"ST\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0554\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"306\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"ST\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0555\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"310\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"ST\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0556\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\",\"cbs_id\":\"326\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"ST\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0557\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\",\"cbs_id\":\"319\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"ST\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0558\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"331\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"ST\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0559\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"322\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"ST\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0560\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"313\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"ST\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0561\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\",\"cbs_id\":\"328\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"ST\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0562\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"303\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"ST\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0563\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"324\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0564\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"314\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"ST\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0565\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"316\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"ST\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0566\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"327\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"ST\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0567\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"308\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"ST\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0568\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"311\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"ST\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0569\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"312\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"ST\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0570\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"318\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"ST\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0571\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\",\"cbs_id\":\"321\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"ST\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0572\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"329\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"ST\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0573\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"330\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"ST\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0574\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"305\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"ST\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0575\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\",\"cbs_id\":\"317\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"ST\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0576\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"301\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"ST\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0577\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"320\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"ST\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0578\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"323\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"ST\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0579\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"307\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"ST\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0580\",\"twitter_username\":\"49ers\",\"team\":\"SFO\",\"cbs_id\":\"315\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"ST\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0581\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"325\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"ST\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0582\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"332\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"Off\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0601\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"Off\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0602\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"Off\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0603\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"Off\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0604\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"Off\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0605\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"Off\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0606\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"Off\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0607\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"Off\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0608\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"Off\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0609\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"Off\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0610\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"Off\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0611\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"Off\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0612\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"Off\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0613\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0614\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"Off\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0615\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"Off\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0616\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"Off\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0617\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"Off\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0618\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"Off\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0619\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"Off\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0620\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"Off\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0621\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"Off\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0622\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"Off\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0623\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"Off\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0624\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"Off\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0625\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"Off\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0626\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"Off\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0627\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"Off\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0628\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"Off\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0629\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"Off\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0630\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"Off\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0631\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"Off\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0632\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMQB\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0651\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMQB\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0652\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\",\"cbs_id\":\"502\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMQB\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0653\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\",\"cbs_id\":\"504\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMQB\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0654\",\"twitter_username\":\"patriots\",\"team\":\"NEP\",\"cbs_id\":\"506\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMQB\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0655\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\",\"cbs_id\":\"510\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMQB\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0656\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMQB\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0657\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMQB\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0658\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\",\"cbs_id\":\"531\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMQB\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0659\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\",\"cbs_id\":\"522\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMQB\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0660\",\"twitter_username\":\"steelers\",\"team\":\"PIT\",\"cbs_id\":\"513\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMQB\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0661\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMQB\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0662\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\",\"cbs_id\":\"503\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMQB\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0663\",\"twitter_username\":\"raiders\",\"team\":\"LVR\",\"cbs_id\":\"524\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0664\",\"twitter_username\":\"chargers\",\"team\":\"LAC\",\"cbs_id\":\"514\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMQB\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0665\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\",\"cbs_id\":\"516\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMQB\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0666\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\",\"cbs_id\":\"527\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMQB\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0667\",\"twitter_username\":\"giants\",\"team\":\"NYG\",\"cbs_id\":\"508\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMQB\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0668\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\",\"cbs_id\":\"511\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMQB\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0669\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\",\"cbs_id\":\"512\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMQB\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0670\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\",\"cbs_id\":\"518\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMQB\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0671\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMQB\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0672\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\",\"cbs_id\":\"529\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMQB\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0673\",\"twitter_username\":\"packers\",\"team\":\"GBP\",\"cbs_id\":\"530\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMQB\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0674\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\",\"cbs_id\":\"505\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMQB\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0675\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMQB\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0676\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\",\"cbs_id\":\"501\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMQB\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0677\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\",\"cbs_id\":\"520\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMQB\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0678\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\",\"cbs_id\":\"523\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMQB\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0679\",\"twitter_username\":\"saints\",\"team\":\"NOS\",\"cbs_id\":\"507\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMQB\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0680\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMQB\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0681\",\"twitter_username\":\"ravens\",\"team\":\"BAL\",\"cbs_id\":\"525\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMQB\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0682\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\",\"cbs_id\":\"532\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPK\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0701\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPK\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0702\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPK\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0703\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPK\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0704\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPK\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0705\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPK\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0706\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPK\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0707\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPK\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0708\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPK\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0709\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPK\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0710\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPK\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0711\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPK\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0712\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPK\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0713\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0714\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPK\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0715\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPK\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0716\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPK\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0717\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPK\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0718\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPK\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0719\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPK\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0720\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPK\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0721\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPK\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0722\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPK\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0723\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPK\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0724\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPK\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0725\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPK\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0726\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPK\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0727\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPK\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0728\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPK\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0729\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPK\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0730\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPK\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0731\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPK\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0732\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1970\",\"draft_team\":\"BUF\",\"position\":\"TMPN\",\"name\":\"Bills, Buffalo\",\"stats_global_id\":\"0\",\"id\":\"0751\",\"twitter_username\":\"buffalobills\",\"team\":\"BUF\"},{\"draft_year\":\"1970\",\"draft_team\":\"IND\",\"position\":\"TMPN\",\"name\":\"Colts, Indianapolis\",\"stats_global_id\":\"0\",\"id\":\"0752\",\"twitter_username\":\"nflcolts\",\"team\":\"IND\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIA\",\"position\":\"TMPN\",\"name\":\"Dolphins, Miami\",\"stats_global_id\":\"0\",\"id\":\"0753\",\"twitter_username\":\"MiamiDolphins\",\"team\":\"MIA\"},{\"draft_year\":\"1970\",\"draft_team\":\"NEP\",\"position\":\"TMPN\",\"name\":\"Patriots, New England\",\"stats_global_id\":\"0\",\"id\":\"0754\",\"twitter_username\":\"patriots\",\"team\":\"NEP\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYJ\",\"position\":\"TMPN\",\"name\":\"Jets, New York\",\"stats_global_id\":\"0\",\"id\":\"0755\",\"twitter_username\":\"nyjets\",\"team\":\"NYJ\"},{\"draft_year\":\"1970\",\"draft_team\":\"CIN\",\"position\":\"TMPN\",\"name\":\"Bengals, Cincinnati\",\"stats_global_id\":\"0\",\"id\":\"0756\",\"twitter_username\":\"Bengals\",\"team\":\"CIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"CLE\",\"position\":\"TMPN\",\"name\":\"Browns, Cleveland\",\"stats_global_id\":\"0\",\"id\":\"0757\",\"twitter_username\":\"OfficialBrowns\",\"team\":\"CLE\"},{\"draft_year\":\"1970\",\"draft_team\":\"TEN\",\"position\":\"TMPN\",\"name\":\"Titans, Tennessee\",\"stats_global_id\":\"0\",\"id\":\"0758\",\"twitter_username\":\"tennesseetitans\",\"team\":\"TEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"JAC\",\"position\":\"TMPN\",\"name\":\"Jaguars, Jacksonville\",\"stats_global_id\":\"0\",\"id\":\"0759\",\"twitter_username\":\"jaguarsinsider\",\"team\":\"JAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"PIT\",\"position\":\"TMPN\",\"name\":\"Steelers, Pittsburgh\",\"stats_global_id\":\"0\",\"id\":\"0760\",\"twitter_username\":\"steelers\",\"team\":\"PIT\"},{\"draft_year\":\"1970\",\"draft_team\":\"DEN\",\"position\":\"TMPN\",\"name\":\"Broncos, Denver\",\"stats_global_id\":\"0\",\"id\":\"0761\",\"twitter_username\":\"DenverBroncos\",\"team\":\"DEN\"},{\"draft_year\":\"1970\",\"draft_team\":\"KCC\",\"position\":\"TMPN\",\"name\":\"Chiefs, Kansas City\",\"stats_global_id\":\"0\",\"id\":\"0762\",\"twitter_username\":\"kcchiefs\",\"team\":\"KCC\"},{\"draft_year\":\"1970\",\"draft_team\":\"OAK\",\"position\":\"TMPN\",\"name\":\"Raiders, Las Vegas\",\"stats_global_id\":\"0\",\"id\":\"0763\",\"twitter_username\":\"raiders\",\"team\":\"LVR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Chargers, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0764\",\"twitter_username\":\"chargers\",\"team\":\"LAC\"},{\"draft_year\":\"1970\",\"draft_team\":\"SEA\",\"position\":\"TMPN\",\"name\":\"Seahawks, Seattle\",\"stats_global_id\":\"0\",\"id\":\"0765\",\"twitter_username\":\"seahawks\",\"team\":\"SEA\"},{\"draft_year\":\"1970\",\"draft_team\":\"DAL\",\"position\":\"TMPN\",\"name\":\"Cowboys, Dallas\",\"stats_global_id\":\"0\",\"id\":\"0766\",\"twitter_username\":\"dallascowboys\",\"team\":\"DAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"NYG\",\"position\":\"TMPN\",\"name\":\"Giants, New York\",\"stats_global_id\":\"0\",\"id\":\"0767\",\"twitter_username\":\"giants\",\"team\":\"NYG\"},{\"draft_year\":\"1970\",\"draft_team\":\"PHI\",\"position\":\"TMPN\",\"name\":\"Eagles, Philadelphia\",\"stats_global_id\":\"0\",\"id\":\"0768\",\"twitter_username\":\"Eagles\",\"team\":\"PHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"ARI\",\"position\":\"TMPN\",\"name\":\"Cardinals, Arizona\",\"stats_global_id\":\"0\",\"id\":\"0769\",\"twitter_username\":\"AZCardinals\",\"team\":\"ARI\"},{\"draft_year\":\"1970\",\"draft_team\":\"WAS\",\"position\":\"TMPN\",\"name\":\"FootballTeam, Washington\",\"stats_global_id\":\"0\",\"id\":\"0770\",\"twitter_username\":\"Redskins\",\"team\":\"WAS\"},{\"draft_year\":\"1970\",\"draft_team\":\"CHI\",\"position\":\"TMPN\",\"name\":\"Bears, Chicago\",\"stats_global_id\":\"0\",\"id\":\"0771\",\"twitter_username\":\"ChicagoBears\",\"team\":\"CHI\"},{\"draft_year\":\"1970\",\"draft_team\":\"DET\",\"position\":\"TMPN\",\"name\":\"Lions, Detroit\",\"stats_global_id\":\"0\",\"id\":\"0772\",\"twitter_username\":\"detroitlionsnfl\",\"team\":\"DET\"},{\"draft_year\":\"1970\",\"draft_team\":\"GBP\",\"position\":\"TMPN\",\"name\":\"Packers, Green Bay\",\"stats_global_id\":\"0\",\"id\":\"0773\",\"twitter_username\":\"packers\",\"team\":\"GBP\"},{\"draft_year\":\"1970\",\"draft_team\":\"MIN\",\"position\":\"TMPN\",\"name\":\"Vikings, Minnesota\",\"stats_global_id\":\"0\",\"id\":\"0774\",\"twitter_username\":\"Vikings\",\"team\":\"MIN\"},{\"draft_year\":\"1970\",\"draft_team\":\"TBB\",\"position\":\"TMPN\",\"name\":\"Buccaneers, Tampa Bay\",\"stats_global_id\":\"0\",\"id\":\"0775\",\"twitter_username\":\"TBBuccaneers\",\"team\":\"TBB\"},{\"draft_year\":\"1970\",\"draft_team\":\"ATL\",\"position\":\"TMPN\",\"name\":\"Falcons, Atlanta\",\"stats_global_id\":\"0\",\"id\":\"0776\",\"twitter_username\":\"AtlantaFalcons\",\"team\":\"ATL\"},{\"draft_year\":\"1970\",\"draft_team\":\"CAR\",\"position\":\"TMPN\",\"name\":\"Panthers, Carolina\",\"stats_global_id\":\"0\",\"id\":\"0777\",\"twitter_username\":\"Panthers\",\"team\":\"CAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"FA\",\"position\":\"TMPN\",\"name\":\"Rams, Los Angeles\",\"stats_global_id\":\"0\",\"id\":\"0778\",\"twitter_username\":\"STLouisRams\",\"team\":\"LAR\"},{\"draft_year\":\"1970\",\"draft_team\":\"NOS\",\"position\":\"TMPN\",\"name\":\"Saints, New Orleans\",\"stats_global_id\":\"0\",\"id\":\"0779\",\"twitter_username\":\"saints\",\"team\":\"NOS\"},{\"draft_year\":\"1970\",\"draft_team\":\"SFO\",\"position\":\"TMPN\",\"name\":\"49ers, San Francisco\",\"stats_global_id\":\"0\",\"id\":\"0780\",\"twitter_username\":\"49ers\",\"team\":\"SFO\"},{\"draft_year\":\"1970\",\"draft_team\":\"BAL\",\"position\":\"TMPN\",\"name\":\"Ravens, Baltimore\",\"stats_global_id\":\"0\",\"id\":\"0781\",\"twitter_username\":\"ravens\",\"team\":\"BAL\"},{\"draft_year\":\"1970\",\"draft_team\":\"HOU\",\"position\":\"TMPN\",\"name\":\"Texans, Houston\",\"stats_global_id\":\"0\",\"id\":\"0782\",\"twitter_username\":\"houstontexans\",\"team\":\"HOU\"},{\"draft_year\":\"1994\",\"stats_id\":\"39685\",\"draft_team\":\"NYJ\",\"position\":\"Coach\",\"name\":\"Carroll, Pete\",\"stats_global_id\":\"0\",\"twitter_username\":\"PeteCarroll\",\"sportsdata_id\":\"8c74ff3b-c121-4d2c-9387-34f5900208a9\",\"id\":\"1395\",\"team\":\"SEA\"},{\"draft_year\":\"1985\",\"draft_round\":\"3\",\"rotoworld_id\":\"9327\",\"draft_team\":\"BUF\",\"position\":\"Coach\",\"name\":\"Reich, Frank\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"216\",\"weight\":\"205\",\"sportsdata_id\":\"241bc8bb-04e3-40a6-8401-0d4f2206eb5d\",\"id\":\"1562\",\"team\":\"IND\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"10321\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Lynn, Anthony\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"rotowire_id\":\"180\",\"jersey\":\"29\",\"weight\":\"230\",\"sportsdata_id\":\"f0c317ca-26d6-4a5a-92f0-298d038a52b5\",\"id\":\"1857\",\"team\":\"LAC\"},{\"draft_year\":\"1996\",\"nfl_id\":\"adamvinatieri/2503471\",\"rotoworld_id\":\"1152\",\"stats_id\":\"3727\",\"position\":\"PK\",\"stats_global_id\":\"23849\",\"espn_id\":\"1097\",\"weight\":\"212\",\"id\":\"2842\",\"fleaflicker_id\":\"2074\",\"draft_team\":\"FA\",\"birthdate\":\"94366800\",\"name\":\"Vinatieri, Adam\",\"college\":\"South Dakota State\",\"height\":\"72\",\"rotowire_id\":\"395\",\"jersey\":\"4\",\"sportsdata_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"twitter_username\":\"aVinatieri4\",\"team\":\"FA\",\"cbs_id\":\"1392\"},{\"draft_year\":\"1997\",\"draft_round\":\"3\",\"rotoworld_id\":\"1115\",\"stats_id\":\"3982\",\"position\":\"Coach\",\"stats_global_id\":\"24104\",\"espn_id\":\"1257\",\"weight\":\"261\",\"id\":\"2982\",\"birthdate\":\"177224400\",\"draft_team\":\"PIT\",\"name\":\"Vrabel, Mike\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"3633\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"2218b277-a1bc-46f7-878c-740d25d160ce\",\"team\":\"TEN\",\"cbs_id\":\"4445\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9477\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Pederson, Doug\",\"college\":\"Northeast Louisiana\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"241\",\"weight\":\"216\",\"sportsdata_id\":\"ce14b0d9-8857-4772-b8a3-505b88ea3aaa\",\"id\":\"3144\",\"team\":\"PHI\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9270\",\"draft_team\":\"FA\",\"stats_id\":\"276\",\"position\":\"Coach\",\"name\":\"Gruden, Jon\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"1eedfa96-7fc1-41ac-97d4-fe9c8dc19a44\",\"id\":\"3486\",\"team\":\"LVR\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39797\",\"position\":\"Coach\",\"name\":\"Reid, Andy\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"3af34d1f-d056-4d3b-8457-d27613275bec\",\"id\":\"3622\",\"team\":\"KCC\"},{\"draft_year\":\"2014\",\"nfl_id\":\"rooseveltnix/2550235\",\"rotoworld_id\":\"10021\",\"stats_id\":\"28068\",\"position\":\"RB\",\"stats_global_id\":\"546742\",\"espn_id\":\"17223\",\"weight\":\"248\",\"id\":\"4397\",\"draft_team\":\"FA\",\"birthdate\":\"701931600\",\"name\":\"Nix, Roosevelt\",\"college\":\"Kent State\",\"rotowire_id\":\"9857\",\"height\":\"71\",\"jersey\":\"45\",\"sportsdata_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"team\":\"FA\",\"cbs_id\":\"2130101\"},{\"draft_year\":\"2001\",\"draft_round\":\"2\",\"nfl_id\":\"drewbrees/2504775\",\"rotoworld_id\":\"591\",\"stats_id\":\"5479\",\"position\":\"QB\",\"stats_global_id\":\"25598\",\"espn_id\":\"2580\",\"weight\":\"209\",\"id\":\"4925\",\"fleaflicker_id\":\"325\",\"birthdate\":\"285224400\",\"draft_team\":\"SDC\",\"name\":\"Brees, Drew\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"height\":\"72\",\"rotowire_id\":\"2178\",\"jersey\":\"9\",\"twitter_username\":\"drewbrees\",\"sportsdata_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"team\":\"NOS\",\"cbs_id\":\"235197\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39650\",\"position\":\"Coach\",\"name\":\"Belichick, Bill\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"25fd8a96-446e-4a72-be98-91052a05a856\",\"id\":\"5646\",\"team\":\"NEP\"},{\"draft_year\":\"2000\",\"draft_round\":\"6\",\"nfl_id\":\"tombrady/2504211\",\"rotoworld_id\":\"1163\",\"stats_id\":\"5228\",\"position\":\"QB\",\"stats_global_id\":\"25347\",\"espn_id\":\"2330\",\"weight\":\"225\",\"id\":\"5848\",\"fleaflicker_id\":\"309\",\"birthdate\":\"239432400\",\"draft_team\":\"NEP\",\"name\":\"Brady, Tom\",\"draft_pick\":\"33\",\"college\":\"Michigan\",\"height\":\"76\",\"rotowire_id\":\"1350\",\"jersey\":\"12\",\"sportsdata_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"team\":\"TBB\",\"cbs_id\":\"187741\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11649\",\"stats_id\":\"29924\",\"position\":\"CB\",\"stats_global_id\":\"691302\",\"weight\":\"185\",\"id\":\"6254\",\"draft_team\":\"DAL\",\"birthdate\":\"764312400\",\"name\":\"Peterson, Kevin\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11101\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"team\":\"ARI\",\"cbs_id\":\"1996809\"},{\"draft_year\":\"2002\",\"draft_round\":\"3\",\"nfl_id\":\"joshmccown/2505076\",\"rotoworld_id\":\"2090\",\"stats_id\":\"5967\",\"position\":\"QB\",\"stats_global_id\":\"81059\",\"espn_id\":\"3609\",\"weight\":\"218\",\"id\":\"6589\",\"birthdate\":\"299912400\",\"draft_team\":\"ARI\",\"name\":\"McCown, Josh\",\"draft_pick\":\"16\",\"college\":\"Sam Houston State\",\"height\":\"76\",\"rotowire_id\":\"2513\",\"jersey\":\"18\",\"sportsdata_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"team\":\"HOU\",\"cbs_id\":\"302085\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"302\",\"position\":\"Coach\",\"name\":\"Callahan, Bill\",\"stats_global_id\":\"0\",\"id\":\"6771\",\"team\":\"FA\"},{\"draft_year\":\"2002\",\"nfl_id\":\"mattbryant/2504797\",\"rotoworld_id\":\"978\",\"stats_id\":\"6243\",\"position\":\"PK\",\"stats_global_id\":\"171678\",\"espn_id\":\"4333\",\"weight\":\"203\",\"id\":\"6789\",\"fleaflicker_id\":\"2376\",\"birthdate\":\"170571600\",\"draft_team\":\"FA\",\"name\":\"Bryant, Matt\",\"college\":\"Baylor\",\"rotowire_id\":\"2832\",\"height\":\"69\",\"jersey\":\"3\",\"twitter_username\":\"Matt_Bryant3\",\"sportsdata_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"team\":\"FA\",\"cbs_id\":\"312308\"},{\"draft_year\":\"2003\",\"draft_round\":\"1\",\"nfl_id\":\"terrellsuggs/2505660\",\"rotoworld_id\":\"2237\",\"stats_id\":\"6346\",\"position\":\"LB\",\"stats_global_id\":\"184512\",\"espn_id\":\"4468\",\"weight\":\"265\",\"id\":\"6938\",\"fleaflicker_id\":\"1566\",\"birthdate\":\"403160400\",\"draft_team\":\"BAL\",\"name\":\"Suggs, Terrell\",\"draft_pick\":\"10\",\"college\":\"Arizona State\",\"height\":\"75\",\"rotowire_id\":\"3001\",\"jersey\":\"56\",\"twitter_username\":\"untouchablejay4\",\"sportsdata_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"team\":\"FA\",\"cbs_id\":\"396177\"},{\"draft_year\":\"2003\",\"draft_round\":\"3\",\"nfl_id\":\"jasonwitten/2505629\",\"rotoworld_id\":\"1990\",\"stats_id\":\"6405\",\"position\":\"TE\",\"stats_global_id\":\"184571\",\"espn_id\":\"4527\",\"weight\":\"263\",\"id\":\"6997\",\"birthdate\":\"389509200\",\"draft_team\":\"DAL\",\"name\":\"Witten, Jason\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"78\",\"rotowire_id\":\"3086\",\"jersey\":\"82\",\"twitter_username\":\"JasonWitten\",\"sportsdata_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"team\":\"LVR\",\"cbs_id\":\"396134\"},{\"draft_year\":\"2003\",\"draft_round\":\"6\",\"rotoworld_id\":\"1107\",\"stats_id\":\"6537\",\"position\":\"Coach\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"7129\",\"draft_team\":\"NEP\",\"birthdate\":\"303022800\",\"name\":\"Kingsbury, Kliff\",\"draft_pick\":\"28\",\"college\":\"Texas Tech\",\"rotowire_id\":\"3126\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"a84a7bb0-0be7-4586-8dd6-27423177ab18\",\"team\":\"ARI\",\"cbs_id\":\"396011\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"elimanning/2505996\",\"rotoworld_id\":\"1657\",\"stats_id\":\"6760\",\"position\":\"QB\",\"stats_global_id\":\"246051\",\"espn_id\":\"5526\",\"weight\":\"218\",\"id\":\"7391\",\"birthdate\":\"347346000\",\"draft_team\":\"FA\",\"name\":\"Manning, Eli\",\"draft_pick\":\"1\",\"college\":\"Mississippi\",\"height\":\"77\",\"rotowire_id\":\"3763\",\"jersey\":\"10\",\"sportsdata_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"team\":\"FA\",\"cbs_id\":\"493004\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"larryfitzgerald/2506106\",\"rotoworld_id\":\"1661\",\"stats_id\":\"6762\",\"position\":\"WR\",\"stats_global_id\":\"246053\",\"espn_id\":\"5528\",\"weight\":\"218\",\"id\":\"7393\",\"fleaflicker_id\":\"1732\",\"birthdate\":\"431154000\",\"draft_team\":\"ARI\",\"name\":\"Fitzgerald, Larry\",\"draft_pick\":\"3\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"3730\",\"jersey\":\"11\",\"twitter_username\":\"LarryFitzgerald\",\"sportsdata_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"team\":\"ARI\",\"cbs_id\":\"492934\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"philiprivers/2506121\",\"rotoworld_id\":\"1813\",\"stats_id\":\"6763\",\"position\":\"QB\",\"stats_global_id\":\"246054\",\"espn_id\":\"5529\",\"weight\":\"228\",\"id\":\"7394\",\"fleaflicker_id\":\"326\",\"birthdate\":\"376635600\",\"draft_team\":\"NYG\",\"name\":\"Rivers, Philip\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"height\":\"77\",\"rotowire_id\":\"3766\",\"jersey\":\"17\",\"sportsdata_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"team\":\"IND\",\"cbs_id\":\"493041\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benroethlisberger/2506109\",\"rotoworld_id\":\"1181\",\"stats_id\":\"6770\",\"position\":\"QB\",\"stats_global_id\":\"246061\",\"espn_id\":\"5536\",\"weight\":\"240\",\"id\":\"7401\",\"fleaflicker_id\":\"394\",\"birthdate\":\"383893200\",\"draft_team\":\"PIT\",\"name\":\"Roethlisberger, Ben\",\"draft_pick\":\"11\",\"college\":\"Miami (Ohio)\",\"height\":\"77\",\"rotowire_id\":\"3764\",\"jersey\":\"7\",\"sportsdata_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"team\":\"PIT\",\"cbs_id\":\"493043\"},{\"draft_year\":\"2004\",\"draft_round\":\"1\",\"nfl_id\":\"benjaminwatson/2506122\",\"rotoworld_id\":\"48\",\"stats_id\":\"6791\",\"position\":\"TE\",\"stats_global_id\":\"246082\",\"espn_id\":\"5557\",\"weight\":\"255\",\"id\":\"7422\",\"birthdate\":\"345963600\",\"draft_team\":\"NEP\",\"name\":\"Watson, Ben\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"3872\",\"jersey\":\"84\",\"twitter_username\":\"BenjaminSWatson\",\"sportsdata_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"team\":\"FA\",\"cbs_id\":\"493107\"},{\"draft_year\":\"2004\",\"draft_round\":\"3\",\"nfl_id\":\"mattschaub/2505982\",\"rotoworld_id\":\"16\",\"stats_id\":\"6849\",\"position\":\"QB\",\"stats_global_id\":\"246140\",\"espn_id\":\"5615\",\"weight\":\"245\",\"id\":\"7480\",\"fleaflicker_id\":\"1431\",\"birthdate\":\"362293200\",\"draft_team\":\"ATL\",\"name\":\"Schaub, Matt\",\"draft_pick\":\"27\",\"college\":\"Virginia\",\"height\":\"78\",\"rotowire_id\":\"3793\",\"jersey\":\"8\",\"sportsdata_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"team\":\"ATL\",\"cbs_id\":\"493050\"},{\"draft_year\":\"2004\",\"draft_round\":\"6\",\"nfl_id\":\"andylee/2506017\",\"rotoworld_id\":\"2884\",\"stats_id\":\"6947\",\"position\":\"PN\",\"stats_global_id\":\"246395\",\"espn_id\":\"5713\",\"weight\":\"185\",\"id\":\"7578\",\"birthdate\":\"397890000\",\"draft_team\":\"SFO\",\"name\":\"Lee, Andy\",\"draft_pick\":\"23\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"4044\",\"jersey\":\"4\",\"twitter_username\":\"AndyLee4\",\"sportsdata_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"team\":\"ARI\",\"cbs_id\":\"492992\"},{\"draft_year\":\"2004\",\"nfl_id\":\"mikeadams/2505708\",\"rotoworld_id\":\"3060\",\"stats_id\":\"7121\",\"position\":\"S\",\"stats_global_id\":\"251343\",\"espn_id\":\"5893\",\"weight\":\"205\",\"id\":\"7757\",\"birthdate\":\"354258000\",\"draft_team\":\"FA\",\"name\":\"Adams, Mike\",\"college\":\"Delaware\",\"rotowire_id\":\"4677\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"MDOTADAMS20\",\"sportsdata_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"team\":\"FA\",\"cbs_id\":\"494497\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"alexsmith/2506340\",\"rotoworld_id\":\"3119\",\"stats_id\":\"7177\",\"position\":\"QB\",\"stats_global_id\":\"217357\",\"espn_id\":\"8416\",\"weight\":\"213\",\"id\":\"7813\",\"fleaflicker_id\":\"3356\",\"birthdate\":\"452754000\",\"draft_team\":\"SFO\",\"name\":\"Smith, Alex\",\"draft_pick\":\"1\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"4306\",\"jersey\":\"11\",\"sportsdata_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"team\":\"WAS\",\"cbs_id\":\"552642\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"thomasdavis/2506352\",\"rotoworld_id\":\"3135\",\"stats_id\":\"7190\",\"position\":\"LB\",\"stats_global_id\":\"155917\",\"espn_id\":\"8429\",\"weight\":\"235\",\"id\":\"7826\",\"birthdate\":\"417157200\",\"draft_team\":\"CAR\",\"name\":\"Davis, Thomas\",\"draft_pick\":\"14\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"4455\",\"jersey\":\"58\",\"twitter_username\":\"TD58SDTM\",\"sportsdata_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"team\":\"WAS\",\"cbs_id\":\"409345\"},{\"draft_year\":\"2005\",\"draft_round\":\"1\",\"nfl_id\":\"aaronrodgers/2506363\",\"rotoworld_id\":\"3118\",\"stats_id\":\"7200\",\"position\":\"QB\",\"stats_global_id\":\"213957\",\"espn_id\":\"8439\",\"weight\":\"225\",\"id\":\"7836\",\"fleaflicker_id\":\"3452\",\"birthdate\":\"439189200\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Aaron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"4307\",\"jersey\":\"12\",\"twitter_username\":\"AaronRodgers12\",\"sportsdata_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"team\":\"GBP\",\"cbs_id\":\"419780\"},{\"draft_year\":\"2005\",\"draft_round\":\"2\",\"nfl_id\":\"mikenugent/2506386\",\"rotoworld_id\":\"3160\",\"stats_id\":\"7223\",\"position\":\"PK\",\"stats_global_id\":\"160391\",\"espn_id\":\"8461\",\"weight\":\"190\",\"id\":\"7859\",\"birthdate\":\"383893200\",\"draft_team\":\"NYJ\",\"name\":\"Nugent, Mike\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"70\",\"rotowire_id\":\"4441\",\"jersey\":\"6\",\"sportsdata_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"team\":\"FA\",\"cbs_id\":\"552599\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"frankgore/2506404\",\"rotoworld_id\":\"3205\",\"stats_id\":\"7241\",\"position\":\"RB\",\"stats_global_id\":\"157341\",\"espn_id\":\"8479\",\"weight\":\"212\",\"id\":\"7877\",\"fleaflicker_id\":\"2848\",\"birthdate\":\"421736400\",\"draft_team\":\"SFO\",\"name\":\"Gore, Frank\",\"draft_pick\":\"1\",\"college\":\"Miami (Fla.)\",\"height\":\"69\",\"rotowire_id\":\"4400\",\"jersey\":\"21\",\"sportsdata_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"team\":\"NYJ\",\"cbs_id\":\"411568\"},{\"draft_year\":\"2005\",\"draft_round\":\"3\",\"nfl_id\":\"dustincolquitt/2506438\",\"rotoworld_id\":\"3212\",\"stats_id\":\"7275\",\"position\":\"PN\",\"stats_global_id\":\"158414\",\"espn_id\":\"8513\",\"weight\":\"210\",\"id\":\"7911\",\"birthdate\":\"389509200\",\"draft_team\":\"KCC\",\"name\":\"Colquitt, Dustin\",\"draft_pick\":\"36\",\"college\":\"Tennessee\",\"height\":\"75\",\"rotowire_id\":\"4442\",\"jersey\":\"4\",\"twitter_username\":\"dustincolquitt2\",\"sportsdata_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"team\":\"FA\",\"cbs_id\":\"408640\"},{\"draft_year\":\"2005\",\"draft_round\":\"4\",\"nfl_id\":\"darrensproles/2506467\",\"rotoworld_id\":\"3221\",\"stats_id\":\"7306\",\"position\":\"RB\",\"stats_global_id\":\"164505\",\"espn_id\":\"8544\",\"weight\":\"190\",\"id\":\"7942\",\"birthdate\":\"424933200\",\"draft_team\":\"FA\",\"name\":\"Sproles, Darren\",\"draft_pick\":\"29\",\"college\":\"Kansas State\",\"height\":\"66\",\"rotowire_id\":\"4320\",\"jersey\":\"43\",\"twitter_username\":\"DarrenSproles\",\"sportsdata_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"team\":\"FA\",\"cbs_id\":\"421419\"},{\"draft_year\":\"2005\",\"draft_round\":\"7\",\"nfl_id\":\"ryanfitzpatrick/2506581\",\"rotoworld_id\":\"3240\",\"stats_id\":\"7426\",\"position\":\"QB\",\"stats_global_id\":\"161355\",\"espn_id\":\"8664\",\"weight\":\"228\",\"id\":\"8062\",\"fleaflicker_id\":\"3011\",\"birthdate\":\"406962000\",\"draft_team\":\"STL\",\"name\":\"Fitzpatrick, Ryan\",\"draft_pick\":\"36\",\"college\":\"Harvard\",\"height\":\"74\",\"rotowire_id\":\"4385\",\"jersey\":\"14\",\"sportsdata_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"team\":\"MIA\",\"cbs_id\":\"547043\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"363\",\"position\":\"Coach\",\"name\":\"Crennel, Romeo\",\"stats_global_id\":\"0\",\"id\":\"8068\",\"team\":\"HOU\"},{\"draft_year\":\"2005\",\"nfl_id\":\"robbiegould/2506264\",\"rotoworld_id\":\"3519\",\"stats_id\":\"7520\",\"position\":\"PK\",\"stats_global_id\":\"167377\",\"espn_id\":\"9354\",\"weight\":\"190\",\"id\":\"8153\",\"birthdate\":\"407998800\",\"draft_team\":\"FA\",\"name\":\"Gould, Robbie\",\"college\":\"Penn State\",\"rotowire_id\":\"4686\",\"height\":\"72\",\"jersey\":\"9\",\"twitter_username\":\"RobbieGould09\",\"sportsdata_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"team\":\"SFO\",\"cbs_id\":\"553121\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"325434\",\"position\":\"Coach\",\"name\":\"McCarthy, Mike\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"cf25a054-ebef-4dc2-b6c1-336f8e2af686\",\"id\":\"8235\",\"team\":\"DAL\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"30727\",\"position\":\"Coach\",\"name\":\"Payton, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"60269cd5-9c09-4bd9-a544-59ff6753cfd0\",\"id\":\"8237\",\"team\":\"NOS\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"vernondavis/2495826\",\"rotoworld_id\":\"3638\",\"stats_id\":\"7755\",\"position\":\"TE\",\"stats_global_id\":\"215595\",\"espn_id\":\"9592\",\"weight\":\"248\",\"id\":\"8247\",\"birthdate\":\"444373200\",\"draft_team\":\"SFO\",\"name\":\"Davis, Vernon\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"height\":\"75\",\"rotowire_id\":\"4732\",\"jersey\":\"85\",\"twitter_username\":\"VernonDavis85\",\"sportsdata_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"team\":\"FA\",\"cbs_id\":\"409254\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"johnathanjoseph/2495872\",\"rotoworld_id\":\"3693\",\"stats_id\":\"7773\",\"position\":\"CB\",\"stats_global_id\":\"246260\",\"espn_id\":\"9610\",\"weight\":\"186\",\"id\":\"8265\",\"fleaflicker_id\":\"4575\",\"birthdate\":\"450939600\",\"draft_team\":\"CIN\",\"name\":\"Joseph, Johnathan\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"height\":\"71\",\"rotowire_id\":\"4768\",\"jersey\":\"33\",\"sportsdata_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"team\":\"ARI\",\"cbs_id\":\"518581\"},{\"draft_year\":\"2006\",\"draft_round\":\"1\",\"nfl_id\":\"marcedeslewis/2495888\",\"rotoworld_id\":\"3615\",\"stats_id\":\"7777\",\"position\":\"TE\",\"stats_global_id\":\"214197\",\"espn_id\":\"9614\",\"weight\":\"267\",\"id\":\"8269\",\"fleaflicker_id\":\"4007\",\"birthdate\":\"453790800\",\"draft_team\":\"JAC\",\"name\":\"Lewis, Marcedes\",\"draft_pick\":\"28\",\"college\":\"UCLA\",\"height\":\"78\",\"rotowire_id\":\"4891\",\"jersey\":\"89\",\"twitter_username\":\"MarcedesLewis89\",\"sportsdata_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"team\":\"GBP\",\"cbs_id\":\"415313\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"stephengostkowski/2506922\",\"rotoworld_id\":\"3937\",\"stats_id\":\"7867\",\"position\":\"PK\",\"stats_global_id\":\"177862\",\"espn_id\":\"9704\",\"weight\":\"215\",\"id\":\"8359\",\"fleaflicker_id\":\"3986\",\"birthdate\":\"444114000\",\"draft_team\":\"NEP\",\"name\":\"Gostkowski, Stephen\",\"draft_pick\":\"21\",\"college\":\"Memphis\",\"height\":\"73\",\"rotowire_id\":\"4932\",\"jersey\":\"3\",\"sportsdata_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"team\":\"TEN\",\"cbs_id\":\"411579\"},{\"draft_year\":\"2006\",\"draft_round\":\"4\",\"nfl_id\":\"domatapeko/2506925\",\"rotoworld_id\":\"3940\",\"stats_id\":\"7872\",\"position\":\"DT\",\"stats_global_id\":\"264831\",\"espn_id\":\"9709\",\"weight\":\"325\",\"id\":\"8364\",\"birthdate\":\"470379600\",\"draft_team\":\"CIN\",\"name\":\"Peko, Domata\",\"draft_pick\":\"26\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5853\",\"jersey\":\"94\",\"twitter_username\":\"DomataPeko\",\"sportsdata_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"team\":\"ARI\",\"cbs_id\":\"517256\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"delaniewalker/2495966\",\"rotoworld_id\":\"3976\",\"stats_id\":\"7924\",\"position\":\"TE\",\"stats_global_id\":\"218943\",\"espn_id\":\"9761\",\"weight\":\"248\",\"id\":\"8416\",\"fleaflicker_id\":\"4353\",\"birthdate\":\"461134800\",\"draft_team\":\"SFO\",\"name\":\"Walker, Delanie\",\"draft_pick\":\"6\",\"college\":\"Central Missouri Sta\",\"height\":\"74\",\"rotowire_id\":\"4888\",\"jersey\":\"82\",\"twitter_username\":\"delaniewalker82\",\"sportsdata_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"team\":\"FA\",\"cbs_id\":\"1109396\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"samkoch/2506969\",\"rotoworld_id\":\"3994\",\"stats_id\":\"7952\",\"position\":\"PN\",\"stats_global_id\":\"214953\",\"espn_id\":\"9789\",\"weight\":\"222\",\"id\":\"8444\",\"birthdate\":\"398062800\",\"draft_team\":\"BAL\",\"name\":\"Koch, Sam\",\"draft_pick\":\"34\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"7073\",\"jersey\":\"4\",\"sportsdata_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"team\":\"BAL\",\"cbs_id\":\"414716\"},{\"draft_year\":\"2006\",\"draft_round\":\"6\",\"nfl_id\":\"antoinebethea/2495807\",\"rotoworld_id\":\"3998\",\"stats_id\":\"7956\",\"position\":\"S\",\"stats_global_id\":\"221518\",\"espn_id\":\"9793\",\"weight\":\"201\",\"id\":\"8448\",\"fleaflicker_id\":\"4106\",\"birthdate\":\"458024400\",\"draft_team\":\"IND\",\"name\":\"Bethea, Antoine\",\"draft_pick\":\"38\",\"college\":\"Howard\",\"height\":\"71\",\"rotowire_id\":\"4972\",\"jersey\":\"41\",\"twitter_username\":\"ABethea41\",\"sportsdata_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"team\":\"FA\",\"cbs_id\":\"424656\"},{\"draft_year\":\"0\",\"birthdate\":\"69483600\",\"draft_team\":\"FA\",\"stats_id\":\"381597\",\"position\":\"Coach\",\"name\":\"Tomlin, Mike\",\"stats_global_id\":\"0\",\"twitter_username\":\"CoachTomlin\",\"sportsdata_id\":\"28ada093-9fca-4364-ac01-6638483bf49a\",\"id\":\"8653\",\"team\":\"PIT\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"adrianpeterson/2507164\",\"rotoworld_id\":\"4169\",\"stats_id\":\"8261\",\"position\":\"RB\",\"stats_global_id\":\"267443\",\"espn_id\":\"10452\",\"weight\":\"220\",\"id\":\"8658\",\"birthdate\":\"480229200\",\"draft_team\":\"MIN\",\"name\":\"Peterson, Adrian\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"5215\",\"jersey\":\"28\",\"twitter_username\":\"AdrianPeterson\",\"sportsdata_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"team\":\"DET\",\"cbs_id\":\"517568\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"marshawnlynch/2495663\",\"rotoworld_id\":\"4186\",\"stats_id\":\"8266\",\"position\":\"RB\",\"stats_global_id\":\"269221\",\"espn_id\":\"10456\",\"weight\":\"215\",\"id\":\"8670\",\"birthdate\":\"514530000\",\"draft_team\":\"BUF\",\"name\":\"Lynch, Marshawn\",\"draft_pick\":\"12\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"5202\",\"jersey\":\"24\",\"twitter_username\":\"MoneyLynch\",\"sportsdata_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"team\":\"FA\",\"cbs_id\":\"504639\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"tedginn/2507166\",\"rotoworld_id\":\"4168\",\"stats_id\":\"8263\",\"position\":\"WR\",\"stats_global_id\":\"246804\",\"espn_id\":\"10453\",\"weight\":\"180\",\"id\":\"8673\",\"fleaflicker_id\":\"4710\",\"birthdate\":\"482130000\",\"draft_team\":\"MIA\",\"name\":\"Ginn Jr., Ted\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"5214\",\"jersey\":\"19\",\"twitter_username\":\"TedGinnJr_19\",\"sportsdata_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"team\":\"FA\",\"cbs_id\":\"502737\"},{\"draft_year\":\"2007\",\"draft_round\":\"1\",\"nfl_id\":\"gregolsen/2495700\",\"rotoworld_id\":\"4190\",\"stats_id\":\"8285\",\"position\":\"TE\",\"stats_global_id\":\"230925\",\"espn_id\":\"10475\",\"weight\":\"255\",\"id\":\"8687\",\"fleaflicker_id\":\"4828\",\"birthdate\":\"479365200\",\"draft_team\":\"CHI\",\"name\":\"Olsen, Greg\",\"draft_pick\":\"31\",\"college\":\"Miami (Fla.)\",\"height\":\"77\",\"rotowire_id\":\"5206\",\"jersey\":\"88\",\"twitter_username\":\"gregolsen88\",\"sportsdata_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"team\":\"SEA\",\"cbs_id\":\"502524\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"drewstanton/2495748\",\"rotoworld_id\":\"4179\",\"stats_id\":\"8297\",\"position\":\"QB\",\"stats_global_id\":\"215910\",\"espn_id\":\"10487\",\"weight\":\"226\",\"id\":\"8712\",\"birthdate\":\"452754000\",\"draft_team\":\"DET\",\"name\":\"Stanton, Drew\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"5251\",\"jersey\":\"5\",\"twitter_username\":\"drewstanton\",\"sportsdata_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"team\":\"FA\",\"cbs_id\":\"421487\"},{\"draft_year\":\"2007\",\"draft_round\":\"2\",\"nfl_id\":\"ericweddle/2495775\",\"rotoworld_id\":\"4223\",\"stats_id\":\"8291\",\"position\":\"S\",\"stats_global_id\":\"225448\",\"espn_id\":\"10481\",\"weight\":\"195\",\"id\":\"8713\",\"birthdate\":\"473662800\",\"draft_team\":\"FA\",\"name\":\"Weddle, Eric\",\"draft_pick\":\"5\",\"college\":\"Utah\",\"height\":\"71\",\"rotowire_id\":\"5370\",\"jersey\":\"32\",\"twitter_username\":\"weddlesbeard\",\"sportsdata_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"team\":\"FA\",\"cbs_id\":\"423334\"},{\"draft_year\":\"2007\",\"draft_round\":\"3\",\"nfl_id\":\"brandonmebane/2495677\",\"rotoworld_id\":\"4367\",\"stats_id\":\"8339\",\"position\":\"DT\",\"stats_global_id\":\"213954\",\"espn_id\":\"10529\",\"weight\":\"311\",\"id\":\"8721\",\"birthdate\":\"474613200\",\"draft_team\":\"SEA\",\"name\":\"Mebane, Brandon\",\"draft_pick\":\"22\",\"college\":\"California\",\"height\":\"73\",\"rotowire_id\":\"5393\",\"jersey\":\"92\",\"twitter_username\":\"Mebane92\",\"sportsdata_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"team\":\"FA\",\"cbs_id\":\"416670\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"masoncrosby/2507232\",\"rotoworld_id\":\"4182\",\"stats_id\":\"8447\",\"position\":\"PK\",\"stats_global_id\":\"214574\",\"espn_id\":\"10636\",\"weight\":\"207\",\"id\":\"8742\",\"fleaflicker_id\":\"4715\",\"birthdate\":\"463035600\",\"draft_team\":\"GBP\",\"name\":\"Crosby, Mason\",\"draft_pick\":\"19\",\"college\":\"Colorado\",\"height\":\"73\",\"rotowire_id\":\"5363\",\"jersey\":\"2\",\"twitter_username\":\"crosbykicks2\",\"sportsdata_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"team\":\"GBP\",\"cbs_id\":\"408969\"},{\"draft_year\":\"2007\",\"draft_round\":\"6\",\"nfl_id\":\"nickfolk/2507225\",\"rotoworld_id\":\"4273\",\"stats_id\":\"8432\",\"position\":\"PK\",\"stats_global_id\":\"213781\",\"espn_id\":\"10621\",\"weight\":\"222\",\"id\":\"8851\",\"birthdate\":\"468478800\",\"draft_team\":\"DAL\",\"name\":\"Folk, Nick\",\"draft_pick\":\"4\",\"college\":\"Arizona\",\"height\":\"73\",\"rotowire_id\":\"5365\",\"jersey\":\"6\",\"twitter_username\":\"nickfolk2\",\"sportsdata_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"team\":\"NEP\",\"cbs_id\":\"410721\"},{\"draft_year\":\"2006\",\"nfl_id\":\"mattprater/2506677\",\"rotoworld_id\":\"4502\",\"stats_id\":\"8565\",\"position\":\"PK\",\"stats_global_id\":\"218237\",\"espn_id\":\"11122\",\"weight\":\"201\",\"id\":\"8930\",\"draft_team\":\"FA\",\"birthdate\":\"460962000\",\"name\":\"Prater, Matt\",\"college\":\"Central Florida\",\"rotowire_id\":\"5051\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"team\":\"DET\",\"cbs_id\":\"1109832\"},{\"draft_year\":\"2007\",\"nfl_id\":\"mattmoore/2507282\",\"rotoworld_id\":\"4535\",\"stats_id\":\"8544\",\"position\":\"QB\",\"stats_global_id\":\"214201\",\"espn_id\":\"11128\",\"weight\":\"219\",\"id\":\"8944\",\"birthdate\":\"460875600\",\"draft_team\":\"FA\",\"name\":\"Moore, Matt\",\"college\":\"Oregon State\",\"rotowire_id\":\"5432\",\"height\":\"75\",\"jersey\":\"8\",\"twitter_username\":\"mattmoore_8\",\"sportsdata_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"team\":\"FA\",\"cbs_id\":\"1226278\"},{\"draft_year\":\"2006\",\"nfl_id\":\"lorenzoalexander/2506268\",\"rotoworld_id\":\"3824\",\"stats_id\":\"7569\",\"position\":\"LB\",\"stats_global_id\":\"156369\",\"espn_id\":\"9424\",\"weight\":\"245\",\"id\":\"8951\",\"birthdate\":\"423205200\",\"draft_team\":\"FA\",\"name\":\"Alexander, Lorenzo\",\"college\":\"California\",\"rotowire_id\":\"7166\",\"height\":\"73\",\"jersey\":\"57\",\"twitter_username\":\"onemangang97\",\"sportsdata_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"team\":\"FA\",\"cbs_id\":\"405385\"},{\"draft_year\":\"2006\",\"nfl_id\":\"tramonwilliams/2506789\",\"rotoworld_id\":\"4327\",\"stats_id\":\"8212\",\"position\":\"CB\",\"stats_global_id\":\"231508\",\"espn_id\":\"5432\",\"weight\":\"191\",\"id\":\"8958\",\"birthdate\":\"416638800\",\"draft_team\":\"FA\",\"name\":\"Williams, Tramon\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"5861\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"HighRizer38\",\"sportsdata_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"team\":\"BAL\",\"cbs_id\":\"423645\"},{\"draft_year\":\"2006\",\"nfl_id\":\"brentgrimes/2506861\",\"rotoworld_id\":\"4562\",\"stats_id\":\"8607\",\"position\":\"CB\",\"stats_global_id\":\"296297\",\"espn_id\":\"10913\",\"weight\":\"185\",\"id\":\"9028\",\"fleaflicker_id\":\"4012\",\"birthdate\":\"427438800\",\"draft_team\":\"FA\",\"name\":\"Grimes, Brent\",\"college\":\"Shippensburg\",\"rotowire_id\":\"5848\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"BGrimey21\",\"sportsdata_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"team\":\"FA\",\"cbs_id\":\"1111117\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"calaiscampbell/744\",\"rotoworld_id\":\"4628\",\"stats_id\":\"8827\",\"position\":\"DE\",\"stats_global_id\":\"266767\",\"espn_id\":\"11284\",\"weight\":\"300\",\"id\":\"9051\",\"fleaflicker_id\":\"5317\",\"birthdate\":\"525934800\",\"draft_team\":\"ARI\",\"name\":\"Campbell, Calais\",\"draft_pick\":\"19\",\"college\":\"Miami\",\"height\":\"80\",\"rotowire_id\":\"5587\",\"jersey\":\"93\",\"twitter_username\":\"Campbell93\",\"sportsdata_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"team\":\"BAL\",\"cbs_id\":\"520548\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"JoeFlacco\",\"rotoworld_id\":\"4677\",\"stats_id\":\"8795\",\"position\":\"QB\",\"stats_global_id\":\"216342\",\"espn_id\":\"11252\",\"weight\":\"245\",\"id\":\"9064\",\"birthdate\":\"474699600\",\"draft_team\":\"BAL\",\"name\":\"Flacco, Joe\",\"draft_pick\":\"18\",\"college\":\"Delaware\",\"height\":\"78\",\"rotowire_id\":\"5648\",\"jersey\":\"5\",\"twitter_username\":\"TeamFlacco\",\"sportsdata_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"team\":\"NYJ\",\"cbs_id\":\"1250697\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"chadhenne/252\",\"rotoworld_id\":\"4684\",\"stats_id\":\"8834\",\"position\":\"QB\",\"stats_global_id\":\"264851\",\"espn_id\":\"11291\",\"weight\":\"222\",\"id\":\"9073\",\"fleaflicker_id\":\"5343\",\"birthdate\":\"489128400\",\"draft_team\":\"MIA\",\"name\":\"Henne, Chad\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"5685\",\"jersey\":\"4\",\"sportsdata_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"team\":\"KCC\",\"cbs_id\":\"517291\"},{\"draft_year\":\"2008\",\"draft_round\":\"2\",\"nfl_id\":\"deseanjackson/1581\",\"rotoworld_id\":\"4659\",\"stats_id\":\"8826\",\"position\":\"WR\",\"stats_global_id\":\"300173\",\"espn_id\":\"11283\",\"weight\":\"175\",\"id\":\"9075\",\"birthdate\":\"533797200\",\"draft_team\":\"PHI\",\"name\":\"Jackson, DeSean\",\"draft_pick\":\"18\",\"college\":\"California\",\"height\":\"70\",\"rotowire_id\":\"5581\",\"jersey\":\"10\",\"twitter_username\":\"DeseanJackson10\",\"sportsdata_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"team\":\"PHI\",\"cbs_id\":\"559554\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"dominiquerodgers-cromartie/306\",\"rotoworld_id\":\"4715\",\"stats_id\":\"8793\",\"position\":\"CB\",\"stats_global_id\":\"272727\",\"espn_id\":\"11250\",\"weight\":\"205\",\"id\":\"9097\",\"birthdate\":\"513234000\",\"draft_team\":\"ARI\",\"name\":\"Rodgers-Cromartie, Dominique\",\"draft_pick\":\"16\",\"college\":\"Tennessee State\",\"height\":\"74\",\"rotowire_id\":\"5749\",\"jersey\":\"45\",\"sportsdata_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"team\":\"FA\",\"cbs_id\":\"1248550\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"mattryan/310\",\"rotoworld_id\":\"4637\",\"stats_id\":\"8780\",\"position\":\"QB\",\"stats_global_id\":\"216263\",\"espn_id\":\"11237\",\"weight\":\"217\",\"id\":\"9099\",\"fleaflicker_id\":\"5371\",\"birthdate\":\"485154000\",\"draft_team\":\"ATL\",\"name\":\"Ryan, Matt\",\"draft_pick\":\"3\",\"college\":\"Boston College\",\"height\":\"76\",\"rotowire_id\":\"5610\",\"jersey\":\"2\",\"twitter_username\":\"M_Ryan02\",\"sportsdata_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"team\":\"ATL\",\"cbs_id\":\"420095\"},{\"draft_year\":\"2008\",\"draft_round\":\"1\",\"nfl_id\":\"aqibtalib/1302\",\"rotoworld_id\":\"4640\",\"stats_id\":\"8797\",\"position\":\"CB\",\"stats_global_id\":\"245931\",\"espn_id\":\"11254\",\"weight\":\"209\",\"id\":\"9103\",\"birthdate\":\"508654800\",\"draft_team\":\"TBB\",\"name\":\"Talib, Aqib\",\"draft_pick\":\"20\",\"college\":\"Kansas\",\"height\":\"73\",\"rotowire_id\":\"5591\",\"jersey\":\"21\",\"sportsdata_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"team\":\"FA\",\"cbs_id\":\"517808\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"brandoncarr/4365\",\"rotoworld_id\":\"4893\",\"stats_id\":\"8906\",\"position\":\"CB\",\"stats_global_id\":\"399716\",\"espn_id\":\"11363\",\"weight\":\"210\",\"id\":\"9188\",\"fleaflicker_id\":\"5441\",\"birthdate\":\"516862800\",\"draft_team\":\"KCC\",\"name\":\"Carr, Brandon\",\"draft_pick\":\"5\",\"college\":\"Grand Valley State\",\"height\":\"72\",\"rotowire_id\":\"5878\",\"jersey\":\"24\",\"twitter_username\":\"BCarr39\",\"sportsdata_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"team\":\"FA\",\"cbs_id\":\"1615557\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"orlandoscandrick/2307\",\"rotoworld_id\":\"4814\",\"stats_id\":\"8909\",\"position\":\"CB\",\"stats_global_id\":\"300477\",\"espn_id\":\"11366\",\"weight\":\"196\",\"id\":\"9191\",\"fleaflicker_id\":\"5528\",\"birthdate\":\"539931600\",\"draft_team\":\"DAL\",\"name\":\"Scandrick, Orlando\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"height\":\"70\",\"rotowire_id\":\"5810\",\"jersey\":\"45\",\"sportsdata_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"team\":\"FA\",\"cbs_id\":\"556987\"},{\"draft_year\":\"2008\",\"draft_round\":\"5\",\"nfl_id\":\"mattslater/4487\",\"rotoworld_id\":\"4904\",\"stats_id\":\"8930\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"espn_id\":\"11387\",\"weight\":\"195\",\"id\":\"9200\",\"birthdate\":\"495090000\",\"draft_team\":\"NEP\",\"name\":\"Slater, Matt\",\"draft_pick\":\"18\",\"college\":\"UCLA\",\"height\":\"71\",\"rotowire_id\":\"5786\",\"jersey\":\"18\",\"sportsdata_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"team\":\"NEP\",\"cbs_id\":\"1615610\"},{\"draft_year\":\"2008\",\"draft_round\":\"6\",\"nfl_id\":\"pierregarcon/2346\",\"rotoworld_id\":\"4945\",\"stats_id\":\"8982\",\"position\":\"WR\",\"stats_global_id\":\"399939\",\"espn_id\":\"11439\",\"weight\":\"211\",\"id\":\"9250\",\"fleaflicker_id\":\"5381\",\"birthdate\":\"523861200\",\"draft_team\":\"IND\",\"name\":\"Garcon, Pierre\",\"draft_pick\":\"39\",\"college\":\"Mount Union\",\"height\":\"72\",\"rotowire_id\":\"5703\",\"jersey\":\"15\",\"twitter_username\":\"PierreGarcon\",\"sportsdata_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"team\":\"FA\",\"cbs_id\":\"583087\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"450948\",\"position\":\"Coach\",\"name\":\"Harbaugh, John\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bf49a80f-9733-453e-8dca-7b0146e92cff\",\"id\":\"9298\",\"team\":\"BAL\"},{\"draft_year\":\"2008\",\"nfl_id\":\"dannyamendola/2649\",\"rotoworld_id\":\"4991\",\"stats_id\":\"9037\",\"position\":\"WR\",\"stats_global_id\":\"263758\",\"espn_id\":\"11674\",\"weight\":\"185\",\"id\":\"9308\",\"fleaflicker_id\":\"5595\",\"birthdate\":\"499755600\",\"draft_team\":\"FA\",\"name\":\"Amendola, Danny\",\"college\":\"Texas Tech\",\"rotowire_id\":\"5813\",\"height\":\"71\",\"jersey\":\"80\",\"twitter_username\":\"DannyAmendola\",\"sportsdata_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"team\":\"DET\",\"cbs_id\":\"516968\"},{\"draft_year\":\"2008\",\"nfl_id\":\"brettkern/4263\",\"rotoworld_id\":\"5033\",\"stats_id\":\"9070\",\"position\":\"PN\",\"stats_global_id\":\"248214\",\"espn_id\":\"11555\",\"weight\":\"214\",\"id\":\"9310\",\"birthdate\":\"509000400\",\"draft_team\":\"FA\",\"name\":\"Kern, Brett\",\"college\":\"Toledo\",\"rotowire_id\":\"6315\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"brettkern6\",\"sportsdata_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"team\":\"TEN\",\"cbs_id\":\"1615898\"},{\"draft_year\":\"2008\",\"nfl_id\":\"stevenhauschka/2507374\",\"rotoworld_id\":\"5030\",\"stats_id\":\"9066\",\"position\":\"PK\",\"stats_global_id\":\"406186\",\"espn_id\":\"11923\",\"weight\":\"210\",\"id\":\"9319\",\"draft_team\":\"FA\",\"birthdate\":\"488869200\",\"name\":\"Hauschka, Steven\",\"college\":\"North Carolina State\",\"rotowire_id\":\"5935\",\"height\":\"76\",\"jersey\":\"4\",\"sportsdata_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"team\":\"JAC\",\"cbs_id\":\"1616746\"},{\"draft_year\":\"2008\",\"nfl_id\":\"wesleywoodyard/2354\",\"rotoworld_id\":\"5036\",\"stats_id\":\"9072\",\"position\":\"LB\",\"stats_global_id\":\"267050\",\"espn_id\":\"11609\",\"weight\":\"233\",\"id\":\"9330\",\"fleaflicker_id\":\"5575\",\"birthdate\":\"522306000\",\"draft_team\":\"FA\",\"name\":\"Woodyard, Wesley\",\"college\":\"Kentucky\",\"rotowire_id\":\"5740\",\"height\":\"72\",\"jersey\":\"59\",\"twitter_username\":\"WoodDro52\",\"sportsdata_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"team\":\"FA\",\"cbs_id\":\"519042\"},{\"draft_year\":\"0\",\"birthdate\":\"210574800\",\"draft_team\":\"FA\",\"stats_id\":\"389\",\"position\":\"Coach\",\"name\":\"Morris, Raheem\",\"stats_global_id\":\"0\",\"id\":\"9424\",\"team\":\"ATL\"},{\"draft_year\":\"2009\",\"nfl_id\":\"cameronwake/2506314\",\"rotoworld_id\":\"5203\",\"stats_id\":\"9691\",\"position\":\"LB\",\"stats_global_id\":\"149279\",\"espn_id\":\"12417\",\"weight\":\"263\",\"id\":\"9425\",\"fleaflicker_id\":\"6351\",\"birthdate\":\"381214800\",\"draft_team\":\"FA\",\"name\":\"Wake, Cameron\",\"college\":\"Penn State\",\"rotowire_id\":\"5975\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Kold91\",\"sportsdata_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"team\":\"FA\",\"cbs_id\":\"422972\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"michaelcrabtree/71269\",\"rotoworld_id\":\"5135\",\"stats_id\":\"9274\",\"position\":\"WR\",\"stats_global_id\":\"324799\",\"espn_id\":\"12563\",\"weight\":\"215\",\"id\":\"9427\",\"birthdate\":\"558594000\",\"draft_team\":\"SFO\",\"name\":\"Crabtree, Michael\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"height\":\"73\",\"rotowire_id\":\"5961\",\"jersey\":\"15\",\"twitter_username\":\"KingCrab15\",\"sportsdata_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"team\":\"FA\",\"cbs_id\":\"1125838\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"malcolmjenkins/79848\",\"rotoworld_id\":\"5217\",\"stats_id\":\"9278\",\"position\":\"S\",\"stats_global_id\":\"296911\",\"espn_id\":\"12426\",\"weight\":\"204\",\"id\":\"9430\",\"fleaflicker_id\":\"6051\",\"birthdate\":\"566974800\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, Malcolm\",\"draft_pick\":\"14\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"6086\",\"jersey\":\"27\",\"twitter_username\":\"MalcolmJenkins\",\"sportsdata_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"team\":\"NOS\",\"cbs_id\":\"563623\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"matthewstafford/79860\",\"rotoworld_id\":\"5132\",\"stats_id\":\"9265\",\"position\":\"QB\",\"stats_global_id\":\"323205\",\"espn_id\":\"12483\",\"weight\":\"220\",\"id\":\"9431\",\"fleaflicker_id\":\"6038\",\"birthdate\":\"571208400\",\"draft_team\":\"DET\",\"name\":\"Stafford, Matthew\",\"draft_pick\":\"1\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"5971\",\"jersey\":\"9\",\"twitter_username\":\"Staff_9\",\"sportsdata_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"team\":\"DET\",\"cbs_id\":\"1114942\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"percyharvin/80425\",\"rotoworld_id\":\"5197\",\"stats_id\":\"9286\",\"position\":\"WR\",\"stats_global_id\":\"329777\",\"espn_id\":\"12569\",\"weight\":\"184\",\"id\":\"9441\",\"birthdate\":\"580798800\",\"draft_team\":\"MIN\",\"name\":\"Harvin, Percy\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"5974\",\"jersey\":\"11\",\"twitter_username\":\"Percy_Harvin\",\"sportsdata_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"team\":\"FA\",\"cbs_id\":\"1114598\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"leseanmccoy/79607\",\"rotoworld_id\":\"5168\",\"stats_id\":\"9317\",\"position\":\"RB\",\"stats_global_id\":\"397945\",\"espn_id\":\"12514\",\"weight\":\"210\",\"id\":\"9448\",\"birthdate\":\"584686800\",\"draft_team\":\"PHI\",\"name\":\"McCoy, LeSean\",\"draft_pick\":\"21\",\"college\":\"Pittsburgh\",\"height\":\"71\",\"rotowire_id\":\"5970\",\"jersey\":\"25\",\"twitter_username\":\"CutonDime25\",\"sportsdata_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"team\":\"TBB\",\"cbs_id\":\"1243187\"},{\"draft_year\":\"2009\",\"draft_round\":\"1\",\"nfl_id\":\"claymatthews/80431\",\"rotoworld_id\":\"5278\",\"stats_id\":\"9290\",\"position\":\"LB\",\"stats_global_id\":\"283937\",\"espn_id\":\"12438\",\"weight\":\"255\",\"id\":\"9464\",\"fleaflicker_id\":\"6063\",\"birthdate\":\"516430800\",\"draft_team\":\"GBP\",\"name\":\"Matthews, Clay\",\"draft_pick\":\"26\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6072\",\"jersey\":\"52\",\"twitter_username\":\"ClayMatthews52\",\"sportsdata_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"team\":\"FA\",\"cbs_id\":\"504552\"},{\"draft_year\":\"2009\",\"draft_round\":\"2\",\"nfl_id\":\"patrickchung/71251\",\"rotoworld_id\":\"5284\",\"stats_id\":\"9298\",\"position\":\"S\",\"stats_global_id\":\"285921\",\"espn_id\":\"12527\",\"weight\":\"215\",\"id\":\"9465\",\"birthdate\":\"556347600\",\"draft_team\":\"NEP\",\"name\":\"Chung, Patrick\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"6095\",\"jersey\":\"23\",\"twitter_username\":\"PatrickChung23\",\"sportsdata_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"team\":\"NEP\",\"cbs_id\":\"520636\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"jaredcook/71265\",\"rotoworld_id\":\"5165\",\"stats_id\":\"9353\",\"position\":\"TE\",\"stats_global_id\":\"296480\",\"espn_id\":\"12537\",\"weight\":\"254\",\"id\":\"9474\",\"fleaflicker_id\":\"6126\",\"birthdate\":\"544770000\",\"draft_team\":\"TEN\",\"name\":\"Cook, Jared\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"5981\",\"jersey\":\"87\",\"twitter_username\":\"JaredCook89\",\"sportsdata_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"team\":\"NOS\",\"cbs_id\":\"584314\"},{\"draft_year\":\"2009\",\"draft_round\":\"3\",\"nfl_id\":\"mikewallace/2507763\",\"rotoworld_id\":\"5329\",\"stats_id\":\"9348\",\"position\":\"WR\",\"stats_global_id\":\"339270\",\"espn_id\":\"12601\",\"weight\":\"200\",\"id\":\"9525\",\"fleaflicker_id\":\"6121\",\"birthdate\":\"523256400\",\"draft_team\":\"PIT\",\"name\":\"Wallace, Mike\",\"draft_pick\":\"20\",\"college\":\"Mississippi\",\"height\":\"72\",\"rotowire_id\":\"6110\",\"jersey\":\"14\",\"twitter_username\":\"Wallace17_daKid\",\"sportsdata_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"team\":\"FA\",\"cbs_id\":\"559250\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"kevinhuber/71333\",\"rotoworld_id\":\"5365\",\"stats_id\":\"9406\",\"position\":\"PN\",\"stats_global_id\":\"285188\",\"espn_id\":\"12669\",\"weight\":\"210\",\"id\":\"9577\",\"birthdate\":\"490338000\",\"draft_team\":\"CIN\",\"name\":\"Huber, Kevin\",\"draft_pick\":\"6\",\"college\":\"Cincinnati\",\"height\":\"73\",\"rotowire_id\":\"7087\",\"jersey\":\"10\",\"twitter_username\":\"khuber10\",\"sportsdata_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"team\":\"CIN\",\"cbs_id\":\"525116\"},{\"draft_year\":\"2009\",\"draft_round\":\"5\",\"nfl_id\":\"thomasmorstead/71407\",\"rotoworld_id\":\"5382\",\"stats_id\":\"9428\",\"position\":\"PN\",\"stats_global_id\":\"286840\",\"espn_id\":\"12701\",\"weight\":\"235\",\"id\":\"9596\",\"birthdate\":\"510642000\",\"draft_team\":\"NOS\",\"name\":\"Morstead, Thomas\",\"draft_pick\":\"28\",\"college\":\"Southern Methodist\",\"height\":\"76\",\"rotowire_id\":\"6301\",\"jersey\":\"6\",\"twitter_username\":\"thomasmorstead\",\"sportsdata_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"team\":\"NOS\",\"cbs_id\":\"520362\"},{\"draft_year\":\"2009\",\"draft_round\":\"6\",\"nfl_id\":\"jasonmccourty/89756\",\"rotoworld_id\":\"5414\",\"stats_id\":\"9467\",\"position\":\"CB\",\"stats_global_id\":\"300593\",\"espn_id\":\"12691\",\"weight\":\"195\",\"id\":\"9633\",\"fleaflicker_id\":\"6240\",\"birthdate\":\"555829200\",\"draft_team\":\"TEN\",\"name\":\"McCourty, Jason\",\"draft_pick\":\"30\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"6221\",\"jersey\":\"30\",\"twitter_username\":\"JMcCourty30\",\"sportsdata_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"team\":\"NEP\",\"cbs_id\":\"1674131\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"julianedelman/238498\",\"rotoworld_id\":\"5440\",\"stats_id\":\"9496\",\"position\":\"WR\",\"stats_global_id\":\"334733\",\"espn_id\":\"12649\",\"weight\":\"198\",\"id\":\"9662\",\"fleaflicker_id\":\"6269\",\"birthdate\":\"517122000\",\"draft_team\":\"NEP\",\"name\":\"Edelman, Julian\",\"draft_pick\":\"23\",\"college\":\"Kent State\",\"height\":\"70\",\"rotowire_id\":\"6141\",\"jersey\":\"11\",\"twitter_username\":\"Edelman11\",\"sportsdata_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"team\":\"NEP\",\"cbs_id\":\"1674116\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"clintonmcdonald/89758\",\"rotoworld_id\":\"5455\",\"stats_id\":\"9513\",\"position\":\"DT\",\"stats_global_id\":\"300747\",\"espn_id\":\"12692\",\"weight\":\"297\",\"id\":\"9679\",\"fleaflicker_id\":\"6286\",\"birthdate\":\"536907600\",\"draft_team\":\"CIN\",\"name\":\"McDonald, Clinton\",\"draft_pick\":\"40\",\"college\":\"Memphis\",\"height\":\"74\",\"rotowire_id\":\"7202\",\"jersey\":\"93\",\"sportsdata_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"team\":\"FA\",\"cbs_id\":\"1674132\"},{\"draft_year\":\"2009\",\"draft_round\":\"7\",\"nfl_id\":\"ryansuccop/89802\",\"rotoworld_id\":\"5461\",\"stats_id\":\"9520\",\"position\":\"PK\",\"stats_global_id\":\"296494\",\"espn_id\":\"12731\",\"weight\":\"218\",\"id\":\"9686\",\"birthdate\":\"527490000\",\"draft_team\":\"KCC\",\"name\":\"Succop, Ryan\",\"draft_pick\":\"47\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"6150\",\"jersey\":\"3\",\"twitter_username\":\"ryansuccop\",\"sportsdata_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"team\":\"TBB\",\"cbs_id\":\"1674148\"},{\"draft_year\":\"2009\",\"nfl_id\":\"grahamgano/71309\",\"rotoworld_id\":\"5468\",\"stats_id\":\"9526\",\"position\":\"PK\",\"stats_global_id\":\"296451\",\"espn_id\":\"12460\",\"weight\":\"202\",\"id\":\"9694\",\"fleaflicker_id\":\"6304\",\"birthdate\":\"544942800\",\"draft_team\":\"FA\",\"name\":\"Gano, Graham\",\"college\":\"Florida State\",\"rotowire_id\":\"6045\",\"height\":\"74\",\"jersey\":\"5\",\"twitter_username\":\"GrahamGano\",\"sportsdata_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"team\":\"NYG\",\"cbs_id\":\"558839\"},{\"draft_year\":\"2009\",\"nfl_id\":\"chasedaniel/81284\",\"rotoworld_id\":\"5170\",\"stats_id\":\"9678\",\"position\":\"QB\",\"stats_global_id\":\"300101\",\"espn_id\":\"12471\",\"weight\":\"225\",\"id\":\"9706\",\"fleaflicker_id\":\"6353\",\"birthdate\":\"529045200\",\"draft_team\":\"FA\",\"name\":\"Daniel, Chase\",\"college\":\"Missouri\",\"rotowire_id\":\"6162\",\"height\":\"72\",\"jersey\":\"4\",\"twitter_username\":\"ChaseDaniel\",\"sportsdata_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"team\":\"DET\",\"cbs_id\":\"565754\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brittoncolquitt/71259\",\"rotoworld_id\":\"5618\",\"stats_id\":\"9769\",\"position\":\"PN\",\"stats_global_id\":\"225364\",\"espn_id\":\"12773\",\"weight\":\"210\",\"id\":\"9712\",\"draft_team\":\"FA\",\"birthdate\":\"480142800\",\"name\":\"Colquitt, Britton\",\"college\":\"Tennessee\",\"rotowire_id\":\"7192\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"team\":\"MIN\",\"cbs_id\":\"518635\"},{\"draft_year\":\"2009\",\"nfl_id\":\"brianhoyer/81294\",\"rotoworld_id\":\"5463\",\"stats_id\":\"9547\",\"position\":\"QB\",\"stats_global_id\":\"264725\",\"espn_id\":\"12477\",\"weight\":\"216\",\"id\":\"9714\",\"fleaflicker_id\":\"6324\",\"birthdate\":\"499582800\",\"draft_team\":\"FA\",\"name\":\"Hoyer, Brian\",\"college\":\"Michigan State\",\"rotowire_id\":\"6140\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"bhoyer6\",\"sportsdata_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"team\":\"NEP\",\"cbs_id\":\"517243\"},{\"draft_year\":\"2009\",\"nfl_id\":\"michaelbennett/2507617\",\"rotoworld_id\":\"5530\",\"stats_id\":\"9568\",\"position\":\"DE\",\"stats_global_id\":\"284055\",\"espn_id\":\"12762\",\"weight\":\"275\",\"id\":\"9749\",\"birthdate\":\"500706000\",\"draft_team\":\"FA\",\"name\":\"Bennett, Michael\",\"college\":\"Texas A&M\",\"rotowire_id\":\"6381\",\"height\":\"76\",\"jersey\":\"77\",\"twitter_username\":\"mosesbread72\",\"sportsdata_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"team\":\"FA\",\"cbs_id\":\"559771\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fewell, Perry\",\"stats_global_id\":\"0\",\"id\":\"9763\",\"team\":\"FA\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ndamukongsuh/496861\",\"rotoworld_id\":\"5593\",\"stats_id\":\"23977\",\"position\":\"DT\",\"stats_global_id\":\"301132\",\"espn_id\":\"13234\",\"weight\":\"313\",\"id\":\"9815\",\"fleaflicker_id\":\"6579\",\"birthdate\":\"536907600\",\"draft_team\":\"DET\",\"name\":\"Suh, Ndamukong\",\"draft_pick\":\"2\",\"college\":\"Nebraska\",\"height\":\"76\",\"rotowire_id\":\"6537\",\"jersey\":\"93\",\"twitter_username\":\"NdamukongSuh\",\"sportsdata_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"team\":\"TBB\",\"cbs_id\":\"563145\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"ericberry/496723\",\"rotoworld_id\":\"5623\",\"stats_id\":\"23980\",\"position\":\"S\",\"stats_global_id\":\"397975\",\"espn_id\":\"13252\",\"weight\":\"212\",\"id\":\"9816\",\"fleaflicker_id\":\"6556\",\"birthdate\":\"599374800\",\"draft_team\":\"KCC\",\"name\":\"Berry, Eric\",\"draft_pick\":\"5\",\"college\":\"Tennessee\",\"height\":\"72\",\"rotowire_id\":\"6643\",\"jersey\":\"29\",\"twitter_username\":\"Stuntman1429\",\"sportsdata_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"team\":\"FA\",\"cbs_id\":\"1255016\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"sambradford/497095\",\"rotoworld_id\":\"5161\",\"stats_id\":\"23976\",\"position\":\"QB\",\"stats_global_id\":\"333276\",\"espn_id\":\"13197\",\"weight\":\"224\",\"id\":\"9817\",\"fleaflicker_id\":\"6558\",\"birthdate\":\"563346000\",\"draft_team\":\"STL\",\"name\":\"Bradford, Sam\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6452\",\"jersey\":\"9\",\"sportsdata_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"team\":\"FA\",\"cbs_id\":\"1123599\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"geraldmccoy/496816\",\"rotoworld_id\":\"5599\",\"stats_id\":\"23978\",\"position\":\"DT\",\"stats_global_id\":\"333295\",\"espn_id\":\"13240\",\"weight\":\"300\",\"id\":\"9819\",\"fleaflicker_id\":\"6571\",\"birthdate\":\"572763600\",\"draft_team\":\"TBB\",\"name\":\"McCoy, Gerald\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"height\":\"76\",\"rotowire_id\":\"6583\",\"jersey\":\"93\",\"twitter_username\":\"Geraldini93\",\"sportsdata_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"team\":\"FA\",\"cbs_id\":\"1123685\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"joehaden/496733\",\"rotoworld_id\":\"5631\",\"stats_id\":\"23982\",\"position\":\"CB\",\"stats_global_id\":\"380747\",\"espn_id\":\"13249\",\"weight\":\"195\",\"id\":\"9820\",\"fleaflicker_id\":\"6564\",\"birthdate\":\"608533200\",\"draft_team\":\"CLE\",\"name\":\"Haden, Joe\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"6617\",\"jersey\":\"23\",\"twitter_username\":\"joehaden23\",\"sportsdata_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"team\":\"PIT\",\"cbs_id\":\"1273176\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"dezbryant/497278\",\"rotoworld_id\":\"5558\",\"stats_id\":\"23999\",\"position\":\"WR\",\"stats_global_id\":\"397499\",\"espn_id\":\"13215\",\"weight\":\"220\",\"id\":\"9823\",\"birthdate\":\"594622800\",\"draft_team\":\"DAL\",\"name\":\"Bryant, Dez\",\"draft_pick\":\"24\",\"college\":\"Oklahoma State\",\"height\":\"74\",\"rotowire_id\":\"6336\",\"jersey\":\"88\",\"twitter_username\":\"DezBryant\",\"sportsdata_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"team\":\"BAL\",\"cbs_id\":\"1272524\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"carlosdunlap/496780\",\"rotoworld_id\":\"5707\",\"stats_id\":\"24029\",\"position\":\"DE\",\"stats_global_id\":\"396374\",\"espn_id\":\"13274\",\"weight\":\"285\",\"id\":\"9825\",\"fleaflicker_id\":\"6606\",\"birthdate\":\"604645200\",\"draft_team\":\"CIN\",\"name\":\"Dunlap, Carlos\",\"draft_pick\":\"22\",\"college\":\"Florida\",\"height\":\"78\",\"rotowire_id\":\"6570\",\"jersey\":\"96\",\"twitter_username\":\"Carlos_Dunlap\",\"sportsdata_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"team\":\"SEA\",\"cbs_id\":\"1273172\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"brandongraham/496788\",\"rotoworld_id\":\"5756\",\"stats_id\":\"23988\",\"position\":\"DE\",\"stats_global_id\":\"336730\",\"espn_id\":\"13239\",\"weight\":\"265\",\"id\":\"9826\",\"fleaflicker_id\":\"6562\",\"birthdate\":\"576046800\",\"draft_team\":\"PHI\",\"name\":\"Graham, Brandon\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"height\":\"74\",\"rotowire_id\":\"6571\",\"jersey\":\"55\",\"twitter_username\":\"brandongraham55\",\"sportsdata_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"team\":\"PHI\",\"cbs_id\":\"1116725\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"eversongriffen/496790\",\"rotoworld_id\":\"5615\",\"stats_id\":\"24075\",\"position\":\"DE\",\"stats_global_id\":\"399305\",\"espn_id\":\"13373\",\"weight\":\"273\",\"id\":\"9828\",\"fleaflicker_id\":\"6706\",\"birthdate\":\"567147600\",\"draft_team\":\"MIN\",\"name\":\"Griffen, Everson\",\"draft_pick\":\"2\",\"college\":\"Southern Cal\",\"height\":\"75\",\"rotowire_id\":\"6572\",\"jersey\":\"97\",\"twitter_username\":\"EGriff97\",\"sportsdata_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"team\":\"DET\",\"cbs_id\":\"1244469\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"earlthomas/2508080\",\"rotoworld_id\":\"5703\",\"stats_id\":\"23989\",\"position\":\"S\",\"stats_global_id\":\"399526\",\"espn_id\":\"13251\",\"weight\":\"202\",\"id\":\"9829\",\"birthdate\":\"610520400\",\"draft_team\":\"SEA\",\"name\":\"Thomas, Earl\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"height\":\"70\",\"rotowire_id\":\"6645\",\"jersey\":\"29\",\"twitter_username\":\"Earl_Thomas\",\"sportsdata_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"team\":\"FA\",\"cbs_id\":\"1245247\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"goldentate/497326\",\"rotoworld_id\":\"5583\",\"stats_id\":\"24035\",\"position\":\"WR\",\"stats_global_id\":\"400490\",\"espn_id\":\"13217\",\"weight\":\"191\",\"id\":\"9831\",\"fleaflicker_id\":\"6642\",\"birthdate\":\"586501200\",\"draft_team\":\"SEA\",\"name\":\"Tate, Golden\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"height\":\"71\",\"rotowire_id\":\"6389\",\"jersey\":\"15\",\"twitter_username\":\"ShowtimeTate\",\"sportsdata_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"team\":\"NYG\",\"cbs_id\":\"1265470\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jasonpierre-paul/496843\",\"rotoworld_id\":\"5681\",\"stats_id\":\"23990\",\"position\":\"DE\",\"stats_global_id\":\"504295\",\"espn_id\":\"13256\",\"weight\":\"275\",\"id\":\"9833\",\"fleaflicker_id\":\"6575\",\"birthdate\":\"604645200\",\"draft_team\":\"NYG\",\"name\":\"Pierre-Paul, Jason\",\"draft_pick\":\"15\",\"college\":\"South Florida\",\"height\":\"77\",\"rotowire_id\":\"6568\",\"jersey\":\"90\",\"twitter_username\":\"DatBoyJPP\",\"sportsdata_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"team\":\"TBB\",\"cbs_id\":\"1692882\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"patrickrobinson/2508084\",\"rotoworld_id\":\"5845\",\"stats_id\":\"24007\",\"position\":\"CB\",\"stats_global_id\":\"323505\",\"espn_id\":\"13238\",\"weight\":\"191\",\"id\":\"9841\",\"fleaflicker_id\":\"6577\",\"birthdate\":\"557989200\",\"draft_team\":\"NOS\",\"name\":\"Robinson, Patrick\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"6620\",\"jersey\":\"21\",\"sportsdata_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"team\":\"NOS\",\"cbs_id\":\"1116562\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"brandonlafell/497302\",\"rotoworld_id\":\"5188\",\"stats_id\":\"24053\",\"position\":\"WR\",\"stats_global_id\":\"303885\",\"espn_id\":\"12576\",\"weight\":\"210\",\"id\":\"9843\",\"fleaflicker_id\":\"6619\",\"birthdate\":\"531464400\",\"draft_team\":\"CAR\",\"name\":\"LaFell, Brandon\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"75\",\"rotowire_id\":\"6503\",\"jersey\":\"19\",\"twitter_username\":\"Blafell1\",\"sportsdata_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"team\":\"FA\",\"cbs_id\":\"558591\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"devinmccourty/494287\",\"rotoworld_id\":\"5824\",\"stats_id\":\"24002\",\"position\":\"S\",\"stats_global_id\":\"300592\",\"espn_id\":\"13236\",\"weight\":\"195\",\"id\":\"9846\",\"fleaflicker_id\":\"6570\",\"birthdate\":\"555829200\",\"draft_team\":\"NEP\",\"name\":\"McCourty, Devin\",\"draft_pick\":\"27\",\"college\":\"Rutgers\",\"height\":\"70\",\"rotowire_id\":\"6621\",\"jersey\":\"32\",\"twitter_username\":\"McCourtyTwins\",\"sportsdata_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"team\":\"NEP\",\"cbs_id\":\"563691\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"jerryhughes/496796\",\"rotoworld_id\":\"5838\",\"stats_id\":\"24006\",\"position\":\"DE\",\"stats_global_id\":\"322863\",\"espn_id\":\"13245\",\"weight\":\"254\",\"id\":\"9853\",\"birthdate\":\"587451600\",\"draft_team\":\"IND\",\"name\":\"Hughes, Jerry\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"6576\",\"jersey\":\"55\",\"twitter_username\":\"Iam_jerryhughes\",\"sportsdata_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"team\":\"BUF\",\"cbs_id\":\"1125969\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"kareemjackson/496735\",\"rotoworld_id\":\"5732\",\"stats_id\":\"23995\",\"position\":\"S\",\"stats_global_id\":\"400131\",\"espn_id\":\"13254\",\"weight\":\"183\",\"id\":\"9861\",\"fleaflicker_id\":\"6567\",\"birthdate\":\"576651600\",\"draft_team\":\"HOU\",\"name\":\"Jackson, Kareem\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"height\":\"70\",\"rotowire_id\":\"6622\",\"jersey\":\"22\",\"twitter_username\":\"ReemBoi25\",\"sportsdata_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"team\":\"DEN\",\"cbs_id\":\"1273346\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"morganburnett/496727\",\"rotoworld_id\":\"5708\",\"stats_id\":\"24046\",\"position\":\"S\",\"stats_global_id\":\"398652\",\"espn_id\":\"13264\",\"weight\":\"210\",\"id\":\"9864\",\"fleaflicker_id\":\"6595\",\"birthdate\":\"600670800\",\"draft_team\":\"GBP\",\"name\":\"Burnett, Morgan\",\"draft_pick\":\"7\",\"college\":\"Georgia Tech\",\"height\":\"73\",\"rotowire_id\":\"6648\",\"jersey\":\"42\",\"twitter_username\":\"MoBetta_42\",\"sportsdata_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"team\":\"FA\",\"cbs_id\":\"1242890\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"seanlee/496937\",\"rotoworld_id\":\"5876\",\"stats_id\":\"24030\",\"position\":\"LB\",\"stats_global_id\":\"316771\",\"espn_id\":\"13284\",\"weight\":\"245\",\"id\":\"9866\",\"fleaflicker_id\":\"6621\",\"birthdate\":\"522392400\",\"draft_team\":\"DAL\",\"name\":\"Lee, Sean\",\"draft_pick\":\"23\",\"college\":\"Penn State\",\"height\":\"74\",\"rotowire_id\":\"6601\",\"jersey\":\"50\",\"sportsdata_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"team\":\"DAL\",\"cbs_id\":\"565762\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"genoatkins/496762\",\"rotoworld_id\":\"5749\",\"stats_id\":\"24095\",\"position\":\"DT\",\"stats_global_id\":\"332743\",\"espn_id\":\"13311\",\"weight\":\"300\",\"id\":\"9868\",\"fleaflicker_id\":\"6655\",\"birthdate\":\"575528400\",\"draft_team\":\"CIN\",\"name\":\"Atkins, Geno\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6589\",\"jersey\":\"97\",\"twitter_username\":\"GenoSacks\",\"sportsdata_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"team\":\"CIN\",\"cbs_id\":\"1114813\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"tysonalualu/496760\",\"rotoworld_id\":\"5873\",\"stats_id\":\"23985\",\"position\":\"DE\",\"stats_global_id\":\"324269\",\"espn_id\":\"13233\",\"weight\":\"304\",\"id\":\"9875\",\"fleaflicker_id\":\"6555\",\"birthdate\":\"547794000\",\"draft_team\":\"JAC\",\"name\":\"Alualu, Tyson\",\"draft_pick\":\"10\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"6590\",\"jersey\":\"94\",\"sportsdata_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"team\":\"PIT\",\"cbs_id\":\"559518\"},{\"draft_year\":\"2010\",\"draft_round\":\"1\",\"nfl_id\":\"demaryiusthomas/497328\",\"rotoworld_id\":\"5700\",\"stats_id\":\"23997\",\"position\":\"WR\",\"stats_global_id\":\"335172\",\"espn_id\":\"13216\",\"weight\":\"225\",\"id\":\"9884\",\"fleaflicker_id\":\"6581\",\"birthdate\":\"567406800\",\"draft_team\":\"DEN\",\"name\":\"Thomas, Demaryius\",\"draft_pick\":\"24\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"6440\",\"jersey\":\"88\",\"twitter_username\":\"DemaryiusT\",\"sportsdata_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"team\":\"FA\",\"cbs_id\":\"1114965\"},{\"draft_year\":\"2010\",\"nfl_id\":\"legarretteblount/497149\",\"rotoworld_id\":\"5854\",\"stats_id\":\"24318\",\"position\":\"RB\",\"stats_global_id\":\"450778\",\"espn_id\":\"13213\",\"weight\":\"247\",\"id\":\"9898\",\"birthdate\":\"534142800\",\"draft_team\":\"FA\",\"name\":\"Blount, LeGarrette\",\"college\":\"Oregon\",\"rotowire_id\":\"6482\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"LG_Blount\",\"sportsdata_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"team\":\"FA\",\"cbs_id\":\"1620455\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coltmccoy/497123\",\"rotoworld_id\":\"5699\",\"stats_id\":\"24060\",\"position\":\"QB\",\"stats_global_id\":\"306296\",\"espn_id\":\"13199\",\"weight\":\"212\",\"id\":\"9899\",\"fleaflicker_id\":\"6625\",\"birthdate\":\"526280400\",\"draft_team\":\"CLE\",\"name\":\"McCoy, Colt\",\"draft_pick\":\"21\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"6444\",\"jersey\":\"12\",\"twitter_username\":\"ColtMcCoy\",\"sportsdata_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"team\":\"NYG\",\"cbs_id\":\"584648\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"robgronkowski/497240\",\"rotoworld_id\":\"5729\",\"stats_id\":\"24017\",\"position\":\"TE\",\"stats_global_id\":\"381091\",\"espn_id\":\"13229\",\"weight\":\"268\",\"id\":\"9902\",\"birthdate\":\"611125200\",\"draft_team\":\"NEP\",\"name\":\"Gronkowski, Rob\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"6443\",\"jersey\":\"87\",\"twitter_username\":\"RobGronkowski\",\"sportsdata_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"team\":\"TBB\",\"cbs_id\":\"1244303\"},{\"draft_year\":\"2010\",\"draft_round\":\"2\",\"nfl_id\":\"linvaljoseph/496802\",\"rotoworld_id\":\"5867\",\"stats_id\":\"24021\",\"position\":\"DT\",\"stats_global_id\":\"402468\",\"espn_id\":\"13281\",\"weight\":\"329\",\"id\":\"9904\",\"fleaflicker_id\":\"6617\",\"birthdate\":\"592462800\",\"draft_team\":\"NYG\",\"name\":\"Joseph, Linval\",\"draft_pick\":\"14\",\"college\":\"East Carolina\",\"height\":\"76\",\"rotowire_id\":\"6681\",\"jersey\":\"95\",\"sportsdata_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"team\":\"LAC\",\"cbs_id\":\"1265317\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"eddickson/497224\",\"rotoworld_id\":\"5840\",\"stats_id\":\"24045\",\"position\":\"TE\",\"stats_global_id\":\"296060\",\"espn_id\":\"13272\",\"weight\":\"250\",\"id\":\"9912\",\"fleaflicker_id\":\"6604\",\"birthdate\":\"554187600\",\"draft_team\":\"BAL\",\"name\":\"Dickson, Ed\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"6530\",\"jersey\":\"84\",\"twitter_username\":\"EdDickson84\",\"sportsdata_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"team\":\"FA\",\"cbs_id\":\"565631\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"earlmitchell/496822\",\"rotoworld_id\":\"5884\",\"stats_id\":\"24056\",\"position\":\"DT\",\"stats_global_id\":\"335012\",\"espn_id\":\"13288\",\"weight\":\"310\",\"id\":\"9917\",\"birthdate\":\"559544400\",\"draft_team\":\"HOU\",\"name\":\"Mitchell, Earl\",\"draft_pick\":\"17\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"6683\",\"jersey\":\"75\",\"twitter_username\":\"EarlMitchell90\",\"sportsdata_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"team\":\"FA\",\"cbs_id\":\"1113447\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"emmanuelsanders/497322\",\"rotoworld_id\":\"5885\",\"stats_id\":\"24057\",\"position\":\"WR\",\"stats_global_id\":\"324216\",\"espn_id\":\"13295\",\"weight\":\"180\",\"id\":\"9918\",\"fleaflicker_id\":\"6636\",\"birthdate\":\"542955600\",\"draft_team\":\"PIT\",\"name\":\"Sanders, Emmanuel\",\"draft_pick\":\"18\",\"college\":\"Southern Methodist\",\"height\":\"71\",\"rotowire_id\":\"6523\",\"jersey\":\"17\",\"twitter_username\":\"E_Sanders88\",\"sportsdata_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"team\":\"NOS\",\"cbs_id\":\"564943\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"coreypeters/496841\",\"rotoworld_id\":\"5886\",\"stats_id\":\"24058\",\"position\":\"DT\",\"stats_global_id\":\"333992\",\"espn_id\":\"13292\",\"weight\":\"335\",\"id\":\"9919\",\"birthdate\":\"581749200\",\"draft_team\":\"ATL\",\"name\":\"Peters, Corey\",\"draft_pick\":\"19\",\"college\":\"Kentucky\",\"height\":\"75\",\"rotowire_id\":\"6682\",\"jersey\":\"98\",\"twitter_username\":\"CoreyPeters91\",\"sportsdata_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"team\":\"ARI\",\"cbs_id\":\"1116940\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"andreroberts/497320\",\"rotoworld_id\":\"5888\",\"stats_id\":\"24063\",\"position\":\"WR\",\"stats_global_id\":\"329031\",\"espn_id\":\"13226\",\"weight\":\"195\",\"id\":\"9921\",\"fleaflicker_id\":\"6634\",\"birthdate\":\"568702800\",\"draft_team\":\"ARI\",\"name\":\"Roberts, Andre\",\"draft_pick\":\"24\",\"college\":\"Citadel\",\"height\":\"71\",\"rotowire_id\":\"6506\",\"jersey\":\"18\",\"twitter_username\":\"AndreRoberts\",\"sportsdata_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"team\":\"BUF\",\"cbs_id\":\"1746418\"},{\"draft_year\":\"2010\",\"draft_round\":\"3\",\"nfl_id\":\"jimmygraham/497236\",\"rotoworld_id\":\"5842\",\"stats_id\":\"24070\",\"position\":\"TE\",\"stats_global_id\":\"295918\",\"espn_id\":\"13232\",\"weight\":\"265\",\"id\":\"9925\",\"fleaflicker_id\":\"6610\",\"birthdate\":\"533192400\",\"draft_team\":\"NOS\",\"name\":\"Graham, Jimmy\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"height\":\"79\",\"rotowire_id\":\"6532\",\"jersey\":\"80\",\"twitter_username\":\"TheJimmyGraham\",\"sportsdata_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"team\":\"CHI\",\"cbs_id\":\"1691166\"},{\"draft_year\":\"2010\",\"draft_round\":\"4\",\"nfl_id\":\"alwoods/496881\",\"rotoworld_id\":\"5903\",\"stats_id\":\"24098\",\"position\":\"DT\",\"stats_global_id\":\"323244\",\"espn_id\":\"13493\",\"weight\":\"330\",\"id\":\"9940\",\"fleaflicker_id\":\"6806\",\"birthdate\":\"543646800\",\"draft_team\":\"NOS\",\"name\":\"Woods, Al\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"height\":\"76\",\"rotowire_id\":\"6714\",\"jersey\":\"97\",\"sportsdata_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"team\":\"JAC\",\"cbs_id\":\"1116455\"},{\"draft_year\":\"2010\",\"draft_round\":\"5\",\"nfl_id\":\"reshadjones/496739\",\"rotoworld_id\":\"5649\",\"stats_id\":\"24139\",\"position\":\"S\",\"stats_global_id\":\"332753\",\"espn_id\":\"13395\",\"weight\":\"215\",\"id\":\"9966\",\"fleaflicker_id\":\"6722\",\"birthdate\":\"572763600\",\"draft_team\":\"MIA\",\"name\":\"Jones, Reshad\",\"draft_pick\":\"32\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"6650\",\"jersey\":\"20\",\"twitter_username\":\"reshadjones9\",\"sportsdata_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"team\":\"FA\",\"cbs_id\":\"1114935\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"antoniobrown/2508061\",\"rotoworld_id\":\"5698\",\"stats_id\":\"24171\",\"position\":\"WR\",\"stats_global_id\":\"406214\",\"espn_id\":\"13934\",\"weight\":\"185\",\"id\":\"9988\",\"birthdate\":\"584514000\",\"draft_team\":\"PIT\",\"name\":\"Brown, Antonio\",\"draft_pick\":\"26\",\"college\":\"Central Michigan\",\"height\":\"70\",\"rotowire_id\":\"6454\",\"jersey\":\"84\",\"twitter_username\":\"AntonioBrown84\",\"sportsdata_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"team\":\"TBB\",\"cbs_id\":\"1272852\"},{\"draft_year\":\"2010\",\"draft_round\":\"6\",\"nfl_id\":\"joewebb/1037347\",\"rotoworld_id\":\"5857\",\"stats_id\":\"24175\",\"position\":\"QB\",\"stats_global_id\":\"296439\",\"espn_id\":\"13484\",\"weight\":\"230\",\"id\":\"9992\",\"birthdate\":\"532328400\",\"draft_team\":\"MIN\",\"name\":\"Webb, Joe\",\"draft_pick\":\"30\",\"college\":\"UAB\",\"height\":\"76\",\"rotowire_id\":\"6674\",\"jersey\":\"14\",\"twitter_username\":\"JoeWebb_14\",\"sportsdata_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"team\":\"FA\",\"cbs_id\":\"1746655\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"dekodawatson/496961\",\"rotoworld_id\":\"5967\",\"stats_id\":\"24193\",\"position\":\"LB\",\"stats_global_id\":\"323510\",\"espn_id\":\"13482\",\"weight\":\"245\",\"id\":\"10005\",\"fleaflicker_id\":\"6797\",\"birthdate\":\"573368400\",\"draft_team\":\"TBB\",\"name\":\"Watson, Dekoda\",\"draft_pick\":\"10\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"6606\",\"jersey\":\"56\",\"sportsdata_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"team\":\"FA\",\"cbs_id\":\"1116572\"},{\"draft_year\":\"2010\",\"draft_round\":\"7\",\"nfl_id\":\"kurtcoleman/494261\",\"rotoworld_id\":\"6000\",\"stats_id\":\"24219\",\"position\":\"S\",\"stats_global_id\":\"323624\",\"espn_id\":\"13340\",\"weight\":\"208\",\"id\":\"10026\",\"fleaflicker_id\":\"6674\",\"birthdate\":\"583736400\",\"draft_team\":\"PHI\",\"name\":\"Coleman, Kurt\",\"draft_pick\":\"37\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"6822\",\"jersey\":\"28\",\"twitter_username\":\"k4coleman\",\"sportsdata_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"team\":\"FA\",\"cbs_id\":\"1117486\"},{\"draft_year\":\"2010\",\"nfl_id\":\"chrisivory/2507999\",\"rotoworld_id\":\"6168\",\"stats_id\":\"24400\",\"position\":\"RB\",\"stats_global_id\":\"335112\",\"espn_id\":\"13587\",\"weight\":\"223\",\"id\":\"10077\",\"birthdate\":\"575010000\",\"draft_team\":\"FA\",\"name\":\"Ivory, Chris\",\"college\":\"Washington State\",\"rotowire_id\":\"6833\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"ivory33\",\"sportsdata_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"team\":\"FA\",\"cbs_id\":\"1272286\"},{\"draft_year\":\"2010\",\"nfl_id\":\"sherrickmcmanis/494289\",\"rotoworld_id\":\"5918\",\"stats_id\":\"24120\",\"position\":\"CB\",\"stats_global_id\":\"332244\",\"espn_id\":\"13419\",\"weight\":\"193\",\"id\":\"10103\",\"fleaflicker_id\":\"6743\",\"birthdate\":\"566888400\",\"draft_team\":\"FA\",\"name\":\"McManis, Sherrick\",\"college\":\"Northwestern\",\"rotowire_id\":\"6732\",\"height\":\"73\",\"jersey\":\"27\",\"twitter_username\":\"SherrickM\",\"sportsdata_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"team\":\"CHI\",\"cbs_id\":\"1117294\"},{\"draft_year\":\"2010\",\"nfl_id\":\"kylelove/2507837\",\"rotoworld_id\":\"6069\",\"stats_id\":\"24294\",\"position\":\"DT\",\"stats_global_id\":\"332304\",\"espn_id\":\"13608\",\"weight\":\"310\",\"id\":\"10111\",\"draft_team\":\"FA\",\"birthdate\":\"532674000\",\"name\":\"Love, Kyle\",\"college\":\"Mississippi State\",\"rotowire_id\":\"6973\",\"height\":\"73\",\"jersey\":\"77\",\"sportsdata_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"team\":\"FA\",\"cbs_id\":\"1116474\"},{\"draft_year\":\"2010\",\"nfl_id\":\"darianstewart/494307\",\"rotoworld_id\":\"6350\",\"stats_id\":\"24590\",\"position\":\"S\",\"stats_global_id\":\"332881\",\"espn_id\":\"13645\",\"weight\":\"214\",\"id\":\"10122\",\"fleaflicker_id\":\"7107\",\"birthdate\":\"586674000\",\"draft_team\":\"FA\",\"name\":\"Stewart, Darian\",\"college\":\"South Carolina\",\"rotowire_id\":\"7144\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"team\":\"FA\",\"cbs_id\":\"1116705\"},{\"draft_year\":\"2009\",\"nfl_id\":\"stevemclendon/2507590\",\"rotoworld_id\":\"5684\",\"stats_id\":\"9673\",\"position\":\"DT\",\"stats_global_id\":\"291557\",\"espn_id\":\"12895\",\"weight\":\"310\",\"id\":\"10143\",\"fleaflicker_id\":\"6470\",\"birthdate\":\"505112400\",\"draft_team\":\"FA\",\"name\":\"Mclendon, Steve\",\"college\":\"Troy\",\"rotowire_id\":\"7168\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"team\":\"TBB\",\"cbs_id\":\"1675182\"},{\"draft_year\":\"2010\",\"nfl_id\":\"tramainebrock/2507917\",\"rotoworld_id\":\"6338\",\"stats_id\":\"24578\",\"position\":\"CB\",\"stats_global_id\":\"447403\",\"espn_id\":\"13681\",\"weight\":\"188\",\"id\":\"10149\",\"birthdate\":\"588056400\",\"draft_team\":\"FA\",\"name\":\"Brock, Tramaine\",\"college\":\"Belhaven\",\"rotowire_id\":\"7140\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"T26Brock\",\"sportsdata_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"team\":\"FA\",\"cbs_id\":\"1620001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"andrewsendejo/2525323\",\"rotoworld_id\":\"6429\",\"stats_id\":\"24759\",\"position\":\"S\",\"stats_global_id\":\"339359\",\"espn_id\":\"13939\",\"weight\":\"210\",\"id\":\"10220\",\"birthdate\":\"558162000\",\"draft_team\":\"FA\",\"name\":\"Sendejo, Andrew\",\"college\":\"Rice\",\"rotowire_id\":\"7214\",\"height\":\"73\",\"jersey\":\"23\",\"twitter_username\":\"Asendejo\",\"sportsdata_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"team\":\"CLE\",\"cbs_id\":\"1786001\"},{\"draft_year\":\"2010\",\"nfl_id\":\"marcussherels/2508007\",\"rotoworld_id\":\"6447\",\"stats_id\":\"24685\",\"position\":\"CB\",\"stats_global_id\":\"334435\",\"espn_id\":\"13843\",\"weight\":\"175\",\"id\":\"10250\",\"fleaflicker_id\":\"7264\",\"birthdate\":\"559976400\",\"draft_team\":\"FA\",\"name\":\"Sherels, Marcus\",\"college\":\"Minnesota\",\"rotowire_id\":\"7236\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"team\":\"FA\",\"cbs_id\":\"1243766\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"21576\",\"position\":\"Coach\",\"name\":\"Rivera, Ron\",\"stats_global_id\":\"0\",\"twitter_username\":\"RiverboatRonHC\",\"sportsdata_id\":\"98406ad1-427c-4da0-9335-4fbb6abccd49\",\"id\":\"10253\",\"team\":\"WAS\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"patrickpeterson/2495504\",\"rotoworld_id\":\"6481\",\"stats_id\":\"24792\",\"position\":\"CB\",\"stats_global_id\":\"465739\",\"espn_id\":\"13980\",\"weight\":\"203\",\"id\":\"10260\",\"fleaflicker_id\":\"7379\",\"birthdate\":\"647672400\",\"draft_team\":\"ARI\",\"name\":\"Peterson, Patrick\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"7300\",\"jersey\":\"21\",\"twitter_username\":\"RealPeterson21\",\"sportsdata_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"team\":\"ARI\",\"cbs_id\":\"1632296\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"a.j.green/2495450\",\"rotoworld_id\":\"6438\",\"stats_id\":\"24791\",\"position\":\"WR\",\"stats_global_id\":\"458093\",\"espn_id\":\"13983\",\"weight\":\"210\",\"id\":\"10261\",\"birthdate\":\"586328400\",\"draft_team\":\"CIN\",\"name\":\"Green, A.J.\",\"draft_pick\":\"4\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"7241\",\"jersey\":\"18\",\"twitter_username\":\"ajgreen_18\",\"sportsdata_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"team\":\"CIN\",\"cbs_id\":\"1673207\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"blainegabbert/2495441\",\"rotoworld_id\":\"6451\",\"stats_id\":\"24797\",\"position\":\"QB\",\"stats_global_id\":\"463393\",\"espn_id\":\"13987\",\"weight\":\"235\",\"id\":\"10262\",\"fleaflicker_id\":\"7368\",\"birthdate\":\"624430800\",\"draft_team\":\"JAC\",\"name\":\"Gabbert, Blaine\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7248\",\"jersey\":\"11\",\"twitter_username\":\"BlaineGabbert\",\"sportsdata_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"team\":\"TBB\",\"cbs_id\":\"1630777\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"adrianclayborn/2495140\",\"rotoworld_id\":\"6515\",\"stats_id\":\"24807\",\"position\":\"DE\",\"stats_global_id\":\"332343\",\"espn_id\":\"13965\",\"weight\":\"280\",\"id\":\"10263\",\"fleaflicker_id\":\"7365\",\"birthdate\":\"584168400\",\"draft_team\":\"TBB\",\"name\":\"Clayborn, Adrian\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"height\":\"75\",\"rotowire_id\":\"7417\",\"jersey\":\"94\",\"twitter_username\":\"AJaClay\",\"sportsdata_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"team\":\"CLE\",\"cbs_id\":\"1115762\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"princeamukamara/2495108\",\"rotoworld_id\":\"6494\",\"stats_id\":\"24806\",\"position\":\"CB\",\"stats_global_id\":\"406346\",\"espn_id\":\"13975\",\"weight\":\"204\",\"id\":\"10264\",\"fleaflicker_id\":\"7360\",\"birthdate\":\"613112400\",\"draft_team\":\"NYG\",\"name\":\"Amukamara, Prince\",\"draft_pick\":\"19\",\"college\":\"Nebraska\",\"height\":\"72\",\"rotowire_id\":\"7509\",\"jersey\":\"20\",\"twitter_username\":\"PrinceAmukamara\",\"sportsdata_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"team\":\"FA\",\"cbs_id\":\"1263300\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"marcelldareus/2495478\",\"rotoworld_id\":\"6472\",\"stats_id\":\"24790\",\"position\":\"DT\",\"stats_global_id\":\"465602\",\"espn_id\":\"13992\",\"weight\":\"331\",\"id\":\"10265\",\"fleaflicker_id\":\"7366\",\"birthdate\":\"627368400\",\"draft_team\":\"BUF\",\"name\":\"Dareus, Marcell\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7462\",\"jersey\":\"99\",\"twitter_username\":\"marcelldareus\",\"sportsdata_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"team\":\"FA\",\"cbs_id\":\"1632200\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronheyward/2508109\",\"rotoworld_id\":\"6510\",\"stats_id\":\"24818\",\"position\":\"DE\",\"stats_global_id\":\"397533\",\"espn_id\":\"13977\",\"weight\":\"295\",\"id\":\"10266\",\"fleaflicker_id\":\"7370\",\"birthdate\":\"610434000\",\"draft_team\":\"PIT\",\"name\":\"Heyward, Cameron\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"7449\",\"jersey\":\"97\",\"twitter_username\":\"CamHeyward\",\"sportsdata_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"team\":\"PIT\",\"cbs_id\":\"1243804\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"vonmiller/2495202\",\"rotoworld_id\":\"6500\",\"stats_id\":\"24789\",\"position\":\"LB\",\"stats_global_id\":\"409742\",\"espn_id\":\"13976\",\"weight\":\"250\",\"id\":\"10267\",\"fleaflicker_id\":\"7377\",\"birthdate\":\"606891600\",\"draft_team\":\"DEN\",\"name\":\"Miller, Von\",\"draft_pick\":\"2\",\"college\":\"Texas A&M\",\"height\":\"75\",\"rotowire_id\":\"7421\",\"jersey\":\"58\",\"twitter_username\":\"Millerlite40\",\"sportsdata_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"team\":\"DEN\",\"cbs_id\":\"1620879\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"robertquinn/2495485\",\"rotoworld_id\":\"6557\",\"stats_id\":\"24801\",\"position\":\"LB\",\"stats_global_id\":\"463653\",\"espn_id\":\"13984\",\"weight\":\"260\",\"id\":\"10269\",\"fleaflicker_id\":\"7382\",\"birthdate\":\"643006800\",\"draft_team\":\"STL\",\"name\":\"Quinn, Robert\",\"draft_pick\":\"14\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"7418\",\"jersey\":\"94\",\"twitter_username\":\"RQuinn94\",\"sportsdata_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"team\":\"CHI\",\"cbs_id\":\"1630332\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"juliojones/2495454\",\"rotoworld_id\":\"6475\",\"stats_id\":\"24793\",\"position\":\"WR\",\"stats_global_id\":\"456614\",\"espn_id\":\"13982\",\"weight\":\"220\",\"id\":\"10271\",\"fleaflicker_id\":\"7372\",\"birthdate\":\"602485200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Julio\",\"draft_pick\":\"6\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"7242\",\"jersey\":\"11\",\"twitter_username\":\"juliojones_11\",\"sportsdata_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"team\":\"ATL\",\"cbs_id\":\"1623794\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"j.j.watt/2495488\",\"rotoworld_id\":\"6469\",\"stats_id\":\"24798\",\"position\":\"DE\",\"stats_global_id\":\"403362\",\"espn_id\":\"13979\",\"weight\":\"288\",\"id\":\"10272\",\"birthdate\":\"606546000\",\"draft_team\":\"HOU\",\"name\":\"Watt, J.J.\",\"draft_pick\":\"11\",\"college\":\"Wisconsin\",\"height\":\"77\",\"rotowire_id\":\"7323\",\"jersey\":\"99\",\"twitter_username\":\"JJWatt\",\"sportsdata_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"team\":\"HOU\",\"cbs_id\":\"1631198\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"camnewton/2495455\",\"rotoworld_id\":\"6491\",\"stats_id\":\"24788\",\"position\":\"QB\",\"stats_global_id\":\"380750\",\"espn_id\":\"13994\",\"weight\":\"245\",\"id\":\"10273\",\"birthdate\":\"610866000\",\"draft_team\":\"CAR\",\"name\":\"Newton, Cam\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"77\",\"rotowire_id\":\"7257\",\"jersey\":\"1\",\"twitter_username\":\"CameronNewton\",\"sportsdata_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"team\":\"NEP\",\"cbs_id\":\"1273186\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"aldonsmith/2495487\",\"rotoworld_id\":\"6477\",\"stats_id\":\"24794\",\"position\":\"DE\",\"stats_global_id\":\"463434\",\"espn_id\":\"13988\",\"weight\":\"265\",\"id\":\"10274\",\"birthdate\":\"628405200\",\"draft_team\":\"SFO\",\"name\":\"Smith, Aldon\",\"draft_pick\":\"7\",\"college\":\"Missouri\",\"height\":\"76\",\"rotowire_id\":\"7446\",\"jersey\":\"58\",\"twitter_username\":\"AldonSmith\",\"sportsdata_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"team\":\"DAL\",\"cbs_id\":\"1630791\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"allenbailey/2495116\",\"rotoworld_id\":\"6538\",\"stats_id\":\"24873\",\"position\":\"DE\",\"stats_global_id\":\"398103\",\"espn_id\":\"14020\",\"weight\":\"288\",\"id\":\"10275\",\"fleaflicker_id\":\"7394\",\"birthdate\":\"606805200\",\"draft_team\":\"KCC\",\"name\":\"Bailey, Allen\",\"draft_pick\":\"22\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"7450\",\"jersey\":\"93\",\"twitter_username\":\"AllenBailey57\",\"sportsdata_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"team\":\"ATL\",\"cbs_id\":\"1272275\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"markingram/2495466\",\"rotoworld_id\":\"6471\",\"stats_id\":\"24815\",\"position\":\"RB\",\"stats_global_id\":\"456613\",\"espn_id\":\"13981\",\"weight\":\"215\",\"id\":\"10276\",\"birthdate\":\"630219600\",\"draft_team\":\"NOS\",\"name\":\"Ingram, Mark\",\"draft_pick\":\"28\",\"college\":\"Alabama\",\"height\":\"69\",\"rotowire_id\":\"7244\",\"jersey\":\"21\",\"twitter_username\":\"MarkIngram22\",\"sportsdata_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"team\":\"BAL\",\"cbs_id\":\"1623793\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"justinhouston/2495493\",\"rotoworld_id\":\"6556\",\"stats_id\":\"24857\",\"position\":\"DE\",\"stats_global_id\":\"409479\",\"espn_id\":\"14048\",\"weight\":\"270\",\"id\":\"10277\",\"fleaflicker_id\":\"7417\",\"birthdate\":\"601362000\",\"draft_team\":\"KCC\",\"name\":\"Houston, Justin\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"7476\",\"jersey\":\"50\",\"twitter_username\":\"JHouston50\",\"sportsdata_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"team\":\"IND\",\"cbs_id\":\"1620558\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"ryankerrigan/2495190\",\"rotoworld_id\":\"6495\",\"stats_id\":\"24803\",\"position\":\"DE\",\"stats_global_id\":\"400301\",\"espn_id\":\"13973\",\"weight\":\"265\",\"id\":\"10280\",\"fleaflicker_id\":\"7374\",\"birthdate\":\"587710800\",\"draft_team\":\"WAS\",\"name\":\"Kerrigan, Ryan\",\"draft_pick\":\"16\",\"college\":\"Purdue\",\"height\":\"76\",\"rotowire_id\":\"7448\",\"jersey\":\"91\",\"twitter_username\":\"RyanKerrigan91\",\"sportsdata_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"team\":\"WAS\",\"cbs_id\":\"1243851\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"coreyliuget/2495483\",\"rotoworld_id\":\"6564\",\"stats_id\":\"24805\",\"position\":\"DT\",\"stats_global_id\":\"464253\",\"espn_id\":\"13989\",\"weight\":\"300\",\"id\":\"10285\",\"fleaflicker_id\":\"7375\",\"birthdate\":\"637736400\",\"draft_team\":\"SDC\",\"name\":\"Liuget, Corey\",\"draft_pick\":\"18\",\"college\":\"Illinois\",\"height\":\"74\",\"rotowire_id\":\"7463\",\"jersey\":\"51\",\"twitter_username\":\"CoreyLiuget\",\"sportsdata_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"team\":\"HOU\",\"cbs_id\":\"1630900\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"cameronjordan/2495184\",\"rotoworld_id\":\"6507\",\"stats_id\":\"24811\",\"position\":\"DE\",\"stats_global_id\":\"401762\",\"espn_id\":\"13971\",\"weight\":\"287\",\"id\":\"10292\",\"fleaflicker_id\":\"7373\",\"birthdate\":\"616050000\",\"draft_team\":\"NOS\",\"name\":\"Jordan, Cameron\",\"draft_pick\":\"24\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"7447\",\"jersey\":\"94\",\"twitter_username\":\"camjordan94\",\"sportsdata_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"team\":\"NOS\",\"cbs_id\":\"1272992\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"jimmysmith/2508107\",\"rotoworld_id\":\"6558\",\"stats_id\":\"24814\",\"position\":\"CB\",\"stats_global_id\":\"332611\",\"espn_id\":\"13963\",\"weight\":\"210\",\"id\":\"10294\",\"fleaflicker_id\":\"7385\",\"birthdate\":\"585896400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Jimmy\",\"draft_pick\":\"27\",\"college\":\"Colorado\",\"height\":\"74\",\"rotowire_id\":\"7511\",\"jersey\":\"22\",\"twitter_username\":\"RealJimmySmith\",\"sportsdata_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"team\":\"BAL\",\"cbs_id\":\"1114290\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"colinkaepernick/2495186\",\"rotoworld_id\":\"6530\",\"stats_id\":\"24823\",\"position\":\"QB\",\"stats_global_id\":\"323273\",\"espn_id\":\"14001\",\"weight\":\"230\",\"id\":\"10297\",\"birthdate\":\"562914000\",\"draft_team\":\"SFO\",\"name\":\"Kaepernick, Colin\",\"draft_pick\":\"4\",\"college\":\"Nevada\",\"height\":\"76\",\"rotowire_id\":\"7353\",\"jersey\":\"7\",\"twitter_username\":\"Kaepernick7\",\"sportsdata_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"team\":\"FA*\",\"cbs_id\":\"1130583\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"jacquizzrodgers/2495471\",\"rotoworld_id\":\"6482\",\"stats_id\":\"24932\",\"position\":\"RB\",\"stats_global_id\":\"458097\",\"espn_id\":\"14193\",\"weight\":\"195\",\"id\":\"10300\",\"fleaflicker_id\":\"7566\",\"birthdate\":\"634280400\",\"draft_team\":\"ATL\",\"name\":\"Rodgers, Jacquizz\",\"draft_pick\":\"14\",\"college\":\"Oregon St.\",\"height\":\"67\",\"rotowire_id\":\"7253\",\"jersey\":\"37\",\"twitter_username\":\"Qui22Rodgers\",\"sportsdata_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"team\":\"FA\",\"cbs_id\":\"1631866\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"randallcobb/2495448\",\"rotoworld_id\":\"6497\",\"stats_id\":\"24851\",\"position\":\"WR\",\"stats_global_id\":\"465949\",\"espn_id\":\"14053\",\"weight\":\"195\",\"id\":\"10308\",\"fleaflicker_id\":\"7401\",\"birthdate\":\"651301200\",\"draft_team\":\"GBP\",\"name\":\"Cobb, Randall\",\"draft_pick\":\"32\",\"college\":\"Kentucky\",\"height\":\"70\",\"rotowire_id\":\"7256\",\"jersey\":\"18\",\"twitter_username\":\"rcobb18\",\"sportsdata_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"team\":\"HOU\",\"cbs_id\":\"1632091\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"kylerudolph/2495438\",\"rotoworld_id\":\"6459\",\"stats_id\":\"24830\",\"position\":\"TE\",\"stats_global_id\":\"469472\",\"espn_id\":\"14054\",\"weight\":\"265\",\"id\":\"10312\",\"fleaflicker_id\":\"7444\",\"birthdate\":\"626590800\",\"draft_team\":\"MIN\",\"name\":\"Rudolph, Kyle\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"7246\",\"jersey\":\"82\",\"twitter_username\":\"KyleRudolph82\",\"sportsdata_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"team\":\"MIN\",\"cbs_id\":\"1633122\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"andydalton/2495143\",\"rotoworld_id\":\"6493\",\"stats_id\":\"24822\",\"position\":\"QB\",\"stats_global_id\":\"322858\",\"espn_id\":\"14012\",\"weight\":\"220\",\"id\":\"10313\",\"birthdate\":\"562482000\",\"draft_team\":\"CIN\",\"name\":\"Dalton, Andy\",\"draft_pick\":\"3\",\"college\":\"TCU\",\"height\":\"74\",\"rotowire_id\":\"7355\",\"jersey\":\"14\",\"twitter_username\":\"andydalton14\",\"sportsdata_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"team\":\"DAL\",\"cbs_id\":\"1125961\"},{\"draft_year\":\"2011\",\"draft_round\":\"1\",\"nfl_id\":\"muhammadwilkerson/2495490\",\"rotoworld_id\":\"6464\",\"stats_id\":\"24817\",\"position\":\"DE\",\"stats_global_id\":\"469180\",\"espn_id\":\"13985\",\"weight\":\"315\",\"id\":\"10314\",\"fleaflicker_id\":\"7391\",\"birthdate\":\"625035600\",\"draft_team\":\"NYJ\",\"name\":\"Wilkerson, Muhammad\",\"draft_pick\":\"30\",\"college\":\"Temple\",\"height\":\"76\",\"rotowire_id\":\"7464\",\"jersey\":\"96\",\"twitter_username\":\"mowilkerson\",\"sportsdata_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"team\":\"FA\",\"cbs_id\":\"1630571\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"brooksreed/2495218\",\"rotoworld_id\":\"6539\",\"stats_id\":\"24829\",\"position\":\"LB\",\"stats_global_id\":\"335014\",\"espn_id\":\"13997\",\"weight\":\"254\",\"id\":\"10315\",\"fleaflicker_id\":\"7441\",\"birthdate\":\"541486800\",\"draft_team\":\"HOU\",\"name\":\"Reed, Brooks\",\"draft_pick\":\"10\",\"college\":\"Arizona\",\"height\":\"75\",\"rotowire_id\":\"7451\",\"jersey\":\"50\",\"twitter_username\":\"Brooksreed58\",\"sportsdata_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"team\":\"FA\",\"cbs_id\":\"1113452\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"lancekendricks/2495187\",\"rotoworld_id\":\"6614\",\"stats_id\":\"24834\",\"position\":\"TE\",\"stats_global_id\":\"332066\",\"espn_id\":\"14007\",\"weight\":\"250\",\"id\":\"10318\",\"fleaflicker_id\":\"7425\",\"birthdate\":\"570517200\",\"draft_team\":\"STL\",\"name\":\"Kendricks, Lance\",\"draft_pick\":\"15\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"7412\",\"jersey\":\"81\",\"sportsdata_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"team\":\"FA\",\"cbs_id\":\"1117803\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"jabaalsheard/2495228\",\"rotoworld_id\":\"6597\",\"stats_id\":\"24824\",\"position\":\"DE\",\"stats_global_id\":\"397948\",\"espn_id\":\"14036\",\"weight\":\"268\",\"id\":\"10320\",\"birthdate\":\"610779600\",\"draft_team\":\"CLE\",\"name\":\"Sheard, Jabaal\",\"draft_pick\":\"5\",\"college\":\"Pittsburgh\",\"height\":\"75\",\"rotowire_id\":\"7452\",\"jersey\":\"93\",\"twitter_username\":\"jabaalsheard\",\"sportsdata_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"team\":\"NYG\",\"cbs_id\":\"1243192\"},{\"draft_year\":\"2011\",\"draft_round\":\"2\",\"nfl_id\":\"marcusgilchrist/2495153\",\"rotoworld_id\":\"6615\",\"stats_id\":\"24837\",\"position\":\"S\",\"stats_global_id\":\"401728\",\"espn_id\":\"14018\",\"weight\":\"200\",\"id\":\"10324\",\"fleaflicker_id\":\"7412\",\"birthdate\":\"597560400\",\"draft_team\":\"SDC\",\"name\":\"Gilchrist, Marcus\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"70\",\"rotowire_id\":\"7527\",\"jersey\":\"31\",\"twitter_username\":\"mgilchr\",\"sportsdata_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"team\":\"BAL\",\"cbs_id\":\"1262941\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"terrellmcclain/2495311\",\"rotoworld_id\":\"6618\",\"stats_id\":\"24852\",\"position\":\"DE\",\"stats_global_id\":\"403290\",\"espn_id\":\"14014\",\"weight\":\"302\",\"id\":\"10329\",\"birthdate\":\"585378000\",\"draft_team\":\"CAR\",\"name\":\"McClain, Terrell\",\"draft_pick\":\"1\",\"college\":\"South Florida\",\"height\":\"74\",\"rotowire_id\":\"7474\",\"jersey\":\"90\",\"sportsdata_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"team\":\"FA\",\"cbs_id\":\"1279455\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"jurrellcasey/2495476\",\"rotoworld_id\":\"6440\",\"stats_id\":\"24864\",\"position\":\"DE\",\"stats_global_id\":\"459332\",\"espn_id\":\"14047\",\"weight\":\"305\",\"id\":\"10335\",\"fleaflicker_id\":\"7400\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Casey, Jurrell\",\"draft_pick\":\"13\",\"college\":\"USC\",\"height\":\"73\",\"rotowire_id\":\"7469\",\"jersey\":\"99\",\"twitter_username\":\"Jurrellc\",\"sportsdata_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"team\":\"DEN\",\"cbs_id\":\"1631879\"},{\"draft_year\":\"2011\",\"draft_round\":\"3\",\"nfl_id\":\"masonfoster/2495281\",\"rotoworld_id\":\"6601\",\"stats_id\":\"24871\",\"position\":\"LB\",\"stats_global_id\":\"399915\",\"espn_id\":\"14023\",\"weight\":\"250\",\"id\":\"10339\",\"fleaflicker_id\":\"7408\",\"birthdate\":\"604731600\",\"draft_team\":\"TBB\",\"name\":\"Foster, Mason\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"height\":\"73\",\"rotowire_id\":\"7478\",\"jersey\":\"54\",\"twitter_username\":\"Mason_Foster\",\"sportsdata_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"team\":\"FA\",\"cbs_id\":\"1273119\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"k.j.wright/2495252\",\"rotoworld_id\":\"6633\",\"stats_id\":\"24886\",\"position\":\"LB\",\"stats_global_id\":\"400107\",\"espn_id\":\"14140\",\"weight\":\"246\",\"id\":\"10350\",\"birthdate\":\"617173200\",\"draft_team\":\"SEA\",\"name\":\"Wright, K.J.\",\"draft_pick\":\"2\",\"college\":\"Mississippi St.\",\"height\":\"76\",\"rotowire_id\":\"7483\",\"jersey\":\"50\",\"twitter_username\":\"KJ_WRIGHT34\",\"sportsdata_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"team\":\"SEA\",\"cbs_id\":\"1273493\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"samacho/2495101\",\"rotoworld_id\":\"6586\",\"stats_id\":\"24890\",\"position\":\"LB\",\"stats_global_id\":\"399354\",\"espn_id\":\"14152\",\"weight\":\"259\",\"id\":\"10353\",\"fleaflicker_id\":\"7457\",\"birthdate\":\"589525200\",\"draft_team\":\"ARI\",\"name\":\"Acho, Sam\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"75\",\"rotowire_id\":\"7454\",\"jersey\":\"74\",\"twitter_username\":\"TheSamAcho\",\"sportsdata_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"team\":\"FA\",\"cbs_id\":\"1245216\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"lukestocker/2495234\",\"rotoworld_id\":\"6552\",\"stats_id\":\"24891\",\"position\":\"TE\",\"stats_global_id\":\"334186\",\"espn_id\":\"14099\",\"weight\":\"253\",\"id\":\"10354\",\"fleaflicker_id\":\"7589\",\"birthdate\":\"585118800\",\"draft_team\":\"TBB\",\"name\":\"Stocker, Luke\",\"draft_pick\":\"7\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"7413\",\"jersey\":\"88\",\"twitter_username\":\"LukeStocker88\",\"sportsdata_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"team\":\"ATL\",\"cbs_id\":\"1125485\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"taiwanjones/2495467\",\"rotoworld_id\":\"6499\",\"stats_id\":\"24912\",\"position\":\"RB\",\"stats_global_id\":\"386116\",\"espn_id\":\"14167\",\"weight\":\"195\",\"id\":\"10368\",\"birthdate\":\"585896400\",\"draft_team\":\"OAK\",\"name\":\"Jones, Taiwan\",\"draft_pick\":\"28\",\"college\":\"Eastern Washington\",\"height\":\"72\",\"rotowire_id\":\"7324\",\"jersey\":\"25\",\"twitter_username\":\"TaiwanJonesNFL\",\"sportsdata_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"team\":\"BUF\",\"cbs_id\":\"1682469\"},{\"draft_year\":\"2011\",\"draft_round\":\"4\",\"nfl_id\":\"bilalpowell/2495328\",\"rotoworld_id\":\"6594\",\"stats_id\":\"24913\",\"position\":\"RB\",\"stats_global_id\":\"403060\",\"espn_id\":\"14129\",\"weight\":\"204\",\"id\":\"10369\",\"fleaflicker_id\":\"7561\",\"birthdate\":\"593931600\",\"draft_team\":\"NYJ\",\"name\":\"Powell, Bilal\",\"draft_pick\":\"29\",\"college\":\"Louisville\",\"height\":\"70\",\"rotowire_id\":\"7367\",\"jersey\":\"29\",\"sportsdata_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"team\":\"FA\",\"cbs_id\":\"1265393\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"anthonysherman/2495340\",\"rotoworld_id\":\"6650\",\"stats_id\":\"24923\",\"position\":\"RB\",\"stats_global_id\":\"400947\",\"espn_id\":\"14135\",\"weight\":\"242\",\"id\":\"10378\",\"fleaflicker_id\":\"7580\",\"birthdate\":\"597819600\",\"draft_team\":\"ARI\",\"name\":\"Sherman, Anthony\",\"draft_pick\":\"5\",\"college\":\"Connecticut\",\"height\":\"70\",\"rotowire_id\":\"7560\",\"jersey\":\"42\",\"twitter_username\":\"Shermanator35\",\"sportsdata_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"team\":\"KCC\",\"cbs_id\":\"1277500\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"busterskrine/2495343\",\"rotoworld_id\":\"6651\",\"stats_id\":\"24924\",\"position\":\"CB\",\"stats_global_id\":\"387769\",\"espn_id\":\"14139\",\"weight\":\"185\",\"id\":\"10379\",\"fleaflicker_id\":\"7583\",\"birthdate\":\"609570000\",\"draft_team\":\"CLE\",\"name\":\"Skrine, Buster\",\"draft_pick\":\"6\",\"college\":\"Tennessee-Chattanooga\",\"height\":\"69\",\"rotowire_id\":\"7623\",\"jersey\":\"24\",\"twitter_username\":\"BusterSkrine\",\"sportsdata_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"team\":\"CHI\",\"cbs_id\":\"1687803\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"dionlewis/2495469\",\"rotoworld_id\":\"6483\",\"stats_id\":\"24936\",\"position\":\"RB\",\"stats_global_id\":\"494724\",\"espn_id\":\"14198\",\"weight\":\"195\",\"id\":\"10389\",\"birthdate\":\"654411600\",\"draft_team\":\"PHI\",\"name\":\"Lewis, Dion\",\"draft_pick\":\"18\",\"college\":\"Pittsburgh\",\"height\":\"68\",\"rotowire_id\":\"7364\",\"jersey\":\"33\",\"twitter_username\":\"DionLewis28\",\"sportsdata_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"team\":\"NYG\",\"cbs_id\":\"1664753\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"richardsherman/2495507\",\"rotoworld_id\":\"6660\",\"stats_id\":\"24941\",\"position\":\"CB\",\"stats_global_id\":\"332735\",\"espn_id\":\"14086\",\"weight\":\"205\",\"id\":\"10393\",\"fleaflicker_id\":\"7581\",\"birthdate\":\"575701200\",\"draft_team\":\"SEA\",\"name\":\"Sherman, Richard\",\"draft_pick\":\"23\",\"college\":\"Stanford\",\"height\":\"75\",\"rotowire_id\":\"7600\",\"jersey\":\"25\",\"twitter_username\":\"RSherman_25\",\"sportsdata_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"team\":\"SFO\",\"cbs_id\":\"1117823\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"leesmith/2495347\",\"rotoworld_id\":\"6665\",\"stats_id\":\"24946\",\"position\":\"TE\",\"stats_global_id\":\"334184\",\"espn_id\":\"14215\",\"weight\":\"265\",\"id\":\"10398\",\"fleaflicker_id\":\"7585\",\"birthdate\":\"564469200\",\"draft_team\":\"NEP\",\"name\":\"Smith, Lee\",\"draft_pick\":\"28\",\"college\":\"Marshall\",\"height\":\"78\",\"rotowire_id\":\"7425\",\"jersey\":\"85\",\"sportsdata_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"team\":\"BUF\",\"cbs_id\":\"1276441\"},{\"draft_year\":\"2011\",\"draft_round\":\"5\",\"nfl_id\":\"pernellmcphee/2495201\",\"rotoworld_id\":\"6671\",\"stats_id\":\"24952\",\"position\":\"LB\",\"stats_global_id\":\"495524\",\"espn_id\":\"14202\",\"weight\":\"269\",\"id\":\"10402\",\"fleaflicker_id\":\"7546\",\"birthdate\":\"598338000\",\"draft_team\":\"BAL\",\"name\":\"McPhee, Pernell\",\"draft_pick\":\"34\",\"college\":\"Mississippi St.\",\"height\":\"75\",\"rotowire_id\":\"7457\",\"jersey\":\"90\",\"sportsdata_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"team\":\"BAL\",\"cbs_id\":\"1664023\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"charlesclay/2495139\",\"rotoworld_id\":\"6681\",\"stats_id\":\"24961\",\"position\":\"TE\",\"stats_global_id\":\"400516\",\"espn_id\":\"14145\",\"weight\":\"246\",\"id\":\"10409\",\"birthdate\":\"603349200\",\"draft_team\":\"MIA\",\"name\":\"Clay, Charles\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"height\":\"75\",\"rotowire_id\":\"7424\",\"jersey\":\"85\",\"twitter_username\":\"C42Clay\",\"sportsdata_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"team\":\"FA\",\"cbs_id\":\"1265552\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"dwayneharris/2495159\",\"rotoworld_id\":\"6683\",\"stats_id\":\"24963\",\"position\":\"WR\",\"stats_global_id\":\"324534\",\"espn_id\":\"14100\",\"weight\":\"215\",\"id\":\"10410\",\"fleaflicker_id\":\"7508\",\"birthdate\":\"558766800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Dwayne\",\"draft_pick\":\"11\",\"college\":\"East Carolina\",\"height\":\"70\",\"rotowire_id\":\"7385\",\"jersey\":\"17\",\"twitter_username\":\"D_Harris17\",\"sportsdata_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"team\":\"CHI\",\"cbs_id\":\"1245905\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"aldrickrobinson/2495331\",\"rotoworld_id\":\"6685\",\"stats_id\":\"24965\",\"position\":\"WR\",\"stats_global_id\":\"401659\",\"espn_id\":\"14164\",\"weight\":\"185\",\"id\":\"10412\",\"birthdate\":\"591080400\",\"draft_team\":\"WAS\",\"name\":\"Robinson, Aldrick\",\"draft_pick\":\"13\",\"college\":\"SMU\",\"height\":\"70\",\"rotowire_id\":\"7399\",\"jersey\":\"8\",\"twitter_username\":\"AldrickRobinson\",\"sportsdata_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"team\":\"FA\",\"cbs_id\":\"1273600\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"tyrodtaylor/2495240\",\"rotoworld_id\":\"6509\",\"stats_id\":\"24967\",\"position\":\"QB\",\"stats_global_id\":\"399579\",\"espn_id\":\"14163\",\"weight\":\"217\",\"id\":\"10413\",\"fleaflicker_id\":\"7592\",\"birthdate\":\"618123600\",\"draft_team\":\"BAL\",\"name\":\"Taylor, Tyrod\",\"draft_pick\":\"15\",\"college\":\"Virginia Tech\",\"height\":\"73\",\"rotowire_id\":\"7357\",\"jersey\":\"5\",\"twitter_username\":\"TyrodTaylor\",\"sportsdata_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"team\":\"LAC\",\"cbs_id\":\"1243338\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"colinjones/2499257\",\"rotoworld_id\":\"6694\",\"stats_id\":\"24977\",\"position\":\"S\",\"stats_global_id\":\"322865\",\"espn_id\":\"14117\",\"weight\":\"205\",\"id\":\"10422\",\"birthdate\":\"562309200\",\"draft_team\":\"SFO\",\"name\":\"Jones, Colin\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"72\",\"rotowire_id\":\"7542\",\"jersey\":\"42\",\"sportsdata_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"team\":\"FA\",\"cbs_id\":\"1823836\"},{\"draft_year\":\"2011\",\"draft_round\":\"6\",\"nfl_id\":\"mattbosher/2495124\",\"rotoworld_id\":\"6696\",\"stats_id\":\"24979\",\"position\":\"PN\",\"stats_global_id\":\"323389\",\"espn_id\":\"14073\",\"weight\":\"208\",\"id\":\"10423\",\"birthdate\":\"561531600\",\"draft_team\":\"ATL\",\"name\":\"Bosher, Matt\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"height\":\"72\",\"rotowire_id\":\"7562\",\"jersey\":\"5\",\"twitter_username\":\"MattBosher5\",\"sportsdata_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"team\":\"FA\",\"cbs_id\":\"1823786\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"virgilgreen/2495288\",\"rotoworld_id\":\"6570\",\"stats_id\":\"24991\",\"position\":\"TE\",\"stats_global_id\":\"323254\",\"espn_id\":\"14085\",\"weight\":\"255\",\"id\":\"10432\",\"fleaflicker_id\":\"7502\",\"birthdate\":\"586587600\",\"draft_team\":\"DEN\",\"name\":\"Green, Virgil\",\"draft_pick\":\"1\",\"college\":\"Nevada\",\"height\":\"77\",\"rotowire_id\":\"7416\",\"jersey\":\"88\",\"twitter_username\":\"VGreen85\",\"sportsdata_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"team\":\"LAC\",\"cbs_id\":\"1130615\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"brucemiller/2495314\",\"rotoworld_id\":\"6713\",\"stats_id\":\"24998\",\"position\":\"TE\",\"stats_global_id\":\"324654\",\"espn_id\":\"14083\",\"weight\":\"248\",\"id\":\"10437\",\"birthdate\":\"555224400\",\"draft_team\":\"SFO\",\"name\":\"Miller, Bruce\",\"draft_pick\":\"8\",\"college\":\"Central Florida\",\"height\":\"74\",\"rotowire_id\":\"7505\",\"jersey\":\"49\",\"twitter_username\":\"BruceMill49er\",\"sportsdata_id\":\"9be8224a-4a19-4f6a-a2be-ecbd3a24868c\",\"team\":\"FA\",\"cbs_id\":\"1114232\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"lawrenceguy/2495481\",\"rotoworld_id\":\"6735\",\"stats_id\":\"25020\",\"position\":\"DT\",\"stats_global_id\":\"461090\",\"espn_id\":\"14185\",\"weight\":\"315\",\"id\":\"10457\",\"birthdate\":\"637650000\",\"draft_team\":\"GBP\",\"name\":\"Guy, Lawrence\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"height\":\"76\",\"rotowire_id\":\"7472\",\"jersey\":\"93\",\"twitter_username\":\"thatLGUY\",\"sportsdata_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"team\":\"NEP\",\"cbs_id\":\"1631775\"},{\"draft_year\":\"2011\",\"draft_round\":\"7\",\"nfl_id\":\"malcolmsmith/2499278\",\"rotoworld_id\":\"6744\",\"stats_id\":\"25029\",\"position\":\"LB\",\"stats_global_id\":\"399333\",\"espn_id\":\"14214\",\"weight\":\"229\",\"id\":\"10465\",\"fleaflicker_id\":\"7586\",\"birthdate\":\"615618000\",\"draft_team\":\"SEA\",\"name\":\"Smith, Malcolm\",\"draft_pick\":\"39\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"7606\",\"jersey\":\"56\",\"twitter_username\":\"MalcSmitty\",\"sportsdata_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"team\":\"CLE\",\"cbs_id\":\"1823894\"},{\"draft_year\":\"2011\",\"nfl_id\":\"kaiforbath/2495150\",\"rotoworld_id\":\"7362\",\"stats_id\":\"25648\",\"position\":\"PK\",\"stats_global_id\":\"331927\",\"espn_id\":\"14816\",\"weight\":\"197\",\"id\":\"10487\",\"birthdate\":\"557557200\",\"draft_team\":\"FA\",\"name\":\"Forbath, Kai\",\"college\":\"UCLA\",\"rotowire_id\":\"7544\",\"height\":\"71\",\"jersey\":\"2\",\"twitter_username\":\"KaiForbath\",\"sportsdata_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"team\":\"LAR\",\"cbs_id\":\"1117835\"},{\"draft_year\":\"2011\",\"nfl_id\":\"terrellepryor/2531332\",\"rotoworld_id\":\"6757\",\"stats_id\":\"25681\",\"position\":\"WR\",\"stats_global_id\":\"457289\",\"espn_id\":\"14851\",\"weight\":\"228\",\"id\":\"10500\",\"birthdate\":\"614322000\",\"draft_team\":\"FA\",\"name\":\"Pryor, Terrelle\",\"college\":\"Ohio State\",\"rotowire_id\":\"7640\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"TerrellePryor\",\"sportsdata_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"team\":\"FA\",\"cbs_id\":\"1631107\"},{\"draft_year\":\"2011\",\"nfl_id\":\"danbailey/2495259\",\"rotoworld_id\":\"7144\",\"stats_id\":\"25427\",\"position\":\"PK\",\"stats_global_id\":\"333899\",\"espn_id\":\"14322\",\"weight\":\"190\",\"id\":\"10506\",\"birthdate\":\"570171600\",\"draft_team\":\"FA\",\"name\":\"Bailey, Dan\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"7546\",\"height\":\"72\",\"jersey\":\"5\",\"twitter_username\":\"danbailey95\",\"sportsdata_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"team\":\"MIN\",\"cbs_id\":\"1689664\"},{\"draft_year\":\"2011\",\"nfl_id\":\"nickbellore/2495262\",\"rotoworld_id\":\"7015\",\"stats_id\":\"25295\",\"position\":\"RB\",\"stats_global_id\":\"382555\",\"espn_id\":\"14471\",\"weight\":\"250\",\"id\":\"10514\",\"birthdate\":\"610952400\",\"draft_team\":\"FA\",\"name\":\"Bellore, Nick\",\"college\":\"Central Michigan\",\"rotowire_id\":\"7504\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"NBELLORE54\",\"sportsdata_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"team\":\"SEA\",\"cbs_id\":\"1244136\"},{\"draft_year\":\"2010\",\"nfl_id\":\"albertmcclellan/496814\",\"rotoworld_id\":\"6127\",\"stats_id\":\"24358\",\"position\":\"LB\",\"stats_global_id\":\"286877\",\"espn_id\":\"13851\",\"weight\":\"235\",\"id\":\"10549\",\"draft_team\":\"FA\",\"birthdate\":\"518245200\",\"name\":\"McClellan, Albert\",\"college\":\"Marshall\",\"rotowire_id\":\"7285\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"team\":\"FA\",\"cbs_id\":\"1125328\"},{\"draft_year\":\"2011\",\"nfl_id\":\"marioaddison/2530474\",\"rotoworld_id\":\"6867\",\"stats_id\":\"25147\",\"position\":\"DE\",\"stats_global_id\":\"468947\",\"espn_id\":\"14320\",\"weight\":\"260\",\"id\":\"10554\",\"fleaflicker_id\":\"7753\",\"birthdate\":\"557902800\",\"draft_team\":\"FA\",\"name\":\"Addison, Mario\",\"college\":\"Troy\",\"rotowire_id\":\"7889\",\"height\":\"75\",\"jersey\":\"97\",\"twitter_username\":\"HIT_STIQ4\",\"sportsdata_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"team\":\"BUF\",\"cbs_id\":\"1853150\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisharris/2530510\",\"rotoworld_id\":\"6910\",\"stats_id\":\"25189\",\"position\":\"CB\",\"stats_global_id\":\"381129\",\"espn_id\":\"14398\",\"weight\":\"199\",\"id\":\"10592\",\"birthdate\":\"614149200\",\"draft_team\":\"FA\",\"name\":\"Harris, Chris\",\"college\":\"Kansas\",\"rotowire_id\":\"7924\",\"height\":\"70\",\"jersey\":\"25\",\"twitter_username\":\"ChrisHarrisJr\",\"sportsdata_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"team\":\"LAC\",\"cbs_id\":\"1853171\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrisjones/2539987\",\"rotoworld_id\":\"7148\",\"stats_id\":\"25431\",\"position\":\"PN\",\"stats_global_id\":\"404804\",\"espn_id\":\"14723\",\"weight\":\"205\",\"id\":\"10642\",\"draft_team\":\"FA\",\"birthdate\":\"617000400\",\"name\":\"Jones, Chris\",\"college\":\"Carson-Newman\",\"rotowire_id\":\"8021\",\"height\":\"72\",\"jersey\":\"6\",\"sportsdata_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"team\":\"DAL\",\"cbs_id\":\"1264783\"},{\"draft_year\":\"2011\",\"nfl_id\":\"joshbynes/2530491\",\"rotoworld_id\":\"7076\",\"stats_id\":\"25358\",\"position\":\"LB\",\"stats_global_id\":\"401769\",\"espn_id\":\"14519\",\"weight\":\"235\",\"id\":\"10653\",\"fleaflicker_id\":\"7994\",\"birthdate\":\"619938000\",\"draft_team\":\"FA\",\"name\":\"Bynes, Josh\",\"college\":\"Auburn\",\"rotowire_id\":\"7740\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"bynestime56\",\"sportsdata_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"team\":\"CIN\",\"cbs_id\":\"1264599\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"andrewluck/2533031\",\"rotoworld_id\":\"6439\",\"stats_id\":\"25711\",\"position\":\"QB\",\"stats_global_id\":\"461175\",\"espn_id\":\"14874\",\"weight\":\"240\",\"id\":\"10695\",\"birthdate\":\"621579600\",\"draft_team\":\"IND\",\"name\":\"Luck, Andrew\",\"draft_pick\":\"1\",\"college\":\"Stanford\",\"height\":\"76\",\"rotowire_id\":\"7237\",\"jersey\":\"12\",\"sportsdata_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"team\":\"FA\",\"cbs_id\":\"1631912\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"robertgriffiniii/2533033\",\"rotoworld_id\":\"7406\",\"stats_id\":\"25712\",\"position\":\"QB\",\"stats_global_id\":\"450794\",\"espn_id\":\"14875\",\"weight\":\"213\",\"id\":\"10696\",\"birthdate\":\"634798800\",\"draft_team\":\"WAS\",\"name\":\"Griffin III, Robert\",\"draft_pick\":\"2\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8023\",\"jersey\":\"3\",\"twitter_username\":\"RGIII\",\"sportsdata_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"team\":\"BAL\",\"cbs_id\":\"1620788\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"ryantannehill/2532956\",\"rotoworld_id\":\"7417\",\"stats_id\":\"25718\",\"position\":\"QB\",\"stats_global_id\":\"380960\",\"espn_id\":\"14876\",\"weight\":\"217\",\"id\":\"10697\",\"fleaflicker_id\":\"8514\",\"birthdate\":\"585982800\",\"draft_team\":\"MIA\",\"name\":\"Tannehill, Ryan\",\"draft_pick\":\"8\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8040\",\"jersey\":\"17\",\"twitter_username\":\"ryantannehill1\",\"sportsdata_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"team\":\"TEN\",\"cbs_id\":\"1273654\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"nickfoles/2532842\",\"rotoworld_id\":\"7475\",\"stats_id\":\"25798\",\"position\":\"QB\",\"stats_global_id\":\"403189\",\"espn_id\":\"14877\",\"weight\":\"243\",\"id\":\"10699\",\"fleaflicker_id\":\"8562\",\"birthdate\":\"601275600\",\"draft_team\":\"PHI\",\"name\":\"Foles, Nick\",\"draft_pick\":\"25\",\"college\":\"Arizona\",\"height\":\"78\",\"rotowire_id\":\"8066\",\"jersey\":\"9\",\"twitter_username\":\"NFoles_9\",\"sportsdata_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"team\":\"CHI\",\"cbs_id\":\"1631750\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kirkcousins/2532820\",\"rotoworld_id\":\"7486\",\"stats_id\":\"25812\",\"position\":\"QB\",\"stats_global_id\":\"403308\",\"espn_id\":\"14880\",\"weight\":\"202\",\"id\":\"10700\",\"fleaflicker_id\":\"8625\",\"birthdate\":\"587970000\",\"draft_team\":\"WAS\",\"name\":\"Cousins, Kirk\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"height\":\"75\",\"rotowire_id\":\"8057\",\"jersey\":\"8\",\"twitter_username\":\"KirkCousins8\",\"sportsdata_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"team\":\"MIN\",\"cbs_id\":\"1272574\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"russellwilson/2532975\",\"rotoworld_id\":\"7460\",\"stats_id\":\"25785\",\"position\":\"QB\",\"stats_global_id\":\"401534\",\"espn_id\":\"14881\",\"weight\":\"215\",\"id\":\"10703\",\"fleaflicker_id\":\"8598\",\"birthdate\":\"596782800\",\"draft_team\":\"SEA\",\"name\":\"Wilson, Russell\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"height\":\"71\",\"rotowire_id\":\"8043\",\"jersey\":\"3\",\"twitter_username\":\"DangeRussWilson\",\"sportsdata_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"team\":\"SEA\",\"cbs_id\":\"1272242\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"lamarmiller/2533034\",\"rotoworld_id\":\"7408\",\"stats_id\":\"25807\",\"position\":\"RB\",\"stats_global_id\":\"508924\",\"espn_id\":\"14886\",\"weight\":\"221\",\"id\":\"10708\",\"fleaflicker_id\":\"8512\",\"birthdate\":\"672555600\",\"draft_team\":\"MIA\",\"name\":\"Miller, Lamar\",\"draft_pick\":\"2\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8008\",\"jersey\":\"26\",\"twitter_username\":\"millertime_6\",\"sportsdata_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"team\":\"CHI\",\"cbs_id\":\"1691169\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dougmartin/2532899\",\"rotoworld_id\":\"7426\",\"stats_id\":\"25741\",\"position\":\"RB\",\"stats_global_id\":\"381806\",\"espn_id\":\"14885\",\"weight\":\"210\",\"id\":\"10709\",\"birthdate\":\"600670800\",\"draft_team\":\"TBB\",\"name\":\"Martin, Doug\",\"draft_pick\":\"31\",\"college\":\"Boise State\",\"height\":\"69\",\"rotowire_id\":\"8058\",\"jersey\":\"22\",\"twitter_username\":\"DougMartin22\",\"sportsdata_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"team\":\"FA\",\"cbs_id\":\"1274369\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"robertturbin/2533460\",\"rotoworld_id\":\"7423\",\"stats_id\":\"25816\",\"position\":\"RB\",\"stats_global_id\":\"402163\",\"espn_id\":\"14894\",\"weight\":\"225\",\"id\":\"10714\",\"fleaflicker_id\":\"8596\",\"birthdate\":\"628578000\",\"draft_team\":\"SEA\",\"name\":\"Turbin, Robert\",\"draft_pick\":\"11\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"8028\",\"jersey\":\"33\",\"twitter_username\":\"RobT_33\",\"sportsdata_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"team\":\"FA\",\"cbs_id\":\"1272825\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelfloyd/2532841\",\"rotoworld_id\":\"6759\",\"stats_id\":\"25723\",\"position\":\"WR\",\"stats_global_id\":\"456619\",\"espn_id\":\"14908\",\"weight\":\"220\",\"id\":\"10721\",\"birthdate\":\"628146000\",\"draft_team\":\"ARI\",\"name\":\"Floyd, Michael\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8054\",\"jersey\":\"13\",\"twitter_username\":\"MichaelMFloyd\",\"sportsdata_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"team\":\"FA\",\"cbs_id\":\"1633109\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"alshonjeffery/2533039\",\"rotoworld_id\":\"7441\",\"stats_id\":\"25755\",\"position\":\"WR\",\"stats_global_id\":\"504323\",\"espn_id\":\"14912\",\"weight\":\"218\",\"id\":\"10722\",\"fleaflicker_id\":\"8422\",\"birthdate\":\"634971600\",\"draft_team\":\"CHI\",\"name\":\"Jeffery, Alshon\",\"draft_pick\":\"13\",\"college\":\"South Carolina\",\"height\":\"75\",\"rotowire_id\":\"8029\",\"jersey\":\"17\",\"twitter_username\":\"TheJefferyShow\",\"sportsdata_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"team\":\"PHI\",\"cbs_id\":\"1686006\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"mohamedsanu/2533040\",\"rotoworld_id\":\"7433\",\"stats_id\":\"25793\",\"position\":\"WR\",\"stats_global_id\":\"494313\",\"espn_id\":\"14922\",\"weight\":\"210\",\"id\":\"10723\",\"birthdate\":\"619765200\",\"draft_team\":\"CIN\",\"name\":\"Sanu, Mohamed\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"height\":\"74\",\"rotowire_id\":\"8026\",\"jersey\":\"12\",\"twitter_username\":\"Mo_12_Sanu\",\"sportsdata_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"team\":\"DET\",\"cbs_id\":\"1664646\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"t.y.hilton/2532865\",\"rotoworld_id\":\"7558\",\"stats_id\":\"25802\",\"position\":\"WR\",\"stats_global_id\":\"468655\",\"espn_id\":\"14924\",\"weight\":\"183\",\"id\":\"10729\",\"birthdate\":\"627022800\",\"draft_team\":\"IND\",\"name\":\"Hilton, T.Y.\",\"draft_pick\":\"29\",\"college\":\"Florida International\",\"height\":\"70\",\"rotowire_id\":\"8098\",\"jersey\":\"13\",\"twitter_username\":\"TYHilton13\",\"sportsdata_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"team\":\"IND\",\"cbs_id\":\"1673733\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"jariuswright/2532978\",\"rotoworld_id\":\"7574\",\"stats_id\":\"25828\",\"position\":\"WR\",\"stats_global_id\":\"465652\",\"espn_id\":\"14918\",\"weight\":\"191\",\"id\":\"10734\",\"fleaflicker_id\":\"8525\",\"birthdate\":\"627973200\",\"draft_team\":\"MIN\",\"name\":\"Wright, Jarius\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"height\":\"70\",\"rotowire_id\":\"8105\",\"jersey\":\"13\",\"twitter_username\":\"Jay_wright4\",\"sportsdata_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"team\":\"FA\",\"cbs_id\":\"1632252\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"travisbenjamin/2532790\",\"rotoworld_id\":\"7562\",\"stats_id\":\"25810\",\"position\":\"WR\",\"stats_global_id\":\"464646\",\"espn_id\":\"15062\",\"weight\":\"175\",\"id\":\"10737\",\"fleaflicker_id\":\"8437\",\"birthdate\":\"630910800\",\"draft_team\":\"CLE\",\"name\":\"Benjamin, Travis\",\"draft_pick\":\"5\",\"college\":\"Miami\",\"height\":\"70\",\"rotowire_id\":\"8111\",\"jersey\":\"17\",\"twitter_username\":\"TravisBenjamin3\",\"sportsdata_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"team\":\"SFO\",\"cbs_id\":\"1630448\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"marvinjones/2532884\",\"rotoworld_id\":\"7503\",\"stats_id\":\"25876\",\"position\":\"WR\",\"stats_global_id\":\"461620\",\"espn_id\":\"15072\",\"weight\":\"199\",\"id\":\"10738\",\"birthdate\":\"637218000\",\"draft_team\":\"CIN\",\"name\":\"Jones, Marvin\",\"draft_pick\":\"31\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8223\",\"jersey\":\"11\",\"twitter_username\":\"MarvinJonesJr\",\"sportsdata_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"team\":\"DET\",\"cbs_id\":\"1631804\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"dwayneallen/2533046\",\"rotoworld_id\":\"7452\",\"stats_id\":\"25774\",\"position\":\"TE\",\"stats_global_id\":\"463515\",\"espn_id\":\"14901\",\"weight\":\"260\",\"id\":\"10742\",\"fleaflicker_id\":\"8485\",\"birthdate\":\"635835600\",\"draft_team\":\"IND\",\"name\":\"Allen, Dwayne\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"8041\",\"jersey\":\"89\",\"twitter_username\":\"Dallen83\",\"sportsdata_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"team\":\"FA\",\"cbs_id\":\"1630216\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"melviningram/2532870\",\"rotoworld_id\":\"7419\",\"stats_id\":\"25728\",\"position\":\"DE\",\"stats_global_id\":\"406454\",\"espn_id\":\"14926\",\"weight\":\"247\",\"id\":\"10749\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Ingram, Melvin\",\"draft_pick\":\"18\",\"college\":\"South Carolina\",\"height\":\"74\",\"rotowire_id\":\"8133\",\"jersey\":\"54\",\"twitter_username\":\"MelvinIngram\",\"sportsdata_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"team\":\"LAC\",\"cbs_id\":\"1620606\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"chandlerjones/2533538\",\"rotoworld_id\":\"7429\",\"stats_id\":\"25731\",\"position\":\"LB\",\"stats_global_id\":\"465583\",\"espn_id\":\"14927\",\"weight\":\"255\",\"id\":\"10753\",\"fleaflicker_id\":\"8531\",\"birthdate\":\"636094800\",\"draft_team\":\"NEP\",\"name\":\"Jones, Chandler\",\"draft_pick\":\"21\",\"college\":\"Syracuse\",\"height\":\"77\",\"rotowire_id\":\"8140\",\"jersey\":\"55\",\"twitter_username\":\"Chan95Jones\",\"sportsdata_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"team\":\"ARI\",\"cbs_id\":\"1971327\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"whitneymercilus/2533049\",\"rotoworld_id\":\"7432\",\"stats_id\":\"25736\",\"position\":\"LB\",\"stats_global_id\":\"447344\",\"espn_id\":\"14936\",\"weight\":\"258\",\"id\":\"10754\",\"fleaflicker_id\":\"8482\",\"birthdate\":\"648536400\",\"draft_team\":\"HOU\",\"name\":\"Mercilus, Whitney\",\"draft_pick\":\"26\",\"college\":\"Illinois\",\"height\":\"76\",\"rotowire_id\":\"8134\",\"jersey\":\"59\",\"twitter_username\":\"Merci380\",\"sportsdata_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"team\":\"HOU\",\"cbs_id\":\"1619959\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"vinnycurry/2532825\",\"rotoworld_id\":\"7531\",\"stats_id\":\"25769\",\"position\":\"DE\",\"stats_global_id\":\"407642\",\"espn_id\":\"14959\",\"weight\":\"279\",\"id\":\"10755\",\"fleaflicker_id\":\"8561\",\"birthdate\":\"583650000\",\"draft_team\":\"PHI\",\"name\":\"Curry, Vinny\",\"draft_pick\":\"27\",\"college\":\"Marshall\",\"height\":\"75\",\"rotowire_id\":\"8139\",\"jersey\":\"75\",\"twitter_username\":\"MrGetFlee99\",\"sportsdata_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"team\":\"PHI\",\"cbs_id\":\"1635785\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dontaripoe/2533435\",\"rotoworld_id\":\"7422\",\"stats_id\":\"25721\",\"position\":\"DT\",\"stats_global_id\":\"502833\",\"espn_id\":\"14939\",\"weight\":\"346\",\"id\":\"10761\",\"fleaflicker_id\":\"8504\",\"birthdate\":\"650955600\",\"draft_team\":\"KCC\",\"name\":\"Poe, Dontari\",\"draft_pick\":\"11\",\"college\":\"Memphis\",\"height\":\"75\",\"rotowire_id\":\"8153\",\"jersey\":\"95\",\"twitter_username\":\"PoeMans_dream\",\"sportsdata_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"team\":\"FA\",\"cbs_id\":\"1717351\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"fletchercox/2533051\",\"rotoworld_id\":\"7431\",\"stats_id\":\"25722\",\"position\":\"DT\",\"stats_global_id\":\"512216\",\"espn_id\":\"14941\",\"weight\":\"310\",\"id\":\"10762\",\"fleaflicker_id\":\"8560\",\"birthdate\":\"661064400\",\"draft_team\":\"PHI\",\"name\":\"Cox, Fletcher\",\"draft_pick\":\"12\",\"college\":\"Mississippi State\",\"height\":\"76\",\"rotowire_id\":\"8154\",\"jersey\":\"91\",\"twitter_username\":\"fcoxx_91\",\"sportsdata_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"team\":\"PHI\",\"cbs_id\":\"1700843\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"michaelbrockers/2533050\",\"rotoworld_id\":\"7466\",\"stats_id\":\"25724\",\"position\":\"DE\",\"stats_global_id\":\"498963\",\"espn_id\":\"14944\",\"weight\":\"305\",\"id\":\"10763\",\"fleaflicker_id\":\"8599\",\"birthdate\":\"661755600\",\"draft_team\":\"STL\",\"name\":\"Brockers, Michael\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8152\",\"jersey\":\"90\",\"twitter_username\":\"MichaelBrockers\",\"sportsdata_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"team\":\"LAR\",\"cbs_id\":\"1664406\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"bruceirvin/2532871\",\"rotoworld_id\":\"7515\",\"stats_id\":\"25725\",\"position\":\"DE\",\"stats_global_id\":\"556310\",\"espn_id\":\"14946\",\"weight\":\"258\",\"id\":\"10766\",\"birthdate\":\"537339600\",\"draft_team\":\"SEA\",\"name\":\"Irvin, Bruce\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8199\",\"jersey\":\"51\",\"twitter_username\":\"BIrvin_WVU11\",\"sportsdata_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"team\":\"SEA\",\"cbs_id\":\"1779111\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"lavontedavid/2532828\",\"rotoworld_id\":\"7539\",\"stats_id\":\"25768\",\"position\":\"LB\",\"stats_global_id\":\"540618\",\"espn_id\":\"14985\",\"weight\":\"233\",\"id\":\"10768\",\"fleaflicker_id\":\"8610\",\"birthdate\":\"633070800\",\"draft_team\":\"TBB\",\"name\":\"David, Lavonte\",\"draft_pick\":\"26\",\"college\":\"Nebraska\",\"height\":\"73\",\"rotowire_id\":\"8184\",\"jersey\":\"54\",\"twitter_username\":\"NewEra_54\",\"sportsdata_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"team\":\"TBB\",\"cbs_id\":\"1769263\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"zachbrown/2532804\",\"rotoworld_id\":\"7510\",\"stats_id\":\"25762\",\"position\":\"LB\",\"stats_global_id\":\"463660\",\"espn_id\":\"14973\",\"weight\":\"250\",\"id\":\"10770\",\"fleaflicker_id\":\"8616\",\"birthdate\":\"625122000\",\"draft_team\":\"TEN\",\"name\":\"Brown, Zach\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"8183\",\"jersey\":\"51\",\"twitter_username\":\"ZachBrown_55\",\"sportsdata_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"team\":\"FA\",\"cbs_id\":\"1630321\"},{\"draft_year\":\"2012\",\"nfl_id\":\"vontazeburfict/2533058\",\"rotoworld_id\":\"7435\",\"stats_id\":\"26238\",\"position\":\"LB\",\"stats_global_id\":\"507431\",\"espn_id\":\"15246\",\"weight\":\"255\",\"id\":\"10772\",\"fleaflicker_id\":\"8683\",\"birthdate\":\"654152400\",\"draft_team\":\"FA\",\"name\":\"Burfict, Vontaze\",\"college\":\"Arizona State\",\"rotowire_id\":\"8522\",\"height\":\"73\",\"jersey\":\"55\",\"twitter_username\":\"King55Tez\",\"sportsdata_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"team\":\"FA\",\"cbs_id\":\"1691353\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"lukekuechly/2533056\",\"rotoworld_id\":\"7451\",\"stats_id\":\"25719\",\"position\":\"LB\",\"stats_global_id\":\"498203\",\"espn_id\":\"14938\",\"weight\":\"238\",\"id\":\"10773\",\"birthdate\":\"672123600\",\"draft_team\":\"CAR\",\"name\":\"Kuechly, Luke\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"height\":\"75\",\"rotowire_id\":\"8198\",\"jersey\":\"59\",\"twitter_username\":\"LukeKuechly\",\"sportsdata_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"team\":\"FA\",\"cbs_id\":\"1679691\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"dont'ahightower/2533057\",\"rotoworld_id\":\"7464\",\"stats_id\":\"25735\",\"position\":\"LB\",\"stats_global_id\":\"465607\",\"espn_id\":\"14933\",\"weight\":\"260\",\"id\":\"10774\",\"fleaflicker_id\":\"8530\",\"birthdate\":\"637218000\",\"draft_team\":\"NEP\",\"name\":\"Hightower, Dont'a\",\"draft_pick\":\"25\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"8201\",\"jersey\":\"54\",\"sportsdata_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"team\":\"NEP\",\"cbs_id\":\"1673258\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"bobbywagner/2532966\",\"rotoworld_id\":\"7533\",\"stats_id\":\"25757\",\"position\":\"LB\",\"stats_global_id\":\"466010\",\"espn_id\":\"14979\",\"weight\":\"242\",\"id\":\"10775\",\"fleaflicker_id\":\"8597\",\"birthdate\":\"646462800\",\"draft_team\":\"SEA\",\"name\":\"Wagner, Bobby\",\"draft_pick\":\"15\",\"college\":\"Utah State\",\"height\":\"72\",\"rotowire_id\":\"8208\",\"jersey\":\"54\",\"twitter_username\":\"Bwagz54\",\"sportsdata_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"team\":\"SEA\",\"cbs_id\":\"1631476\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"morrisclaiborne/2533059\",\"rotoworld_id\":\"7461\",\"stats_id\":\"25716\",\"position\":\"CB\",\"stats_global_id\":\"498964\",\"espn_id\":\"14943\",\"weight\":\"192\",\"id\":\"10777\",\"fleaflicker_id\":\"8447\",\"birthdate\":\"634366800\",\"draft_team\":\"DAL\",\"name\":\"Claiborne, Morris\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"8162\",\"jersey\":\"20\",\"twitter_username\":\"MoClaiborne\",\"sportsdata_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"team\":\"FA\",\"cbs_id\":\"1679957\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"drekirkpatrick/2533060\",\"rotoworld_id\":\"7463\",\"stats_id\":\"25727\",\"position\":\"CB\",\"stats_global_id\":\"508644\",\"espn_id\":\"14940\",\"weight\":\"190\",\"id\":\"10778\",\"fleaflicker_id\":\"8430\",\"birthdate\":\"625381200\",\"draft_team\":\"CIN\",\"name\":\"Kirkpatrick, Dre\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8163\",\"jersey\":\"20\",\"twitter_username\":\"DreKirkSWAG\",\"sportsdata_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"team\":\"ARI\",\"cbs_id\":\"1691421\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"janorisjenkins/2532875\",\"rotoworld_id\":\"6473\",\"stats_id\":\"25749\",\"position\":\"CB\",\"stats_global_id\":\"450935\",\"espn_id\":\"14974\",\"weight\":\"190\",\"id\":\"10779\",\"fleaflicker_id\":\"8602\",\"birthdate\":\"594104400\",\"draft_team\":\"STL\",\"name\":\"Jenkins, Janoris\",\"draft_pick\":\"7\",\"college\":\"North Alabama\",\"height\":\"70\",\"rotowire_id\":\"8164\",\"jersey\":\"20\",\"twitter_username\":\"JjenkzLockdown\",\"sportsdata_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"team\":\"NOS\",\"cbs_id\":\"1620533\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"markbarron/2532789\",\"rotoworld_id\":\"7497\",\"stats_id\":\"25717\",\"position\":\"LB\",\"stats_global_id\":\"465598\",\"espn_id\":\"14932\",\"weight\":\"230\",\"id\":\"10782\",\"fleaflicker_id\":\"8609\",\"birthdate\":\"625467600\",\"draft_team\":\"TBB\",\"name\":\"Barron, Mark\",\"draft_pick\":\"7\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"8197\",\"jersey\":\"42\",\"twitter_username\":\"M_B_24\",\"sportsdata_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"team\":\"DEN\",\"cbs_id\":\"1632196\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"harrisonsmith/2532948\",\"rotoworld_id\":\"7488\",\"stats_id\":\"25739\",\"position\":\"S\",\"stats_global_id\":\"400486\",\"espn_id\":\"14945\",\"weight\":\"214\",\"id\":\"10783\",\"fleaflicker_id\":\"8523\",\"birthdate\":\"602398800\",\"draft_team\":\"MIN\",\"name\":\"Smith, Harrison\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"height\":\"74\",\"rotowire_id\":\"8202\",\"jersey\":\"22\",\"twitter_username\":\"HarriSmith22\",\"sportsdata_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"team\":\"MIN\",\"cbs_id\":\"1265468\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"georgeiloka/2532869\",\"rotoworld_id\":\"7502\",\"stats_id\":\"25877\",\"position\":\"S\",\"stats_global_id\":\"449634\",\"espn_id\":\"15085\",\"weight\":\"227\",\"id\":\"10784\",\"birthdate\":\"645858000\",\"draft_team\":\"CIN\",\"name\":\"Iloka, George\",\"draft_pick\":\"32\",\"college\":\"Boise State\",\"height\":\"76\",\"rotowire_id\":\"8335\",\"jersey\":\"20\",\"twitter_username\":\"George_iloka\",\"sportsdata_id\":\"2b9494e4-953a-4aac-afe7-edd2d7be27da\",\"team\":\"MIN\",\"cbs_id\":\"1621494\"},{\"draft_year\":\"2012\",\"draft_round\":\"1\",\"nfl_id\":\"stephongilmore/2533062\",\"rotoworld_id\":\"7442\",\"stats_id\":\"25720\",\"position\":\"CB\",\"stats_global_id\":\"494377\",\"espn_id\":\"14942\",\"weight\":\"202\",\"id\":\"10789\",\"fleaflicker_id\":\"8408\",\"birthdate\":\"653720400\",\"draft_team\":\"BUF\",\"name\":\"Gilmore, Stephon\",\"draft_pick\":\"10\",\"college\":\"South Carolina\",\"height\":\"73\",\"rotowire_id\":\"8165\",\"jersey\":\"24\",\"twitter_username\":\"BumpNrunGilm0re\",\"sportsdata_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"team\":\"NEP\",\"cbs_id\":\"1664166\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"caseyhayward/2532861\",\"rotoworld_id\":\"7529\",\"stats_id\":\"25772\",\"position\":\"CB\",\"stats_global_id\":\"465924\",\"espn_id\":\"14966\",\"weight\":\"192\",\"id\":\"10793\",\"birthdate\":\"621320400\",\"draft_team\":\"GBP\",\"name\":\"Hayward, Casey\",\"draft_pick\":\"30\",\"college\":\"Vanderbilt\",\"height\":\"71\",\"rotowire_id\":\"8172\",\"jersey\":\"26\",\"twitter_username\":\"show_case29\",\"sportsdata_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"team\":\"LAC\",\"cbs_id\":\"1632180\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"derekwolfe/2533026\",\"rotoworld_id\":\"7534\",\"stats_id\":\"25746\",\"position\":\"DE\",\"stats_global_id\":\"448254\",\"espn_id\":\"14964\",\"weight\":\"285\",\"id\":\"10806\",\"fleaflicker_id\":\"8460\",\"birthdate\":\"635835600\",\"draft_team\":\"DEN\",\"name\":\"Wolfe, Derek\",\"draft_pick\":\"4\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8204\",\"jersey\":\"95\",\"twitter_username\":\"DerekWolfe95\",\"sportsdata_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"team\":\"BAL\",\"cbs_id\":\"1621331\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"mychalkendricks/2532890\",\"rotoworld_id\":\"7509\",\"stats_id\":\"25756\",\"position\":\"LB\",\"stats_global_id\":\"461633\",\"espn_id\":\"14978\",\"weight\":\"240\",\"id\":\"10807\",\"fleaflicker_id\":\"8564\",\"birthdate\":\"654498000\",\"draft_team\":\"PHI\",\"name\":\"Kendricks, Mychal\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"71\",\"rotowire_id\":\"8207\",\"jersey\":\"56\",\"twitter_username\":\"MychalKendricks\",\"sportsdata_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"team\":\"FA\",\"cbs_id\":\"1631805\"},{\"draft_year\":\"2012\",\"draft_round\":\"2\",\"nfl_id\":\"tavonwilson/2534830\",\"rotoworld_id\":\"7537\",\"stats_id\":\"25758\",\"position\":\"S\",\"stats_global_id\":\"463943\",\"espn_id\":\"14977\",\"weight\":\"208\",\"id\":\"10808\",\"fleaflicker_id\":\"8532\",\"birthdate\":\"637822800\",\"draft_team\":\"NEP\",\"name\":\"Wilson, Tavon\",\"draft_pick\":\"16\",\"college\":\"Illinois\",\"height\":\"72\",\"rotowire_id\":\"8209\",\"jersey\":\"31\",\"twitter_username\":\"TavonWilson27\",\"sportsdata_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"team\":\"IND\",\"cbs_id\":\"1971666\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"trumainejohnson/2532877\",\"rotoworld_id\":\"7530\",\"stats_id\":\"25775\",\"position\":\"CB\",\"stats_global_id\":\"459816\",\"espn_id\":\"14989\",\"weight\":\"213\",\"id\":\"10810\",\"fleaflicker_id\":\"8603\",\"birthdate\":\"631170000\",\"draft_team\":\"STL\",\"name\":\"Johnson, Trumaine\",\"draft_pick\":\"2\",\"college\":\"Montana\",\"height\":\"74\",\"rotowire_id\":\"8167\",\"jersey\":\"22\",\"twitter_username\":\"Trujohnson2\",\"sportsdata_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"team\":\"FA\",\"cbs_id\":\"1633486\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"bryananger/2533000\",\"rotoworld_id\":\"7541\",\"stats_id\":\"25780\",\"position\":\"PN\",\"stats_global_id\":\"401724\",\"espn_id\":\"14950\",\"weight\":\"205\",\"id\":\"10814\",\"birthdate\":\"592117200\",\"draft_team\":\"JAC\",\"name\":\"Anger, Bryan\",\"draft_pick\":\"7\",\"college\":\"California\",\"height\":\"75\",\"rotowire_id\":\"8251\",\"jersey\":\"9\",\"sportsdata_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"team\":\"HOU\",\"cbs_id\":\"1272968\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"oliviervernon/2533534\",\"rotoworld_id\":\"7544\",\"stats_id\":\"25782\",\"position\":\"DE\",\"stats_global_id\":\"495200\",\"espn_id\":\"14982\",\"weight\":\"262\",\"id\":\"10815\",\"fleaflicker_id\":\"8515\",\"birthdate\":\"655275600\",\"draft_team\":\"MIA\",\"name\":\"Vernon, Olivier\",\"draft_pick\":\"9\",\"college\":\"Miami\",\"height\":\"74\",\"rotowire_id\":\"8146\",\"jersey\":\"54\",\"sportsdata_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"team\":\"CLE\",\"cbs_id\":\"1664433\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"demariodavis/2533008\",\"rotoworld_id\":\"7547\",\"stats_id\":\"25787\",\"position\":\"LB\",\"stats_global_id\":\"401178\",\"espn_id\":\"14958\",\"weight\":\"248\",\"id\":\"10816\",\"fleaflicker_id\":\"8547\",\"birthdate\":\"600498000\",\"draft_team\":\"NYJ\",\"name\":\"Davis, Demario\",\"draft_pick\":\"14\",\"college\":\"Arkansas State\",\"height\":\"74\",\"rotowire_id\":\"8213\",\"jersey\":\"56\",\"twitter_username\":\"YouAreFree146\",\"sportsdata_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"team\":\"NOS\",\"cbs_id\":\"1263584\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"tyronecrawford/2532821\",\"rotoworld_id\":\"7550\",\"stats_id\":\"25791\",\"position\":\"DT\",\"stats_global_id\":\"541682\",\"espn_id\":\"14987\",\"weight\":\"285\",\"id\":\"10819\",\"birthdate\":\"627714000\",\"draft_team\":\"DAL\",\"name\":\"Crawford, Tyrone\",\"draft_pick\":\"18\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8144\",\"jersey\":\"98\",\"twitter_username\":\"TCrawford98\",\"sportsdata_id\":\"dc632746-2240-41d6-8141-695194706989\",\"team\":\"DAL\",\"cbs_id\":\"1781663\"},{\"draft_year\":\"2012\",\"draft_round\":\"3\",\"nfl_id\":\"akiemhicks/2533433\",\"rotoworld_id\":\"7555\",\"stats_id\":\"25799\",\"position\":\"DE\",\"stats_global_id\":\"498969\",\"espn_id\":\"14984\",\"weight\":\"332\",\"id\":\"10823\",\"birthdate\":\"627195600\",\"draft_team\":\"NOS\",\"name\":\"Hicks, Akiem\",\"draft_pick\":\"26\",\"college\":\"Regina\",\"height\":\"77\",\"rotowire_id\":\"8350\",\"jersey\":\"96\",\"twitter_username\":\"The_Dream99\",\"sportsdata_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"team\":\"CHI\",\"cbs_id\":\"1679965\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"nigelbradham/2532800\",\"rotoworld_id\":\"7565\",\"stats_id\":\"25815\",\"position\":\"LB\",\"stats_global_id\":\"447034\",\"espn_id\":\"15075\",\"weight\":\"241\",\"id\":\"10827\",\"fleaflicker_id\":\"8405\",\"birthdate\":\"620888400\",\"draft_team\":\"BUF\",\"name\":\"Bradham, Nigel\",\"draft_pick\":\"10\",\"college\":\"Florida St.\",\"height\":\"74\",\"rotowire_id\":\"8215\",\"jersey\":\"53\",\"twitter_username\":\"NigelBradham_13\",\"sportsdata_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"team\":\"FA\",\"cbs_id\":\"1619567\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"kylewilber/2532974\",\"rotoworld_id\":\"7570\",\"stats_id\":\"25823\",\"position\":\"LB\",\"stats_global_id\":\"397413\",\"espn_id\":\"15038\",\"weight\":\"240\",\"id\":\"10831\",\"fleaflicker_id\":\"8453\",\"birthdate\":\"609570000\",\"draft_team\":\"DAL\",\"name\":\"Wilber, Kyle\",\"draft_pick\":\"18\",\"college\":\"Wake Forest\",\"height\":\"76\",\"rotowire_id\":\"8224\",\"jersey\":\"58\",\"twitter_username\":\"KWilber51\",\"sportsdata_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"team\":\"LVR\",\"cbs_id\":\"1243088\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"cotysensabaugh/2532946\",\"rotoworld_id\":\"7572\",\"stats_id\":\"25825\",\"position\":\"CB\",\"stats_global_id\":\"401730\",\"espn_id\":\"14998\",\"weight\":\"187\",\"id\":\"10833\",\"fleaflicker_id\":\"8619\",\"birthdate\":\"595573200\",\"draft_team\":\"TEN\",\"name\":\"Sensabaugh, Coty\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"8320\",\"jersey\":\"24\",\"twitter_username\":\"CotySense\",\"sportsdata_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"team\":\"FA\",\"cbs_id\":\"1262874\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"rhettellison/2532835\",\"rotoworld_id\":\"7580\",\"stats_id\":\"25838\",\"position\":\"TE\",\"stats_global_id\":\"399295\",\"espn_id\":\"15003\",\"weight\":\"255\",\"id\":\"10838\",\"birthdate\":\"591858000\",\"draft_team\":\"MIN\",\"name\":\"Ellison, Rhett\",\"draft_pick\":\"33\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"8114\",\"jersey\":\"85\",\"sportsdata_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"team\":\"FA\",\"cbs_id\":\"1244464\"},{\"draft_year\":\"2012\",\"draft_round\":\"4\",\"nfl_id\":\"mikedaniels/2532826\",\"rotoworld_id\":\"7584\",\"stats_id\":\"25842\",\"position\":\"DT\",\"stats_global_id\":\"399250\",\"espn_id\":\"14994\",\"weight\":\"310\",\"id\":\"10841\",\"fleaflicker_id\":\"8470\",\"birthdate\":\"610347600\",\"draft_team\":\"GBP\",\"name\":\"Daniels, Mike\",\"draft_pick\":\"37\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8324\",\"jersey\":\"76\",\"twitter_username\":\"Mike_Daniels76\",\"sportsdata_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"team\":\"CIN\",\"cbs_id\":\"1692684\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"malikjackson/2532873\",\"rotoworld_id\":\"7528\",\"stats_id\":\"25847\",\"position\":\"DT\",\"stats_global_id\":\"459335\",\"espn_id\":\"15047\",\"weight\":\"290\",\"id\":\"10846\",\"fleaflicker_id\":\"8457\",\"birthdate\":\"632034000\",\"draft_team\":\"DEN\",\"name\":\"Jackson, Malik\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"77\",\"rotowire_id\":\"8150\",\"jersey\":\"97\",\"twitter_username\":\"TheMalikJackson\",\"sportsdata_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"team\":\"PHI\",\"cbs_id\":\"1631887\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"tahirwhitehead/2532986\",\"rotoworld_id\":\"7588\",\"stats_id\":\"25848\",\"position\":\"LB\",\"stats_global_id\":\"469179\",\"espn_id\":\"15070\",\"weight\":\"241\",\"id\":\"10847\",\"fleaflicker_id\":\"8468\",\"birthdate\":\"639032400\",\"draft_team\":\"DET\",\"name\":\"Whitehead, Tahir\",\"draft_pick\":\"3\",\"college\":\"Temple\",\"height\":\"74\",\"rotowire_id\":\"8341\",\"jersey\":\"52\",\"twitter_username\":\"Big_Tah47\",\"sportsdata_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"team\":\"CAR\",\"cbs_id\":\"1630570\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"najeegoode/2533016\",\"rotoworld_id\":\"7590\",\"stats_id\":\"25850\",\"position\":\"LB\",\"stats_global_id\":\"403301\",\"espn_id\":\"15068\",\"weight\":\"244\",\"id\":\"10849\",\"birthdate\":\"612939600\",\"draft_team\":\"TBB\",\"name\":\"Goode, Najee\",\"draft_pick\":\"5\",\"college\":\"West Virginia\",\"height\":\"72\",\"rotowire_id\":\"8317\",\"jersey\":\"52\",\"twitter_username\":\"GigaWAttGoode\",\"sportsdata_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"team\":\"FA\",\"cbs_id\":\"1672771\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"brandonmarshall/2532898\",\"rotoworld_id\":\"7592\",\"stats_id\":\"25852\",\"position\":\"LB\",\"stats_global_id\":\"409523\",\"espn_id\":\"15002\",\"weight\":\"245\",\"id\":\"10850\",\"fleaflicker_id\":\"8497\",\"birthdate\":\"621406800\",\"draft_team\":\"JAC\",\"name\":\"Marshall, Brandon\",\"draft_pick\":\"7\",\"college\":\"Nevada\",\"height\":\"73\",\"rotowire_id\":\"8252\",\"jersey\":\"54\",\"sportsdata_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"team\":\"FA\",\"cbs_id\":\"1620099\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"joshnorman/2532920\",\"rotoworld_id\":\"7593\",\"stats_id\":\"25853\",\"position\":\"CB\",\"stats_global_id\":\"473857\",\"espn_id\":\"15124\",\"weight\":\"200\",\"id\":\"10851\",\"fleaflicker_id\":\"8417\",\"birthdate\":\"566542800\",\"draft_team\":\"CAR\",\"name\":\"Norman, Josh\",\"draft_pick\":\"8\",\"college\":\"Coastal Carolina\",\"height\":\"72\",\"rotowire_id\":\"8174\",\"jersey\":\"29\",\"twitter_username\":\"J_No24\",\"sportsdata_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"team\":\"BUF\",\"cbs_id\":\"1731084\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"jackcrawford/2532992\",\"rotoworld_id\":\"7608\",\"stats_id\":\"25868\",\"position\":\"DE\",\"stats_global_id\":\"471940\",\"espn_id\":\"15090\",\"weight\":\"274\",\"id\":\"10861\",\"fleaflicker_id\":\"8555\",\"birthdate\":\"589611600\",\"draft_team\":\"OAK\",\"name\":\"Crawford, Jack\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"height\":\"77\",\"rotowire_id\":\"8148\",\"jersey\":\"94\",\"twitter_username\":\"Sack_Religious\",\"sportsdata_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"team\":\"TEN\",\"cbs_id\":\"1631114\"},{\"draft_year\":\"2012\",\"draft_round\":\"5\",\"nfl_id\":\"randybullock/2533444\",\"rotoworld_id\":\"7610\",\"stats_id\":\"25871\",\"position\":\"PK\",\"stats_global_id\":\"469127\",\"espn_id\":\"15091\",\"weight\":\"210\",\"id\":\"10862\",\"birthdate\":\"629787600\",\"draft_team\":\"HOU\",\"name\":\"Bullock, Randy\",\"draft_pick\":\"26\",\"college\":\"Texas A&M\",\"height\":\"69\",\"rotowire_id\":\"8222\",\"jersey\":\"4\",\"twitter_username\":\"randybullock28\",\"sportsdata_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"team\":\"CIN\",\"cbs_id\":\"1632503\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"gregzuerlein/2534797\",\"rotoworld_id\":\"7616\",\"stats_id\":\"25881\",\"position\":\"PK\",\"stats_global_id\":\"558684\",\"espn_id\":\"14993\",\"weight\":\"191\",\"id\":\"10868\",\"fleaflicker_id\":\"8608\",\"birthdate\":\"567579600\",\"draft_team\":\"STL\",\"name\":\"Zuerlein, Greg\",\"draft_pick\":\"1\",\"college\":\"Missouri Western\",\"height\":\"72\",\"rotowire_id\":\"8179\",\"jersey\":\"2\",\"sportsdata_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"team\":\"DAL\",\"cbs_id\":\"1971893\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"alfredmorris/2533457\",\"rotoworld_id\":\"7618\",\"stats_id\":\"25883\",\"position\":\"RB\",\"stats_global_id\":\"382365\",\"espn_id\":\"15009\",\"weight\":\"222\",\"id\":\"10870\",\"birthdate\":\"597906000\",\"draft_team\":\"WAS\",\"name\":\"Morris, Alfred\",\"draft_pick\":\"3\",\"college\":\"Florida Atlantic\",\"height\":\"70\",\"rotowire_id\":\"8089\",\"jersey\":\"23\",\"twitter_username\":\"Trey_Deuces\",\"sportsdata_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"team\":\"NYG\",\"cbs_id\":\"1254119\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"justinbethel/2532792\",\"rotoworld_id\":\"7622\",\"stats_id\":\"25887\",\"position\":\"CB\",\"stats_global_id\":\"461022\",\"espn_id\":\"15089\",\"weight\":\"200\",\"id\":\"10874\",\"fleaflicker_id\":\"8383\",\"birthdate\":\"645598800\",\"draft_team\":\"ARI\",\"name\":\"Bethel, Justin\",\"draft_pick\":\"7\",\"college\":\"Presbyterian\",\"height\":\"72\",\"rotowire_id\":\"8306\",\"jersey\":\"29\",\"twitter_username\":\"Jbet26\",\"sportsdata_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"team\":\"NEP\",\"cbs_id\":\"1971899\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"dannytrevathan/2532961\",\"rotoworld_id\":\"7630\",\"stats_id\":\"25898\",\"position\":\"LB\",\"stats_global_id\":\"465965\",\"espn_id\":\"15074\",\"weight\":\"239\",\"id\":\"10879\",\"fleaflicker_id\":\"8459\",\"birthdate\":\"638254800\",\"draft_team\":\"DEN\",\"name\":\"Trevathan, Danny\",\"draft_pick\":\"18\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"8285\",\"jersey\":\"59\",\"twitter_username\":\"Grindin_59\",\"sportsdata_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"team\":\"CHI\",\"cbs_id\":\"1632103\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"nateebner/2535132\",\"rotoworld_id\":\"7640\",\"stats_id\":\"25907\",\"position\":\"S\",\"stats_global_id\":\"498947\",\"espn_id\":\"15125\",\"weight\":\"215\",\"id\":\"10884\",\"fleaflicker_id\":\"8529\",\"birthdate\":\"598078800\",\"draft_team\":\"NEP\",\"name\":\"Ebner, Nate\",\"draft_pick\":\"27\",\"college\":\"Ohio St.\",\"height\":\"72\",\"rotowire_id\":\"8244\",\"jersey\":\"43\",\"twitter_username\":\"Natebner34\",\"sportsdata_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"team\":\"NYG\",\"cbs_id\":\"1971895\"},{\"draft_year\":\"2012\",\"draft_round\":\"6\",\"nfl_id\":\"billywinn/2532976\",\"rotoworld_id\":\"7646\",\"stats_id\":\"25915\",\"position\":\"DE\",\"stats_global_id\":\"381799\",\"espn_id\":\"15021\",\"weight\":\"300\",\"id\":\"10888\",\"birthdate\":\"608619600\",\"draft_team\":\"CLE\",\"name\":\"Winn, Billy\",\"draft_pick\":\"35\",\"college\":\"Boise St.\",\"height\":\"76\",\"rotowire_id\":\"8160\",\"jersey\":\"90\",\"twitter_username\":\"Billy_Boi_90\",\"sportsdata_id\":\"408aff57-2b32-41f7-9520-0064ad14af21\",\"team\":\"GBP\",\"cbs_id\":\"1274395\"},{\"draft_year\":\"2012\",\"draft_round\":\"7\",\"rotoworld_id\":\"7672\",\"stats_id\":\"25940\",\"position\":\"LB\",\"stats_global_id\":\"406180\",\"espn_id\":\"15040\",\"weight\":\"225\",\"id\":\"10906\",\"birthdate\":\"574318800\",\"draft_team\":\"OAK\",\"name\":\"Stupar, Nathan\",\"draft_pick\":\"23\",\"college\":\"Penn St.\",\"rotowire_id\":\"8313\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"team\":\"FA\",\"cbs_id\":\"1679838\"},{\"draft_year\":\"2012\",\"nfl_id\":\"brandonbolden/2532797\",\"rotoworld_id\":\"8119\",\"stats_id\":\"26389\",\"position\":\"RB\",\"stats_global_id\":\"465752\",\"espn_id\":\"15478\",\"weight\":\"220\",\"id\":\"10932\",\"fleaflicker_id\":\"9114\",\"birthdate\":\"633330000\",\"draft_team\":\"FA\",\"name\":\"Bolden, Brandon\",\"college\":\"Mississippi\",\"rotowire_id\":\"8077\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"BB_HulkSmash\",\"sportsdata_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"team\":\"NEP\",\"cbs_id\":\"1632301\"},{\"draft_year\":\"2012\",\"nfl_id\":\"alextanney/2534870\",\"rotoworld_id\":\"8040\",\"stats_id\":\"26547\",\"position\":\"QB\",\"stats_global_id\":\"616337\",\"espn_id\":\"15693\",\"weight\":\"208\",\"id\":\"10935\",\"draft_team\":\"FA\",\"birthdate\":\"563605200\",\"name\":\"Tanney, Alex\",\"college\":\"Monmouth\",\"rotowire_id\":\"8402\",\"height\":\"75\",\"jersey\":\"3\",\"sportsdata_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"team\":\"FA\",\"cbs_id\":\"1987619\"},{\"draft_year\":\"2012\",\"nfl_id\":\"derekcarrier/2534241\",\"rotoworld_id\":\"7527\",\"stats_id\":\"26416\",\"position\":\"TE\",\"stats_global_id\":\"654887\",\"espn_id\":\"15403\",\"weight\":\"240\",\"id\":\"10940\",\"draft_team\":\"FA\",\"birthdate\":\"648882000\",\"name\":\"Carrier, Derek\",\"college\":\"Beloit\",\"rotowire_id\":\"9203\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"team\":\"LVR\",\"cbs_id\":\"1977121\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnnyhekker/2535663\",\"rotoworld_id\":\"8073\",\"stats_id\":\"26350\",\"position\":\"PN\",\"stats_global_id\":\"459211\",\"espn_id\":\"15153\",\"weight\":\"241\",\"id\":\"10945\",\"birthdate\":\"634453200\",\"draft_team\":\"FA\",\"name\":\"Hekker, Johnny\",\"college\":\"Oregon State\",\"rotowire_id\":\"8381\",\"height\":\"77\",\"jersey\":\"6\",\"twitter_username\":\"JHekker\",\"sportsdata_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"team\":\"LAR\",\"cbs_id\":\"1974200\"},{\"draft_year\":\"2012\",\"nfl_id\":\"casekeenum/2532888\",\"rotoworld_id\":\"7696\",\"stats_id\":\"26483\",\"position\":\"QB\",\"stats_global_id\":\"338280\",\"espn_id\":\"15168\",\"weight\":\"215\",\"id\":\"10948\",\"birthdate\":\"571640400\",\"draft_team\":\"FA\",\"name\":\"Keenum, Case\",\"college\":\"Houston\",\"rotowire_id\":\"8065\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"casekeenum7\",\"sportsdata_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"team\":\"CLE\",\"cbs_id\":\"1137118\"},{\"draft_year\":\"2012\",\"nfl_id\":\"deontethompson/2534436\",\"rotoworld_id\":\"8175\",\"stats_id\":\"26456\",\"position\":\"WR\",\"stats_global_id\":\"396571\",\"espn_id\":\"15503\",\"weight\":\"204\",\"id\":\"10956\",\"fleaflicker_id\":\"8662\",\"birthdate\":\"603435600\",\"draft_team\":\"FA\",\"name\":\"Thompson, Deonte\",\"college\":\"Florida\",\"rotowire_id\":\"8492\",\"height\":\"72\",\"jersey\":\"10\",\"sportsdata_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"team\":\"FA\",\"cbs_id\":\"1979421\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshgordon/2537931\",\"rotoworld_id\":\"8282\",\"stats_id\":\"26561\",\"position\":\"WR\",\"stats_global_id\":\"503496\",\"espn_id\":\"15705\",\"weight\":\"225\",\"id\":\"10960\",\"fleaflicker_id\":\"9235\",\"birthdate\":\"671518800\",\"draft_team\":\"FA\",\"name\":\"Gordon, Josh\",\"college\":\"Baylor\",\"rotowire_id\":\"8415\",\"height\":\"75\",\"jersey\":\"10\",\"twitter_username\":\"JOSH_GORDONXII\",\"sportsdata_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"team\":\"SEA\",\"cbs_id\":\"1686045\"},{\"draft_year\":\"2012\",\"nfl_id\":\"colebeasley/2535698\",\"rotoworld_id\":\"7794\",\"stats_id\":\"26060\",\"position\":\"WR\",\"stats_global_id\":\"460830\",\"espn_id\":\"15349\",\"weight\":\"174\",\"id\":\"10973\",\"fleaflicker_id\":\"8735\",\"birthdate\":\"609570000\",\"draft_team\":\"FA\",\"name\":\"Beasley, Cole\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8249\",\"height\":\"68\",\"jersey\":\"11\",\"twitter_username\":\"Bease11\",\"sportsdata_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"team\":\"BUF\",\"cbs_id\":\"1977145\"},{\"draft_year\":\"2012\",\"nfl_id\":\"justintucker/2536340\",\"rotoworld_id\":\"8241\",\"stats_id\":\"26534\",\"position\":\"PK\",\"stats_global_id\":\"448132\",\"espn_id\":\"15683\",\"weight\":\"183\",\"id\":\"10976\",\"fleaflicker_id\":\"8663\",\"birthdate\":\"627627600\",\"draft_team\":\"FA\",\"name\":\"Tucker, Justin\",\"college\":\"Texas\",\"rotowire_id\":\"8398\",\"height\":\"73\",\"jersey\":\"9\",\"twitter_username\":\"jtuck9\",\"sportsdata_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"team\":\"BAL\",\"cbs_id\":\"1985374\"},{\"draft_year\":\"2011\",\"nfl_id\":\"anthonylevine/2508004\",\"rotoworld_id\":\"6563\",\"stats_id\":\"24677\",\"position\":\"S\",\"stats_global_id\":\"339636\",\"espn_id\":\"13845\",\"weight\":\"207\",\"id\":\"10981\",\"birthdate\":\"543819600\",\"draft_team\":\"FA\",\"name\":\"Levine, Anthony\",\"college\":\"Tennessee State\",\"rotowire_id\":\"7013\",\"height\":\"71\",\"jersey\":\"41\",\"twitter_username\":\"ALevine_34\",\"sportsdata_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"team\":\"BAL\",\"cbs_id\":\"1741676\"},{\"draft_year\":\"2011\",\"nfl_id\":\"chrishogan/2530515\",\"rotoworld_id\":\"6902\",\"stats_id\":\"25178\",\"position\":\"WR\",\"stats_global_id\":\"564913\",\"espn_id\":\"14402\",\"weight\":\"210\",\"id\":\"10983\",\"draft_team\":\"FA\",\"birthdate\":\"593672400\",\"name\":\"Hogan, Chris\",\"college\":\"Monmouth\",\"rotowire_id\":\"8469\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"team\":\"NYJ\",\"cbs_id\":\"1891917\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jamizeolawale/2536044\",\"rotoworld_id\":\"8256\",\"stats_id\":\"26535\",\"position\":\"RB\",\"stats_global_id\":\"559334\",\"espn_id\":\"15653\",\"weight\":\"242\",\"id\":\"10985\",\"birthdate\":\"608792400\",\"draft_team\":\"FA\",\"name\":\"Olawale, Jamize\",\"college\":\"North Texas\",\"rotowire_id\":\"8497\",\"height\":\"73\",\"jersey\":\"49\",\"twitter_username\":\"jrolawale\",\"sportsdata_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"team\":\"DAL\",\"cbs_id\":\"1979720\"},{\"draft_year\":\"2012\",\"nfl_id\":\"l.j.fort/2535613\",\"rotoworld_id\":\"8093\",\"stats_id\":\"26370\",\"position\":\"LB\",\"stats_global_id\":\"469513\",\"espn_id\":\"15264\",\"weight\":\"232\",\"id\":\"10989\",\"birthdate\":\"631342800\",\"draft_team\":\"FA\",\"name\":\"Fort, L.J.\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"8526\",\"height\":\"72\",\"jersey\":\"58\",\"twitter_username\":\"i_Serve24\",\"sportsdata_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"team\":\"BAL\",\"cbs_id\":\"1976201\"},{\"draft_year\":\"2012\",\"nfl_id\":\"julianstanford/2535867\",\"rotoworld_id\":\"7826\",\"stats_id\":\"26093\",\"position\":\"LB\",\"stats_global_id\":\"472978\",\"espn_id\":\"15373\",\"weight\":\"230\",\"id\":\"11000\",\"birthdate\":\"652251600\",\"draft_team\":\"FA\",\"name\":\"Stanford, Julian\",\"college\":\"Wagner\",\"rotowire_id\":\"8437\",\"height\":\"73\",\"jersey\":\"46\",\"twitter_username\":\"Mr_NxtLvl\",\"sportsdata_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"team\":\"CAR\",\"cbs_id\":\"1977082\"},{\"draft_year\":\"2012\",\"nfl_id\":\"garrettcelek/2534820\",\"rotoworld_id\":\"7982\",\"stats_id\":\"26253\",\"position\":\"TE\",\"stats_global_id\":\"403184\",\"espn_id\":\"15204\",\"weight\":\"252\",\"id\":\"11007\",\"birthdate\":\"580885200\",\"draft_team\":\"FA\",\"name\":\"Celek, Garrett\",\"college\":\"Michigan State\",\"rotowire_id\":\"8516\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"GCells85\",\"sportsdata_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"team\":\"FA\",\"cbs_id\":\"1975891\"},{\"draft_year\":\"2012\",\"nfl_id\":\"tashaungipson/2532848\",\"rotoworld_id\":\"8095\",\"stats_id\":\"26372\",\"position\":\"S\",\"stats_global_id\":\"451104\",\"espn_id\":\"15235\",\"weight\":\"212\",\"id\":\"11010\",\"birthdate\":\"650005200\",\"draft_team\":\"FA\",\"name\":\"Gipson, Tashaun\",\"college\":\"Wyoming\",\"rotowire_id\":\"8567\",\"height\":\"71\",\"jersey\":\"38\",\"twitter_username\":\"Gipson_duos24\",\"sportsdata_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"team\":\"CHI\",\"cbs_id\":\"1975901\"},{\"draft_year\":\"2012\",\"nfl_id\":\"johnsonbademosi/2535693\",\"rotoworld_id\":\"8089\",\"stats_id\":\"26366\",\"position\":\"CB\",\"stats_global_id\":\"461138\",\"espn_id\":\"15359\",\"weight\":\"219\",\"id\":\"11011\",\"draft_team\":\"FA\",\"birthdate\":\"648709200\",\"name\":\"Bademosi, Johnson\",\"college\":\"Stanford\",\"rotowire_id\":\"8562\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"team\":\"NOS\",\"cbs_id\":\"1977132\"},{\"draft_year\":\"2011\",\"nfl_id\":\"craigrobertson/2532431\",\"rotoworld_id\":\"7436\",\"stats_id\":\"25689\",\"position\":\"LB\",\"stats_global_id\":\"324874\",\"espn_id\":\"14860\",\"weight\":\"234\",\"id\":\"11012\",\"fleaflicker_id\":\"8360\",\"birthdate\":\"571554000\",\"draft_team\":\"FA\",\"name\":\"Robertson, Craig\",\"college\":\"North Texas\",\"rotowire_id\":\"8531\",\"height\":\"73\",\"jersey\":\"52\",\"twitter_username\":\"C__Robertson\",\"sportsdata_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"team\":\"NOS\",\"cbs_id\":\"1928408\"},{\"draft_year\":\"2012\",\"nfl_id\":\"rodneymcleod/2534832\",\"rotoworld_id\":\"8079\",\"stats_id\":\"26356\",\"position\":\"S\",\"stats_global_id\":\"462236\",\"espn_id\":\"15222\",\"weight\":\"195\",\"id\":\"11017\",\"fleaflicker_id\":\"9031\",\"birthdate\":\"646117200\",\"draft_team\":\"FA\",\"name\":\"McLeod, Rodney\",\"college\":\"Virginia\",\"rotowire_id\":\"8509\",\"height\":\"70\",\"jersey\":\"23\",\"twitter_username\":\"Rodney_McLeod4\",\"sportsdata_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"team\":\"PHI\",\"cbs_id\":\"1975886\"},{\"draft_year\":\"2012\",\"nfl_id\":\"damonharrison/2535718\",\"rotoworld_id\":\"7885\",\"stats_id\":\"26153\",\"position\":\"DT\",\"stats_global_id\":\"509566\",\"espn_id\":\"15380\",\"weight\":\"355\",\"id\":\"11045\",\"birthdate\":\"596782800\",\"draft_team\":\"FA\",\"name\":\"Harrison, Damon\",\"college\":\"William Penn\",\"rotowire_id\":\"8486\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"BigDame900\",\"sportsdata_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"team\":\"SEA\",\"cbs_id\":\"1977116\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"8336\",\"draft_team\":\"FA\",\"stats_id\":\"516783\",\"position\":\"Coach\",\"name\":\"Arians, Bruce\",\"stats_global_id\":\"0\",\"twitter_username\":\"BruceArians\",\"sportsdata_id\":\"e1ee3f9e-3e4f-47f6-9dc9-fa24fd4bed95\",\"id\":\"11062\",\"team\":\"TBB\"},{\"draft_year\":\"2012\",\"nfl_id\":\"beaubrinkley/2535701\",\"rotoworld_id\":\"7750\",\"stats_id\":\"26016\",\"position\":\"TE\",\"stats_global_id\":\"463435\",\"espn_id\":\"15355\",\"weight\":\"260\",\"id\":\"11065\",\"draft_team\":\"FA\",\"birthdate\":\"633243600\",\"name\":\"Brinkley, Beau\",\"college\":\"Missouri\",\"rotowire_id\":\"8532\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"team\":\"FA\",\"cbs_id\":\"1977088\"},{\"draft_year\":\"2012\",\"nfl_id\":\"jermainekearse/2532887\",\"rotoworld_id\":\"7727\",\"stats_id\":\"25991\",\"position\":\"WR\",\"stats_global_id\":\"459347\",\"espn_id\":\"15428\",\"weight\":\"210\",\"id\":\"11076\",\"birthdate\":\"634280400\",\"draft_team\":\"FA\",\"name\":\"Kearse, Jermaine\",\"college\":\"Washington\",\"rotowire_id\":\"8100\",\"height\":\"73\",\"jersey\":\"18\",\"twitter_username\":\"chopchop_15\",\"sportsdata_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"team\":\"FA\",\"cbs_id\":\"1631987\"},{\"draft_year\":\"2012\",\"nfl_id\":\"neikothorpe/2534846\",\"rotoworld_id\":\"7855\",\"stats_id\":\"26122\",\"position\":\"CB\",\"stats_global_id\":\"465700\",\"espn_id\":\"15535\",\"weight\":\"210\",\"id\":\"11087\",\"draft_team\":\"FA\",\"birthdate\":\"634712400\",\"name\":\"Thorpe, Neiko\",\"college\":\"Auburn\",\"rotowire_id\":\"8584\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"team\":\"SEA\",\"cbs_id\":\"1979386\"},{\"draft_year\":\"2011\",\"nfl_id\":\"patrickdimarco/2530763\",\"rotoworld_id\":\"6880\",\"stats_id\":\"25158\",\"position\":\"RB\",\"stats_global_id\":\"406457\",\"espn_id\":\"14332\",\"weight\":\"234\",\"id\":\"11100\",\"draft_team\":\"FA\",\"birthdate\":\"609915600\",\"name\":\"DiMarco, Patrick\",\"college\":\"South Carolina\",\"rotowire_id\":\"7970\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"team\":\"FA\",\"cbs_id\":\"1891800\"},{\"draft_year\":\"2010\",\"nfl_id\":\"jamesdevelin/2508101\",\"rotoworld_id\":\"6449\",\"stats_id\":\"24760\",\"position\":\"RB\",\"stats_global_id\":\"340282\",\"espn_id\":\"13940\",\"weight\":\"255\",\"id\":\"11101\",\"draft_team\":\"FA\",\"birthdate\":\"585637200\",\"name\":\"Develin, James\",\"college\":\"Brown\",\"rotowire_id\":\"8588\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"team\":\"FA\",\"cbs_id\":\"1786771\"},{\"draft_year\":\"2012\",\"nfl_id\":\"joshbellamy/2535964\",\"rotoworld_id\":\"7841\",\"stats_id\":\"26108\",\"position\":\"WR\",\"stats_global_id\":\"553696\",\"espn_id\":\"15555\",\"weight\":\"208\",\"id\":\"11104\",\"fleaflicker_id\":\"8844\",\"birthdate\":\"611470800\",\"draft_team\":\"FA\",\"name\":\"Bellamy, Josh\",\"college\":\"Louisville\",\"rotowire_id\":\"8369\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"team\":\"FA\",\"cbs_id\":\"1979372\"},{\"draft_year\":\"0\",\"nfl_id\":\"kylenelson/2530722\",\"rotoworld_id\":\"7010\",\"stats_id\":\"25291\",\"position\":\"TE\",\"stats_global_id\":\"324970\",\"espn_id\":\"14426\",\"weight\":\"240\",\"id\":\"11128\",\"draft_team\":\"FA\",\"birthdate\":\"528699600\",\"name\":\"Nelson, Kyle\",\"college\":\"New Mexico State\",\"rotowire_id\":\"9186\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"09a1fe57-c026-4ca4-b084-48b8ed9c106f\",\"team\":\"FA\",\"cbs_id\":\"1133543\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"39199\",\"position\":\"Coach\",\"name\":\"Marrone, Doug\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d0b52b85-11aa-4ae5-a108-0b7d5e885713\",\"id\":\"11143\",\"team\":\"JAC\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"genosmith/2539335\",\"rotoworld_id\":\"8326\",\"stats_id\":\"26662\",\"position\":\"QB\",\"stats_global_id\":\"513856\",\"espn_id\":\"15864\",\"weight\":\"221\",\"id\":\"11150\",\"birthdate\":\"655534800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Geno\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"8743\",\"jersey\":\"7\",\"twitter_username\":\"GenoSmith_12\",\"sportsdata_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"team\":\"SEA\",\"cbs_id\":\"1700358\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"mattbarkley/2539308\",\"rotoworld_id\":\"7421\",\"stats_id\":\"26721\",\"position\":\"QB\",\"stats_global_id\":\"494493\",\"espn_id\":\"15948\",\"weight\":\"234\",\"id\":\"11151\",\"birthdate\":\"652770000\",\"draft_team\":\"PHI\",\"name\":\"Barkley, Matt\",\"draft_pick\":\"1\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8004\",\"jersey\":\"5\",\"twitter_username\":\"MattBarkley\",\"sportsdata_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"team\":\"BUF\",\"cbs_id\":\"1664140\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"mikeglennon/2539275\",\"rotoworld_id\":\"8374\",\"stats_id\":\"26696\",\"position\":\"QB\",\"stats_global_id\":\"464346\",\"espn_id\":\"15837\",\"weight\":\"225\",\"id\":\"11152\",\"birthdate\":\"629442000\",\"draft_team\":\"TBB\",\"name\":\"Glennon, Mike\",\"draft_pick\":\"11\",\"college\":\"North Carolina State\",\"height\":\"79\",\"rotowire_id\":\"8745\",\"jersey\":\"2\",\"sportsdata_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"team\":\"JAC\",\"cbs_id\":\"1630353\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tylerbray/2540173\",\"rotoworld_id\":\"8394\",\"stats_id\":\"27170\",\"position\":\"QB\",\"stats_global_id\":\"542809\",\"espn_id\":\"16252\",\"weight\":\"215\",\"id\":\"11170\",\"birthdate\":\"693810000\",\"draft_team\":\"FA\",\"name\":\"Bray, Tyler\",\"college\":\"Tennessee\",\"rotowire_id\":\"8621\",\"height\":\"78\",\"jersey\":\"9\",\"twitter_username\":\"tbrayvol8\",\"sportsdata_id\":\"b13ba4c3-5761-40fb-aa6a-935f09c39a6b\",\"team\":\"CHI\",\"cbs_id\":\"1737685\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"andreellington/2539217\",\"rotoworld_id\":\"8388\",\"stats_id\":\"26810\",\"position\":\"RB\",\"stats_global_id\":\"463495\",\"espn_id\":\"15893\",\"weight\":\"200\",\"id\":\"11175\",\"birthdate\":\"602485200\",\"draft_team\":\"ARI\",\"name\":\"Ellington, Andre\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"height\":\"69\",\"rotowire_id\":\"8757\",\"jersey\":\"32\",\"twitter_username\":\"AEllington38\",\"sportsdata_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"team\":\"FA\",\"cbs_id\":\"1630220\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"kenjonbarner/2539289\",\"rotoworld_id\":\"8456\",\"stats_id\":\"26805\",\"position\":\"RB\",\"stats_global_id\":\"459193\",\"espn_id\":\"15921\",\"weight\":\"195\",\"id\":\"11177\",\"birthdate\":\"609742800\",\"draft_team\":\"CAR\",\"name\":\"Barner, Kenjon\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"69\",\"rotowire_id\":\"8762\",\"jersey\":\"38\",\"twitter_username\":\"KBDeuce4\",\"sportsdata_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"team\":\"TBB\",\"cbs_id\":\"1631827\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"rexburkhead/2539265\",\"rotoworld_id\":\"8466\",\"stats_id\":\"26813\",\"position\":\"RB\",\"stats_global_id\":\"498760\",\"espn_id\":\"15971\",\"weight\":\"215\",\"id\":\"11182\",\"birthdate\":\"646894800\",\"draft_team\":\"CIN\",\"name\":\"Burkhead, Rex\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"height\":\"70\",\"rotowire_id\":\"8765\",\"jersey\":\"34\",\"twitter_username\":\"RBrex2022\",\"sportsdata_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"team\":\"NEP\",\"cbs_id\":\"1679738\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"christhompson/2540011\",\"rotoworld_id\":\"8563\",\"stats_id\":\"26777\",\"position\":\"RB\",\"stats_global_id\":\"509372\",\"espn_id\":\"15966\",\"weight\":\"195\",\"id\":\"11186\",\"birthdate\":\"656398800\",\"draft_team\":\"WAS\",\"name\":\"Thompson, Chris\",\"draft_pick\":\"21\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"8773\",\"jersey\":\"34\",\"twitter_username\":\"ChrisThompson_4\",\"sportsdata_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"team\":\"JAC\",\"cbs_id\":\"1273546\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"theoriddick/2540020\",\"rotoworld_id\":\"8485\",\"stats_id\":\"26822\",\"position\":\"RB\",\"stats_global_id\":\"508985\",\"espn_id\":\"15994\",\"weight\":\"201\",\"id\":\"11188\",\"birthdate\":\"673333200\",\"draft_team\":\"DET\",\"name\":\"Riddick, Theo\",\"draft_pick\":\"31\",\"college\":\"Notre Dame\",\"height\":\"69\",\"rotowire_id\":\"8763\",\"jersey\":\"27\",\"sportsdata_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"team\":\"LVR\",\"cbs_id\":\"1691614\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"le'veonbell/2540175\",\"rotoworld_id\":\"8390\",\"stats_id\":\"26671\",\"position\":\"RB\",\"stats_global_id\":\"543654\",\"espn_id\":\"15825\",\"weight\":\"225\",\"id\":\"11192\",\"birthdate\":\"698389200\",\"draft_team\":\"PIT\",\"name\":\"Bell, Le'Veon\",\"draft_pick\":\"16\",\"college\":\"Michigan State\",\"height\":\"73\",\"rotowire_id\":\"8617\",\"jersey\":\"26\",\"sportsdata_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"team\":\"KCC\",\"cbs_id\":\"1751828\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"giovanibernard/2540156\",\"rotoworld_id\":\"8389\",\"stats_id\":\"26660\",\"position\":\"RB\",\"stats_global_id\":\"546076\",\"espn_id\":\"15826\",\"weight\":\"205\",\"id\":\"11193\",\"birthdate\":\"690786000\",\"draft_team\":\"CIN\",\"name\":\"Bernard, Giovani\",\"draft_pick\":\"5\",\"college\":\"North Carolina\",\"height\":\"69\",\"rotowire_id\":\"8622\",\"jersey\":\"25\",\"twitter_username\":\"G_Bernard25\",\"sportsdata_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"team\":\"CIN\",\"cbs_id\":\"1737248\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"spencerware/2540204\",\"rotoworld_id\":\"8594\",\"stats_id\":\"26817\",\"position\":\"RB\",\"stats_global_id\":\"540526\",\"espn_id\":\"16020\",\"weight\":\"229\",\"id\":\"11199\",\"birthdate\":\"690872400\",\"draft_team\":\"SEA\",\"name\":\"Ware, Spencer\",\"draft_pick\":\"26\",\"college\":\"LSU\",\"height\":\"70\",\"rotowire_id\":\"8625\",\"jersey\":\"40\",\"twitter_username\":\"spenceware11\",\"sportsdata_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"team\":\"FA\",\"cbs_id\":\"1737109\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"terrancewilliams/2539205\",\"rotoworld_id\":\"8401\",\"stats_id\":\"26697\",\"position\":\"WR\",\"stats_global_id\":\"460107\",\"espn_id\":\"15878\",\"weight\":\"210\",\"id\":\"11211\",\"birthdate\":\"622098000\",\"draft_team\":\"DAL\",\"name\":\"Williams, Terrance\",\"draft_pick\":\"12\",\"college\":\"Baylor\",\"height\":\"74\",\"rotowire_id\":\"8794\",\"jersey\":\"83\",\"twitter_username\":\"TerranceWill2\",\"sportsdata_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"team\":\"FA\",\"cbs_id\":\"1632384\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"justinhunter/2540151\",\"rotoworld_id\":\"8415\",\"stats_id\":\"26657\",\"position\":\"WR\",\"stats_global_id\":\"542833\",\"espn_id\":\"15845\",\"weight\":\"203\",\"id\":\"11212\",\"birthdate\":\"674715600\",\"draft_team\":\"TEN\",\"name\":\"Hunter, Justin\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"height\":\"76\",\"rotowire_id\":\"8618\",\"jersey\":\"11\",\"twitter_username\":\"justinhunter_11\",\"sportsdata_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"team\":\"FA\",\"cbs_id\":\"1737463\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tavonaustin/2539336\",\"rotoworld_id\":\"8402\",\"stats_id\":\"26631\",\"position\":\"WR\",\"stats_global_id\":\"513826\",\"espn_id\":\"15786\",\"weight\":\"185\",\"id\":\"11213\",\"birthdate\":\"669013200\",\"draft_team\":\"STL\",\"name\":\"Austin, Tavon\",\"draft_pick\":\"8\",\"college\":\"West Virginia\",\"height\":\"68\",\"rotowire_id\":\"8793\",\"jersey\":\"5\",\"twitter_username\":\"Tayaustin01\",\"sportsdata_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"team\":\"FA\",\"cbs_id\":\"1700338\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"keenanallen/2540154\",\"rotoworld_id\":\"8379\",\"stats_id\":\"26699\",\"position\":\"WR\",\"stats_global_id\":\"557210\",\"espn_id\":\"15818\",\"weight\":\"211\",\"id\":\"11222\",\"birthdate\":\"704350800\",\"draft_team\":\"SDC\",\"name\":\"Allen, Keenan\",\"draft_pick\":\"14\",\"college\":\"California\",\"height\":\"74\",\"rotowire_id\":\"8627\",\"jersey\":\"13\",\"twitter_username\":\"Keenan13Allen\",\"sportsdata_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"team\":\"LAC\",\"cbs_id\":\"1737096\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"cordarrellepatterson/2540145\",\"rotoworld_id\":\"8327\",\"stats_id\":\"26652\",\"position\":\"WR\",\"stats_global_id\":\"690153\",\"espn_id\":\"15807\",\"weight\":\"228\",\"id\":\"11225\",\"birthdate\":\"669186000\",\"draft_team\":\"MIN\",\"name\":\"Patterson, Cordarrelle\",\"draft_pick\":\"29\",\"college\":\"Tennessee\",\"height\":\"74\",\"rotowire_id\":\"8792\",\"jersey\":\"84\",\"twitter_username\":\"ceeflashpee84\",\"sportsdata_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"team\":\"CHI\",\"cbs_id\":\"1996183\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"kennystills/2540202\",\"rotoworld_id\":\"8482\",\"stats_id\":\"26767\",\"position\":\"WR\",\"stats_global_id\":\"542896\",\"espn_id\":\"16016\",\"weight\":\"202\",\"id\":\"11227\",\"birthdate\":\"703918800\",\"draft_team\":\"NOS\",\"name\":\"Stills, Kenny\",\"draft_pick\":\"11\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"8800\",\"jersey\":\"12\",\"twitter_username\":\"KSTiLLS\",\"sportsdata_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"team\":\"HOU\",\"cbs_id\":\"1737295\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertwoods/2540169\",\"rotoworld_id\":\"8407\",\"stats_id\":\"26664\",\"position\":\"WR\",\"stats_global_id\":\"555693\",\"espn_id\":\"15880\",\"weight\":\"195\",\"id\":\"11228\",\"birthdate\":\"702882000\",\"draft_team\":\"BUF\",\"name\":\"Woods, Robert\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"8628\",\"jersey\":\"17\",\"twitter_username\":\"robertwoods\",\"sportsdata_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"team\":\"LAR\",\"cbs_id\":\"1754280\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"deandrehopkins/2540165\",\"rotoworld_id\":\"8404\",\"stats_id\":\"26650\",\"position\":\"WR\",\"stats_global_id\":\"560241\",\"espn_id\":\"15795\",\"weight\":\"212\",\"id\":\"11232\",\"birthdate\":\"707806800\",\"draft_team\":\"HOU\",\"name\":\"Hopkins, DeAndre\",\"draft_pick\":\"27\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"8619\",\"jersey\":\"10\",\"twitter_username\":\"Nukdabomb\",\"sportsdata_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"team\":\"ARI\",\"cbs_id\":\"1737078\"},{\"draft_year\":\"2013\",\"nfl_id\":\"russellshepard/2541944\",\"rotoworld_id\":\"7459\",\"stats_id\":\"27055\",\"position\":\"WR\",\"stats_global_id\":\"494291\",\"espn_id\":\"16227\",\"weight\":\"194\",\"id\":\"11237\",\"draft_team\":\"FA\",\"birthdate\":\"658818000\",\"name\":\"Shepard, Russell\",\"college\":\"LSU\",\"rotowire_id\":\"9019\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"team\":\"FA\",\"cbs_id\":\"2060184\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"marquisegoodwin/2539964\",\"rotoworld_id\":\"8461\",\"stats_id\":\"26701\",\"position\":\"WR\",\"stats_global_id\":\"507478\",\"espn_id\":\"15839\",\"weight\":\"185\",\"id\":\"11239\",\"birthdate\":\"658990800\",\"draft_team\":\"BUF\",\"name\":\"Goodwin, Marquise\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"height\":\"69\",\"rotowire_id\":\"8807\",\"jersey\":\"13\",\"sportsdata_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"team\":\"PHI\",\"cbs_id\":\"1691489\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"traviskelce/2540258\",\"rotoworld_id\":\"8411\",\"stats_id\":\"26686\",\"position\":\"TE\",\"stats_global_id\":\"448240\",\"espn_id\":\"15847\",\"weight\":\"260\",\"id\":\"11244\",\"birthdate\":\"623566800\",\"draft_team\":\"KCC\",\"name\":\"Kelce, Travis\",\"draft_pick\":\"1\",\"college\":\"Cincinnati\",\"height\":\"77\",\"rotowire_id\":\"8783\",\"jersey\":\"87\",\"sportsdata_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"team\":\"KCC\",\"cbs_id\":\"1725130\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"zachertz/2540158\",\"rotoworld_id\":\"8409\",\"stats_id\":\"26658\",\"position\":\"TE\",\"stats_global_id\":\"503177\",\"espn_id\":\"15835\",\"weight\":\"250\",\"id\":\"11247\",\"birthdate\":\"658213200\",\"draft_team\":\"PHI\",\"name\":\"Ertz, Zach\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"height\":\"77\",\"rotowire_id\":\"8781\",\"jersey\":\"86\",\"twitter_username\":\"ZERTZ_86\",\"sportsdata_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"team\":\"PHI\",\"cbs_id\":\"1685963\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"jordanreed/2540160\",\"rotoworld_id\":\"8412\",\"stats_id\":\"26708\",\"position\":\"TE\",\"stats_global_id\":\"508876\",\"espn_id\":\"15860\",\"weight\":\"242\",\"id\":\"11248\",\"birthdate\":\"646981200\",\"draft_team\":\"WAS\",\"name\":\"Reed, Jordan\",\"draft_pick\":\"23\",\"college\":\"Florida\",\"height\":\"74\",\"rotowire_id\":\"8615\",\"jersey\":\"81\",\"twitter_username\":\"Real_JordanReed\",\"sportsdata_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"team\":\"SFO\",\"cbs_id\":\"1691412\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"tylereifert/2540148\",\"rotoworld_id\":\"8408\",\"stats_id\":\"26644\",\"position\":\"TE\",\"stats_global_id\":\"508968\",\"espn_id\":\"15788\",\"weight\":\"255\",\"id\":\"11250\",\"birthdate\":\"652770000\",\"draft_team\":\"CIN\",\"name\":\"Eifert, Tyler\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"8782\",\"jersey\":\"88\",\"twitter_username\":\"EiferTy85\",\"sportsdata_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"team\":\"JAC\",\"cbs_id\":\"1691608\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"levinetoilolo/2540203\",\"rotoworld_id\":\"8414\",\"stats_id\":\"26756\",\"position\":\"TE\",\"stats_global_id\":\"503205\",\"espn_id\":\"15980\",\"weight\":\"268\",\"id\":\"11252\",\"birthdate\":\"680850000\",\"draft_team\":\"ATL\",\"name\":\"Toilolo, Levine\",\"draft_pick\":\"36\",\"college\":\"Stanford\",\"height\":\"80\",\"rotowire_id\":\"8789\",\"jersey\":\"85\",\"twitter_username\":\"LevineToilolo\",\"sportsdata_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"team\":\"NYG\",\"cbs_id\":\"1685990\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"vancemcdonald/2540215\",\"rotoworld_id\":\"8413\",\"stats_id\":\"26678\",\"position\":\"TE\",\"stats_global_id\":\"494969\",\"espn_id\":\"15853\",\"weight\":\"267\",\"id\":\"11257\",\"birthdate\":\"645253200\",\"draft_team\":\"SFO\",\"name\":\"McDonald, Vance\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"76\",\"rotowire_id\":\"8785\",\"jersey\":\"89\",\"twitter_username\":\"VMcDonald89\",\"sportsdata_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"team\":\"PIT\",\"cbs_id\":\"1673357\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"damontremoore/2540138\",\"rotoworld_id\":\"8424\",\"stats_id\":\"26704\",\"position\":\"DE\",\"stats_global_id\":\"558567\",\"espn_id\":\"15858\",\"weight\":\"260\",\"id\":\"11261\",\"birthdate\":\"716187600\",\"draft_team\":\"NYG\",\"name\":\"Moore, Damontre\",\"draft_pick\":\"19\",\"college\":\"Texas A&M\",\"height\":\"76\",\"rotowire_id\":\"8654\",\"jersey\":\"99\",\"twitter_username\":\"tmoore94\",\"sportsdata_id\":\"03af0e0d-a443-4b09-9ab5-4f2695248346\",\"team\":\"SEA\",\"cbs_id\":\"1737651\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"alexokafor/2539319\",\"rotoworld_id\":\"8428\",\"stats_id\":\"26726\",\"position\":\"DE\",\"stats_global_id\":\"492778\",\"espn_id\":\"15976\",\"weight\":\"261\",\"id\":\"11262\",\"birthdate\":\"665989200\",\"draft_team\":\"ARI\",\"name\":\"Okafor, Alex\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"8656\",\"jersey\":\"57\",\"twitter_username\":\"aokafor57\",\"sportsdata_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"team\":\"KCC\",\"cbs_id\":\"1664175\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"dionjordan/2539288\",\"rotoworld_id\":\"8384\",\"stats_id\":\"26626\",\"position\":\"DE\",\"stats_global_id\":\"459199\",\"espn_id\":\"15800\",\"weight\":\"284\",\"id\":\"11263\",\"birthdate\":\"636613200\",\"draft_team\":\"MIA\",\"name\":\"Jordan, Dion\",\"draft_pick\":\"3\",\"college\":\"Oregon\",\"height\":\"78\",\"rotowire_id\":\"8658\",\"jersey\":\"95\",\"twitter_username\":\"dionj95\",\"sportsdata_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"team\":\"SFO\",\"cbs_id\":\"1631835\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"williamgholston/2540176\",\"rotoworld_id\":\"8545\",\"stats_id\":\"26749\",\"position\":\"DE\",\"stats_global_id\":\"557359\",\"espn_id\":\"16019\",\"weight\":\"281\",\"id\":\"11265\",\"birthdate\":\"680936400\",\"draft_team\":\"TBB\",\"name\":\"Gholston, William\",\"draft_pick\":\"29\",\"college\":\"Michigan State\",\"height\":\"78\",\"rotowire_id\":\"8664\",\"jersey\":\"92\",\"twitter_username\":\"WILL_GHOLSTON2\",\"sportsdata_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"team\":\"TBB\",\"cbs_id\":\"1737134\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ezekielansah/2539931\",\"rotoworld_id\":\"8385\",\"stats_id\":\"26628\",\"position\":\"DE\",\"stats_global_id\":\"558874\",\"espn_id\":\"15785\",\"weight\":\"275\",\"id\":\"11267\",\"birthdate\":\"612421200\",\"draft_team\":\"DET\",\"name\":\"Ansah, Ezekiel\",\"draft_pick\":\"5\",\"college\":\"BYU\",\"height\":\"77\",\"rotowire_id\":\"8657\",\"jersey\":\"98\",\"twitter_username\":\"ZiggyAnsah\",\"sportsdata_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"team\":\"SFO\",\"cbs_id\":\"1765317\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"cornelliuscarradine/2539224\",\"rotoworld_id\":\"8429\",\"stats_id\":\"26663\",\"position\":\"DE\",\"stats_global_id\":\"592911\",\"espn_id\":\"15829\",\"weight\":\"267\",\"id\":\"11270\",\"birthdate\":\"603781200\",\"draft_team\":\"SFO\",\"name\":\"Carradine, Cornellius\",\"draft_pick\":\"8\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"8661\",\"jersey\":\"95\",\"sportsdata_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"team\":\"FA\",\"cbs_id\":\"1824132\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"datonejones/2539325\",\"rotoworld_id\":\"8426\",\"stats_id\":\"26649\",\"position\":\"DE\",\"stats_global_id\":\"461736\",\"espn_id\":\"15798\",\"weight\":\"285\",\"id\":\"11272\",\"birthdate\":\"648795600\",\"draft_team\":\"GBP\",\"name\":\"Jones, Datone\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"8660\",\"jersey\":\"96\",\"twitter_username\":\"IAM_Dat_One\",\"sportsdata_id\":\"3258dbca-9194-4fd7-bc2b-8440c73d0d9c\",\"team\":\"LVR\",\"cbs_id\":\"1631952\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"johnsimon/2539280\",\"rotoworld_id\":\"8547\",\"stats_id\":\"26752\",\"position\":\"DE\",\"stats_global_id\":\"509112\",\"espn_id\":\"16010\",\"weight\":\"260\",\"id\":\"11273\",\"birthdate\":\"655880400\",\"draft_team\":\"BAL\",\"name\":\"Simon, John\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"height\":\"74\",\"rotowire_id\":\"8711\",\"jersey\":\"55\",\"twitter_username\":\"johnesimon54\",\"sportsdata_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"team\":\"NEP\",\"cbs_id\":\"1664625\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"margushunt/2539310\",\"rotoworld_id\":\"8427\",\"stats_id\":\"26676\",\"position\":\"DT\",\"stats_global_id\":\"496205\",\"espn_id\":\"15844\",\"weight\":\"295\",\"id\":\"11274\",\"birthdate\":\"553237200\",\"draft_team\":\"CIN\",\"name\":\"Hunt, Margus\",\"draft_pick\":\"21\",\"college\":\"UCLA\",\"height\":\"80\",\"rotowire_id\":\"8659\",\"jersey\":\"92\",\"twitter_username\":\"Margus_Hunt\",\"sportsdata_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"team\":\"CIN\",\"cbs_id\":\"1724952\"},{\"draft_year\":\"2013\",\"nfl_id\":\"abryjones/2539230\",\"rotoworld_id\":\"8896\",\"stats_id\":\"27104\",\"position\":\"DT\",\"stats_global_id\":\"512122\",\"espn_id\":\"16376\",\"weight\":\"318\",\"id\":\"11278\",\"birthdate\":\"684306000\",\"draft_team\":\"FA\",\"name\":\"Jones, Abry\",\"college\":\"Georgia\",\"rotowire_id\":\"9107\",\"height\":\"76\",\"jersey\":\"95\",\"twitter_username\":\"JUSTAB3\",\"sportsdata_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"team\":\"JAC\",\"cbs_id\":\"1664267\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"starlotulelei/2539329\",\"rotoworld_id\":\"8431\",\"stats_id\":\"26637\",\"position\":\"DT\",\"stats_global_id\":\"543761\",\"espn_id\":\"15802\",\"weight\":\"315\",\"id\":\"11280\",\"birthdate\":\"630133200\",\"draft_team\":\"CAR\",\"name\":\"Lotulelei, Star\",\"draft_pick\":\"14\",\"college\":\"Utah\",\"height\":\"74\",\"rotowire_id\":\"8668\",\"jersey\":\"98\",\"twitter_username\":\"BigMollie_Star\",\"sportsdata_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"team\":\"BUF\",\"cbs_id\":\"1752635\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johnathanhankins/2540147\",\"rotoworld_id\":\"8433\",\"stats_id\":\"26672\",\"position\":\"DT\",\"stats_global_id\":\"553681\",\"espn_id\":\"15841\",\"weight\":\"340\",\"id\":\"11281\",\"birthdate\":\"694242000\",\"draft_team\":\"NYG\",\"name\":\"Hankins, Johnathan\",\"draft_pick\":\"17\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"8669\",\"jersey\":\"90\",\"sportsdata_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"team\":\"LVR\",\"cbs_id\":\"1759559\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"akeemspence/2540201\",\"rotoworld_id\":\"8527\",\"stats_id\":\"26723\",\"position\":\"DT\",\"stats_global_id\":\"508581\",\"espn_id\":\"15958\",\"weight\":\"303\",\"id\":\"11282\",\"birthdate\":\"691390800\",\"draft_team\":\"TBB\",\"name\":\"Spence, Akeem\",\"draft_pick\":\"3\",\"college\":\"Illinois\",\"height\":\"73\",\"rotowire_id\":\"8676\",\"jersey\":\"93\",\"twitter_username\":\"AkeemSpence\",\"sportsdata_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"team\":\"FA\",\"cbs_id\":\"1691215\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sheldonrichardson/2540142\",\"rotoworld_id\":\"8314\",\"stats_id\":\"26636\",\"position\":\"DT\",\"stats_global_id\":\"605269\",\"espn_id\":\"15811\",\"weight\":\"294\",\"id\":\"11283\",\"birthdate\":\"659941200\",\"draft_team\":\"NYJ\",\"name\":\"Richardson, Sheldon\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"8670\",\"jersey\":\"98\",\"twitter_username\":\"Godforshort\",\"sportsdata_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"team\":\"CLE\",\"cbs_id\":\"1860858\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"sylvesterwilliams/2539270\",\"rotoworld_id\":\"8432\",\"stats_id\":\"26651\",\"position\":\"DT\",\"stats_global_id\":\"592507\",\"espn_id\":\"15816\",\"weight\":\"328\",\"id\":\"11285\",\"birthdate\":\"596091600\",\"draft_team\":\"DEN\",\"name\":\"Williams, Sylvester\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"74\",\"rotowire_id\":\"8675\",\"jersey\":\"96\",\"twitter_username\":\"Sylwil92\",\"sportsdata_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"team\":\"DEN\",\"cbs_id\":\"1824167\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"johnjenkins/2539231\",\"rotoworld_id\":\"8437\",\"stats_id\":\"26705\",\"position\":\"DT\",\"stats_global_id\":\"607087\",\"espn_id\":\"15846\",\"weight\":\"335\",\"id\":\"11286\",\"birthdate\":\"616136400\",\"draft_team\":\"NOS\",\"name\":\"Jenkins, John\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"height\":\"76\",\"rotowire_id\":\"8672\",\"jersey\":\"90\",\"twitter_username\":\"jenkinsjohn6\",\"sportsdata_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"team\":\"CHI\",\"cbs_id\":\"1877278\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"mantite'o/2539277\",\"rotoworld_id\":\"8442\",\"stats_id\":\"26661\",\"position\":\"LB\",\"stats_global_id\":\"509559\",\"espn_id\":\"15867\",\"weight\":\"241\",\"id\":\"11292\",\"birthdate\":\"664866000\",\"draft_team\":\"SDC\",\"name\":\"Te'o, Manti\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"height\":\"73\",\"rotowire_id\":\"8693\",\"jersey\":\"51\",\"sportsdata_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"team\":\"FA\",\"cbs_id\":\"1697293\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"alecogletree/2540143\",\"rotoworld_id\":\"8383\",\"stats_id\":\"26653\",\"position\":\"LB\",\"stats_global_id\":\"552990\",\"espn_id\":\"15806\",\"weight\":\"250\",\"id\":\"11293\",\"birthdate\":\"685774800\",\"draft_team\":\"STL\",\"name\":\"Ogletree, Alec\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"height\":\"73\",\"rotowire_id\":\"8695\",\"jersey\":\"47\",\"twitter_username\":\"B_easy_uga9\",\"sportsdata_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"team\":\"FA\",\"cbs_id\":\"1737114\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"barkeviousmingo/2540140\",\"rotoworld_id\":\"8381\",\"stats_id\":\"26629\",\"position\":\"LB\",\"stats_global_id\":\"498975\",\"espn_id\":\"15805\",\"weight\":\"235\",\"id\":\"11295\",\"birthdate\":\"655016400\",\"draft_team\":\"CLE\",\"name\":\"Mingo, Barkevious\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"height\":\"77\",\"rotowire_id\":\"8708\",\"jersey\":\"50\",\"twitter_username\":\"keke_mingo\",\"sportsdata_id\":\"92503804-7aff-4f22-adca-421800786179\",\"team\":\"CHI\",\"cbs_id\":\"1679974\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jonbostic/2539978\",\"rotoworld_id\":\"8501\",\"stats_id\":\"26673\",\"position\":\"LB\",\"stats_global_id\":\"495460\",\"espn_id\":\"15827\",\"weight\":\"245\",\"id\":\"11299\",\"birthdate\":\"673419600\",\"draft_team\":\"CHI\",\"name\":\"Bostic, Jon\",\"draft_pick\":\"18\",\"college\":\"Florida\",\"height\":\"73\",\"rotowire_id\":\"8696\",\"jersey\":\"53\",\"twitter_username\":\"JonBostic\",\"sportsdata_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"team\":\"WAS\",\"cbs_id\":\"1664202\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kikoalonso/2539935\",\"rotoworld_id\":\"8445\",\"stats_id\":\"26669\",\"position\":\"LB\",\"stats_global_id\":\"459190\",\"espn_id\":\"15819\",\"weight\":\"239\",\"id\":\"11308\",\"birthdate\":\"650610000\",\"draft_team\":\"BUF\",\"name\":\"Alonso, Kiko\",\"draft_pick\":\"14\",\"college\":\"Oregon\",\"height\":\"75\",\"rotowire_id\":\"8698\",\"jersey\":\"54\",\"twitter_username\":\"Kiko__Alonso\",\"sportsdata_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"team\":\"FA\",\"cbs_id\":\"1631825\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kevinminter/2540159\",\"rotoworld_id\":\"8443\",\"stats_id\":\"26668\",\"position\":\"LB\",\"stats_global_id\":\"494295\",\"espn_id\":\"15856\",\"weight\":\"246\",\"id\":\"11310\",\"birthdate\":\"660200400\",\"draft_team\":\"ARI\",\"name\":\"Minter, Kevin\",\"draft_pick\":\"13\",\"college\":\"LSU\",\"height\":\"72\",\"rotowire_id\":\"8694\",\"jersey\":\"51\",\"twitter_username\":\"Kmint_46\",\"sportsdata_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"team\":\"TBB\",\"cbs_id\":\"1664390\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"desmondtrufant/2539334\",\"rotoworld_id\":\"8447\",\"stats_id\":\"26645\",\"position\":\"CB\",\"stats_global_id\":\"513547\",\"espn_id\":\"15812\",\"weight\":\"190\",\"id\":\"11312\",\"birthdate\":\"652942800\",\"draft_team\":\"ATL\",\"name\":\"Trufant, Desmond\",\"draft_pick\":\"22\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"8641\",\"jersey\":\"23\",\"twitter_username\":\"DesmondTrufant\",\"sportsdata_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"team\":\"DET\",\"cbs_id\":\"1664486\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"tyrannmathieu/2540180\",\"rotoworld_id\":\"8387\",\"stats_id\":\"26692\",\"position\":\"S\",\"stats_global_id\":\"540520\",\"espn_id\":\"15851\",\"weight\":\"190\",\"id\":\"11313\",\"birthdate\":\"705733200\",\"draft_team\":\"ARI\",\"name\":\"Mathieu, Tyrann\",\"draft_pick\":\"7\",\"college\":\"LSU\",\"height\":\"69\",\"rotowire_id\":\"8593\",\"jersey\":\"32\",\"twitter_username\":\"Mathieu_Era\",\"sportsdata_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"team\":\"KCC\",\"cbs_id\":\"1737333\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"xavierrhodes/2540155\",\"rotoworld_id\":\"8386\",\"stats_id\":\"26648\",\"position\":\"CB\",\"stats_global_id\":\"509368\",\"espn_id\":\"15810\",\"weight\":\"218\",\"id\":\"11314\",\"birthdate\":\"645771600\",\"draft_team\":\"MIN\",\"name\":\"Rhodes, Xavier\",\"draft_pick\":\"25\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8637\",\"jersey\":\"27\",\"twitter_username\":\"XavierRhodes29_\",\"sportsdata_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"team\":\"IND\",\"cbs_id\":\"1665147\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"loganryan/2540162\",\"rotoworld_id\":\"8516\",\"stats_id\":\"26706\",\"position\":\"CB\",\"stats_global_id\":\"511881\",\"espn_id\":\"15861\",\"weight\":\"195\",\"id\":\"11316\",\"birthdate\":\"666075600\",\"draft_team\":\"NEP\",\"name\":\"Ryan, Logan\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"71\",\"rotowire_id\":\"8640\",\"jersey\":\"23\",\"twitter_username\":\"RealLoganRyan\",\"sportsdata_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"team\":\"NYG\",\"cbs_id\":\"1664604\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"jordanpoyer/2539290\",\"rotoworld_id\":\"8448\",\"stats_id\":\"26841\",\"position\":\"S\",\"stats_global_id\":\"498183\",\"espn_id\":\"15979\",\"weight\":\"191\",\"id\":\"11317\",\"birthdate\":\"672555600\",\"draft_team\":\"PHI\",\"name\":\"Poyer, Jordan\",\"draft_pick\":\"12\",\"college\":\"Oregon State\",\"height\":\"72\",\"rotowire_id\":\"8639\",\"jersey\":\"21\",\"twitter_username\":\"J_Poy33\",\"sportsdata_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"team\":\"BUF\",\"cbs_id\":\"1665374\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamartaylor/2539932\",\"rotoworld_id\":\"8493\",\"stats_id\":\"26677\",\"position\":\"CB\",\"stats_global_id\":\"449732\",\"espn_id\":\"15866\",\"weight\":\"192\",\"id\":\"11318\",\"birthdate\":\"654584400\",\"draft_team\":\"MIA\",\"name\":\"Taylor, Jamar\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"height\":\"71\",\"rotowire_id\":\"8644\",\"jersey\":\"47\",\"twitter_username\":\"JTAY22_619\",\"sportsdata_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"team\":\"SFO\",\"cbs_id\":\"1681960\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"ericreid/2540152\",\"rotoworld_id\":\"8453\",\"stats_id\":\"26641\",\"position\":\"S\",\"stats_global_id\":\"540523\",\"espn_id\":\"15809\",\"weight\":\"215\",\"id\":\"11323\",\"birthdate\":\"692341200\",\"draft_team\":\"SFO\",\"name\":\"Reid, Eric\",\"draft_pick\":\"18\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"8685\",\"jersey\":\"25\",\"twitter_username\":\"E_Reid35\",\"sportsdata_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"team\":\"FA\",\"cbs_id\":\"1737133\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"kennyvaccaro/2539320\",\"rotoworld_id\":\"8451\",\"stats_id\":\"26638\",\"position\":\"S\",\"stats_global_id\":\"492781\",\"espn_id\":\"15813\",\"weight\":\"214\",\"id\":\"11324\",\"birthdate\":\"666594000\",\"draft_team\":\"NOS\",\"name\":\"Vaccaro, Kenny\",\"draft_pick\":\"15\",\"college\":\"Texas\",\"height\":\"72\",\"rotowire_id\":\"8684\",\"jersey\":\"24\",\"twitter_username\":\"KennyVaccaro4\",\"sportsdata_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"team\":\"TEN\",\"cbs_id\":\"1664330\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"t.j.mcdonald/2539309\",\"rotoworld_id\":\"8458\",\"stats_id\":\"26694\",\"position\":\"S\",\"stats_global_id\":\"510155\",\"espn_id\":\"15852\",\"weight\":\"215\",\"id\":\"11326\",\"birthdate\":\"664866000\",\"draft_team\":\"STL\",\"name\":\"McDonald, T.J.\",\"draft_pick\":\"9\",\"college\":\"USC\",\"height\":\"74\",\"rotowire_id\":\"8689\",\"jersey\":\"22\",\"twitter_username\":\"tmcdonaldjr\",\"sportsdata_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"team\":\"FA\",\"cbs_id\":\"1664157\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tonyjefferson/2540164\",\"rotoworld_id\":\"8653\",\"stats_id\":\"27081\",\"position\":\"S\",\"stats_global_id\":\"542885\",\"espn_id\":\"16195\",\"weight\":\"211\",\"id\":\"11327\",\"birthdate\":\"696488400\",\"draft_team\":\"FA\",\"name\":\"Jefferson, Tony\",\"college\":\"Oklahoma\",\"rotowire_id\":\"8688\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"tonyjefferson1\",\"sportsdata_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"team\":\"FA\",\"cbs_id\":\"1737117\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"shawnwilliams/2539233\",\"rotoworld_id\":\"8517\",\"stats_id\":\"26707\",\"position\":\"S\",\"stats_global_id\":\"512112\",\"espn_id\":\"15877\",\"weight\":\"212\",\"id\":\"11330\",\"birthdate\":\"674110800\",\"draft_team\":\"CIN\",\"name\":\"Williams, Shawn\",\"draft_pick\":\"22\",\"college\":\"Georgia\",\"height\":\"72\",\"rotowire_id\":\"8777\",\"jersey\":\"36\",\"twitter_username\":\"36SLY36\",\"sportsdata_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"team\":\"CIN\",\"cbs_id\":\"1700724\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"kawannshort/2539296\",\"rotoworld_id\":\"8434\",\"stats_id\":\"26667\",\"position\":\"DT\",\"stats_global_id\":\"464470\",\"espn_id\":\"15862\",\"weight\":\"315\",\"id\":\"11333\",\"birthdate\":\"602398800\",\"draft_team\":\"CAR\",\"name\":\"Short, Kawann\",\"draft_pick\":\"12\",\"college\":\"Purdue\",\"height\":\"75\",\"rotowire_id\":\"8674\",\"jersey\":\"99\",\"twitter_username\":\"kk_mr93\",\"sportsdata_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"team\":\"CAR\",\"cbs_id\":\"1631164\"},{\"draft_year\":\"2012\",\"nfl_id\":\"darrenfells/2540928\",\"rotoworld_id\":\"8472\",\"stats_id\":\"26612\",\"position\":\"TE\",\"stats_global_id\":\"266414\",\"espn_id\":\"15773\",\"weight\":\"270\",\"id\":\"11337\",\"draft_team\":\"FA\",\"birthdate\":\"514530000\",\"name\":\"Fells, Darren\",\"college\":\"UC Irvine\",\"rotowire_id\":\"9758\",\"height\":\"79\",\"jersey\":\"87\",\"sportsdata_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"team\":\"HOU\",\"cbs_id\":\"2053740\"},{\"draft_year\":\"2012\",\"nfl_id\":\"giorgiotavecchio/2535686\",\"rotoworld_id\":\"7992\",\"stats_id\":\"26264\",\"position\":\"PK\",\"stats_global_id\":\"474483\",\"espn_id\":\"15245\",\"weight\":\"180\",\"id\":\"11339\",\"draft_team\":\"FA\",\"birthdate\":\"648104400\",\"name\":\"Tavecchio, Giorgio\",\"college\":\"California\",\"rotowire_id\":\"8835\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"team\":\"FA\",\"cbs_id\":\"1975894\"},{\"draft_year\":\"2013\",\"draft_round\":\"1\",\"nfl_id\":\"d.j.hayden/2539237\",\"rotoworld_id\":\"8491\",\"stats_id\":\"26635\",\"position\":\"CB\",\"stats_global_id\":\"591520\",\"espn_id\":\"15794\",\"weight\":\"190\",\"id\":\"11346\",\"birthdate\":\"646462800\",\"draft_team\":\"OAK\",\"name\":\"Hayden, D.J.\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"height\":\"71\",\"rotowire_id\":\"8879\",\"jersey\":\"25\",\"twitter_username\":\"_Go_DJ_\",\"sportsdata_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"team\":\"JAC\",\"cbs_id\":\"1824883\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"johncyprien/2539223\",\"rotoworld_id\":\"8450\",\"stats_id\":\"26656\",\"position\":\"S\",\"stats_global_id\":\"514198\",\"espn_id\":\"15831\",\"weight\":\"211\",\"id\":\"11347\",\"birthdate\":\"649227600\",\"draft_team\":\"JAC\",\"name\":\"Cyprien, Johnathan\",\"draft_pick\":\"1\",\"college\":\"Florida International\",\"height\":\"71\",\"rotowire_id\":\"8778\",\"jersey\":\"41\",\"twitter_username\":\"J_Cyprien\",\"sportsdata_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"team\":\"SFO\",\"cbs_id\":\"1727755\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"dariusslay/2540288\",\"rotoworld_id\":\"8497\",\"stats_id\":\"26659\",\"position\":\"CB\",\"stats_global_id\":\"604797\",\"espn_id\":\"15863\",\"weight\":\"190\",\"id\":\"11348\",\"birthdate\":\"662706000\",\"draft_team\":\"DET\",\"name\":\"Slay, Darius\",\"draft_pick\":\"4\",\"college\":\"Mississippi State\",\"height\":\"72\",\"rotowire_id\":\"8647\",\"jersey\":\"24\",\"twitter_username\":\"_bigplayslay9\",\"sportsdata_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"team\":\"PHI\",\"cbs_id\":\"1852913\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"jamiecollins/2539311\",\"rotoworld_id\":\"8499\",\"stats_id\":\"26675\",\"position\":\"LB\",\"stats_global_id\":\"512963\",\"espn_id\":\"15830\",\"weight\":\"255\",\"id\":\"11349\",\"birthdate\":\"641624400\",\"draft_team\":\"NEP\",\"name\":\"Collins, Jamie\",\"draft_pick\":\"20\",\"college\":\"Southern Miss\",\"height\":\"75\",\"rotowire_id\":\"8715\",\"jersey\":\"58\",\"twitter_username\":\"KinG_8_JamiE\",\"sportsdata_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"team\":\"DET\",\"cbs_id\":\"1723146\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"d.j.swearinger/2539943\",\"rotoworld_id\":\"8455\",\"stats_id\":\"26680\",\"position\":\"S\",\"stats_global_id\":\"504330\",\"espn_id\":\"15865\",\"weight\":\"205\",\"id\":\"11350\",\"birthdate\":\"683701200\",\"draft_team\":\"HOU\",\"name\":\"Swearinger, D.J.\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"height\":\"70\",\"rotowire_id\":\"8690\",\"jersey\":\"36\",\"twitter_username\":\"JungleBoi_Swagg\",\"sportsdata_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"team\":\"NOS\",\"cbs_id\":\"1664373\"},{\"draft_year\":\"2013\",\"draft_round\":\"2\",\"nfl_id\":\"robertalford/2539653\",\"rotoworld_id\":\"8462\",\"stats_id\":\"26683\",\"position\":\"CB\",\"stats_global_id\":\"468119\",\"espn_id\":\"15817\",\"weight\":\"186\",\"id\":\"11351\",\"birthdate\":\"594363600\",\"draft_team\":\"ATL\",\"name\":\"Alford, Robert\",\"draft_pick\":\"28\",\"college\":\"Southeastern Louisiana\",\"height\":\"70\",\"rotowire_id\":\"8645\",\"jersey\":\"23\",\"twitter_username\":\"rockorocky\",\"sportsdata_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"team\":\"ARI\",\"cbs_id\":\"1688633\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"blidiwreh-wilson/2539219\",\"rotoworld_id\":\"8436\",\"stats_id\":\"26693\",\"position\":\"CB\",\"stats_global_id\":\"465095\",\"espn_id\":\"15881\",\"weight\":\"190\",\"id\":\"11355\",\"birthdate\":\"628837200\",\"draft_team\":\"TEN\",\"name\":\"Wreh-Wilson, Blidi\",\"draft_pick\":\"8\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"8646\",\"jersey\":\"33\",\"twitter_username\":\"wrehblidi\",\"sportsdata_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"team\":\"ATL\",\"cbs_id\":\"1725141\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"kayvonwebster/2540291\",\"rotoworld_id\":\"8522\",\"stats_id\":\"26713\",\"position\":\"CB\",\"stats_global_id\":\"504268\",\"espn_id\":\"15872\",\"weight\":\"190\",\"id\":\"11358\",\"birthdate\":\"665384400\",\"draft_team\":\"DEN\",\"name\":\"Webster, Kayvon\",\"draft_pick\":\"28\",\"college\":\"South Florida\",\"height\":\"71\",\"rotowire_id\":\"8905\",\"jersey\":\"39\",\"twitter_username\":\"kayvonwebster\",\"sportsdata_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"team\":\"FA\",\"cbs_id\":\"1688630\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"duronharmon/2541243\",\"rotoworld_id\":\"8523\",\"stats_id\":\"26714\",\"position\":\"S\",\"stats_global_id\":\"511863\",\"espn_id\":\"15842\",\"weight\":\"205\",\"id\":\"11359\",\"birthdate\":\"664693200\",\"draft_team\":\"NEP\",\"name\":\"Harmon, Duron\",\"draft_pick\":\"29\",\"college\":\"Rutgers\",\"height\":\"73\",\"rotowire_id\":\"8906\",\"jersey\":\"26\",\"twitter_username\":\"dharm32\",\"sportsdata_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"team\":\"DET\",\"cbs_id\":\"2057478\"},{\"draft_year\":\"2013\",\"draft_round\":\"3\",\"nfl_id\":\"brandonwilliams/2541302\",\"rotoworld_id\":\"8438\",\"stats_id\":\"26717\",\"position\":\"DT\",\"stats_global_id\":\"694815\",\"espn_id\":\"15875\",\"weight\":\"336\",\"id\":\"11360\",\"birthdate\":\"604040400\",\"draft_team\":\"BAL\",\"name\":\"Williams, Brandon\",\"draft_pick\":\"32\",\"college\":\"Missouri Southern St\",\"height\":\"73\",\"rotowire_id\":\"8678\",\"jersey\":\"98\",\"twitter_username\":\"BrandonW_66\",\"sportsdata_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"team\":\"BAL\",\"cbs_id\":\"1788852\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"b.w.webb/2539338\",\"rotoworld_id\":\"8537\",\"stats_id\":\"26737\",\"position\":\"CB\",\"stats_global_id\":\"507534\",\"espn_id\":\"15939\",\"weight\":\"190\",\"id\":\"11363\",\"birthdate\":\"641710800\",\"draft_team\":\"DAL\",\"name\":\"Webb, B.W.\",\"draft_pick\":\"17\",\"college\":\"William & Mary\",\"height\":\"71\",\"rotowire_id\":\"8830\",\"jersey\":\"24\",\"twitter_username\":\"OhGi_3Dawg3\",\"sportsdata_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"team\":\"FA\",\"cbs_id\":\"1707322\"},{\"draft_year\":\"2013\",\"draft_round\":\"4\",\"nfl_id\":\"kylejuszczyk/2540230\",\"rotoworld_id\":\"8548\",\"stats_id\":\"26753\",\"position\":\"RB\",\"stats_global_id\":\"501150\",\"espn_id\":\"16002\",\"weight\":\"235\",\"id\":\"11367\",\"birthdate\":\"672382800\",\"draft_team\":\"BAL\",\"name\":\"Juszczyk, Kyle\",\"draft_pick\":\"33\",\"college\":\"Harvard\",\"height\":\"73\",\"rotowire_id\":\"8930\",\"jersey\":\"44\",\"twitter_username\":\"JuiceCheck44\",\"sportsdata_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"team\":\"SFO\",\"cbs_id\":\"1683145\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"stevenmeans/2541310\",\"rotoworld_id\":\"8557\",\"stats_id\":\"26770\",\"position\":\"DE\",\"stats_global_id\":\"466334\",\"espn_id\":\"15936\",\"weight\":\"263\",\"id\":\"11374\",\"birthdate\":\"628837200\",\"draft_team\":\"TBB\",\"name\":\"Means, Steven\",\"draft_pick\":\"14\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"8974\",\"jersey\":\"55\",\"sportsdata_id\":\"c639a18a-ee1a-46ed-8707-580711fa33db\",\"team\":\"ATL\",\"cbs_id\":\"2057662\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"a.j.klein/2539982\",\"rotoworld_id\":\"8558\",\"stats_id\":\"26771\",\"position\":\"LB\",\"stats_global_id\":\"511218\",\"espn_id\":\"15964\",\"weight\":\"240\",\"id\":\"11375\",\"birthdate\":\"680850000\",\"draft_team\":\"CAR\",\"name\":\"Klein, A.J.\",\"draft_pick\":\"15\",\"college\":\"Iowa State\",\"height\":\"73\",\"rotowire_id\":\"8942\",\"jersey\":\"54\",\"twitter_username\":\"AJKlein47\",\"sportsdata_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"team\":\"BUF\",\"cbs_id\":\"1665140\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"lukewillson/2541199\",\"rotoworld_id\":\"8567\",\"stats_id\":\"26781\",\"position\":\"TE\",\"stats_global_id\":\"466869\",\"espn_id\":\"16121\",\"weight\":\"255\",\"id\":\"11381\",\"birthdate\":\"632379600\",\"draft_team\":\"HOU\",\"name\":\"Willson, Luke\",\"draft_pick\":\"25\",\"college\":\"Rice\",\"height\":\"77\",\"rotowire_id\":\"8907\",\"jersey\":\"82\",\"twitter_username\":\"LWillson_82\",\"sportsdata_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"team\":\"BAL\",\"cbs_id\":\"2057661\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"micahhyde/2539240\",\"rotoworld_id\":\"8568\",\"stats_id\":\"26782\",\"position\":\"S\",\"stats_global_id\":\"508611\",\"espn_id\":\"15960\",\"weight\":\"197\",\"id\":\"11382\",\"birthdate\":\"662619600\",\"draft_team\":\"GBP\",\"name\":\"Hyde, Micah\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"8892\",\"jersey\":\"23\",\"twitter_username\":\"micah_hyde\",\"sportsdata_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"team\":\"BUF\",\"cbs_id\":\"1691258\"},{\"draft_year\":\"2013\",\"draft_round\":\"5\",\"nfl_id\":\"sammartin/2541311\",\"rotoworld_id\":\"8572\",\"stats_id\":\"26788\",\"position\":\"PN\",\"stats_global_id\":\"464237\",\"espn_id\":\"15928\",\"weight\":\"211\",\"id\":\"11383\",\"birthdate\":\"636094800\",\"draft_team\":\"DET\",\"name\":\"Martin, Sam\",\"draft_pick\":\"32\",\"college\":\"Appalachian St\",\"height\":\"73\",\"rotowire_id\":\"9022\",\"jersey\":\"6\",\"twitter_username\":\"SamMartin_6\",\"sportsdata_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"team\":\"DEN\",\"cbs_id\":\"2057657\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"dustinhopkins/2539227\",\"rotoworld_id\":\"8581\",\"stats_id\":\"26800\",\"position\":\"PK\",\"stats_global_id\":\"509358\",\"espn_id\":\"15965\",\"weight\":\"205\",\"id\":\"11387\",\"birthdate\":\"654757200\",\"draft_team\":\"BUF\",\"name\":\"Hopkins, Dustin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"8896\",\"jersey\":\"3\",\"twitter_username\":\"Dahop5\",\"sportsdata_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"team\":\"WAS\",\"cbs_id\":\"1664151\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"lataviusmurray/2541161\",\"rotoworld_id\":\"8585\",\"stats_id\":\"26804\",\"position\":\"RB\",\"stats_global_id\":\"467405\",\"espn_id\":\"15920\",\"weight\":\"230\",\"id\":\"11390\",\"birthdate\":\"632638800\",\"draft_team\":\"OAK\",\"name\":\"Murray, Latavius\",\"draft_pick\":\"13\",\"college\":\"Central Florida\",\"height\":\"75\",\"rotowire_id\":\"8772\",\"jersey\":\"28\",\"twitter_username\":\"LataviusM\",\"sportsdata_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"team\":\"NOS\",\"cbs_id\":\"1637004\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"ryangriffin/2541316\",\"rotoworld_id\":\"8600\",\"stats_id\":\"26824\",\"position\":\"TE\",\"stats_global_id\":\"465129\",\"espn_id\":\"15887\",\"weight\":\"255\",\"id\":\"11399\",\"birthdate\":\"632034000\",\"draft_team\":\"HOU\",\"name\":\"Griffin, Ryan\",\"draft_pick\":\"33\",\"college\":\"Connecticut\",\"height\":\"78\",\"rotowire_id\":\"8911\",\"jersey\":\"84\",\"sportsdata_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"team\":\"NYJ\",\"cbs_id\":\"2057695\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"stacymcgee/2539285\",\"rotoworld_id\":\"8604\",\"stats_id\":\"26828\",\"position\":\"DT\",\"stats_global_id\":\"447960\",\"espn_id\":\"15906\",\"weight\":\"339\",\"id\":\"11402\",\"birthdate\":\"632552400\",\"draft_team\":\"OAK\",\"name\":\"McGee, Stacy\",\"draft_pick\":\"37\",\"college\":\"Oklahoma\",\"height\":\"75\",\"rotowire_id\":\"8964\",\"jersey\":\"92\",\"twitter_username\":\"BigBuckMcGee92\",\"sportsdata_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"team\":\"FA\",\"cbs_id\":\"1619923\"},{\"draft_year\":\"2013\",\"draft_round\":\"6\",\"nfl_id\":\"vincewilliams/2540221\",\"rotoworld_id\":\"8605\",\"stats_id\":\"26829\",\"position\":\"LB\",\"stats_global_id\":\"447178\",\"espn_id\":\"15934\",\"weight\":\"233\",\"id\":\"11403\",\"birthdate\":\"630738000\",\"draft_team\":\"PIT\",\"name\":\"Williams, Vince\",\"draft_pick\":\"38\",\"college\":\"Florida State\",\"height\":\"73\",\"rotowire_id\":\"8970\",\"jersey\":\"98\",\"sportsdata_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"team\":\"PIT\",\"cbs_id\":\"2057702\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"bricebutler/2541388\",\"rotoworld_id\":\"8608\",\"stats_id\":\"26832\",\"position\":\"WR\",\"stats_global_id\":\"459330\",\"espn_id\":\"15896\",\"weight\":\"211\",\"id\":\"11406\",\"birthdate\":\"633589200\",\"draft_team\":\"OAK\",\"name\":\"Butler, Brice\",\"draft_pick\":\"3\",\"college\":\"San Diego St\",\"height\":\"75\",\"rotowire_id\":\"8912\",\"jersey\":\"17\",\"twitter_username\":\"Brice_Butler\",\"sportsdata_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"team\":\"FA\",\"cbs_id\":\"2057699\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"nickwilliams/2541479\",\"rotoworld_id\":\"8619\",\"stats_id\":\"26846\",\"position\":\"DE\",\"stats_global_id\":\"459747\",\"espn_id\":\"15882\",\"weight\":\"310\",\"id\":\"11412\",\"birthdate\":\"635576400\",\"draft_team\":\"PIT\",\"name\":\"Williams, Nick\",\"draft_pick\":\"17\",\"college\":\"Samford\",\"height\":\"76\",\"rotowire_id\":\"8969\",\"jersey\":\"97\",\"sportsdata_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"team\":\"DET\",\"cbs_id\":\"2009342\"},{\"draft_year\":\"2013\",\"draft_round\":\"7\",\"nfl_id\":\"kemalishmael/2541431\",\"rotoworld_id\":\"8634\",\"stats_id\":\"26866\",\"position\":\"S\",\"stats_global_id\":\"514236\",\"espn_id\":\"16008\",\"weight\":\"206\",\"id\":\"11422\",\"birthdate\":\"673506000\",\"draft_team\":\"ATL\",\"name\":\"Ishmael, Kemal\",\"draft_pick\":\"37\",\"college\":\"Central Florida\",\"height\":\"72\",\"rotowire_id\":\"8940\",\"jersey\":\"36\",\"twitter_username\":\"B4_Kemal\",\"sportsdata_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"team\":\"FA\",\"cbs_id\":\"2057732\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryangriffin/2541185\",\"rotoworld_id\":\"8507\",\"stats_id\":\"26949\",\"position\":\"QB\",\"stats_global_id\":\"466883\",\"espn_id\":\"16140\",\"weight\":\"210\",\"id\":\"11441\",\"draft_team\":\"FA\",\"birthdate\":\"627282000\",\"name\":\"Griffin, Ryan\",\"college\":\"Tulane\",\"rotowire_id\":\"8923\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"team\":\"TBB\",\"cbs_id\":\"2058361\"},{\"draft_year\":\"2013\",\"nfl_id\":\"demetriusharris/2541187\",\"rotoworld_id\":\"8683\",\"stats_id\":\"27174\",\"position\":\"TE\",\"stats_global_id\":\"602269\",\"espn_id\":\"16318\",\"weight\":\"230\",\"id\":\"11448\",\"draft_team\":\"FA\",\"birthdate\":\"680763600\",\"name\":\"Harris, Demetrius\",\"college\":\"Wisconsin-Milwakee\",\"rotowire_id\":\"9847\",\"height\":\"79\",\"jersey\":\"86\",\"sportsdata_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"team\":\"CHI\",\"cbs_id\":\"2060074\"},{\"draft_year\":\"2013\",\"nfl_id\":\"c.j.anderson/2540269\",\"rotoworld_id\":\"8694\",\"stats_id\":\"26878\",\"position\":\"RB\",\"stats_global_id\":\"607659\",\"espn_id\":\"16040\",\"weight\":\"225\",\"id\":\"11454\",\"draft_team\":\"FA\",\"birthdate\":\"666162000\",\"name\":\"Anderson, C.J.\",\"college\":\"California\",\"rotowire_id\":\"8931\",\"height\":\"68\",\"jersey\":\"26\",\"sportsdata_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"team\":\"FA\",\"cbs_id\":\"1880820\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jaronbrown/2541966\",\"rotoworld_id\":\"8869\",\"stats_id\":\"27074\",\"position\":\"WR\",\"stats_global_id\":\"463514\",\"espn_id\":\"16172\",\"weight\":\"204\",\"id\":\"11456\",\"birthdate\":\"631774800\",\"draft_team\":\"FA\",\"name\":\"Brown, Jaron\",\"college\":\"Clemson\",\"rotowire_id\":\"9046\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"jaronbrown13\",\"sportsdata_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"team\":\"FA\",\"cbs_id\":\"2062132\"},{\"draft_year\":\"2013\",\"nfl_id\":\"paulworrilow/2541535\",\"rotoworld_id\":\"8840\",\"stats_id\":\"27040\",\"position\":\"LB\",\"stats_global_id\":\"507354\",\"espn_id\":\"16243\",\"weight\":\"230\",\"id\":\"11457\",\"draft_team\":\"FA\",\"birthdate\":\"641538000\",\"name\":\"Worrilow, Paul\",\"college\":\"Delaware\",\"rotowire_id\":\"9044\",\"height\":\"72\",\"twitter_username\":\"PaulWorrilow\",\"sportsdata_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"team\":\"FA\",\"cbs_id\":\"2058172\"},{\"draft_year\":\"2013\",\"nfl_id\":\"lerenteemccray/2539662\",\"rotoworld_id\":\"8666\",\"stats_id\":\"26887\",\"position\":\"DE\",\"stats_global_id\":\"463303\",\"espn_id\":\"16090\",\"weight\":\"249\",\"id\":\"11460\",\"draft_team\":\"FA\",\"birthdate\":\"651646800\",\"name\":\"McCray, Lerentee\",\"college\":\"Florida\",\"rotowire_id\":\"8723\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"team\":\"JAC\",\"cbs_id\":\"1632053\"},{\"draft_year\":\"2013\",\"nfl_id\":\"laroyreynolds/2541741\",\"rotoworld_id\":\"8785\",\"stats_id\":\"26975\",\"position\":\"LB\",\"stats_global_id\":\"509379\",\"espn_id\":\"16449\",\"weight\":\"228\",\"id\":\"11462\",\"draft_team\":\"FA\",\"birthdate\":\"657608400\",\"name\":\"Reynolds, LaRoy\",\"college\":\"Virginia\",\"rotowire_id\":\"9068\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"team\":\"ATL\",\"cbs_id\":\"2059199\"},{\"draft_year\":\"2013\",\"nfl_id\":\"zachline/2539303\",\"rotoworld_id\":\"8672\",\"stats_id\":\"27135\",\"position\":\"RB\",\"stats_global_id\":\"460872\",\"espn_id\":\"16366\",\"weight\":\"233\",\"id\":\"11474\",\"draft_team\":\"FA\",\"birthdate\":\"641106000\",\"name\":\"Line, Zach\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"8846\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"team\":\"FA\",\"cbs_id\":\"1632462\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ray-rayarmstrong/2541792\",\"rotoworld_id\":\"9064\",\"stats_id\":\"27287\",\"position\":\"LB\",\"stats_global_id\":\"508920\",\"espn_id\":\"16463\",\"weight\":\"220\",\"id\":\"11487\",\"draft_team\":\"FA\",\"birthdate\":\"610434000\",\"name\":\"Armstrong, Ray-Ray\",\"college\":\"Miami\",\"rotowire_id\":\"9072\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"team\":\"SEA\",\"cbs_id\":\"2059631\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bensonmayowa/2542009\",\"rotoworld_id\":\"9180\",\"stats_id\":\"27413\",\"position\":\"DE\",\"stats_global_id\":\"521095\",\"espn_id\":\"16528\",\"weight\":\"265\",\"id\":\"11491\",\"birthdate\":\"681195600\",\"draft_team\":\"FA\",\"name\":\"Mayowa, Benson\",\"college\":\"Idaho\",\"rotowire_id\":\"9126\",\"height\":\"75\",\"jersey\":\"95\",\"twitter_username\":\"Benny_b0y10\",\"sportsdata_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"team\":\"SEA\",\"cbs_id\":\"2062194\"},{\"draft_year\":\"2013\",\"nfl_id\":\"damionsquare/2540003\",\"rotoworld_id\":\"8688\",\"stats_id\":\"27056\",\"position\":\"DT\",\"stats_global_id\":\"465620\",\"espn_id\":\"16231\",\"weight\":\"293\",\"id\":\"11492\",\"birthdate\":\"602744400\",\"draft_team\":\"FA\",\"name\":\"Square, Damion\",\"college\":\"Alabama\",\"rotowire_id\":\"9118\",\"height\":\"74\",\"jersey\":\"71\",\"twitter_username\":\"Squareboy92\",\"sportsdata_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"team\":\"LAC\",\"cbs_id\":\"1632218\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jahleeladdae/2541958\",\"rotoworld_id\":\"8738\",\"stats_id\":\"26917\",\"position\":\"S\",\"stats_global_id\":\"466969\",\"espn_id\":\"16039\",\"weight\":\"195\",\"id\":\"11498\",\"birthdate\":\"633157200\",\"draft_team\":\"FA\",\"name\":\"Addae, Jahleel\",\"college\":\"Central Michigan\",\"rotowire_id\":\"9105\",\"height\":\"70\",\"jersey\":\"37\",\"twitter_username\":\"Do_OrAddae37\",\"sportsdata_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"team\":\"LAC\",\"cbs_id\":\"2062178\"},{\"draft_year\":\"2013\",\"nfl_id\":\"ryanallen/2539640\",\"rotoworld_id\":\"8999\",\"stats_id\":\"27219\",\"position\":\"PN\",\"stats_global_id\":\"459208\",\"espn_id\":\"16382\",\"weight\":\"220\",\"id\":\"11500\",\"birthdate\":\"636181200\",\"draft_team\":\"FA\",\"name\":\"Allen, Ryan\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"8903\",\"height\":\"74\",\"jersey\":\"6\",\"twitter_username\":\"R_Allen86\",\"sportsdata_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"team\":\"FA\",\"cbs_id\":\"1631851\"},{\"draft_year\":\"2013\",\"nfl_id\":\"nickellrobey/2540197\",\"rotoworld_id\":\"8810\",\"stats_id\":\"27007\",\"position\":\"CB\",\"stats_global_id\":\"555684\",\"espn_id\":\"16217\",\"weight\":\"180\",\"id\":\"11501\",\"birthdate\":\"695624400\",\"draft_team\":\"FA\",\"name\":\"Robey, Nickell\",\"college\":\"USC\",\"rotowire_id\":\"8651\",\"height\":\"68\",\"jersey\":\"31\",\"twitter_username\":\"NickellRobey_37\",\"sportsdata_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"team\":\"PHI\",\"cbs_id\":\"1737252\"},{\"draft_year\":\"2013\",\"nfl_id\":\"darenbates/2541539\",\"rotoworld_id\":\"8952\",\"stats_id\":\"27166\",\"position\":\"LB\",\"stats_global_id\":\"508560\",\"espn_id\":\"16299\",\"weight\":\"225\",\"id\":\"11511\",\"birthdate\":\"659682000\",\"draft_team\":\"FA\",\"name\":\"Bates, Daren\",\"college\":\"Auburn\",\"rotowire_id\":\"9073\",\"height\":\"71\",\"jersey\":\"53\",\"twitter_username\":\"DB_5trey\",\"sportsdata_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"team\":\"TEN\",\"cbs_id\":\"2058326\"},{\"draft_year\":\"2013\",\"nfl_id\":\"a.j.bouye/2541162\",\"rotoworld_id\":\"9104\",\"stats_id\":\"27337\",\"position\":\"CB\",\"stats_global_id\":\"514238\",\"espn_id\":\"16562\",\"weight\":\"191\",\"id\":\"11512\",\"draft_team\":\"FA\",\"birthdate\":\"682318800\",\"name\":\"Bouye, A.J.\",\"college\":\"Central Florida\",\"rotowire_id\":\"9070\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"team\":\"DEN\",\"cbs_id\":\"2060061\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bryndentrawick/2541756\",\"rotoworld_id\":\"9048\",\"stats_id\":\"27269\",\"position\":\"S\",\"stats_global_id\":\"464273\",\"espn_id\":\"16419\",\"weight\":\"225\",\"id\":\"11514\",\"draft_team\":\"FA\",\"birthdate\":\"625122000\",\"name\":\"Trawick, Brynden\",\"college\":\"Troy\",\"rotowire_id\":\"9093\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"team\":\"FA\",\"cbs_id\":\"2059179\"},{\"draft_year\":\"2013\",\"nfl_id\":\"weshorton/2539306\",\"rotoworld_id\":\"8886\",\"stats_id\":\"27093\",\"position\":\"DE\",\"stats_global_id\":\"459334\",\"espn_id\":\"16431\",\"weight\":\"265\",\"id\":\"11515\",\"draft_team\":\"FA\",\"birthdate\":\"632638800\",\"name\":\"Horton, Wes\",\"college\":\"Southern California\",\"rotowire_id\":\"9079\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"team\":\"FA\",\"cbs_id\":\"1631886\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jackdoyle/2540232\",\"rotoworld_id\":\"9075\",\"stats_id\":\"27299\",\"position\":\"TE\",\"stats_global_id\":\"477386\",\"espn_id\":\"16504\",\"weight\":\"262\",\"id\":\"11516\",\"draft_team\":\"FA\",\"birthdate\":\"641883600\",\"name\":\"Doyle, Jack\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"9081\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"team\":\"IND\",\"cbs_id\":\"2041264\"},{\"draft_year\":\"2013\",\"nfl_id\":\"bradleymcdougald/2539243\",\"rotoworld_id\":\"8963\",\"stats_id\":\"27180\",\"position\":\"S\",\"stats_global_id\":\"497251\",\"espn_id\":\"16269\",\"weight\":\"215\",\"id\":\"11517\",\"draft_team\":\"FA\",\"birthdate\":\"658645200\",\"name\":\"McDougald, Bradley\",\"college\":\"Kansas\",\"rotowire_id\":\"9111\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"team\":\"NYJ\",\"cbs_id\":\"1664227\"},{\"draft_year\":\"2013\",\"nfl_id\":\"joshhill/2541834\",\"rotoworld_id\":\"8764\",\"stats_id\":\"26950\",\"position\":\"TE\",\"stats_global_id\":\"469509\",\"espn_id\":\"16143\",\"weight\":\"250\",\"id\":\"11529\",\"draft_team\":\"FA\",\"birthdate\":\"643266000\",\"name\":\"Hill, Josh\",\"college\":\"Idaho State\",\"rotowire_id\":\"9071\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"team\":\"NOS\",\"cbs_id\":\"2060083\"},{\"draft_year\":\"2013\",\"nfl_id\":\"chrisbanjo/2541192\",\"rotoworld_id\":\"8503\",\"stats_id\":\"26621\",\"position\":\"S\",\"stats_global_id\":\"460828\",\"espn_id\":\"15782\",\"weight\":\"207\",\"id\":\"11532\",\"draft_team\":\"FA\",\"birthdate\":\"636008400\",\"name\":\"Banjo, Chris\",\"college\":\"Southern Methodist\",\"rotowire_id\":\"9101\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"team\":\"ARI\",\"cbs_id\":\"2056912\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rashaanmelvin/2541200\",\"rotoworld_id\":\"8841\",\"stats_id\":\"27041\",\"position\":\"CB\",\"stats_global_id\":\"468900\",\"espn_id\":\"16270\",\"weight\":\"194\",\"id\":\"11537\",\"draft_team\":\"FA\",\"birthdate\":\"623307600\",\"name\":\"Melvin, Rashaan\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"9135\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"team\":\"JAC\",\"cbs_id\":\"2059243\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jeffheath/2541832\",\"rotoworld_id\":\"9110\",\"stats_id\":\"27345\",\"position\":\"S\",\"stats_global_id\":\"694835\",\"espn_id\":\"16473\",\"weight\":\"212\",\"id\":\"11543\",\"birthdate\":\"674197200\",\"draft_team\":\"FA\",\"name\":\"Heath, Jeff\",\"college\":\"Saginaw Valley State\",\"rotowire_id\":\"9064\",\"height\":\"73\",\"jersey\":\"38\",\"twitter_username\":\"jheath_5\",\"sportsdata_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"team\":\"LVR\",\"cbs_id\":\"2060094\"},{\"draft_year\":\"2013\",\"nfl_id\":\"codydavis/2541135\",\"rotoworld_id\":\"8897\",\"stats_id\":\"27105\",\"position\":\"S\",\"stats_global_id\":\"461491\",\"espn_id\":\"16286\",\"weight\":\"203\",\"id\":\"11555\",\"birthdate\":\"613112400\",\"draft_team\":\"FA\",\"name\":\"Davis, Cody\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9173\",\"height\":\"74\",\"jersey\":\"22\",\"twitter_username\":\"CodyDavis\",\"sportsdata_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"team\":\"NEP\",\"cbs_id\":\"2058187\"},{\"draft_year\":\"2013\",\"nfl_id\":\"rontezmiles/2540287\",\"rotoworld_id\":\"8646\",\"stats_id\":\"26989\",\"position\":\"S\",\"stats_global_id\":\"401167\",\"espn_id\":\"16206\",\"weight\":\"203\",\"id\":\"11595\",\"draft_team\":\"FA\",\"birthdate\":\"596437200\",\"name\":\"Miles, Rontez\",\"college\":\"California (PA)\",\"rotowire_id\":\"9194\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"team\":\"FA\",\"cbs_id\":\"1737090\"},{\"draft_year\":\"2012\",\"nfl_id\":\"michaelthomas/2535687\",\"rotoworld_id\":\"7994\",\"stats_id\":\"26265\",\"position\":\"S\",\"stats_global_id\":\"461197\",\"espn_id\":\"15231\",\"weight\":\"195\",\"id\":\"11613\",\"draft_team\":\"FA\",\"birthdate\":\"606114000\",\"name\":\"Thomas, Michael\",\"college\":\"Stanford\",\"rotowire_id\":\"8825\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"team\":\"HOU\",\"cbs_id\":\"1975895\"},{\"draft_year\":\"2013\",\"nfl_id\":\"willcompton/2540013\",\"rotoworld_id\":\"8984\",\"stats_id\":\"27203\",\"position\":\"LB\",\"stats_global_id\":\"462367\",\"espn_id\":\"16324\",\"weight\":\"235\",\"id\":\"11632\",\"draft_team\":\"FA\",\"birthdate\":\"622184400\",\"name\":\"Compton, Will\",\"college\":\"Nebraska\",\"rotowire_id\":\"9924\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"team\":\"TEN\",\"cbs_id\":\"1630801\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"O'Brien, Bill\",\"stats_global_id\":\"0\",\"id\":\"11634\",\"sportsdata_id\":\"1a9e6bca-c087-4fff-998e-c7a94cdf9ae2\",\"team\":\"FA\"},{\"draft_year\":\"0\",\"nfl_id\":\"mikezimmer/2541769\",\"birthdate\":\"654066000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Zimmer, Mike\",\"college\":\"Illinois State\",\"stats_global_id\":\"501148\",\"height\":\"74\",\"rotowire_id\":\"8995\",\"jersey\":\"36\",\"weight\":\"239\",\"sportsdata_id\":\"5ac3a29c-52ba-4bd6-9ddc-15c564998a98\",\"id\":\"11637\",\"team\":\"MIN\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"teddybridgewater/2543465\",\"rotoworld_id\":\"9274\",\"stats_id\":\"27560\",\"position\":\"QB\",\"stats_global_id\":\"592195\",\"espn_id\":\"16728\",\"weight\":\"215\",\"id\":\"11640\",\"birthdate\":\"718693200\",\"draft_team\":\"MIN\",\"name\":\"Bridgewater, Teddy\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"height\":\"74\",\"rotowire_id\":\"9245\",\"jersey\":\"5\",\"twitter_username\":\"teddyb_h2o\",\"sportsdata_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"team\":\"CAR\",\"cbs_id\":\"1825122\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"blakebortles/2543477\",\"rotoworld_id\":\"9320\",\"stats_id\":\"27531\",\"position\":\"QB\",\"stats_global_id\":\"562537\",\"espn_id\":\"16724\",\"weight\":\"236\",\"id\":\"11642\",\"birthdate\":\"692859600\",\"draft_team\":\"JAC\",\"name\":\"Bortles, Blake\",\"draft_pick\":\"3\",\"college\":\"Central Florida\",\"height\":\"77\",\"rotowire_id\":\"9277\",\"jersey\":\"5\",\"twitter_username\":\"BBortles5\",\"sportsdata_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"team\":\"FA\",\"cbs_id\":\"1749727\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ajmccarron/2543497\",\"rotoworld_id\":\"9290\",\"stats_id\":\"27692\",\"position\":\"QB\",\"stats_global_id\":\"508649\",\"espn_id\":\"16810\",\"weight\":\"215\",\"id\":\"11643\",\"birthdate\":\"653202000\",\"draft_team\":\"CIN\",\"name\":\"McCarron, A.J.\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"height\":\"75\",\"rotowire_id\":\"9319\",\"jersey\":\"2\",\"twitter_username\":\"10AJMcCarron\",\"sportsdata_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"team\":\"HOU\",\"cbs_id\":\"1691424\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"derekcarr/2543499\",\"rotoworld_id\":\"9349\",\"stats_id\":\"27564\",\"position\":\"QB\",\"stats_global_id\":\"496083\",\"espn_id\":\"16757\",\"weight\":\"210\",\"id\":\"11644\",\"birthdate\":\"670136400\",\"draft_team\":\"OAK\",\"name\":\"Carr, Derek\",\"draft_pick\":\"4\",\"college\":\"Fresno State\",\"height\":\"75\",\"rotowire_id\":\"9317\",\"jersey\":\"4\",\"twitter_username\":\"derekcarrqb\",\"sportsdata_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"team\":\"LVR\",\"cbs_id\":\"1664819\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"loganthomas/2543767\",\"rotoworld_id\":\"9354\",\"stats_id\":\"27648\",\"position\":\"TE\",\"stats_global_id\":\"507528\",\"espn_id\":\"16813\",\"weight\":\"250\",\"id\":\"11647\",\"birthdate\":\"678344400\",\"draft_team\":\"ARI\",\"name\":\"Thomas, Logan\",\"draft_pick\":\"20\",\"college\":\"Virginia Tech\",\"height\":\"78\",\"rotowire_id\":\"9323\",\"jersey\":\"82\",\"twitter_username\":\"LoganThomasSr_6\",\"sportsdata_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"team\":\"WAS\",\"cbs_id\":\"1691193\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremyhill/2543603\",\"rotoworld_id\":\"9409\",\"stats_id\":\"27583\",\"position\":\"RB\",\"stats_global_id\":\"650978\",\"espn_id\":\"16803\",\"weight\":\"230\",\"id\":\"11654\",\"birthdate\":\"719557200\",\"draft_team\":\"CIN\",\"name\":\"Hill, Jeremy\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"height\":\"73\",\"rotowire_id\":\"9350\",\"jersey\":\"33\",\"twitter_username\":\"JeremyHill33\",\"sportsdata_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"team\":\"FA\",\"cbs_id\":\"1984260\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"carloshyde/2543743\",\"rotoworld_id\":\"9381\",\"stats_id\":\"27585\",\"position\":\"RB\",\"stats_global_id\":\"543825\",\"espn_id\":\"16777\",\"weight\":\"229\",\"id\":\"11657\",\"birthdate\":\"653806800\",\"draft_team\":\"SFO\",\"name\":\"Hyde, Carlos\",\"draft_pick\":\"25\",\"college\":\"Ohio State\",\"height\":\"72\",\"rotowire_id\":\"9516\",\"jersey\":\"30\",\"twitter_username\":\"elguapo\",\"sportsdata_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"team\":\"SEA\",\"cbs_id\":\"1751883\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"de'anthonythomas/2543638\",\"rotoworld_id\":\"9410\",\"stats_id\":\"27652\",\"position\":\"WR\",\"stats_global_id\":\"607847\",\"espn_id\":\"16945\",\"weight\":\"176\",\"id\":\"11659\",\"birthdate\":\"726210000\",\"draft_team\":\"KCC\",\"name\":\"Thomas, De'Anthony\",\"draft_pick\":\"24\",\"college\":\"Oregon\",\"height\":\"68\",\"rotowire_id\":\"9274\",\"jersey\":\"16\",\"twitter_username\":\"DATBLACKMOMBA13\",\"sportsdata_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"team\":\"BAL\",\"cbs_id\":\"1880868\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"devontafreeman/2543583\",\"rotoworld_id\":\"9423\",\"stats_id\":\"27631\",\"position\":\"RB\",\"stats_global_id\":\"592914\",\"espn_id\":\"16944\",\"weight\":\"206\",\"id\":\"11660\",\"birthdate\":\"700635600\",\"draft_team\":\"ATL\",\"name\":\"Freeman, Devonta\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9326\",\"jersey\":\"24\",\"twitter_username\":\"devontafreeman\",\"sportsdata_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"team\":\"NYG\",\"cbs_id\":\"1824135\"},{\"draft_year\":\"2014\",\"nfl_id\":\"isaiahcrowell/2550189\",\"rotoworld_id\":\"9401\",\"stats_id\":\"28014\",\"position\":\"RB\",\"stats_global_id\":\"606971\",\"espn_id\":\"17133\",\"weight\":\"225\",\"id\":\"11668\",\"draft_team\":\"FA\",\"birthdate\":\"726469200\",\"name\":\"Crowell, Isaiah\",\"college\":\"Alabama State\",\"rotowire_id\":\"9535\",\"height\":\"71\",\"sportsdata_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"team\":\"FA\",\"cbs_id\":\"2130148\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"sammywatkins/2543457\",\"rotoworld_id\":\"9388\",\"stats_id\":\"27532\",\"position\":\"WR\",\"stats_global_id\":\"602118\",\"espn_id\":\"16725\",\"weight\":\"211\",\"id\":\"11670\",\"birthdate\":\"740034000\",\"draft_team\":\"BUF\",\"name\":\"Watkins, Sammy\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"height\":\"73\",\"rotowire_id\":\"9249\",\"jersey\":\"14\",\"twitter_username\":\"sammywatkins\",\"sportsdata_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"team\":\"KCC\",\"cbs_id\":\"1850743\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"mikeevans/2543468\",\"rotoworld_id\":\"9296\",\"stats_id\":\"27535\",\"position\":\"WR\",\"stats_global_id\":\"593587\",\"espn_id\":\"16737\",\"weight\":\"231\",\"id\":\"11671\",\"birthdate\":\"745909200\",\"draft_team\":\"TBB\",\"name\":\"Evans, Mike\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"height\":\"77\",\"rotowire_id\":\"9253\",\"jersey\":\"13\",\"twitter_username\":\"MikeEvans13_\",\"sportsdata_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"team\":\"TBB\",\"cbs_id\":\"1824909\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"marqiselee/2543475\",\"rotoworld_id\":\"9402\",\"stats_id\":\"27567\",\"position\":\"WR\",\"stats_global_id\":\"599006\",\"espn_id\":\"16787\",\"weight\":\"196\",\"id\":\"11672\",\"birthdate\":\"691045200\",\"draft_team\":\"JAC\",\"name\":\"Lee, Marqise\",\"draft_pick\":\"7\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"9453\",\"jersey\":\"13\",\"twitter_username\":\"TeamLee1\",\"sportsdata_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"team\":\"NEP\",\"cbs_id\":\"1851123\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kelvinbenjamin/2543471\",\"rotoworld_id\":\"9321\",\"stats_id\":\"27556\",\"position\":\"WR\",\"stats_global_id\":\"605407\",\"espn_id\":\"16730\",\"weight\":\"245\",\"id\":\"11673\",\"birthdate\":\"665730000\",\"draft_team\":\"CAR\",\"name\":\"Benjamin, Kelvin\",\"draft_pick\":\"28\",\"college\":\"Florida State\",\"height\":\"77\",\"rotowire_id\":\"9294\",\"jersey\":\"81\",\"twitter_username\":\"kelvinbenjamin\",\"sportsdata_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"team\":\"FA\",\"cbs_id\":\"1860744\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"brandincooks/2543498\",\"rotoworld_id\":\"9404\",\"stats_id\":\"27548\",\"position\":\"WR\",\"stats_global_id\":\"607864\",\"espn_id\":\"16731\",\"weight\":\"183\",\"id\":\"11674\",\"birthdate\":\"748933200\",\"draft_team\":\"NOS\",\"name\":\"Cooks, Brandin\",\"draft_pick\":\"20\",\"college\":\"Oregon State\",\"height\":\"70\",\"rotowire_id\":\"9260\",\"jersey\":\"13\",\"twitter_username\":\"brandincooks\",\"sportsdata_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"team\":\"HOU\",\"cbs_id\":\"1880880\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"davanteadams/2543495\",\"rotoworld_id\":\"9273\",\"stats_id\":\"27581\",\"position\":\"WR\",\"stats_global_id\":\"611417\",\"espn_id\":\"16800\",\"weight\":\"215\",\"id\":\"11675\",\"birthdate\":\"725173200\",\"draft_team\":\"GBP\",\"name\":\"Adams, Davante\",\"draft_pick\":\"21\",\"college\":\"Fresno State\",\"height\":\"73\",\"rotowire_id\":\"9455\",\"jersey\":\"17\",\"twitter_username\":\"tae15adams\",\"sportsdata_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"team\":\"GBP\",\"cbs_id\":\"1893167\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jordanmatthews/2543500\",\"rotoworld_id\":\"9420\",\"stats_id\":\"27570\",\"position\":\"WR\",\"stats_global_id\":\"555648\",\"espn_id\":\"16763\",\"weight\":\"215\",\"id\":\"11676\",\"birthdate\":\"711262800\",\"draft_team\":\"PHI\",\"name\":\"Matthews, Jordan\",\"draft_pick\":\"10\",\"college\":\"Vanderbilt\",\"height\":\"75\",\"rotowire_id\":\"9273\",\"jersey\":\"81\",\"twitter_username\":\"jmattjmattjmatt\",\"sportsdata_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"team\":\"FA\",\"cbs_id\":\"1759816\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"dontemoncrief/2543614\",\"rotoworld_id\":\"9427\",\"stats_id\":\"27618\",\"position\":\"WR\",\"stats_global_id\":\"607351\",\"espn_id\":\"16791\",\"weight\":\"216\",\"id\":\"11677\",\"birthdate\":\"744613200\",\"draft_team\":\"IND\",\"name\":\"Moncrief, Donte\",\"draft_pick\":\"26\",\"college\":\"Mississippi\",\"height\":\"74\",\"rotowire_id\":\"9276\",\"jersey\":\"11\",\"twitter_username\":\"drm_12\",\"sportsdata_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"team\":\"NEP\",\"cbs_id\":\"1878014\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"allenrobinson/2543509\",\"rotoworld_id\":\"9297\",\"stats_id\":\"27589\",\"position\":\"WR\",\"stats_global_id\":\"609496\",\"espn_id\":\"16799\",\"weight\":\"211\",\"id\":\"11678\",\"birthdate\":\"746168400\",\"draft_team\":\"JAC\",\"name\":\"Robinson, Allen\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"height\":\"75\",\"rotowire_id\":\"9264\",\"jersey\":\"12\",\"twitter_username\":\"Thee_AR15\",\"sportsdata_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"team\":\"CHI\",\"cbs_id\":\"1889923\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"odellbeckham/2543496\",\"rotoworld_id\":\"9403\",\"stats_id\":\"27540\",\"position\":\"WR\",\"stats_global_id\":\"589984\",\"espn_id\":\"16733\",\"weight\":\"198\",\"id\":\"11679\",\"birthdate\":\"720939600\",\"draft_team\":\"NYG\",\"name\":\"Beckham, Odell\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9255\",\"jersey\":\"13\",\"twitter_username\":\"OBJ_3\",\"sportsdata_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"team\":\"CLE\",\"cbs_id\":\"1824823\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jarvislandry/2543488\",\"rotoworld_id\":\"9405\",\"stats_id\":\"27591\",\"position\":\"WR\",\"stats_global_id\":\"589991\",\"espn_id\":\"16790\",\"weight\":\"196\",\"id\":\"11680\",\"birthdate\":\"722926800\",\"draft_team\":\"MIA\",\"name\":\"Landry, Jarvis\",\"draft_pick\":\"31\",\"college\":\"LSU\",\"height\":\"71\",\"rotowire_id\":\"9454\",\"jersey\":\"80\",\"twitter_username\":\"God_Son80\",\"sportsdata_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"team\":\"CLE\",\"cbs_id\":\"1824833\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"paulrichardson/2543491\",\"rotoworld_id\":\"9545\",\"stats_id\":\"27573\",\"position\":\"WR\",\"stats_global_id\":\"560223\",\"espn_id\":\"16781\",\"weight\":\"183\",\"id\":\"11681\",\"birthdate\":\"703141200\",\"draft_team\":\"SEA\",\"name\":\"Richardson, Paul\",\"draft_pick\":\"13\",\"college\":\"Colorado\",\"height\":\"72\",\"rotowire_id\":\"9215\",\"jersey\":\"10\",\"sportsdata_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"team\":\"FA\",\"cbs_id\":\"1765923\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"t.j.jones/2543836\",\"rotoworld_id\":\"9419\",\"stats_id\":\"27717\",\"position\":\"WR\",\"stats_global_id\":\"544025\",\"espn_id\":\"16880\",\"weight\":\"190\",\"id\":\"11686\",\"birthdate\":\"711522000\",\"draft_team\":\"DET\",\"name\":\"Jones, T.J.\",\"draft_pick\":\"13\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9463\",\"jersey\":\"2\",\"twitter_username\":\"IamTJ_Jones\",\"sportsdata_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"team\":\"FA\",\"cbs_id\":\"1737352\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"martavisbryant/2543572\",\"rotoworld_id\":\"9416\",\"stats_id\":\"27646\",\"position\":\"WR\",\"stats_global_id\":\"602091\",\"espn_id\":\"16886\",\"weight\":\"210\",\"id\":\"11688\",\"birthdate\":\"693205200\",\"draft_team\":\"PIT\",\"name\":\"Bryant, Martavis\",\"draft_pick\":\"18\",\"college\":\"Clemson\",\"height\":\"76\",\"rotowire_id\":\"9456\",\"jersey\":\"12\",\"twitter_username\":\"ThaBestUNO\",\"sportsdata_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"team\":\"FA\",\"cbs_id\":\"1737158\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bruceellington/2543646\",\"rotoworld_id\":\"9608\",\"stats_id\":\"27634\",\"position\":\"WR\",\"stats_global_id\":\"604917\",\"espn_id\":\"16946\",\"weight\":\"200\",\"id\":\"11689\",\"birthdate\":\"682837200\",\"draft_team\":\"SFO\",\"name\":\"Ellington, Bruce\",\"draft_pick\":\"6\",\"college\":\"South Carolina\",\"height\":\"69\",\"rotowire_id\":\"9459\",\"sportsdata_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"team\":\"FA\",\"cbs_id\":\"1852857\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ericebron/2543466\",\"rotoworld_id\":\"9390\",\"stats_id\":\"27538\",\"position\":\"TE\",\"stats_global_id\":\"605752\",\"espn_id\":\"16732\",\"weight\":\"253\",\"id\":\"11695\",\"birthdate\":\"734418000\",\"draft_team\":\"DET\",\"name\":\"Ebron, Eric\",\"draft_pick\":\"10\",\"college\":\"North Carolina\",\"height\":\"76\",\"rotowire_id\":\"9210\",\"jersey\":\"85\",\"twitter_username\":\"Ebron85\",\"sportsdata_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"team\":\"PIT\",\"cbs_id\":\"1865396\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"austinseferian-jenkins/2543683\",\"rotoworld_id\":\"9400\",\"stats_id\":\"27566\",\"position\":\"TE\",\"stats_global_id\":\"593347\",\"espn_id\":\"16795\",\"weight\":\"262\",\"id\":\"11697\",\"birthdate\":\"717742800\",\"draft_team\":\"TBB\",\"name\":\"Seferian-Jenkins, Austin\",\"draft_pick\":\"6\",\"college\":\"Washington\",\"height\":\"77\",\"rotowire_id\":\"9241\",\"jersey\":\"81\",\"sportsdata_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"team\":\"FA\",\"cbs_id\":\"1824731\"},{\"draft_year\":\"2014\",\"nfl_id\":\"xaviergrimble/2550521\",\"rotoworld_id\":\"9614\",\"stats_id\":\"28184\",\"position\":\"TE\",\"stats_global_id\":\"555680\",\"espn_id\":\"17348\",\"weight\":\"261\",\"id\":\"11701\",\"draft_team\":\"FA\",\"birthdate\":\"715410000\",\"name\":\"Grimble, Xavier\",\"college\":\"USC\",\"rotowire_id\":\"9283\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"team\":\"FA\",\"cbs_id\":\"2130777\"},{\"draft_year\":\"2014\",\"nfl_id\":\"treyburton/2550284\",\"rotoworld_id\":\"9737\",\"stats_id\":\"27789\",\"position\":\"TE\",\"stats_global_id\":\"542788\",\"espn_id\":\"16974\",\"weight\":\"235\",\"id\":\"11705\",\"draft_team\":\"FA\",\"birthdate\":\"688712400\",\"name\":\"Burton, Trey\",\"college\":\"Florida\",\"rotowire_id\":\"9490\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"team\":\"IND\",\"cbs_id\":\"2130223\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jadeveonclowney/2543456\",\"rotoworld_id\":\"8375\",\"stats_id\":\"27529\",\"position\":\"DE\",\"stats_global_id\":\"604912\",\"espn_id\":\"16734\",\"weight\":\"255\",\"id\":\"11706\",\"birthdate\":\"729666000\",\"draft_team\":\"HOU\",\"name\":\"Clowney, Jadeveon\",\"draft_pick\":\"1\",\"college\":\"South Carolina\",\"height\":\"77\",\"rotowire_id\":\"9243\",\"jersey\":\"90\",\"twitter_username\":\"clownejd\",\"sportsdata_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"team\":\"TEN\",\"cbs_id\":\"1852852\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"stephontuitt/2543483\",\"rotoworld_id\":\"9393\",\"stats_id\":\"27574\",\"position\":\"DE\",\"stats_global_id\":\"610956\",\"espn_id\":\"16798\",\"weight\":\"303\",\"id\":\"11707\",\"birthdate\":\"738133200\",\"draft_team\":\"PIT\",\"name\":\"Tuitt, Stephon\",\"draft_pick\":\"14\",\"college\":\"Notre Dame\",\"height\":\"78\",\"rotowire_id\":\"9257\",\"jersey\":\"91\",\"twitter_username\":\"DOCnation_7\",\"sportsdata_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"team\":\"PIT\",\"cbs_id\":\"1893212\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"trentmurphy/2543503\",\"rotoworld_id\":\"9637\",\"stats_id\":\"27575\",\"position\":\"DE\",\"stats_global_id\":\"503191\",\"espn_id\":\"16751\",\"weight\":\"260\",\"id\":\"11709\",\"birthdate\":\"661669200\",\"draft_team\":\"WAS\",\"name\":\"Murphy, Trent\",\"draft_pick\":\"15\",\"college\":\"Stanford\",\"height\":\"78\",\"rotowire_id\":\"9265\",\"jersey\":\"93\",\"twitter_username\":\"TMurphy_93\",\"sportsdata_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"team\":\"BUF\",\"cbs_id\":\"1685976\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deeford/2543494\",\"rotoworld_id\":\"9353\",\"stats_id\":\"27551\",\"position\":\"DE\",\"stats_global_id\":\"508589\",\"espn_id\":\"16707\",\"weight\":\"252\",\"id\":\"11711\",\"birthdate\":\"669358800\",\"draft_team\":\"KCC\",\"name\":\"Ford, Dee\",\"draft_pick\":\"23\",\"college\":\"Auburn\",\"height\":\"74\",\"rotowire_id\":\"9342\",\"jersey\":\"55\",\"sportsdata_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"team\":\"SFO\",\"cbs_id\":\"1691451\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"aaronlynch/2543650\",\"rotoworld_id\":\"9669\",\"stats_id\":\"27678\",\"position\":\"LB\",\"stats_global_id\":\"592909\",\"espn_id\":\"16941\",\"weight\":\"270\",\"id\":\"11712\",\"birthdate\":\"731566800\",\"draft_team\":\"SFO\",\"name\":\"Lynch, Aaron\",\"draft_pick\":\"10\",\"college\":\"South Florida\",\"height\":\"78\",\"rotowire_id\":\"9345\",\"jersey\":\"99\",\"sportsdata_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"team\":\"JAC\",\"cbs_id\":\"1825187\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"timmyjernigan/2543461\",\"rotoworld_id\":\"9380\",\"stats_id\":\"27576\",\"position\":\"DT\",\"stats_global_id\":\"605418\",\"espn_id\":\"16785\",\"weight\":\"295\",\"id\":\"11717\",\"birthdate\":\"717310800\",\"draft_team\":\"BAL\",\"name\":\"Jernigan, Timmy\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"height\":\"74\",\"rotowire_id\":\"9290\",\"jersey\":\"98\",\"sportsdata_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"team\":\"FA\",\"cbs_id\":\"1860755\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"danmccullers/2550154\",\"rotoworld_id\":\"9634\",\"stats_id\":\"27743\",\"position\":\"DT\",\"stats_global_id\":\"690109\",\"espn_id\":\"16952\",\"weight\":\"352\",\"id\":\"11719\",\"birthdate\":\"713509200\",\"draft_team\":\"PIT\",\"name\":\"McCullers, Daniel\",\"draft_pick\":\"39\",\"college\":\"Tennessee\",\"height\":\"79\",\"rotowire_id\":\"9394\",\"jersey\":\"93\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"team\":\"CHI\",\"cbs_id\":\"1996180\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"anthonybarr/2543459\",\"rotoworld_id\":\"9432\",\"stats_id\":\"27537\",\"position\":\"LB\",\"stats_global_id\":\"553112\",\"espn_id\":\"16711\",\"weight\":\"255\",\"id\":\"11720\",\"birthdate\":\"700894800\",\"draft_team\":\"MIN\",\"name\":\"Barr, Anthony\",\"draft_pick\":\"9\",\"college\":\"UCLA\",\"height\":\"77\",\"rotowire_id\":\"9247\",\"jersey\":\"55\",\"twitter_username\":\"AnthonyBarr\",\"sportsdata_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"team\":\"MIN\",\"cbs_id\":\"1759765\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"khalilmack/2543463\",\"rotoworld_id\":\"9373\",\"stats_id\":\"27533\",\"position\":\"LB\",\"stats_global_id\":\"506500\",\"espn_id\":\"16710\",\"weight\":\"252\",\"id\":\"11721\",\"birthdate\":\"667198800\",\"draft_team\":\"OAK\",\"name\":\"Mack, Khalil\",\"draft_pick\":\"5\",\"college\":\"Buffalo\",\"height\":\"75\",\"rotowire_id\":\"9251\",\"jersey\":\"52\",\"twitter_username\":\"52Mack_\",\"sportsdata_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"team\":\"CHI\",\"cbs_id\":\"1692203\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"ryanshazier/2543486\",\"rotoworld_id\":\"9430\",\"stats_id\":\"27543\",\"position\":\"LB\",\"stats_global_id\":\"593521\",\"espn_id\":\"16727\",\"weight\":\"230\",\"id\":\"11722\",\"birthdate\":\"715755600\",\"draft_team\":\"PIT\",\"name\":\"Shazier, Ryan\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"9369\",\"jersey\":\"50\",\"twitter_username\":\"RyanShazier\",\"sportsdata_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"team\":\"FA\",\"cbs_id\":\"1824417\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"kylevannoy/2543699\",\"rotoworld_id\":\"9568\",\"stats_id\":\"27568\",\"position\":\"LB\",\"stats_global_id\":\"541446\",\"espn_id\":\"16772\",\"weight\":\"250\",\"id\":\"11723\",\"birthdate\":\"669963600\",\"draft_team\":\"DET\",\"name\":\"Van Noy, Kyle\",\"draft_pick\":\"8\",\"college\":\"BYU\",\"height\":\"75\",\"rotowire_id\":\"9262\",\"jersey\":\"53\",\"twitter_username\":\"KVN_03\",\"sportsdata_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"team\":\"MIA\",\"cbs_id\":\"1752529\"},{\"draft_year\":\"2014\",\"nfl_id\":\"christianjones/2550572\",\"rotoworld_id\":\"9433\",\"stats_id\":\"27839\",\"position\":\"LB\",\"stats_global_id\":\"553289\",\"espn_id\":\"17070\",\"weight\":\"250\",\"id\":\"11724\",\"draft_team\":\"FA\",\"birthdate\":\"666853200\",\"name\":\"Jones, Christian\",\"college\":\"Florida State\",\"rotowire_id\":\"9384\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"team\":\"DET\",\"cbs_id\":\"1737228\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jeremiahattaochu/2543717\",\"rotoworld_id\":\"9529\",\"stats_id\":\"27578\",\"position\":\"DE\",\"stats_global_id\":\"553580\",\"espn_id\":\"16761\",\"weight\":\"252\",\"id\":\"11725\",\"birthdate\":\"727246800\",\"draft_team\":\"FA\",\"name\":\"Attaochu, Jeremiah\",\"draft_pick\":\"18\",\"college\":\"Georgia Tech\",\"height\":\"75\",\"rotowire_id\":\"9343\",\"jersey\":\"97\",\"twitter_username\":\"JAttaochu45\",\"sportsdata_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"team\":\"DEN\",\"cbs_id\":\"1759310\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"c.j.mosley/2543464\",\"rotoworld_id\":\"9631\",\"stats_id\":\"27545\",\"position\":\"LB\",\"stats_global_id\":\"557173\",\"espn_id\":\"16720\",\"weight\":\"250\",\"id\":\"11728\",\"birthdate\":\"708930000\",\"draft_team\":\"BAL\",\"name\":\"Mosley, C.J.\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"height\":\"74\",\"rotowire_id\":\"9380\",\"jersey\":\"57\",\"twitter_username\":\"TreyDeuce32RTR\",\"sportsdata_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"team\":\"NYJ\",\"cbs_id\":\"1762120\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"bradleyroby/2543505\",\"rotoworld_id\":\"9440\",\"stats_id\":\"27559\",\"position\":\"CB\",\"stats_global_id\":\"553687\",\"espn_id\":\"16719\",\"weight\":\"194\",\"id\":\"11735\",\"birthdate\":\"704696400\",\"draft_team\":\"DEN\",\"name\":\"Roby, Bradley\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"height\":\"71\",\"rotowire_id\":\"9329\",\"jersey\":\"21\",\"twitter_username\":\"BradRoby_1\",\"sportsdata_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"team\":\"HOU\",\"cbs_id\":\"1759561\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"darquezedennard/2543474\",\"rotoworld_id\":\"9435\",\"stats_id\":\"27552\",\"position\":\"CB\",\"stats_global_id\":\"557369\",\"espn_id\":\"16718\",\"weight\":\"205\",\"id\":\"11737\",\"birthdate\":\"681800400\",\"draft_team\":\"CIN\",\"name\":\"Dennard, Darqueze\",\"draft_pick\":\"24\",\"college\":\"Michigan State\",\"height\":\"71\",\"rotowire_id\":\"9619\",\"jersey\":\"34\",\"twitter_username\":\"DDennard21\",\"sportsdata_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"team\":\"ATL\",\"cbs_id\":\"1762306\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"aaroncolvin/2543501\",\"rotoworld_id\":\"9348\",\"stats_id\":\"27642\",\"position\":\"CB\",\"stats_global_id\":\"542873\",\"espn_id\":\"16900\",\"weight\":\"191\",\"id\":\"11739\",\"birthdate\":\"686379600\",\"draft_team\":\"JAC\",\"name\":\"Colvin, Aaron\",\"draft_pick\":\"14\",\"college\":\"Oklahoma\",\"height\":\"72\",\"rotowire_id\":\"9337\",\"jersey\":\"22\",\"twitter_username\":\"AColvin_22\",\"sportsdata_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"team\":\"FA\",\"cbs_id\":\"1737542\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"hahaclinton-dix/2543470\",\"rotoworld_id\":\"9437\",\"stats_id\":\"27549\",\"position\":\"S\",\"stats_global_id\":\"610962\",\"espn_id\":\"16735\",\"weight\":\"208\",\"id\":\"11740\",\"birthdate\":\"724914000\",\"draft_team\":\"GBP\",\"name\":\"Clinton-Dix, Ha Ha\",\"draft_pick\":\"21\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"9288\",\"jersey\":\"21\",\"twitter_username\":\"haha_cd6\",\"sportsdata_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"team\":\"FA\",\"cbs_id\":\"1893136\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"lamarcusjoyner/2543492\",\"rotoworld_id\":\"9635\",\"stats_id\":\"27569\",\"position\":\"CB\",\"stats_global_id\":\"553290\",\"espn_id\":\"16769\",\"weight\":\"185\",\"id\":\"11742\",\"birthdate\":\"659682000\",\"draft_team\":\"STL\",\"name\":\"Joyner, Lamarcus\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"height\":\"68\",\"rotowire_id\":\"9327\",\"jersey\":\"29\",\"sportsdata_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"team\":\"LVR\",\"cbs_id\":\"1737136\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jameswhite/2543773\",\"rotoworld_id\":\"9426\",\"stats_id\":\"27658\",\"position\":\"RB\",\"stats_global_id\":\"556294\",\"espn_id\":\"16913\",\"weight\":\"205\",\"id\":\"11747\",\"birthdate\":\"697093200\",\"draft_team\":\"NEP\",\"name\":\"White, James\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"height\":\"70\",\"rotowire_id\":\"9524\",\"jersey\":\"28\",\"twitter_username\":\"SweetFeet_White\",\"sportsdata_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"team\":\"NEP\",\"cbs_id\":\"1759592\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"aarondonald/2543485\",\"rotoworld_id\":\"9356\",\"stats_id\":\"27541\",\"position\":\"DT\",\"stats_global_id\":\"553982\",\"espn_id\":\"16716\",\"weight\":\"280\",\"id\":\"11757\",\"birthdate\":\"674974800\",\"draft_team\":\"STL\",\"name\":\"Donald, Aaron\",\"draft_pick\":\"13\",\"college\":\"Pittsburgh\",\"height\":\"73\",\"rotowire_id\":\"9391\",\"jersey\":\"99\",\"twitter_username\":\"AaronDonald97\",\"sportsdata_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"team\":\"LAR\",\"cbs_id\":\"1737460\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"codylatimer/2543590\",\"rotoworld_id\":\"9535\",\"stats_id\":\"27584\",\"position\":\"WR\",\"stats_global_id\":\"609050\",\"espn_id\":\"16793\",\"weight\":\"222\",\"id\":\"11758\",\"birthdate\":\"718693200\",\"draft_team\":\"DEN\",\"name\":\"Latimer, Cody\",\"draft_pick\":\"24\",\"college\":\"Indiana\",\"height\":\"73\",\"rotowire_id\":\"9567\",\"jersey\":\"12\",\"twitter_username\":\"CodyLatimer14\",\"sportsdata_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"team\":\"FA\",\"cbs_id\":\"1889883\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"jimmygaroppolo/2543801\",\"rotoworld_id\":\"9360\",\"stats_id\":\"27590\",\"position\":\"QB\",\"stats_global_id\":\"555358\",\"espn_id\":\"16760\",\"weight\":\"225\",\"id\":\"11760\",\"birthdate\":\"689058000\",\"draft_team\":\"NEP\",\"name\":\"Garoppolo, Jimmy\",\"draft_pick\":\"30\",\"college\":\"Eastern Illinois\",\"height\":\"74\",\"rotowire_id\":\"9320\",\"jersey\":\"10\",\"twitter_username\":\"JimmyG_10\",\"sportsdata_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"team\":\"SFO\",\"cbs_id\":\"1760229\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"jerickmckinnon/2543715\",\"rotoworld_id\":\"9651\",\"stats_id\":\"27624\",\"position\":\"RB\",\"stats_global_id\":\"563824\",\"espn_id\":\"16782\",\"weight\":\"205\",\"id\":\"11761\",\"birthdate\":\"704869200\",\"draft_team\":\"MIN\",\"name\":\"McKinnon, Jerick\",\"draft_pick\":\"32\",\"college\":\"Georgia Southern\",\"height\":\"69\",\"rotowire_id\":\"9529\",\"jersey\":\"28\",\"twitter_username\":\"JetMckinnon1\",\"sportsdata_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"team\":\"SFO\",\"cbs_id\":\"2129436\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"kylefuller/2543681\",\"rotoworld_id\":\"9540\",\"stats_id\":\"27542\",\"position\":\"CB\",\"stats_global_id\":\"553623\",\"espn_id\":\"16715\",\"weight\":\"190\",\"id\":\"11764\",\"birthdate\":\"698216400\",\"draft_team\":\"CHI\",\"name\":\"Fuller, Kyle\",\"draft_pick\":\"14\",\"college\":\"Virginia Tech\",\"height\":\"71\",\"rotowire_id\":\"9272\",\"jersey\":\"23\",\"twitter_username\":\"kbfuller17\",\"sportsdata_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"team\":\"CHI\",\"cbs_id\":\"1759440\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jasonverrett/2543493\",\"rotoworld_id\":\"9439\",\"stats_id\":\"27553\",\"position\":\"CB\",\"stats_global_id\":\"592200\",\"espn_id\":\"16726\",\"weight\":\"188\",\"id\":\"11765\",\"birthdate\":\"674110800\",\"draft_team\":\"SDC\",\"name\":\"Verrett, Jason\",\"draft_pick\":\"25\",\"college\":\"TCU\",\"height\":\"70\",\"rotowire_id\":\"9330\",\"jersey\":\"22\",\"twitter_username\":\"Jfeeva_2\",\"sportsdata_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"team\":\"SFO\",\"cbs_id\":\"1824936\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"deonebucannon/2543769\",\"rotoworld_id\":\"9591\",\"stats_id\":\"27555\",\"position\":\"LB\",\"stats_global_id\":\"560183\",\"espn_id\":\"16723\",\"weight\":\"211\",\"id\":\"11767\",\"birthdate\":\"715150800\",\"draft_team\":\"ARI\",\"name\":\"Bucannon, Deone\",\"draft_pick\":\"27\",\"college\":\"Washington State\",\"height\":\"73\",\"rotowire_id\":\"9271\",\"jersey\":\"23\",\"twitter_username\":\"deonebucannon20\",\"sportsdata_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"team\":\"FA\",\"cbs_id\":\"1737409\"},{\"draft_year\":\"2014\",\"draft_round\":\"1\",\"nfl_id\":\"jimmieward/2543741\",\"rotoworld_id\":\"9434\",\"stats_id\":\"27558\",\"position\":\"S\",\"stats_global_id\":\"557470\",\"espn_id\":\"16717\",\"weight\":\"195\",\"id\":\"11768\",\"birthdate\":\"679813200\",\"draft_team\":\"SFO\",\"name\":\"Ward, Jimmie\",\"draft_pick\":\"30\",\"college\":\"Northern Illinois\",\"height\":\"71\",\"rotowire_id\":\"9308\",\"jersey\":\"20\",\"twitter_username\":\"ward_jimmie\",\"sportsdata_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"team\":\"SFO\",\"cbs_id\":\"1762370\"},{\"draft_year\":\"2014\",\"draft_round\":\"2\",\"nfl_id\":\"demarcuslawrence/2543490\",\"rotoworld_id\":\"9633\",\"stats_id\":\"27562\",\"position\":\"DE\",\"stats_global_id\":\"651780\",\"espn_id\":\"16802\",\"weight\":\"265\",\"id\":\"11769\",\"birthdate\":\"702190800\",\"draft_team\":\"DAL\",\"name\":\"Lawrence, Demarcus\",\"draft_pick\":\"2\",\"college\":\"Boise State\",\"height\":\"75\",\"rotowire_id\":\"9344\",\"jersey\":\"90\",\"twitter_username\":\"TankLawrence\",\"sportsdata_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"team\":\"DAL\",\"cbs_id\":\"1984683\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"christiankirksey/2543720\",\"rotoworld_id\":\"9641\",\"stats_id\":\"27599\",\"position\":\"LB\",\"stats_global_id\":\"553654\",\"espn_id\":\"16767\",\"weight\":\"235\",\"id\":\"11772\",\"birthdate\":\"715237200\",\"draft_team\":\"CLE\",\"name\":\"Kirksey, Christian\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"height\":\"74\",\"rotowire_id\":\"9375\",\"jersey\":\"58\",\"twitter_username\":\"Kirksey\",\"sportsdata_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"team\":\"GBP\",\"cbs_id\":\"1759547\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"prestonbrown/2543814\",\"rotoworld_id\":\"9590\",\"stats_id\":\"27601\",\"position\":\"LB\",\"stats_global_id\":\"553697\",\"espn_id\":\"16762\",\"weight\":\"255\",\"id\":\"11775\",\"birthdate\":\"720162000\",\"draft_team\":\"BUF\",\"name\":\"Brown, Preston\",\"draft_pick\":\"9\",\"college\":\"Louisville\",\"height\":\"73\",\"rotowire_id\":\"9387\",\"jersey\":\"52\",\"twitter_username\":\"PB_Number2\",\"sportsdata_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"team\":\"FA\",\"cbs_id\":\"1760014\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"rotoworld_id\":\"9589\",\"stats_id\":\"27607\",\"position\":\"S\",\"stats_global_id\":\"553281\",\"espn_id\":\"16768\",\"weight\":\"205\",\"id\":\"11776\",\"birthdate\":\"667890000\",\"draft_team\":\"BAL\",\"name\":\"Brooks, Terrence\",\"draft_pick\":\"15\",\"college\":\"Florida State\",\"rotowire_id\":\"9298\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"_Showtime29\",\"sportsdata_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"team\":\"NEP\",\"cbs_id\":\"1737623\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"kareemmartin/2543738\",\"rotoworld_id\":\"9646\",\"stats_id\":\"27612\",\"position\":\"LB\",\"stats_global_id\":\"546108\",\"espn_id\":\"16764\",\"weight\":\"262\",\"id\":\"11779\",\"birthdate\":\"698475600\",\"draft_team\":\"ARI\",\"name\":\"Martin, Kareem\",\"draft_pick\":\"20\",\"college\":\"North Carolina\",\"height\":\"78\",\"rotowire_id\":\"9410\",\"jersey\":\"96\",\"twitter_username\":\"reemthedream_95\",\"sportsdata_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"team\":\"FA\",\"cbs_id\":\"1737549\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"phillipgaines/2543851\",\"rotoworld_id\":\"9441\",\"stats_id\":\"27615\",\"position\":\"CB\",\"stats_global_id\":\"504442\",\"espn_id\":\"16750\",\"weight\":\"193\",\"id\":\"11781\",\"birthdate\":\"670741200\",\"draft_team\":\"KCC\",\"name\":\"Gaines, Phillip\",\"draft_pick\":\"23\",\"college\":\"Rice\",\"height\":\"72\",\"rotowire_id\":\"9710\",\"jersey\":\"29\",\"sportsdata_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"team\":\"HOU\",\"cbs_id\":\"2129435\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"johnbrown/2543847\",\"rotoworld_id\":\"9649\",\"stats_id\":\"27619\",\"position\":\"WR\",\"stats_global_id\":\"473742\",\"espn_id\":\"16804\",\"weight\":\"178\",\"id\":\"11783\",\"birthdate\":\"639118800\",\"draft_team\":\"ARI\",\"name\":\"Brown, John\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh State\",\"height\":\"71\",\"rotowire_id\":\"9684\",\"jersey\":\"15\",\"sportsdata_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"team\":\"BUF\",\"cbs_id\":\"2129438\"},{\"draft_year\":\"2014\",\"draft_round\":\"3\",\"nfl_id\":\"richardrodgers/2550313\",\"rotoworld_id\":\"9547\",\"stats_id\":\"27626\",\"position\":\"TE\",\"stats_global_id\":\"607699\",\"espn_id\":\"16786\",\"weight\":\"257\",\"id\":\"11785\",\"birthdate\":\"696056400\",\"draft_team\":\"GBP\",\"name\":\"Rodgers, Richard\",\"draft_pick\":\"34\",\"college\":\"California\",\"height\":\"76\",\"rotowire_id\":\"9559\",\"jersey\":\"86\",\"sportsdata_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"team\":\"PHI\",\"cbs_id\":\"2129433\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"jaylenwatkins/2543707\",\"rotoworld_id\":\"9652\",\"stats_id\":\"27629\",\"position\":\"S\",\"stats_global_id\":\"542789\",\"espn_id\":\"16919\",\"weight\":\"194\",\"id\":\"11787\",\"birthdate\":\"722840400\",\"draft_team\":\"PHI\",\"name\":\"Watkins, Jaylen\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"height\":\"71\",\"rotowire_id\":\"9366\",\"jersey\":\"27\",\"twitter_username\":\"jwat14\",\"sportsdata_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"team\":\"LAC\",\"cbs_id\":\"1737108\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"bashaudbreeland/2543571\",\"rotoworld_id\":\"9585\",\"stats_id\":\"27630\",\"position\":\"CB\",\"stats_global_id\":\"560235\",\"espn_id\":\"16890\",\"weight\":\"195\",\"id\":\"11788\",\"birthdate\":\"696747600\",\"draft_team\":\"WAS\",\"name\":\"Breeland, Bashaud\",\"draft_pick\":\"2\",\"college\":\"Clemson\",\"height\":\"71\",\"rotowire_id\":\"9648\",\"jersey\":\"21\",\"twitter_username\":\"Bree2Land6\",\"sportsdata_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"team\":\"KCC\",\"cbs_id\":\"1765886\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"justinellis/2543812\",\"rotoworld_id\":\"9609\",\"stats_id\":\"27635\",\"position\":\"DT\",\"stats_global_id\":\"509702\",\"espn_id\":\"16857\",\"weight\":\"350\",\"id\":\"11789\",\"birthdate\":\"662274000\",\"draft_team\":\"OAK\",\"name\":\"Ellis, Justin\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"height\":\"74\",\"rotowire_id\":\"9397\",\"jersey\":\"71\",\"sportsdata_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"team\":\"BAL\",\"cbs_id\":\"1697064\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"cassiusmarsh/2543868\",\"rotoworld_id\":\"9654\",\"stats_id\":\"27636\",\"position\":\"LB\",\"stats_global_id\":\"553124\",\"espn_id\":\"16873\",\"weight\":\"254\",\"id\":\"11790\",\"birthdate\":\"710485200\",\"draft_team\":\"SEA\",\"name\":\"Marsh, Cassius\",\"draft_pick\":\"8\",\"college\":\"UCLA\",\"height\":\"76\",\"rotowire_id\":\"9414\",\"jersey\":\"54\",\"sportsdata_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"team\":\"IND\",\"cbs_id\":\"1737423\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"rosscockrell/2543799\",\"rotoworld_id\":\"9598\",\"stats_id\":\"27637\",\"position\":\"CB\",\"stats_global_id\":\"499673\",\"espn_id\":\"16843\",\"weight\":\"190\",\"id\":\"11791\",\"birthdate\":\"681454800\",\"draft_team\":\"BUF\",\"name\":\"Cockrell, Ross\",\"draft_pick\":\"9\",\"college\":\"Duke\",\"height\":\"72\",\"rotowire_id\":\"9655\",\"jersey\":\"47\",\"sportsdata_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"team\":\"TBB\",\"cbs_id\":\"1682044\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"mauricealexander/2550145\",\"rotoworld_id\":\"9655\",\"stats_id\":\"27638\",\"position\":\"S\",\"stats_global_id\":\"593247\",\"espn_id\":\"16937\",\"weight\":\"220\",\"id\":\"11792\",\"birthdate\":\"666680400\",\"draft_team\":\"STL\",\"name\":\"Alexander, Maurice\",\"draft_pick\":\"10\",\"college\":\"Utah State\",\"height\":\"74\",\"rotowire_id\":\"9642\",\"jersey\":\"41\",\"sportsdata_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"team\":\"FA\",\"cbs_id\":\"2129466\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"daquanjones/2543504\",\"rotoworld_id\":\"9656\",\"stats_id\":\"27640\",\"position\":\"DT\",\"stats_global_id\":\"560298\",\"espn_id\":\"16910\",\"weight\":\"322\",\"id\":\"11793\",\"birthdate\":\"692946000\",\"draft_team\":\"TEN\",\"name\":\"Jones, DaQuan\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"height\":\"76\",\"rotowire_id\":\"9393\",\"jersey\":\"90\",\"twitter_username\":\"RiDQulous_98\",\"sportsdata_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"team\":\"TEN\",\"cbs_id\":\"1765939\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"anthonyhitchens/2543592\",\"rotoworld_id\":\"9658\",\"stats_id\":\"27647\",\"position\":\"LB\",\"stats_global_id\":\"553657\",\"espn_id\":\"16883\",\"weight\":\"235\",\"id\":\"11795\",\"birthdate\":\"708152400\",\"draft_team\":\"DAL\",\"name\":\"Hitchens, Anthony\",\"draft_pick\":\"19\",\"college\":\"Iowa\",\"height\":\"72\",\"rotowire_id\":\"9643\",\"jersey\":\"53\",\"twitter_username\":\"AnthonyHitchens\",\"sportsdata_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"team\":\"KCC\",\"cbs_id\":\"2129465\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"waltaikens/2543724\",\"rotoworld_id\":\"9575\",\"stats_id\":\"27653\",\"position\":\"S\",\"stats_global_id\":\"508558\",\"espn_id\":\"16819\",\"weight\":\"200\",\"id\":\"11799\",\"birthdate\":\"677307600\",\"draft_team\":\"MIA\",\"name\":\"Aikens, Walt\",\"draft_pick\":\"25\",\"college\":\"Liberty\",\"height\":\"73\",\"rotowire_id\":\"9587\",\"jersey\":\"35\",\"twitter_username\":\"Walt_Aikens\",\"sportsdata_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"team\":\"TEN\",\"cbs_id\":\"1691198\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"pierredesir/2543811\",\"rotoworld_id\":\"9357\",\"stats_id\":\"27655\",\"position\":\"CB\",\"stats_global_id\":\"473659\",\"espn_id\":\"16948\",\"weight\":\"192\",\"id\":\"11801\",\"birthdate\":\"652770000\",\"draft_team\":\"CLE\",\"name\":\"Desir, Pierre\",\"draft_pick\":\"27\",\"college\":\"Lindenwood\",\"height\":\"73\",\"rotowire_id\":\"9367\",\"jersey\":\"35\",\"twitter_username\":\"pierre_desir\",\"sportsdata_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"team\":\"FA\",\"cbs_id\":\"1714348\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"treboston/2543830\",\"rotoworld_id\":\"9583\",\"stats_id\":\"27656\",\"position\":\"S\",\"stats_global_id\":\"546085\",\"espn_id\":\"16877\",\"weight\":\"205\",\"id\":\"11802\",\"birthdate\":\"709448400\",\"draft_team\":\"CAR\",\"name\":\"Boston, Tre\",\"draft_pick\":\"28\",\"college\":\"North Carolina\",\"height\":\"73\",\"rotowire_id\":\"9303\",\"jersey\":\"33\",\"twitter_username\":\"TreBos10\",\"sportsdata_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"team\":\"CAR\",\"cbs_id\":\"2129491\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"dontaejohnson/2543739\",\"rotoworld_id\":\"9661\",\"stats_id\":\"27657\",\"position\":\"CB\",\"stats_global_id\":\"557337\",\"espn_id\":\"16893\",\"weight\":\"200\",\"id\":\"11803\",\"birthdate\":\"691563600\",\"draft_team\":\"SFO\",\"name\":\"Johnson, Dontae\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"height\":\"74\",\"rotowire_id\":\"9301\",\"jersey\":\"48\",\"twitter_username\":\"3Johnson6\",\"sportsdata_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"team\":\"SFO\",\"cbs_id\":\"1737356\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"kevinpierre-louis/2543563\",\"rotoworld_id\":\"9662\",\"stats_id\":\"27660\",\"position\":\"LB\",\"stats_global_id\":\"542392\",\"espn_id\":\"16888\",\"weight\":\"230\",\"id\":\"11805\",\"birthdate\":\"686811600\",\"draft_team\":\"SEA\",\"name\":\"Pierre-Louis, Kevin\",\"draft_pick\":\"32\",\"college\":\"Boston College\",\"height\":\"72\",\"rotowire_id\":\"9712\",\"jersey\":\"54\",\"sportsdata_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"team\":\"WAS\",\"cbs_id\":\"2129497\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"nevinlawson/2543872\",\"rotoworld_id\":\"9663\",\"stats_id\":\"27661\",\"position\":\"CB\",\"stats_global_id\":\"558984\",\"espn_id\":\"16929\",\"weight\":\"190\",\"id\":\"11806\",\"birthdate\":\"672382800\",\"draft_team\":\"DET\",\"name\":\"Lawson, Nevin\",\"draft_pick\":\"33\",\"college\":\"Utah State\",\"height\":\"70\",\"rotowire_id\":\"9612\",\"jersey\":\"26\",\"sportsdata_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"team\":\"LVR\",\"cbs_id\":\"1754721\"},{\"draft_year\":\"2014\",\"draft_round\":\"4\",\"nfl_id\":\"brenturban/2543765\",\"rotoworld_id\":\"9566\",\"stats_id\":\"27662\",\"position\":\"DE\",\"stats_global_id\":\"509425\",\"espn_id\":\"16831\",\"weight\":\"300\",\"id\":\"11807\",\"birthdate\":\"673419600\",\"draft_team\":\"BAL\",\"name\":\"Urban, Brent\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"height\":\"79\",\"rotowire_id\":\"9415\",\"jersey\":\"92\",\"twitter_username\":\"urbanlegend96\",\"sportsdata_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"team\":\"CHI\",\"cbs_id\":\"1697015\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ryangrant/2543759\",\"rotoworld_id\":\"9666\",\"stats_id\":\"27670\",\"position\":\"WR\",\"stats_global_id\":\"497786\",\"espn_id\":\"16845\",\"weight\":\"195\",\"id\":\"11812\",\"birthdate\":\"661582800\",\"draft_team\":\"WAS\",\"name\":\"Grant, Ryan\",\"draft_pick\":\"2\",\"college\":\"Tulane\",\"height\":\"72\",\"rotowire_id\":\"9462\",\"jersey\":\"19\",\"twitter_username\":\"RyanGrant25\",\"sportsdata_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"team\":\"FA\",\"cbs_id\":\"1680086\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"telvinsmith/2543711\",\"rotoworld_id\":\"9394\",\"stats_id\":\"27672\",\"position\":\"LB\",\"stats_global_id\":\"553295\",\"espn_id\":\"16891\",\"weight\":\"215\",\"id\":\"11813\",\"birthdate\":\"671346000\",\"draft_team\":\"JAC\",\"name\":\"Smith, Telvin\",\"draft_pick\":\"4\",\"college\":\"Florida State\",\"height\":\"75\",\"rotowire_id\":\"9371\",\"jersey\":\"50\",\"twitter_username\":\"TelvinSmith_22\",\"sportsdata_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"team\":\"FA\",\"cbs_id\":\"1737420\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"ricardoallen/2543850\",\"rotoworld_id\":\"9667\",\"stats_id\":\"27675\",\"position\":\"S\",\"stats_global_id\":\"548405\",\"espn_id\":\"16882\",\"weight\":\"186\",\"id\":\"11814\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Allen, Ricardo\",\"draft_pick\":\"7\",\"college\":\"Purdue\",\"height\":\"69\",\"rotowire_id\":\"9609\",\"jersey\":\"37\",\"twitter_username\":\"Ricardo37Allen\",\"sportsdata_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"team\":\"ATL\",\"cbs_id\":\"1737526\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"averywilliamson/2543597\",\"rotoworld_id\":\"9571\",\"stats_id\":\"27679\",\"position\":\"LB\",\"stats_global_id\":\"557814\",\"espn_id\":\"16920\",\"weight\":\"246\",\"id\":\"11816\",\"birthdate\":\"700117200\",\"draft_team\":\"TEN\",\"name\":\"Williamson, Avery\",\"draft_pick\":\"11\",\"college\":\"Kentucky\",\"height\":\"73\",\"rotowire_id\":\"9640\",\"jersey\":\"54\",\"twitter_username\":\"AWilliamson54\",\"sportsdata_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"team\":\"PIT\",\"cbs_id\":\"2129521\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"caraunreid/2543748\",\"rotoworld_id\":\"9672\",\"stats_id\":\"27686\",\"position\":\"DE\",\"stats_global_id\":\"521309\",\"espn_id\":\"16853\",\"weight\":\"292\",\"id\":\"11820\",\"birthdate\":\"690872400\",\"draft_team\":\"DET\",\"name\":\"Reid, Caraun\",\"draft_pick\":\"18\",\"college\":\"Princeton\",\"height\":\"74\",\"rotowire_id\":\"9395\",\"jersey\":\"75\",\"twitter_username\":\"ChopReid\",\"sportsdata_id\":\"aa82ed23-934e-451f-ac47-65c63a84bf16\",\"team\":\"FA\",\"cbs_id\":\"1752983\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"chrissmith/2543692\",\"rotoworld_id\":\"9673\",\"stats_id\":\"27687\",\"position\":\"DE\",\"stats_global_id\":\"555584\",\"espn_id\":\"16917\",\"weight\":\"266\",\"id\":\"11821\",\"birthdate\":\"697784400\",\"draft_team\":\"JAC\",\"name\":\"Smith, Chris\",\"draft_pick\":\"19\",\"college\":\"Arkansas\",\"height\":\"73\",\"rotowire_id\":\"9409\",\"jersey\":\"50\",\"sportsdata_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"team\":\"LVR\",\"cbs_id\":\"2129523\"},{\"draft_year\":\"2014\",\"draft_round\":\"5\",\"nfl_id\":\"devonkennard/2543869\",\"rotoworld_id\":\"9682\",\"stats_id\":\"27702\",\"position\":\"LB\",\"stats_global_id\":\"510152\",\"espn_id\":\"16820\",\"weight\":\"256\",\"id\":\"11830\",\"birthdate\":\"677739600\",\"draft_team\":\"NYG\",\"name\":\"Kennard, Devon\",\"draft_pick\":\"34\",\"college\":\"USC\",\"height\":\"75\",\"rotowire_id\":\"9377\",\"jersey\":\"42\",\"twitter_username\":\"DevonKennard\",\"sportsdata_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"team\":\"ARI\",\"cbs_id\":\"2008672\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"antoneexum/2543680\",\"rotoworld_id\":\"9612\",\"stats_id\":\"27710\",\"position\":\"S\",\"stats_global_id\":\"507515\",\"espn_id\":\"16833\",\"weight\":\"219\",\"id\":\"11833\",\"birthdate\":\"667630800\",\"draft_team\":\"MIN\",\"name\":\"Exum, Antone\",\"draft_pick\":\"6\",\"college\":\"Virginia Tech\",\"height\":\"72\",\"rotowire_id\":\"9339\",\"jersey\":\"38\",\"twitter_username\":\"tony_amarachi\",\"sportsdata_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"team\":\"FA\",\"cbs_id\":\"1691182\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"alfredblue/2543600\",\"rotoworld_id\":\"9685\",\"stats_id\":\"27709\",\"position\":\"RB\",\"stats_global_id\":\"540506\",\"espn_id\":\"16921\",\"weight\":\"225\",\"id\":\"11834\",\"birthdate\":\"672728400\",\"draft_team\":\"HOU\",\"name\":\"Blue, Alfred\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"height\":\"74\",\"rotowire_id\":\"9360\",\"jersey\":\"23\",\"twitter_username\":\"AlfredBlue4\",\"sportsdata_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"team\":\"FA\",\"cbs_id\":\"2129554\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"davidfales/2543751\",\"rotoworld_id\":\"9359\",\"stats_id\":\"27711\",\"position\":\"QB\",\"stats_global_id\":\"512431\",\"espn_id\":\"16821\",\"weight\":\"210\",\"id\":\"11835\",\"birthdate\":\"655016400\",\"draft_team\":\"CHI\",\"name\":\"Fales, David\",\"draft_pick\":\"7\",\"college\":\"San Jose State\",\"height\":\"74\",\"rotowire_id\":\"9318\",\"jersey\":\"8\",\"twitter_username\":\"dfales10\",\"sportsdata_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"team\":\"FA\",\"cbs_id\":\"1700545\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"bennettjackson/2543834\",\"rotoworld_id\":\"9687\",\"stats_id\":\"27715\",\"position\":\"S\",\"stats_global_id\":\"560847\",\"espn_id\":\"16879\",\"weight\":\"192\",\"id\":\"11837\",\"birthdate\":\"684997200\",\"draft_team\":\"NYG\",\"name\":\"Jackson, Bennett\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"height\":\"72\",\"rotowire_id\":\"9671\",\"jersey\":\"33\",\"twitter_username\":\"B_Jax2\",\"sportsdata_id\":\"144ef260-a22e-45df-9bbe-52a11f9188ba\",\"team\":\"NYJ\",\"cbs_id\":\"1749630\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"pato'donnell/2543611\",\"rotoworld_id\":\"9689\",\"stats_id\":\"27719\",\"position\":\"PN\",\"stats_global_id\":\"511734\",\"espn_id\":\"16863\",\"weight\":\"217\",\"id\":\"11840\",\"birthdate\":\"667198800\",\"draft_team\":\"CHI\",\"name\":\"O'Donnell, Pat\",\"draft_pick\":\"15\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"9769\",\"jersey\":\"16\",\"twitter_username\":\"PatODonnell_16\",\"sportsdata_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"team\":\"CHI\",\"cbs_id\":\"2129553\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"quincyenunwa/2543828\",\"rotoworld_id\":\"9610\",\"stats_id\":\"27737\",\"position\":\"WR\",\"stats_global_id\":\"540619\",\"espn_id\":\"16899\",\"weight\":\"225\",\"id\":\"11850\",\"birthdate\":\"707288400\",\"draft_team\":\"NYJ\",\"name\":\"Enunwa, Quincy\",\"draft_pick\":\"33\",\"college\":\"Nebraska\",\"height\":\"74\",\"rotowire_id\":\"9476\",\"jersey\":\"81\",\"twitter_username\":\"QuincyEnunwa\",\"sportsdata_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"team\":\"FA\",\"cbs_id\":\"2129594\"},{\"draft_year\":\"2014\",\"draft_round\":\"6\",\"nfl_id\":\"garrettgilbert/2549982\",\"rotoworld_id\":\"9522\",\"stats_id\":\"27742\",\"position\":\"QB\",\"stats_global_id\":\"507477\",\"espn_id\":\"16809\",\"weight\":\"230\",\"id\":\"11854\",\"birthdate\":\"678344400\",\"draft_team\":\"FA\",\"name\":\"Gilbert, Garrett\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"height\":\"76\",\"rotowire_id\":\"9776\",\"jersey\":\"3\",\"twitter_username\":\"QBGGilbert\",\"sportsdata_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"team\":\"DAL\",\"cbs_id\":\"2136090\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"t.j.carrie/2550164\",\"rotoworld_id\":\"9596\",\"stats_id\":\"27747\",\"position\":\"CB\",\"stats_global_id\":\"468954\",\"espn_id\":\"16808\",\"weight\":\"204\",\"id\":\"11858\",\"birthdate\":\"649141200\",\"draft_team\":\"FA\",\"name\":\"Carrie, T.J.\",\"draft_pick\":\"4\",\"college\":\"Ohio\",\"height\":\"72\",\"rotowire_id\":\"11514\",\"jersey\":\"38\",\"sportsdata_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"team\":\"IND\",\"cbs_id\":\"1631651\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shamarstephen/2543706\",\"rotoworld_id\":\"9704\",\"stats_id\":\"27748\",\"position\":\"DT\",\"stats_global_id\":\"511821\",\"espn_id\":\"16866\",\"weight\":\"309\",\"id\":\"11859\",\"birthdate\":\"667458000\",\"draft_team\":\"MIN\",\"name\":\"Stephen, Shamar\",\"draft_pick\":\"5\",\"college\":\"UConn\",\"height\":\"77\",\"rotowire_id\":\"9400\",\"jersey\":\"93\",\"twitter_username\":\"ShamarStephen59\",\"sportsdata_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"team\":\"MIN\",\"cbs_id\":\"1701728\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"beauallen/2543884\",\"rotoworld_id\":\"9708\",\"stats_id\":\"27752\",\"position\":\"DT\",\"stats_global_id\":\"556251\",\"espn_id\":\"16912\",\"weight\":\"327\",\"id\":\"11862\",\"birthdate\":\"690094800\",\"draft_team\":\"PHI\",\"name\":\"Allen, Beau\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"height\":\"75\",\"rotowire_id\":\"9779\",\"jersey\":\"94\",\"twitter_username\":\"Beau_Allen\",\"sportsdata_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"team\":\"NEP\",\"cbs_id\":\"2129632\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"shelbyharris/2549926\",\"rotoworld_id\":\"9718\",\"stats_id\":\"27763\",\"position\":\"DE\",\"stats_global_id\":\"500700\",\"espn_id\":\"16837\",\"weight\":\"290\",\"id\":\"11872\",\"birthdate\":\"681886800\",\"draft_team\":\"DAL\",\"name\":\"Harris, Shelby\",\"draft_pick\":\"20\",\"college\":\"Illinois State\",\"height\":\"74\",\"rotowire_id\":\"9785\",\"jersey\":\"96\",\"twitter_username\":\"ShelbyHarris93\",\"sportsdata_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"team\":\"DEN\",\"cbs_id\":\"2129678\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"coreynelson/2550167\",\"rotoworld_id\":\"9724\",\"stats_id\":\"27770\",\"position\":\"LB\",\"stats_global_id\":\"542891\",\"espn_id\":\"16902\",\"weight\":\"226\",\"id\":\"11877\",\"birthdate\":\"703918800\",\"draft_team\":\"DEN\",\"name\":\"Nelson, Corey\",\"draft_pick\":\"27\",\"college\":\"Oklahoma\",\"height\":\"73\",\"rotowire_id\":\"9792\",\"jersey\":\"52\",\"twitter_username\":\"C_Ne7son\",\"sportsdata_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"team\":\"FA\",\"cbs_id\":\"2129672\"},{\"draft_year\":\"2014\",\"draft_round\":\"7\",\"nfl_id\":\"terrancemitchell/2543637\",\"rotoworld_id\":\"9732\",\"stats_id\":\"27782\",\"position\":\"CB\",\"stats_global_id\":\"545830\",\"espn_id\":\"16927\",\"weight\":\"191\",\"id\":\"11883\",\"birthdate\":\"706942800\",\"draft_team\":\"DAL\",\"name\":\"Mitchell, Terrance\",\"draft_pick\":\"39\",\"college\":\"Oregon\",\"height\":\"71\",\"rotowire_id\":\"9332\",\"jersey\":\"39\",\"twitter_username\":\"mr_reloaded9\",\"sportsdata_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"team\":\"CLE\",\"cbs_id\":\"1737547\"},{\"draft_year\":\"2014\",\"nfl_id\":\"damienwilliams/2550512\",\"rotoworld_id\":\"9570\",\"stats_id\":\"28115\",\"position\":\"RB\",\"stats_global_id\":\"691283\",\"espn_id\":\"17359\",\"weight\":\"224\",\"id\":\"11886\",\"draft_team\":\"FA\",\"birthdate\":\"702277200\",\"name\":\"Williams, Damien\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9644\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"team\":\"KCC\",\"cbs_id\":\"2130689\"},{\"draft_year\":\"2014\",\"nfl_id\":\"albertwilson/2550272\",\"rotoworld_id\":\"9572\",\"stats_id\":\"28046\",\"position\":\"WR\",\"stats_global_id\":\"556955\",\"espn_id\":\"17051\",\"weight\":\"195\",\"id\":\"11890\",\"draft_team\":\"FA\",\"birthdate\":\"710917200\",\"name\":\"Wilson, Albert\",\"college\":\"Georgia State\",\"rotowire_id\":\"9491\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"team\":\"MIA\",\"cbs_id\":\"2130201\"},{\"draft_year\":\"2014\",\"nfl_id\":\"davidfluellen/2550289\",\"rotoworld_id\":\"9616\",\"stats_id\":\"27790\",\"position\":\"RB\",\"stats_global_id\":\"559264\",\"espn_id\":\"16994\",\"weight\":\"224\",\"id\":\"11894\",\"draft_team\":\"FA\",\"birthdate\":\"696661200\",\"name\":\"Fluellen, David\",\"college\":\"Toledo\",\"rotowire_id\":\"9534\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"team\":\"FA\",\"cbs_id\":\"2130224\"},{\"draft_year\":\"2014\",\"nfl_id\":\"allenhurns/2550353\",\"rotoworld_id\":\"9867\",\"stats_id\":\"27874\",\"position\":\"WR\",\"stats_global_id\":\"540997\",\"espn_id\":\"17177\",\"weight\":\"195\",\"id\":\"11925\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Hurns, Allen\",\"college\":\"Miami\",\"rotowire_id\":\"9485\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"team\":\"MIA\",\"cbs_id\":\"2130337\"},{\"draft_year\":\"2014\",\"nfl_id\":\"benniefowler/2550198\",\"rotoworld_id\":\"9826\",\"stats_id\":\"27826\",\"position\":\"WR\",\"stats_global_id\":\"511509\",\"espn_id\":\"16995\",\"weight\":\"212\",\"id\":\"11931\",\"draft_team\":\"FA\",\"birthdate\":\"676530000\",\"name\":\"Fowler, Bennie\",\"college\":\"Michigan State\",\"rotowire_id\":\"9353\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"team\":\"NOS\",\"cbs_id\":\"2130161\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chrisboswell/2550545\",\"rotoworld_id\":\"10118\",\"stats_id\":\"28188\",\"position\":\"PK\",\"stats_global_id\":\"504436\",\"weight\":\"185\",\"id\":\"11936\",\"draft_team\":\"FA\",\"birthdate\":\"629787600\",\"name\":\"Boswell, Chris\",\"college\":\"Rice\",\"rotowire_id\":\"9646\",\"height\":\"74\",\"jersey\":\"9\",\"sportsdata_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"team\":\"PIT\",\"cbs_id\":\"1724930\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9054\",\"stats_id\":\"27277\",\"position\":\"WR\",\"stats_global_id\":\"733643\",\"espn_id\":\"16460\",\"weight\":\"200\",\"id\":\"11938\",\"draft_team\":\"FA\",\"birthdate\":\"651301200\",\"name\":\"Thielen, Adam\",\"college\":\"Minnesota State-Mankato\",\"rotowire_id\":\"8986\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"team\":\"MIN\",\"cbs_id\":\"2059362\"},{\"draft_year\":\"2014\",\"nfl_id\":\"cairosantos/2550636\",\"rotoworld_id\":\"10155\",\"stats_id\":\"28227\",\"position\":\"PK\",\"stats_global_id\":\"546669\",\"espn_id\":\"17427\",\"weight\":\"160\",\"id\":\"11945\",\"draft_team\":\"FA\",\"birthdate\":\"690699600\",\"name\":\"Santos, Cairo\",\"college\":\"Tulane\",\"rotowire_id\":\"9633\",\"height\":\"68\",\"jersey\":\"2\",\"sportsdata_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"team\":\"CHI\",\"cbs_id\":\"2132690\"},{\"draft_year\":\"2014\",\"nfl_id\":\"brandonmcmanus/2541556\",\"rotoworld_id\":\"8912\",\"stats_id\":\"27120\",\"position\":\"PK\",\"stats_global_id\":\"513098\",\"espn_id\":\"16339\",\"weight\":\"201\",\"id\":\"11947\",\"draft_team\":\"FA\",\"birthdate\":\"680418000\",\"name\":\"McManus, Brandon\",\"college\":\"Temple\",\"rotowire_id\":\"9948\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"team\":\"DEN\",\"cbs_id\":\"2058320\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9989\",\"stats_id\":\"28026\",\"position\":\"WR\",\"stats_global_id\":\"591586\",\"espn_id\":\"17258\",\"weight\":\"200\",\"id\":\"11951\",\"draft_team\":\"FA\",\"birthdate\":\"719298000\",\"name\":\"Snead, Willie\",\"college\":\"Ball State\",\"rotowire_id\":\"9284\",\"height\":\"71\",\"jersey\":\"83\",\"sportsdata_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"team\":\"BAL\",\"cbs_id\":\"2130155\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10025\",\"stats_id\":\"28075\",\"position\":\"LB\",\"stats_global_id\":\"559263\",\"espn_id\":\"16991\",\"weight\":\"255\",\"id\":\"11954\",\"draft_team\":\"FA\",\"birthdate\":\"689835600\",\"name\":\"Elliott, Jayrone\",\"college\":\"Toledo\",\"rotowire_id\":\"9955\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"4642915e-8c37-4692-9169-fa210b6efc8c\",\"team\":\"PIT\",\"cbs_id\":\"2130181\"},{\"draft_year\":\"2014\",\"nfl_id\":\"danielsorensen/2550257\",\"rotoworld_id\":\"9999\",\"stats_id\":\"28036\",\"position\":\"S\",\"stats_global_id\":\"463549\",\"espn_id\":\"17259\",\"weight\":\"208\",\"id\":\"11956\",\"draft_team\":\"FA\",\"birthdate\":\"636613200\",\"name\":\"Sorensen, Daniel\",\"college\":\"Brigham Young\",\"rotowire_id\":\"9680\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"team\":\"KCC\",\"cbs_id\":\"2130197\"},{\"draft_year\":\"2013\",\"nfl_id\":\"dontrelleinman/2530700\",\"rotoworld_id\":\"6840\",\"stats_id\":\"25120\",\"position\":\"WR\",\"stats_global_id\":\"399529\",\"espn_id\":\"14269\",\"weight\":\"205\",\"id\":\"11957\",\"draft_team\":\"FA\",\"birthdate\":\"602226000\",\"name\":\"Inman, Dontrelle\",\"college\":\"Virginia\",\"rotowire_id\":\"7659\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"team\":\"WAS\",\"cbs_id\":\"1272256\"},{\"draft_year\":\"2014\",\"nfl_id\":\"chandlercatanzaro/2550325\",\"rotoworld_id\":\"10045\",\"stats_id\":\"28103\",\"position\":\"PK\",\"stats_global_id\":\"522233\",\"espn_id\":\"16976\",\"weight\":\"200\",\"id\":\"11960\",\"draft_team\":\"FA\",\"birthdate\":\"667544400\",\"name\":\"Catanzaro, Chandler\",\"college\":\"Clemson\",\"rotowire_id\":\"9845\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"team\":\"FA\",\"cbs_id\":\"2130276\"},{\"draft_year\":\"2014\",\"nfl_id\":\"senoriseperry/2550633\",\"rotoworld_id\":\"10151\",\"stats_id\":\"28223\",\"position\":\"RB\",\"stats_global_id\":\"553705\",\"espn_id\":\"17421\",\"weight\":\"210\",\"id\":\"11964\",\"draft_team\":\"FA\",\"birthdate\":\"685256400\",\"name\":\"Perry, Senorise\",\"college\":\"Louisville\",\"rotowire_id\":\"9872\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"team\":\"TEN\",\"cbs_id\":\"2132668\"},{\"draft_year\":\"2014\",\"nfl_id\":\"malcolmbutler/2550613\",\"rotoworld_id\":\"10172\",\"stats_id\":\"28244\",\"position\":\"CB\",\"stats_global_id\":\"704242\",\"espn_id\":\"17435\",\"weight\":\"190\",\"id\":\"11965\",\"birthdate\":\"636354000\",\"draft_team\":\"FA\",\"name\":\"Butler, Malcolm\",\"college\":\"West Alabama\",\"rotowire_id\":\"9944\",\"height\":\"71\",\"jersey\":\"21\",\"twitter_username\":\"Mac_BZ\",\"sportsdata_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"team\":\"TEN\",\"cbs_id\":\"2132696\"},{\"draft_year\":\"2014\",\"nfl_id\":\"codyparkey/2550380\",\"rotoworld_id\":\"9893\",\"stats_id\":\"27911\",\"position\":\"PK\",\"stats_global_id\":\"557135\",\"espn_id\":\"17082\",\"weight\":\"190\",\"id\":\"11966\",\"draft_team\":\"FA\",\"birthdate\":\"698475600\",\"name\":\"Parkey, Cody\",\"college\":\"Auburn\",\"rotowire_id\":\"9943\",\"height\":\"72\",\"jersey\":\"1\",\"sportsdata_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"team\":\"CLE\",\"cbs_id\":\"2130323\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9765\",\"stats_id\":\"28085\",\"position\":\"DT\",\"stats_global_id\":\"652847\",\"espn_id\":\"17230\",\"weight\":\"332\",\"id\":\"11970\",\"draft_team\":\"FA\",\"birthdate\":\"673765200\",\"name\":\"Pennel, Mike\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"9661\",\"height\":\"76\",\"jersey\":\"64\",\"sportsdata_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"team\":\"KCC\",\"cbs_id\":\"2130184\"},{\"draft_year\":\"2014\",\"nfl_id\":\"taylorgabriel/2550617\",\"rotoworld_id\":\"10162\",\"stats_id\":\"28234\",\"position\":\"WR\",\"stats_global_id\":\"752062\",\"espn_id\":\"17437\",\"weight\":\"165\",\"id\":\"11975\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Gabriel, Taylor\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9864\",\"height\":\"68\",\"jersey\":\"18\",\"sportsdata_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"team\":\"FA\",\"cbs_id\":\"2132670\"},{\"draft_year\":\"2013\",\"nfl_id\":\"tressway/2541903\",\"rotoworld_id\":\"8759\",\"stats_id\":\"26945\",\"position\":\"PN\",\"stats_global_id\":\"447976\",\"espn_id\":\"16166\",\"weight\":\"220\",\"id\":\"11985\",\"draft_team\":\"FA\",\"birthdate\":\"640414800\",\"name\":\"Way, Tress\",\"college\":\"Oklahoma\",\"rotowire_id\":\"9832\",\"height\":\"73\",\"jersey\":\"5\",\"twitter_username\":\"tress_way\",\"sportsdata_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"team\":\"WAS\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9787\",\"stats_id\":\"27905\",\"position\":\"DT\",\"stats_global_id\":\"495347\",\"espn_id\":\"17071\",\"weight\":\"334\",\"id\":\"11993\",\"draft_team\":\"FA\",\"birthdate\":\"651906000\",\"name\":\"Kerr, Zach\",\"college\":\"Delaware\",\"rotowire_id\":\"9637\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"team\":\"CAR\",\"cbs_id\":\"2130863\"},{\"draft_year\":\"2014\",\"nfl_id\":\"kerrywynn/2550312\",\"rotoworld_id\":\"9760\",\"stats_id\":\"28051\",\"position\":\"DE\",\"stats_global_id\":\"500183\",\"espn_id\":\"17296\",\"weight\":\"261\",\"id\":\"12008\",\"draft_team\":\"FA\",\"birthdate\":\"666334800\",\"name\":\"Wynn, Kerry\",\"college\":\"Richmond\",\"rotowire_id\":\"9691\",\"height\":\"77\",\"jersey\":\"72\",\"sportsdata_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"team\":\"FA\",\"cbs_id\":\"2130214\"},{\"draft_year\":\"0\",\"nfl_id\":\"k'waunwilliams/2550654\",\"rotoworld_id\":\"10192\",\"stats_id\":\"28265\",\"position\":\"CB\",\"stats_global_id\":\"554005\",\"espn_id\":\"17444\",\"weight\":\"185\",\"id\":\"12015\",\"draft_team\":\"FA\",\"birthdate\":\"679294800\",\"name\":\"Williams, K'Waun\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"9953\",\"height\":\"69\",\"jersey\":\"24\",\"sportsdata_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"team\":\"SFO\",\"cbs_id\":\"2132716\"},{\"draft_year\":\"2014\",\"nfl_id\":\"keithsmith/2550400\",\"rotoworld_id\":\"10076\",\"stats_id\":\"28141\",\"position\":\"RB\",\"stats_global_id\":\"558973\",\"espn_id\":\"17315\",\"weight\":\"240\",\"id\":\"12040\",\"draft_team\":\"FA\",\"birthdate\":\"702709200\",\"name\":\"Smith, Keith\",\"college\":\"San Jose State\",\"rotowire_id\":\"9990\",\"height\":\"72\",\"jersey\":\"40\",\"sportsdata_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"team\":\"ATL\",\"cbs_id\":\"2130290\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9918\",\"stats_id\":\"27940\",\"position\":\"LB\",\"stats_global_id\":\"695090\",\"espn_id\":\"17401\",\"weight\":\"230\",\"id\":\"12072\",\"draft_team\":\"FA\",\"birthdate\":\"653893200\",\"name\":\"Taylor, Adarius\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"9996\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"team\":\"CAR\",\"cbs_id\":\"2130817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"shaquilbarrett/2550541\",\"rotoworld_id\":\"9577\",\"stats_id\":\"27820\",\"position\":\"LB\",\"stats_global_id\":\"602273\",\"espn_id\":\"16967\",\"weight\":\"250\",\"id\":\"12075\",\"draft_team\":\"FA\",\"birthdate\":\"721976400\",\"name\":\"Barrett, Shaq\",\"college\":\"Colorado State\",\"rotowire_id\":\"9995\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"team\":\"TBB\",\"cbs_id\":\"2130832\"},{\"draft_year\":\"2014\",\"nfl_id\":\"denicoautry/2550646\",\"rotoworld_id\":\"9778\",\"stats_id\":\"28266\",\"position\":\"DT\",\"stats_global_id\":\"652571\",\"espn_id\":\"17447\",\"weight\":\"285\",\"id\":\"12083\",\"draft_team\":\"FA\",\"birthdate\":\"648018000\",\"name\":\"Autry, Denico\",\"college\":\"Mississippi State\",\"rotowire_id\":\"9746\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"team\":\"IND\",\"cbs_id\":\"2132722\"},{\"draft_year\":\"2014\",\"nfl_id\":\"todddavis/2550930\",\"rotoworld_id\":\"10238\",\"stats_id\":\"28312\",\"position\":\"LB\",\"stats_global_id\":\"551340\",\"espn_id\":\"17497\",\"weight\":\"230\",\"id\":\"12087\",\"draft_team\":\"FA\",\"birthdate\":\"706078800\",\"name\":\"Davis, Todd\",\"college\":\"Sacramento State\",\"rotowire_id\":\"9998\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"team\":\"MIN\",\"cbs_id\":\"2135489\"},{\"draft_year\":\"2014\",\"nfl_id\":\"adrianphillips/2550842\",\"rotoworld_id\":\"10229\",\"stats_id\":\"28303\",\"position\":\"S\",\"stats_global_id\":\"555857\",\"espn_id\":\"17487\",\"weight\":\"210\",\"id\":\"12088\",\"draft_team\":\"FA\",\"birthdate\":\"701758800\",\"name\":\"Phillips, Adrian\",\"college\":\"Texas\",\"rotowire_id\":\"10002\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"team\":\"NEP\",\"cbs_id\":\"2133817\"},{\"draft_year\":\"2014\",\"nfl_id\":\"charcandrickwest/2550268\",\"rotoworld_id\":\"10006\",\"stats_id\":\"28044\",\"position\":\"RB\",\"stats_global_id\":\"752129\",\"espn_id\":\"17284\",\"weight\":\"205\",\"id\":\"12098\",\"draft_team\":\"FA\",\"birthdate\":\"675838800\",\"name\":\"West, Charcandrick\",\"college\":\"Abilene Christian\",\"rotowire_id\":\"9891\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"team\":\"FA\",\"cbs_id\":\"2130200\"},{\"draft_year\":\"2014\",\"nfl_id\":\"joshmauro/2550437/\",\"rotoworld_id\":\"9795\",\"stats_id\":\"27815\",\"position\":\"DE\",\"stats_global_id\":\"503188\",\"espn_id\":\"17017\",\"weight\":\"290\",\"id\":\"12099\",\"draft_team\":\"FA\",\"birthdate\":\"666766800\",\"name\":\"Mauro, Josh\",\"college\":\"Stanford\",\"rotowire_id\":\"9412\",\"height\":\"78\",\"jersey\":\"97\",\"sportsdata_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"team\":\"ARI\",\"cbs_id\":\"1685973\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10193\",\"stats_id\":\"28267\",\"position\":\"TE\",\"stats_global_id\":\"552926\",\"espn_id\":\"17453\",\"weight\":\"245\",\"id\":\"12110\",\"draft_team\":\"FA\",\"birthdate\":\"678517200\",\"name\":\"Brate, Cameron\",\"college\":\"Harvard\",\"rotowire_id\":\"10008\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"team\":\"TBB\",\"cbs_id\":\"2132787\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9833\",\"stats_id\":\"27835\",\"position\":\"DT\",\"stats_global_id\":\"553729\",\"espn_id\":\"17061\",\"weight\":\"310\",\"id\":\"12111\",\"draft_team\":\"FA\",\"birthdate\":\"715669200\",\"name\":\"Dunn, Brandon\",\"college\":\"Louisville\",\"rotowire_id\":\"9817\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"team\":\"HOU\",\"cbs_id\":\"2130827\"},{\"draft_year\":\"2013\",\"rotoworld_id\":\"8997\",\"stats_id\":\"27217\",\"position\":\"DT\",\"stats_global_id\":\"495939\",\"espn_id\":\"16377\",\"weight\":\"328\",\"id\":\"12126\",\"draft_team\":\"FA\",\"birthdate\":\"672123600\",\"name\":\"Purcell, Mike\",\"college\":\"Wyoming\",\"rotowire_id\":\"9935\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"team\":\"DEN\",\"cbs_id\":\"2058552\"},{\"draft_year\":\"2014\",\"nfl_id\":\"jamiemeder/2550230\",\"rotoworld_id\":\"9955\",\"stats_id\":\"27983\",\"position\":\"DT\",\"stats_global_id\":\"794047\",\"espn_id\":\"17214\",\"weight\":\"308\",\"id\":\"12136\",\"draft_team\":\"FA\",\"birthdate\":\"671432400\",\"name\":\"Meder, Jamie\",\"college\":\"Ashland\",\"rotowire_id\":\"10025\",\"height\":\"75\",\"jersey\":\"66\",\"sportsdata_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"team\":\"FA\",\"cbs_id\":\"2130126\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10143\",\"stats_id\":\"28215\",\"position\":\"TE\",\"stats_global_id\":\"564881\",\"espn_id\":\"17391\",\"weight\":\"261\",\"id\":\"12138\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Simonson, Scott\",\"college\":\"Assumption\",\"rotowire_id\":\"10016\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"team\":\"FA\",\"cbs_id\":\"2130881\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"9376\",\"stats_id\":\"28389\",\"position\":\"QB\",\"stats_global_id\":\"691536\",\"espn_id\":\"2969939\",\"weight\":\"231\",\"id\":\"12140\",\"birthdate\":\"757832400\",\"draft_team\":\"TBB\",\"name\":\"Winston, Jameis\",\"draft_pick\":\"1\",\"college\":\"Florida State\",\"rotowire_id\":\"10037\",\"height\":\"76\",\"jersey\":\"2\",\"twitter_username\":\"Jaboowins\",\"sportsdata_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"team\":\"NOS\",\"cbs_id\":\"1998197\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcusmariota/2552466\",\"rotoworld_id\":\"9385\",\"stats_id\":\"28390\",\"position\":\"QB\",\"stats_global_id\":\"607843\",\"espn_id\":\"2576980\",\"weight\":\"222\",\"id\":\"12141\",\"birthdate\":\"751957200\",\"draft_team\":\"TEN\",\"name\":\"Mariota, Marcus\",\"draft_pick\":\"2\",\"college\":\"Oregon\",\"height\":\"76\",\"rotowire_id\":\"10074\",\"jersey\":\"8\",\"sportsdata_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"team\":\"LVR\",\"cbs_id\":\"1880862\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10402\",\"stats_id\":\"28535\",\"position\":\"QB\",\"stats_global_id\":\"590420\",\"espn_id\":\"2577189\",\"weight\":\"226\",\"id\":\"12142\",\"birthdate\":\"740120400\",\"draft_team\":\"GBP\",\"name\":\"Hundley, Brett\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"9706\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"BrettHundley17\",\"sportsdata_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"team\":\"ARI\",\"cbs_id\":\"1824723\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10409\",\"stats_id\":\"28477\",\"position\":\"QB\",\"stats_global_id\":\"557860\",\"espn_id\":\"2517017\",\"weight\":\"230\",\"id\":\"12145\",\"birthdate\":\"704178000\",\"draft_team\":\"STL\",\"name\":\"Mannion, Sean\",\"draft_pick\":\"25\",\"college\":\"Oregon State\",\"rotowire_id\":\"10176\",\"height\":\"78\",\"jersey\":\"4\",\"twitter_username\":\"seanmannion4\",\"sportsdata_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"team\":\"MIN\",\"cbs_id\":\"1737484\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10288\",\"stats_id\":\"28398\",\"position\":\"RB\",\"stats_global_id\":\"694641\",\"espn_id\":\"2977644\",\"weight\":\"227\",\"id\":\"12150\",\"birthdate\":\"775890000\",\"draft_team\":\"FA\",\"name\":\"Gurley, Todd\",\"draft_pick\":\"10\",\"rotowire_id\":\"10147\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"TG3II\",\"sportsdata_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"team\":\"ATL\",\"cbs_id\":\"2000877\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"melvingordon/2552469\",\"rotoworld_id\":\"10284\",\"stats_id\":\"28403\",\"position\":\"RB\",\"stats_global_id\":\"606516\",\"espn_id\":\"2576434\",\"weight\":\"215\",\"id\":\"12151\",\"birthdate\":\"734677200\",\"draft_team\":\"FA\",\"name\":\"Gordon, Melvin\",\"draft_pick\":\"15\",\"rotowire_id\":\"10064\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Melvingordon25\",\"sportsdata_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"team\":\"DEN\",\"cbs_id\":\"1871347\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10359\",\"stats_id\":\"28461\",\"position\":\"RB\",\"stats_global_id\":\"696080\",\"espn_id\":\"2979477\",\"weight\":\"210\",\"id\":\"12152\",\"birthdate\":\"734936400\",\"draft_team\":\"ATL\",\"name\":\"Coleman, Tevin\",\"draft_pick\":\"9\",\"college\":\"Indiana\",\"rotowire_id\":\"10081\",\"height\":\"73\",\"jersey\":\"26\",\"twitter_username\":\"Teco_Raww\",\"sportsdata_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"team\":\"SFO\",\"cbs_id\":\"2001839\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"t.j.yeldon/2552471\",\"rotoworld_id\":\"10311\",\"stats_id\":\"28424\",\"position\":\"RB\",\"stats_global_id\":\"651103\",\"espn_id\":\"2976516\",\"weight\":\"223\",\"id\":\"12153\",\"birthdate\":\"749538000\",\"draft_team\":\"JAC\",\"name\":\"Yeldon, T.J.\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10056\",\"jersey\":\"22\",\"twitter_username\":\"T_Yeldon\",\"sportsdata_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"team\":\"BUF\",\"cbs_id\":\"1984224\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jayajayi/2552582\",\"rotoworld_id\":\"10361\",\"stats_id\":\"28537\",\"position\":\"RB\",\"stats_global_id\":\"590921\",\"espn_id\":\"2573300\",\"weight\":\"223\",\"id\":\"12154\",\"birthdate\":\"740120400\",\"draft_team\":\"MIA\",\"name\":\"Ajayi, Jay\",\"draft_pick\":\"13\",\"college\":\"Boise State\",\"height\":\"72\",\"rotowire_id\":\"10082\",\"jersey\":\"26\",\"twitter_username\":\"JayTrain\",\"sportsdata_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"team\":\"FA\",\"cbs_id\":\"1825212\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10338\",\"stats_id\":\"28442\",\"position\":\"RB\",\"stats_global_id\":\"590796\",\"espn_id\":\"2576336\",\"weight\":\"203\",\"id\":\"12155\",\"birthdate\":\"739947600\",\"draft_team\":\"DET\",\"name\":\"Abdullah, Ameer\",\"draft_pick\":\"22\",\"college\":\"Nebraska\",\"rotowire_id\":\"10126\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"Ameerguapo\",\"sportsdata_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"team\":\"MIN\",\"cbs_id\":\"1824308\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"dukejohnson/2552461\",\"rotoworld_id\":\"10358\",\"stats_id\":\"28465\",\"position\":\"RB\",\"stats_global_id\":\"691583\",\"espn_id\":\"2969962\",\"weight\":\"210\",\"id\":\"12157\",\"birthdate\":\"748760400\",\"draft_team\":\"CLE\",\"name\":\"Johnson, Duke\",\"draft_pick\":\"13\",\"college\":\"Miami\",\"height\":\"69\",\"rotowire_id\":\"10084\",\"jersey\":\"25\",\"twitter_username\":\"DukeJohnson\",\"sportsdata_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"team\":\"HOU\",\"cbs_id\":\"1998316\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10314\",\"stats_id\":\"28513\",\"position\":\"RB\",\"stats_global_id\":\"598989\",\"espn_id\":\"2577253\",\"weight\":\"218\",\"id\":\"12159\",\"birthdate\":\"683269200\",\"draft_team\":\"BAL\",\"name\":\"Allen, Javorius\",\"draft_pick\":\"26\",\"college\":\"USC\",\"rotowire_id\":\"10066\",\"height\":\"72\",\"jersey\":\"37\",\"twitter_username\":\"realbuckallen\",\"sportsdata_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"team\":\"FA\",\"cbs_id\":\"1851113\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10364\",\"stats_id\":\"28562\",\"position\":\"RB\",\"stats_global_id\":\"727272\",\"espn_id\":\"3043097\",\"weight\":\"215\",\"id\":\"12161\",\"birthdate\":\"646117200\",\"draft_team\":\"CAR\",\"name\":\"Artis-Payne, Cameron\",\"draft_pick\":\"38\",\"college\":\"Auburn\",\"rotowire_id\":\"10187\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"team\":\"FA\",\"cbs_id\":\"2061215\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10378\",\"stats_id\":\"28514\",\"position\":\"RB\",\"stats_global_id\":\"694015\",\"espn_id\":\"3025433\",\"weight\":\"217\",\"id\":\"12164\",\"birthdate\":\"730098000\",\"draft_team\":\"SFO\",\"name\":\"Davis, Mike\",\"draft_pick\":\"27\",\"college\":\"South Carolina\",\"rotowire_id\":\"10083\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"team\":\"CAR\",\"cbs_id\":\"2000079\"},{\"draft_year\":\"2015\",\"nfl_id\":\"thomasrawls/2553733\",\"rotoworld_id\":\"10420\",\"stats_id\":\"28714\",\"position\":\"RB\",\"stats_global_id\":\"605730\",\"espn_id\":\"2576237\",\"weight\":\"215\",\"id\":\"12169\",\"draft_team\":\"FA\",\"birthdate\":\"744354000\",\"name\":\"Rawls, Thomas\",\"college\":\"Central Michigan\",\"rotowire_id\":\"10185\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"team\":\"FA\",\"cbs_id\":\"1865647\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"davidjohnson/2553435\",\"rotoworld_id\":\"10404\",\"stats_id\":\"28474\",\"position\":\"RB\",\"stats_global_id\":\"552409\",\"espn_id\":\"2508176\",\"weight\":\"224\",\"id\":\"12171\",\"birthdate\":\"692859600\",\"draft_team\":\"ARI\",\"name\":\"Johnson, David\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"height\":\"73\",\"rotowire_id\":\"10148\",\"jersey\":\"31\",\"sportsdata_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"team\":\"HOU\",\"cbs_id\":\"1760290\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"malcombrown/2552483\",\"rotoworld_id\":\"10313\",\"stats_id\":\"28420\",\"position\":\"DT\",\"stats_global_id\":\"691336\",\"espn_id\":\"2971698\",\"weight\":\"320\",\"id\":\"12173\",\"birthdate\":\"760165200\",\"draft_team\":\"NEP\",\"name\":\"Brown, Malcom\",\"draft_pick\":\"32\",\"college\":\"Texas\",\"height\":\"74\",\"rotowire_id\":\"10058\",\"jersey\":\"90\",\"twitter_username\":\"MallyCat_28\",\"sportsdata_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"team\":\"NOS\",\"cbs_id\":\"1996819\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"amaricooper/2552487\",\"rotoworld_id\":\"10310\",\"stats_id\":\"28392\",\"position\":\"WR\",\"stats_global_id\":\"650914\",\"espn_id\":\"2976499\",\"weight\":\"225\",\"id\":\"12175\",\"birthdate\":\"771915600\",\"draft_team\":\"OAK\",\"name\":\"Cooper, Amari\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"height\":\"73\",\"rotowire_id\":\"10055\",\"jersey\":\"19\",\"twitter_username\":\"AmariCooper9\",\"sportsdata_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"team\":\"DAL\",\"cbs_id\":\"1984220\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"devanteparker/2552409\",\"rotoworld_id\":\"10415\",\"stats_id\":\"28402\",\"position\":\"WR\",\"stats_global_id\":\"602241\",\"espn_id\":\"2576623\",\"weight\":\"216\",\"id\":\"12176\",\"birthdate\":\"727506000\",\"draft_team\":\"MIA\",\"name\":\"Parker, DeVante\",\"draft_pick\":\"14\",\"college\":\"Louisville\",\"height\":\"75\",\"rotowire_id\":\"10152\",\"jersey\":\"11\",\"twitter_username\":\"DeVanteParker09\",\"sportsdata_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"team\":\"MIA\",\"cbs_id\":\"1851283\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"kevinwhite/2553432\",\"rotoworld_id\":\"10427\",\"stats_id\":\"28395\",\"position\":\"WR\",\"stats_global_id\":\"728038\",\"espn_id\":\"3042435\",\"weight\":\"216\",\"id\":\"12177\",\"birthdate\":\"709448400\",\"draft_team\":\"CHI\",\"name\":\"White, Kevin\",\"draft_pick\":\"7\",\"college\":\"West Virginia\",\"height\":\"75\",\"rotowire_id\":\"10151\",\"jersey\":\"18\",\"twitter_username\":\"kwhite8\",\"sportsdata_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"team\":\"SFO\",\"cbs_id\":\"2060558\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10287\",\"stats_id\":\"28458\",\"position\":\"WR\",\"stats_global_id\":\"732795\",\"espn_id\":\"3043263\",\"weight\":\"220\",\"id\":\"12179\",\"birthdate\":\"759474000\",\"draft_team\":\"HOU\",\"name\":\"Strong, Jaelen\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"10023\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"JaelenStrong\",\"sportsdata_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"team\":\"FA\",\"cbs_id\":\"2061051\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"nelsonagholor/2552600\",\"rotoworld_id\":\"10360\",\"stats_id\":\"28408\",\"position\":\"WR\",\"stats_global_id\":\"691055\",\"espn_id\":\"2971618\",\"weight\":\"198\",\"id\":\"12181\",\"birthdate\":\"738219600\",\"draft_team\":\"PHI\",\"name\":\"Agholor, Nelson\",\"draft_pick\":\"20\",\"college\":\"USC\",\"height\":\"72\",\"rotowire_id\":\"10132\",\"jersey\":\"15\",\"twitter_username\":\"nelsonagholor\",\"sportsdata_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"team\":\"LVR\",\"cbs_id\":\"1996508\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"devinsmith/2553434\",\"rotoworld_id\":\"10423\",\"stats_id\":\"28425\",\"position\":\"WR\",\"stats_global_id\":\"462223\",\"espn_id\":\"2576395\",\"weight\":\"205\",\"id\":\"12182\",\"birthdate\":\"699598800\",\"draft_team\":\"NYJ\",\"name\":\"Smith, Devin\",\"draft_pick\":\"5\",\"college\":\"Ohio State\",\"height\":\"73\",\"rotowire_id\":\"10209\",\"jersey\":\"15\",\"twitter_username\":\"dsmithosu\",\"sportsdata_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"team\":\"FA\",\"cbs_id\":\"1871319\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"jamisoncrowder/2552415\",\"rotoworld_id\":\"10373\",\"stats_id\":\"28493\",\"position\":\"WR\",\"stats_global_id\":\"599649\",\"espn_id\":\"2576716\",\"weight\":\"177\",\"id\":\"12184\",\"birthdate\":\"740293200\",\"draft_team\":\"WAS\",\"name\":\"Crowder, Jamison\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"height\":\"69\",\"rotowire_id\":\"10224\",\"jersey\":\"82\",\"sportsdata_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"team\":\"NYJ\",\"cbs_id\":\"1850749\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10399\",\"stats_id\":\"28495\",\"position\":\"WR\",\"stats_global_id\":\"557415\",\"espn_id\":\"2518678\",\"weight\":\"192\",\"id\":\"12185\",\"birthdate\":\"693032400\",\"draft_team\":\"ATL\",\"name\":\"Hardy, Justin\",\"draft_pick\":\"8\",\"college\":\"East Carolina\",\"rotowire_id\":\"10228\",\"height\":\"70\",\"jersey\":\"14\",\"twitter_username\":\"FreakMagic2\",\"sportsdata_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"team\":\"FA\",\"cbs_id\":\"1762379\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10380\",\"stats_id\":\"28534\",\"position\":\"WR\",\"stats_global_id\":\"694041\",\"espn_id\":\"2976212\",\"weight\":\"191\",\"id\":\"12186\",\"birthdate\":\"754549200\",\"draft_team\":\"MIN\",\"name\":\"Diggs, Stefon\",\"draft_pick\":\"10\",\"college\":\"Maryland\",\"rotowire_id\":\"10133\",\"height\":\"72\",\"jersey\":\"14\",\"twitter_username\":\"stefon_diggs\",\"sportsdata_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"team\":\"BUF\",\"cbs_id\":\"2000038\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerlockett/2552430\",\"rotoworld_id\":\"10408\",\"stats_id\":\"28457\",\"position\":\"WR\",\"stats_global_id\":\"605242\",\"espn_id\":\"2577327\",\"weight\":\"182\",\"id\":\"12187\",\"birthdate\":\"717656400\",\"draft_team\":\"SEA\",\"name\":\"Lockett, Tyler\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"height\":\"70\",\"rotowire_id\":\"10161\",\"jersey\":\"16\",\"twitter_username\":\"TDLockett12\",\"sportsdata_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"team\":\"SEA\",\"cbs_id\":\"1860834\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10381\",\"stats_id\":\"28417\",\"position\":\"WR\",\"stats_global_id\":\"596417\",\"espn_id\":\"2579604\",\"weight\":\"192\",\"id\":\"12188\",\"birthdate\":\"726210000\",\"draft_team\":\"IND\",\"name\":\"Dorsett, Phillip\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"10208\",\"height\":\"70\",\"jersey\":\"11\",\"twitter_username\":\"Dorsett_4\",\"sportsdata_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"team\":\"SEA\",\"cbs_id\":\"1836058\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10357\",\"stats_id\":\"28414\",\"position\":\"WR\",\"stats_global_id\":\"652808\",\"espn_id\":\"2972460\",\"weight\":\"215\",\"id\":\"12197\",\"birthdate\":\"747637200\",\"draft_team\":\"BAL\",\"name\":\"Perriman, Breshad\",\"draft_pick\":\"26\",\"college\":\"Central Florida\",\"rotowire_id\":\"10069\",\"height\":\"74\",\"jersey\":\"19\",\"twitter_username\":\"B_Perriman11\",\"sportsdata_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"team\":\"NYJ\",\"cbs_id\":\"1984950\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10391\",\"stats_id\":\"28429\",\"position\":\"WR\",\"stats_global_id\":\"696127\",\"espn_id\":\"2977609\",\"weight\":\"225\",\"id\":\"12205\",\"birthdate\":\"769496400\",\"draft_team\":\"CAR\",\"name\":\"Funchess, Devin\",\"draft_pick\":\"9\",\"college\":\"Michigan\",\"rotowire_id\":\"10138\",\"height\":\"76\",\"jersey\":\"11\",\"twitter_username\":\"D_FUNCH\",\"sportsdata_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"team\":\"GBP\",\"cbs_id\":\"2001877\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10298\",\"stats_id\":\"28443\",\"position\":\"TE\",\"stats_global_id\":\"651658\",\"espn_id\":\"2970726\",\"weight\":\"252\",\"id\":\"12206\",\"birthdate\":\"766126800\",\"draft_team\":\"BAL\",\"name\":\"Williams, Maxx\",\"draft_pick\":\"23\",\"college\":\"Minnesota\",\"rotowire_id\":\"10128\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"williams_maxx\",\"sportsdata_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"team\":\"ARI\",\"cbs_id\":\"1983769\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10568\",\"stats_id\":\"28582\",\"position\":\"TE\",\"stats_global_id\":\"605423\",\"espn_id\":\"2576804\",\"weight\":\"252\",\"id\":\"12207\",\"birthdate\":\"715237200\",\"draft_team\":\"BUF\",\"name\":\"O'Leary, Nick\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"rotowire_id\":\"10250\",\"height\":\"75\",\"jersey\":\"84\",\"twitter_username\":\"NickOleary35\",\"sportsdata_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"team\":\"LVR\",\"cbs_id\":\"1860760\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jeffheuerman/2552399\",\"rotoworld_id\":\"10492\",\"stats_id\":\"28480\",\"position\":\"TE\",\"stats_global_id\":\"593517\",\"espn_id\":\"2576389\",\"weight\":\"255\",\"id\":\"12208\",\"birthdate\":\"722581200\",\"draft_team\":\"DEN\",\"name\":\"Heuerman, Jeff\",\"draft_pick\":\"28\",\"college\":\"Ohio State\",\"height\":\"77\",\"rotowire_id\":\"10246\",\"jersey\":\"82\",\"twitter_username\":\"JHeuerman86\",\"sportsdata_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"team\":\"FA\",\"cbs_id\":\"1824413\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"benkoyack/2552396\",\"rotoworld_id\":\"10601\",\"stats_id\":\"28617\",\"position\":\"TE\",\"stats_global_id\":\"610943\",\"espn_id\":\"2579846\",\"weight\":\"258\",\"id\":\"12209\",\"birthdate\":\"734331600\",\"draft_team\":\"JAC\",\"name\":\"Koyack, Ben\",\"draft_pick\":\"12\",\"college\":\"Notre Dame\",\"height\":\"77\",\"rotowire_id\":\"10254\",\"jersey\":\"83\",\"twitter_username\":\"koymonster\",\"sportsdata_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"team\":\"FA\",\"cbs_id\":\"1893200\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"clivewalford/2552397\",\"rotoworld_id\":\"10471\",\"stats_id\":\"28456\",\"position\":\"TE\",\"stats_global_id\":\"553616\",\"espn_id\":\"2512593\",\"weight\":\"252\",\"id\":\"12210\",\"birthdate\":\"688021200\",\"draft_team\":\"OAK\",\"name\":\"Walford, Clive\",\"draft_pick\":\"4\",\"college\":\"Miami\",\"height\":\"76\",\"rotowire_id\":\"10127\",\"jersey\":\"87\",\"twitter_username\":\"OGSlick_46\",\"sportsdata_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"team\":\"FA\",\"cbs_id\":\"1759387\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"jessejames/2552633\",\"rotoworld_id\":\"10403\",\"stats_id\":\"28548\",\"position\":\"TE\",\"stats_global_id\":\"652019\",\"espn_id\":\"2979590\",\"weight\":\"250\",\"id\":\"12211\",\"birthdate\":\"770706000\",\"draft_team\":\"PIT\",\"name\":\"James, Jesse\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"height\":\"79\",\"rotowire_id\":\"10150\",\"jersey\":\"83\",\"sportsdata_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"team\":\"DET\",\"cbs_id\":\"1983808\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"tylerkroft/2552586\",\"rotoworld_id\":\"10490\",\"stats_id\":\"28473\",\"position\":\"TE\",\"stats_global_id\":\"592268\",\"espn_id\":\"2582410\",\"weight\":\"252\",\"id\":\"12212\",\"birthdate\":\"719125200\",\"draft_team\":\"CIN\",\"name\":\"Kroft, Tyler\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"height\":\"78\",\"rotowire_id\":\"10247\",\"jersey\":\"81\",\"twitter_username\":\"Kroft86\",\"sportsdata_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"team\":\"BUF\",\"cbs_id\":\"1824200\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10366\",\"stats_id\":\"28505\",\"position\":\"TE\",\"stats_global_id\":\"542871\",\"espn_id\":\"2514206\",\"weight\":\"252\",\"id\":\"12213\",\"birthdate\":\"681541200\",\"draft_team\":\"SFO\",\"name\":\"Bell, Blake\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10248\",\"height\":\"78\",\"jersey\":\"80\",\"twitter_username\":\"B_Bell10\",\"sportsdata_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"team\":\"DAL\",\"cbs_id\":\"1737101\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"randygregory/2552446\",\"rotoworld_id\":\"10292\",\"stats_id\":\"28448\",\"position\":\"DE\",\"stats_global_id\":\"728288\",\"espn_id\":\"3895806\",\"weight\":\"242\",\"id\":\"12215\",\"birthdate\":\"722494800\",\"draft_team\":\"DAL\",\"name\":\"Gregory, Randy\",\"draft_pick\":\"28\",\"college\":\"Nebraska\",\"height\":\"77\",\"rotowire_id\":\"10168\",\"jersey\":\"94\",\"twitter_username\":\"RandyGregory_4\",\"sportsdata_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"team\":\"DAL\",\"cbs_id\":\"2060630\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dantefowler/2553431\",\"rotoworld_id\":\"10389\",\"stats_id\":\"28391\",\"position\":\"DE\",\"stats_global_id\":\"694612\",\"espn_id\":\"2980100\",\"weight\":\"255\",\"id\":\"12217\",\"birthdate\":\"775890000\",\"draft_team\":\"JAC\",\"name\":\"Fowler, Dante\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"height\":\"75\",\"rotowire_id\":\"10349\",\"jersey\":\"56\",\"twitter_username\":\"dantefowler\",\"sportsdata_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"team\":\"ATL\",\"cbs_id\":\"2173899\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10363\",\"stats_id\":\"28405\",\"position\":\"DE\",\"stats_global_id\":\"689658\",\"espn_id\":\"2971275\",\"weight\":\"290\",\"id\":\"12218\",\"birthdate\":\"784875600\",\"draft_team\":\"SFO\",\"name\":\"Armstead, Arik\",\"draft_pick\":\"17\",\"college\":\"Oregon\",\"rotowire_id\":\"10309\",\"height\":\"79\",\"jersey\":\"91\",\"twitter_username\":\"arikarmstead\",\"sportsdata_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"team\":\"SFO\",\"cbs_id\":\"1996151\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"marioedwards/2553433\",\"rotoworld_id\":\"10475\",\"stats_id\":\"28423\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"espn_id\":\"2969921\",\"weight\":\"280\",\"id\":\"12219\",\"draft_team\":\"OAK\",\"name\":\"Edwards, Mario\",\"draft_pick\":\"3\",\"college\":\"Florida State\",\"rotowire_id\":\"10450\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"team\":\"CHI\",\"cbs_id\":\"1998180\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10470\",\"stats_id\":\"28476\",\"position\":\"DE\",\"stats_global_id\":\"651016\",\"espn_id\":\"2976560\",\"weight\":\"252\",\"id\":\"12221\",\"birthdate\":\"783406800\",\"draft_team\":\"MIN\",\"name\":\"Hunter, Danielle\",\"draft_pick\":\"24\",\"college\":\"LSU\",\"rotowire_id\":\"10318\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"DHunt94_TX\",\"sportsdata_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"team\":\"MIN\",\"cbs_id\":\"1984262\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"treyflowers/2552278\",\"rotoworld_id\":\"10388\",\"stats_id\":\"28489\",\"position\":\"DE\",\"stats_global_id\":\"604396\",\"espn_id\":\"2574519\",\"weight\":\"265\",\"id\":\"12222\",\"birthdate\":\"745477200\",\"draft_team\":\"NEP\",\"name\":\"Flowers, Trey\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"height\":\"74\",\"rotowire_id\":\"10323\",\"jersey\":\"90\",\"twitter_username\":\"III_Flowers\",\"sportsdata_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"team\":\"DET\",\"cbs_id\":\"1852882\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"nateorchard/2552299\",\"rotoworld_id\":\"10478\",\"stats_id\":\"28439\",\"position\":\"DE\",\"stats_global_id\":\"591928\",\"espn_id\":\"3052511\",\"weight\":\"251\",\"id\":\"12223\",\"birthdate\":\"726210000\",\"draft_team\":\"CLE\",\"name\":\"Orchard, Nate\",\"draft_pick\":\"19\",\"college\":\"Utah\",\"height\":\"76\",\"rotowire_id\":\"10317\",\"jersey\":\"4\",\"twitter_username\":\"nateorchard44\",\"sportsdata_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"team\":\"HOU\",\"cbs_id\":\"1825042\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"leonardwilliams/2552486\",\"rotoworld_id\":\"10428\",\"stats_id\":\"28394\",\"position\":\"DE\",\"stats_global_id\":\"691071\",\"espn_id\":\"2971622\",\"weight\":\"302\",\"id\":\"12225\",\"birthdate\":\"772088400\",\"draft_team\":\"NYJ\",\"name\":\"Williams, Leonard\",\"draft_pick\":\"6\",\"college\":\"USC\",\"height\":\"77\",\"rotowire_id\":\"10307\",\"jersey\":\"99\",\"twitter_username\":\"leonardwilliams\",\"sportsdata_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"team\":\"NYG\",\"cbs_id\":\"1996523\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"dannyshelton/2552325\",\"rotoworld_id\":\"10339\",\"stats_id\":\"28400\",\"position\":\"DT\",\"stats_global_id\":\"608018\",\"espn_id\":\"2578384\",\"weight\":\"345\",\"id\":\"12226\",\"birthdate\":\"745822800\",\"draft_team\":\"CLE\",\"name\":\"Shelton, Danny\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"height\":\"74\",\"rotowire_id\":\"10310\",\"jersey\":\"71\",\"twitter_username\":\"Danny_Shelton55\",\"sportsdata_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"team\":\"DET\",\"cbs_id\":\"1884455\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10376\",\"stats_id\":\"28478\",\"position\":\"DT\",\"stats_global_id\":\"553667\",\"espn_id\":\"2511690\",\"weight\":\"320\",\"id\":\"12227\",\"birthdate\":\"699512400\",\"draft_team\":\"BAL\",\"name\":\"Davis, Carl\",\"draft_pick\":\"26\",\"college\":\"Iowa\",\"rotowire_id\":\"10313\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"team\":\"NEP\",\"cbs_id\":\"1759544\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanphillips/2552492\",\"rotoworld_id\":\"10457\",\"stats_id\":\"28440\",\"position\":\"DE\",\"stats_global_id\":\"608199\",\"espn_id\":\"2577466\",\"weight\":\"341\",\"id\":\"12229\",\"birthdate\":\"717051600\",\"draft_team\":\"MIA\",\"name\":\"Phillips, Jordan\",\"draft_pick\":\"20\",\"college\":\"Oklahoma\",\"height\":\"78\",\"rotowire_id\":\"10311\",\"jersey\":\"97\",\"twitter_username\":\"bigj9797\",\"sportsdata_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"team\":\"ARI\",\"cbs_id\":\"1886787\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10365\",\"stats_id\":\"28396\",\"position\":\"LB\",\"stats_global_id\":\"560234\",\"espn_id\":\"2512400\",\"weight\":\"246\",\"id\":\"12230\",\"birthdate\":\"710571600\",\"draft_team\":\"ATL\",\"name\":\"Beasley, Vic\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"9261\",\"height\":\"75\",\"jersey\":\"44\",\"twitter_username\":\"VicBeasley3\",\"sportsdata_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"team\":\"FA\",\"cbs_id\":\"1765885\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10424\",\"stats_id\":\"28413\",\"position\":\"LB\",\"stats_global_id\":\"695206\",\"espn_id\":\"2978313\",\"weight\":\"230\",\"id\":\"12231\",\"birthdate\":\"766904400\",\"draft_team\":\"CAR\",\"name\":\"Thompson, Shaq\",\"draft_pick\":\"25\",\"college\":\"Washington\",\"rotowire_id\":\"10034\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"ShaqThompson_7\",\"sportsdata_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"team\":\"CAR\",\"cbs_id\":\"2001231\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10513\",\"stats_id\":\"28517\",\"position\":\"LB\",\"stats_global_id\":\"558642\",\"espn_id\":\"2515337\",\"weight\":\"240\",\"id\":\"12232\",\"birthdate\":\"699166800\",\"draft_team\":\"GBP\",\"name\":\"Ryan, Jake\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"10367\",\"height\":\"74\",\"jersey\":\"47\",\"twitter_username\":\"JakeRyan_47\",\"sportsdata_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"team\":\"FA\",\"cbs_id\":\"1737498\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10510\",\"stats_id\":\"28512\",\"position\":\"LB\",\"stats_global_id\":\"651006\",\"espn_id\":\"2976541\",\"weight\":\"227\",\"id\":\"12233\",\"birthdate\":\"775890000\",\"draft_team\":\"TBB\",\"name\":\"Alexander, Kwon\",\"draft_pick\":\"25\",\"college\":\"LSU\",\"rotowire_id\":\"10360\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"kwon\",\"sportsdata_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"team\":\"NOS\",\"cbs_id\":\"1984250\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"buddupree/2552289\",\"rotoworld_id\":\"10382\",\"stats_id\":\"28410\",\"position\":\"LB\",\"stats_global_id\":\"607147\",\"espn_id\":\"2576702\",\"weight\":\"269\",\"id\":\"12234\",\"birthdate\":\"729493200\",\"draft_team\":\"PIT\",\"name\":\"Dupree, Bud\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"height\":\"76\",\"rotowire_id\":\"10351\",\"jersey\":\"48\",\"twitter_username\":\"Bud_Dupree\",\"sportsdata_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"team\":\"PIT\",\"cbs_id\":\"1877307\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ramikwilson/2552320\",\"rotoworld_id\":\"10506\",\"stats_id\":\"28506\",\"position\":\"LB\",\"stats_global_id\":\"607110\",\"espn_id\":\"2578565\",\"weight\":\"237\",\"id\":\"12237\",\"birthdate\":\"714200400\",\"draft_team\":\"KCC\",\"name\":\"Wilson, Ramik\",\"draft_pick\":\"19\",\"college\":\"Georgia\",\"height\":\"74\",\"rotowire_id\":\"10361\",\"jersey\":\"53\",\"twitter_username\":\"WilsonRamik\",\"sportsdata_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"team\":\"FA\",\"cbs_id\":\"1877298\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"denzelperryman/2552310\",\"rotoworld_id\":\"10417\",\"stats_id\":\"28436\",\"position\":\"LB\",\"stats_global_id\":\"605473\",\"espn_id\":\"2579621\",\"weight\":\"240\",\"id\":\"12238\",\"birthdate\":\"755067600\",\"draft_team\":\"SDC\",\"name\":\"Perryman, Denzel\",\"draft_pick\":\"16\",\"college\":\"Miami\",\"height\":\"71\",\"rotowire_id\":\"10356\",\"jersey\":\"52\",\"twitter_username\":\"D_Perryman52\",\"sportsdata_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"team\":\"LAC\",\"cbs_id\":\"1860814\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10362\",\"stats_id\":\"28433\",\"position\":\"LB\",\"stats_global_id\":\"553123\",\"espn_id\":\"2510863\",\"weight\":\"232\",\"id\":\"12239\",\"birthdate\":\"699339600\",\"draft_team\":\"MIN\",\"name\":\"Kendricks, Eric\",\"draft_pick\":\"13\",\"college\":\"UCLA\",\"rotowire_id\":\"10353\",\"height\":\"72\",\"jersey\":\"54\",\"twitter_username\":\"EKLA6\",\"sportsdata_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"team\":\"MIN\",\"cbs_id\":\"1737773\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13921\",\"stats_id\":\"31792\",\"position\":\"LB\",\"stats_global_id\":\"598674\",\"weight\":\"255\",\"id\":\"12241\",\"draft_team\":\"FA\",\"birthdate\":\"693550800\",\"name\":\"Johnson, Alexander\",\"college\":\"Tennessee\",\"rotowire_id\":\"13391\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"team\":\"DEN\",\"cbs_id\":\"2977040\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10455\",\"stats_id\":\"28419\",\"position\":\"LB\",\"stats_global_id\":\"602088\",\"espn_id\":\"2576482\",\"weight\":\"245\",\"id\":\"12243\",\"birthdate\":\"712299600\",\"draft_team\":\"NOS\",\"name\":\"Anthony, Stephone\",\"draft_pick\":\"31\",\"college\":\"Clemson\",\"rotowire_id\":\"10355\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"stephoneanthony\",\"sportsdata_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"team\":\"FA\",\"cbs_id\":\"1850724\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10597\",\"stats_id\":\"28612\",\"position\":\"LB\",\"stats_global_id\":\"557237\",\"espn_id\":\"2512999\",\"weight\":\"237\",\"id\":\"12244\",\"birthdate\":\"704955600\",\"draft_team\":\"STL\",\"name\":\"Hager, Bryce\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"10382\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"HagerBryce\",\"sportsdata_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"team\":\"NYJ\",\"cbs_id\":\"1762147\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"marcuspeters/2552488\",\"rotoworld_id\":\"10418\",\"stats_id\":\"28406\",\"position\":\"CB\",\"stats_global_id\":\"608013\",\"espn_id\":\"2578378\",\"weight\":\"195\",\"id\":\"12245\",\"birthdate\":\"726555600\",\"draft_team\":\"KCC\",\"name\":\"Peters, Marcus\",\"draft_pick\":\"18\",\"college\":\"Washington\",\"height\":\"72\",\"rotowire_id\":\"10407\",\"jersey\":\"24\",\"twitter_username\":\"marcuspeters\",\"sportsdata_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"team\":\"BAL\",\"cbs_id\":\"1884451\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10449\",\"stats_id\":\"28466\",\"position\":\"CB\",\"stats_global_id\":\"691535\",\"espn_id\":\"2977661\",\"weight\":\"196\",\"id\":\"12246\",\"birthdate\":\"738910800\",\"draft_team\":\"NOS\",\"name\":\"Williams, P.J.\",\"draft_pick\":\"14\",\"college\":\"Florida State\",\"rotowire_id\":\"10409\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"PjWilliams_26\",\"sportsdata_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"team\":\"NOS\",\"cbs_id\":\"1998196\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10426\",\"stats_id\":\"28399\",\"position\":\"CB\",\"stats_global_id\":\"606124\",\"espn_id\":\"2576283\",\"weight\":\"190\",\"id\":\"12248\",\"birthdate\":\"712040400\",\"draft_team\":\"MIN\",\"name\":\"Waynes, Trae\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"10028\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"TWaynes_15\",\"sportsdata_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"team\":\"CIN\",\"cbs_id\":\"1868411\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10453\",\"stats_id\":\"28404\",\"position\":\"CB\",\"stats_global_id\":\"553640\",\"espn_id\":\"2511523\",\"weight\":\"185\",\"id\":\"12249\",\"birthdate\":\"712990800\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Kevin\",\"draft_pick\":\"16\",\"college\":\"Wake Forest\",\"rotowire_id\":\"10449\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"team\":\"CLE\",\"cbs_id\":\"1759355\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"landoncollins/2552454\",\"rotoworld_id\":\"10372\",\"stats_id\":\"28421\",\"position\":\"S\",\"stats_global_id\":\"694586\",\"espn_id\":\"2979841\",\"weight\":\"218\",\"id\":\"12250\",\"birthdate\":\"758178000\",\"draft_team\":\"NYG\",\"name\":\"Collins, Landon\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"height\":\"72\",\"rotowire_id\":\"10057\",\"jersey\":\"20\",\"twitter_username\":\"TheHumble_21\",\"sportsdata_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"team\":\"WAS\",\"cbs_id\":\"2000901\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10629\",\"stats_id\":\"28838\",\"position\":\"S\",\"stats_global_id\":\"605782\",\"espn_id\":\"2577814\",\"weight\":\"202\",\"id\":\"12252\",\"draft_team\":\"FA\",\"birthdate\":\"707634000\",\"name\":\"Harris, Anthony\",\"college\":\"Virginia\",\"rotowire_id\":\"10389\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"team\":\"MIN\",\"cbs_id\":\"1865418\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9279\",\"birthdate\":\"21877200\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Quinn, Dan\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"2e347af9-be3a-43da-855a-68b994f4e40a\",\"id\":\"12255\",\"team\":\"FA\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"chrisconley/2552652\",\"rotoworld_id\":\"10432\",\"stats_id\":\"28464\",\"position\":\"WR\",\"stats_global_id\":\"591801\",\"espn_id\":\"2578533\",\"weight\":\"205\",\"id\":\"12257\",\"birthdate\":\"719989200\",\"draft_team\":\"KCC\",\"name\":\"Conley, Chris\",\"draft_pick\":\"12\",\"college\":\"Georgia\",\"height\":\"75\",\"rotowire_id\":\"10210\",\"jersey\":\"18\",\"twitter_username\":\"_Flight_31\",\"sportsdata_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"team\":\"JAC\",\"cbs_id\":\"1824756\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10413\",\"stats_id\":\"28482\",\"position\":\"RB\",\"stats_global_id\":\"598969\",\"espn_id\":\"2577134\",\"weight\":\"216\",\"id\":\"12261\",\"birthdate\":\"727678800\",\"draft_team\":\"GBP\",\"name\":\"Montgomery, Ty\",\"draft_pick\":\"30\",\"college\":\"Standford\",\"rotowire_id\":\"10216\",\"height\":\"72\",\"jersey\":\"88\",\"sportsdata_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"team\":\"NOS\",\"cbs_id\":\"1851149\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10433\",\"stats_id\":\"28592\",\"position\":\"TE\",\"stats_global_id\":\"600191\",\"espn_id\":\"2576925\",\"weight\":\"255\",\"id\":\"12263\",\"birthdate\":\"716360400\",\"draft_team\":\"BAL\",\"name\":\"Waller, Darren\",\"draft_pick\":\"28\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"10215\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"team\":\"LVR\",\"cbs_id\":\"1850793\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10429\",\"stats_id\":\"28887\",\"position\":\"RB\",\"stats_global_id\":\"568874\",\"espn_id\":\"2521161\",\"weight\":\"224\",\"id\":\"12264\",\"draft_team\":\"FA\",\"birthdate\":\"684738000\",\"name\":\"Zenner, Zach\",\"college\":\"South Dakota State\",\"rotowire_id\":\"10188\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"team\":\"FA\",\"cbs_id\":\"1825662\"},{\"draft_year\":\"2015\",\"nfl_id\":\"jordanberry/2553348\",\"rotoworld_id\":\"10450\",\"stats_id\":\"28388\",\"position\":\"PN\",\"stats_global_id\":\"516117\",\"espn_id\":\"2472364\",\"weight\":\"195\",\"id\":\"12266\",\"draft_team\":\"FA\",\"birthdate\":\"669272400\",\"name\":\"Berry, Jordan\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10172\",\"height\":\"77\",\"jersey\":\"4\",\"sportsdata_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"team\":\"PIT\",\"cbs_id\":\"2172367\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"nfl_id\":\"byronjones/2552568\",\"rotoworld_id\":\"10447\",\"stats_id\":\"28415\",\"position\":\"CB\",\"stats_global_id\":\"558666\",\"espn_id\":\"2513035\",\"weight\":\"200\",\"id\":\"12268\",\"birthdate\":\"714805200\",\"draft_team\":\"DAL\",\"name\":\"Jones, Byron\",\"draft_pick\":\"27\",\"college\":\"Connecticut\",\"height\":\"73\",\"rotowire_id\":\"10412\",\"jersey\":\"24\",\"twitter_username\":\"Byron31Jump\",\"sportsdata_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"team\":\"MIA\",\"cbs_id\":\"1763472\"},{\"draft_year\":\"2015\",\"draft_round\":\"1\",\"rotoworld_id\":\"10452\",\"stats_id\":\"28418\",\"position\":\"S\",\"stats_global_id\":\"732792\",\"espn_id\":\"3043258\",\"weight\":\"196\",\"id\":\"12269\",\"birthdate\":\"715064400\",\"draft_team\":\"GBP\",\"name\":\"Randall, Damarious\",\"draft_pick\":\"30\",\"college\":\"Arizona State\",\"rotowire_id\":\"10387\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"RandallTime\",\"sportsdata_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"team\":\"SEA\",\"cbs_id\":\"2061049\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"prestonsmith/2552276\",\"rotoworld_id\":\"10458\",\"stats_id\":\"28426\",\"position\":\"LB\",\"stats_global_id\":\"604798\",\"espn_id\":\"2577446\",\"weight\":\"265\",\"id\":\"12270\",\"birthdate\":\"721976400\",\"draft_team\":\"WAS\",\"name\":\"Smith, Preston\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"height\":\"77\",\"rotowire_id\":\"10316\",\"jersey\":\"91\",\"twitter_username\":\"PrestonSmith94\",\"sportsdata_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"team\":\"GBP\",\"cbs_id\":\"1852914\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"eddiegoldman/2552489\",\"rotoworld_id\":\"10460\",\"stats_id\":\"28427\",\"position\":\"DT\",\"stats_global_id\":\"691519\",\"espn_id\":\"2969924\",\"weight\":\"320\",\"id\":\"12271\",\"birthdate\":\"757832400\",\"draft_team\":\"CHI\",\"name\":\"Goldman, Eddie\",\"draft_pick\":\"7\",\"college\":\"Florida State\",\"height\":\"76\",\"rotowire_id\":\"10067\",\"jersey\":\"91\",\"twitter_username\":\"EddieGoldman\",\"sportsdata_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"team\":\"CHI\",\"cbs_id\":\"1998182\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10451\",\"stats_id\":\"28431\",\"position\":\"LB\",\"stats_global_id\":\"604790\",\"espn_id\":\"2577429\",\"weight\":\"257\",\"id\":\"12272\",\"birthdate\":\"722149200\",\"draft_team\":\"HOU\",\"name\":\"McKinney, Benardrick\",\"draft_pick\":\"11\",\"college\":\"Mississippi State\",\"rotowire_id\":\"10354\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"bm1157\",\"sportsdata_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"team\":\"HOU\",\"cbs_id\":\"1852910\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"rotoworld_id\":\"10476\",\"stats_id\":\"28434\",\"position\":\"S\",\"stats_global_id\":\"556639\",\"espn_id\":\"2509844\",\"weight\":\"215\",\"id\":\"12274\",\"birthdate\":\"698389200\",\"draft_team\":\"SFO\",\"name\":\"Tartt, Jaquiski\",\"draft_pick\":\"14\",\"college\":\"Samford\",\"rotowire_id\":\"10451\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"team\":\"SFO\",\"cbs_id\":\"1761394\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ericrowe/2552255\",\"rotoworld_id\":\"10459\",\"stats_id\":\"28435\",\"position\":\"S\",\"stats_global_id\":\"591940\",\"espn_id\":\"2576002\",\"weight\":\"205\",\"id\":\"12275\",\"birthdate\":\"718088400\",\"draft_team\":\"PHI\",\"name\":\"Rowe, Eric\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"height\":\"73\",\"rotowire_id\":\"10416\",\"jersey\":\"21\",\"twitter_username\":\"EricRowe32\",\"sportsdata_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"team\":\"MIA\",\"cbs_id\":\"1825060\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"ronalddarby/2552689\",\"rotoworld_id\":\"10375\",\"stats_id\":\"28438\",\"position\":\"CB\",\"stats_global_id\":\"691515\",\"espn_id\":\"2969920\",\"weight\":\"193\",\"id\":\"12276\",\"birthdate\":\"757486800\",\"draft_team\":\"BUF\",\"name\":\"Darby, Ronald\",\"draft_pick\":\"18\",\"college\":\"Florida State\",\"height\":\"71\",\"rotowire_id\":\"10408\",\"jersey\":\"23\",\"twitter_username\":\"realronalddarby\",\"sportsdata_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"team\":\"WAS\",\"cbs_id\":\"1998179\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"markusgolden/2552273\",\"rotoworld_id\":\"10480\",\"stats_id\":\"28446\",\"position\":\"LB\",\"stats_global_id\":\"689894\",\"espn_id\":\"2971432\",\"weight\":\"259\",\"id\":\"12278\",\"birthdate\":\"668840400\",\"draft_team\":\"ARI\",\"name\":\"Golden, Markus\",\"draft_pick\":\"26\",\"college\":\"Missouri\",\"height\":\"75\",\"rotowire_id\":\"10329\",\"jersey\":\"44\",\"twitter_username\":\"markusgolden\",\"sportsdata_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"team\":\"ARI\",\"cbs_id\":\"1996128\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"frankclark/2552629\",\"rotoworld_id\":\"10467\",\"stats_id\":\"28451\",\"position\":\"DE\",\"stats_global_id\":\"606080\",\"espn_id\":\"2576242\",\"weight\":\"260\",\"id\":\"12280\",\"birthdate\":\"740034000\",\"draft_team\":\"SEA\",\"name\":\"Clark, Frank\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"height\":\"75\",\"rotowire_id\":\"10322\",\"jersey\":\"55\",\"twitter_username\":\"TheRealFrankC_\",\"sportsdata_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"team\":\"KCC\",\"cbs_id\":\"1868369\"},{\"draft_year\":\"2015\",\"draft_round\":\"2\",\"nfl_id\":\"jordanrichards/2552392\",\"rotoworld_id\":\"10482\",\"stats_id\":\"28452\",\"position\":\"S\",\"stats_global_id\":\"598975\",\"espn_id\":\"2577139\",\"weight\":\"215\",\"id\":\"12281\",\"birthdate\":\"727592400\",\"draft_team\":\"NEP\",\"name\":\"Richards, Jordan\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"height\":\"71\",\"rotowire_id\":\"10399\",\"jersey\":\"39\",\"sportsdata_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"team\":\"BAL\",\"cbs_id\":\"1851154\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"jordanhicks/2552315\",\"rotoworld_id\":\"10489\",\"stats_id\":\"28472\",\"position\":\"LB\",\"stats_global_id\":\"555846\",\"espn_id\":\"2514270\",\"weight\":\"236\",\"id\":\"12287\",\"birthdate\":\"709621200\",\"draft_team\":\"PHI\",\"name\":\"Hicks, Jordan\",\"draft_pick\":\"20\",\"college\":\"Texas\",\"height\":\"73\",\"rotowire_id\":\"10452\",\"jersey\":\"58\",\"twitter_username\":\"JordanHicks\",\"sportsdata_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"team\":\"ARI\",\"cbs_id\":\"1759912\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"rotoworld_id\":\"10472\",\"stats_id\":\"28481\",\"position\":\"DE\",\"stats_global_id\":\"553067\",\"espn_id\":\"2517752\",\"weight\":\"301\",\"id\":\"12288\",\"birthdate\":\"681195600\",\"draft_team\":\"IND\",\"name\":\"Anderson, Henry\",\"draft_pick\":\"29\",\"college\":\"Stanford\",\"rotowire_id\":\"10324\",\"height\":\"78\",\"jersey\":\"96\",\"twitter_username\":\"HenryAnderson91\",\"sportsdata_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"team\":\"NYJ\",\"cbs_id\":\"1737505\"},{\"draft_year\":\"2015\",\"draft_round\":\"3\",\"nfl_id\":\"stevennelson/2552265\",\"rotoworld_id\":\"10495\",\"stats_id\":\"28486\",\"position\":\"CB\",\"stats_global_id\":\"729493\",\"espn_id\":\"3045287\",\"weight\":\"194\",\"id\":\"12291\",\"birthdate\":\"727678800\",\"draft_team\":\"KCC\",\"name\":\"Nelson, Steven\",\"draft_pick\":\"34\",\"college\":\"Oregon State\",\"height\":\"71\",\"rotowire_id\":\"10419\",\"jersey\":\"22\",\"twitter_username\":\"Nelson_Island\",\"sportsdata_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"team\":\"PIT\",\"cbs_id\":\"2061065\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"angeloblackson/2552670\",\"rotoworld_id\":\"10497\",\"stats_id\":\"28488\",\"position\":\"DE\",\"stats_global_id\":\"593288\",\"espn_id\":\"2574582\",\"weight\":\"319\",\"id\":\"12292\",\"birthdate\":\"721717200\",\"draft_team\":\"TEN\",\"name\":\"Blackson, Angelo\",\"draft_pick\":\"1\",\"college\":\"Auburn\",\"height\":\"76\",\"rotowire_id\":\"10453\",\"jersey\":\"96\",\"sportsdata_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"team\":\"ARI\",\"cbs_id\":\"1824792\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10500\",\"stats_id\":\"28497\",\"position\":\"S\",\"stats_global_id\":\"562543\",\"espn_id\":\"2519211\",\"weight\":\"220\",\"id\":\"12295\",\"birthdate\":\"707374800\",\"draft_team\":\"IND\",\"name\":\"Geathers, Clayton\",\"draft_pick\":\"10\",\"college\":\"Central Florida\",\"rotowire_id\":\"10454\",\"height\":\"74\",\"jersey\":\"26\",\"twitter_username\":\"klgeathers\",\"sportsdata_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"team\":\"FA\",\"cbs_id\":\"1767568\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"ibraheimcampbell/2552605\",\"rotoworld_id\":\"10504\",\"stats_id\":\"28503\",\"position\":\"S\",\"stats_global_id\":\"546171\",\"espn_id\":\"2511090\",\"weight\":\"210\",\"id\":\"12297\",\"birthdate\":\"705733200\",\"draft_team\":\"CLE\",\"name\":\"Campbell, Ibraheim\",\"draft_pick\":\"16\",\"college\":\"Northwestern\",\"height\":\"71\",\"rotowire_id\":\"10404\",\"jersey\":\"35\",\"twitter_username\":\"OOIbro\",\"sportsdata_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"team\":\"FA\",\"cbs_id\":\"1737451\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"rodneygunter/2553437\",\"rotoworld_id\":\"10505\",\"stats_id\":\"28504\",\"position\":\"DT\",\"stats_global_id\":\"562763\",\"espn_id\":\"2507719\",\"weight\":\"305\",\"id\":\"12298\",\"birthdate\":\"695797200\",\"draft_team\":\"ARI\",\"name\":\"Gunter, Rodney\",\"draft_pick\":\"17\",\"college\":\"Delaware State\",\"height\":\"77\",\"rotowire_id\":\"10455\",\"jersey\":\"95\",\"twitter_username\":\"KingRod90\",\"sportsdata_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"team\":\"FA\",\"cbs_id\":\"2174090\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"rotoworld_id\":\"10509\",\"stats_id\":\"28510\",\"position\":\"LB\",\"stats_global_id\":\"732570\",\"espn_id\":\"3043168\",\"weight\":\"272\",\"id\":\"12301\",\"birthdate\":\"715928400\",\"draft_team\":\"BAL\",\"name\":\"Smith, Za'Darius\",\"draft_pick\":\"23\",\"college\":\"Kentucky\",\"rotowire_id\":\"10328\",\"height\":\"76\",\"jersey\":\"55\",\"twitter_username\":\"TheRealZSmith\",\"sportsdata_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"team\":\"GBP\",\"cbs_id\":\"2061139\"},{\"draft_year\":\"2015\",\"draft_round\":\"4\",\"nfl_id\":\"damienwilson/2552686\",\"rotoworld_id\":\"10511\",\"stats_id\":\"28515\",\"position\":\"LB\",\"stats_global_id\":\"728266\",\"espn_id\":\"3040207\",\"weight\":\"245\",\"id\":\"12302\",\"birthdate\":\"738565200\",\"draft_team\":\"DAL\",\"name\":\"Wilson, Damien\",\"draft_pick\":\"28\",\"college\":\"Minnesota\",\"height\":\"72\",\"rotowire_id\":\"10374\",\"jersey\":\"54\",\"twitter_username\":\"dwilson_6\",\"sportsdata_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"team\":\"KCC\",\"cbs_id\":\"2060755\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10519\",\"stats_id\":\"28525\",\"position\":\"DT\",\"stats_global_id\":\"602098\",\"espn_id\":\"2576492\",\"weight\":\"305\",\"id\":\"12305\",\"birthdate\":\"735973200\",\"draft_team\":\"ATL\",\"name\":\"Jarrett, Grady\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"10458\",\"height\":\"72\",\"jersey\":\"97\",\"twitter_username\":\"GradyJarrett\",\"sportsdata_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"team\":\"ATL\",\"cbs_id\":\"1850730\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"adrianamos/2552385\",\"rotoworld_id\":\"10469\",\"stats_id\":\"28530\",\"position\":\"S\",\"stats_global_id\":\"609401\",\"espn_id\":\"2582132\",\"weight\":\"214\",\"id\":\"12308\",\"birthdate\":\"736059600\",\"draft_team\":\"CHI\",\"name\":\"Amos, Adrian\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"height\":\"72\",\"rotowire_id\":\"10390\",\"jersey\":\"31\",\"twitter_username\":\"SmashAmos38\",\"sportsdata_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"team\":\"GBP\",\"cbs_id\":\"1889909\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10522\",\"stats_id\":\"28531\",\"position\":\"TE\",\"stats_global_id\":\"552586\",\"espn_id\":\"2508256\",\"weight\":\"245\",\"id\":\"12309\",\"birthdate\":\"701413200\",\"draft_team\":\"MIN\",\"name\":\"Pruitt, MyCole\",\"draft_pick\":\"7\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"10251\",\"height\":\"74\",\"jersey\":\"85\",\"twitter_username\":\"flyyCole_x4\",\"sportsdata_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"team\":\"TEN\",\"cbs_id\":\"1760327\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"bobbymccain/2552434\",\"rotoworld_id\":\"10524\",\"stats_id\":\"28533\",\"position\":\"S\",\"stats_global_id\":\"592302\",\"espn_id\":\"2575606\",\"weight\":\"192\",\"id\":\"12311\",\"birthdate\":\"745650000\",\"draft_team\":\"MIA\",\"name\":\"McCain, Bobby\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"height\":\"71\",\"rotowire_id\":\"10422\",\"jersey\":\"28\",\"sportsdata_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"team\":\"MIA\",\"cbs_id\":\"1825152\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"kyleemanuel/2552296\",\"rotoworld_id\":\"10530\",\"stats_id\":\"28541\",\"position\":\"LB\",\"stats_global_id\":\"559871\",\"espn_id\":\"2508212\",\"weight\":\"250\",\"id\":\"12315\",\"birthdate\":\"682318800\",\"draft_team\":\"FA\",\"name\":\"Emanuel, Kyle\",\"draft_pick\":\"17\",\"college\":\"North Dakota State\",\"height\":\"75\",\"rotowire_id\":\"10359\",\"jersey\":\"51\",\"twitter_username\":\"KyleEmanuel51\",\"sportsdata_id\":\"bb4619b4-30e6-473d-947e-41d75a573475\",\"team\":\"HOU\",\"cbs_id\":\"1766149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10531\",\"stats_id\":\"28542\",\"position\":\"DT\",\"stats_global_id\":\"562339\",\"espn_id\":\"2517230\",\"weight\":\"309\",\"id\":\"12316\",\"birthdate\":\"717224400\",\"draft_team\":\"NOS\",\"name\":\"Davison, Tyeler\",\"draft_pick\":\"18\",\"college\":\"Fresno State\",\"rotowire_id\":\"10325\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"DavisonTyeler\",\"sportsdata_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"team\":\"ATL\",\"cbs_id\":\"1766827\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"c.j.uzomah/2552559\",\"rotoworld_id\":\"10534\",\"stats_id\":\"28545\",\"position\":\"TE\",\"stats_global_id\":\"593305\",\"espn_id\":\"2574576\",\"weight\":\"260\",\"id\":\"12317\",\"birthdate\":\"726987600\",\"draft_team\":\"CIN\",\"name\":\"Uzomah, C.J.\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"height\":\"78\",\"rotowire_id\":\"10462\",\"jersey\":\"87\",\"twitter_username\":\"cjuzomah81\",\"sportsdata_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"team\":\"CIN\",\"cbs_id\":\"2174118\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"j.j.nelson/2552656\",\"rotoworld_id\":\"10536\",\"stats_id\":\"28547\",\"position\":\"WR\",\"stats_global_id\":\"557431\",\"espn_id\":\"2515759\",\"weight\":\"160\",\"id\":\"12319\",\"birthdate\":\"704091600\",\"draft_team\":\"ARI\",\"name\":\"Nelson, J.J.\",\"draft_pick\":\"23\",\"college\":\"UAB\",\"height\":\"70\",\"rotowire_id\":\"10244\",\"jersey\":\"15\",\"twitter_username\":\"_ThaJizzleMan\",\"sportsdata_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"team\":\"FA\",\"cbs_id\":\"2174122\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10541\",\"stats_id\":\"28553\",\"position\":\"PN\",\"stats_global_id\":\"653095\",\"espn_id\":\"2977680\",\"weight\":\"229\",\"id\":\"12323\",\"birthdate\":\"770446800\",\"draft_team\":\"SFO\",\"name\":\"Pinion, Bradley\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"10466\",\"height\":\"77\",\"jersey\":\"8\",\"twitter_username\":\"pinion92\",\"sportsdata_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"team\":\"TBB\",\"cbs_id\":\"1983525\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10544\",\"stats_id\":\"28556\",\"position\":\"RB\",\"stats_global_id\":\"556483\",\"espn_id\":\"2515270\",\"weight\":\"240\",\"id\":\"12325\",\"birthdate\":\"696920400\",\"draft_team\":\"DET\",\"name\":\"Burton, Michael\",\"draft_pick\":\"32\",\"college\":\"Rutgers\",\"rotowire_id\":\"10468\",\"height\":\"72\",\"jersey\":\"32\",\"twitter_username\":\"MikeBurtonFB\",\"sportsdata_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"team\":\"NOS\",\"cbs_id\":\"1759407\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10545\",\"stats_id\":\"28557\",\"position\":\"LB\",\"stats_global_id\":\"693395\",\"espn_id\":\"2972400\",\"weight\":\"240\",\"id\":\"12326\",\"birthdate\":\"745650000\",\"draft_team\":\"CAR\",\"name\":\"Mayo, David\",\"draft_pick\":\"33\",\"college\":\"Texas State\",\"rotowire_id\":\"10469\",\"height\":\"74\",\"jersey\":\"55\",\"twitter_username\":\"Mayo_Man_3\",\"sportsdata_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"team\":\"NYG\",\"cbs_id\":\"2174117\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"tyesmith/2552449\",\"rotoworld_id\":\"10546\",\"stats_id\":\"28558\",\"position\":\"CB\",\"stats_global_id\":\"614015\",\"espn_id\":\"2588098\",\"weight\":\"195\",\"id\":\"12327\",\"birthdate\":\"736405200\",\"draft_team\":\"SEA\",\"name\":\"Smith, Tye\",\"draft_pick\":\"34\",\"college\":\"Towson\",\"height\":\"72\",\"rotowire_id\":\"10470\",\"jersey\":\"23\",\"twitter_username\":\"TyeSmithCB\",\"sportsdata_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"team\":\"TEN\",\"cbs_id\":\"1907299\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10547\",\"stats_id\":\"28559\",\"position\":\"TE\",\"stats_global_id\":\"608753\",\"espn_id\":\"2574591\",\"weight\":\"270\",\"id\":\"12328\",\"birthdate\":\"729925200\",\"draft_team\":\"BAL\",\"name\":\"Boyle, Nick\",\"draft_pick\":\"35\",\"college\":\"Delaware\",\"rotowire_id\":\"10252\",\"height\":\"76\",\"jersey\":\"86\",\"twitter_username\":\"nickboyle86\",\"sportsdata_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"team\":\"BAL\",\"cbs_id\":\"1888149\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"nfl_id\":\"d.j.alexander/2553442\",\"rotoworld_id\":\"10548\",\"stats_id\":\"28560\",\"position\":\"LB\",\"stats_global_id\":\"715356\",\"espn_id\":\"3001171\",\"weight\":\"233\",\"id\":\"12329\",\"birthdate\":\"686206800\",\"draft_team\":\"KCC\",\"name\":\"Alexander, D.J.\",\"draft_pick\":\"36\",\"college\":\"Oregon State\",\"height\":\"74\",\"rotowire_id\":\"10471\",\"jersey\":\"59\",\"twitter_username\":\"D_alexander57\",\"sportsdata_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"team\":\"FA\",\"cbs_id\":\"2174119\"},{\"draft_year\":\"2015\",\"draft_round\":\"5\",\"rotoworld_id\":\"10549\",\"stats_id\":\"28561\",\"position\":\"TE\",\"stats_global_id\":\"552352\",\"espn_id\":\"2508079\",\"weight\":\"245\",\"id\":\"12330\",\"birthdate\":\"695365200\",\"draft_team\":\"KCC\",\"name\":\"O'Shaughnessy, James\",\"draft_pick\":\"37\",\"college\":\"Illinois State\",\"rotowire_id\":\"10249\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"team\":\"JAC\",\"cbs_id\":\"2174148\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"geremydavis/2552654\",\"rotoworld_id\":\"10561\",\"stats_id\":\"28574\",\"position\":\"WR\",\"stats_global_id\":\"558661\",\"espn_id\":\"2513030\",\"weight\":\"211\",\"id\":\"12338\",\"birthdate\":\"695019600\",\"draft_team\":\"NYG\",\"name\":\"Davis, Geremy\",\"draft_pick\":\"10\",\"college\":\"Connecticut\",\"height\":\"75\",\"rotowire_id\":\"10476\",\"jersey\":\"11\",\"twitter_username\":\"gday85\",\"sportsdata_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"team\":\"FA\",\"cbs_id\":\"1763468\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10574\",\"stats_id\":\"28588\",\"position\":\"S\",\"stats_global_id\":\"590672\",\"espn_id\":\"2577553\",\"weight\":\"197\",\"id\":\"12349\",\"birthdate\":\"689490000\",\"draft_team\":\"DET\",\"name\":\"Diggs, Quandre\",\"draft_pick\":\"24\",\"college\":\"Texas\",\"rotowire_id\":\"10433\",\"height\":\"69\",\"jersey\":\"37\",\"twitter_username\":\"qdiggs6\",\"sportsdata_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"team\":\"SEA\",\"cbs_id\":\"1824891\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"anthonychickillo/2552266\",\"rotoworld_id\":\"10584\",\"stats_id\":\"28600\",\"position\":\"LB\",\"stats_global_id\":\"605461\",\"espn_id\":\"2579601\",\"weight\":\"255\",\"id\":\"12358\",\"birthdate\":\"723963600\",\"draft_team\":\"PIT\",\"name\":\"Chickillo, Anthony\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"height\":\"75\",\"rotowire_id\":\"10331\",\"jersey\":\"56\",\"twitter_username\":\"Chickillo56\",\"sportsdata_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"team\":\"DEN\",\"cbs_id\":\"1860808\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"rotoworld_id\":\"10589\",\"stats_id\":\"28604\",\"position\":\"DT\",\"stats_global_id\":\"609889\",\"espn_id\":\"2580666\",\"weight\":\"300\",\"id\":\"12360\",\"birthdate\":\"750747600\",\"draft_team\":\"HOU\",\"name\":\"Covington, Christian\",\"draft_pick\":\"40\",\"college\":\"Rice\",\"rotowire_id\":\"10333\",\"height\":\"74\",\"jersey\":\"99\",\"twitter_username\":\"thetangibleC4\",\"sportsdata_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"team\":\"CIN\",\"cbs_id\":\"1892122\"},{\"draft_year\":\"2015\",\"draft_round\":\"6\",\"nfl_id\":\"rakeemnunez-roches/2552674\",\"rotoworld_id\":\"10590\",\"stats_id\":\"28605\",\"position\":\"DT\",\"stats_global_id\":\"602792\",\"espn_id\":\"2575453\",\"weight\":\"307\",\"id\":\"12361\",\"birthdate\":\"741675600\",\"draft_team\":\"KCC\",\"name\":\"Nunez-Roches, Rakeem\",\"draft_pick\":\"41\",\"college\":\"Southern Miss\",\"height\":\"74\",\"rotowire_id\":\"10339\",\"jersey\":\"56\",\"sportsdata_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"team\":\"TBB\",\"cbs_id\":\"1851299\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10603\",\"stats_id\":\"28618\",\"position\":\"RB\",\"stats_global_id\":\"553238\",\"espn_id\":\"2514123\",\"weight\":\"195\",\"id\":\"12367\",\"birthdate\":\"686466000\",\"draft_team\":\"NOS\",\"name\":\"Murphy, Marcus\",\"draft_pick\":\"13\",\"college\":\"Missouri\",\"rotowire_id\":\"10200\",\"height\":\"69\",\"jersey\":\"22\",\"twitter_username\":\"mmurphy6\",\"sportsdata_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"team\":\"FA\",\"cbs_id\":\"2174220\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10605\",\"stats_id\":\"28620\",\"position\":\"LB\",\"stats_global_id\":\"845648\",\"espn_id\":\"3137087\",\"weight\":\"245\",\"id\":\"12369\",\"birthdate\":\"698821200\",\"draft_team\":\"MIN\",\"name\":\"Robinson, Edmond\",\"draft_pick\":\"15\",\"college\":\"Newberry\",\"rotowire_id\":\"10497\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"AAP_30\",\"sportsdata_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"team\":\"ATL\",\"cbs_id\":\"2174218\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"marknzeocha/2552684\",\"rotoworld_id\":\"10609\",\"stats_id\":\"28624\",\"position\":\"LB\",\"stats_global_id\":\"592426\",\"espn_id\":\"2576030\",\"weight\":\"235\",\"id\":\"12372\",\"birthdate\":\"631170000\",\"draft_team\":\"DAL\",\"name\":\"Nzeocha, Mark\",\"draft_pick\":\"19\",\"college\":\"Wyoming\",\"height\":\"75\",\"rotowire_id\":\"10385\",\"jersey\":\"53\",\"twitter_username\":\"MNzeocha\",\"sportsdata_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"team\":\"SFO\",\"cbs_id\":\"1825096\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"geoffswaim/2553454\",\"rotoworld_id\":\"10617\",\"stats_id\":\"28634\",\"position\":\"TE\",\"stats_global_id\":\"728021\",\"espn_id\":\"3046704\",\"weight\":\"260\",\"id\":\"12378\",\"birthdate\":\"748155600\",\"draft_team\":\"DAL\",\"name\":\"Swaim, Geoff\",\"draft_pick\":\"29\",\"college\":\"Texas\",\"height\":\"76\",\"rotowire_id\":\"10507\",\"jersey\":\"87\",\"sportsdata_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"team\":\"TEN\",\"cbs_id\":\"2174207\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"darrylroberts/2553353\",\"rotoworld_id\":\"10620\",\"stats_id\":\"28635\",\"position\":\"CB\",\"stats_global_id\":\"560606\",\"espn_id\":\"2515490\",\"weight\":\"182\",\"id\":\"12379\",\"birthdate\":\"659595600\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Darryl\",\"draft_pick\":\"30\",\"college\":\"Marshall\",\"height\":\"72\",\"rotowire_id\":\"10427\",\"jersey\":\"29\",\"twitter_username\":\"_SwaggDee\",\"sportsdata_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"team\":\"DET\",\"cbs_id\":\"2174219\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"rotoworld_id\":\"10621\",\"stats_id\":\"28637\",\"position\":\"CB\",\"stats_global_id\":\"558962\",\"espn_id\":\"2509574\",\"weight\":\"215\",\"id\":\"12380\",\"birthdate\":\"715064400\",\"draft_team\":\"ATL\",\"name\":\"King, Akeem\",\"draft_pick\":\"32\",\"college\":\"San Jose State\",\"rotowire_id\":\"10509\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"team\":\"FA\",\"cbs_id\":\"2174205\"},{\"draft_year\":\"2015\",\"draft_round\":\"7\",\"nfl_id\":\"trevorsiemian/2553457\",\"rotoworld_id\":\"10622\",\"stats_id\":\"28638\",\"position\":\"QB\",\"stats_global_id\":\"546184\",\"espn_id\":\"2511109\",\"weight\":\"220\",\"id\":\"12381\",\"birthdate\":\"693723600\",\"draft_team\":\"DEN\",\"name\":\"Siemian, Trevor\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"height\":\"75\",\"rotowire_id\":\"10483\",\"jersey\":\"19\",\"sportsdata_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"team\":\"NOS\",\"cbs_id\":\"2174210\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10674\",\"stats_id\":\"28990\",\"position\":\"RB\",\"stats_global_id\":\"604724\",\"espn_id\":\"2570986\",\"weight\":\"222\",\"id\":\"12386\",\"draft_team\":\"FA\",\"birthdate\":\"737442000\",\"name\":\"Brown, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"10202\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"team\":\"LAR\",\"cbs_id\":\"1852916\"},{\"draft_year\":\"2015\",\"nfl_id\":\"tyrellwilliams/2553913\",\"rotoworld_id\":\"10694\",\"stats_id\":\"28691\",\"position\":\"WR\",\"stats_global_id\":\"618715\",\"espn_id\":\"2587819\",\"weight\":\"205\",\"id\":\"12391\",\"draft_team\":\"FA\",\"birthdate\":\"697870800\",\"name\":\"Williams, Tyrell\",\"college\":\"Western Oregon\",\"rotowire_id\":\"10552\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"team\":\"LVR\",\"cbs_id\":\"2175352\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deandrecarter/2553502\",\"rotoworld_id\":\"10738\",\"stats_id\":\"28947\",\"position\":\"WR\",\"stats_global_id\":\"612512\",\"espn_id\":\"2580216\",\"weight\":\"190\",\"id\":\"12394\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Carter, DeAndre\",\"college\":\"Sacramento State\",\"rotowire_id\":\"10234\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"team\":\"CHI\",\"cbs_id\":\"2174795\"},{\"draft_year\":\"2015\",\"nfl_id\":\"coreygrant/2553650\",\"rotoworld_id\":\"10678\",\"stats_id\":\"28847\",\"position\":\"RB\",\"stats_global_id\":\"557163\",\"espn_id\":\"2515934\",\"weight\":\"203\",\"id\":\"12402\",\"draft_team\":\"FA\",\"birthdate\":\"693118800\",\"name\":\"Grant, Corey\",\"college\":\"Auburn\",\"rotowire_id\":\"10196\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"team\":\"FA\",\"cbs_id\":\"2174896\"},{\"draft_year\":\"2015\",\"nfl_id\":\"joshlambo/2553833\",\"rotoworld_id\":\"10708\",\"stats_id\":\"28685\",\"position\":\"PK\",\"stats_global_id\":\"710671\",\"espn_id\":\"2998120\",\"weight\":\"215\",\"id\":\"12417\",\"draft_team\":\"FA\",\"birthdate\":\"658990800\",\"name\":\"Lambo, Josh\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10438\",\"height\":\"72\",\"jersey\":\"4\",\"sportsdata_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"team\":\"JAC\",\"cbs_id\":\"2013049\"},{\"draft_year\":\"2015\",\"nfl_id\":\"xavierwilliams/2553764\",\"rotoworld_id\":\"10885\",\"stats_id\":\"28815\",\"position\":\"DT\",\"stats_global_id\":\"552438\",\"espn_id\":\"2508191\",\"weight\":\"309\",\"id\":\"12428\",\"draft_team\":\"FA\",\"birthdate\":\"695710800\",\"name\":\"Williams, Xavier\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"10675\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"team\":\"CIN\",\"cbs_id\":\"2175001\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10695\",\"stats_id\":\"28800\",\"position\":\"WR\",\"stats_global_id\":\"557177\",\"espn_id\":\"2515962\",\"weight\":\"195\",\"id\":\"12429\",\"draft_team\":\"FA\",\"birthdate\":\"687589200\",\"name\":\"White, DeAndrew\",\"college\":\"Alabama\",\"rotowire_id\":\"10243\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"team\":\"BAL\",\"cbs_id\":\"1737194\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10436\",\"stats_id\":\"28378\",\"position\":\"PK\",\"stats_global_id\":\"518088\",\"espn_id\":\"2473037\",\"weight\":\"190\",\"id\":\"12437\",\"draft_team\":\"FA\",\"birthdate\":\"674024400\",\"name\":\"Myers, Jason\",\"college\":\"Marist\",\"rotowire_id\":\"10157\",\"height\":\"70\",\"jersey\":\"5\",\"sportsdata_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"team\":\"SEA\",\"cbs_id\":\"2169640\"},{\"draft_year\":\"2017\",\"nfl_id\":\"jakekumerow/2553548\",\"rotoworld_id\":\"10867\",\"stats_id\":\"28974\",\"position\":\"WR\",\"stats_global_id\":\"558619\",\"espn_id\":\"3085107\",\"weight\":\"209\",\"id\":\"12443\",\"draft_team\":\"FA\",\"birthdate\":\"698302800\",\"name\":\"Kumerow, Jake\",\"college\":\"Wisconsin-Whitewater\",\"rotowire_id\":\"10544\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"team\":\"BUF\",\"cbs_id\":\"2174839\"},{\"draft_year\":\"2015\",\"nfl_id\":\"rodsmith/2553743\",\"rotoworld_id\":\"10784\",\"stats_id\":\"28718\",\"position\":\"RB\",\"stats_global_id\":\"553688\",\"espn_id\":\"2512197\",\"weight\":\"236\",\"id\":\"12444\",\"draft_team\":\"FA\",\"birthdate\":\"695019600\",\"name\":\"Smith, Rod\",\"college\":\"Ohio State\",\"rotowire_id\":\"10630\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"team\":\"FA\",\"cbs_id\":\"2174975\"},{\"draft_year\":\"2015\",\"nfl_id\":\"raheemmostert/2553728\",\"rotoworld_id\":\"10744\",\"stats_id\":\"28654\",\"position\":\"RB\",\"stats_global_id\":\"606501\",\"espn_id\":\"2576414\",\"weight\":\"205\",\"id\":\"12447\",\"draft_team\":\"FA\",\"birthdate\":\"702795600\",\"name\":\"Mostert, Raheem\",\"college\":\"Purdue\",\"rotowire_id\":\"10604\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"team\":\"SFO\",\"cbs_id\":\"2174957\"},{\"draft_year\":\"2015\",\"nfl_id\":\"quintondunbar/2553796\",\"rotoworld_id\":\"11078\",\"stats_id\":\"29077\",\"position\":\"CB\",\"stats_global_id\":\"557183\",\"espn_id\":\"2516049\",\"weight\":\"197\",\"id\":\"12448\",\"draft_team\":\"FA\",\"birthdate\":\"711781200\",\"name\":\"Dunbar, Quinton\",\"college\":\"Florida\",\"rotowire_id\":\"10706\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"team\":\"SEA\",\"cbs_id\":\"2175081\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10795\",\"stats_id\":\"28730\",\"position\":\"WR\",\"stats_global_id\":\"604908\",\"espn_id\":\"2577667\",\"weight\":\"180\",\"id\":\"12464\",\"draft_team\":\"FA\",\"birthdate\":\"728110800\",\"name\":\"Byrd, Damiere\",\"college\":\"South Carolina\",\"rotowire_id\":\"10524\",\"height\":\"69\",\"jersey\":\"10\",\"sportsdata_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"team\":\"NEP\",\"cbs_id\":\"2174809\"},{\"draft_year\":\"2015\",\"nfl_id\":\"cameronmeredith/2553568\",\"rotoworld_id\":\"10770\",\"stats_id\":\"28697\",\"position\":\"WR\",\"stats_global_id\":\"563357\",\"espn_id\":\"2520698\",\"weight\":\"207\",\"id\":\"12465\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"Meredith, Cameron\",\"college\":\"Illinois State\",\"rotowire_id\":\"10533\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"team\":\"FA\",\"cbs_id\":\"2174833\"},{\"draft_year\":\"2014\",\"nfl_id\":\"sethroberts/2550597\",\"rotoworld_id\":\"10142\",\"stats_id\":\"28214\",\"position\":\"WR\",\"stats_global_id\":\"704254\",\"espn_id\":\"17402\",\"weight\":\"195\",\"id\":\"12471\",\"draft_team\":\"FA\",\"birthdate\":\"667198800\",\"name\":\"Roberts, Seth\",\"college\":\"West Alabama\",\"rotowire_id\":\"10112\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"team\":\"FA\",\"cbs_id\":\"2130880\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11108\",\"stats_id\":\"29114\",\"position\":\"DT\",\"stats_global_id\":\"600757\",\"espn_id\":\"2577757\",\"weight\":\"299\",\"id\":\"12474\",\"draft_team\":\"FA\",\"birthdate\":\"722494800\",\"name\":\"McGill, T.Y.\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10660\",\"height\":\"72\",\"jersey\":\"76\",\"sportsdata_id\":\"07c51c65-489b-4bae-b997-f1a0f35deffe\",\"team\":\"PHI\",\"cbs_id\":\"2175354\"},{\"draft_year\":\"2015\",\"nfl_id\":\"kharilee/2553552\",\"rotoworld_id\":\"10723\",\"stats_id\":\"28893\",\"position\":\"TE\",\"stats_global_id\":\"846695\",\"espn_id\":\"3144062\",\"weight\":\"253\",\"id\":\"12479\",\"draft_team\":\"FA\",\"birthdate\":\"695538000\",\"name\":\"Lee, Khari\",\"college\":\"Bowie State\",\"rotowire_id\":\"10503\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"team\":\"FA\",\"cbs_id\":\"2174887\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nevillehewitt/2553657\",\"rotoworld_id\":\"10992\",\"stats_id\":\"28935\",\"position\":\"LB\",\"stats_global_id\":\"749760\",\"espn_id\":\"3059880\",\"weight\":\"234\",\"id\":\"12481\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Hewitt, Neville\",\"college\":\"Marshall\",\"rotowire_id\":\"10673\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"team\":\"NYJ\",\"cbs_id\":\"2174826\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10797\",\"stats_id\":\"28732\",\"position\":\"S\",\"stats_global_id\":\"561327\",\"espn_id\":\"2519038\",\"weight\":\"208\",\"id\":\"12486\",\"draft_team\":\"FA\",\"birthdate\":\"712040400\",\"name\":\"Marlowe, Dean\",\"college\":\"James Madison\",\"rotowire_id\":\"10526\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"team\":\"BUF\",\"cbs_id\":\"1767514\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"9037\",\"stats_id\":\"27259\",\"position\":\"LB\",\"stats_global_id\":\"501339\",\"espn_id\":\"16393\",\"weight\":\"263\",\"id\":\"12489\",\"draft_team\":\"FA\",\"birthdate\":\"678430800\",\"name\":\"Copeland, Brandon\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"9806\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"team\":\"NEP\",\"cbs_id\":\"2059172\"},{\"draft_year\":\"2015\",\"nfl_id\":\"nickdzubnar/2553877\",\"rotoworld_id\":\"10759\",\"stats_id\":\"28679\",\"position\":\"LB\",\"stats_global_id\":\"557820\",\"espn_id\":\"2518789\",\"weight\":\"240\",\"id\":\"12494\",\"draft_team\":\"FA\",\"birthdate\":\"682232400\",\"name\":\"Dzubnar, Nick\",\"college\":\"Cal Poly\",\"rotowire_id\":\"10684\",\"height\":\"73\",\"jersey\":\"49\",\"sportsdata_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"team\":\"TEN\",\"cbs_id\":\"2175142\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11072\",\"stats_id\":\"29070\",\"position\":\"WR\",\"stats_global_id\":\"602096\",\"espn_id\":\"2576491\",\"weight\":\"195\",\"id\":\"12505\",\"draft_team\":\"FA\",\"birthdate\":\"740898000\",\"name\":\"Humphries, Adam\",\"college\":\"Clemson\",\"rotowire_id\":\"10680\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"team\":\"TEN\",\"cbs_id\":\"2175124\"},{\"draft_year\":\"2015\",\"nfl_id\":\"brycecallahan/2553500\",\"rotoworld_id\":\"10728\",\"stats_id\":\"28705\",\"position\":\"CB\",\"stats_global_id\":\"550948\",\"espn_id\":\"2515641\",\"weight\":\"188\",\"id\":\"12506\",\"draft_team\":\"FA\",\"birthdate\":\"688194000\",\"name\":\"Callahan, Bryce\",\"college\":\"Rice\",\"rotowire_id\":\"10429\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"team\":\"DEN\",\"cbs_id\":\"2174829\"},{\"draft_year\":\"2015\",\"nfl_id\":\"justincoleman/2553637\",\"rotoworld_id\":\"10927\",\"stats_id\":\"28835\",\"position\":\"CB\",\"stats_global_id\":\"590027\",\"espn_id\":\"2577707\",\"weight\":\"190\",\"id\":\"12523\",\"draft_team\":\"FA\",\"birthdate\":\"733208400\",\"name\":\"Coleman, Justin\",\"college\":\"Tennessee\",\"rotowire_id\":\"10430\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"team\":\"DET\",\"cbs_id\":\"1824775\"},{\"draft_year\":\"2014\",\"rotoworld_id\":\"10034\",\"stats_id\":\"28089\",\"position\":\"LB\",\"stats_global_id\":\"563762\",\"espn_id\":\"17266\",\"weight\":\"233\",\"id\":\"12525\",\"draft_team\":\"FA\",\"birthdate\":\"673506000\",\"name\":\"Thomas, Joe\",\"college\":\"South Carolina State\",\"rotowire_id\":\"10091\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"team\":\"DAL\",\"cbs_id\":\"2130188\"},{\"draft_year\":\"2015\",\"nfl_id\":\"davidirving/2553805\",\"rotoworld_id\":\"10959\",\"stats_id\":\"29096\",\"position\":\"DT\",\"stats_global_id\":\"599100\",\"espn_id\":\"2577162\",\"weight\":\"290\",\"id\":\"12536\",\"draft_team\":\"FA\",\"birthdate\":\"745650000\",\"name\":\"Irving, David\",\"college\":\"Iowa State\",\"rotowire_id\":\"10341\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"9061a751-bfd4-41f5-a585-9f3b20708b94\",\"team\":\"LVR\",\"cbs_id\":\"2175059\"},{\"draft_year\":\"2015\",\"nfl_id\":\"deshazoreverett/2553710\",\"rotoworld_id\":\"10639\",\"stats_id\":\"28785\",\"position\":\"S\",\"stats_global_id\":\"593588\",\"espn_id\":\"2578692\",\"weight\":\"203\",\"id\":\"12544\",\"draft_team\":\"FA\",\"birthdate\":\"698734800\",\"name\":\"Everett, Deshazor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10701\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"team\":\"WAS\",\"cbs_id\":\"2174979\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11092\",\"stats_id\":\"29102\",\"position\":\"TE\",\"stats_global_id\":\"561380\",\"espn_id\":\"2519013\",\"weight\":\"247\",\"id\":\"12585\",\"draft_team\":\"FA\",\"birthdate\":\"706856400\",\"name\":\"Brown, Daniel\",\"college\":\"James Madison\",\"rotowire_id\":\"10713\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"team\":\"NYJ\",\"cbs_id\":\"2175305\"},{\"draft_year\":\"2015\",\"nfl_id\":\"dariusjennings/2553896\",\"rotoworld_id\":\"11046\",\"stats_id\":\"29038\",\"position\":\"WR\",\"stats_global_id\":\"605784\",\"espn_id\":\"2577808\",\"weight\":\"180\",\"id\":\"12586\",\"draft_team\":\"FA\",\"birthdate\":\"709707600\",\"name\":\"Jennings, Darius\",\"college\":\"Virginia\",\"rotowire_id\":\"10718\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"team\":\"FA\",\"cbs_id\":\"2175101\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10649\",\"stats_id\":\"28972\",\"position\":\"CB\",\"stats_global_id\":\"573471\",\"espn_id\":\"2525933\",\"weight\":\"183\",\"id\":\"12589\",\"draft_team\":\"FA\",\"birthdate\":\"683442000\",\"name\":\"Hill, Troy\",\"college\":\"Oregon\",\"rotowire_id\":\"10423\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"team\":\"LAR\",\"cbs_id\":\"1737362\"},{\"draft_year\":\"2015\",\"nfl_id\":\"mattlacosse/2553667\",\"rotoworld_id\":\"10980\",\"stats_id\":\"28875\",\"position\":\"TE\",\"stats_global_id\":\"606055\",\"espn_id\":\"2576179\",\"weight\":\"255\",\"id\":\"12596\",\"draft_team\":\"FA\",\"birthdate\":\"717051600\",\"name\":\"LaCosse, Matt\",\"college\":\"Illinois\",\"rotowire_id\":\"10727\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"team\":\"NEP\",\"cbs_id\":\"2174931\"},{\"draft_year\":\"2013\",\"nfl_id\":\"jameswinchester/2542357\",\"rotoworld_id\":\"9263\",\"stats_id\":\"27494\",\"position\":\"TE\",\"stats_global_id\":\"472623\",\"espn_id\":\"16665\",\"weight\":\"240\",\"id\":\"12608\",\"draft_team\":\"FA\",\"birthdate\":\"618382800\",\"name\":\"Winchester, James\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10606\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"team\":\"KCC\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11257\",\"stats_id\":\"29236\",\"position\":\"QB\",\"stats_global_id\":\"613866\",\"espn_id\":\"2573079\",\"weight\":\"237\",\"id\":\"12610\",\"birthdate\":\"725691600\",\"draft_team\":\"PHI\",\"name\":\"Wentz, Carson\",\"draft_pick\":\"2\",\"college\":\"North Dakota State\",\"rotowire_id\":\"10856\",\"height\":\"77\",\"jersey\":\"11\",\"twitter_username\":\"cj_wentz\",\"sportsdata_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"team\":\"PHI\",\"cbs_id\":\"1907522\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11205\",\"stats_id\":\"29235\",\"position\":\"QB\",\"stats_global_id\":\"727837\",\"espn_id\":\"3046779\",\"weight\":\"222\",\"id\":\"12611\",\"birthdate\":\"782110800\",\"draft_team\":\"RAM\",\"name\":\"Goff, Jared\",\"draft_pick\":\"1\",\"college\":\"California\",\"rotowire_id\":\"10729\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"JaredGoff16\",\"sportsdata_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"team\":\"LAR\",\"cbs_id\":\"2061053\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11206\",\"stats_id\":\"29260\",\"position\":\"QB\",\"stats_global_id\":\"693356\",\"espn_id\":\"2977881\",\"weight\":\"244\",\"id\":\"12612\",\"birthdate\":\"761029200\",\"draft_team\":\"DEN\",\"name\":\"Lynch, Paxton\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"10730\",\"height\":\"79\",\"jersey\":\"2\",\"twitter_username\":\"PaxtonLynch\",\"sportsdata_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"team\":\"FA\",\"cbs_id\":\"1999663\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"10325\",\"stats_id\":\"29373\",\"position\":\"QB\",\"stats_global_id\":\"653682\",\"espn_id\":\"2976299\",\"weight\":\"250\",\"id\":\"12615\",\"birthdate\":\"717742800\",\"draft_team\":\"BUF\",\"name\":\"Jones, Cardale\",\"draft_pick\":\"41\",\"college\":\"Ohio State\",\"rotowire_id\":\"11007\",\"height\":\"77\",\"jersey\":\"7\",\"twitter_username\":\"Cardale7_\",\"sportsdata_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"team\":\"FA\",\"cbs_id\":\"1983783\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11341\",\"stats_id\":\"29325\",\"position\":\"QB\",\"stats_global_id\":\"607047\",\"espn_id\":\"2578570\",\"weight\":\"238\",\"id\":\"12616\",\"birthdate\":\"724050000\",\"draft_team\":\"NEP\",\"name\":\"Brissett, Jacoby\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10919\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"JBrissett12\",\"sportsdata_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"team\":\"IND\",\"cbs_id\":\"1877247\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11305\",\"stats_id\":\"29327\",\"position\":\"QB\",\"stats_global_id\":\"591847\",\"espn_id\":\"2577243\",\"weight\":\"215\",\"id\":\"12617\",\"birthdate\":\"737096400\",\"draft_team\":\"CLE\",\"name\":\"Kessler, Cody\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11090\",\"height\":\"73\",\"jersey\":\"2\",\"twitter_username\":\"CodyKessler6\",\"sportsdata_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"team\":\"FA\",\"cbs_id\":\"1824713\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11318\",\"stats_id\":\"29369\",\"position\":\"QB\",\"stats_global_id\":\"591816\",\"espn_id\":\"2577417\",\"weight\":\"235\",\"id\":\"12620\",\"birthdate\":\"743922000\",\"draft_team\":\"DAL\",\"name\":\"Prescott, Dak\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11008\",\"height\":\"74\",\"jersey\":\"4\",\"twitter_username\":\"dak\",\"sportsdata_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"team\":\"DAL\",\"cbs_id\":\"1824864\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11488\",\"stats_id\":\"29435\",\"position\":\"QB\",\"stats_global_id\":\"604390\",\"espn_id\":\"2574511\",\"weight\":\"209\",\"id\":\"12621\",\"birthdate\":\"715669200\",\"draft_team\":\"JAC\",\"name\":\"Allen, Brandon\",\"draft_pick\":\"26\",\"college\":\"Arkansas\",\"rotowire_id\":\"10882\",\"height\":\"74\",\"jersey\":\"8\",\"twitter_username\":\"BrandonAllen_10\",\"sportsdata_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"team\":\"CIN\",\"cbs_id\":\"1852876\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11340\",\"stats_id\":\"29441\",\"position\":\"QB\",\"stats_global_id\":\"592538\",\"espn_id\":\"2574630\",\"weight\":\"235\",\"id\":\"12623\",\"birthdate\":\"735541200\",\"draft_team\":\"SFO\",\"name\":\"Driskel, Jeff\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11026\",\"height\":\"76\",\"jersey\":\"9\",\"twitter_username\":\"jeffdriskel\",\"sportsdata_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"team\":\"DEN\",\"cbs_id\":\"1824745\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11265\",\"stats_id\":\"29238\",\"position\":\"RB\",\"stats_global_id\":\"728338\",\"espn_id\":\"3051392\",\"weight\":\"228\",\"id\":\"12625\",\"birthdate\":\"806389200\",\"draft_team\":\"DAL\",\"name\":\"Elliott, Ezekiel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"10736\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"EzekielElliott\",\"sportsdata_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2060769\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11238\",\"stats_id\":\"29279\",\"position\":\"RB\",\"stats_global_id\":\"732145\",\"espn_id\":\"3043078\",\"weight\":\"247\",\"id\":\"12626\",\"birthdate\":\"757659600\",\"draft_team\":\"TEN\",\"name\":\"Henry, Derrick\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"10819\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"KingHenry_2\",\"sportsdata_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"team\":\"TEN\",\"cbs_id\":\"2061188\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11319\",\"stats_id\":\"29324\",\"position\":\"RB\",\"stats_global_id\":\"697479\",\"espn_id\":\"2980148\",\"weight\":\"225\",\"id\":\"12627\",\"birthdate\":\"769410000\",\"draft_team\":\"SEA\",\"name\":\"Prosise, C.J.\",\"draft_pick\":\"27\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10738\",\"height\":\"73\",\"jersey\":\"22\",\"twitter_username\":\"Prosisely_22\",\"sportsdata_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"team\":\"HOU\",\"cbs_id\":\"2005662\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11279\",\"stats_id\":\"29405\",\"position\":\"RB\",\"stats_global_id\":\"744420\",\"espn_id\":\"3046409\",\"weight\":\"208\",\"id\":\"12628\",\"birthdate\":\"777877200\",\"draft_team\":\"SEA\",\"name\":\"Collins, Alex\",\"draft_pick\":\"34\",\"college\":\"Arkansas\",\"rotowire_id\":\"10803\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"Budda03\",\"sportsdata_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"team\":\"SEA\",\"cbs_id\":\"2079843\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11270\",\"stats_id\":\"29370\",\"position\":\"RB\",\"stats_global_id\":\"733248\",\"espn_id\":\"3122866\",\"weight\":\"219\",\"id\":\"12629\",\"birthdate\":\"706942800\",\"draft_team\":\"DEN\",\"name\":\"Booker, Devontae\",\"draft_pick\":\"38\",\"college\":\"Utah\",\"rotowire_id\":\"10913\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"dbook23\",\"sportsdata_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"team\":\"LVR\",\"cbs_id\":\"2061491\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11263\",\"stats_id\":\"29307\",\"position\":\"RB\",\"stats_global_id\":\"694588\",\"espn_id\":\"2979843\",\"weight\":\"211\",\"id\":\"12630\",\"birthdate\":\"759560400\",\"draft_team\":\"MIA\",\"name\":\"Drake, Kenyan\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11002\",\"height\":\"73\",\"jersey\":\"41\",\"twitter_username\":\"KDx32\",\"sportsdata_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"team\":\"ARI\",\"cbs_id\":\"2000903\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11351\",\"stats_id\":\"29383\",\"position\":\"RB\",\"stats_global_id\":\"691047\",\"espn_id\":\"2971589\",\"weight\":\"208\",\"id\":\"12631\",\"birthdate\":\"784962000\",\"draft_team\":\"NYG\",\"name\":\"Perkins, Paul\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"10804\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"Prime_Perk_24\",\"sportsdata_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"team\":\"FA\",\"cbs_id\":\"1996577\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11284\",\"stats_id\":\"29368\",\"position\":\"RB\",\"stats_global_id\":\"693062\",\"espn_id\":\"2971888\",\"weight\":\"228\",\"id\":\"12632\",\"birthdate\":\"759128400\",\"draft_team\":\"BAL\",\"name\":\"Dixon, Kenneth\",\"draft_pick\":\"36\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10989\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"_BONEHEAD_tez_\",\"sportsdata_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"team\":\"FA\",\"cbs_id\":\"1999385\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11339\",\"stats_id\":\"29384\",\"position\":\"RB\",\"stats_global_id\":\"750802\",\"espn_id\":\"3060022\",\"weight\":\"224\",\"id\":\"12634\",\"birthdate\":\"783752400\",\"draft_team\":\"CHI\",\"name\":\"Howard, Jordan\",\"draft_pick\":\"11\",\"college\":\"Indiana\",\"rotowire_id\":\"10815\",\"height\":\"72\",\"jersey\":\"34\",\"twitter_username\":\"JHowardx24\",\"sportsdata_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"team\":\"FA\",\"cbs_id\":\"2083294\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11405\",\"stats_id\":\"29390\",\"position\":\"RB\",\"stats_global_id\":\"693837\",\"espn_id\":\"2980077\",\"weight\":\"223\",\"id\":\"12635\",\"birthdate\":\"760165200\",\"draft_team\":\"BUF\",\"name\":\"Williams, Jonathan\",\"draft_pick\":\"18\",\"college\":\"Arkansas\",\"rotowire_id\":\"10851\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"Jwillpart2\",\"sportsdata_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"team\":\"DET\",\"cbs_id\":\"1999948\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11451\",\"stats_id\":\"29387\",\"position\":\"RB\",\"stats_global_id\":\"728035\",\"espn_id\":\"3042429\",\"weight\":\"208\",\"id\":\"12636\",\"birthdate\":\"759560400\",\"draft_team\":\"PHI\",\"name\":\"Smallwood, Wendell\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10806\",\"height\":\"70\",\"jersey\":\"28\",\"twitter_username\":\"WSmallwood28\",\"sportsdata_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"team\":\"FA\",\"cbs_id\":\"2060554\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11708\",\"stats_id\":\"29560\",\"position\":\"RB\",\"stats_global_id\":\"744436\",\"espn_id\":\"3051902\",\"weight\":\"225\",\"id\":\"12637\",\"draft_team\":\"FA\",\"birthdate\":\"772693200\",\"name\":\"Barber, Peyton\",\"college\":\"Auburn\",\"rotowire_id\":\"10902\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"team\":\"WAS\",\"cbs_id\":\"2079861\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11355\",\"stats_id\":\"29353\",\"position\":\"RB\",\"stats_global_id\":\"602461\",\"espn_id\":\"2573974\",\"weight\":\"185\",\"id\":\"12639\",\"birthdate\":\"749970000\",\"draft_team\":\"HOU\",\"name\":\"Ervin, Tyler\",\"draft_pick\":\"21\",\"college\":\"San Jose State\",\"rotowire_id\":\"10995\",\"height\":\"70\",\"jersey\":\"32\",\"twitter_username\":\"tylerervin_\",\"sportsdata_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"team\":\"GBP\",\"cbs_id\":\"1850942\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11293\",\"stats_id\":\"29599\",\"position\":\"RB\",\"stats_global_id\":\"606045\",\"weight\":\"205\",\"id\":\"12640\",\"draft_team\":\"FA\",\"birthdate\":\"738133200\",\"name\":\"Ferguson, Josh\",\"college\":\"Illinois\",\"rotowire_id\":\"11005\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"team\":\"FA\",\"cbs_id\":\"1868342\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11210\",\"stats_id\":\"29257\",\"position\":\"WR\",\"stats_global_id\":\"748554\",\"espn_id\":\"3051889\",\"weight\":\"215\",\"id\":\"12645\",\"birthdate\":\"803106000\",\"draft_team\":\"MIN\",\"name\":\"Treadwell, Laquon\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"10739\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"SuccessfulQuon\",\"sportsdata_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"team\":\"FA\",\"cbs_id\":\"2079899\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11278\",\"stats_id\":\"29249\",\"position\":\"WR\",\"stats_global_id\":\"695370\",\"espn_id\":\"2978929\",\"weight\":\"185\",\"id\":\"12646\",\"birthdate\":\"773470800\",\"draft_team\":\"CLE\",\"name\":\"Coleman, Corey\",\"draft_pick\":\"15\",\"college\":\"Baylor\",\"rotowire_id\":\"10817\",\"height\":\"71\",\"jersey\":\"19\",\"twitter_username\":\"TheCoreyColeman\",\"sportsdata_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"team\":\"FA\",\"cbs_id\":\"2001251\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11295\",\"stats_id\":\"29255\",\"position\":\"WR\",\"stats_global_id\":\"749948\",\"espn_id\":\"3052876\",\"weight\":\"184\",\"id\":\"12647\",\"birthdate\":\"766472400\",\"draft_team\":\"HOU\",\"name\":\"Fuller, Will\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10818\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"team\":\"HOU\",\"cbs_id\":\"2082827\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11289\",\"stats_id\":\"29256\",\"position\":\"WR\",\"stats_global_id\":\"592413\",\"espn_id\":\"2576019\",\"weight\":\"205\",\"id\":\"12648\",\"birthdate\":\"723358800\",\"draft_team\":\"WAS\",\"name\":\"Doctson, Josh\",\"draft_pick\":\"22\",\"college\":\"TCU\",\"rotowire_id\":\"10852\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"JDoc_son\",\"sportsdata_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"team\":\"NYJ\",\"cbs_id\":\"1825087\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11271\",\"stats_id\":\"29288\",\"position\":\"WR\",\"stats_global_id\":\"742387\",\"espn_id\":\"3045144\",\"weight\":\"203\",\"id\":\"12650\",\"birthdate\":\"784875600\",\"draft_team\":\"CIN\",\"name\":\"Boyd, Tyler\",\"draft_pick\":\"24\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"10822\",\"height\":\"74\",\"jersey\":\"83\",\"twitter_username\":\"boutdat_23\",\"sportsdata_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"team\":\"CIN\",\"cbs_id\":\"2071582\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11261\",\"stats_id\":\"29319\",\"position\":\"WR\",\"stats_global_id\":\"593518\",\"espn_id\":\"2570987\",\"weight\":\"215\",\"id\":\"12651\",\"birthdate\":\"723099600\",\"draft_team\":\"HOU\",\"name\":\"Miller, Braxton\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"10900\",\"height\":\"74\",\"jersey\":\"12\",\"twitter_username\":\"BraxtonMiller5\",\"sportsdata_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"team\":\"FA\",\"cbs_id\":\"1824414\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"nfl_id\":\"michaelthomas/2556370\",\"rotoworld_id\":\"11222\",\"stats_id\":\"29281\",\"position\":\"WR\",\"stats_global_id\":\"653699\",\"espn_id\":\"2976316\",\"weight\":\"212\",\"id\":\"12652\",\"birthdate\":\"731134800\",\"draft_team\":\"NOS\",\"name\":\"Thomas, Michael\",\"draft_pick\":\"16\",\"college\":\"Ohio State\",\"height\":\"75\",\"rotowire_id\":\"10759\",\"jersey\":\"13\",\"sportsdata_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"team\":\"NOS\",\"cbs_id\":\"1983802\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11384\",\"stats_id\":\"29406\",\"position\":\"WR\",\"stats_global_id\":\"741322\",\"espn_id\":\"3042910\",\"weight\":\"198\",\"id\":\"12656\",\"birthdate\":\"781506000\",\"draft_team\":\"CLE\",\"name\":\"Higgins, Rashard\",\"draft_pick\":\"35\",\"college\":\"Colorado State\",\"rotowire_id\":\"10830\",\"height\":\"73\",\"jersey\":\"82\",\"sportsdata_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"team\":\"CLE\",\"cbs_id\":\"2071919\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11325\",\"stats_id\":\"29374\",\"position\":\"WR\",\"stats_global_id\":\"703270\",\"espn_id\":\"2982828\",\"weight\":\"194\",\"id\":\"12657\",\"birthdate\":\"788158800\",\"draft_team\":\"TEN\",\"name\":\"Sharpe, Tajae\",\"draft_pick\":\"1\",\"college\":\"Massachusetts\",\"rotowire_id\":\"11003\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"Show19ine\",\"sportsdata_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"team\":\"MIN\",\"cbs_id\":\"2010724\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11326\",\"stats_id\":\"29274\",\"position\":\"WR\",\"stats_global_id\":\"691278\",\"espn_id\":\"2976592\",\"weight\":\"196\",\"id\":\"12658\",\"birthdate\":\"729320400\",\"draft_team\":\"NYG\",\"name\":\"Shepard, Sterling\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10988\",\"height\":\"70\",\"jersey\":\"87\",\"twitter_username\":\"sterl_shep3\",\"sportsdata_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"team\":\"NYG\",\"cbs_id\":\"1996786\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11281\",\"stats_id\":\"29351\",\"position\":\"WR\",\"stats_global_id\":\"744595\",\"espn_id\":\"3048897\",\"weight\":\"208\",\"id\":\"12660\",\"birthdate\":\"794552400\",\"draft_team\":\"RAM\",\"name\":\"Cooper, Pharoh\",\"draft_pick\":\"19\",\"college\":\"South Carolina\",\"rotowire_id\":\"10823\",\"height\":\"71\",\"jersey\":\"14\",\"twitter_username\":\"KingTutt_chdown\",\"sportsdata_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"team\":\"CAR\",\"cbs_id\":\"2079796\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11550\",\"stats_id\":\"29719\",\"position\":\"WR\",\"stats_global_id\":\"821159\",\"espn_id\":\"3115913\",\"weight\":\"202\",\"id\":\"12665\",\"draft_team\":\"FA\",\"birthdate\":\"758869200\",\"name\":\"Allison, Geronimo\",\"college\":\"Illinois\",\"rotowire_id\":\"10884\",\"height\":\"75\",\"jersey\":\"18\",\"sportsdata_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"team\":\"DET\",\"cbs_id\":\"2131172\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12018\",\"stats_id\":\"29973\",\"position\":\"WR\",\"stats_global_id\":\"824249\",\"espn_id\":\"3115315\",\"weight\":\"225\",\"id\":\"12667\",\"draft_team\":\"FA\",\"birthdate\":\"737269200\",\"name\":\"Williams, Duke\",\"college\":\"Auburn\",\"rotowire_id\":\"10945\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"team\":\"BUF\",\"cbs_id\":\"2131681\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11410\",\"stats_id\":\"29475\",\"position\":\"WR\",\"stats_global_id\":\"602104\",\"espn_id\":\"2576498\",\"weight\":\"209\",\"id\":\"12673\",\"birthdate\":\"719211600\",\"draft_team\":\"NYJ\",\"name\":\"Peake, Charone\",\"draft_pick\":\"20\",\"college\":\"Clemson\",\"rotowire_id\":\"11001\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"team\":\"FA\",\"cbs_id\":\"1850735\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11491\",\"stats_id\":\"29440\",\"position\":\"WR\",\"stats_global_id\":\"835086\",\"espn_id\":\"3123986\",\"weight\":\"189\",\"id\":\"12675\",\"birthdate\":\"777013200\",\"draft_team\":\"FA\",\"name\":\"Thomas, Mike\",\"draft_pick\":\"31\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"11076\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"team\":\"CIN\",\"cbs_id\":\"2139967\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11299\",\"stats_id\":\"29269\",\"position\":\"TE\",\"stats_global_id\":\"744425\",\"espn_id\":\"3046439\",\"weight\":\"250\",\"id\":\"12676\",\"birthdate\":\"786776400\",\"draft_team\":\"SDC\",\"name\":\"Henry, Hunter\",\"draft_pick\":\"4\",\"college\":\"Arkansas\",\"rotowire_id\":\"10735\",\"height\":\"77\",\"jersey\":\"86\",\"twitter_username\":\"Hunter_Henry84\",\"sportsdata_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"team\":\"LAC\",\"cbs_id\":\"2079848\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11301\",\"stats_id\":\"29315\",\"position\":\"TE\",\"stats_global_id\":\"739424\",\"espn_id\":\"3043275\",\"weight\":\"254\",\"id\":\"12677\",\"birthdate\":\"783406800\",\"draft_team\":\"ATL\",\"name\":\"Hooper, Austin\",\"draft_pick\":\"18\",\"college\":\"Stanford\",\"rotowire_id\":\"10748\",\"height\":\"76\",\"jersey\":\"81\",\"twitter_username\":\"AustinHooper18\",\"sportsdata_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"team\":\"CLE\",\"cbs_id\":\"2067004\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11430\",\"stats_id\":\"29344\",\"position\":\"TE\",\"stats_global_id\":\"604176\",\"espn_id\":\"2573401\",\"weight\":\"255\",\"id\":\"12678\",\"birthdate\":\"725864400\",\"draft_team\":\"RAM\",\"name\":\"Higbee, Tyler\",\"draft_pick\":\"12\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"10854\",\"height\":\"78\",\"jersey\":\"89\",\"twitter_username\":\"Ty_Higs19\",\"sportsdata_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"team\":\"LAR\",\"cbs_id\":\"1853103\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11329\",\"stats_id\":\"29328\",\"position\":\"TE\",\"stats_global_id\":\"606488\",\"espn_id\":\"2576399\",\"weight\":\"261\",\"id\":\"12680\",\"birthdate\":\"731394000\",\"draft_team\":\"SEA\",\"name\":\"Vannett, Nick\",\"draft_pick\":\"31\",\"college\":\"Ohio State\",\"rotowire_id\":\"10949\",\"height\":\"78\",\"jersey\":\"88\",\"twitter_username\":\"N_Vannett81\",\"sportsdata_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"team\":\"DEN\",\"cbs_id\":\"1871322\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11283\",\"stats_id\":\"29418\",\"position\":\"TE\",\"stats_global_id\":\"694014\",\"espn_id\":\"2978727\",\"weight\":\"254\",\"id\":\"12681\",\"birthdate\":\"725778000\",\"draft_team\":\"NYG\",\"name\":\"Adams, Jerell\",\"draft_pick\":\"9\",\"college\":\"South Carolina\",\"rotowire_id\":\"10876\",\"height\":\"77\",\"jersey\":\"89\",\"twitter_username\":\"DBE_rell\",\"sportsdata_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"team\":\"FA\",\"cbs_id\":\"2000078\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11804\",\"stats_id\":\"29654\",\"position\":\"TE\",\"stats_global_id\":\"608012\",\"weight\":\"223\",\"id\":\"12685\",\"draft_team\":\"FA\",\"birthdate\":\"744526800\",\"name\":\"Perkins, Joshua\",\"college\":\"Washington\",\"rotowire_id\":\"11317\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"team\":\"PHI\",\"cbs_id\":\"1884450\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11207\",\"stats_id\":\"29237\",\"position\":\"DE\",\"stats_global_id\":\"728330\",\"espn_id\":\"3051389\",\"weight\":\"280\",\"id\":\"12686\",\"birthdate\":\"805438800\",\"draft_team\":\"SDC\",\"name\":\"Bosa, Joey\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"10914\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"jbbigbear\",\"sportsdata_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"team\":\"LAC\",\"cbs_id\":\"2235544\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11306\",\"stats_id\":\"29253\",\"position\":\"DE\",\"stats_global_id\":\"653108\",\"espn_id\":\"2977679\",\"weight\":\"267\",\"id\":\"12687\",\"birthdate\":\"771829200\",\"draft_team\":\"BUF\",\"name\":\"Lawson, Shaq\",\"draft_pick\":\"19\",\"college\":\"Clemson\",\"rotowire_id\":\"11106\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"Shaq_Lawson90\",\"sportsdata_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"team\":\"MIA\",\"cbs_id\":\"1983523\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11273\",\"stats_id\":\"29241\",\"position\":\"DT\",\"stats_global_id\":\"689690\",\"espn_id\":\"2971282\",\"weight\":\"295\",\"id\":\"12688\",\"birthdate\":\"763880400\",\"draft_team\":\"SFO\",\"name\":\"Buckner, DeForest\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"10925\",\"height\":\"79\",\"jersey\":\"99\",\"twitter_username\":\"deforestbuckner\",\"sportsdata_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"team\":\"IND\",\"cbs_id\":\"1996158\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11262\",\"stats_id\":\"29273\",\"position\":\"DE\",\"stats_global_id\":\"653870\",\"espn_id\":\"2976313\",\"weight\":\"251\",\"id\":\"12690\",\"birthdate\":\"758005200\",\"draft_team\":\"TBB\",\"name\":\"Spence, Noah\",\"draft_pick\":\"8\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"11180\",\"height\":\"74\",\"jersey\":\"57\",\"twitter_username\":\"nspence94\",\"sportsdata_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"team\":\"NOS\",\"cbs_id\":\"1983799\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11317\",\"stats_id\":\"29266\",\"position\":\"DE\",\"stats_global_id\":\"691301\",\"weight\":\"275\",\"id\":\"12691\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Ogbah, Emmanuel\",\"draft_pick\":\"1\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11155\",\"height\":\"76\",\"jersey\":\"91\",\"twitter_username\":\"EmanOgbah\",\"sportsdata_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"team\":\"MIA\",\"cbs_id\":\"1996808\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11282\",\"stats_id\":\"29309\",\"position\":\"DE\",\"stats_global_id\":\"606099\",\"espn_id\":\"2576257\",\"weight\":\"260\",\"id\":\"12693\",\"birthdate\":\"701067600\",\"draft_team\":\"OAK\",\"name\":\"Calhoun, Shilique\",\"draft_pick\":\"12\",\"college\":\"Michigan State\",\"rotowire_id\":\"10933\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"Shilique89\",\"sportsdata_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"team\":\"NEP\",\"cbs_id\":\"1868388\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11489\",\"stats_id\":\"29436\",\"position\":\"DE\",\"stats_global_id\":\"609502\",\"espn_id\":\"2582150\",\"weight\":\"275\",\"id\":\"12695\",\"birthdate\":\"713336400\",\"draft_team\":\"DET\",\"name\":\"Zettel, Anthony\",\"draft_pick\":\"27\",\"college\":\"Penn State\",\"rotowire_id\":\"10887\",\"height\":\"76\",\"jersey\":\"97\",\"twitter_username\":\"Zettel98\",\"sportsdata_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"team\":\"FA\",\"cbs_id\":\"1889927\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11315\",\"stats_id\":\"29263\",\"position\":\"DT\",\"stats_global_id\":\"749198\",\"espn_id\":\"3051886\",\"weight\":\"296\",\"id\":\"12696\",\"birthdate\":\"779950800\",\"draft_team\":\"ARI\",\"name\":\"Nkemdiche, Robert\",\"draft_pick\":\"29\",\"college\":\"Mississippi\",\"rotowire_id\":\"11148\",\"height\":\"76\",\"jersey\":\"60\",\"twitter_username\":\"TheLegendMerlin\",\"sportsdata_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"team\":\"FA\",\"cbs_id\":\"2079896\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11323\",\"stats_id\":\"29280\",\"position\":\"DT\",\"stats_global_id\":\"750852\",\"espn_id\":\"3054857\",\"weight\":\"330\",\"id\":\"12697\",\"birthdate\":\"795762000\",\"draft_team\":\"DET\",\"name\":\"Robinson, A'Shawn\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"11162\",\"height\":\"76\",\"jersey\":\"94\",\"twitter_username\":\"AshawnRobinson\",\"sportsdata_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"team\":\"LAR\",\"cbs_id\":\"2082728\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11322\",\"stats_id\":\"29289\",\"position\":\"DT\",\"stats_global_id\":\"824539\",\"espn_id\":\"3115312\",\"weight\":\"306\",\"id\":\"12698\",\"birthdate\":\"756018000\",\"draft_team\":\"SEA\",\"name\":\"Reed, Jarran\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"11217\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"1j_reed\",\"sportsdata_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"team\":\"SEA\",\"cbs_id\":\"2131655\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11276\",\"stats_id\":\"29356\",\"position\":\"DT\",\"stats_global_id\":\"747918\",\"espn_id\":\"3051775\",\"weight\":\"328\",\"id\":\"12699\",\"birthdate\":\"794466000\",\"draft_team\":\"CIN\",\"name\":\"Billings, Andrew\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"10907\",\"height\":\"73\",\"jersey\":\"99\",\"twitter_username\":\"BillingsAndrew\",\"sportsdata_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"team\":\"CLE\",\"cbs_id\":\"2079903\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11370\",\"stats_id\":\"29277\",\"position\":\"DT\",\"stats_global_id\":\"697675\",\"espn_id\":\"2979591\",\"weight\":\"314\",\"id\":\"12700\",\"birthdate\":\"768373200\",\"draft_team\":\"TEN\",\"name\":\"Johnson, Austin\",\"draft_pick\":\"12\",\"college\":\"Penn State\",\"rotowire_id\":\"11071\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"team\":\"NYG\",\"cbs_id\":\"2006428\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11327\",\"stats_id\":\"29268\",\"position\":\"LB\",\"stats_global_id\":\"749966\",\"espn_id\":\"3052896\",\"weight\":\"248\",\"id\":\"12701\",\"birthdate\":\"803106000\",\"draft_team\":\"DAL\",\"name\":\"Smith, Jaylon\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"10801\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"thejaylonsmith\",\"sportsdata_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"team\":\"DAL\",\"cbs_id\":\"2082844\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11302\",\"stats_id\":\"29270\",\"position\":\"LB\",\"stats_global_id\":\"744683\",\"espn_id\":\"3047566\",\"weight\":\"244\",\"id\":\"12702\",\"birthdate\":\"810104400\",\"draft_team\":\"JAC\",\"name\":\"Jack, Myles\",\"draft_pick\":\"5\",\"college\":\"UCLA\",\"rotowire_id\":\"11064\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"MylesJack\",\"sportsdata_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"team\":\"JAC\",\"cbs_id\":\"2079677\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11320\",\"stats_id\":\"29275\",\"position\":\"LB\",\"stats_global_id\":\"694601\",\"espn_id\":\"2979855\",\"weight\":\"252\",\"id\":\"12703\",\"birthdate\":\"748846800\",\"draft_team\":\"BUF\",\"name\":\"Ragland, Reggie\",\"draft_pick\":\"10\",\"college\":\"Alabama\",\"rotowire_id\":\"11109\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"team\":\"DET\",\"cbs_id\":\"2000915\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11307\",\"stats_id\":\"29254\",\"position\":\"LB\",\"stats_global_id\":\"728331\",\"espn_id\":\"3051398\",\"weight\":\"232\",\"id\":\"12705\",\"birthdate\":\"782456400\",\"draft_team\":\"NYJ\",\"name\":\"Lee, Darron\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"11108\",\"height\":\"73\",\"jersey\":\"50\",\"twitter_username\":\"DLeeMG8\",\"sportsdata_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"team\":\"BUF\",\"cbs_id\":\"2060774\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11333\",\"stats_id\":\"29317\",\"position\":\"LB\",\"stats_global_id\":\"694644\",\"espn_id\":\"2977647\",\"weight\":\"259\",\"id\":\"12707\",\"birthdate\":\"773038800\",\"draft_team\":\"NYJ\",\"name\":\"Jenkins, Jordan\",\"draft_pick\":\"20\",\"college\":\"Georgia\",\"rotowire_id\":\"11070\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"jordanOLB\",\"sportsdata_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"team\":\"NYJ\",\"cbs_id\":\"2000880\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11373\",\"stats_id\":\"29394\",\"position\":\"LB\",\"stats_global_id\":\"605257\",\"espn_id\":\"2577354\",\"weight\":\"242\",\"id\":\"12710\",\"birthdate\":\"729147600\",\"draft_team\":\"MIN\",\"name\":\"Brothers, Kentrell\",\"draft_pick\":\"23\",\"college\":\"Missouri\",\"rotowire_id\":\"10920\",\"height\":\"73\",\"jersey\":\"40\",\"twitter_username\":\"Kentrell_Mizzou\",\"sportsdata_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"team\":\"FA\",\"cbs_id\":\"1860848\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11219\",\"stats_id\":\"29239\",\"position\":\"CB\",\"stats_global_id\":\"742155\",\"espn_id\":\"3045373\",\"weight\":\"208\",\"id\":\"12711\",\"birthdate\":\"782974800\",\"draft_team\":\"JAC\",\"name\":\"Ramsey, Jalen\",\"draft_pick\":\"5\",\"college\":\"Florida State\",\"rotowire_id\":\"11111\",\"height\":\"73\",\"jersey\":\"20\",\"twitter_username\":\"jalenramsey\",\"sportsdata_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"team\":\"LAR\",\"cbs_id\":\"2071515\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11298\",\"stats_id\":\"29245\",\"position\":\"CB\",\"stats_global_id\":\"748610\",\"espn_id\":\"3054955\",\"weight\":\"204\",\"id\":\"12712\",\"birthdate\":\"802155600\",\"draft_team\":\"TBB\",\"name\":\"Hargreaves, Vernon\",\"draft_pick\":\"11\",\"college\":\"Florida\",\"rotowire_id\":\"11052\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"team\":\"HOU\",\"cbs_id\":\"2079755\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11269\",\"stats_id\":\"29287\",\"position\":\"CB\",\"stats_global_id\":\"754214\",\"espn_id\":\"3045120\",\"weight\":\"192\",\"id\":\"12713\",\"birthdate\":\"753080400\",\"draft_team\":\"MIN\",\"name\":\"Alexander, Mackensie\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"10880\",\"height\":\"70\",\"jersey\":\"21\",\"twitter_username\":\"MackAlexander20\",\"sportsdata_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"team\":\"CIN\",\"cbs_id\":\"2087700\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11294\",\"stats_id\":\"29318\",\"position\":\"CB\",\"stats_global_id\":\"742419\",\"espn_id\":\"3045465\",\"weight\":\"198\",\"id\":\"12714\",\"birthdate\":\"792651600\",\"draft_team\":\"WAS\",\"name\":\"Fuller, Kendall\",\"draft_pick\":\"21\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11038\",\"height\":\"71\",\"jersey\":\"29\",\"twitter_username\":\"KeFu11er\",\"sportsdata_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"team\":\"WAS\",\"cbs_id\":\"2071630\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11332\",\"stats_id\":\"29244\",\"position\":\"CB\",\"stats_global_id\":\"728318\",\"espn_id\":\"3040506\",\"weight\":\"203\",\"id\":\"12715\",\"birthdate\":\"807944400\",\"draft_team\":\"NYG\",\"name\":\"Apple, Eli\",\"draft_pick\":\"10\",\"college\":\"Ohio State\",\"rotowire_id\":\"10886\",\"height\":\"73\",\"jersey\":\"41\",\"twitter_username\":\"EliApple13\",\"sportsdata_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"team\":\"FA\",\"cbs_id\":\"2060759\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11311\",\"stats_id\":\"29467\",\"position\":\"S\",\"stats_global_id\":\"651021\",\"weight\":\"191\",\"id\":\"12716\",\"birthdate\":\"765608400\",\"draft_team\":\"PHI\",\"name\":\"Mills, Jalen\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"11137\",\"height\":\"72\",\"jersey\":\"21\",\"twitter_username\":\"greengoblin\",\"sportsdata_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"team\":\"PHI\",\"cbs_id\":\"1984271\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11364\",\"stats_id\":\"29248\",\"position\":\"S\",\"stats_global_id\":\"651264\",\"espn_id\":\"2976639\",\"weight\":\"200\",\"id\":\"12717\",\"birthdate\":\"747464400\",\"draft_team\":\"OAK\",\"name\":\"Joseph, Karl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"11082\",\"height\":\"70\",\"jersey\":\"42\",\"twitter_username\":\"_IamKJ8\",\"sportsdata_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"team\":\"CLE\",\"cbs_id\":\"1983624\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11369\",\"stats_id\":\"29295\",\"position\":\"S\",\"stats_global_id\":\"728329\",\"espn_id\":\"3051388\",\"weight\":\"205\",\"id\":\"12718\",\"birthdate\":\"787208400\",\"draft_team\":\"NOS\",\"name\":\"Bell, Vonn\",\"draft_pick\":\"30\",\"college\":\"Ohio State\",\"rotowire_id\":\"10905\",\"height\":\"71\",\"jersey\":\"24\",\"twitter_username\":\"TheVonnBell7\",\"sportsdata_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"team\":\"CIN\",\"cbs_id\":\"2060762\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11336\",\"stats_id\":\"29305\",\"position\":\"S\",\"stats_global_id\":\"590936\",\"espn_id\":\"2573317\",\"weight\":\"212\",\"id\":\"12719\",\"birthdate\":\"748674000\",\"draft_team\":\"NYG\",\"name\":\"Thompson, Darian\",\"draft_pick\":\"8\",\"college\":\"Boise State\",\"rotowire_id\":\"10957\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"DThompson004\",\"sportsdata_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"team\":\"DAL\",\"cbs_id\":\"1825226\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11303\",\"stats_id\":\"29478\",\"position\":\"S\",\"stats_global_id\":\"733747\",\"weight\":\"215\",\"id\":\"12720\",\"birthdate\":\"760942800\",\"draft_team\":\"MIN\",\"name\":\"Kearse, Jayron\",\"draft_pick\":\"23\",\"college\":\"Clemson\",\"rotowire_id\":\"11088\",\"height\":\"76\",\"jersey\":\"32\",\"twitter_username\":\"JayronKearse8\",\"sportsdata_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"team\":\"DET\",\"cbs_id\":\"2060411\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9276\",\"birthdate\":\"259995600\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Gase, Adam\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"9991a9e7-87b5-400b-a216-12dc9f45cad8\",\"id\":\"12722\",\"team\":\"NYJ\"},{\"draft_year\":\"2015\",\"nfl_id\":\"elirogers/2553737\",\"rotoworld_id\":\"10753\",\"stats_id\":\"28669\",\"position\":\"WR\",\"stats_global_id\":\"606667\",\"espn_id\":\"2576643\",\"weight\":\"187\",\"id\":\"12731\",\"draft_team\":\"FA\",\"birthdate\":\"725086800\",\"name\":\"Rogers, Eli\",\"college\":\"Louisville\",\"rotowire_id\":\"10654\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"team\":\"FA\",\"cbs_id\":\"2174966\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10961\",\"stats_id\":\"29098\",\"position\":\"LB\",\"stats_global_id\":\"602943\",\"espn_id\":\"2574282\",\"weight\":\"232\",\"id\":\"12733\",\"draft_team\":\"FA\",\"birthdate\":\"741848400\",\"name\":\"March, Justin\",\"college\":\"Akron\",\"rotowire_id\":\"10646\",\"height\":\"71\",\"jersey\":\"53\",\"sportsdata_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"team\":\"DAL\",\"cbs_id\":\"2175060\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11334\",\"stats_id\":\"29243\",\"position\":\"LB\",\"stats_global_id\":\"734313\",\"espn_id\":\"3043136\",\"weight\":\"251\",\"id\":\"12734\",\"birthdate\":\"715928400\",\"draft_team\":\"CHI\",\"name\":\"Floyd, Leonard\",\"draft_pick\":\"9\",\"college\":\"Georgia\",\"rotowire_id\":\"11034\",\"height\":\"76\",\"jersey\":\"54\",\"sportsdata_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"team\":\"LAR\",\"cbs_id\":\"2061110\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11321\",\"stats_id\":\"29246\",\"position\":\"DT\",\"stats_global_id\":\"692183\",\"espn_id\":\"2970204\",\"weight\":\"305\",\"id\":\"12735\",\"birthdate\":\"765262800\",\"draft_team\":\"NOS\",\"name\":\"Rankins, Sheldon\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11112\",\"height\":\"74\",\"jersey\":\"98\",\"twitter_username\":\"RankinsSheldon\",\"sportsdata_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"team\":\"NOS\",\"cbs_id\":\"1998998\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11337\",\"stats_id\":\"29251\",\"position\":\"S\",\"stats_global_id\":\"748618\",\"espn_id\":\"3054962\",\"weight\":\"211\",\"id\":\"12736\",\"birthdate\":\"806734800\",\"draft_team\":\"ATL\",\"name\":\"Neal, Keanu\",\"draft_pick\":\"17\",\"college\":\"Florida\",\"rotowire_id\":\"11143\",\"height\":\"72\",\"jersey\":\"22\",\"twitter_username\":\"Keanu_Neal\",\"sportsdata_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"team\":\"ATL\",\"cbs_id\":\"2079762\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11361\",\"stats_id\":\"29258\",\"position\":\"CB\",\"stats_global_id\":\"652244\",\"espn_id\":\"3061106\",\"weight\":\"196\",\"id\":\"12737\",\"birthdate\":\"725864400\",\"draft_team\":\"CIN\",\"name\":\"Jackson, William\",\"draft_pick\":\"24\",\"college\":\"Houston\",\"rotowire_id\":\"11067\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"team\":\"CIN\",\"cbs_id\":\"1892521\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11377\",\"stats_id\":\"29259\",\"position\":\"CB\",\"stats_global_id\":\"739796\",\"espn_id\":\"3051921\",\"weight\":\"197\",\"id\":\"12738\",\"birthdate\":\"799304400\",\"draft_team\":\"PIT\",\"name\":\"Burns, Artie\",\"draft_pick\":\"25\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10928\",\"height\":\"72\",\"jersey\":\"25\",\"twitter_username\":\"_audi8\",\"sportsdata_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"team\":\"CHI\",\"cbs_id\":\"2071570\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11286\",\"stats_id\":\"29261\",\"position\":\"DT\",\"stats_global_id\":\"744698\",\"espn_id\":\"3122752\",\"weight\":\"314\",\"id\":\"12739\",\"birthdate\":\"812782800\",\"draft_team\":\"GBP\",\"name\":\"Clark, Kenny\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"10973\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"team\":\"GBP\",\"cbs_id\":\"2079670\"},{\"draft_year\":\"2016\",\"draft_round\":\"1\",\"rotoworld_id\":\"11275\",\"stats_id\":\"29264\",\"position\":\"DT\",\"stats_global_id\":\"693059\",\"espn_id\":\"2971883\",\"weight\":\"330\",\"id\":\"12740\",\"birthdate\":\"771570000\",\"draft_team\":\"CAR\",\"name\":\"Butler, Vernon\",\"draft_pick\":\"30\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"10931\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"team\":\"BUF\",\"cbs_id\":\"1999382\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11221\",\"stats_id\":\"29271\",\"position\":\"DT\",\"stats_global_id\":\"741878\",\"espn_id\":\"3044859\",\"weight\":\"310\",\"id\":\"12741\",\"birthdate\":\"773211600\",\"draft_team\":\"KCC\",\"name\":\"Jones, Chris\",\"draft_pick\":\"6\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11074\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"team\":\"KCC\",\"cbs_id\":\"2082752\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11338\",\"stats_id\":\"29272\",\"position\":\"CB\",\"stats_global_id\":\"695379\",\"espn_id\":\"2978935\",\"weight\":\"198\",\"id\":\"12742\",\"birthdate\":\"741762000\",\"draft_team\":\"MIA\",\"name\":\"Howard, Xavien\",\"draft_pick\":\"7\",\"college\":\"Baylor\",\"rotowire_id\":\"11061\",\"height\":\"73\",\"jersey\":\"25\",\"twitter_username\":\"Iamxavienhoward\",\"sportsdata_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"team\":\"MIA\",\"cbs_id\":\"2001257\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11366\",\"stats_id\":\"29276\",\"position\":\"LB\",\"stats_global_id\":\"728817\",\"espn_id\":\"3042874\",\"weight\":\"241\",\"id\":\"12743\",\"birthdate\":\"767422800\",\"draft_team\":\"BAL\",\"name\":\"Correa, Kamalei\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"10982\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"team\":\"JAC\",\"cbs_id\":\"2061725\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11330\",\"stats_id\":\"29278\",\"position\":\"DE\",\"stats_global_id\":\"830687\",\"espn_id\":\"3115914\",\"weight\":\"287\",\"id\":\"12744\",\"birthdate\":\"763362000\",\"draft_team\":\"OAK\",\"name\":\"Ward, Jihad\",\"draft_pick\":\"13\",\"college\":\"Illinois\",\"rotowire_id\":\"10891\",\"height\":\"77\",\"jersey\":\"53\",\"twitter_username\":\"JIHADWARD17\",\"sportsdata_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"team\":\"BAL\",\"cbs_id\":\"2136528\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11372\",\"stats_id\":\"29285\",\"position\":\"LB\",\"stats_global_id\":\"651019\",\"espn_id\":\"2976545\",\"weight\":\"222\",\"id\":\"12745\",\"birthdate\":\"783925200\",\"draft_team\":\"ATL\",\"name\":\"Jones, Deion\",\"draft_pick\":\"21\",\"college\":\"LSU\",\"rotowire_id\":\"11080\",\"height\":\"73\",\"jersey\":\"45\",\"twitter_username\":\"debo\",\"sportsdata_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"team\":\"ATL\",\"cbs_id\":\"1984265\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11208\",\"stats_id\":\"29286\",\"position\":\"S\",\"stats_global_id\":\"727851\",\"espn_id\":\"3043215\",\"weight\":\"224\",\"id\":\"12746\",\"birthdate\":\"805093200\",\"draft_team\":\"WAS\",\"name\":\"Cravens, Su'a\",\"draft_pick\":\"22\",\"college\":\"USC\",\"rotowire_id\":\"10985\",\"height\":\"73\",\"jersey\":\"21\",\"twitter_username\":\"Sua_Cravens\",\"sportsdata_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"team\":\"FA\",\"cbs_id\":\"2061070\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11374\",\"stats_id\":\"29292\",\"position\":\"S\",\"stats_global_id\":\"695776\",\"espn_id\":\"2976210\",\"weight\":\"202\",\"id\":\"12748\",\"birthdate\":\"751352400\",\"draft_team\":\"PIT\",\"name\":\"Davis, Sean\",\"draft_pick\":\"27\",\"college\":\"Maryland\",\"rotowire_id\":\"11018\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"team\":\"PIT\",\"cbs_id\":\"2001579\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11413\",\"stats_id\":\"29294\",\"position\":\"CB\",\"stats_global_id\":\"694594\",\"espn_id\":\"2979849\",\"weight\":\"200\",\"id\":\"12749\",\"birthdate\":\"754549200\",\"draft_team\":\"NEP\",\"name\":\"Jones, Cyrus\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"11075\",\"height\":\"70\",\"jersey\":\"27\",\"sportsdata_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"team\":\"FA\",\"cbs_id\":\"2000909\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11415\",\"stats_id\":\"29296\",\"position\":\"CB\",\"stats_global_id\":\"608343\",\"espn_id\":\"2572841\",\"weight\":\"212\",\"id\":\"12750\",\"birthdate\":\"744440400\",\"draft_team\":\"CAR\",\"name\":\"Bradberry, James\",\"draft_pick\":\"31\",\"college\":\"Samford\",\"rotowire_id\":\"10916\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"Brad_B21\",\"sportsdata_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"team\":\"NYG\",\"cbs_id\":\"1886795\"},{\"draft_year\":\"2016\",\"draft_round\":\"2\",\"rotoworld_id\":\"11416\",\"stats_id\":\"29297\",\"position\":\"DE\",\"stats_global_id\":\"691549\",\"weight\":\"287\",\"id\":\"12751\",\"birthdate\":\"717224400\",\"draft_team\":\"DEN\",\"name\":\"Gotsis, Adam\",\"draft_pick\":\"32\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11044\",\"height\":\"76\",\"jersey\":\"96\",\"twitter_username\":\"gotsis96\",\"sportsdata_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"team\":\"JAC\",\"cbs_id\":\"1998206\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11397\",\"stats_id\":\"29298\",\"position\":\"S\",\"stats_global_id\":\"591707\",\"espn_id\":\"2574056\",\"weight\":\"212\",\"id\":\"12752\",\"birthdate\":\"745563600\",\"draft_team\":\"TEN\",\"name\":\"Byard, Kevin\",\"draft_pick\":\"1\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"11218\",\"height\":\"71\",\"jersey\":\"31\",\"twitter_username\":\"KB31_Era\",\"sportsdata_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"team\":\"TEN\",\"cbs_id\":\"1833003\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11313\",\"stats_id\":\"29299\",\"position\":\"DE\",\"stats_global_id\":\"638342\",\"espn_id\":\"2614825\",\"weight\":\"275\",\"id\":\"12753\",\"birthdate\":\"734590800\",\"draft_team\":\"CLE\",\"name\":\"Nassib, Carl\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"11142\",\"height\":\"79\",\"jersey\":\"94\",\"twitter_username\":\"CarlNassib\",\"sportsdata_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"team\":\"LVR\",\"cbs_id\":\"1983812\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11390\",\"stats_id\":\"29301\",\"position\":\"DT\",\"stats_global_id\":\"728276\",\"espn_id\":\"3040471\",\"weight\":\"310\",\"id\":\"12754\",\"birthdate\":\"797317200\",\"draft_team\":\"DAL\",\"name\":\"Collins, Maliek\",\"draft_pick\":\"4\",\"college\":\"Nebraska\",\"rotowire_id\":\"10976\",\"height\":\"74\",\"jersey\":\"97\",\"twitter_username\":\"SavageSevv\",\"sportsdata_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"team\":\"LVR\",\"cbs_id\":\"2060621\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11394\",\"stats_id\":\"29302\",\"position\":\"S\",\"stats_global_id\":\"686835\",\"espn_id\":\"2971364\",\"weight\":\"186\",\"id\":\"12755\",\"birthdate\":\"757054800\",\"draft_team\":\"SFO\",\"name\":\"Redmond, Will\",\"draft_pick\":\"5\",\"college\":\"Mississippi State\",\"rotowire_id\":\"11117\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"team\":\"GBP\",\"cbs_id\":\"1995792\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11396\",\"stats_id\":\"29303\",\"position\":\"DE\",\"stats_global_id\":\"745806\",\"espn_id\":\"3053044\",\"weight\":\"246\",\"id\":\"12756\",\"birthdate\":\"796626000\",\"draft_team\":\"JAC\",\"name\":\"Ngakoue, Yannick\",\"draft_pick\":\"6\",\"college\":\"Maryland\",\"rotowire_id\":\"11146\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"YannGetSacks91\",\"sportsdata_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"team\":\"BAL\",\"cbs_id\":\"2078920\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11381\",\"stats_id\":\"29304\",\"position\":\"LB\",\"stats_global_id\":\"695300\",\"weight\":\"275\",\"id\":\"12757\",\"draft_team\":\"BAL\",\"birthdate\":\"678776400\",\"name\":\"Kaufusi, Bronson\",\"draft_pick\":\"7\",\"college\":\"BYU\",\"rotowire_id\":\"11087\",\"height\":\"78\",\"jersey\":\"91\",\"sportsdata_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"team\":\"FA\",\"cbs_id\":\"2001280\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11274\",\"stats_id\":\"29306\",\"position\":\"DE\",\"stats_global_id\":\"694609\",\"espn_id\":\"2980097\",\"weight\":\"296\",\"id\":\"12758\",\"birthdate\":\"751266000\",\"draft_team\":\"CHI\",\"name\":\"Bullard, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"10926\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"JBullard90\",\"sportsdata_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"team\":\"SEA\",\"cbs_id\":\"2000846\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11417\",\"stats_id\":\"29311\",\"position\":\"CB\",\"stats_global_id\":\"739699\",\"espn_id\":\"3042436\",\"weight\":\"215\",\"id\":\"12760\",\"birthdate\":\"793429200\",\"draft_team\":\"CAR\",\"name\":\"Worley, Daryl\",\"draft_pick\":\"14\",\"college\":\"West Virginia\",\"rotowire_id\":\"10941\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"team\":\"BUF\",\"cbs_id\":\"2066935\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11420\",\"stats_id\":\"29321\",\"position\":\"LB\",\"stats_global_id\":\"693291\",\"espn_id\":\"2971816\",\"weight\":\"235\",\"id\":\"12762\",\"birthdate\":\"745822800\",\"draft_team\":\"CIN\",\"name\":\"Vigil, Nick\",\"draft_pick\":\"24\",\"college\":\"Utah State\",\"rotowire_id\":\"10948\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"team\":\"LAC\",\"cbs_id\":\"1999597\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11380\",\"stats_id\":\"29322\",\"position\":\"LB\",\"stats_global_id\":\"602481\",\"espn_id\":\"2574229\",\"weight\":\"245\",\"id\":\"12763\",\"birthdate\":\"691045200\",\"draft_team\":\"GBP\",\"name\":\"Fackrell, Kyler\",\"draft_pick\":\"25\",\"college\":\"Utah State\",\"rotowire_id\":\"11030\",\"height\":\"77\",\"jersey\":\"51\",\"sportsdata_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"team\":\"NYG\",\"cbs_id\":\"1850983\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11388\",\"stats_id\":\"29323\",\"position\":\"DT\",\"stats_global_id\":\"699449\",\"espn_id\":\"2983055\",\"weight\":\"305\",\"id\":\"12764\",\"birthdate\":\"729061200\",\"draft_team\":\"PIT\",\"name\":\"Hargrave, Javon\",\"draft_pick\":\"26\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11051\",\"height\":\"74\",\"jersey\":\"93\",\"twitter_username\":\"Jay_MostWanted\",\"sportsdata_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"team\":\"PHI\",\"cbs_id\":\"2007634\"},{\"draft_year\":\"2016\",\"draft_round\":\"3\",\"rotoworld_id\":\"11389\",\"stats_id\":\"29332\",\"position\":\"S\",\"stats_global_id\":\"691479\",\"weight\":\"202\",\"id\":\"12767\",\"birthdate\":\"753685200\",\"draft_team\":\"DEN\",\"name\":\"Simmons, Justin\",\"draft_pick\":\"36\",\"college\":\"Boston College\",\"rotowire_id\":\"11174\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"jsimms1119\",\"sportsdata_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"team\":\"DEN\",\"cbs_id\":\"1998297\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11425\",\"stats_id\":\"29333\",\"position\":\"LB\",\"stats_global_id\":\"695273\",\"espn_id\":\"2977819\",\"weight\":\"245\",\"id\":\"12768\",\"birthdate\":\"752562000\",\"draft_team\":\"CLE\",\"name\":\"Schobert, Joe\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"10968\",\"height\":\"73\",\"jersey\":\"47\",\"twitter_username\":\"TheSchoGoesOn53\",\"sportsdata_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"team\":\"JAC\",\"cbs_id\":\"2001175\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11426\",\"stats_id\":\"29338\",\"position\":\"CB\",\"stats_global_id\":\"692390\",\"espn_id\":\"2976244\",\"weight\":\"185\",\"id\":\"12770\",\"birthdate\":\"763621200\",\"draft_team\":\"BAL\",\"name\":\"Young, Tavon\",\"draft_pick\":\"6\",\"college\":\"Temple\",\"rotowire_id\":\"10889\",\"height\":\"69\",\"jersey\":\"25\",\"twitter_username\":\"Tyoung_NL\",\"sportsdata_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"team\":\"BAL\",\"cbs_id\":\"1998940\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11288\",\"stats_id\":\"29337\",\"position\":\"DT\",\"stats_global_id\":\"654869\",\"espn_id\":\"2976194\",\"weight\":\"285\",\"id\":\"12771\",\"birthdate\":\"773038800\",\"draft_team\":\"JAC\",\"name\":\"Day, Sheldon\",\"draft_pick\":\"5\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11019\",\"height\":\"73\",\"jersey\":\"91\",\"twitter_username\":\"SheldonDay_91\",\"sportsdata_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"team\":\"FA\",\"cbs_id\":\"1984615\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11427\",\"stats_id\":\"29340\",\"position\":\"S\",\"stats_global_id\":\"651636\",\"espn_id\":\"2970716\",\"weight\":\"199\",\"id\":\"12772\",\"birthdate\":\"757918800\",\"draft_team\":\"KCC\",\"name\":\"Murray, Eric\",\"draft_pick\":\"8\",\"college\":\"Minnesota\",\"rotowire_id\":\"11141\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"team\":\"HOU\",\"cbs_id\":\"1983762\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11429\",\"stats_id\":\"29341\",\"position\":\"WR\",\"stats_global_id\":\"606551\",\"espn_id\":\"2576581\",\"weight\":\"200\",\"id\":\"12773\",\"birthdate\":\"740206800\",\"draft_team\":\"BAL\",\"name\":\"Moore, Chris\",\"draft_pick\":\"9\",\"college\":\"Cincinnati\",\"rotowire_id\":\"10994\",\"height\":\"73\",\"jersey\":\"10\",\"sportsdata_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"team\":\"BAL\",\"cbs_id\":\"1871375\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11408\",\"stats_id\":\"29343\",\"position\":\"LB\",\"stats_global_id\":\"602095\",\"espn_id\":\"2576489\",\"weight\":\"246\",\"id\":\"12774\",\"birthdate\":\"738651600\",\"draft_team\":\"NYG\",\"name\":\"Goodson, B.J.\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"11043\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"B_Good_Son\",\"sportsdata_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"team\":\"CLE\",\"cbs_id\":\"1850728\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11399\",\"stats_id\":\"29342\",\"position\":\"CB\",\"stats_global_id\":\"608595\",\"espn_id\":\"2574666\",\"weight\":\"189\",\"id\":\"12775\",\"birthdate\":\"747378000\",\"draft_team\":\"TBB\",\"name\":\"Smith, Ryan\",\"draft_pick\":\"10\",\"college\":\"North Carolina Central\",\"rotowire_id\":\"11178\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"team\":\"TBB\",\"cbs_id\":\"1888277\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11402\",\"stats_id\":\"29345\",\"position\":\"S\",\"stats_global_id\":\"613316\",\"espn_id\":\"2575164\",\"weight\":\"222\",\"id\":\"12776\",\"birthdate\":\"737010000\",\"draft_team\":\"DET\",\"name\":\"Killebrew, Miles\",\"draft_pick\":\"13\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11091\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"MilesKillebrew\",\"sportsdata_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"team\":\"DET\",\"cbs_id\":\"1906454\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11431\",\"stats_id\":\"29347\",\"position\":\"LB\",\"stats_global_id\":\"607006\",\"espn_id\":\"2581818\",\"weight\":\"242\",\"id\":\"12778\",\"birthdate\":\"738392400\",\"draft_team\":\"CHI\",\"name\":\"Kwiatkoski, Nick\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"11098\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"nkwiatkoski27\",\"sportsdata_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"team\":\"LVR\",\"cbs_id\":\"1877196\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11433\",\"stats_id\":\"29349\",\"position\":\"LB\",\"stats_global_id\":\"728234\",\"espn_id\":\"3040180\",\"weight\":\"232\",\"id\":\"12779\",\"birthdate\":\"741502800\",\"draft_team\":\"ATL\",\"name\":\"Campbell, De'Vondre\",\"draft_pick\":\"17\",\"college\":\"Minnesota\",\"rotowire_id\":\"10935\",\"height\":\"75\",\"jersey\":\"59\",\"twitter_username\":\"Came_Along_Way\",\"sportsdata_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"team\":\"ARI\",\"cbs_id\":\"2060733\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11383\",\"stats_id\":\"29350\",\"position\":\"DT\",\"stats_global_id\":\"691353\",\"weight\":\"305\",\"id\":\"12780\",\"birthdate\":\"783752400\",\"draft_team\":\"IND\",\"name\":\"Ridgeway, Hassan\",\"draft_pick\":\"18\",\"college\":\"Texas\",\"rotowire_id\":\"11160\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"r1dge8\",\"sportsdata_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"team\":\"PHI\",\"cbs_id\":\"1996836\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11434\",\"stats_id\":\"29352\",\"position\":\"S\",\"stats_global_id\":\"600749\",\"espn_id\":\"2577740\",\"weight\":\"212\",\"id\":\"12781\",\"birthdate\":\"744440400\",\"draft_team\":\"NYJ\",\"name\":\"Burris, Juston\",\"draft_pick\":\"20\",\"college\":\"North Carolina State\",\"rotowire_id\":\"10929\",\"height\":\"72\",\"jersey\":\"31\",\"twitter_username\":\"JdotBurris32\",\"sportsdata_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"team\":\"CAR\",\"cbs_id\":\"1850800\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11435\",\"stats_id\":\"29354\",\"position\":\"DT\",\"stats_global_id\":\"914915\",\"weight\":\"300\",\"id\":\"12782\",\"birthdate\":\"721630800\",\"draft_team\":\"NOS\",\"name\":\"Onyemata, David\",\"draft_pick\":\"22\",\"college\":\"Manitoba\",\"rotowire_id\":\"11219\",\"height\":\"76\",\"jersey\":\"93\",\"twitter_username\":\"ACES_E\",\"sportsdata_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"team\":\"NOS\",\"cbs_id\":\"2235404\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11436\",\"stats_id\":\"29358\",\"position\":\"S\",\"stats_global_id\":\"691572\",\"espn_id\":\"2969944\",\"weight\":\"205\",\"id\":\"12783\",\"birthdate\":\"745304400\",\"draft_team\":\"CHI\",\"name\":\"Bush, Deon\",\"draft_pick\":\"26\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10930\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"deonbushlive2\",\"sportsdata_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"team\":\"CHI\",\"cbs_id\":\"1998305\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11438\",\"stats_id\":\"29360\",\"position\":\"WR\",\"stats_global_id\":\"727279\",\"espn_id\":\"3043116\",\"weight\":\"203\",\"id\":\"12785\",\"birthdate\":\"780123600\",\"draft_team\":\"KCC\",\"name\":\"Robinson, Demarcus\",\"draft_pick\":\"28\",\"college\":\"Florida\",\"rotowire_id\":\"11163\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"team\":\"KCC\",\"cbs_id\":\"2061095\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11335\",\"stats_id\":\"29361\",\"position\":\"CB\",\"stats_global_id\":\"698448\",\"espn_id\":\"2986767\",\"weight\":\"206\",\"id\":\"12786\",\"birthdate\":\"770360400\",\"draft_team\":\"CHI\",\"name\":\"Hall, Deiondre'\",\"draft_pick\":\"29\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"11050\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"Dhall_Island1\",\"sportsdata_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"team\":\"FA\",\"cbs_id\":\"2007162\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11441\",\"stats_id\":\"29363\",\"position\":\"S\",\"stats_global_id\":\"691322\",\"espn_id\":\"2971550\",\"weight\":\"208\",\"id\":\"12787\",\"birthdate\":\"755931600\",\"draft_team\":\"CLE\",\"name\":\"Kindred, Derrick\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"11093\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"ddkjr26\",\"sportsdata_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"team\":\"FA\",\"cbs_id\":\"1996855\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11442\",\"stats_id\":\"29365\",\"position\":\"LB\",\"stats_global_id\":\"691005\",\"espn_id\":\"2978273\",\"weight\":\"237\",\"id\":\"12788\",\"birthdate\":\"758091600\",\"draft_team\":\"GBP\",\"name\":\"Martinez, Blake\",\"draft_pick\":\"33\",\"college\":\"Stanford\",\"rotowire_id\":\"11127\",\"height\":\"74\",\"jersey\":\"54\",\"twitter_username\":\"Big__Blake50\",\"sportsdata_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"team\":\"NYG\",\"cbs_id\":\"1996541\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11324\",\"stats_id\":\"29367\",\"position\":\"CB\",\"stats_global_id\":\"727758\",\"espn_id\":\"3042718\",\"weight\":\"177\",\"id\":\"12790\",\"birthdate\":\"806475600\",\"draft_team\":\"SFO\",\"name\":\"Robinson, Rashard\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"11164\",\"height\":\"74\",\"jersey\":\"30\",\"twitter_username\":\"SHAD_JUSTDOIT2\",\"sportsdata_id\":\"f8c2e532-8de2-4c8b-85bf-ed2e24c3b273\",\"team\":\"DAL\",\"cbs_id\":\"2061251\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11411\",\"stats_id\":\"29371\",\"position\":\"DE\",\"stats_global_id\":\"691837\",\"espn_id\":\"2974348\",\"weight\":\"296\",\"id\":\"12791\",\"birthdate\":\"771138000\",\"draft_team\":\"GBP\",\"name\":\"Lowry, Dean\",\"draft_pick\":\"39\",\"college\":\"Northwestern\",\"rotowire_id\":\"11119\",\"height\":\"78\",\"jersey\":\"94\",\"twitter_username\":\"DeanLowry94\",\"sportsdata_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"team\":\"GBP\",\"cbs_id\":\"1998499\"},{\"draft_year\":\"2016\",\"draft_round\":\"4\",\"rotoworld_id\":\"11444\",\"stats_id\":\"29372\",\"position\":\"TE\",\"stats_global_id\":\"623676\",\"espn_id\":\"2566659\",\"weight\":\"245\",\"id\":\"12792\",\"birthdate\":\"728283600\",\"draft_team\":\"CLE\",\"name\":\"DeValve, Seth\",\"draft_pick\":\"40\",\"college\":\"Princeton\",\"rotowire_id\":\"11221\",\"height\":\"75\",\"jersey\":\"87\",\"sportsdata_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"team\":\"FA\",\"cbs_id\":\"1984760\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11412\",\"stats_id\":\"29376\",\"position\":\"DE\",\"stats_global_id\":\"597485\",\"espn_id\":\"2567711\",\"weight\":\"270\",\"id\":\"12794\",\"birthdate\":\"727592400\",\"draft_team\":\"SFO\",\"name\":\"Blair, Ronald\",\"draft_pick\":\"3\",\"college\":\"Appalachian State\",\"rotowire_id\":\"10908\",\"height\":\"76\",\"jersey\":\"98\",\"twitter_username\":\"superblair\",\"sportsdata_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"team\":\"SFO\",\"cbs_id\":\"1840610\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11448\",\"stats_id\":\"29380\",\"position\":\"LB\",\"stats_global_id\":\"913011\",\"espn_id\":\"3961466\",\"weight\":\"261\",\"id\":\"12795\",\"birthdate\":\"713854800\",\"draft_team\":\"BAL\",\"name\":\"Judon, Matt\",\"draft_pick\":\"7\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"11083\",\"height\":\"75\",\"jersey\":\"99\",\"twitter_username\":\"man_dammn\",\"sportsdata_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"team\":\"BAL\",\"cbs_id\":\"2217545\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11449\",\"stats_id\":\"29381\",\"position\":\"DT\",\"stats_global_id\":\"605443\",\"espn_id\":\"2577078\",\"weight\":\"291\",\"id\":\"12796\",\"birthdate\":\"733554000\",\"draft_team\":\"SEA\",\"name\":\"Jefferson, Quinton\",\"draft_pick\":\"8\",\"college\":\"Maryland\",\"rotowire_id\":\"11069\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"team\":\"BUF\",\"cbs_id\":\"1860773\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11450\",\"stats_id\":\"29386\",\"position\":\"DT\",\"stats_global_id\":\"692375\",\"espn_id\":\"2976263\",\"weight\":\"310\",\"id\":\"12797\",\"draft_team\":\"WAS\",\"birthdate\":\"758264400\",\"name\":\"Ioannidis, Matt\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11063\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"team\":\"WAS\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11453\",\"stats_id\":\"29391\",\"position\":\"CB\",\"stats_global_id\":\"613344\",\"espn_id\":\"2575171\",\"weight\":\"203\",\"id\":\"12799\",\"birthdate\":\"748328400\",\"draft_team\":\"TEN\",\"name\":\"Sims, LeShaun\",\"draft_pick\":\"20\",\"college\":\"Southern Utah\",\"rotowire_id\":\"11175\",\"height\":\"72\",\"jersey\":\"38\",\"twitter_username\":\"LeshaunSims\",\"sportsdata_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"team\":\"CIN\",\"cbs_id\":\"1906463\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11456\",\"stats_id\":\"29397\",\"position\":\"WR\",\"stats_global_id\":\"615494\",\"espn_id\":\"2573343\",\"weight\":\"188\",\"id\":\"12800\",\"birthdate\":\"741762000\",\"draft_team\":\"GBP\",\"name\":\"Davis, Trevor\",\"draft_pick\":\"26\",\"college\":\"California\",\"rotowire_id\":\"11014\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"Trevor9Davis\",\"sportsdata_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"team\":\"FA\",\"cbs_id\":\"1906334\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11458\",\"stats_id\":\"29399\",\"position\":\"WR\",\"stats_global_id\":\"823156\",\"espn_id\":\"3116406\",\"weight\":\"185\",\"id\":\"12801\",\"birthdate\":\"762498000\",\"draft_team\":\"KCC\",\"name\":\"Hill, Tyreek\",\"draft_pick\":\"28\",\"college\":\"West Alabama\",\"rotowire_id\":\"11222\",\"height\":\"70\",\"jersey\":\"10\",\"twitter_username\":\"cheetah\",\"sportsdata_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"team\":\"KCC\",\"cbs_id\":\"2131163\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11459\",\"stats_id\":\"29400\",\"position\":\"DT\",\"stats_global_id\":\"653110\",\"espn_id\":\"2977670\",\"weight\":\"347\",\"id\":\"12802\",\"birthdate\":\"773038800\",\"draft_team\":\"HOU\",\"name\":\"Reader, D.J.\",\"draft_pick\":\"29\",\"college\":\"Clemson\",\"rotowire_id\":\"11114\",\"height\":\"75\",\"jersey\":\"98\",\"twitter_username\":\"Djread98\",\"sportsdata_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"team\":\"CIN\",\"cbs_id\":\"1983526\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11460\",\"stats_id\":\"29401\",\"position\":\"S\",\"stats_global_id\":\"911319\",\"espn_id\":\"3960454\",\"weight\":\"207\",\"id\":\"12803\",\"birthdate\":\"783234000\",\"draft_team\":\"ARI\",\"name\":\"Christian, Marqui\",\"draft_pick\":\"30\",\"college\":\"Midwestern State\",\"rotowire_id\":\"11223\",\"height\":\"71\",\"jersey\":\"43\",\"sportsdata_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"team\":\"FA\",\"cbs_id\":\"2235506\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11465\",\"stats_id\":\"29409\",\"position\":\"LB\",\"stats_global_id\":\"693795\",\"espn_id\":\"2971929\",\"weight\":\"221\",\"id\":\"12805\",\"birthdate\":\"761547600\",\"draft_team\":\"FA\",\"name\":\"Brown, Jatavis\",\"draft_pick\":\"38\",\"college\":\"Akron\",\"rotowire_id\":\"11225\",\"height\":\"71\",\"jersey\":\"57\",\"twitter_username\":\"JB_five7\",\"sportsdata_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"team\":\"FA\",\"cbs_id\":\"1999816\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11466\",\"stats_id\":\"29410\",\"position\":\"RB\",\"stats_global_id\":\"651653\",\"espn_id\":\"2974317\",\"weight\":\"238\",\"id\":\"12806\",\"birthdate\":\"738133200\",\"draft_team\":\"DEN\",\"name\":\"Janovich, Andy\",\"draft_pick\":\"1\",\"college\":\"Nebraska\",\"rotowire_id\":\"11068\",\"height\":\"73\",\"jersey\":\"31\",\"twitter_username\":\"AndyJanovich\",\"sportsdata_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"team\":\"CLE\",\"cbs_id\":\"1983674\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11467\",\"stats_id\":\"29411\",\"position\":\"TE\",\"stats_global_id\":\"608714\",\"espn_id\":\"2580330\",\"weight\":\"245\",\"id\":\"12807\",\"birthdate\":\"744008400\",\"draft_team\":\"FA\",\"name\":\"Hemingway, Temarrick\",\"draft_pick\":\"2\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11009\",\"height\":\"77\",\"jersey\":\"46\",\"twitter_username\":\"Baller4LifeTH\",\"sportsdata_id\":\"02fc59d0-8a66-431f-97fc-21fdc096eb14\",\"team\":\"WAS\",\"cbs_id\":\"1888046\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11473\",\"stats_id\":\"29417\",\"position\":\"LB\",\"stats_global_id\":\"820702\",\"espn_id\":\"3116368\",\"weight\":\"236\",\"id\":\"12812\",\"birthdate\":\"741675600\",\"draft_team\":\"TBB\",\"name\":\"Bond, Devante\",\"draft_pick\":\"8\",\"college\":\"Oklahoma\",\"rotowire_id\":\"10912\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"team\":\"FA\",\"cbs_id\":\"2131124\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11404\",\"stats_id\":\"29419\",\"position\":\"S\",\"stats_global_id\":\"594725\",\"espn_id\":\"2566034\",\"weight\":\"205\",\"id\":\"12813\",\"birthdate\":\"734677200\",\"draft_team\":\"CHI\",\"name\":\"Houston-Carson, DeAndre\",\"draft_pick\":\"10\",\"college\":\"William & Mary\",\"rotowire_id\":\"11060\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"team\":\"CHI\",\"cbs_id\":\"1825507\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11475\",\"stats_id\":\"29420\",\"position\":\"WR\",\"stats_global_id\":\"605325\",\"espn_id\":\"2577641\",\"weight\":\"171\",\"id\":\"12814\",\"birthdate\":\"720421200\",\"draft_team\":\"MIA\",\"name\":\"Grant, Jakeem\",\"draft_pick\":\"11\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10990\",\"height\":\"67\",\"jersey\":\"19\",\"twitter_username\":\"_TheDreamIsHere\",\"sportsdata_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"team\":\"MIA\",\"cbs_id\":\"1860924\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11476\",\"stats_id\":\"29421\",\"position\":\"QB\",\"stats_global_id\":\"696112\",\"espn_id\":\"2979501\",\"weight\":\"227\",\"id\":\"12815\",\"birthdate\":\"749970000\",\"draft_team\":\"WAS\",\"name\":\"Sudfeld, Nate\",\"draft_pick\":\"12\",\"college\":\"Indiana\",\"rotowire_id\":\"11187\",\"height\":\"78\",\"jersey\":\"7\",\"twitter_username\":\"NateSudfeld\",\"sportsdata_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"team\":\"PHI\",\"cbs_id\":\"2001862\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11478\",\"stats_id\":\"29423\",\"position\":\"CB\",\"stats_global_id\":\"692216\",\"espn_id\":\"2977756\",\"weight\":\"196\",\"id\":\"12817\",\"birthdate\":\"755931600\",\"draft_team\":\"DAL\",\"name\":\"Brown, Anthony\",\"draft_pick\":\"14\",\"college\":\"Purdue\",\"rotowire_id\":\"10921\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"team\":\"DAL\",\"cbs_id\":\"1998943\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11480\",\"stats_id\":\"29425\",\"position\":\"QB\",\"stats_global_id\":\"611341\",\"espn_id\":\"2582424\",\"weight\":\"212\",\"id\":\"12819\",\"birthdate\":\"727592400\",\"draft_team\":\"DET\",\"name\":\"Rudock, Jake\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"11228\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"team\":\"FA\",\"cbs_id\":\"1893078\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11484\",\"stats_id\":\"29430\",\"position\":\"S\",\"stats_global_id\":\"606081\",\"espn_id\":\"2576229\",\"weight\":\"191\",\"id\":\"12821\",\"birthdate\":\"744786000\",\"draft_team\":\"PHI\",\"name\":\"Countess, Blake\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"11231\",\"height\":\"70\",\"jersey\":\"39\",\"twitter_username\":\"TheeCount2\",\"sportsdata_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"team\":\"FA\",\"cbs_id\":\"1868370\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11485\",\"stats_id\":\"29431\",\"position\":\"RB\",\"stats_global_id\":\"691856\",\"espn_id\":\"2974365\",\"weight\":\"239\",\"id\":\"12822\",\"birthdate\":\"751611600\",\"draft_team\":\"TBB\",\"name\":\"Vitale, Dan\",\"draft_pick\":\"22\",\"college\":\"Northwestern\",\"rotowire_id\":\"10947\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"team\":\"NEP\",\"cbs_id\":\"1998516\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11486\",\"stats_id\":\"29432\",\"position\":\"RB\",\"stats_global_id\":\"606530\",\"espn_id\":\"2576450\",\"weight\":\"234\",\"id\":\"12823\",\"birthdate\":\"721112400\",\"draft_team\":\"SDC\",\"name\":\"Watt, Derek\",\"draft_pick\":\"23\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11232\",\"height\":\"74\",\"jersey\":\"44\",\"twitter_username\":\"DerekWatt34\",\"sportsdata_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"team\":\"PIT\",\"cbs_id\":\"1871361\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11487\",\"stats_id\":\"29433\",\"position\":\"WR\",\"stats_global_id\":\"694662\",\"espn_id\":\"2980378\",\"weight\":\"205\",\"id\":\"12824\",\"birthdate\":\"766558800\",\"draft_team\":\"CIN\",\"name\":\"Core, Cody\",\"draft_pick\":\"24\",\"college\":\"Ole Miss\",\"rotowire_id\":\"10981\",\"height\":\"75\",\"jersey\":\"17\",\"twitter_username\":\"Cody16Core\",\"sportsdata_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"team\":\"NYG\",\"cbs_id\":\"2000925\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11490\",\"stats_id\":\"29438\",\"position\":\"S\",\"stats_global_id\":\"697682\",\"weight\":\"190\",\"id\":\"12826\",\"draft_team\":\"MIA\",\"birthdate\":\"744267600\",\"name\":\"Lucas, Jordan\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"11120\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"team\":\"CHI\",\"cbs_id\":\"2006432\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11492\",\"stats_id\":\"29442\",\"position\":\"LB\",\"stats_global_id\":\"691101\",\"espn_id\":\"3050851\",\"weight\":\"230\",\"id\":\"12828\",\"birthdate\":\"769064400\",\"draft_team\":\"NEP\",\"name\":\"Grugier-Hill, Kamu\",\"draft_pick\":\"33\",\"college\":\"Eastern Illinois\",\"rotowire_id\":\"11233\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"team\":\"MIA\",\"cbs_id\":\"1996605\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11493\",\"stats_id\":\"29443\",\"position\":\"CB\",\"stats_global_id\":\"693989\",\"espn_id\":\"2979655\",\"weight\":\"193\",\"id\":\"12829\",\"birthdate\":\"769928400\",\"draft_team\":\"BAL\",\"name\":\"Canady, Maurice\",\"draft_pick\":\"34\",\"college\":\"Virginia\",\"rotowire_id\":\"10936\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"MauriceCanady26\",\"sportsdata_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"team\":\"DAL\",\"cbs_id\":\"2000050\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11496\",\"stats_id\":\"29446\",\"position\":\"S\",\"stats_global_id\":\"694105\",\"espn_id\":\"2972505\",\"weight\":\"223\",\"id\":\"12830\",\"birthdate\":\"776581200\",\"draft_team\":\"DAL\",\"name\":\"Frazier, Kavon\",\"draft_pick\":\"37\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11036\",\"height\":\"72\",\"jersey\":\"35\",\"twitter_username\":\"Kay_BlackSimba\",\"sportsdata_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"team\":\"MIA\",\"cbs_id\":\"2000164\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11498\",\"stats_id\":\"29448\",\"position\":\"LB\",\"stats_global_id\":\"699707\",\"espn_id\":\"2987743\",\"weight\":\"238\",\"id\":\"12831\",\"birthdate\":\"766990800\",\"draft_team\":\"NEP\",\"name\":\"Roberts, Elandon\",\"draft_pick\":\"39\",\"college\":\"Houston\",\"rotowire_id\":\"11234\",\"height\":\"72\",\"jersey\":\"44\",\"twitter_username\":\"Roberts_52\",\"sportsdata_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"team\":\"MIA\",\"cbs_id\":\"2007872\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11500\",\"stats_id\":\"29450\",\"position\":\"RB\",\"stats_global_id\":\"694135\",\"espn_id\":\"2980197\",\"weight\":\"230\",\"id\":\"12832\",\"birthdate\":\"754722000\",\"draft_team\":\"DAL\",\"name\":\"Jackson, Darius\",\"draft_pick\":\"41\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"11190\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Djackson_6\",\"sportsdata_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"team\":\"FA\",\"cbs_id\":\"2000193\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11501\",\"stats_id\":\"29451\",\"position\":\"TE\",\"stats_global_id\":\"696197\",\"espn_id\":\"2990959\",\"weight\":\"281\",\"id\":\"12833\",\"birthdate\":\"757918800\",\"draft_team\":\"CLE\",\"name\":\"Gathers, Rico\",\"draft_pick\":\"42\",\"college\":\"Baylor\",\"rotowire_id\":\"11236\",\"height\":\"78\",\"jersey\":\"82\",\"twitter_username\":\"kinggatz2\",\"sportsdata_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"team\":\"FA\",\"cbs_id\":\"2235884\"},{\"draft_year\":\"2016\",\"draft_round\":\"6\",\"rotoworld_id\":\"11504\",\"stats_id\":\"29453\",\"position\":\"S\",\"stats_global_id\":\"651104\",\"espn_id\":\"2971248\",\"weight\":\"194\",\"id\":\"12835\",\"birthdate\":\"775458000\",\"draft_team\":\"DEN\",\"name\":\"Parks, Will\",\"draft_pick\":\"44\",\"college\":\"Arizona\",\"rotowire_id\":\"11237\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"PhillyWill11\",\"sportsdata_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"team\":\"PHI\",\"cbs_id\":\"1984088\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11510\",\"stats_id\":\"29460\",\"position\":\"DE\",\"stats_global_id\":\"601654\",\"espn_id\":\"2567970\",\"weight\":\"271\",\"id\":\"12840\",\"birthdate\":\"748414800\",\"draft_team\":\"JAC\",\"name\":\"Woodard, Jonathan\",\"draft_pick\":\"5\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"11241\",\"height\":\"77\",\"jersey\":\"76\",\"twitter_username\":\"Woodro_96\",\"sportsdata_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"team\":\"FA\",\"cbs_id\":\"2009443\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11511\",\"stats_id\":\"29461\",\"position\":\"DE\",\"stats_global_id\":\"690824\",\"espn_id\":\"2972362\",\"weight\":\"265\",\"id\":\"12841\",\"birthdate\":\"764053200\",\"draft_team\":\"MIN\",\"name\":\"Weatherly, Stephen\",\"draft_pick\":\"6\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"10894\",\"height\":\"77\",\"jersey\":\"91\",\"twitter_username\":\"TDHAthlete\",\"sportsdata_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"team\":\"CAR\",\"cbs_id\":\"1996374\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11513\",\"stats_id\":\"29462\",\"position\":\"PN\",\"stats_global_id\":\"608398\",\"espn_id\":\"2577619\",\"weight\":\"226\",\"id\":\"12842\",\"birthdate\":\"746168400\",\"draft_team\":\"DEN\",\"name\":\"Dixon, Riley\",\"draft_pick\":\"7\",\"college\":\"Syracuse\",\"rotowire_id\":\"11022\",\"height\":\"77\",\"jersey\":\"9\",\"twitter_username\":\"RileyTDixon92\",\"sportsdata_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11517\",\"stats_id\":\"29469\",\"position\":\"PN\",\"stats_global_id\":\"751951\",\"espn_id\":\"3061740\",\"weight\":\"209\",\"id\":\"12844\",\"birthdate\":\"704350800\",\"draft_team\":\"NYJ\",\"name\":\"Edwards, Lachlan\",\"draft_pick\":\"14\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"11027\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"Lach_Edwards49\",\"sportsdata_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11518\",\"stats_id\":\"29470\",\"position\":\"RB\",\"stats_global_id\":\"714230\",\"espn_id\":\"3002265\",\"weight\":\"223\",\"id\":\"12845\",\"birthdate\":\"767163600\",\"draft_team\":\"DET\",\"name\":\"Washington, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Washington\",\"rotowire_id\":\"10737\",\"height\":\"73\",\"jersey\":\"24\",\"twitter_username\":\"UWdwayne12\",\"sportsdata_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"team\":\"NOS\",\"cbs_id\":\"2061078\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11523\",\"stats_id\":\"29479\",\"position\":\"S\",\"stats_global_id\":\"728192\",\"espn_id\":\"3042455\",\"weight\":\"205\",\"id\":\"12850\",\"birthdate\":\"738997200\",\"draft_team\":\"CIN\",\"name\":\"Fejedelem, Clayton\",\"draft_pick\":\"24\",\"college\":\"Illinois\",\"rotowire_id\":\"11244\",\"height\":\"72\",\"jersey\":\"42\",\"twitter_username\":\"ClayFejedelem\",\"sportsdata_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"team\":\"MIA\",\"cbs_id\":\"2060685\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11400\",\"stats_id\":\"29480\",\"position\":\"LB\",\"stats_global_id\":\"651785\",\"espn_id\":\"2976249\",\"weight\":\"235\",\"id\":\"12851\",\"birthdate\":\"725000400\",\"draft_team\":\"PIT\",\"name\":\"Matakevich, Tyler\",\"draft_pick\":\"25\",\"college\":\"Temple\",\"rotowire_id\":\"11129\",\"height\":\"73\",\"jersey\":\"44\",\"twitter_username\":\"44_Matakevich\",\"sportsdata_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"team\":\"BUF\",\"cbs_id\":\"1983609\"},{\"draft_year\":\"2016\",\"draft_round\":\"7\",\"rotoworld_id\":\"11528\",\"stats_id\":\"29485\",\"position\":\"LB\",\"stats_global_id\":\"727847\",\"espn_id\":\"3043184\",\"weight\":\"236\",\"id\":\"12854\",\"birthdate\":\"724050000\",\"draft_team\":\"PHI\",\"name\":\"Walker, Joe\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"11247\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"team\":\"SFO\",\"cbs_id\":\"2061059\"},{\"draft_year\":\"2016\",\"draft_round\":\"5\",\"rotoworld_id\":\"11446\",\"stats_id\":\"29377\",\"position\":\"RB\",\"stats_global_id\":\"605335\",\"espn_id\":\"2577654\",\"weight\":\"210\",\"id\":\"12857\",\"birthdate\":\"730357200\",\"draft_team\":\"OAK\",\"name\":\"Washington, DeAndre\",\"draft_pick\":\"4\",\"college\":\"Texas Tech\",\"rotowire_id\":\"10893\",\"height\":\"68\",\"jersey\":\"33\",\"twitter_username\":\"dwa5hington\",\"sportsdata_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"team\":\"MIA\",\"cbs_id\":\"1860934\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11556\",\"stats_id\":\"29789\",\"position\":\"TE\",\"stats_global_id\":\"607660\",\"espn_id\":\"2576854\",\"weight\":\"230\",\"id\":\"12859\",\"draft_team\":\"FA\",\"birthdate\":\"728370000\",\"name\":\"Anderson, Stephen\",\"college\":\"California\",\"rotowire_id\":\"10885\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"team\":\"LAC\",\"cbs_id\":\"1880821\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11602\",\"stats_id\":\"29792\",\"position\":\"PK\",\"stats_global_id\":\"691032\",\"espn_id\":\"2971573\",\"weight\":\"183\",\"id\":\"12860\",\"draft_team\":\"FA\",\"birthdate\":\"759819600\",\"name\":\"Fairbairn, Ka'imi\",\"college\":\"UCLA\",\"rotowire_id\":\"11031\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"team\":\"HOU\",\"cbs_id\":\"1996562\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11587\",\"stats_id\":\"29913\",\"position\":\"TE\",\"stats_global_id\":\"679453\",\"espn_id\":\"2969241\",\"weight\":\"252\",\"id\":\"12868\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Braunecker, Ben\",\"college\":\"Harvard\",\"rotowire_id\":\"10917\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"team\":\"FA\",\"cbs_id\":\"1994904\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11565\",\"stats_id\":\"29872\",\"position\":\"RB\",\"stats_global_id\":\"652764\",\"espn_id\":\"2978124\",\"weight\":\"205\",\"id\":\"12871\",\"draft_team\":\"FA\",\"birthdate\":\"753944400\",\"name\":\"Foster, D.J.\",\"college\":\"Arizona State\",\"rotowire_id\":\"11004\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"team\":\"ARI\",\"cbs_id\":\"1984096\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11946\",\"stats_id\":\"29893\",\"position\":\"WR\",\"stats_global_id\":\"704246\",\"espn_id\":\"2982761\",\"weight\":\"217\",\"id\":\"12873\",\"draft_team\":\"FA\",\"birthdate\":\"772779600\",\"name\":\"Jones, Andy\",\"college\":\"Jacksonville\",\"rotowire_id\":\"11269\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"team\":\"FA\",\"cbs_id\":\"2011037\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11834\",\"stats_id\":\"29694\",\"position\":\"RB\",\"stats_global_id\":\"602831\",\"weight\":\"229\",\"id\":\"12887\",\"draft_team\":\"FA\",\"birthdate\":\"718088400\",\"name\":\"Kelley, Rob\",\"college\":\"Tulane\",\"rotowire_id\":\"11265\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"team\":\"FA\",\"cbs_id\":\"1851315\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11578\",\"stats_id\":\"29559\",\"position\":\"DT\",\"stats_global_id\":\"756607\",\"weight\":\"292\",\"id\":\"12888\",\"draft_team\":\"FA\",\"birthdate\":\"719816400\",\"name\":\"Zimmer, Justin\",\"college\":\"Ferris State\",\"rotowire_id\":\"11327\",\"height\":\"75\",\"jersey\":\"92\",\"sportsdata_id\":\"f125395e-820f-40d7-9775-ac101292719d\",\"team\":\"BUF\",\"cbs_id\":\"2235504\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11900\",\"stats_id\":\"29795\",\"position\":\"WR\",\"stats_global_id\":\"614302\",\"weight\":\"225\",\"id\":\"12890\",\"draft_team\":\"FA\",\"birthdate\":\"725346000\",\"name\":\"Jones, Tevin\",\"college\":\"Memphis\",\"rotowire_id\":\"11467\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"team\":\"FA\",\"cbs_id\":\"1906376\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11245\",\"stats_id\":\"29208\",\"position\":\"TE\",\"stats_global_id\":\"602069\",\"weight\":\"248\",\"id\":\"12898\",\"draft_team\":\"FA\",\"birthdate\":\"726555600\",\"name\":\"Travis, Ross\",\"college\":\"Penn State\",\"rotowire_id\":\"10837\",\"height\":\"78\",\"jersey\":\"43\",\"sportsdata_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"team\":\"NYJ\",\"cbs_id\":\"2195596\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11680\",\"stats_id\":\"29514\",\"position\":\"S\",\"stats_global_id\":\"651969\",\"weight\":\"210\",\"id\":\"12906\",\"draft_team\":\"FA\",\"birthdate\":\"760770000\",\"name\":\"Wilson, Jarrod\",\"college\":\"Michigan\",\"rotowire_id\":\"11483\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"team\":\"JAC\",\"cbs_id\":\"1983737\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11264\",\"stats_id\":\"29224\",\"position\":\"S\",\"stats_global_id\":\"737186\",\"weight\":\"220\",\"id\":\"12910\",\"draft_team\":\"FA\",\"birthdate\":\"639032400\",\"name\":\"Harris, Erik\",\"college\":\"California (PA)\",\"rotowire_id\":\"10858\",\"height\":\"74\",\"jersey\":\"25\",\"sportsdata_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"team\":\"LVR\",\"cbs_id\":\"2219916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12049\",\"stats_id\":\"30000\",\"position\":\"RB\",\"stats_global_id\":\"693429\",\"weight\":\"205\",\"id\":\"12912\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"Richard, Jalen\",\"college\":\"Southern Miss\",\"rotowire_id\":\"11522\",\"height\":\"68\",\"jersey\":\"30\",\"sportsdata_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"team\":\"LVR\",\"cbs_id\":\"2237795\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11614\",\"stats_id\":\"29703\",\"position\":\"WR\",\"stats_global_id\":\"652520\",\"weight\":\"195\",\"id\":\"12913\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Erickson, Alex\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11257\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"team\":\"CIN\",\"cbs_id\":\"1983823\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11576\",\"stats_id\":\"29958\",\"position\":\"WR\",\"stats_global_id\":\"749099\",\"weight\":\"190\",\"id\":\"12916\",\"draft_team\":\"FA\",\"birthdate\":\"682837200\",\"name\":\"Holton, Johnny\",\"college\":\"Cincinnati\",\"rotowire_id\":\"11059\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"team\":\"NYG\",\"cbs_id\":\"2080247\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11788\",\"stats_id\":\"29638\",\"position\":\"WR\",\"stats_global_id\":\"607678\",\"weight\":\"205\",\"id\":\"12917\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Harris, Maurice\",\"college\":\"California\",\"rotowire_id\":\"11261\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"team\":\"FA\",\"cbs_id\":\"1880831\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11933\",\"stats_id\":\"29854\",\"position\":\"WR\",\"stats_global_id\":\"608059\",\"weight\":\"168\",\"id\":\"12921\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Lewis, Tommylee\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11508\",\"height\":\"67\",\"jersey\":\"14\",\"sportsdata_id\":\"b103b096-6be9-4f87-9ae4-5d217f560685\",\"team\":\"FA\",\"cbs_id\":\"2237113\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11999\",\"stats_id\":\"29951\",\"position\":\"RB\",\"stats_global_id\":\"915397\",\"weight\":\"235\",\"id\":\"12923\",\"draft_team\":\"FA\",\"birthdate\":\"743317200\",\"name\":\"Ham, C.J.\",\"college\":\"Augustana (SD)\",\"rotowire_id\":\"11599\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"team\":\"MIN\",\"cbs_id\":\"2237239\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12111\",\"stats_id\":\"30061\",\"position\":\"RB\",\"stats_global_id\":\"700813\",\"weight\":\"205\",\"id\":\"12929\",\"draft_team\":\"FA\",\"birthdate\":\"754549200\",\"name\":\"Pope, Troymaine\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"11642\",\"height\":\"68\",\"jersey\":\"35\",\"sportsdata_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"team\":\"LAC\",\"cbs_id\":\"2257104\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11627\",\"stats_id\":\"29785\",\"position\":\"WR\",\"stats_global_id\":\"608360\",\"weight\":\"190\",\"id\":\"12930\",\"draft_team\":\"FA\",\"birthdate\":\"736923600\",\"name\":\"Anderson, Robby\",\"college\":\"Temple\",\"rotowire_id\":\"11191\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"team\":\"CAR\",\"cbs_id\":\"1886746\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11753\",\"stats_id\":\"29609\",\"position\":\"WR\",\"stats_global_id\":\"702949\",\"weight\":\"184\",\"id\":\"12934\",\"draft_team\":\"FA\",\"birthdate\":\"758350800\",\"name\":\"Rogers, Chester\",\"college\":\"Grambling State\",\"rotowire_id\":\"11256\",\"height\":\"72\",\"jersey\":\"80\",\"sportsdata_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"team\":\"FA\",\"cbs_id\":\"2010688\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11805\",\"stats_id\":\"29655\",\"position\":\"CB\",\"stats_global_id\":\"694626\",\"weight\":\"213\",\"id\":\"12938\",\"draft_team\":\"FA\",\"birthdate\":\"719557200\",\"name\":\"Poole, Brian\",\"college\":\"Florida\",\"rotowire_id\":\"11319\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"team\":\"NYJ\",\"cbs_id\":\"2000862\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11852\",\"stats_id\":\"29720\",\"position\":\"S\",\"stats_global_id\":\"693056\",\"weight\":\"200\",\"id\":\"12940\",\"draft_team\":\"FA\",\"birthdate\":\"776581200\",\"name\":\"Brice, Kentrell\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11204\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"team\":\"FA\",\"cbs_id\":\"1999380\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11547\",\"stats_id\":\"29867\",\"position\":\"DE\",\"stats_global_id\":\"697477\",\"weight\":\"263\",\"id\":\"12948\",\"draft_team\":\"FA\",\"birthdate\":\"803365200\",\"name\":\"Okwara, Romeo\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11156\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"team\":\"DET\",\"cbs_id\":\"2005661\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11607\",\"stats_id\":\"29794\",\"position\":\"DE\",\"stats_global_id\":\"606108\",\"weight\":\"302\",\"id\":\"12950\",\"draft_team\":\"FA\",\"birthdate\":\"740379600\",\"name\":\"Heath, Joel\",\"college\":\"Michigan State\",\"rotowire_id\":\"11055\",\"height\":\"78\",\"jersey\":\"95\",\"sportsdata_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"team\":\"DEN\",\"cbs_id\":\"1868397\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11880\",\"stats_id\":\"29759\",\"position\":\"DT\",\"stats_global_id\":\"602833\",\"weight\":\"345\",\"id\":\"12952\",\"draft_team\":\"FA\",\"birthdate\":\"721026000\",\"name\":\"Pierce, Michael\",\"college\":\"Samford\",\"rotowire_id\":\"11313\",\"height\":\"72\",\"jersey\":\"97\",\"sportsdata_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"team\":\"MIN\",\"cbs_id\":\"1851317\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10295\",\"stats_id\":\"28365\",\"position\":\"TE\",\"stats_global_id\":\"563293\",\"weight\":\"255\",\"id\":\"12955\",\"draft_team\":\"FA\",\"birthdate\":\"702882000\",\"name\":\"Manhertz, Chris\",\"college\":\"Canisius\",\"rotowire_id\":\"10033\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"team\":\"CAR\",\"cbs_id\":\"2167520\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11877\",\"stats_id\":\"29754\",\"position\":\"PK\",\"stats_global_id\":\"700299\",\"weight\":\"184\",\"id\":\"12956\",\"draft_team\":\"FA\",\"birthdate\":\"773557200\",\"name\":\"Lutz, Wil\",\"college\":\"Georgia State\",\"rotowire_id\":\"11309\",\"height\":\"71\",\"jersey\":\"3\",\"sportsdata_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"team\":\"NOS\",\"cbs_id\":\"2008545\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11624\",\"stats_id\":\"29842\",\"position\":\"CB\",\"stats_global_id\":\"694881\",\"weight\":\"180\",\"id\":\"12957\",\"draft_team\":\"FA\",\"birthdate\":\"729147600\",\"name\":\"Crawley, Ken\",\"college\":\"Colorado\",\"rotowire_id\":\"10986\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"team\":\"NOS\",\"cbs_id\":\"2000766\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11538\",\"stats_id\":\"29505\",\"position\":\"LB\",\"stats_global_id\":\"591933\",\"weight\":\"238\",\"id\":\"12958\",\"draft_team\":\"FA\",\"birthdate\":\"743058000\",\"name\":\"Norris, Jared\",\"college\":\"Utah\",\"rotowire_id\":\"11149\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"e7b9abe1-2a5f-4029-90f5-7fd174750093\",\"team\":\"WAS\",\"cbs_id\":\"1825054\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11909\",\"stats_id\":\"29807\",\"position\":\"LB\",\"stats_global_id\":\"607700\",\"weight\":\"263\",\"id\":\"12964\",\"draft_team\":\"FA\",\"birthdate\":\"744094800\",\"name\":\"Scarlett, Brennan\",\"college\":\"Stanford\",\"rotowire_id\":\"11474\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"team\":\"HOU\",\"cbs_id\":\"1880845\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10767\",\"stats_id\":\"28694\",\"position\":\"DT\",\"stats_global_id\":\"590739\",\"weight\":\"293\",\"id\":\"12966\",\"draft_team\":\"FA\",\"birthdate\":\"683269200\",\"name\":\"Pierre, Olsen\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"10615\",\"height\":\"76\",\"jersey\":\"72\",\"sportsdata_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"team\":\"FA\",\"cbs_id\":\"2174835\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11573\",\"stats_id\":\"29507\",\"position\":\"CB\",\"stats_global_id\":\"651572\",\"weight\":\"193\",\"id\":\"12970\",\"draft_team\":\"FA\",\"birthdate\":\"727592400\",\"name\":\"Boddy-Calhoun, Briean\",\"college\":\"Minnesota\",\"rotowire_id\":\"10910\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"team\":\"FA\",\"cbs_id\":\"1983743\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"8805\",\"stats_id\":\"27000\",\"position\":\"S\",\"stats_global_id\":\"517800\",\"weight\":\"199\",\"id\":\"12974\",\"draft_team\":\"FA\",\"birthdate\":\"662101200\",\"name\":\"Dangerfield, Jordan\",\"college\":\"Towson\",\"rotowire_id\":\"9578\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"team\":\"PIT\",\"cbs_id\":\"2059181\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12005\",\"stats_id\":\"29957\",\"position\":\"CB\",\"stats_global_id\":\"786655\",\"weight\":\"195\",\"id\":\"12976\",\"draft_team\":\"FA\",\"birthdate\":\"727851600\",\"name\":\"Hamilton, Antonio\",\"college\":\"South Carolina State\",\"rotowire_id\":\"11518\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"team\":\"KCC\",\"cbs_id\":\"2237232\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10215\",\"stats_id\":\"28289\",\"position\":\"CB\",\"stats_global_id\":\"828353\",\"weight\":\"198\",\"id\":\"12978\",\"draft_team\":\"FA\",\"birthdate\":\"634107600\",\"name\":\"Goodwin, C.J.\",\"college\":\"California (PA)\",\"rotowire_id\":\"9842\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"team\":\"DAL\",\"cbs_id\":\"2133167\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11010\",\"stats_id\":\"28982\",\"position\":\"DT\",\"stats_global_id\":\"602119\",\"weight\":\"292\",\"id\":\"12979\",\"draft_team\":\"FA\",\"birthdate\":\"725605200\",\"name\":\"Williams, DeShawn\",\"college\":\"Clemson\",\"rotowire_id\":\"10793\",\"height\":\"73\",\"jersey\":\"97\",\"sportsdata_id\":\"9492f51a-22eb-465f-b3bb-aaee81ce76f5\",\"team\":\"DEN\",\"cbs_id\":\"2174847\"},{\"draft_year\":\"2016\",\"nfl_id\":\"corylittleton/2556593\",\"rotoworld_id\":\"11826\",\"stats_id\":\"29718\",\"position\":\"LB\",\"stats_global_id\":\"695191\",\"weight\":\"228\",\"id\":\"12985\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Littleton, Cory\",\"college\":\"Washington\",\"rotowire_id\":\"11113\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"team\":\"LVR\",\"cbs_id\":\"2001223\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9797\",\"stats_id\":\"27862\",\"position\":\"DE\",\"stats_global_id\":\"509233\",\"weight\":\"275\",\"id\":\"12987\",\"draft_team\":\"FA\",\"birthdate\":\"673160400\",\"name\":\"Hyder, Kerry\",\"college\":\"Texas Tech\",\"rotowire_id\":\"9403\",\"height\":\"74\",\"jersey\":\"92\",\"sportsdata_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"team\":\"SFO\",\"cbs_id\":\"2130513\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11638\",\"stats_id\":\"29875\",\"position\":\"CB\",\"stats_global_id\":\"683400\",\"weight\":\"190\",\"id\":\"12988\",\"draft_team\":\"FA\",\"birthdate\":\"748501200\",\"name\":\"Jones, Jonathan\",\"college\":\"Auburn\",\"rotowire_id\":\"11081\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"team\":\"NEP\",\"cbs_id\":\"1995671\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11729\",\"stats_id\":\"29574\",\"position\":\"S\",\"stats_global_id\":\"610937\",\"weight\":\"204\",\"id\":\"12990\",\"draft_team\":\"FA\",\"birthdate\":\"711176400\",\"name\":\"Farley, Matthias\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11292\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"team\":\"NYJ\",\"cbs_id\":\"1893194\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11927\",\"stats_id\":\"29841\",\"position\":\"S\",\"stats_global_id\":\"606570\",\"weight\":\"200\",\"id\":\"12998\",\"draft_team\":\"FA\",\"birthdate\":\"746514000\",\"name\":\"Adams, Andrew\",\"college\":\"Connecticut\",\"rotowire_id\":\"11527\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"team\":\"TBB\",\"cbs_id\":\"1871389\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11639\",\"stats_id\":\"29876\",\"position\":\"CB\",\"stats_global_id\":\"695098\",\"weight\":\"190\",\"id\":\"13001\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"LeBlanc, Cre'von\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11362\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"team\":\"PHI\",\"cbs_id\":\"2001515\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11939\",\"stats_id\":\"29873\",\"position\":\"DT\",\"stats_global_id\":\"607345\",\"weight\":\"315\",\"id\":\"13013\",\"draft_team\":\"FA\",\"birthdate\":\"724827600\",\"name\":\"Hamilton, Woodrow\",\"college\":\"Mississippi\",\"rotowire_id\":\"11355\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"b3beb95a-c1e7-4d03-b61a-097199528816\",\"team\":\"FA\",\"cbs_id\":\"1878010\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"11067\",\"stats_id\":\"29062\",\"position\":\"S\",\"stats_global_id\":\"566136\",\"weight\":\"190\",\"id\":\"13017\",\"draft_team\":\"FA\",\"birthdate\":\"711435600\",\"name\":\"Riley, Curtis\",\"college\":\"Fresno State\",\"rotowire_id\":\"10658\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"team\":\"MIN\",\"cbs_id\":\"2175077\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11610\",\"stats_id\":\"29534\",\"position\":\"CB\",\"stats_global_id\":\"697698\",\"weight\":\"191\",\"id\":\"13022\",\"draft_team\":\"FA\",\"birthdate\":\"748069200\",\"name\":\"Williams, Trevor\",\"college\":\"Penn State\",\"rotowire_id\":\"11494\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"team\":\"FA\",\"cbs_id\":\"2237256\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11879\",\"stats_id\":\"29758\",\"position\":\"LB\",\"stats_global_id\":\"593556\",\"weight\":\"227\",\"id\":\"13026\",\"draft_team\":\"FA\",\"birthdate\":\"714459600\",\"name\":\"Onwuasor, Patrick\",\"college\":\"Portland State\",\"rotowire_id\":\"11311\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"team\":\"NYJ\",\"cbs_id\":\"1824682\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10703\",\"stats_id\":\"29090\",\"position\":\"CB\",\"stats_global_id\":\"791888\",\"weight\":\"190\",\"id\":\"13034\",\"draft_team\":\"FA\",\"birthdate\":\"727074000\",\"name\":\"Bausby, DeVante\",\"college\":\"Pittsburg State\",\"rotowire_id\":\"10775\",\"height\":\"74\",\"jersey\":\"41\",\"sportsdata_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"team\":\"DEN\",\"cbs_id\":\"2175055\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10868\",\"stats_id\":\"28975\",\"position\":\"TE\",\"stats_global_id\":\"504496\",\"weight\":\"266\",\"id\":\"13044\",\"draft_team\":\"FA\",\"birthdate\":\"662274000\",\"name\":\"Lengel, Matt\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"10558\",\"height\":\"79\",\"jersey\":\"89\",\"sportsdata_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"team\":\"FA\",\"cbs_id\":\"2174840\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10218\",\"stats_id\":\"28292\",\"position\":\"PN\",\"stats_global_id\":\"542839\",\"weight\":\"200\",\"id\":\"13051\",\"draft_team\":\"FA\",\"birthdate\":\"710398800\",\"name\":\"Palardy, Michael\",\"college\":\"Tennessee\",\"rotowire_id\":\"10053\",\"height\":\"71\",\"jersey\":\"2\",\"sportsdata_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"team\":\"CAR\"},{\"draft_year\":\"2016\",\"nfl_id\":\"mattwile/2553622\",\"rotoworld_id\":\"10803\",\"stats_id\":\"28738\",\"position\":\"PN\",\"stats_global_id\":\"606093\",\"weight\":\"225\",\"id\":\"13056\",\"draft_team\":\"FA\",\"birthdate\":\"709016400\",\"name\":\"Wile, Matt\",\"college\":\"Michigan\",\"rotowire_id\":\"10532\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11359\",\"stats_id\":\"29700\",\"position\":\"RB\",\"stats_global_id\":\"607821\",\"weight\":\"228\",\"id\":\"13057\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Carson, Tra\",\"college\":\"Texas A&M\",\"rotowire_id\":\"10969\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"team\":\"FA\",\"cbs_id\":\"1880848\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10747\",\"stats_id\":\"28658\",\"position\":\"TE\",\"stats_global_id\":\"554431\",\"weight\":\"263\",\"id\":\"13065\",\"draft_team\":\"FA\",\"birthdate\":\"703918800\",\"name\":\"Tomlinson, Eric\",\"college\":\"UTEP\",\"rotowire_id\":\"10553\",\"height\":\"78\",\"jersey\":\"83\",\"sportsdata_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"team\":\"FA\",\"cbs_id\":\"1759992\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11781\",\"stats_id\":\"29631\",\"position\":\"WR\",\"stats_global_id\":\"692660\",\"weight\":\"182\",\"id\":\"13066\",\"draft_team\":\"FA\",\"birthdate\":\"776322000\",\"name\":\"Raymond, Kalif\",\"college\":\"Holy Cross\",\"rotowire_id\":\"11429\",\"height\":\"68\",\"jersey\":\"14\",\"sportsdata_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"team\":\"TEN\",\"cbs_id\":\"1999329\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12048\",\"stats_id\":\"29999\",\"position\":\"DE\",\"stats_global_id\":\"605326\",\"weight\":\"295\",\"id\":\"13072\",\"draft_team\":\"FA\",\"birthdate\":\"721458000\",\"name\":\"Jackson, Branden\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11065\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"team\":\"SEA\",\"cbs_id\":\"1860925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11751\",\"stats_id\":\"29607\",\"position\":\"CB\",\"stats_global_id\":\"599683\",\"weight\":\"190\",\"id\":\"13075\",\"draft_team\":\"FA\",\"birthdate\":\"716533200\",\"name\":\"Milton, Chris\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11420\",\"height\":\"71\",\"jersey\":\"30\",\"sportsdata_id\":\"3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3\",\"team\":\"TEN\",\"cbs_id\":\"1850781\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11763\",\"stats_id\":\"29798\",\"position\":\"S\",\"stats_global_id\":\"597547\",\"weight\":\"210\",\"id\":\"13082\",\"draft_team\":\"FA\",\"birthdate\":\"748933200\",\"name\":\"Middleton, Doug\",\"college\":\"Appalachian State\",\"rotowire_id\":\"11459\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"team\":\"JAC\",\"cbs_id\":\"1840624\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12062\",\"stats_id\":\"30014\",\"position\":\"CB\",\"stats_global_id\":\"824084\",\"weight\":\"175\",\"id\":\"13083\",\"draft_team\":\"FA\",\"birthdate\":\"742971600\",\"name\":\"Elliott, Javien\",\"college\":\"Florida State\",\"rotowire_id\":\"11407\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"team\":\"FA\",\"cbs_id\":\"2238398\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11848\",\"stats_id\":\"29714\",\"position\":\"DE\",\"stats_global_id\":\"915155\",\"weight\":\"275\",\"id\":\"13085\",\"draft_team\":\"FA\",\"birthdate\":\"779346000\",\"name\":\"Fox, Morgan\",\"college\":\"Colorado State-Pueblo\",\"rotowire_id\":\"11571\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"team\":\"LAR\",\"cbs_id\":\"2236914\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11803\",\"stats_id\":\"29653\",\"position\":\"S\",\"stats_global_id\":\"695105\",\"weight\":\"198\",\"id\":\"13087\",\"draft_team\":\"FA\",\"birthdate\":\"687416400\",\"name\":\"Neasman, Sharrod\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11316\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"team\":\"ATL\",\"cbs_id\":\"2001521\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11575\",\"stats_id\":\"29950\",\"position\":\"DT\",\"stats_global_id\":\"599025\",\"weight\":\"310\",\"id\":\"13100\",\"draft_team\":\"FA\",\"birthdate\":\"726037200\",\"name\":\"Woods, Antwaun\",\"college\":\"USC\",\"rotowire_id\":\"10942\",\"height\":\"73\",\"jersey\":\"99\",\"sportsdata_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"team\":\"DAL\",\"cbs_id\":\"1851134\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11800\",\"stats_id\":\"29650\",\"position\":\"RB\",\"stats_global_id\":\"608353\",\"weight\":\"195\",\"id\":\"13108\",\"draft_team\":\"FA\",\"birthdate\":\"750661200\",\"name\":\"McKissic, J.D.\",\"college\":\"Arkansas State\",\"rotowire_id\":\"11312\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"team\":\"WAS\",\"cbs_id\":\"1886804\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9332\",\"birthdate\":\"506926800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McVay, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"771b222a-cd41-4ffa-bb86-92932911629d\",\"id\":\"13111\",\"team\":\"LAR\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9285\",\"birthdate\":\"133074000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"McDermott, Sean\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"24ddc0fb-4e6f-4c67-b3c1-8fa7acd691cc\",\"id\":\"13112\",\"team\":\"BUF\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12151\",\"stats_id\":\"30125\",\"position\":\"QB\",\"stats_global_id\":\"828743\",\"weight\":\"215\",\"id\":\"13113\",\"draft_team\":\"HOU\",\"birthdate\":\"811054800\",\"name\":\"Watson, Deshaun\",\"draft_pick\":\"12\",\"college\":\"Clemson\",\"rotowire_id\":\"11712\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"team\":\"HOU\",\"cbs_id\":\"2133482\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12160\",\"stats_id\":\"30165\",\"position\":\"QB\",\"stats_global_id\":\"839059\",\"weight\":\"235\",\"id\":\"13114\",\"draft_team\":\"CLE\",\"birthdate\":\"820645200\",\"name\":\"Kizer, DeShone\",\"draft_pick\":\"20\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11692\",\"height\":\"76\",\"jersey\":\"9\",\"sportsdata_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"team\":\"FA\",\"cbs_id\":\"2142291\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12135\",\"stats_id\":\"30115\",\"position\":\"QB\",\"stats_global_id\":\"728169\",\"weight\":\"222\",\"id\":\"13115\",\"draft_team\":\"FA\",\"birthdate\":\"777358800\",\"name\":\"Trubisky, Mitchell\",\"draft_pick\":\"2\",\"college\":\"North Carolina\",\"rotowire_id\":\"11709\",\"height\":\"75\",\"jersey\":\"10\",\"sportsdata_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"team\":\"CHI\",\"cbs_id\":\"2060476\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12142\",\"stats_id\":\"30123\",\"position\":\"QB\",\"stats_global_id\":\"839031\",\"weight\":\"230\",\"id\":\"13116\",\"draft_team\":\"KCC\",\"birthdate\":\"811314000\",\"name\":\"Mahomes, Patrick\",\"draft_pick\":\"10\",\"college\":\"Texas Tech\",\"rotowire_id\":\"11839\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"team\":\"KCC\",\"cbs_id\":\"2142052\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12335\",\"stats_id\":\"30248\",\"position\":\"QB\",\"stats_global_id\":\"741262\",\"weight\":\"216\",\"id\":\"13119\",\"draft_team\":\"PIT\",\"birthdate\":\"791096400\",\"name\":\"Dobbs, Joshua\",\"draft_pick\":\"27\",\"college\":\"Tennessee\",\"rotowire_id\":\"11834\",\"height\":\"75\",\"jersey\":\"5\",\"sportsdata_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"team\":\"PIT\",\"cbs_id\":\"2071844\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12208\",\"stats_id\":\"30200\",\"position\":\"QB\",\"stats_global_id\":\"733638\",\"weight\":\"225\",\"id\":\"13120\",\"draft_team\":\"NYG\",\"birthdate\":\"790750800\",\"name\":\"Webb, Davis\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"11843\",\"height\":\"77\",\"jersey\":\"5\",\"sportsdata_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"team\":\"FA\",\"cbs_id\":\"2061379\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12217\",\"stats_id\":\"30366\",\"position\":\"QB\",\"stats_global_id\":\"653107\",\"weight\":\"216\",\"id\":\"13121\",\"draft_team\":\"DEN\",\"birthdate\":\"764658000\",\"name\":\"Kelly, Chad\",\"draft_pick\":\"35\",\"college\":\"Mississippi\",\"rotowire_id\":\"12225\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"team\":\"FA\",\"cbs_id\":\"2818376\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12475\",\"stats_id\":\"30788\",\"position\":\"QB\",\"stats_global_id\":\"694117\",\"weight\":\"225\",\"id\":\"13124\",\"draft_team\":\"FA\",\"birthdate\":\"753858000\",\"name\":\"Rush, Cooper\",\"college\":\"Central Michigan\",\"rotowire_id\":\"11841\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"team\":\"DAL\",\"cbs_id\":\"2000176\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12328\",\"stats_id\":\"30217\",\"position\":\"QB\",\"stats_global_id\":\"691784\",\"weight\":\"215\",\"id\":\"13125\",\"draft_team\":\"SFO\",\"birthdate\":\"753426000\",\"name\":\"Beathard, C.J.\",\"draft_pick\":\"40\",\"college\":\"Iowa\",\"rotowire_id\":\"11833\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"team\":\"SFO\",\"cbs_id\":\"1998463\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12220\",\"stats_id\":\"30284\",\"position\":\"QB\",\"stats_global_id\":\"650974\",\"weight\":\"225\",\"id\":\"13127\",\"draft_team\":\"BUF\",\"birthdate\":\"768027600\",\"name\":\"Peterman, Nathan\",\"draft_pick\":\"27\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11840\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"team\":\"LVR\",\"cbs_id\":\"1984209\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12138\",\"stats_id\":\"30154\",\"position\":\"RB\",\"stats_global_id\":\"824080\",\"weight\":\"210\",\"id\":\"13128\",\"draft_team\":\"MIN\",\"birthdate\":\"808030800\",\"name\":\"Cook, Dalvin\",\"draft_pick\":\"9\",\"college\":\"Florida State\",\"rotowire_id\":\"11700\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"team\":\"MIN\",\"cbs_id\":\"2130893\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12132\",\"stats_id\":\"30117\",\"position\":\"RB\",\"stats_global_id\":\"822013\",\"weight\":\"228\",\"id\":\"13129\",\"draft_team\":\"JAC\",\"birthdate\":\"790405200\",\"name\":\"Fournette, Leonard\",\"draft_pick\":\"4\",\"college\":\"LSU\",\"rotowire_id\":\"11687\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"team\":\"TBB\",\"cbs_id\":\"2131693\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12198\",\"stats_id\":\"30121\",\"position\":\"RB\",\"stats_global_id\":\"830517\",\"weight\":\"205\",\"id\":\"13130\",\"draft_team\":\"CAR\",\"birthdate\":\"834123600\",\"name\":\"McCaffrey, Christian\",\"draft_pick\":\"8\",\"college\":\"Stanford\",\"rotowire_id\":\"11690\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"team\":\"CAR\",\"cbs_id\":\"2136743\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12147\",\"stats_id\":\"30161\",\"position\":\"RB\",\"stats_global_id\":\"820727\",\"weight\":\"220\",\"id\":\"13131\",\"draft_team\":\"CIN\",\"birthdate\":\"838184400\",\"name\":\"Mixon, Joe\",\"draft_pick\":\"16\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11707\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"team\":\"CIN\",\"cbs_id\":\"2131143\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12172\",\"stats_id\":\"30180\",\"position\":\"RB\",\"stats_global_id\":\"750846\",\"weight\":\"215\",\"id\":\"13132\",\"draft_team\":\"NOS\",\"birthdate\":\"806648400\",\"name\":\"Kamara, Alvin\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"11732\",\"height\":\"70\",\"jersey\":\"41\",\"sportsdata_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"team\":\"NOS\",\"cbs_id\":\"2082721\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12255\",\"stats_id\":\"30227\",\"position\":\"RB\",\"stats_global_id\":\"820734\",\"weight\":\"240\",\"id\":\"13133\",\"draft_team\":\"WAS\",\"birthdate\":\"811227600\",\"name\":\"Perine, Samaje\",\"draft_pick\":\"7\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11698\",\"height\":\"71\",\"jersey\":\"34\",\"sportsdata_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"team\":\"CIN\",\"cbs_id\":\"2131148\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12282\",\"stats_id\":\"30202\",\"position\":\"RB\",\"stats_global_id\":\"835443\",\"weight\":\"236\",\"id\":\"13134\",\"draft_team\":\"HOU\",\"birthdate\":\"830322000\",\"name\":\"Foreman, D'Onta\",\"draft_pick\":\"25\",\"college\":\"Texas\",\"rotowire_id\":\"11685\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"team\":\"TEN\",\"cbs_id\":\"2139847\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12309\",\"stats_id\":\"30253\",\"position\":\"RB\",\"stats_global_id\":\"733744\",\"weight\":\"217\",\"id\":\"13135\",\"draft_team\":\"NYG\",\"birthdate\":\"780987600\",\"name\":\"Gallman, Wayne\",\"draft_pick\":\"32\",\"college\":\"Clemson\",\"rotowire_id\":\"11761\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"team\":\"NYG\",\"cbs_id\":\"2060407\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12159\",\"stats_id\":\"30707\",\"position\":\"RB\",\"stats_global_id\":\"742470\",\"weight\":\"220\",\"id\":\"13136\",\"draft_team\":\"FA\",\"birthdate\":\"783752400\",\"name\":\"Clement, Corey\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11750\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"team\":\"PHI\",\"cbs_id\":\"2071773\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12295\",\"stats_id\":\"30199\",\"position\":\"RB\",\"stats_global_id\":\"746613\",\"weight\":\"216\",\"id\":\"13138\",\"draft_team\":\"KCC\",\"birthdate\":\"807685200\",\"name\":\"Hunt, Kareem\",\"draft_pick\":\"22\",\"college\":\"Toledo\",\"rotowire_id\":\"11739\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"team\":\"CLE\",\"cbs_id\":\"2079567\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12298\",\"stats_id\":\"30247\",\"position\":\"RB\",\"stats_global_id\":\"695311\",\"weight\":\"213\",\"id\":\"13139\",\"draft_team\":\"GBP\",\"birthdate\":\"796885200\",\"name\":\"Williams, Jamaal\",\"draft_pick\":\"26\",\"college\":\"BYU\",\"rotowire_id\":\"11777\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"team\":\"GBP\",\"cbs_id\":\"2001287\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12334\",\"stats_id\":\"30365\",\"position\":\"RB\",\"stats_global_id\":\"742359\",\"weight\":\"205\",\"id\":\"13140\",\"draft_team\":\"CLE\",\"birthdate\":\"810104400\",\"name\":\"Dayes, Matthew\",\"draft_pick\":\"34\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11760\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"team\":\"FA\",\"cbs_id\":\"2071521\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12386\",\"stats_id\":\"30292\",\"position\":\"RB\",\"stats_global_id\":\"728165\",\"weight\":\"195\",\"id\":\"13142\",\"draft_team\":\"ARI\",\"birthdate\":\"778568400\",\"name\":\"Logan, T.J.\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"11764\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"team\":\"TBB\",\"cbs_id\":\"2818319\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12174\",\"stats_id\":\"30275\",\"position\":\"RB\",\"stats_global_id\":\"837594\",\"weight\":\"205\",\"id\":\"13143\",\"draft_team\":\"TBB\",\"birthdate\":\"819954000\",\"name\":\"McNichols, Jeremy\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"11767\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"team\":\"TEN\",\"cbs_id\":\"2139987\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12301\",\"stats_id\":\"30301\",\"position\":\"RB\",\"stats_global_id\":\"736984\",\"weight\":\"214\",\"id\":\"13144\",\"draft_team\":\"NYJ\",\"birthdate\":\"770446800\",\"name\":\"McGuire, Elijah\",\"draft_pick\":\"4\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"11766\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"team\":\"FA\",\"cbs_id\":\"2064670\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12317\",\"stats_id\":\"30218\",\"position\":\"RB\",\"stats_global_id\":\"742390\",\"weight\":\"233\",\"id\":\"13146\",\"draft_team\":\"PIT\",\"birthdate\":\"799650000\",\"name\":\"Conner, James\",\"draft_pick\":\"41\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"11691\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"team\":\"PIT\",\"cbs_id\":\"2071585\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12943\",\"stats_id\":\"30860\",\"position\":\"RB\",\"stats_global_id\":\"703015\",\"weight\":\"205\",\"id\":\"13148\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Ogunbowale, Dare\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11768\",\"height\":\"71\",\"jersey\":\"44\",\"sportsdata_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"team\":\"JAC\",\"cbs_id\":\"2010409\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12169\",\"stats_id\":\"30118\",\"position\":\"WR\",\"stats_global_id\":\"732121\",\"weight\":\"209\",\"id\":\"13153\",\"draft_team\":\"TEN\",\"birthdate\":\"789800400\",\"name\":\"Davis, Corey\",\"draft_pick\":\"5\",\"college\":\"Western Michigan\",\"rotowire_id\":\"11733\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"team\":\"TEN\",\"cbs_id\":\"2061005\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12183\",\"stats_id\":\"30120\",\"position\":\"WR\",\"stats_global_id\":\"733754\",\"weight\":\"220\",\"id\":\"13154\",\"draft_team\":\"LAC\",\"birthdate\":\"781246800\",\"name\":\"Williams, Mike\",\"draft_pick\":\"7\",\"college\":\"Clemson\",\"rotowire_id\":\"11885\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"team\":\"LAC\",\"cbs_id\":\"2082516\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12173\",\"stats_id\":\"30122\",\"position\":\"WR\",\"stats_global_id\":\"747906\",\"weight\":\"190\",\"id\":\"13155\",\"draft_team\":\"CIN\",\"birthdate\":\"817448400\",\"name\":\"Ross, John\",\"draft_pick\":\"9\",\"college\":\"Washington\",\"rotowire_id\":\"11699\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"team\":\"CIN\",\"cbs_id\":\"2079710\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12184\",\"stats_id\":\"30175\",\"position\":\"WR\",\"stats_global_id\":\"835909\",\"weight\":\"215\",\"id\":\"13156\",\"draft_team\":\"PIT\",\"birthdate\":\"848638800\",\"name\":\"Smith-Schuster, JuJu\",\"draft_pick\":\"30\",\"college\":\"Southern California\",\"rotowire_id\":\"11877\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"team\":\"PIT\",\"cbs_id\":\"2139620\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12219\",\"stats_id\":\"30153\",\"position\":\"WR\",\"stats_global_id\":\"821389\",\"weight\":\"195\",\"id\":\"13157\",\"draft_team\":\"CAR\",\"birthdate\":\"839739600\",\"name\":\"Samuel, Curtis\",\"draft_pick\":\"8\",\"college\":\"Ohio State\",\"rotowire_id\":\"11710\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"team\":\"CAR\",\"cbs_id\":\"2131252\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12331\",\"stats_id\":\"30223\",\"position\":\"WR\",\"stats_global_id\":\"865950\",\"weight\":\"178\",\"id\":\"13158\",\"draft_team\":\"JAC\",\"birthdate\":\"753858000\",\"name\":\"Westbrook, Dede\",\"draft_pick\":\"3\",\"college\":\"Oklahoma\",\"rotowire_id\":\"11808\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"team\":\"JAC\",\"cbs_id\":\"2179672\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12471\",\"stats_id\":\"30432\",\"position\":\"WR\",\"stats_global_id\":\"828766\",\"weight\":\"195\",\"id\":\"13161\",\"draft_team\":\"FA\",\"birthdate\":\"787208400\",\"name\":\"Scott, Artavis\",\"college\":\"Clemson\",\"rotowire_id\":\"11722\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"team\":\"FA\",\"cbs_id\":\"2133477\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12339\",\"stats_id\":\"30350\",\"position\":\"WR\",\"stats_global_id\":\"836936\",\"weight\":\"194\",\"id\":\"13162\",\"draft_team\":\"MIA\",\"birthdate\":\"823842000\",\"name\":\"Ford, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"11717\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"team\":\"NEP\",\"cbs_id\":\"2139164\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12201\",\"stats_id\":\"30197\",\"position\":\"WR\",\"stats_global_id\":\"835127\",\"weight\":\"209\",\"id\":\"13163\",\"draft_team\":\"TBB\",\"birthdate\":\"825397200\",\"name\":\"Godwin, Chris\",\"draft_pick\":\"20\",\"college\":\"Penn State\",\"rotowire_id\":\"11718\",\"height\":\"73\",\"jersey\":\"14\",\"sportsdata_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"team\":\"TBB\",\"cbs_id\":\"2818150\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12177\",\"stats_id\":\"30182\",\"position\":\"WR\",\"stats_global_id\":\"698227\",\"weight\":\"208\",\"id\":\"13164\",\"draft_team\":\"LAR\",\"birthdate\":\"740120400\",\"name\":\"Kupp, Cooper\",\"draft_pick\":\"5\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11863\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"team\":\"LAR\",\"cbs_id\":\"2006951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12288\",\"stats_id\":\"30246\",\"position\":\"WR\",\"stats_global_id\":\"728168\",\"weight\":\"185\",\"id\":\"13165\",\"draft_team\":\"DAL\",\"birthdate\":\"783925200\",\"name\":\"Switzer, Ryan\",\"draft_pick\":\"25\",\"college\":\"North Carolina\",\"rotowire_id\":\"11879\",\"height\":\"68\",\"jersey\":\"10\",\"sportsdata_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"team\":\"FA\",\"cbs_id\":\"2060475\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12306\",\"stats_id\":\"30219\",\"position\":\"WR\",\"stats_global_id\":\"696125\",\"weight\":\"215\",\"id\":\"13166\",\"draft_team\":\"SEA\",\"birthdate\":\"760078800\",\"name\":\"Darboh, Amara\",\"draft_pick\":\"43\",\"college\":\"Michigan\",\"rotowire_id\":\"11852\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"team\":\"FA\",\"cbs_id\":\"2001875\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12203\",\"stats_id\":\"30185\",\"position\":\"WR\",\"stats_global_id\":\"750698\",\"weight\":\"203\",\"id\":\"13167\",\"draft_team\":\"TEN\",\"birthdate\":\"794120400\",\"name\":\"Taylor, Taywan\",\"draft_pick\":\"8\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"11880\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"team\":\"CLE\",\"cbs_id\":\"2083348\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12253\",\"stats_id\":\"30230\",\"position\":\"WR\",\"stats_global_id\":\"822367\",\"weight\":\"196\",\"id\":\"13168\",\"draft_team\":\"LAR\",\"birthdate\":\"792910800\",\"name\":\"Reynolds, Josh\",\"draft_pick\":\"10\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11871\",\"height\":\"75\",\"jersey\":\"11\",\"sportsdata_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"team\":\"LAR\",\"cbs_id\":\"2131796\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12362\",\"stats_id\":\"30252\",\"position\":\"WR\",\"stats_global_id\":\"696122\",\"weight\":\"205\",\"id\":\"13169\",\"draft_team\":\"KCC\",\"birthdate\":\"757141200\",\"name\":\"Chesson, Jehu\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"11850\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"team\":\"FA\",\"cbs_id\":\"2001872\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12313\",\"stats_id\":\"30279\",\"position\":\"WR\",\"stats_global_id\":\"739691\",\"weight\":\"191\",\"id\":\"13170\",\"draft_team\":\"PHI\",\"birthdate\":\"795675600\",\"name\":\"Gibson, Shelton\",\"draft_pick\":\"22\",\"college\":\"West Virginia\",\"rotowire_id\":\"11721\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"team\":\"FA\",\"cbs_id\":\"2066925\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12439\",\"stats_id\":\"30352\",\"position\":\"WR\",\"stats_global_id\":\"836103\",\"weight\":\"225\",\"id\":\"13172\",\"draft_team\":\"DAL\",\"birthdate\":\"869288400\",\"name\":\"Brown, Noah\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"11849\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"team\":\"DAL\",\"cbs_id\":\"2139270\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12246\",\"stats_id\":\"30150\",\"position\":\"WR\",\"stats_global_id\":\"746491\",\"weight\":\"200\",\"id\":\"13176\",\"draft_team\":\"BUF\",\"birthdate\":\"796539600\",\"name\":\"Jones, Zay\",\"draft_pick\":\"5\",\"college\":\"East Carolina\",\"rotowire_id\":\"11751\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"team\":\"LVR\",\"cbs_id\":\"2080270\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12472\",\"stats_id\":\"30679\",\"position\":\"WR\",\"stats_global_id\":\"652899\",\"weight\":\"207\",\"id\":\"13179\",\"draft_team\":\"FA\",\"birthdate\":\"730530000\",\"name\":\"Dieter, Gehrig\",\"college\":\"Alabama\",\"rotowire_id\":\"12184\",\"height\":\"75\",\"jersey\":\"12\",\"sportsdata_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"team\":\"KCC\",\"cbs_id\":\"2819441\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12296\",\"stats_id\":\"30254\",\"position\":\"WR\",\"stats_global_id\":\"788345\",\"weight\":\"202\",\"id\":\"13183\",\"draft_team\":\"NYJ\",\"birthdate\":\"790405200\",\"name\":\"Hansen, Chad\",\"draft_pick\":\"33\",\"college\":\"California\",\"rotowire_id\":\"11702\",\"height\":\"74\",\"jersey\":\"85\",\"sportsdata_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"team\":\"FA\",\"cbs_id\":\"2132152\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12161\",\"stats_id\":\"30132\",\"position\":\"TE\",\"stats_global_id\":\"732147\",\"weight\":\"251\",\"id\":\"13188\",\"draft_team\":\"TBB\",\"birthdate\":\"785221200\",\"name\":\"Howard, O.J.\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"11806\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"team\":\"TBB\",\"cbs_id\":\"2061190\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12205\",\"stats_id\":\"30136\",\"position\":\"TE\",\"stats_global_id\":\"749185\",\"weight\":\"240\",\"id\":\"13189\",\"draft_team\":\"NYG\",\"birthdate\":\"778482000\",\"name\":\"Engram, Evan\",\"draft_pick\":\"23\",\"college\":\"Mississippi\",\"rotowire_id\":\"11805\",\"height\":\"75\",\"jersey\":\"88\",\"sportsdata_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"team\":\"NYG\",\"cbs_id\":\"2079887\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12254\",\"stats_id\":\"30258\",\"position\":\"TE\",\"stats_global_id\":\"728230\",\"weight\":\"250\",\"id\":\"13190\",\"draft_team\":\"DEN\",\"birthdate\":\"805438800\",\"name\":\"Butt, Jake\",\"draft_pick\":\"1\",\"college\":\"Michigan\",\"rotowire_id\":\"11888\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"team\":\"DEN\",\"cbs_id\":\"2060719\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12186\",\"stats_id\":\"30142\",\"position\":\"TE\",\"stats_global_id\":\"832098\",\"weight\":\"246\",\"id\":\"13192\",\"draft_team\":\"CLE\",\"birthdate\":\"836974800\",\"name\":\"Njoku, David\",\"draft_pick\":\"29\",\"college\":\"Miami\",\"rotowire_id\":\"11734\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"team\":\"CLE\",\"cbs_id\":\"2136474\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12344\",\"stats_id\":\"30213\",\"position\":\"TE\",\"stats_global_id\":\"743749\",\"weight\":\"248\",\"id\":\"13193\",\"draft_team\":\"TEN\",\"birthdate\":\"809067600\",\"name\":\"Smith, Jonnu\",\"draft_pick\":\"36\",\"college\":\"Florida International\",\"rotowire_id\":\"11807\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"team\":\"TEN\",\"cbs_id\":\"2081506\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12368\",\"stats_id\":\"30267\",\"position\":\"TE\",\"stats_global_id\":\"693833\",\"weight\":\"255\",\"id\":\"13194\",\"draft_team\":\"WAS\",\"birthdate\":\"776494800\",\"name\":\"Sprinkle, Jeremy\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"11899\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"team\":\"WAS\",\"cbs_id\":\"1999945\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12307\",\"stats_id\":\"30263\",\"position\":\"TE\",\"stats_global_id\":\"733735\",\"weight\":\"258\",\"id\":\"13195\",\"draft_team\":\"NYJ\",\"birthdate\":\"791528400\",\"name\":\"Leggett, Jordan\",\"draft_pick\":\"6\",\"college\":\"Clemson\",\"rotowire_id\":\"11893\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"team\":\"FA\",\"cbs_id\":\"2060412\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12354\",\"stats_id\":\"30240\",\"position\":\"TE\",\"stats_global_id\":\"749874\",\"weight\":\"265\",\"id\":\"13197\",\"draft_team\":\"DET\",\"birthdate\":\"768286800\",\"name\":\"Roberts, Michael\",\"draft_pick\":\"19\",\"college\":\"Toledo\",\"rotowire_id\":\"11896\",\"height\":\"77\",\"sportsdata_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"team\":\"FA\",\"cbs_id\":\"2082652\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12133\",\"stats_id\":\"30114\",\"position\":\"DE\",\"stats_global_id\":\"835829\",\"weight\":\"272\",\"id\":\"13198\",\"draft_team\":\"CLE\",\"birthdate\":\"820213200\",\"name\":\"Garrett, Myles\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11914\",\"height\":\"76\",\"jersey\":\"95\",\"sportsdata_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"team\":\"CLE\",\"cbs_id\":\"2139869\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12227\",\"stats_id\":\"30116\",\"position\":\"DT\",\"stats_global_id\":\"830525\",\"weight\":\"280\",\"id\":\"13199\",\"draft_team\":\"SFO\",\"birthdate\":\"819435600\",\"name\":\"Thomas, Solomon\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"11945\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"team\":\"SFO\",\"cbs_id\":\"2165541\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12251\",\"stats_id\":\"30141\",\"position\":\"DE\",\"stats_global_id\":\"728217\",\"weight\":\"275\",\"id\":\"13200\",\"draft_team\":\"DAL\",\"birthdate\":\"784184400\",\"name\":\"Charlton, Taco\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"11908\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"team\":\"KCC\",\"cbs_id\":\"2060720\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12199\",\"stats_id\":\"30127\",\"position\":\"DE\",\"stats_global_id\":\"829983\",\"weight\":\"259\",\"id\":\"13201\",\"draft_team\":\"PHI\",\"birthdate\":\"835678800\",\"name\":\"Barnett, Derek\",\"draft_pick\":\"14\",\"college\":\"Tennessee\",\"rotowire_id\":\"11901\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"team\":\"PHI\",\"cbs_id\":\"2133516\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12240\",\"stats_id\":\"30229\",\"position\":\"DE\",\"stats_global_id\":\"746888\",\"weight\":\"265\",\"id\":\"13202\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Lawson, Carl\",\"draft_pick\":\"9\",\"college\":\"Auburn\",\"rotowire_id\":\"11926\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"team\":\"CIN\",\"cbs_id\":\"2079872\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12426\",\"stats_id\":\"30338\",\"position\":\"DE\",\"stats_global_id\":\"749964\",\"weight\":\"280\",\"id\":\"13203\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Rochell, Isaac\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"11939\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"team\":\"LAC\",\"cbs_id\":\"2082842\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12226\",\"stats_id\":\"30135\",\"position\":\"DE\",\"stats_global_id\":\"744577\",\"weight\":\"252\",\"id\":\"13204\",\"draft_team\":\"MIA\",\"birthdate\":\"794466000\",\"name\":\"Harris, Charles\",\"draft_pick\":\"22\",\"college\":\"Missouri\",\"rotowire_id\":\"11918\",\"height\":\"75\",\"jersey\":\"92\",\"sportsdata_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"team\":\"ATL\",\"cbs_id\":\"2082540\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12232\",\"stats_id\":\"30139\",\"position\":\"DE\",\"stats_global_id\":\"850284\",\"weight\":\"250\",\"id\":\"13205\",\"draft_team\":\"ATL\",\"birthdate\":\"815288400\",\"name\":\"McKinley, Takkarist\",\"draft_pick\":\"26\",\"college\":\"UCLA\",\"rotowire_id\":\"11928\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"team\":\"LVR\",\"cbs_id\":\"2160964\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12310\",\"stats_id\":\"30190\",\"position\":\"DE\",\"stats_global_id\":\"744625\",\"weight\":\"265\",\"id\":\"13206\",\"draft_team\":\"CAR\",\"birthdate\":\"803106000\",\"name\":\"Hall, Daeshon\",\"draft_pick\":\"13\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11917\",\"height\":\"77\",\"jersey\":\"74\",\"sportsdata_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"team\":\"FA\",\"cbs_id\":\"2079989\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12249\",\"stats_id\":\"30186\",\"position\":\"DE\",\"stats_global_id\":\"744868\",\"weight\":\"270\",\"id\":\"13207\",\"draft_team\":\"CIN\",\"birthdate\":\"799390800\",\"name\":\"Willis, Jordan\",\"draft_pick\":\"9\",\"college\":\"Kansas State\",\"rotowire_id\":\"11953\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"team\":\"SFO\",\"cbs_id\":\"2079124\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12185\",\"stats_id\":\"30130\",\"position\":\"DT\",\"stats_global_id\":\"750828\",\"weight\":\"300\",\"id\":\"13208\",\"draft_team\":\"WAS\",\"birthdate\":\"790232400\",\"name\":\"Allen, Jonathan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11900\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"team\":\"WAS\",\"cbs_id\":\"2082709\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12389\",\"stats_id\":\"30298\",\"position\":\"DT\",\"stats_global_id\":\"748605\",\"weight\":\"305\",\"id\":\"13209\",\"draft_team\":\"CLE\",\"birthdate\":\"778482000\",\"name\":\"Brantley, Caleb\",\"draft_pick\":\"1\",\"college\":\"Florida\",\"rotowire_id\":\"11904\",\"height\":\"74\",\"jersey\":\"96\",\"sportsdata_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"team\":\"WAS\",\"cbs_id\":\"2079751\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12363\",\"stats_id\":\"30255\",\"position\":\"DE\",\"stats_global_id\":\"653112\",\"weight\":\"297\",\"id\":\"13211\",\"draft_team\":\"HOU\",\"birthdate\":\"755067600\",\"name\":\"Watkins, Carlos\",\"draft_pick\":\"34\",\"college\":\"Clemson\",\"rotowire_id\":\"11951\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"team\":\"HOU\",\"cbs_id\":\"1983529\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12236\",\"stats_id\":\"30187\",\"position\":\"DE\",\"stats_global_id\":\"696151\",\"weight\":\"300\",\"id\":\"13212\",\"draft_team\":\"BAL\",\"birthdate\":\"751525200\",\"name\":\"Wormley, Chris\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"11955\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"team\":\"PIT\",\"cbs_id\":\"2001900\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12238\",\"stats_id\":\"30191\",\"position\":\"LB\",\"stats_global_id\":\"750859\",\"weight\":\"252\",\"id\":\"13213\",\"draft_team\":\"BAL\",\"birthdate\":\"753080400\",\"name\":\"Williams, Tim\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"11952\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"team\":\"FA\",\"cbs_id\":\"2082733\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12242\",\"stats_id\":\"30143\",\"position\":\"LB\",\"stats_global_id\":\"742490\",\"weight\":\"252\",\"id\":\"13214\",\"draft_team\":\"PIT\",\"birthdate\":\"781851600\",\"name\":\"Watt, T.J.\",\"draft_pick\":\"30\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11984\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"team\":\"PIT\",\"cbs_id\":\"2071793\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12175\",\"stats_id\":\"30144\",\"position\":\"LB\",\"stats_global_id\":\"750836\",\"weight\":\"228\",\"id\":\"13215\",\"draft_team\":\"SFO\",\"birthdate\":\"765435600\",\"name\":\"Foster, Reuben\",\"draft_pick\":\"31\",\"college\":\"Alabama\",\"rotowire_id\":\"11746\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"team\":\"WAS\",\"cbs_id\":\"2082714\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12269\",\"stats_id\":\"30170\",\"position\":\"LB\",\"stats_global_id\":\"744654\",\"weight\":\"238\",\"id\":\"13216\",\"draft_team\":\"HOU\",\"birthdate\":\"787208400\",\"name\":\"Cunningham, Zach\",\"draft_pick\":\"25\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"11965\",\"height\":\"75\",\"jersey\":\"41\",\"sportsdata_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"team\":\"HOU\",\"cbs_id\":\"2079823\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12329\",\"stats_id\":\"30220\",\"position\":\"LB\",\"stats_global_id\":\"727743\",\"weight\":\"243\",\"id\":\"13217\",\"draft_team\":\"TBB\",\"birthdate\":\"786344400\",\"name\":\"Beckwith, Kendell\",\"draft_pick\":\"42\",\"college\":\"LSU\",\"rotowire_id\":\"11958\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"team\":\"FA\",\"cbs_id\":\"2061226\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12164\",\"stats_id\":\"30162\",\"position\":\"LB\",\"stats_global_id\":\"650901\",\"weight\":\"255\",\"id\":\"13218\",\"draft_team\":\"WAS\",\"birthdate\":\"776667600\",\"name\":\"Anderson, Ryan\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"11956\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"team\":\"WAS\",\"cbs_id\":\"1984218\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12262\",\"stats_id\":\"30188\",\"position\":\"LB\",\"stats_global_id\":\"727757\",\"weight\":\"218\",\"id\":\"13220\",\"draft_team\":\"ATL\",\"birthdate\":\"776408400\",\"name\":\"Riley, Duke\",\"draft_pick\":\"11\",\"college\":\"LSU\",\"rotowire_id\":\"11981\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"team\":\"PHI\",\"cbs_id\":\"2061250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12239\",\"stats_id\":\"30134\",\"position\":\"LB\",\"stats_global_id\":\"748606\",\"weight\":\"245\",\"id\":\"13221\",\"draft_team\":\"DET\",\"birthdate\":\"816498000\",\"name\":\"Davis, Jarrad\",\"draft_pick\":\"21\",\"college\":\"Florida\",\"rotowire_id\":\"11966\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"team\":\"DET\",\"cbs_id\":\"2079752\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12271\",\"stats_id\":\"30167\",\"position\":\"LB\",\"stats_global_id\":\"821386\",\"weight\":\"242\",\"id\":\"13222\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"McMillan, Raekwon\",\"draft_pick\":\"22\",\"college\":\"Ohio State\",\"rotowire_id\":\"11977\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"team\":\"LVR\",\"cbs_id\":\"2131250\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12287\",\"stats_id\":\"30129\",\"position\":\"CB\",\"stats_global_id\":\"835806\",\"weight\":\"197\",\"id\":\"13223\",\"draft_team\":\"BAL\",\"birthdate\":\"836802000\",\"name\":\"Humphrey, Marlon\",\"draft_pick\":\"16\",\"college\":\"Alabama\",\"rotowire_id\":\"12017\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"team\":\"BAL\",\"cbs_id\":\"2139775\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12229\",\"stats_id\":\"30124\",\"position\":\"CB\",\"stats_global_id\":\"836114\",\"weight\":\"192\",\"id\":\"13224\",\"draft_team\":\"NOS\",\"birthdate\":\"832482000\",\"name\":\"Lattimore, Marshon\",\"draft_pick\":\"11\",\"college\":\"Ohio State\",\"rotowire_id\":\"12023\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"team\":\"NOS\",\"cbs_id\":\"2139278\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12206\",\"stats_id\":\"30156\",\"position\":\"CB\",\"stats_global_id\":\"837813\",\"weight\":\"181\",\"id\":\"13225\",\"draft_team\":\"PHI\",\"birthdate\":\"832654800\",\"name\":\"Jones, Sidney\",\"draft_pick\":\"11\",\"college\":\"Washington\",\"rotowire_id\":\"11905\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"team\":\"JAC\",\"cbs_id\":\"2139635\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12155\",\"stats_id\":\"30131\",\"position\":\"CB\",\"stats_global_id\":\"835902\",\"weight\":\"185\",\"id\":\"13226\",\"draft_team\":\"TEN\",\"birthdate\":\"811400400\",\"name\":\"Jackson, Adoree\",\"draft_pick\":\"18\",\"college\":\"Southern California\",\"rotowire_id\":\"12018\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"team\":\"TEN\",\"cbs_id\":\"2139614\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12315\",\"stats_id\":\"30205\",\"position\":\"CB\",\"stats_global_id\":\"740759\",\"weight\":\"195\",\"id\":\"13227\",\"draft_team\":\"DAL\",\"birthdate\":\"809845200\",\"name\":\"Lewis, Jourdan\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"12024\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"team\":\"DAL\",\"cbs_id\":\"2071724\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12156\",\"stats_id\":\"30128\",\"position\":\"S\",\"stats_global_id\":\"836106\",\"weight\":\"214\",\"id\":\"13228\",\"draft_team\":\"IND\",\"birthdate\":\"828421200\",\"name\":\"Hooker, Malik\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"11695\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"team\":\"IND\",\"cbs_id\":\"2139273\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12297\",\"stats_id\":\"30225\",\"position\":\"S\",\"stats_global_id\":\"750841\",\"weight\":\"202\",\"id\":\"13229\",\"draft_team\":\"CHI\",\"birthdate\":\"723963600\",\"name\":\"Jackson, Eddie\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"11993\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"team\":\"CHI\",\"cbs_id\":\"2082718\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12210\",\"stats_id\":\"30119\",\"position\":\"S\",\"stats_global_id\":\"822003\",\"weight\":\"213\",\"id\":\"13230\",\"draft_team\":\"NYJ\",\"birthdate\":\"813906000\",\"name\":\"Adams, Jamal\",\"draft_pick\":\"6\",\"college\":\"LSU\",\"rotowire_id\":\"11985\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"team\":\"SEA\",\"cbs_id\":\"2131682\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12218\",\"stats_id\":\"30138\",\"position\":\"S\",\"stats_global_id\":\"830698\",\"weight\":\"215\",\"id\":\"13231\",\"draft_team\":\"CLE\",\"birthdate\":\"812782800\",\"name\":\"Peppers, Jabrill\",\"draft_pick\":\"25\",\"college\":\"Michigan\",\"rotowire_id\":\"11714\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"team\":\"NYG\",\"cbs_id\":\"2136536\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12291\",\"stats_id\":\"30264\",\"position\":\"CB\",\"stats_global_id\":\"740722\",\"weight\":\"201\",\"id\":\"13232\",\"draft_team\":\"LAC\",\"birthdate\":\"787381200\",\"name\":\"King, Desmond\",\"draft_pick\":\"7\",\"college\":\"Iowa\",\"rotowire_id\":\"11999\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"team\":\"TEN\",\"cbs_id\":\"2818584\"},{\"draft_year\":\"2016\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Shanahan, Kyle\",\"stats_global_id\":\"0\",\"id\":\"13233\",\"sportsdata_id\":\"978dbc3f-a815-4351-a1cb-1c0c7f0a378f\",\"team\":\"SFO\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12308\",\"stats_id\":\"30256\",\"position\":\"RB\",\"stats_global_id\":\"840760\",\"weight\":\"210\",\"id\":\"13234\",\"draft_team\":\"IND\",\"birthdate\":\"826174800\",\"name\":\"Mack, Marlon\",\"draft_pick\":\"35\",\"college\":\"South Florida\",\"rotowire_id\":\"11765\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"team\":\"IND\",\"cbs_id\":\"2145762\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12355\",\"stats_id\":\"30241\",\"position\":\"WR\",\"stats_global_id\":\"820522\",\"weight\":\"205\",\"id\":\"13235\",\"draft_team\":\"CIN\",\"birthdate\":\"827384400\",\"name\":\"Malone, Josh\",\"draft_pick\":\"20\",\"college\":\"Tennessee\",\"rotowire_id\":\"11697\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"team\":\"FA\",\"cbs_id\":\"2131636\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12284\",\"stats_id\":\"30157\",\"position\":\"TE\",\"stats_global_id\":\"838487\",\"weight\":\"240\",\"id\":\"13236\",\"draft_team\":\"LAR\",\"birthdate\":\"772520400\",\"name\":\"Everett, Gerald\",\"draft_pick\":\"12\",\"college\":\"South Alabama\",\"rotowire_id\":\"11737\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"team\":\"LAR\",\"cbs_id\":\"2142692\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12333\",\"stats_id\":\"30322\",\"position\":\"WR\",\"stats_global_id\":\"744112\",\"weight\":\"210\",\"id\":\"13238\",\"draft_team\":\"WAS\",\"birthdate\":\"796798800\",\"name\":\"Davis, Robert\",\"draft_pick\":\"25\",\"college\":\"Georgia State\",\"rotowire_id\":\"11853\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"team\":\"FA\",\"cbs_id\":\"2818352\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11964\",\"stats_id\":\"29906\",\"position\":\"RB\",\"stats_global_id\":\"606629\",\"weight\":\"250\",\"id\":\"13239\",\"draft_team\":\"FA\",\"birthdate\":\"745563600\",\"name\":\"Penny, Elijhaa\",\"college\":\"Idaho\",\"rotowire_id\":\"11297\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"team\":\"NYG\",\"cbs_id\":\"2237090\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12370\",\"stats_id\":\"30269\",\"position\":\"RB\",\"stats_global_id\":\"823872\",\"weight\":\"219\",\"id\":\"13240\",\"draft_team\":\"ATL\",\"birthdate\":\"815893200\",\"name\":\"Hill, Brian\",\"draft_pick\":\"12\",\"college\":\"Wyoming\",\"rotowire_id\":\"11719\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"team\":\"ATL\",\"cbs_id\":\"2131960\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11998\",\"stats_id\":\"29949\",\"position\":\"PK\",\"stats_global_id\":\"789430\",\"weight\":\"233\",\"id\":\"13241\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Rosas, Aldrick\",\"college\":\"Southern Oregon\",\"rotowire_id\":\"11403\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"team\":\"FA\",\"cbs_id\":\"2237139\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12228\",\"stats_id\":\"30126\",\"position\":\"LB\",\"stats_global_id\":\"696258\",\"weight\":\"235\",\"id\":\"13245\",\"draft_team\":\"ARI\",\"birthdate\":\"780210000\",\"name\":\"Reddick, Haason\",\"draft_pick\":\"13\",\"college\":\"Temple\",\"rotowire_id\":\"11937\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"team\":\"ARI\",\"cbs_id\":\"2001828\"},{\"draft_year\":\"2017\",\"nfl_id\":\"moalie-cox/2558832\",\"rotoworld_id\":\"12221\",\"stats_id\":\"30112\",\"position\":\"TE\",\"stats_global_id\":\"712506\",\"weight\":\"267\",\"id\":\"13246\",\"draft_team\":\"FA\",\"birthdate\":\"748414800\",\"name\":\"Alie-Cox, Mo\",\"college\":\"Virginia Commonwealth\",\"rotowire_id\":\"12196\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"team\":\"IND\",\"cbs_id\":\"2815925\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"9116\",\"stats_id\":\"27348\",\"position\":\"LB\",\"stats_global_id\":\"613087\",\"weight\":\"235\",\"id\":\"13247\",\"draft_team\":\"FA\",\"birthdate\":\"648277200\",\"name\":\"Lacey, Deon\",\"college\":\"West Alabama\",\"rotowire_id\":\"11703\",\"height\":\"75\",\"jersey\":\"44\",\"sportsdata_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"team\":\"FA\",\"cbs_id\":\"2060096\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12225\",\"stats_id\":\"30137\",\"position\":\"CB\",\"stats_global_id\":\"728337\",\"weight\":\"190\",\"id\":\"13248\",\"draft_team\":\"OAK\",\"birthdate\":\"804402000\",\"name\":\"Conley, Gareon\",\"draft_pick\":\"24\",\"college\":\"Ohio State\",\"rotowire_id\":\"12011\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"team\":\"HOU\",\"cbs_id\":\"2060768\"},{\"draft_year\":\"2017\",\"draft_round\":\"1\",\"rotoworld_id\":\"12250\",\"stats_id\":\"30140\",\"position\":\"CB\",\"stats_global_id\":\"727761\",\"weight\":\"192\",\"id\":\"13249\",\"draft_team\":\"BUF\",\"birthdate\":\"790232400\",\"name\":\"White, Tre'Davious\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12127\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"team\":\"BUF\",\"cbs_id\":\"2061255\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12235\",\"stats_id\":\"30146\",\"position\":\"CB\",\"stats_global_id\":\"747899\",\"weight\":\"200\",\"id\":\"13250\",\"draft_team\":\"GBP\",\"birthdate\":\"799650000\",\"name\":\"King, Kevin\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"12020\",\"height\":\"75\",\"jersey\":\"20\",\"sportsdata_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"team\":\"GBP\",\"cbs_id\":\"2079703\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12278\",\"stats_id\":\"30149\",\"position\":\"S\",\"stats_global_id\":\"837805\",\"weight\":\"195\",\"id\":\"13251\",\"draft_team\":\"ARI\",\"birthdate\":\"821250000\",\"name\":\"Baker, Budda\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"11986\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"team\":\"ARI\",\"cbs_id\":\"2139625\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12286\",\"stats_id\":\"30152\",\"position\":\"S\",\"stats_global_id\":\"694621\",\"weight\":\"207\",\"id\":\"13252\",\"draft_team\":\"NYJ\",\"birthdate\":\"757400400\",\"name\":\"Maye, Marcus\",\"draft_pick\":\"7\",\"college\":\"Florida\",\"rotowire_id\":\"12001\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"team\":\"NYJ\",\"cbs_id\":\"2000858\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12285\",\"stats_id\":\"30155\",\"position\":\"S\",\"stats_global_id\":\"826338\",\"weight\":\"195\",\"id\":\"13253\",\"draft_team\":\"NOS\",\"birthdate\":\"842158800\",\"name\":\"Williams, Marcus\",\"draft_pick\":\"10\",\"college\":\"Utah\",\"rotowire_id\":\"12199\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"team\":\"NOS\",\"cbs_id\":\"2818084\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12283\",\"stats_id\":\"30158\",\"position\":\"TE\",\"stats_global_id\":\"1049770\",\"weight\":\"270\",\"id\":\"13254\",\"draft_team\":\"CHI\",\"birthdate\":\"757400400\",\"name\":\"Shaheen, Adam\",\"draft_pick\":\"13\",\"college\":\"Ashland\",\"rotowire_id\":\"11898\",\"height\":\"78\",\"jersey\":\"80\",\"sportsdata_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"team\":\"MIA\",\"cbs_id\":\"2818105\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12273\",\"stats_id\":\"30159\",\"position\":\"CB\",\"stats_global_id\":\"835211\",\"weight\":\"193\",\"id\":\"13255\",\"draft_team\":\"IND\",\"birthdate\":\"820472400\",\"name\":\"Wilson, Quincy\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"12037\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"team\":\"FA\",\"cbs_id\":\"2139693\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12234\",\"stats_id\":\"30160\",\"position\":\"LB\",\"stats_global_id\":\"741515\",\"weight\":\"242\",\"id\":\"13256\",\"draft_team\":\"BAL\",\"birthdate\":\"801205200\",\"name\":\"Bowser, Tyus\",\"draft_pick\":\"15\",\"college\":\"Houston\",\"rotowire_id\":\"11961\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"team\":\"BAL\",\"cbs_id\":\"2071873\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12258\",\"stats_id\":\"30163\",\"position\":\"S\",\"stats_global_id\":\"865805\",\"weight\":\"199\",\"id\":\"13257\",\"draft_team\":\"TBB\",\"birthdate\":\"809413200\",\"name\":\"Evans, Justin\",\"draft_pick\":\"18\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11988\",\"height\":\"72\",\"jersey\":\"21\",\"sportsdata_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"team\":\"TBB\",\"cbs_id\":\"2180812\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12319\",\"stats_id\":\"30164\",\"position\":\"DE\",\"stats_global_id\":\"733700\",\"weight\":\"280\",\"id\":\"13258\",\"draft_team\":\"DEN\",\"birthdate\":\"780901200\",\"name\":\"Walker, DeMarcus\",\"draft_pick\":\"19\",\"college\":\"Florida State\",\"rotowire_id\":\"11950\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"team\":\"DEN\",\"cbs_id\":\"2060451\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12265\",\"stats_id\":\"30168\",\"position\":\"DT\",\"stats_global_id\":\"694605\",\"weight\":\"319\",\"id\":\"13260\",\"draft_team\":\"NYG\",\"birthdate\":\"757400400\",\"name\":\"Tomlinson, Dalvin\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"11946\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"team\":\"NYG\",\"cbs_id\":\"2000919\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12259\",\"stats_id\":\"30169\",\"position\":\"S\",\"stats_global_id\":\"692304\",\"weight\":\"224\",\"id\":\"13261\",\"draft_team\":\"OAK\",\"birthdate\":\"765522000\",\"name\":\"Melifonwu, Obi\",\"draft_pick\":\"24\",\"college\":\"Connecticut\",\"rotowire_id\":\"12002\",\"height\":\"76\",\"jersey\":\"22\",\"sportsdata_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"team\":\"FA\",\"cbs_id\":\"1999075\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12294\",\"stats_id\":\"30172\",\"position\":\"DE\",\"stats_global_id\":\"697885\",\"weight\":\"289\",\"id\":\"13262\",\"draft_team\":\"KCC\",\"birthdate\":\"771570000\",\"name\":\"Kpassagnon, Tanoh\",\"draft_pick\":\"27\",\"college\":\"Villanova\",\"rotowire_id\":\"11924\",\"height\":\"79\",\"jersey\":\"92\",\"sportsdata_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"team\":\"KCC\",\"cbs_id\":\"2006627\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12237\",\"stats_id\":\"30173\",\"position\":\"CB\",\"stats_global_id\":\"747840\",\"weight\":\"193\",\"id\":\"13263\",\"draft_team\":\"DAL\",\"birthdate\":\"801291600\",\"name\":\"Awuzie, Chidobe\",\"draft_pick\":\"28\",\"college\":\"Colorado\",\"rotowire_id\":\"12009\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"team\":\"DAL\",\"cbs_id\":\"2079069\"},{\"draft_year\":\"2017\",\"draft_round\":\"2\",\"rotoworld_id\":\"12266\",\"stats_id\":\"30174\",\"position\":\"S\",\"stats_global_id\":\"742366\",\"weight\":\"220\",\"id\":\"13264\",\"draft_team\":\"GBP\",\"birthdate\":\"780037200\",\"name\":\"Jones, Josh\",\"draft_pick\":\"29\",\"college\":\"North Carolina State\",\"rotowire_id\":\"11998\",\"height\":\"74\",\"jersey\":\"29\",\"sportsdata_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"team\":\"JAC\",\"cbs_id\":\"2818126\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12256\",\"stats_id\":\"30178\",\"position\":\"DT\",\"stats_global_id\":\"749464\",\"weight\":\"305\",\"id\":\"13265\",\"draft_team\":\"CLE\",\"birthdate\":\"770619600\",\"name\":\"Ogunjobi, Larry\",\"draft_pick\":\"1\",\"college\":\"Charlotte\",\"rotowire_id\":\"11933\",\"height\":\"75\",\"jersey\":\"65\",\"sportsdata_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"team\":\"CLE\",\"cbs_id\":\"2081723\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12304\",\"stats_id\":\"30179\",\"position\":\"CB\",\"stats_global_id\":\"826218\",\"weight\":\"195\",\"id\":\"13266\",\"draft_team\":\"SFO\",\"birthdate\":\"795762000\",\"name\":\"Witherspoon, Ahkello\",\"draft_pick\":\"2\",\"college\":\"Colorado\",\"rotowire_id\":\"12038\",\"height\":\"75\",\"jersey\":\"23\",\"sportsdata_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"team\":\"SFO\",\"cbs_id\":\"2131040\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12312\",\"stats_id\":\"30181\",\"position\":\"DE\",\"stats_global_id\":\"740377\",\"weight\":\"264\",\"id\":\"13267\",\"draft_team\":\"JAC\",\"birthdate\":\"794120400\",\"name\":\"Smoot, Dawuane\",\"draft_pick\":\"4\",\"college\":\"Illinois\",\"rotowire_id\":\"11942\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"team\":\"JAC\",\"cbs_id\":\"2071675\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12327\",\"stats_id\":\"30189\",\"position\":\"LB\",\"stats_global_id\":\"727274\",\"weight\":\"241\",\"id\":\"13268\",\"draft_team\":\"NOS\",\"birthdate\":\"757400400\",\"name\":\"Anzalone, Alex\",\"draft_pick\":\"12\",\"college\":\"Florida\",\"rotowire_id\":\"11957\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"team\":\"NOS\",\"cbs_id\":\"2061089\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12264\",\"stats_id\":\"30193\",\"position\":\"LB\",\"stats_global_id\":\"731182\",\"weight\":\"266\",\"id\":\"13269\",\"draft_team\":\"IND\",\"birthdate\":\"763966800\",\"name\":\"Basham, Tarell\",\"draft_pick\":\"16\",\"college\":\"Ohio\",\"rotowire_id\":\"11902\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"team\":\"NYJ\",\"cbs_id\":\"2060979\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12245\",\"stats_id\":\"30194\",\"position\":\"CB\",\"stats_global_id\":\"691044\",\"weight\":\"204\",\"id\":\"13270\",\"draft_team\":\"WAS\",\"birthdate\":\"765867600\",\"name\":\"Moreau, Fabian\",\"draft_pick\":\"17\",\"college\":\"UCLA\",\"rotowire_id\":\"11970\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"team\":\"WAS\",\"cbs_id\":\"1996574\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12233\",\"stats_id\":\"30196\",\"position\":\"DE\",\"stats_global_id\":\"748206\",\"weight\":\"250\",\"id\":\"13271\",\"draft_team\":\"NEP\",\"birthdate\":\"757400400\",\"name\":\"Rivers, Derek\",\"draft_pick\":\"19\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11938\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"team\":\"LAR\",\"cbs_id\":\"2081302\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12341\",\"stats_id\":\"30201\",\"position\":\"DT\",\"stats_global_id\":\"744687\",\"weight\":\"315\",\"id\":\"13272\",\"draft_team\":\"OAK\",\"birthdate\":\"782024400\",\"name\":\"Vanderdoes, Eddie\",\"draft_pick\":\"24\",\"college\":\"UCLA\",\"rotowire_id\":\"11948\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"team\":\"HOU\",\"cbs_id\":\"2079690\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12321\",\"stats_id\":\"30203\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"13273\",\"draft_team\":\"SEA\",\"birthdate\":\"757400400\",\"name\":\"Griffin, Shaq\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"12015\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"team\":\"SEA\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12303\",\"stats_id\":\"30204\",\"position\":\"S\",\"stats_global_id\":\"745747\",\"weight\":\"204\",\"id\":\"13274\",\"draft_team\":\"LAR\",\"birthdate\":\"757400400\",\"name\":\"Johnson, John\",\"draft_pick\":\"27\",\"college\":\"Boston College\",\"rotowire_id\":\"11997\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"team\":\"LAR\",\"cbs_id\":\"2082526\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12326\",\"stats_id\":\"30206\",\"position\":\"DE\",\"stats_global_id\":\"744440\",\"weight\":\"304\",\"id\":\"13275\",\"draft_team\":\"GBP\",\"birthdate\":\"772434000\",\"name\":\"Adams, Montravius\",\"draft_pick\":\"29\",\"college\":\"Auburn\",\"rotowire_id\":\"11752\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"team\":\"GBP\",\"cbs_id\":\"2079859\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12290\",\"stats_id\":\"30207\",\"position\":\"CB\",\"stats_global_id\":\"741286\",\"weight\":\"188\",\"id\":\"13276\",\"draft_team\":\"PIT\",\"birthdate\":\"793861200\",\"name\":\"Sutton, Cameron\",\"draft_pick\":\"30\",\"college\":\"Tennessee\",\"rotowire_id\":\"12031\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"team\":\"PIT\",\"cbs_id\":\"2071855\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12340\",\"stats_id\":\"30209\",\"position\":\"WR\",\"stats_global_id\":\"697295\",\"weight\":\"214\",\"id\":\"13277\",\"draft_team\":\"DET\",\"birthdate\":\"752302800\",\"name\":\"Golladay, Kenny\",\"draft_pick\":\"31\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"11857\",\"height\":\"76\",\"jersey\":\"19\",\"sportsdata_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"team\":\"DET\",\"cbs_id\":\"2005894\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12342\",\"stats_id\":\"30208\",\"position\":\"S\",\"stats_global_id\":\"740754\",\"weight\":\"216\",\"id\":\"13278\",\"draft_team\":\"SEA\",\"birthdate\":\"817362000\",\"name\":\"Hill, Delano\",\"draft_pick\":\"32\",\"college\":\"Michigan\",\"rotowire_id\":\"11992\",\"height\":\"73\",\"jersey\":\"42\",\"sportsdata_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"team\":\"SEA\",\"cbs_id\":\"2071719\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12274\",\"stats_id\":\"30210\",\"position\":\"CB\",\"stats_global_id\":\"653111\",\"weight\":\"200\",\"id\":\"13279\",\"draft_team\":\"MIA\",\"birthdate\":\"753685200\",\"name\":\"Tankersley, Cordrea\",\"draft_pick\":\"33\",\"college\":\"Clemson\",\"rotowire_id\":\"12033\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"team\":\"FA\",\"cbs_id\":\"1983527\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12343\",\"stats_id\":\"30211\",\"position\":\"WR\",\"stats_global_id\":\"787757\",\"weight\":\"204\",\"id\":\"13280\",\"draft_team\":\"ARI\",\"birthdate\":\"782542800\",\"name\":\"Williams, Chad\",\"draft_pick\":\"34\",\"college\":\"Grambling State\",\"rotowire_id\":\"12113\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"team\":\"FA\",\"cbs_id\":\"2818166\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12277\",\"stats_id\":\"30212\",\"position\":\"CB\",\"stats_global_id\":\"895617\",\"weight\":\"209\",\"id\":\"13281\",\"draft_team\":\"PHI\",\"birthdate\":\"746600400\",\"name\":\"Douglas, Rasul\",\"draft_pick\":\"35\",\"college\":\"West Virginia\",\"rotowire_id\":\"12013\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"team\":\"CAR\",\"cbs_id\":\"2198663\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12346\",\"stats_id\":\"30215\",\"position\":\"DE\",\"stats_global_id\":\"728163\",\"weight\":\"292\",\"id\":\"13283\",\"draft_team\":\"SEA\",\"birthdate\":\"787294800\",\"name\":\"Jones, Nazair\",\"draft_pick\":\"38\",\"college\":\"North Carolina\",\"rotowire_id\":\"11923\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"team\":\"FA\",\"cbs_id\":\"2060470\"},{\"draft_year\":\"2017\",\"draft_round\":\"3\",\"rotoworld_id\":\"12293\",\"stats_id\":\"30216\",\"position\":\"DE\",\"stats_global_id\":\"729032\",\"weight\":\"270\",\"id\":\"13284\",\"draft_team\":\"NOS\",\"birthdate\":\"786603600\",\"name\":\"Hendrickson, Trey\",\"draft_pick\":\"39\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11919\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"team\":\"NOS\",\"cbs_id\":\"2818165\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12261\",\"stats_id\":\"30221\",\"position\":\"LB\",\"stats_global_id\":\"652515\",\"weight\":\"246\",\"id\":\"13285\",\"draft_team\":\"GBP\",\"birthdate\":\"741589200\",\"name\":\"Biegel, Vince\",\"draft_pick\":\"1\",\"college\":\"Wisconsin\",\"rotowire_id\":\"11959\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"team\":\"MIA\",\"cbs_id\":\"1983821\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12263\",\"stats_id\":\"30222\",\"position\":\"DT\",\"stats_global_id\":\"691792\",\"weight\":\"316\",\"id\":\"13286\",\"draft_team\":\"MIN\",\"birthdate\":\"773989200\",\"name\":\"Johnson, Jaleel\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11921\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"team\":\"MIN\",\"cbs_id\":\"1998471\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12347\",\"stats_id\":\"30224\",\"position\":\"S\",\"stats_global_id\":\"747869\",\"weight\":\"204\",\"id\":\"13287\",\"draft_team\":\"SEA\",\"birthdate\":\"790578000\",\"name\":\"Thompson, Tedric\",\"draft_pick\":\"4\",\"college\":\"Colorado\",\"rotowire_id\":\"12004\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"team\":\"KCC\",\"cbs_id\":\"2079091\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12302\",\"stats_id\":\"30226\",\"position\":\"S\",\"stats_global_id\":\"691582\",\"weight\":\"220\",\"id\":\"13288\",\"draft_team\":\"LAC\",\"birthdate\":\"759474000\",\"name\":\"Jenkins, Rayshawn\",\"draft_pick\":\"6\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11994\",\"height\":\"74\",\"jersey\":\"23\",\"sportsdata_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"team\":\"LAC\",\"cbs_id\":\"1998315\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12349\",\"stats_id\":\"30231\",\"position\":\"WR\",\"stats_global_id\":\"702808\",\"weight\":\"221\",\"id\":\"13289\",\"draft_team\":\"PHI\",\"birthdate\":\"748155600\",\"name\":\"Hollins, Mack\",\"draft_pick\":\"11\",\"college\":\"North Carolina\",\"rotowire_id\":\"11861\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"team\":\"MIA\",\"cbs_id\":\"2010349\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12322\",\"stats_id\":\"30232\",\"position\":\"RB\",\"stats_global_id\":\"756928\",\"weight\":\"181\",\"id\":\"13290\",\"draft_team\":\"CHI\",\"birthdate\":\"806734800\",\"name\":\"Cohen, Tarik\",\"draft_pick\":\"12\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11758\",\"height\":\"66\",\"jersey\":\"29\",\"sportsdata_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"team\":\"CHI\",\"cbs_id\":\"2091113\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12350\",\"stats_id\":\"30233\",\"position\":\"LB\",\"stats_global_id\":\"742440\",\"weight\":\"244\",\"id\":\"13291\",\"draft_team\":\"MIN\",\"birthdate\":\"782283600\",\"name\":\"Gedeon, Ben\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"11972\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"team\":\"FA\",\"cbs_id\":\"2071717\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12351\",\"stats_id\":\"30236\",\"position\":\"S\",\"stats_global_id\":\"838235\",\"weight\":\"212\",\"id\":\"13292\",\"draft_team\":\"WAS\",\"birthdate\":\"818053200\",\"name\":\"Nicholson, Montae\",\"draft_pick\":\"15\",\"college\":\"Michigan State\",\"rotowire_id\":\"12003\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"team\":\"FA\",\"cbs_id\":\"2141765\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12270\",\"stats_id\":\"30237\",\"position\":\"LB\",\"stats_global_id\":\"727802\",\"weight\":\"233\",\"id\":\"13293\",\"draft_team\":\"DET\",\"birthdate\":\"791528400\",\"name\":\"Reeves-Maybin, Jalen\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"11980\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"team\":\"DET\",\"cbs_id\":\"2061162\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12352\",\"stats_id\":\"30238\",\"position\":\"LB\",\"stats_global_id\":\"754440\",\"weight\":\"245\",\"id\":\"13294\",\"draft_team\":\"LAR\",\"birthdate\":\"799995600\",\"name\":\"Ebukam, Samson\",\"draft_pick\":\"17\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"12201\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"team\":\"LAR\",\"cbs_id\":\"2818583\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12357\",\"stats_id\":\"30244\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"274\",\"id\":\"13296\",\"draft_team\":\"NEP\",\"birthdate\":\"775198800\",\"name\":\"Wise, Deatrich\",\"draft_pick\":\"23\",\"college\":\"Arkansas\",\"rotowire_id\":\"11954\",\"height\":\"77\",\"jersey\":\"91\",\"sportsdata_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"team\":\"NEP\",\"cbs_id\":\"1999951\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12361\",\"stats_id\":\"30251\",\"position\":\"DT\",\"stats_global_id\":\"696130\",\"weight\":\"300\",\"id\":\"13297\",\"draft_team\":\"CIN\",\"birthdate\":\"749365200\",\"name\":\"Glasgow, Ryan\",\"draft_pick\":\"30\",\"college\":\"Michigan\",\"rotowire_id\":\"11915\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"team\":\"NOS\",\"cbs_id\":\"2001880\"},{\"draft_year\":\"2017\",\"draft_round\":\"4\",\"rotoworld_id\":\"12364\",\"stats_id\":\"30257\",\"position\":\"DT\",\"stats_global_id\":\"1049773\",\"weight\":\"315\",\"id\":\"13298\",\"draft_team\":\"IND\",\"birthdate\":\"751093200\",\"name\":\"Stewart, Grover\",\"draft_pick\":\"36\",\"college\":\"Albany State (GA)\",\"rotowire_id\":\"12202\",\"height\":\"76\",\"jersey\":\"90\",\"sportsdata_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"team\":\"IND\",\"cbs_id\":\"2818218\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12276\",\"stats_id\":\"30259\",\"position\":\"TE\",\"stats_global_id\":\"733672\",\"weight\":\"250\",\"id\":\"13299\",\"draft_team\":\"SFO\",\"birthdate\":\"750142800\",\"name\":\"Kittle, George\",\"draft_pick\":\"2\",\"college\":\"Iowa\",\"rotowire_id\":\"11892\",\"height\":\"76\",\"jersey\":\"85\",\"sportsdata_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"team\":\"SFO\",\"cbs_id\":\"2818265\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12299\",\"stats_id\":\"30262\",\"position\":\"S\",\"stats_global_id\":\"693030\",\"weight\":\"174\",\"id\":\"13301\",\"draft_team\":\"ATL\",\"birthdate\":\"739256400\",\"name\":\"Kazee, Damontae\",\"draft_pick\":\"5\",\"college\":\"San Diego State\",\"rotowire_id\":\"12019\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"team\":\"ATL\",\"cbs_id\":\"1999512\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12366\",\"stats_id\":\"30265\",\"position\":\"CB\",\"stats_global_id\":\"739800\",\"weight\":\"185\",\"id\":\"13302\",\"draft_team\":\"CAR\",\"birthdate\":\"781678800\",\"name\":\"Elder, Corn\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12014\",\"height\":\"70\",\"jersey\":\"29\",\"sportsdata_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"team\":\"CAR\",\"cbs_id\":\"2071574\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12367\",\"stats_id\":\"30266\",\"position\":\"PK\",\"stats_global_id\":\"746154\",\"weight\":\"167\",\"id\":\"13303\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Elliott, Jake\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"12203\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"team\":\"PHI\",\"cbs_id\":\"2080295\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12369\",\"stats_id\":\"30268\",\"position\":\"LB\",\"stats_global_id\":\"744677\",\"weight\":\"226\",\"id\":\"13304\",\"draft_team\":\"TEN\",\"birthdate\":\"793774800\",\"name\":\"Brown, Jayon\",\"draft_pick\":\"11\",\"college\":\"UCLA\",\"rotowire_id\":\"11963\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"team\":\"TEN\",\"cbs_id\":\"2079667\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12371\",\"stats_id\":\"30271\",\"position\":\"S\",\"stats_global_id\":\"692372\",\"weight\":\"185\",\"id\":\"13305\",\"draft_team\":\"IND\",\"birthdate\":\"772952400\",\"name\":\"Hairston, Nate\",\"draft_pick\":\"14\",\"college\":\"Temple\",\"rotowire_id\":\"12016\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"team\":\"FA\",\"cbs_id\":\"1998926\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12374\",\"stats_id\":\"30274\",\"position\":\"LB\",\"stats_global_id\":\"742464\",\"weight\":\"230\",\"id\":\"13306\",\"draft_team\":\"IND\",\"birthdate\":\"807858000\",\"name\":\"Walker, Anthony\",\"draft_pick\":\"17\",\"college\":\"Northwestern\",\"rotowire_id\":\"11983\",\"height\":\"73\",\"jersey\":\"54\",\"sportsdata_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"team\":\"IND\",\"cbs_id\":\"2071763\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12375\",\"stats_id\":\"30276\",\"position\":\"LB\",\"stats_global_id\":\"745741\",\"weight\":\"223\",\"id\":\"13307\",\"draft_team\":\"BUF\",\"birthdate\":\"775371600\",\"name\":\"Milano, Matt\",\"draft_pick\":\"19\",\"college\":\"Boston College\",\"rotowire_id\":\"11978\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"team\":\"BUF\",\"cbs_id\":\"2078974\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12376\",\"stats_id\":\"30278\",\"position\":\"WR\",\"stats_global_id\":\"752646\",\"weight\":\"190\",\"id\":\"13308\",\"draft_team\":\"DET\",\"birthdate\":\"796885200\",\"name\":\"Agnew, Jamal\",\"draft_pick\":\"21\",\"college\":\"San Diego\",\"rotowire_id\":\"12205\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"team\":\"DET\",\"cbs_id\":\"2818264\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12316\",\"stats_id\":\"30280\",\"position\":\"LB\",\"stats_global_id\":\"651685\",\"weight\":\"266\",\"id\":\"13309\",\"draft_team\":\"NYG\",\"birthdate\":\"779691600\",\"name\":\"Moss, Avery\",\"draft_pick\":\"23\",\"college\":\"Youngstown State\",\"rotowire_id\":\"11929\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"team\":\"FA\",\"cbs_id\":\"1983682\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12377\",\"stats_id\":\"30281\",\"position\":\"LB\",\"stats_global_id\":\"733668\",\"weight\":\"235\",\"id\":\"13310\",\"draft_team\":\"OAK\",\"birthdate\":\"814251600\",\"name\":\"Lee, Marquel\",\"draft_pick\":\"24\",\"college\":\"Wake Forest\",\"rotowire_id\":\"11975\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"team\":\"FA\",\"cbs_id\":\"2060490\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12380\",\"stats_id\":\"30285\",\"position\":\"WR\",\"stats_global_id\":\"823040\",\"weight\":\"173\",\"id\":\"13313\",\"draft_team\":\"DEN\",\"birthdate\":\"797403600\",\"name\":\"McKenzie, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Georgia\",\"rotowire_id\":\"11866\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"team\":\"BUF\",\"cbs_id\":\"2131587\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12381\",\"stats_id\":\"30286\",\"position\":\"CB\",\"stats_global_id\":\"652012\",\"weight\":\"215\",\"id\":\"13314\",\"draft_team\":\"PIT\",\"birthdate\":\"751179600\",\"name\":\"Allen, Brian\",\"draft_pick\":\"29\",\"college\":\"Utah\",\"rotowire_id\":\"12008\",\"height\":\"75\",\"jersey\":\"29\",\"sportsdata_id\":\"a5780ea2-376e-4187-8be1-7c7fd2d0a12f\",\"team\":\"FA\",\"cbs_id\":\"1984447\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12300\",\"stats_id\":\"30287\",\"position\":\"TE\",\"stats_global_id\":\"694931\",\"weight\":\"253\",\"id\":\"13315\",\"draft_team\":\"ATL\",\"birthdate\":\"767768400\",\"name\":\"Saubert, Eric\",\"draft_pick\":\"30\",\"college\":\"Drake\",\"rotowire_id\":\"11897\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"team\":\"JAC\",\"cbs_id\":\"2001018\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12305\",\"stats_id\":\"30290\",\"position\":\"WR\",\"stats_global_id\":\"733849\",\"weight\":\"180\",\"id\":\"13316\",\"draft_team\":\"SFO\",\"birthdate\":\"767682000\",\"name\":\"Taylor, Trent\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"11881\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"team\":\"SFO\",\"cbs_id\":\"2060838\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12384\",\"stats_id\":\"30291\",\"position\":\"DT\",\"stats_global_id\":\"822029\",\"weight\":\"311\",\"id\":\"13317\",\"draft_team\":\"MIA\",\"birthdate\":\"784530000\",\"name\":\"Godchaux, Davon\",\"draft_pick\":\"34\",\"college\":\"LSU\",\"rotowire_id\":\"11916\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"team\":\"MIA\",\"cbs_id\":\"2131697\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12388\",\"stats_id\":\"30295\",\"position\":\"RB\",\"stats_global_id\":\"741314\",\"weight\":\"208\",\"id\":\"13319\",\"draft_team\":\"GBP\",\"birthdate\":\"786344400\",\"name\":\"Jones, Aaron\",\"draft_pick\":\"38\",\"college\":\"UTEP\",\"rotowire_id\":\"11763\",\"height\":\"69\",\"jersey\":\"33\",\"sportsdata_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"team\":\"GBP\",\"cbs_id\":\"2071937\"},{\"draft_year\":\"2017\",\"draft_round\":\"5\",\"rotoworld_id\":\"12391\",\"stats_id\":\"30297\",\"position\":\"LB\",\"stats_global_id\":\"728284\",\"weight\":\"230\",\"id\":\"13321\",\"draft_team\":\"PHI\",\"birthdate\":\"793515600\",\"name\":\"Gerry, Nate\",\"draft_pick\":\"40\",\"college\":\"Nebraska\",\"rotowire_id\":\"11990\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"team\":\"PHI\",\"cbs_id\":\"2060626\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12392\",\"stats_id\":\"30299\",\"position\":\"S\",\"stats_global_id\":\"742417\",\"weight\":\"205\",\"id\":\"13322\",\"draft_team\":\"BAL\",\"birthdate\":\"798267600\",\"name\":\"Clark, Chuck\",\"draft_pick\":\"2\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12010\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"team\":\"BAL\",\"cbs_id\":\"2071628\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12394\",\"stats_id\":\"30302\",\"position\":\"DE\",\"stats_global_id\":\"729550\",\"weight\":\"295\",\"id\":\"13324\",\"draft_team\":\"LAR\",\"birthdate\":\"784098000\",\"name\":\"Smart, Tanzel\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"11941\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"team\":\"NYJ\",\"cbs_id\":\"2061676\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12260\",\"stats_id\":\"30304\",\"position\":\"S\",\"stats_global_id\":\"733850\",\"weight\":\"208\",\"id\":\"13325\",\"draft_team\":\"DAL\",\"birthdate\":\"806734800\",\"name\":\"Woods, Xavier\",\"draft_pick\":\"7\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12007\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"team\":\"DAL\",\"cbs_id\":\"2060842\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12398\",\"stats_id\":\"30305\",\"position\":\"RB\",\"stats_global_id\":\"1049905\",\"weight\":\"255\",\"id\":\"13326\",\"draft_team\":\"CAR\",\"birthdate\":\"769150800\",\"name\":\"Armah, Alexander\",\"draft_pick\":\"8\",\"college\":\"West Georgia\",\"rotowire_id\":\"12208\",\"height\":\"74\",\"jersey\":\"40\",\"sportsdata_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"team\":\"CAR\",\"cbs_id\":\"2818312\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12396\",\"stats_id\":\"30306\",\"position\":\"LB\",\"stats_global_id\":\"747983\",\"weight\":\"242\",\"id\":\"13327\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Evans, Jordan\",\"draft_pick\":\"9\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12186\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"team\":\"CIN\",\"cbs_id\":\"2818313\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12397\",\"stats_id\":\"30307\",\"position\":\"DT\",\"stats_global_id\":\"744902\",\"weight\":\"306\",\"id\":\"13328\",\"draft_team\":\"MIA\",\"birthdate\":\"757746000\",\"name\":\"Taylor, Vincent\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11944\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"team\":\"CLE\",\"cbs_id\":\"2079199\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12399\",\"stats_id\":\"30308\",\"position\":\"LB\",\"stats_global_id\":\"728845\",\"weight\":\"230\",\"id\":\"13329\",\"draft_team\":\"BUF\",\"birthdate\":\"787554000\",\"name\":\"Vallejo, Tanner\",\"draft_pick\":\"11\",\"college\":\"Boise State\",\"rotowire_id\":\"11982\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"team\":\"ARI\",\"cbs_id\":\"2061746\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12400\",\"stats_id\":\"30309\",\"position\":\"DE\",\"stats_global_id\":\"748589\",\"weight\":\"250\",\"id\":\"13330\",\"draft_team\":\"NOS\",\"birthdate\":\"796366800\",\"name\":\"Muhammad, Al-Quadin\",\"draft_pick\":\"12\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11930\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"team\":\"IND\",\"cbs_id\":\"2078992\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12402\",\"stats_id\":\"30310\",\"position\":\"DT\",\"stats_global_id\":\"865577\",\"weight\":\"305\",\"id\":\"13332\",\"birthdate\":\"790491600\",\"draft_team\":\"SFO\",\"name\":\"Jones, D.J.\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"8016\",\"height\":\"72\",\"jersey\":\"93\",\"twitter_username\":\"DJ_Jones73\",\"sportsdata_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"team\":\"SFO\",\"cbs_id\":\"2180646\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12404\",\"stats_id\":\"30315\",\"position\":\"LB\",\"stats_global_id\":\"751753\",\"weight\":\"245\",\"id\":\"13333\",\"draft_team\":\"SFO\",\"birthdate\":\"763189200\",\"name\":\"Taumoepenu, Pita\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"11943\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"c69c8d25-f81b-4240-a361-6bb328ad9474\",\"team\":\"ATL\",\"cbs_id\":\"2084363\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12405\",\"stats_id\":\"30319\",\"position\":\"RB\",\"stats_global_id\":\"602310\",\"weight\":\"208\",\"id\":\"13334\",\"draft_team\":\"DEN\",\"birthdate\":\"722581200\",\"name\":\"Henderson, De'Angelo\",\"draft_pick\":\"19\",\"college\":\"Coastal Carolina\",\"rotowire_id\":\"11762\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"team\":\"FA\",\"cbs_id\":\"2818315\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12407\",\"stats_id\":\"30317\",\"position\":\"DE\",\"stats_global_id\":\"867393\",\"weight\":\"295\",\"id\":\"13336\",\"draft_team\":\"DET\",\"birthdate\":\"770533200\",\"name\":\"Ledbetter, Jeremiah\",\"draft_pick\":\"21\",\"college\":\"Arkansas\",\"rotowire_id\":\"11927\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"team\":\"TBB\",\"cbs_id\":\"2180586\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12409\",\"stats_id\":\"30320\",\"position\":\"S\",\"stats_global_id\":\"699876\",\"weight\":\"200\",\"id\":\"13338\",\"draft_team\":\"CIN\",\"birthdate\":\"775285200\",\"name\":\"Wilson, Brandon\",\"draft_pick\":\"23\",\"college\":\"Houston\",\"rotowire_id\":\"12211\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"team\":\"CIN\",\"cbs_id\":\"2818314\"},{\"draft_year\":\"2017\",\"draft_round\":\"6\",\"rotoworld_id\":\"12410\",\"stats_id\":\"30321\",\"position\":\"S\",\"stats_global_id\":\"746881\",\"weight\":\"204\",\"id\":\"13339\",\"draft_team\":\"ARI\",\"birthdate\":\"783666000\",\"name\":\"Ford, Johnathan\",\"draft_pick\":\"24\",\"college\":\"Auburn\",\"rotowire_id\":\"11989\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"team\":\"PHI\",\"cbs_id\":\"2079866\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12422\",\"stats_id\":\"30333\",\"position\":\"DE\",\"stats_global_id\":\"691842\",\"weight\":\"258\",\"id\":\"13343\",\"draft_team\":\"MIN\",\"birthdate\":\"765781200\",\"name\":\"Odenigbo, Ifeadi\",\"draft_pick\":\"2\",\"college\":\"Northwestern\",\"rotowire_id\":\"11932\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"team\":\"MIN\",\"cbs_id\":\"1998504\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12421\",\"stats_id\":\"30334\",\"position\":\"S\",\"stats_global_id\":\"868134\",\"weight\":\"202\",\"id\":\"13344\",\"draft_team\":\"OAK\",\"birthdate\":\"776926800\",\"name\":\"Luani, Shalom\",\"draft_pick\":\"3\",\"college\":\"Washington State\",\"rotowire_id\":\"12000\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"team\":\"FA\",\"cbs_id\":\"2818347\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12425\",\"stats_id\":\"30337\",\"position\":\"PK\",\"stats_global_id\":\"732774\",\"weight\":\"202\",\"id\":\"13347\",\"draft_team\":\"CLE\",\"birthdate\":\"799822800\",\"name\":\"Gonzalez, Zane\",\"draft_pick\":\"6\",\"college\":\"Arizona State\",\"rotowire_id\":\"11831\",\"height\":\"72\",\"jersey\":\"5\",\"sportsdata_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"team\":\"ARI\",\"cbs_id\":\"2061033\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12427\",\"stats_id\":\"30339\",\"position\":\"WR\",\"stats_global_id\":\"1049915\",\"weight\":\"215\",\"id\":\"13348\",\"draft_team\":\"SEA\",\"birthdate\":\"790146000\",\"name\":\"Moore, David\",\"draft_pick\":\"8\",\"college\":\"East Central\",\"rotowire_id\":\"12216\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"team\":\"SEA\",\"cbs_id\":\"2818351\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12430\",\"stats_id\":\"30342\",\"position\":\"S\",\"stats_global_id\":\"691337\",\"weight\":\"210\",\"id\":\"13351\",\"draft_team\":\"SFO\",\"birthdate\":\"749883600\",\"name\":\"Colbert, Adrian\",\"draft_pick\":\"11\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12041\",\"height\":\"74\",\"jersey\":\"34\",\"sportsdata_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"team\":\"NYG\",\"cbs_id\":\"2818350\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12431\",\"stats_id\":\"30343\",\"position\":\"LB\",\"stats_global_id\":\"694642\",\"weight\":\"230\",\"id\":\"13352\",\"draft_team\":\"WAS\",\"birthdate\":\"761720400\",\"name\":\"Harvey-Clemons, Josh\",\"draft_pick\":\"12\",\"college\":\"Louisville\",\"rotowire_id\":\"11991\",\"height\":\"76\",\"jersey\":\"40\",\"sportsdata_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"team\":\"WAS\",\"cbs_id\":\"2000878\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12434\",\"stats_id\":\"30345\",\"position\":\"LB\",\"stats_global_id\":\"838013\",\"weight\":\"230\",\"id\":\"13353\",\"draft_team\":\"MIN\",\"birthdate\":\"823755600\",\"name\":\"Lee, Elijah\",\"draft_pick\":\"14\",\"college\":\"Kansas State\",\"rotowire_id\":\"12151\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"team\":\"CLE\",\"cbs_id\":\"2141715\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12433\",\"stats_id\":\"30346\",\"position\":\"PK\",\"stats_global_id\":\"748560\",\"weight\":\"205\",\"id\":\"13354\",\"birthdate\":\"805698000\",\"draft_team\":\"CAR\",\"name\":\"Butker, Harrison\",\"draft_pick\":\"15\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"11783\",\"height\":\"76\",\"jersey\":\"7\",\"twitter_username\":\"buttkicker7\",\"sportsdata_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"team\":\"KCC\",\"cbs_id\":\"2078888\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12314\",\"stats_id\":\"30357\",\"position\":\"DE\",\"stats_global_id\":\"694719\",\"weight\":\"304\",\"id\":\"13360\",\"draft_team\":\"OAK\",\"birthdate\":\"717051600\",\"name\":\"Hester, Treyvon\",\"draft_pick\":\"26\",\"college\":\"Toledo\",\"rotowire_id\":\"11920\",\"height\":\"74\",\"jersey\":\"90\",\"sportsdata_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"team\":\"FA\",\"cbs_id\":\"2000813\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12446\",\"stats_id\":\"30362\",\"position\":\"RB\",\"stats_global_id\":\"882734\",\"weight\":\"222\",\"id\":\"13364\",\"draft_team\":\"SEA\",\"birthdate\":\"779691600\",\"name\":\"Carson, Chris\",\"draft_pick\":\"31\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"11784\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"team\":\"SEA\",\"cbs_id\":\"2185541\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12448\",\"stats_id\":\"30363\",\"position\":\"DE\",\"stats_global_id\":\"694143\",\"weight\":\"270\",\"id\":\"13365\",\"draft_team\":\"DET\",\"birthdate\":\"752130000\",\"name\":\"O'Connor, Pat\",\"draft_pick\":\"32\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"12223\",\"height\":\"76\",\"jersey\":\"79\",\"sportsdata_id\":\"2157df58-ca82-46cd-9897-261a80060292\",\"team\":\"TBB\",\"cbs_id\":\"2818377\"},{\"draft_year\":\"2017\",\"draft_round\":\"7\",\"rotoworld_id\":\"12447\",\"stats_id\":\"30364\",\"position\":\"TE\",\"stats_global_id\":\"694088\",\"weight\":\"252\",\"id\":\"13366\",\"draft_team\":\"CIN\",\"birthdate\":\"752389200\",\"name\":\"Schreck, Mason\",\"draft_pick\":\"33\",\"college\":\"Buffalo\",\"rotowire_id\":\"12224\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"ca6c7b35-6ae1-4ba7-ae98-1f26174e407d\",\"team\":\"CIN\",\"cbs_id\":\"2818374\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12332\",\"stats_id\":\"30656\",\"position\":\"WR\",\"stats_global_id\":\"691828\",\"weight\":\"195\",\"id\":\"13367\",\"draft_team\":\"FA\",\"birthdate\":\"756795600\",\"name\":\"Carr, Austin\",\"college\":\"Northwestern\",\"rotowire_id\":\"12228\",\"height\":\"73\",\"jersey\":\"80\",\"sportsdata_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"team\":\"NOS\",\"cbs_id\":\"2818959\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12499\",\"stats_id\":\"30577\",\"position\":\"TE\",\"stats_global_id\":\"728274\",\"weight\":\"248\",\"id\":\"13369\",\"draft_team\":\"FA\",\"birthdate\":\"747205200\",\"name\":\"Carter, Cethan\",\"college\":\"Nebraska\",\"rotowire_id\":\"11889\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"team\":\"CIN\",\"cbs_id\":\"2060620\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12489\",\"stats_id\":\"30487\",\"position\":\"WR\",\"stats_global_id\":\"1050070\",\"weight\":\"217\",\"id\":\"13370\",\"draft_team\":\"FA\",\"birthdate\":\"800254800\",\"name\":\"Hogan, Krishawn\",\"college\":\"Marian\",\"rotowire_id\":\"11860\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"team\":\"FA\",\"cbs_id\":\"2820123\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12676\",\"stats_id\":\"30550\",\"position\":\"WR\",\"stats_global_id\":\"749590\",\"weight\":\"178\",\"id\":\"13375\",\"draft_team\":\"FA\",\"birthdate\":\"796971600\",\"name\":\"Bolden, Victor\",\"college\":\"Oregon State\",\"rotowire_id\":\"11846\",\"height\":\"68\",\"jersey\":\"13\",\"sportsdata_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"team\":\"FA\",\"cbs_id\":\"2079642\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12501\",\"stats_id\":\"30511\",\"position\":\"WR\",\"stats_global_id\":\"838179\",\"weight\":\"212\",\"id\":\"13377\",\"draft_team\":\"FA\",\"birthdate\":\"754030800\",\"name\":\"Patrick, Tim\",\"college\":\"Utah\",\"rotowire_id\":\"12061\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"team\":\"DEN\",\"cbs_id\":\"2818910\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12678\",\"stats_id\":\"30552\",\"position\":\"RB\",\"stats_global_id\":\"750097\",\"weight\":\"195\",\"id\":\"13378\",\"draft_team\":\"FA\",\"birthdate\":\"793947600\",\"name\":\"Breida, Matt\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12289\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"team\":\"MIA\",\"cbs_id\":\"2819100\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12463\",\"stats_id\":\"30494\",\"position\":\"TE\",\"stats_global_id\":\"744568\",\"weight\":\"243\",\"id\":\"13382\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Seals-Jones, Ricky\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11876\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"team\":\"KCC\",\"cbs_id\":\"2080003\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12647\",\"stats_id\":\"30516\",\"position\":\"RB\",\"stats_global_id\":\"745858\",\"weight\":\"185\",\"id\":\"13384\",\"draft_team\":\"FA\",\"birthdate\":\"751179600\",\"name\":\"Mizzell, Taquan\",\"college\":\"Virginia\",\"rotowire_id\":\"12231\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"team\":\"FA\",\"cbs_id\":\"2818909\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11608\",\"stats_id\":\"29678\",\"position\":\"WR\",\"stats_global_id\":\"691348\",\"weight\":\"207\",\"id\":\"13387\",\"draft_team\":\"FA\",\"birthdate\":\"776062800\",\"name\":\"Johnson, Marcus\",\"college\":\"Texas\",\"rotowire_id\":\"11534\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"team\":\"IND\",\"cbs_id\":\"2237683\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12479\",\"stats_id\":\"30666\",\"position\":\"LB\",\"stats_global_id\":\"591859\",\"weight\":\"250\",\"id\":\"13388\",\"draft_team\":\"FA\",\"birthdate\":\"717310800\",\"name\":\"Langi, Harvey\",\"college\":\"Brigham Young\",\"rotowire_id\":\"11925\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"team\":\"NYJ\",\"cbs_id\":\"1825049\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12908\",\"stats_id\":\"30822\",\"position\":\"QB\",\"stats_global_id\":\"693430\",\"weight\":\"218\",\"id\":\"13389\",\"draft_team\":\"FA\",\"birthdate\":\"760597200\",\"name\":\"Sloter, Kyle\",\"college\":\"Northern Colorado\",\"rotowire_id\":\"12363\",\"height\":\"77\",\"jersey\":\"1\",\"sportsdata_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"team\":\"FA\",\"cbs_id\":\"2820013\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12491\",\"stats_id\":\"30661\",\"position\":\"TE\",\"stats_global_id\":\"696882\",\"weight\":\"245\",\"id\":\"13391\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Jacob\",\"college\":\"Wyoming\",\"rotowire_id\":\"12271\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"team\":\"SEA\",\"cbs_id\":\"2818962\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11099\",\"stats_id\":\"29111\",\"position\":\"LB\",\"stats_global_id\":\"871175\",\"weight\":\"230\",\"id\":\"13392\",\"draft_team\":\"FA\",\"birthdate\":\"702968400\",\"name\":\"Adams, Tyrell\",\"college\":\"West Georgia\",\"rotowire_id\":\"10835\",\"height\":\"74\",\"jersey\":\"50\",\"sportsdata_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"team\":\"HOU\",\"cbs_id\":\"2175309\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12453\",\"stats_id\":\"30523\",\"position\":\"TE\",\"stats_global_id\":\"747895\",\"weight\":\"256\",\"id\":\"13396\",\"draft_team\":\"FA\",\"birthdate\":\"785480400\",\"name\":\"Daniels, Darrell\",\"college\":\"Washington\",\"rotowire_id\":\"11890\",\"height\":\"75\",\"jersey\":\"81\",\"sportsdata_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"team\":\"ARI\",\"cbs_id\":\"2079698\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12643\",\"stats_id\":\"30510\",\"position\":\"WR\",\"stats_global_id\":\"882360\",\"weight\":\"185\",\"id\":\"13398\",\"draft_team\":\"FA\",\"birthdate\":\"774248400\",\"name\":\"White, Tim\",\"college\":\"Arizona State\",\"rotowire_id\":\"12330\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"team\":\"FA\",\"cbs_id\":\"2818914\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12632\",\"stats_id\":\"30499\",\"position\":\"LB\",\"stats_global_id\":\"739802\",\"weight\":\"223\",\"id\":\"13402\",\"draft_team\":\"FA\",\"birthdate\":\"752734800\",\"name\":\"Grace, Jermaine\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12043\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"team\":\"FA\",\"cbs_id\":\"2818537\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12566\",\"stats_id\":\"30426\",\"position\":\"PK\",\"stats_global_id\":\"750072\",\"weight\":\"195\",\"id\":\"13403\",\"draft_team\":\"FA\",\"birthdate\":\"775890000\",\"name\":\"Koo, Younghoe\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"12292\",\"height\":\"70\",\"jersey\":\"7\",\"sportsdata_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"team\":\"ATL\",\"cbs_id\":\"2820093\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12563\",\"stats_id\":\"30423\",\"position\":\"RB\",\"stats_global_id\":\"790004\",\"weight\":\"200\",\"id\":\"13404\",\"draft_team\":\"FA\",\"birthdate\":\"800686800\",\"name\":\"Ekeler, Austin\",\"college\":\"Western State\",\"rotowire_id\":\"12401\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"team\":\"LAC\",\"cbs_id\":\"2820090\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12466\",\"stats_id\":\"30512\",\"position\":\"WR\",\"stats_global_id\":\"749174\",\"weight\":\"200\",\"id\":\"13406\",\"draft_team\":\"FA\",\"birthdate\":\"801464400\",\"name\":\"Adeboyejo, Quincy\",\"college\":\"Mississippi\",\"rotowire_id\":\"11845\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"team\":\"NEP\",\"cbs_id\":\"2079880\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12739\",\"stats_id\":\"30623\",\"position\":\"CB\",\"stats_global_id\":\"745761\",\"weight\":\"189\",\"id\":\"13407\",\"draft_team\":\"FA\",\"birthdate\":\"806389200\",\"name\":\"Borders, Breon\",\"college\":\"Duke\",\"rotowire_id\":\"12097\",\"height\":\"72\",\"jersey\":\"31\",\"sportsdata_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"team\":\"TEN\",\"cbs_id\":\"2819152\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11786\",\"stats_id\":\"29636\",\"position\":\"DE\",\"stats_global_id\":\"592445\",\"weight\":\"259\",\"id\":\"13410\",\"draft_team\":\"FA\",\"birthdate\":\"735627600\",\"name\":\"Yarbrough, Eddie\",\"college\":\"Wyoming\",\"rotowire_id\":\"11432\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"team\":\"FA\",\"cbs_id\":\"1825107\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12853\",\"stats_id\":\"30763\",\"position\":\"TE\",\"stats_global_id\":\"728022\",\"weight\":\"254\",\"id\":\"13411\",\"draft_team\":\"FA\",\"birthdate\":\"784789200\",\"name\":\"Swoopes, Tyrone\",\"college\":\"Texas\",\"rotowire_id\":\"12049\",\"height\":\"76\",\"jersey\":\"46\",\"sportsdata_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"team\":\"FA\",\"cbs_id\":\"2820103\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12539\",\"stats_id\":\"30396\",\"position\":\"WR\",\"stats_global_id\":\"791008\",\"weight\":\"194\",\"id\":\"13412\",\"draft_team\":\"FA\",\"birthdate\":\"735282000\",\"name\":\"Cole, Keelan\",\"college\":\"Kentucky Wesleyan\",\"rotowire_id\":\"12388\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"team\":\"JAC\",\"cbs_id\":\"2820044\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11676\",\"stats_id\":\"29510\",\"position\":\"CB\",\"stats_global_id\":\"694666\",\"weight\":\"184\",\"id\":\"13414\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Hilton, Mike\",\"college\":\"Mississippi\",\"rotowire_id\":\"11473\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"team\":\"PIT\",\"cbs_id\":\"2000929\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12666\",\"stats_id\":\"30538\",\"position\":\"QB\",\"stats_global_id\":\"749164\",\"weight\":\"212\",\"id\":\"13416\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Walker, P.J.\",\"college\":\"Temple\",\"rotowire_id\":\"12371\",\"height\":\"71\",\"jersey\":\"6\",\"sportsdata_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"team\":\"CAR\",\"cbs_id\":\"2818659\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12677\",\"stats_id\":\"30551\",\"position\":\"WR\",\"stats_global_id\":\"754412\",\"weight\":\"190\",\"id\":\"13418\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Bourne, Kendrick\",\"college\":\"Eastern Washington\",\"rotowire_id\":\"11847\",\"height\":\"73\",\"jersey\":\"84\",\"sportsdata_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"team\":\"SFO\",\"cbs_id\":\"2088428\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12483\",\"stats_id\":\"30799\",\"position\":\"LB\",\"stats_global_id\":\"698529\",\"weight\":\"237\",\"id\":\"13423\",\"draft_team\":\"FA\",\"birthdate\":\"769323600\",\"name\":\"Cole, Dylan\",\"college\":\"Missouri State\",\"rotowire_id\":\"12410\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"team\":\"HOU\",\"cbs_id\":\"2820029\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12729\",\"stats_id\":\"30614\",\"position\":\"QB\",\"stats_global_id\":\"503184\",\"weight\":\"221\",\"id\":\"13424\",\"draft_team\":\"FA\",\"birthdate\":\"651387600\",\"name\":\"Hill, Taysom\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12063\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"team\":\"NOS\",\"cbs_id\":\"2818935\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12746\",\"stats_id\":\"30633\",\"position\":\"LB\",\"stats_global_id\":\"1050219\",\"weight\":\"225\",\"id\":\"13426\",\"draft_team\":\"FA\",\"birthdate\":\"805352400\",\"name\":\"Morrow, Nicholas\",\"college\":\"Greenville\",\"rotowire_id\":\"12428\",\"height\":\"72\",\"jersey\":\"50\",\"sportsdata_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"team\":\"LVR\",\"cbs_id\":\"2819225\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12868\",\"stats_id\":\"30777\",\"position\":\"TE\",\"stats_global_id\":\"660151\",\"weight\":\"237\",\"id\":\"13427\",\"draft_team\":\"FA\",\"birthdate\":\"767682000\",\"name\":\"Tonyan, Robert\",\"college\":\"Indiana State\",\"rotowire_id\":\"12389\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"team\":\"GBP\",\"cbs_id\":\"2820026\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12753\",\"stats_id\":\"30641\",\"position\":\"PN\",\"stats_global_id\":\"732776\",\"weight\":\"205\",\"id\":\"13430\",\"draft_team\":\"FA\",\"birthdate\":\"775112400\",\"name\":\"Haack, Matt\",\"college\":\"Arizona State\",\"rotowire_id\":\"12402\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"team\":\"MIA\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12663\",\"stats_id\":\"30534\",\"position\":\"PN\",\"stats_global_id\":\"886184\",\"weight\":\"195\",\"id\":\"13431\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Sanchez, Rigoberto\",\"college\":\"Hawaii\",\"rotowire_id\":\"12390\",\"height\":\"72\",\"jersey\":\"8\",\"sportsdata_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"team\":\"IND\",\"cbs_id\":\"2818657\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11650\",\"stats_id\":\"29920\",\"position\":\"DE\",\"stats_global_id\":\"609989\",\"weight\":\"294\",\"id\":\"13434\",\"draft_team\":\"FA\",\"birthdate\":\"743403600\",\"name\":\"Robertson-Harris, Roy\",\"college\":\"UTEP\",\"rotowire_id\":\"11356\",\"height\":\"79\",\"jersey\":\"95\",\"sportsdata_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"team\":\"CHI\",\"cbs_id\":\"1892155\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11875\",\"stats_id\":\"29751\",\"position\":\"DE\",\"stats_global_id\":\"695081\",\"weight\":\"310\",\"id\":\"13435\",\"draft_team\":\"FA\",\"birthdate\":\"774075600\",\"name\":\"Coley, Trevon\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"11305\",\"height\":\"73\",\"jersey\":\"93\",\"sportsdata_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"team\":\"ARI\",\"cbs_id\":\"2001500\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12560\",\"stats_id\":\"30420\",\"position\":\"TE\",\"stats_global_id\":\"689866\",\"weight\":\"255\",\"id\":\"13438\",\"draft_team\":\"FA\",\"birthdate\":\"739774800\",\"name\":\"Culkin, Sean\",\"college\":\"Missouri\",\"rotowire_id\":\"12405\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"team\":\"FA\",\"cbs_id\":\"2820068\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12597\",\"stats_id\":\"30462\",\"position\":\"DE\",\"stats_global_id\":\"736802\",\"weight\":\"262\",\"id\":\"13439\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Odom, Chris\",\"college\":\"Arkansas State\",\"rotowire_id\":\"12417\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"team\":\"FA\",\"cbs_id\":\"2818512\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12503\",\"stats_id\":\"30848\",\"position\":\"S\",\"stats_global_id\":\"739797\",\"weight\":\"215\",\"id\":\"13443\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Carter, Jamal\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"11987\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"team\":\"FA\",\"cbs_id\":\"2071571\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12452\",\"stats_id\":\"30736\",\"position\":\"LB\",\"stats_global_id\":\"746289\",\"weight\":\"243\",\"id\":\"13444\",\"draft_team\":\"FA\",\"birthdate\":\"788504400\",\"name\":\"Munson, Calvin\",\"college\":\"San Diego State\",\"rotowire_id\":\"12383\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"d3ba3eca-c71d-449b-b5f1-7397a9cab3f1\",\"team\":\"MIA\",\"cbs_id\":\"2820074\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12603\",\"stats_id\":\"30468\",\"position\":\"TE\",\"stats_global_id\":\"1050026\",\"weight\":\"256\",\"id\":\"13445\",\"draft_team\":\"FA\",\"birthdate\":\"738565200\",\"name\":\"Auclair, Antony\",\"college\":\"Laval University\",\"rotowire_id\":\"12230\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"team\":\"TBB\",\"cbs_id\":\"2819226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12492\",\"stats_id\":\"30583\",\"position\":\"LB\",\"stats_global_id\":\"690975\",\"weight\":\"235\",\"id\":\"13446\",\"draft_team\":\"FA\",\"birthdate\":\"757746000\",\"name\":\"Nickerson, Hardy\",\"college\":\"Illinois\",\"rotowire_id\":\"11979\",\"height\":\"72\",\"jersey\":\"56\",\"sportsdata_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"team\":\"MIN\",\"cbs_id\":\"1996495\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12585\",\"stats_id\":\"30448\",\"position\":\"LB\",\"stats_global_id\":\"691858\",\"weight\":\"230\",\"id\":\"13447\",\"draft_team\":\"FA\",\"birthdate\":\"780555600\",\"name\":\"Wilson, Eric\",\"college\":\"Cincinnati\",\"rotowire_id\":\"12360\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"team\":\"MIN\",\"cbs_id\":\"2818956\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12765\",\"stats_id\":\"30655\",\"position\":\"DT\",\"stats_global_id\":\"690808\",\"weight\":\"300\",\"id\":\"13448\",\"draft_team\":\"FA\",\"birthdate\":\"766126800\",\"name\":\"Butler, Adam\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12141\",\"height\":\"77\",\"jersey\":\"70\",\"sportsdata_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"team\":\"NEP\",\"cbs_id\":\"2818958\"},{\"draft_year\":\"2017\",\"nfl_id\":\"treyedmunds/2559325\",\"rotoworld_id\":\"12935\",\"stats_id\":\"30850\",\"position\":\"RB\",\"stats_global_id\":\"691645\",\"weight\":\"223\",\"id\":\"13452\",\"draft_team\":\"FA\",\"birthdate\":\"788763600\",\"name\":\"Edmunds, Trey\",\"college\":\"Maryland\",\"rotowire_id\":\"12433\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"team\":\"PIT\",\"cbs_id\":\"2820531\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12707\",\"stats_id\":\"30592\",\"position\":\"RB\",\"stats_global_id\":\"658389\",\"weight\":\"303\",\"id\":\"13455\",\"draft_team\":\"FA\",\"birthdate\":\"770014800\",\"name\":\"Ricard, Patrick\",\"college\":\"Maine\",\"rotowire_id\":\"12298\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"team\":\"BAL\",\"cbs_id\":\"2818911\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12881\",\"stats_id\":\"30792\",\"position\":\"DT\",\"stats_global_id\":\"707361\",\"weight\":\"325\",\"id\":\"13460\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Ankou, Eli\",\"college\":\"UCLA\",\"rotowire_id\":\"12358\",\"height\":\"75\",\"jersey\":\"79\",\"sportsdata_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"team\":\"DAL\",\"cbs_id\":\"2820027\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12738\",\"stats_id\":\"30622\",\"position\":\"LB\",\"stats_global_id\":\"752222\",\"weight\":\"217\",\"id\":\"13461\",\"draft_team\":\"FA\",\"birthdate\":\"773989200\",\"name\":\"Payne, Donald\",\"college\":\"Stetson\",\"rotowire_id\":\"12422\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"team\":\"FA\",\"cbs_id\":\"2819137\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12752\",\"stats_id\":\"30640\",\"position\":\"LB\",\"stats_global_id\":\"660315\",\"weight\":\"246\",\"id\":\"13463\",\"draft_team\":\"FA\",\"birthdate\":\"746600400\",\"name\":\"Allen, Chase\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"12303\",\"height\":\"75\",\"jersey\":\"59\",\"sportsdata_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"team\":\"FA\",\"cbs_id\":\"2819210\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12667\",\"stats_id\":\"30539\",\"position\":\"LB\",\"stats_global_id\":\"691741\",\"weight\":\"229\",\"id\":\"13465\",\"draft_team\":\"FA\",\"birthdate\":\"783579600\",\"name\":\"Bello, B.J.\",\"college\":\"Illinois State\",\"rotowire_id\":\"12434\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"team\":\"LAC\",\"cbs_id\":\"2819985\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11606\",\"stats_id\":\"29822\",\"position\":\"LB\",\"stats_global_id\":\"652611\",\"weight\":\"230\",\"id\":\"13466\",\"draft_team\":\"FA\",\"birthdate\":\"763189200\",\"name\":\"Burgess, James\",\"college\":\"Louisville\",\"rotowire_id\":\"11646\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"team\":\"GBP\",\"cbs_id\":\"1984579\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11895\",\"stats_id\":\"29781\",\"position\":\"S\",\"stats_global_id\":\"609702\",\"weight\":\"192\",\"id\":\"13468\",\"draft_team\":\"FA\",\"birthdate\":\"731739600\",\"name\":\"Washington, Charles\",\"college\":\"Fresno State\",\"rotowire_id\":\"11341\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"team\":\"ARI\",\"cbs_id\":\"1889969\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12775\",\"stats_id\":\"30669\",\"position\":\"CB\",\"stats_global_id\":\"1050229\",\"weight\":\"190\",\"id\":\"13470\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Moore, Kenny\",\"college\":\"Valdosta State\",\"rotowire_id\":\"12431\",\"height\":\"69\",\"jersey\":\"23\",\"twitter_username\":\"KennyMoore1\",\"sportsdata_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"team\":\"IND\",\"cbs_id\":\"2818965\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12858\",\"stats_id\":\"30766\",\"position\":\"DE\",\"stats_global_id\":\"693023\",\"weight\":\"250\",\"id\":\"13474\",\"draft_team\":\"FA\",\"birthdate\":\"760510800\",\"name\":\"Barrett, Alex\",\"college\":\"San Diego State\",\"rotowire_id\":\"12426\",\"height\":\"74\",\"jersey\":\"93\",\"sportsdata_id\":\"09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1\",\"team\":\"FA\",\"cbs_id\":\"2820017\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12884\",\"stats_id\":\"30795\",\"position\":\"TE\",\"stats_global_id\":\"689688\",\"weight\":\"250\",\"id\":\"13476\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Baylis, Evan\",\"college\":\"Oregon\",\"rotowire_id\":\"12308\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"team\":\"FA\",\"cbs_id\":\"2820226\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12562\",\"stats_id\":\"30422\",\"position\":\"CB\",\"stats_global_id\":\"750714\",\"weight\":\"195\",\"id\":\"13479\",\"draft_team\":\"FA\",\"birthdate\":\"789368400\",\"name\":\"Davis, Michael\",\"college\":\"Brigham Young\",\"rotowire_id\":\"12357\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"team\":\"LAC\",\"cbs_id\":\"2820088\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12635\",\"stats_id\":\"30502\",\"position\":\"WR\",\"stats_global_id\":\"658447\",\"weight\":\"214\",\"id\":\"13488\",\"draft_team\":\"FA\",\"birthdate\":\"787726800\",\"name\":\"Pascal, Zach\",\"college\":\"Old Dominion\",\"rotowire_id\":\"11868\",\"height\":\"74\",\"jersey\":\"14\",\"sportsdata_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"team\":\"IND\",\"cbs_id\":\"1989197\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12899\",\"birthdate\":\"760597200\",\"draft_team\":\"FA\",\"stats_id\":\"30811\",\"position\":\"CB\",\"name\":\"Hardee, Justin\",\"stats_global_id\":\"691750\",\"height\":\"73\",\"rotowire_id\":\"12442\",\"jersey\":\"34\",\"weight\":\"200\",\"sportsdata_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"id\":\"13491\",\"team\":\"NOS\",\"cbs_id\":\"2820033\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10827\",\"stats_id\":\"28771\",\"position\":\"DT\",\"stats_global_id\":\"608403\",\"weight\":\"315\",\"id\":\"13502\",\"draft_team\":\"FA\",\"birthdate\":\"743749200\",\"name\":\"Hamilton, Justin\",\"college\":\"Louisiana\",\"rotowire_id\":\"10592\",\"height\":\"74\",\"jersey\":\"74\",\"sportsdata_id\":\"1fb9a153-f1e0-4396-81fd-c3b1d331338f\",\"team\":\"DAL\",\"cbs_id\":\"2174801\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12790\",\"stats_id\":\"30682\",\"position\":\"WR\",\"stats_global_id\":\"746243\",\"weight\":\"210\",\"id\":\"13503\",\"draft_team\":\"FA\",\"birthdate\":\"808376400\",\"name\":\"Kemp, Marcus\",\"college\":\"Hawaii\",\"rotowire_id\":\"12446\",\"height\":\"76\",\"jersey\":\"19\",\"twitter_username\":\"MarcusDKemp\",\"sportsdata_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"team\":\"KCC\",\"cbs_id\":\"2819444\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12008\",\"stats_id\":\"29962\",\"position\":\"CB\",\"stats_global_id\":\"683649\",\"weight\":\"185\",\"id\":\"13504\",\"draft_team\":\"FA\",\"birthdate\":\"736405200\",\"name\":\"McRae, Tony\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"11656\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"team\":\"DET\",\"cbs_id\":\"2237235\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12071\",\"stats_id\":\"30023\",\"position\":\"WR\",\"stats_global_id\":\"607435\",\"weight\":\"190\",\"id\":\"13505\",\"draft_team\":\"FA\",\"birthdate\":\"734418000\",\"name\":\"Hall, Marvin\",\"college\":\"Washington\",\"rotowire_id\":\"11517\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"team\":\"DET\",\"cbs_id\":\"2239250\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12026\",\"stats_id\":\"29978\",\"position\":\"WR\",\"stats_global_id\":\"695199\",\"weight\":\"170\",\"id\":\"13510\",\"draft_team\":\"FA\",\"birthdate\":\"766904400\",\"name\":\"Mickens, Jaydon\",\"college\":\"Washington\",\"rotowire_id\":\"11213\",\"height\":\"71\",\"jersey\":\"85\",\"sportsdata_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"team\":\"TBB\",\"cbs_id\":\"2237679\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12476\",\"stats_id\":\"30379\",\"position\":\"DE\",\"stats_global_id\":\"694610\",\"weight\":\"270\",\"id\":\"13512\",\"draft_team\":\"FA\",\"birthdate\":\"772520400\",\"name\":\"Cox, Bryan\",\"college\":\"Florida\",\"rotowire_id\":\"11910\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"team\":\"BUF\",\"cbs_id\":\"2000847\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"12660\",\"stats_id\":\"30531\",\"position\":\"WR\",\"stats_global_id\":\"693276\",\"weight\":\"153\",\"id\":\"13529\",\"draft_team\":\"FA\",\"birthdate\":\"760078800\",\"name\":\"Natson, JoJo\",\"college\":\"Akron\",\"rotowire_id\":\"12359\",\"height\":\"67\",\"jersey\":\"19\",\"sportsdata_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"team\":\"CLE\",\"cbs_id\":\"2818702\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"10872\",\"stats_id\":\"28801\",\"position\":\"S\",\"stats_global_id\":\"593294\",\"weight\":\"195\",\"id\":\"13531\",\"draft_team\":\"FA\",\"birthdate\":\"731912400\",\"name\":\"Whitehead, Jermaine\",\"college\":\"Auburn\",\"rotowire_id\":\"10723\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"team\":\"FA\",\"cbs_id\":\"1824819\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12821\",\"stats_id\":\"30722\",\"position\":\"LB\",\"stats_global_id\":\"728894\",\"weight\":\"254\",\"id\":\"13536\",\"draft_team\":\"FA\",\"birthdate\":\"771138000\",\"name\":\"Irving, Isaiah\",\"college\":\"San Jose State\",\"rotowire_id\":\"12445\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"team\":\"ARI\",\"cbs_id\":\"2820118\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12567\",\"stats_id\":\"30427\",\"position\":\"LB\",\"stats_global_id\":\"727746\",\"weight\":\"250\",\"id\":\"13537\",\"draft_team\":\"FA\",\"birthdate\":\"793083600\",\"name\":\"Bower, Tashawn\",\"college\":\"LSU\",\"rotowire_id\":\"11903\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"team\":\"NEP\",\"cbs_id\":\"2061228\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12875\",\"stats_id\":\"30785\",\"position\":\"LB\",\"stats_global_id\":\"691833\",\"weight\":\"231\",\"id\":\"13543\",\"draft_team\":\"FA\",\"birthdate\":\"761806800\",\"name\":\"Jones, Joseph\",\"college\":\"Northwestern\",\"rotowire_id\":\"12454\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"team\":\"DEN\",\"cbs_id\":\"2820000\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12614\",\"stats_id\":\"30481\",\"position\":\"WR\",\"stats_global_id\":\"742159\",\"weight\":\"186\",\"id\":\"13544\",\"draft_team\":\"FA\",\"birthdate\":\"791010000\",\"name\":\"Wilson, Bobo\",\"college\":\"Florida State\",\"rotowire_id\":\"11886\",\"height\":\"69\",\"jersey\":\"85\",\"sportsdata_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"team\":\"FA\",\"cbs_id\":\"2071519\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12468\",\"stats_id\":\"30415\",\"position\":\"CB\",\"stats_global_id\":\"880396\",\"weight\":\"190\",\"id\":\"13547\",\"draft_team\":\"FA\",\"birthdate\":\"742539600\",\"name\":\"Maulet, Art\",\"college\":\"Memphis\",\"rotowire_id\":\"12026\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"team\":\"NYJ\",\"cbs_id\":\"2819458\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12758\",\"stats_id\":\"30646\",\"position\":\"CB\",\"stats_global_id\":\"751845\",\"weight\":\"188\",\"id\":\"13553\",\"draft_team\":\"FA\",\"birthdate\":\"797490000\",\"name\":\"McTyer, Torry\",\"college\":\"UNLV\",\"rotowire_id\":\"12040\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"team\":\"CIN\",\"cbs_id\":\"2819216\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12756\",\"stats_id\":\"30644\",\"position\":\"LB\",\"stats_global_id\":\"652212\",\"weight\":\"265\",\"id\":\"13559\",\"draft_team\":\"FA\",\"birthdate\":\"777531600\",\"name\":\"Malveaux, Cameron\",\"college\":\"Houston\",\"rotowire_id\":\"12057\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"8b44e3b8-81ae-4f02-b598-965872d12816\",\"team\":\"CLE\",\"cbs_id\":\"2819214\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12890\",\"stats_id\":\"30802\",\"position\":\"DT\",\"stats_global_id\":\"1050928\",\"weight\":\"300\",\"id\":\"13562\",\"draft_team\":\"FA\",\"birthdate\":\"731307600\",\"name\":\"Ross, Daniel\",\"college\":\"Northeast Mississippi CC\",\"rotowire_id\":\"12455\",\"height\":\"76\",\"jersey\":\"93\",\"sportsdata_id\":\"8bfbee63-feb4-4862-b3c8-08d2f65c8b5f\",\"team\":\"LVR\",\"cbs_id\":\"2820038\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"12088\",\"stats_id\":\"30038\",\"position\":\"PK\",\"stats_global_id\":\"609487\",\"weight\":\"192\",\"id\":\"13564\",\"draft_team\":\"FA\",\"birthdate\":\"724309200\",\"name\":\"Ficken, Sam\",\"college\":\"Penn State\",\"rotowire_id\":\"11610\",\"height\":\"73\",\"jersey\":\"9\",\"sportsdata_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"team\":\"NYJ\",\"cbs_id\":\"1889916\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11856\",\"stats_id\":\"29727\",\"position\":\"LB\",\"stats_global_id\":\"593546\",\"weight\":\"261\",\"id\":\"13565\",\"draft_team\":\"FA\",\"birthdate\":\"733640400\",\"name\":\"Gilbert, Reggie\",\"college\":\"Arizona\",\"rotowire_id\":\"11445\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"team\":\"JAC\",\"cbs_id\":\"1824675\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13056\",\"stats_id\":\"30959\",\"position\":\"WR\",\"stats_global_id\":\"916610\",\"weight\":\"215\",\"id\":\"13585\",\"draft_team\":\"FA\",\"birthdate\":\"733035600\",\"name\":\"Zylstra, Brandon\",\"college\":\"Concordia\",\"rotowire_id\":\"12533\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"team\":\"CAR\",\"cbs_id\":\"2914676\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"11242\",\"birthdate\":\"262242000\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Nagy, Matt\",\"stats_global_id\":\"0\",\"height\":\"74\",\"sportsdata_id\":\"11781d7e-5d9c-43b9-b597-bc6f0461216f\",\"id\":\"13588\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13045\",\"stats_id\":\"30977\",\"position\":\"QB\",\"stats_global_id\":\"868199\",\"weight\":\"237\",\"id\":\"13589\",\"draft_team\":\"BUF\",\"birthdate\":\"832654800\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Wyoming\",\"rotowire_id\":\"12483\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"team\":\"BUF\",\"cbs_id\":\"2181054\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13072\",\"stats_id\":\"30971\",\"position\":\"QB\",\"stats_global_id\":\"748070\",\"weight\":\"215\",\"id\":\"13590\",\"draft_team\":\"CLE\",\"birthdate\":\"797835600\",\"name\":\"Mayfield, Baker\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12619\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"team\":\"CLE\",\"cbs_id\":\"2080032\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13047\",\"stats_id\":\"30980\",\"position\":\"QB\",\"stats_global_id\":\"868876\",\"weight\":\"215\",\"id\":\"13591\",\"draft_team\":\"ARI\",\"birthdate\":\"855550800\",\"name\":\"Rosen, Josh\",\"draft_pick\":\"10\",\"college\":\"UCLA\",\"rotowire_id\":\"12489\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"team\":\"FA\",\"cbs_id\":\"2180347\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13058\",\"stats_id\":\"30973\",\"position\":\"QB\",\"stats_global_id\":\"880026\",\"weight\":\"225\",\"id\":\"13592\",\"draft_team\":\"NYJ\",\"birthdate\":\"865486800\",\"name\":\"Darnold, Sam\",\"draft_pick\":\"3\",\"college\":\"USC\",\"rotowire_id\":\"12490\",\"height\":\"75\",\"jersey\":\"14\",\"sportsdata_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"team\":\"NYJ\",\"cbs_id\":\"2180320\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13059\",\"stats_id\":\"31002\",\"position\":\"QB\",\"stats_global_id\":\"877745\",\"weight\":\"212\",\"id\":\"13593\",\"draft_team\":\"BAL\",\"birthdate\":\"852613200\",\"name\":\"Jackson, Lamar\",\"draft_pick\":\"32\",\"college\":\"Louisville\",\"rotowire_id\":\"12561\",\"height\":\"74\",\"jersey\":\"8\",\"sportsdata_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"team\":\"BAL\",\"cbs_id\":\"2181169\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13215\",\"stats_id\":\"31169\",\"position\":\"QB\",\"stats_global_id\":\"749541\",\"weight\":\"215\",\"id\":\"13594\",\"draft_team\":\"TEN\",\"birthdate\":\"788590800\",\"name\":\"Falk, Luke\",\"draft_pick\":\"25\",\"college\":\"Washington State\",\"rotowire_id\":\"12770\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"team\":\"FA\",\"cbs_id\":\"2079725\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13075\",\"stats_id\":\"31046\",\"position\":\"QB\",\"stats_global_id\":\"823220\",\"weight\":\"235\",\"id\":\"13595\",\"draft_team\":\"PIT\",\"birthdate\":\"805957200\",\"name\":\"Rudolph, Mason\",\"draft_pick\":\"12\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12629\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"team\":\"PIT\",\"cbs_id\":\"2131167\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13372\",\"stats_id\":\"31365\",\"position\":\"QB\",\"stats_global_id\":\"728319\",\"weight\":\"220\",\"id\":\"13596\",\"draft_team\":\"FA\",\"birthdate\":\"790837200\",\"name\":\"Barrett, J.T.\",\"college\":\"Ohio State\",\"rotowire_id\":\"12657\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"team\":\"FA\",\"cbs_id\":\"2060760\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13188\",\"stats_id\":\"31141\",\"position\":\"QB\",\"stats_global_id\":\"741785\",\"weight\":\"218\",\"id\":\"13598\",\"draft_team\":\"DAL\",\"birthdate\":\"796107600\",\"name\":\"White, Mike\",\"draft_pick\":\"34\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12826\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"team\":\"FA\",\"cbs_id\":\"2072143\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13398\",\"stats_id\":\"31336\",\"position\":\"QB\",\"stats_global_id\":\"728991\",\"weight\":\"215\",\"id\":\"13600\",\"draft_team\":\"FA\",\"birthdate\":\"805957200\",\"name\":\"Benkert, Kurt\",\"college\":\"Virginia\",\"rotowire_id\":\"12819\",\"height\":\"76\",\"jersey\":\"6\",\"sportsdata_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"team\":\"ATL\",\"cbs_id\":\"2061565\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13206\",\"stats_id\":\"31078\",\"position\":\"QB\",\"stats_global_id\":\"751855\",\"weight\":\"219\",\"id\":\"13601\",\"draft_team\":\"NYG\",\"birthdate\":\"795416400\",\"name\":\"Lauletta, Kyle\",\"draft_pick\":\"8\",\"college\":\"Richmond\",\"rotowire_id\":\"12818\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"team\":\"FA\",\"cbs_id\":\"2084411\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13048\",\"stats_id\":\"30972\",\"position\":\"RB\",\"stats_global_id\":\"883302\",\"weight\":\"232\",\"id\":\"13604\",\"draft_team\":\"NYG\",\"birthdate\":\"855291600\",\"name\":\"Barkley, Saquon\",\"draft_pick\":\"2\",\"college\":\"Penn State\",\"rotowire_id\":\"12507\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"team\":\"NYG\",\"cbs_id\":\"2185957\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13094\",\"stats_id\":\"31029\",\"position\":\"RB\",\"stats_global_id\":\"865565\",\"weight\":\"225\",\"id\":\"13605\",\"draft_team\":\"WAS\",\"birthdate\":\"866869200\",\"name\":\"Guice, Derrius\",\"draft_pick\":\"27\",\"college\":\"LSU\",\"rotowire_id\":\"12620\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"team\":\"FA\",\"cbs_id\":\"2180624\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13061\",\"stats_id\":\"31008\",\"position\":\"RB\",\"stats_global_id\":\"880033\",\"weight\":\"208\",\"id\":\"13606\",\"draft_team\":\"TBB\",\"birthdate\":\"870584400\",\"name\":\"Jones, Ronald\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"12566\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"team\":\"TBB\",\"cbs_id\":\"2180329\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13134\",\"stats_id\":\"31001\",\"position\":\"RB\",\"stats_global_id\":\"823041\",\"weight\":\"215\",\"id\":\"13607\",\"draft_team\":\"NEP\",\"birthdate\":\"792997200\",\"name\":\"Michel, Sony\",\"draft_pick\":\"31\",\"college\":\"Georgia\",\"rotowire_id\":\"12880\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"team\":\"NEP\",\"cbs_id\":\"2131588\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13143\",\"stats_id\":\"30997\",\"position\":\"RB\",\"stats_global_id\":\"840691\",\"weight\":\"220\",\"id\":\"13608\",\"draft_team\":\"SEA\",\"birthdate\":\"823237200\",\"name\":\"Penny, Rashaad\",\"draft_pick\":\"27\",\"college\":\"San Diego State\",\"rotowire_id\":\"12830\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"team\":\"SEA\",\"cbs_id\":\"2144893\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13161\",\"stats_id\":\"31005\",\"position\":\"RB\",\"stats_global_id\":\"822857\",\"weight\":\"227\",\"id\":\"13610\",\"draft_team\":\"CLE\",\"birthdate\":\"820040400\",\"name\":\"Chubb, Nick\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"12886\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"team\":\"CLE\",\"cbs_id\":\"2131579\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13218\",\"stats_id\":\"31567\",\"position\":\"RB\",\"stats_global_id\":\"884549\",\"weight\":\"225\",\"id\":\"13611\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Adams, Josh\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12563\",\"height\":\"74\",\"jersey\":\"36\",\"sportsdata_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"team\":\"NYJ\",\"cbs_id\":\"2186572\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13156\",\"stats_id\":\"31013\",\"position\":\"RB\",\"stats_global_id\":\"880548\",\"weight\":\"211\",\"id\":\"13612\",\"draft_team\":\"DET\",\"birthdate\":\"867646800\",\"name\":\"Johnson, Kerryon\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"12525\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"team\":\"DET\",\"cbs_id\":\"2183973\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13189\",\"stats_id\":\"31135\",\"position\":\"RB\",\"stats_global_id\":\"832232\",\"weight\":\"225\",\"id\":\"13613\",\"draft_team\":\"PIT\",\"birthdate\":\"837838800\",\"name\":\"Samuels, Jaylen\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12779\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"team\":\"PIT\",\"cbs_id\":\"2136449\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13357\",\"stats_id\":\"31379\",\"position\":\"RB\",\"stats_global_id\":\"747861\",\"weight\":\"190\",\"id\":\"13614\",\"draft_team\":\"FA\",\"birthdate\":\"775026000\",\"name\":\"Lindsay, Phillip\",\"college\":\"Colorado\",\"rotowire_id\":\"12715\",\"height\":\"68\",\"jersey\":\"30\",\"twitter_username\":\"I_CU_boy\",\"sportsdata_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"team\":\"DEN\",\"cbs_id\":\"2079084\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13217\",\"stats_id\":\"31206\",\"position\":\"RB\",\"stats_global_id\":\"835814\",\"weight\":\"235\",\"id\":\"13615\",\"draft_team\":\"DAL\",\"birthdate\":\"843973200\",\"name\":\"Scarbrough, Bo\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12617\",\"height\":\"73\",\"jersey\":\"43\",\"sportsdata_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"team\":\"SEA\",\"cbs_id\":\"2139782\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13197\",\"stats_id\":\"31082\",\"position\":\"RB\",\"stats_global_id\":\"871716\",\"weight\":\"200\",\"id\":\"13616\",\"draft_team\":\"CIN\",\"birthdate\":\"859611600\",\"name\":\"Walton, Mark\",\"draft_pick\":\"12\",\"college\":\"Miami\",\"rotowire_id\":\"12463\",\"height\":\"70\",\"jersey\":\"9\",\"sportsdata_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"team\":\"FA\",\"cbs_id\":\"2179405\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13172\",\"stats_id\":\"31041\",\"position\":\"RB\",\"stats_global_id\":\"835779\",\"weight\":\"238\",\"id\":\"13617\",\"draft_team\":\"DEN\",\"birthdate\":\"825138000\",\"name\":\"Freeman, Royce\",\"draft_pick\":\"7\",\"college\":\"Oregon\",\"rotowire_id\":\"12892\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"team\":\"DEN\",\"cbs_id\":\"2139588\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13212\",\"stats_id\":\"31145\",\"position\":\"RB\",\"stats_global_id\":\"879766\",\"weight\":\"205\",\"id\":\"13619\",\"draft_team\":\"LAR\",\"birthdate\":\"844405200\",\"name\":\"Kelly, John\",\"draft_pick\":\"2\",\"college\":\"Tennessee\",\"rotowire_id\":\"12555\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"team\":\"FA\",\"cbs_id\":\"2180519\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13350\",\"stats_id\":\"31221\",\"position\":\"RB\",\"stats_global_id\":\"830844\",\"weight\":\"199\",\"id\":\"13620\",\"draft_team\":\"LAC\",\"birthdate\":\"798526800\",\"name\":\"Jackson, Justin\",\"draft_pick\":\"33\",\"college\":\"Northwestern\",\"rotowire_id\":\"12724\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"team\":\"LAC\",\"cbs_id\":\"2155320\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13216\",\"stats_id\":\"31100\",\"position\":\"RB\",\"stats_global_id\":\"820568\",\"weight\":\"231\",\"id\":\"13621\",\"draft_team\":\"MIA\",\"birthdate\":\"819608400\",\"name\":\"Ballage, Kalen\",\"draft_pick\":\"31\",\"college\":\"Arizona State\",\"rotowire_id\":\"12786\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"team\":\"LAC\",\"cbs_id\":\"2131476\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13209\",\"stats_id\":\"31074\",\"position\":\"RB\",\"stats_global_id\":\"880146\",\"weight\":\"196\",\"id\":\"13622\",\"draft_team\":\"IND\",\"birthdate\":\"847774800\",\"name\":\"Hines, Nyheim\",\"draft_pick\":\"4\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12630\",\"height\":\"69\",\"jersey\":\"21\",\"sportsdata_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"team\":\"IND\",\"cbs_id\":\"2183832\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13668\",\"stats_id\":\"31500\",\"position\":\"RB\",\"stats_global_id\":\"822038\",\"weight\":\"224\",\"id\":\"13623\",\"draft_team\":\"FA\",\"birthdate\":\"797922000\",\"name\":\"Williams, Darrel\",\"college\":\"LSU\",\"rotowire_id\":\"12839\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"team\":\"KCC\",\"cbs_id\":\"2131714\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13417\",\"stats_id\":\"31241\",\"position\":\"RB\",\"stats_global_id\":\"835151\",\"weight\":\"198\",\"id\":\"13628\",\"draft_team\":\"FA\",\"birthdate\":\"810018000\",\"name\":\"Thomas, Roc\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12943\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"team\":\"FA\",\"cbs_id\":\"2139805\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13137\",\"stats_id\":\"30996\",\"position\":\"WR\",\"stats_global_id\":\"884013\",\"weight\":\"190\",\"id\":\"13629\",\"draft_team\":\"ATL\",\"birthdate\":\"787899600\",\"name\":\"Ridley, Calvin\",\"draft_pick\":\"26\",\"college\":\"Alabama\",\"rotowire_id\":\"12616\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"team\":\"ATL\",\"cbs_id\":\"2186328\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13129\",\"stats_id\":\"31010\",\"position\":\"WR\",\"stats_global_id\":\"838878\",\"weight\":\"216\",\"id\":\"13630\",\"draft_team\":\"DEN\",\"birthdate\":\"813301200\",\"name\":\"Sutton, Courtland\",\"draft_pick\":\"8\",\"college\":\"SMU\",\"rotowire_id\":\"12586\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"team\":\"DEN\",\"cbs_id\":\"2218461\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13153\",\"stats_id\":\"31030\",\"position\":\"WR\",\"stats_global_id\":\"835437\",\"weight\":\"213\",\"id\":\"13631\",\"draft_team\":\"PIT\",\"birthdate\":\"828421200\",\"name\":\"Washington, James\",\"draft_pick\":\"28\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12838\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"team\":\"PIT\",\"cbs_id\":\"2146188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13226\",\"stats_id\":\"31268\",\"position\":\"WR\",\"stats_global_id\":\"837958\",\"weight\":\"227\",\"id\":\"13632\",\"draft_team\":\"FA\",\"birthdate\":\"818658000\",\"name\":\"Lazard, Allen\",\"college\":\"Iowa State\",\"rotowire_id\":\"12628\",\"height\":\"77\",\"jersey\":\"13\",\"sportsdata_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"team\":\"GBP\",\"cbs_id\":\"2141655\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13095\",\"stats_id\":\"31017\",\"position\":\"WR\",\"stats_global_id\":\"865801\",\"weight\":\"200\",\"id\":\"13633\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Kirk, Christian\",\"draft_pick\":\"15\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12508\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"team\":\"ARI\",\"cbs_id\":\"2180820\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13160\",\"stats_id\":\"31014\",\"position\":\"WR\",\"stats_global_id\":\"837820\",\"weight\":\"195\",\"id\":\"13634\",\"draft_team\":\"SFO\",\"birthdate\":\"814424400\",\"name\":\"Pettis, Dante\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12884\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"team\":\"NYG\",\"cbs_id\":\"2139642\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13114\",\"stats_id\":\"30994\",\"position\":\"WR\",\"stats_global_id\":\"877790\",\"weight\":\"210\",\"id\":\"13635\",\"draft_team\":\"CAR\",\"birthdate\":\"860994000\",\"name\":\"Moore, D.J.\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12477\",\"height\":\"72\",\"jersey\":\"12\",\"sportsdata_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"team\":\"CAR\",\"cbs_id\":\"2179328\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13167\",\"stats_id\":\"31155\",\"position\":\"WR\",\"stats_global_id\":\"867754\",\"weight\":\"202\",\"id\":\"13636\",\"draft_team\":\"IND\",\"birthdate\":\"839566800\",\"name\":\"Cain, Deon\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"12611\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"team\":\"PIT\",\"cbs_id\":\"2179211\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13145\",\"stats_id\":\"31177\",\"position\":\"WR\",\"stats_global_id\":\"884601\",\"weight\":\"214\",\"id\":\"13637\",\"draft_team\":\"GBP\",\"birthdate\":\"844059600\",\"name\":\"St. Brown, Equanimeous\",\"draft_pick\":\"33\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12560\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"team\":\"GBP\",\"cbs_id\":\"2186674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13308\",\"stats_id\":\"31180\",\"position\":\"WR\",\"stats_global_id\":\"820866\",\"weight\":\"190\",\"id\":\"13638\",\"draft_team\":\"NEP\",\"birthdate\":\"812955600\",\"name\":\"Berrios, Braxton\",\"draft_pick\":\"36\",\"college\":\"Miami\",\"rotowire_id\":\"12771\",\"height\":\"69\",\"jersey\":\"10\",\"sportsdata_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"team\":\"NYJ\",\"cbs_id\":\"2130981\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13152\",\"stats_id\":\"31021\",\"position\":\"WR\",\"stats_global_id\":\"749136\",\"weight\":\"190\",\"id\":\"13639\",\"draft_team\":\"CHI\",\"birthdate\":\"781678800\",\"name\":\"Miller, Anthony\",\"draft_pick\":\"19\",\"college\":\"Memphis\",\"rotowire_id\":\"12763\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"team\":\"CHI\",\"cbs_id\":\"2082810\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13108\",\"stats_id\":\"31075\",\"position\":\"WR\",\"stats_global_id\":\"879022\",\"weight\":\"200\",\"id\":\"13640\",\"draft_team\":\"CLE\",\"birthdate\":\"852786000\",\"name\":\"Callaway, Antonio\",\"draft_pick\":\"5\",\"college\":\"Florida\",\"rotowire_id\":\"12468\",\"height\":\"71\",\"jersey\":\"11\",\"sportsdata_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"team\":\"MIA\",\"cbs_id\":\"2180420\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13289\",\"stats_id\":\"31157\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"13641\",\"draft_team\":\"FA\",\"birthdate\":\"845355600\",\"name\":\"McCloud, Ray-Ray\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"12570\",\"height\":\"70\",\"jersey\":\"14\",\"sportsdata_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"team\":\"PIT\",\"cbs_id\":\"2179226\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13352\",\"stats_id\":\"31223\",\"position\":\"WR\",\"stats_global_id\":\"883459\",\"weight\":\"228\",\"id\":\"13642\",\"draft_team\":\"CIN\",\"birthdate\":\"854946000\",\"name\":\"Tate, Auden\",\"draft_pick\":\"35\",\"college\":\"Florida State\",\"rotowire_id\":\"12569\",\"height\":\"77\",\"jersey\":\"19\",\"sportsdata_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"team\":\"CIN\",\"cbs_id\":\"2185902\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13322\",\"stats_id\":\"31194\",\"position\":\"WR\",\"stats_global_id\":\"922039\",\"weight\":\"215\",\"id\":\"13644\",\"draft_team\":\"CHI\",\"birthdate\":\"779259600\",\"name\":\"Wims, Javon\",\"draft_pick\":\"6\",\"college\":\"Georgia\",\"rotowire_id\":\"12627\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"team\":\"CHI\",\"cbs_id\":\"2248628\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13196\",\"stats_id\":\"31061\",\"position\":\"WR\",\"stats_global_id\":\"838415\",\"weight\":\"210\",\"id\":\"13645\",\"draft_team\":\"NOS\",\"birthdate\":\"820990800\",\"name\":\"Smith, Tre'Quan\",\"draft_pick\":\"27\",\"college\":\"Central Florida\",\"rotowire_id\":\"12567\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"team\":\"NOS\",\"cbs_id\":\"2142731\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13149\",\"stats_id\":\"31051\",\"position\":\"WR\",\"stats_global_id\":\"912070\",\"weight\":\"205\",\"id\":\"13646\",\"draft_team\":\"DAL\",\"birthdate\":\"825915600\",\"name\":\"Gallup, Michael\",\"draft_pick\":\"17\",\"college\":\"Colorado State\",\"rotowire_id\":\"12810\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"team\":\"DAL\",\"cbs_id\":\"2240415\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13090\",\"stats_id\":\"31198\",\"position\":\"WR\",\"stats_global_id\":\"744883\",\"weight\":\"215\",\"id\":\"13647\",\"draft_team\":\"OAK\",\"birthdate\":\"779691600\",\"name\":\"Ateman, Marcell\",\"draft_pick\":\"10\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12825\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"team\":\"FA\",\"cbs_id\":\"2079176\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13384\",\"stats_id\":\"31624\",\"position\":\"WR\",\"stats_global_id\":\"886740\",\"weight\":\"186\",\"id\":\"13648\",\"draft_team\":\"FA\",\"birthdate\":\"875941200\",\"name\":\"Burnett, Deontay\",\"college\":\"USC\",\"rotowire_id\":\"12602\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"team\":\"PHI\",\"cbs_id\":\"2189487\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13174\",\"stats_id\":\"31083\",\"position\":\"WR\",\"stats_global_id\":\"748755\",\"weight\":\"206\",\"id\":\"13649\",\"draft_team\":\"DEN\",\"birthdate\":\"794811600\",\"name\":\"Hamilton, DaeSean\",\"draft_pick\":\"13\",\"college\":\"Penn State\",\"rotowire_id\":\"12654\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"team\":\"DEN\",\"cbs_id\":\"2079276\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13202\",\"stats_id\":\"31178\",\"position\":\"WR\",\"stats_global_id\":\"912061\",\"weight\":\"200\",\"id\":\"13652\",\"draft_team\":\"DAL\",\"birthdate\":\"816843600\",\"name\":\"Wilson, Cedrick\",\"draft_pick\":\"34\",\"college\":\"Boise State\",\"rotowire_id\":\"12773\",\"height\":\"74\",\"jersey\":\"11\",\"sportsdata_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"team\":\"DAL\",\"cbs_id\":\"2240685\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13363\",\"stats_id\":\"31601\",\"position\":\"WR\",\"stats_global_id\":\"750838\",\"weight\":\"196\",\"id\":\"13653\",\"draft_team\":\"FA\",\"birthdate\":\"768286800\",\"name\":\"Foster, Robert\",\"college\":\"Alabama\",\"rotowire_id\":\"12909\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"team\":\"WAS\",\"cbs_id\":\"2082715\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13749\",\"stats_id\":\"31598\",\"position\":\"WR\",\"stats_global_id\":\"836953\",\"weight\":\"201\",\"id\":\"13655\",\"draft_team\":\"FA\",\"birthdate\":\"819090000\",\"name\":\"Phillips, Cam\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12898\",\"height\":\"72\",\"jersey\":\"87\",\"sportsdata_id\":\"14b0de01-a0f1-491f-86fe-01f83478046d\",\"team\":\"FA\",\"cbs_id\":\"2139174\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13378\",\"stats_id\":\"31592\",\"position\":\"WR\",\"stats_global_id\":\"742410\",\"weight\":\"209\",\"id\":\"13656\",\"draft_team\":\"FA\",\"birthdate\":\"792133200\",\"name\":\"Weah, Jester\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12653\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"team\":\"FA\",\"cbs_id\":\"2071601\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13181\",\"stats_id\":\"31103\",\"position\":\"WR\",\"stats_global_id\":\"744582\",\"weight\":\"205\",\"id\":\"13657\",\"draft_team\":\"GBP\",\"birthdate\":\"801205200\",\"name\":\"Moore, J'Mon\",\"draft_pick\":\"33\",\"college\":\"Missouri\",\"rotowire_id\":\"12811\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"team\":\"FA\",\"cbs_id\":\"2079139\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13273\",\"stats_id\":\"31132\",\"position\":\"WR\",\"stats_global_id\":\"840787\",\"weight\":\"213\",\"id\":\"13658\",\"draft_team\":\"BAL\",\"birthdate\":\"847861200\",\"name\":\"Lasley, Jordan\",\"draft_pick\":\"25\",\"college\":\"UCLA\",\"rotowire_id\":\"12543\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"team\":\"FA\",\"cbs_id\":\"2144822\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13576\",\"stats_id\":\"31391\",\"position\":\"WR\",\"stats_global_id\":\"739435\",\"weight\":\"186\",\"id\":\"13659\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Mitchell, Steven\",\"college\":\"USC\",\"rotowire_id\":\"12951\",\"height\":\"70\",\"jersey\":\"11\",\"sportsdata_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"team\":\"HOU\",\"cbs_id\":\"2925141\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13205\",\"stats_id\":\"31073\",\"position\":\"WR\",\"stats_global_id\":\"882929\",\"weight\":\"187\",\"id\":\"13662\",\"draft_team\":\"HOU\",\"birthdate\":\"853218000\",\"name\":\"Coutee, Keke\",\"draft_pick\":\"3\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12484\",\"height\":\"71\",\"jersey\":\"16\",\"sportsdata_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"team\":\"HOU\",\"cbs_id\":\"2185733\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13254\",\"stats_id\":\"31102\",\"position\":\"WR\",\"stats_global_id\":\"912761\",\"weight\":\"210\",\"id\":\"13663\",\"draft_team\":\"BAL\",\"birthdate\":\"793515600\",\"name\":\"Scott, Jaleel\",\"draft_pick\":\"32\",\"college\":\"New Mexico State\",\"rotowire_id\":\"12776\",\"height\":\"77\",\"jersey\":\"12\",\"sportsdata_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"team\":\"NYJ\",\"cbs_id\":\"2239950\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13213\",\"stats_id\":\"31226\",\"position\":\"WR\",\"stats_global_id\":\"822031\",\"weight\":\"200\",\"id\":\"13664\",\"draft_team\":\"WAS\",\"birthdate\":\"818312400\",\"name\":\"Quinn, Trey\",\"draft_pick\":\"38\",\"college\":\"SMU\",\"rotowire_id\":\"12493\",\"height\":\"72\",\"jersey\":\"14\",\"sportsdata_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"team\":\"FA\",\"cbs_id\":\"2131704\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13222\",\"stats_id\":\"31129\",\"position\":\"WR\",\"stats_global_id\":\"830751\",\"weight\":\"210\",\"id\":\"13666\",\"draft_team\":\"IND\",\"birthdate\":\"819608400\",\"name\":\"Fountain, Daurice\",\"draft_pick\":\"22\",\"college\":\"Northern Iowa\",\"rotowire_id\":\"12672\",\"height\":\"74\",\"jersey\":\"10\",\"sportsdata_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"team\":\"IND\",\"cbs_id\":\"2136930\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13096\",\"stats_id\":\"31031\",\"position\":\"WR\",\"stats_global_id\":\"822008\",\"weight\":\"198\",\"id\":\"13668\",\"draft_team\":\"JAC\",\"birthdate\":\"843454800\",\"name\":\"Chark, D.J.\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"12820\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"team\":\"JAC\",\"cbs_id\":\"2131689\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13906\",\"stats_id\":\"31777\",\"position\":\"WR\",\"stats_global_id\":\"830686\",\"weight\":\"202\",\"id\":\"13669\",\"draft_team\":\"FA\",\"birthdate\":\"822978000\",\"name\":\"Turner, Malik\",\"college\":\"Illinois\",\"rotowire_id\":\"13378\",\"height\":\"74\",\"jersey\":\"17\",\"sportsdata_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"team\":\"DAL\",\"cbs_id\":\"2136527\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13182\",\"stats_id\":\"31056\",\"position\":\"TE\",\"stats_global_id\":\"820699\",\"weight\":\"256\",\"id\":\"13671\",\"draft_team\":\"BAL\",\"birthdate\":\"841986000\",\"name\":\"Andrews, Mark\",\"draft_pick\":\"22\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12559\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"team\":\"BAL\",\"cbs_id\":\"2131121\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13104\",\"stats_id\":\"31012\",\"position\":\"TE\",\"stats_global_id\":\"836152\",\"weight\":\"250\",\"id\":\"13672\",\"draft_team\":\"MIA\",\"birthdate\":\"812696400\",\"name\":\"Gesicki, Mike\",\"draft_pick\":\"10\",\"college\":\"Penn State\",\"rotowire_id\":\"12764\",\"height\":\"78\",\"jersey\":\"88\",\"sportsdata_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"team\":\"MIA\",\"cbs_id\":\"2139298\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13270\",\"stats_id\":\"31126\",\"position\":\"TE\",\"stats_global_id\":\"742474\",\"weight\":\"248\",\"id\":\"13673\",\"draft_team\":\"DEN\",\"birthdate\":\"792997200\",\"name\":\"Fumagalli, Troy\",\"draft_pick\":\"19\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12808\",\"height\":\"78\",\"jersey\":\"84\",\"sportsdata_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"team\":\"DEN\",\"cbs_id\":\"2071777\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13151\",\"stats_id\":\"31019\",\"position\":\"TE\",\"stats_global_id\":\"791365\",\"weight\":\"256\",\"id\":\"13674\",\"draft_team\":\"PHI\",\"birthdate\":\"789109200\",\"name\":\"Goedert, Dallas\",\"draft_pick\":\"17\",\"college\":\"South Dakota State\",\"rotowire_id\":\"12860\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"team\":\"PHI\",\"cbs_id\":\"2132551\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13220\",\"stats_id\":\"31127\",\"position\":\"TE\",\"stats_global_id\":\"861278\",\"weight\":\"254\",\"id\":\"13675\",\"draft_team\":\"MIN\",\"birthdate\":\"807080400\",\"name\":\"Conklin, Tyler\",\"draft_pick\":\"20\",\"college\":\"Central Michigan\",\"rotowire_id\":\"12809\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"team\":\"MIN\",\"cbs_id\":\"2165249\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13249\",\"stats_id\":\"31093\",\"position\":\"TE\",\"stats_global_id\":\"749968\",\"weight\":\"260\",\"id\":\"13676\",\"draft_team\":\"MIA\",\"birthdate\":\"807944400\",\"name\":\"Smythe, Durham\",\"draft_pick\":\"23\",\"college\":\"Notre Dame\",\"rotowire_id\":\"12807\",\"height\":\"78\",\"jersey\":\"81\",\"sportsdata_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"team\":\"MIA\",\"cbs_id\":\"2082845\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13163\",\"stats_id\":\"31071\",\"position\":\"TE\",\"stats_global_id\":\"943093\",\"weight\":\"260\",\"id\":\"13678\",\"draft_team\":\"CAR\",\"birthdate\":\"834037200\",\"name\":\"Thomas, Ian\",\"draft_pick\":\"1\",\"college\":\"Indiana\",\"rotowire_id\":\"12858\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"team\":\"CAR\",\"cbs_id\":\"2253359\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13228\",\"stats_id\":\"31077\",\"position\":\"TE\",\"stats_global_id\":\"832080\",\"weight\":\"253\",\"id\":\"13679\",\"draft_team\":\"NYJ\",\"birthdate\":\"825051600\",\"name\":\"Herndon, Chris\",\"draft_pick\":\"7\",\"college\":\"Miami\",\"rotowire_id\":\"12899\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"team\":\"NYJ\",\"cbs_id\":\"2136463\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13098\",\"stats_id\":\"30995\",\"position\":\"TE\",\"stats_global_id\":\"881956\",\"weight\":\"260\",\"id\":\"13680\",\"draft_team\":\"BAL\",\"birthdate\":\"746168400\",\"name\":\"Hurst, Hayden\",\"draft_pick\":\"25\",\"college\":\"South Carolina\",\"rotowire_id\":\"12467\",\"height\":\"76\",\"jersey\":\"81\",\"sportsdata_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"team\":\"ATL\",\"cbs_id\":\"2185053\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13103\",\"stats_id\":\"30975\",\"position\":\"LB\",\"stats_global_id\":\"832398\",\"weight\":\"275\",\"id\":\"13681\",\"draft_team\":\"DEN\",\"birthdate\":\"835592400\",\"name\":\"Chubb, Bradley\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12877\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"team\":\"DEN\",\"cbs_id\":\"2136439\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13117\",\"stats_id\":\"31057\",\"position\":\"DE\",\"stats_global_id\":\"865568\",\"weight\":\"240\",\"id\":\"13682\",\"draft_team\":\"OAK\",\"birthdate\":\"831099600\",\"name\":\"Key, Arden\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12545\",\"height\":\"77\",\"jersey\":\"99\",\"sportsdata_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"team\":\"LVR\",\"cbs_id\":\"2180628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13176\",\"stats_id\":\"31084\",\"position\":\"DE\",\"stats_global_id\":\"835803\",\"weight\":\"297\",\"id\":\"13683\",\"draft_team\":\"DET\",\"birthdate\":\"816325200\",\"name\":\"Hand, Da'Shawn\",\"draft_pick\":\"14\",\"college\":\"Alabama\",\"rotowire_id\":\"12821\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"team\":\"DET\",\"cbs_id\":\"2139772\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13146\",\"stats_id\":\"31047\",\"position\":\"DE\",\"stats_global_id\":\"836107\",\"weight\":\"265\",\"id\":\"13684\",\"draft_team\":\"CIN\",\"birthdate\":\"804402000\",\"name\":\"Hubbard, Sam\",\"draft_pick\":\"13\",\"college\":\"Ohio State\",\"rotowire_id\":\"12495\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"team\":\"CIN\",\"cbs_id\":\"2139274\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13179\",\"stats_id\":\"31130\",\"position\":\"LB\",\"stats_global_id\":\"747990\",\"weight\":\"253\",\"id\":\"13685\",\"draft_team\":\"LAR\",\"birthdate\":\"798699600\",\"name\":\"Okoronkwo, Ogbonnia\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12788\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13340\",\"stats_id\":\"31214\",\"position\":\"LB\",\"stats_global_id\":\"741797\",\"weight\":\"265\",\"id\":\"13686\",\"draft_team\":\"LAR\",\"birthdate\":\"788158800\",\"name\":\"Lawler, Justin\",\"draft_pick\":\"26\",\"college\":\"SMU\",\"rotowire_id\":\"12716\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"team\":\"LAR\",\"cbs_id\":\"2071901\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13201\",\"stats_id\":\"31034\",\"position\":\"DT\",\"stats_global_id\":\"728325\",\"weight\":\"277\",\"id\":\"13687\",\"draft_team\":\"IND\",\"birthdate\":\"791442000\",\"name\":\"Lewis, Tyquan\",\"draft_pick\":\"32\",\"college\":\"Ohio State\",\"rotowire_id\":\"12800\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"team\":\"IND\",\"cbs_id\":\"2060775\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13141\",\"stats_id\":\"30984\",\"position\":\"DE\",\"stats_global_id\":\"835478\",\"weight\":\"265\",\"id\":\"13688\",\"draft_team\":\"NOS\",\"birthdate\":\"841813200\",\"name\":\"Davenport, Marcus\",\"draft_pick\":\"14\",\"college\":\"Texas-San Antonio\",\"rotowire_id\":\"12863\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"team\":\"NOS\",\"cbs_id\":\"2141036\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13416\",\"stats_id\":\"31235\",\"position\":\"DT\",\"stats_global_id\":\"835935\",\"weight\":\"254\",\"id\":\"13689\",\"draft_team\":\"FA\",\"birthdate\":\"811400400\",\"name\":\"Mata'afa, Hercules\",\"college\":\"Washington State\",\"rotowire_id\":\"12499\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"team\":\"MIN\",\"cbs_id\":\"2139667\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13132\",\"stats_id\":\"31101\",\"position\":\"DE\",\"stats_global_id\":\"867049\",\"weight\":\"251\",\"id\":\"13690\",\"draft_team\":\"PHI\",\"birthdate\":\"859611600\",\"name\":\"Sweat, Josh\",\"draft_pick\":\"30\",\"college\":\"Florida State\",\"rotowire_id\":\"12546\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"team\":\"PHI\",\"cbs_id\":\"2179277\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13097\",\"stats_id\":\"31110\",\"position\":\"DT\",\"stats_global_id\":\"740756\",\"weight\":\"291\",\"id\":\"13691\",\"draft_team\":\"OAK\",\"birthdate\":\"799995600\",\"name\":\"Hurst, Maurice\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"12878\",\"height\":\"73\",\"jersey\":\"73\",\"sportsdata_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"team\":\"LVR\",\"cbs_id\":\"2071721\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13127\",\"stats_id\":\"30982\",\"position\":\"DT\",\"stats_global_id\":\"838183\",\"weight\":\"347\",\"id\":\"13692\",\"draft_team\":\"TBB\",\"birthdate\":\"791960400\",\"name\":\"Vea, Vita\",\"draft_pick\":\"12\",\"college\":\"Washington\",\"rotowire_id\":\"12500\",\"height\":\"76\",\"jersey\":\"50\",\"sportsdata_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"team\":\"TBB\",\"cbs_id\":\"2141907\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13177\",\"stats_id\":\"31066\",\"position\":\"DT\",\"stats_global_id\":\"830522\",\"weight\":\"307\",\"id\":\"13693\",\"draft_team\":\"BUF\",\"birthdate\":\"822546000\",\"name\":\"Phillips, Harrison\",\"draft_pick\":\"32\",\"college\":\"Stanford\",\"rotowire_id\":\"12551\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"team\":\"BUF\",\"cbs_id\":\"2136747\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13171\",\"stats_id\":\"31133\",\"position\":\"DT\",\"stats_global_id\":\"883994\",\"weight\":\"308\",\"id\":\"13694\",\"draft_team\":\"WAS\",\"birthdate\":\"868597200\",\"name\":\"Settle, Tim\",\"draft_pick\":\"26\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12544\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"team\":\"WAS\",\"cbs_id\":\"2186283\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13123\",\"stats_id\":\"30999\",\"position\":\"DT\",\"stats_global_id\":\"820420\",\"weight\":\"291\",\"id\":\"13695\",\"draft_team\":\"JAC\",\"birthdate\":\"826520400\",\"name\":\"Bryan, Taven\",\"draft_pick\":\"29\",\"college\":\"Florida\",\"rotowire_id\":\"12470\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"team\":\"JAC\",\"cbs_id\":\"2131567\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"roquansmith/2560877\",\"rotoworld_id\":\"13113\",\"stats_id\":\"30978\",\"position\":\"LB\",\"stats_global_id\":\"879092\",\"weight\":\"236\",\"id\":\"13696\",\"birthdate\":\"860475600\",\"draft_team\":\"CHI\",\"name\":\"Smith, Roquan\",\"draft_pick\":\"8\",\"college\":\"Georgia\",\"rotowire_id\":\"12644\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"team\":\"CHI\",\"cbs_id\":\"2180472\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13121\",\"stats_id\":\"30986\",\"position\":\"LB\",\"stats_global_id\":\"883981\",\"weight\":\"250\",\"id\":\"13697\",\"draft_team\":\"BUF\",\"birthdate\":\"894085200\",\"name\":\"Edmunds, Tremaine\",\"draft_pick\":\"16\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12612\",\"height\":\"77\",\"jersey\":\"49\",\"sportsdata_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"team\":\"BUF\",\"cbs_id\":\"2186270\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13142\",\"stats_id\":\"31048\",\"position\":\"LB\",\"stats_global_id\":\"867820\",\"weight\":\"241\",\"id\":\"13698\",\"draft_team\":\"CIN\",\"birthdate\":\"848034000\",\"name\":\"Jefferson, Malik\",\"draft_pick\":\"14\",\"college\":\"Texas\",\"rotowire_id\":\"12506\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"team\":\"LAC\",\"cbs_id\":\"2180788\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13126\",\"stats_id\":\"30992\",\"position\":\"LB\",\"stats_global_id\":\"835801\",\"weight\":\"232\",\"id\":\"13699\",\"draft_team\":\"TEN\",\"birthdate\":\"847429200\",\"name\":\"Evans, Rashaan\",\"draft_pick\":\"22\",\"college\":\"Alabama\",\"rotowire_id\":\"12879\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"team\":\"TEN\",\"cbs_id\":\"2139770\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13119\",\"stats_id\":\"31011\",\"position\":\"LB\",\"stats_global_id\":\"824211\",\"weight\":\"252\",\"id\":\"13700\",\"draft_team\":\"TEN\",\"birthdate\":\"833950800\",\"name\":\"Landry, Harold\",\"draft_pick\":\"9\",\"college\":\"Boston College\",\"rotowire_id\":\"12883\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"team\":\"TEN\",\"cbs_id\":\"2130978\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13239\",\"stats_id\":\"31070\",\"position\":\"LB\",\"stats_global_id\":\"733749\",\"weight\":\"220\",\"id\":\"13701\",\"draft_team\":\"KCC\",\"birthdate\":\"778654800\",\"name\":\"O'Daniel, Dorian\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"12847\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"team\":\"KCC\",\"cbs_id\":\"2060414\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13155\",\"stats_id\":\"31076\",\"position\":\"LB\",\"stats_global_id\":\"740719\",\"weight\":\"236\",\"id\":\"13702\",\"draft_team\":\"DEN\",\"birthdate\":\"788331600\",\"name\":\"Jewell, Josey\",\"draft_pick\":\"6\",\"college\":\"Iowa\",\"rotowire_id\":\"12968\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"team\":\"DEN\",\"cbs_id\":\"2071690\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13157\",\"stats_id\":\"31036\",\"position\":\"LB\",\"stats_global_id\":\"837831\",\"weight\":\"255\",\"id\":\"13703\",\"draft_team\":\"NYG\",\"birthdate\":\"818571600\",\"name\":\"Carter, Lorenzo\",\"draft_pick\":\"2\",\"college\":\"Georgia\",\"rotowire_id\":\"12921\",\"height\":\"77\",\"jersey\":\"59\",\"sportsdata_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"team\":\"NYG\",\"cbs_id\":\"2139696\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13185\",\"stats_id\":\"31018\",\"position\":\"LB\",\"stats_global_id\":\"835906\",\"weight\":\"251\",\"id\":\"13704\",\"draft_team\":\"LAC\",\"birthdate\":\"851749200\",\"name\":\"Nwosu, Uchenna\",\"draft_pick\":\"16\",\"college\":\"USC\",\"rotowire_id\":\"12844\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"team\":\"LAC\",\"cbs_id\":\"2139618\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13186\",\"stats_id\":\"31111\",\"position\":\"LB\",\"stats_global_id\":\"746210\",\"weight\":\"227\",\"id\":\"13705\",\"draft_team\":\"SEA\",\"birthdate\":\"806216400\",\"name\":\"Griffin, Shaquem\",\"draft_pick\":\"4\",\"college\":\"UCF\",\"rotowire_id\":\"12829\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"team\":\"SEA\",\"cbs_id\":\"2081098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13225\",\"stats_id\":\"31043\",\"position\":\"LB\",\"stats_global_id\":\"878787\",\"weight\":\"225\",\"id\":\"13706\",\"draft_team\":\"MIA\",\"birthdate\":\"851490000\",\"name\":\"Baker, Jerome\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"12596\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"team\":\"MIA\",\"cbs_id\":\"2179794\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13124\",\"stats_id\":\"30974\",\"position\":\"CB\",\"stats_global_id\":\"878783\",\"weight\":\"190\",\"id\":\"13707\",\"draft_team\":\"CLE\",\"birthdate\":\"862203600\",\"name\":\"Ward, Denzel\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"12572\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"team\":\"CLE\",\"cbs_id\":\"2179829\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13122\",\"stats_id\":\"31015\",\"position\":\"CB\",\"stats_global_id\":\"868032\",\"weight\":\"196\",\"id\":\"13708\",\"draft_team\":\"GBP\",\"birthdate\":\"828507600\",\"name\":\"Jackson, Josh\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"12530\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"team\":\"GBP\",\"cbs_id\":\"2165597\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13135\",\"stats_id\":\"31028\",\"position\":\"CB\",\"stats_global_id\":\"882705\",\"weight\":\"195\",\"id\":\"13709\",\"draft_team\":\"ATL\",\"birthdate\":\"844059600\",\"name\":\"Oliver, Isaiah\",\"draft_pick\":\"26\",\"college\":\"Colorado\",\"rotowire_id\":\"12581\",\"height\":\"73\",\"jersey\":\"26\",\"sportsdata_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"team\":\"ATL\",\"cbs_id\":\"2185537\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13138\",\"stats_id\":\"31033\",\"position\":\"CB\",\"stats_global_id\":\"880536\",\"weight\":\"206\",\"id\":\"13710\",\"draft_team\":\"TBB\",\"birthdate\":\"852008400\",\"name\":\"Davis, Carlton\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"12531\",\"height\":\"73\",\"jersey\":\"24\",\"sportsdata_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"team\":\"TBB\",\"cbs_id\":\"2183962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13385\",\"stats_id\":\"31603\",\"position\":\"CB\",\"stats_global_id\":\"843819\",\"weight\":\"179\",\"id\":\"13711\",\"draft_team\":\"FA\",\"birthdate\":\"802933200\",\"name\":\"Wallace, Levi\",\"college\":\"Alabama\",\"rotowire_id\":\"12843\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"team\":\"BUF\",\"cbs_id\":\"2146458\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13115\",\"stats_id\":\"30981\",\"position\":\"S\",\"stats_global_id\":\"884043\",\"weight\":\"207\",\"id\":\"13713\",\"draft_team\":\"MIA\",\"birthdate\":\"848206800\",\"name\":\"Fitzpatrick, Minkah\",\"draft_pick\":\"11\",\"college\":\"Alabama\",\"rotowire_id\":\"12624\",\"height\":\"73\",\"jersey\":\"39\",\"sportsdata_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"team\":\"PIT\",\"cbs_id\":\"2186316\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13120\",\"stats_id\":\"30987\",\"position\":\"S\",\"stats_global_id\":\"867045\",\"weight\":\"215\",\"id\":\"13714\",\"draft_team\":\"LAC\",\"birthdate\":\"839048400\",\"name\":\"James, Derwin\",\"draft_pick\":\"17\",\"college\":\"Florida State\",\"rotowire_id\":\"12464\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"team\":\"LAC\",\"cbs_id\":\"2179267\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13147\",\"stats_id\":\"31063\",\"position\":\"S\",\"stats_global_id\":\"868088\",\"weight\":\"207\",\"id\":\"13715\",\"draft_team\":\"JAC\",\"birthdate\":\"861339600\",\"name\":\"Harrison, Ronnie\",\"draft_pick\":\"29\",\"college\":\"Alabama\",\"rotowire_id\":\"12625\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"team\":\"CLE\",\"cbs_id\":\"2180568\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"nfl_id\":\"terrelledmunds/2560712\",\"rotoworld_id\":\"13211\",\"stats_id\":\"30998\",\"position\":\"S\",\"stats_global_id\":\"836934\",\"weight\":\"217\",\"id\":\"13716\",\"birthdate\":\"853736400\",\"draft_team\":\"PIT\",\"name\":\"Edmunds, Terrell\",\"draft_pick\":\"28\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12613\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"team\":\"PIT\",\"cbs_id\":\"2139162\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13133\",\"stats_id\":\"31038\",\"position\":\"S\",\"stats_global_id\":\"884954\",\"weight\":\"203\",\"id\":\"13717\",\"draft_team\":\"HOU\",\"birthdate\":\"855982800\",\"name\":\"Reid, Justin\",\"draft_pick\":\"4\",\"college\":\"Stanford\",\"rotowire_id\":\"12606\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"team\":\"HOU\",\"cbs_id\":\"2186838\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13275\",\"stats_id\":\"31137\",\"position\":\"PK\",\"stats_global_id\":\"744439\",\"weight\":\"215\",\"id\":\"13718\",\"draft_team\":\"MIN\",\"birthdate\":\"790837200\",\"name\":\"Carlson, Daniel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"12842\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"team\":\"LVR\",\"cbs_id\":\"2079862\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13655\",\"stats_id\":\"31482\",\"position\":\"PK\",\"stats_global_id\":\"910383\",\"weight\":\"185\",\"id\":\"13719\",\"draft_team\":\"CHI\",\"birthdate\":\"810968400\",\"name\":\"Pineiro, Eddy\",\"college\":\"Florida\",\"rotowire_id\":\"12582\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"team\":\"CHI\",\"cbs_id\":\"2221833\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9486\",\"birthdate\":\"148280400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Patricia, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"a5b8bdfd-9097-4357-b31c-d41462de89c9\",\"id\":\"13721\",\"team\":\"DET\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12507\",\"stats_id\":\"30784\",\"position\":\"TE\",\"stats_global_id\":\"711965\",\"weight\":\"260\",\"id\":\"13722\",\"draft_team\":\"FA\",\"birthdate\":\"774334800\",\"name\":\"Jarwin, Blake\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12179\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"team\":\"DAL\",\"cbs_id\":\"2819999\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13130\",\"stats_id\":\"30983\",\"position\":\"DT\",\"stats_global_id\":\"884053\",\"weight\":\"320\",\"id\":\"13723\",\"draft_team\":\"WAS\",\"birthdate\":\"864709200\",\"name\":\"Payne, Da'Ron\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"12618\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"team\":\"WAS\",\"cbs_id\":\"2186325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13336\",\"stats_id\":\"31210\",\"position\":\"WR\",\"stats_global_id\":\"822644\",\"weight\":\"176\",\"id\":\"13724\",\"draft_team\":\"SFO\",\"birthdate\":\"797058000\",\"name\":\"James, Richie\",\"draft_pick\":\"22\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"12579\",\"height\":\"69\",\"jersey\":\"13\",\"sportsdata_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"team\":\"SFO\",\"cbs_id\":\"2132282\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13255\",\"stats_id\":\"31104\",\"position\":\"RB\",\"stats_global_id\":\"832900\",\"weight\":\"205\",\"id\":\"13726\",\"draft_team\":\"ARI\",\"birthdate\":\"829371600\",\"name\":\"Edmonds, Chase\",\"draft_pick\":\"34\",\"college\":\"Fordham\",\"rotowire_id\":\"12667\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"team\":\"ARI\",\"cbs_id\":\"2137507\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13118\",\"stats_id\":\"30989\",\"position\":\"LB\",\"stats_global_id\":\"838540\",\"weight\":\"255\",\"id\":\"13727\",\"draft_team\":\"DAL\",\"birthdate\":\"855464400\",\"name\":\"Vander Esch, Leighton\",\"draft_pick\":\"19\",\"college\":\"Boise State\",\"rotowire_id\":\"12479\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"team\":\"DAL\",\"cbs_id\":\"2142424\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13125\",\"stats_id\":\"30988\",\"position\":\"CB\",\"stats_global_id\":\"868006\",\"weight\":\"196\",\"id\":\"13730\",\"draft_team\":\"GBP\",\"birthdate\":\"855464400\",\"name\":\"Alexander, Jaire\",\"draft_pick\":\"18\",\"college\":\"Louisville\",\"rotowire_id\":\"12549\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"team\":\"GBP\",\"cbs_id\":\"2181152\"},{\"draft_year\":\"2018\",\"draft_round\":\"1\",\"rotoworld_id\":\"13131\",\"stats_id\":\"31000\",\"position\":\"CB\",\"stats_global_id\":\"866055\",\"weight\":\"308\",\"id\":\"13731\",\"draft_team\":\"MIN\",\"birthdate\":\"824014800\",\"name\":\"Hughes, Mike\",\"draft_pick\":\"30\",\"college\":\"Central Florida\",\"rotowire_id\":\"12590\",\"height\":\"74\",\"jersey\":\"21\",\"sportsdata_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"team\":\"MIN\",\"cbs_id\":\"2179346\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13100\",\"stats_id\":\"30967\",\"position\":\"PN\",\"stats_global_id\":\"784816\",\"weight\":\"213\",\"id\":\"13732\",\"draft_team\":\"FA\",\"birthdate\":\"798267600\",\"name\":\"Wadman, Colby\",\"college\":\"UC Davis\",\"rotowire_id\":\"13419\",\"height\":\"73\",\"jersey\":\"6\",\"sportsdata_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13193\",\"stats_id\":\"31006\",\"position\":\"LB\",\"stats_global_id\":\"786728\",\"weight\":\"230\",\"id\":\"13733\",\"draft_team\":\"IND\",\"birthdate\":\"806821200\",\"name\":\"Leonard, Darius\",\"draft_pick\":\"4\",\"college\":\"South Carolina State\",\"rotowire_id\":\"12845\",\"height\":\"74\",\"jersey\":\"53\",\"sportsdata_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"team\":\"IND\",\"cbs_id\":\"2093164\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13229\",\"stats_id\":\"31016\",\"position\":\"DE\",\"stats_global_id\":\"837941\",\"weight\":\"285\",\"id\":\"13734\",\"draft_team\":\"KCC\",\"birthdate\":\"819262800\",\"name\":\"Speaks, Breeland\",\"draft_pick\":\"14\",\"college\":\"Mississippi\",\"rotowire_id\":\"12585\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"team\":\"FA\",\"cbs_id\":\"2141954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13170\",\"stats_id\":\"31022\",\"position\":\"DE\",\"stats_global_id\":\"746200\",\"weight\":\"248\",\"id\":\"13735\",\"draft_team\":\"IND\",\"birthdate\":\"805438800\",\"name\":\"Turay, Kemoko\",\"draft_pick\":\"20\",\"college\":\"Rutgers\",\"rotowire_id\":\"12799\",\"height\":\"77\",\"jersey\":\"57\",\"sportsdata_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"team\":\"IND\",\"cbs_id\":\"2079025\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13166\",\"stats_id\":\"31023\",\"position\":\"CB\",\"stats_global_id\":\"823096\",\"weight\":\"200\",\"id\":\"13736\",\"draft_team\":\"TBB\",\"birthdate\":\"811227600\",\"name\":\"Stewart, M.J.\",\"draft_pick\":\"21\",\"college\":\"North Carolina\",\"rotowire_id\":\"12836\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"team\":\"CLE\",\"cbs_id\":\"2130954\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13136\",\"stats_id\":\"31024\",\"position\":\"S\",\"stats_global_id\":\"884318\",\"weight\":\"200\",\"id\":\"13737\",\"draft_team\":\"CIN\",\"birthdate\":\"856933200\",\"name\":\"Bates, Jessie\",\"draft_pick\":\"22\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12564\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"team\":\"CIN\",\"cbs_id\":\"2186390\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13144\",\"stats_id\":\"31025\",\"position\":\"CB\",\"stats_global_id\":\"865566\",\"weight\":\"180\",\"id\":\"13738\",\"draft_team\":\"CAR\",\"birthdate\":\"815806800\",\"name\":\"Jackson, Donte\",\"draft_pick\":\"23\",\"college\":\"LSU\",\"rotowire_id\":\"12610\",\"height\":\"70\",\"jersey\":\"26\",\"sportsdata_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"team\":\"CAR\",\"cbs_id\":\"2180625\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13178\",\"stats_id\":\"31026\",\"position\":\"CB\",\"stats_global_id\":\"820421\",\"weight\":\"198\",\"id\":\"13739\",\"draft_team\":\"NEP\",\"birthdate\":\"813560400\",\"name\":\"Dawson, Duke\",\"draft_pick\":\"24\",\"college\":\"Florida\",\"rotowire_id\":\"12782\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"team\":\"DEN\",\"cbs_id\":\"2131568\"},{\"draft_year\":\"2018\",\"draft_round\":\"2\",\"rotoworld_id\":\"13230\",\"stats_id\":\"31027\",\"position\":\"DT\",\"stats_global_id\":\"752315\",\"weight\":\"305\",\"id\":\"13740\",\"draft_team\":\"OAK\",\"birthdate\":\"797058000\",\"name\":\"Hall, P.J.\",\"draft_pick\":\"25\",\"college\":\"Sam Houston State\",\"rotowire_id\":\"12728\",\"height\":\"72\",\"jersey\":\"96\",\"sportsdata_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"team\":\"HOU\",\"cbs_id\":\"2084883\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13232\",\"stats_id\":\"31037\",\"position\":\"DE\",\"stats_global_id\":\"830886\",\"weight\":\"278\",\"id\":\"13741\",\"draft_team\":\"CLE\",\"birthdate\":\"813474000\",\"name\":\"Thomas, Chad\",\"draft_pick\":\"3\",\"college\":\"Miami\",\"rotowire_id\":\"12749\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"team\":\"FA\",\"cbs_id\":\"2136479\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13194\",\"stats_id\":\"31039\",\"position\":\"DE\",\"stats_global_id\":\"820878\",\"weight\":\"310\",\"id\":\"13742\",\"draft_team\":\"NYG\",\"birthdate\":\"798354000\",\"name\":\"Hill, B.J.\",\"draft_pick\":\"5\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12815\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"team\":\"NYG\",\"cbs_id\":\"2146581\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13159\",\"stats_id\":\"31040\",\"position\":\"LB\",\"stats_global_id\":\"839576\",\"weight\":\"230\",\"id\":\"13743\",\"draft_team\":\"SFO\",\"birthdate\":\"848379600\",\"name\":\"Warner, Fred\",\"draft_pick\":\"6\",\"college\":\"BYU\",\"rotowire_id\":\"12769\",\"height\":\"75\",\"jersey\":\"54\",\"sportsdata_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"team\":\"SFO\",\"cbs_id\":\"2142098\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13184\",\"stats_id\":\"31042\",\"position\":\"DE\",\"stats_global_id\":\"1107500\",\"weight\":\"315\",\"id\":\"13744\",\"draft_team\":\"NYJ\",\"birthdate\":\"725864400\",\"name\":\"Shepherd, Nathan\",\"draft_pick\":\"8\",\"college\":\"Fort Hays State\",\"rotowire_id\":\"12814\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"team\":\"NYJ\",\"cbs_id\":\"2913945\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13233\",\"stats_id\":\"31045\",\"position\":\"DT\",\"stats_global_id\":\"835001\",\"weight\":\"312\",\"id\":\"13745\",\"draft_team\":\"KCC\",\"birthdate\":\"831618000\",\"name\":\"Nnadi, Derrick\",\"draft_pick\":\"11\",\"college\":\"Florida State\",\"rotowire_id\":\"12971\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"team\":\"KCC\",\"cbs_id\":\"2138996\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13150\",\"stats_id\":\"31049\",\"position\":\"DE\",\"stats_global_id\":\"880028\",\"weight\":\"279\",\"id\":\"13746\",\"draft_team\":\"SEA\",\"birthdate\":\"863672400\",\"name\":\"Green, Rasheem\",\"draft_pick\":\"15\",\"college\":\"USC\",\"rotowire_id\":\"12632\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"team\":\"SEA\",\"cbs_id\":\"2180323\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13234\",\"stats_id\":\"31052\",\"position\":\"S\",\"stats_global_id\":\"736992\",\"weight\":\"210\",\"id\":\"13747\",\"draft_team\":\"DET\",\"birthdate\":\"791614800\",\"name\":\"Walker, Tracy\",\"draft_pick\":\"18\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"12747\",\"height\":\"73\",\"jersey\":\"21\",\"sportsdata_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"team\":\"DET\",\"cbs_id\":\"2064676\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13235\",\"stats_id\":\"31054\",\"position\":\"DT\",\"stats_global_id\":\"832421\",\"weight\":\"309\",\"id\":\"13748\",\"draft_team\":\"LAC\",\"birthdate\":\"808635600\",\"name\":\"Jones, Justin\",\"draft_pick\":\"20\",\"college\":\"NC State\",\"rotowire_id\":\"12785\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"team\":\"LAC\",\"cbs_id\":\"2146582\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13223\",\"stats_id\":\"31055\",\"position\":\"CB\",\"stats_global_id\":\"829990\",\"weight\":\"200\",\"id\":\"13749\",\"draft_team\":\"CAR\",\"birthdate\":\"790837200\",\"name\":\"Gaulden, Rashaan\",\"draft_pick\":\"21\",\"college\":\"Tennessee\",\"rotowire_id\":\"12550\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"team\":\"FA\",\"cbs_id\":\"2133522\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13227\",\"stats_id\":\"31058\",\"position\":\"LB\",\"stats_global_id\":\"744650\",\"weight\":\"233\",\"id\":\"13750\",\"draft_team\":\"GBP\",\"birthdate\":\"795762000\",\"name\":\"Burks, Oren\",\"draft_pick\":\"24\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"12919\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"team\":\"GBP\",\"cbs_id\":\"2079819\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13203\",\"stats_id\":\"31060\",\"position\":\"DT\",\"stats_global_id\":\"741780\",\"weight\":\"305\",\"id\":\"13751\",\"draft_team\":\"ATL\",\"birthdate\":\"774853200\",\"name\":\"Senat, Deadrin\",\"draft_pick\":\"26\",\"college\":\"South Florida\",\"rotowire_id\":\"12754\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"team\":\"ATL\",\"cbs_id\":\"2072138\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13237\",\"stats_id\":\"31065\",\"position\":\"CB\",\"stats_global_id\":\"914654\",\"weight\":\"200\",\"id\":\"13752\",\"draft_team\":\"SFO\",\"birthdate\":\"840171600\",\"name\":\"Moore, Tarvarius\",\"draft_pick\":\"31\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12985\",\"height\":\"74\",\"jersey\":\"33\",\"sportsdata_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"team\":\"SFO\",\"cbs_id\":\"2240631\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13238\",\"stats_id\":\"31068\",\"position\":\"TE\",\"stats_global_id\":\"838396\",\"weight\":\"243\",\"id\":\"13753\",\"draft_team\":\"HOU\",\"birthdate\":\"703659600\",\"name\":\"Akins, Jordan\",\"draft_pick\":\"34\",\"college\":\"UCF\",\"rotowire_id\":\"12568\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"team\":\"HOU\",\"cbs_id\":\"2142712\"},{\"draft_year\":\"2018\",\"draft_round\":\"3\",\"rotoworld_id\":\"13154\",\"stats_id\":\"31069\",\"position\":\"CB\",\"stats_global_id\":\"824196\",\"weight\":\"190\",\"id\":\"13754\",\"draft_team\":\"DEN\",\"birthdate\":\"824792400\",\"name\":\"Yiadom, Isaac\",\"draft_pick\":\"35\",\"college\":\"Boston College\",\"rotowire_id\":\"12778\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"team\":\"NYG\",\"cbs_id\":\"2130980\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13240\",\"stats_id\":\"31072\",\"position\":\"DT\",\"stats_global_id\":\"836105\",\"weight\":\"283\",\"id\":\"13755\",\"draft_team\":\"MIN\",\"birthdate\":\"822546000\",\"name\":\"Holmes, Jalyn\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"12812\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"team\":\"MIN\",\"cbs_id\":\"2139272\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13241\",\"stats_id\":\"31079\",\"position\":\"S\",\"stats_global_id\":\"836134\",\"weight\":\"205\",\"id\":\"13756\",\"draft_team\":\"WAS\",\"birthdate\":\"797576400\",\"name\":\"Apke, Troy\",\"draft_pick\":\"9\",\"college\":\"Penn State\",\"rotowire_id\":\"12914\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"team\":\"WAS\",\"cbs_id\":\"2139288\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13106\",\"stats_id\":\"31080\",\"position\":\"CB\",\"stats_global_id\":\"834585\",\"weight\":\"205\",\"id\":\"13757\",\"draft_team\":\"OAK\",\"birthdate\":\"845442000\",\"name\":\"Nelson, Nick\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12527\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"team\":\"FA\",\"cbs_id\":\"2139895\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13243\",\"stats_id\":\"31085\",\"position\":\"LB\",\"stats_global_id\":\"835650\",\"weight\":\"230\",\"id\":\"13758\",\"draft_team\":\"CHI\",\"birthdate\":\"813474000\",\"name\":\"Iyiegbuniwe, Joel\",\"draft_pick\":\"15\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"12640\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"team\":\"CHI\",\"cbs_id\":\"2140739\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13195\",\"stats_id\":\"31086\",\"position\":\"DE\",\"stats_global_id\":\"877584\",\"weight\":\"262\",\"id\":\"13759\",\"draft_team\":\"DAL\",\"birthdate\":\"865918800\",\"name\":\"Armstrong, Dorance\",\"draft_pick\":\"16\",\"college\":\"Kansas\",\"rotowire_id\":\"12548\",\"height\":\"76\",\"jersey\":\"92\",\"sportsdata_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"team\":\"DAL\",\"cbs_id\":\"2179534\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13192\",\"stats_id\":\"31087\",\"position\":\"S\",\"stats_global_id\":\"879290\",\"weight\":\"198\",\"id\":\"13760\",\"draft_team\":\"TBB\",\"birthdate\":\"858661200\",\"name\":\"Whitehead, Jordan\",\"draft_pick\":\"17\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12641\",\"height\":\"70\",\"jersey\":\"33\",\"sportsdata_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"team\":\"TBB\",\"cbs_id\":\"2179426\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13244\",\"stats_id\":\"31088\",\"position\":\"CB\",\"stats_global_id\":\"750829\",\"weight\":\"184\",\"id\":\"13761\",\"draft_team\":\"BAL\",\"birthdate\":\"786085200\",\"name\":\"Averett, Anthony\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"12905\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"team\":\"BAL\",\"cbs_id\":\"2082710\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13245\",\"stats_id\":\"31089\",\"position\":\"LB\",\"stats_global_id\":\"919457\",\"weight\":\"218\",\"id\":\"13762\",\"draft_team\":\"LAC\",\"birthdate\":\"827643600\",\"name\":\"White, Kyzir\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"12787\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"team\":\"LAC\",\"cbs_id\":\"2243367\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13246\",\"stats_id\":\"31090\",\"position\":\"TE\",\"stats_global_id\":\"837806\",\"weight\":\"265\",\"id\":\"13763\",\"draft_team\":\"SEA\",\"birthdate\":\"836802000\",\"name\":\"Dissly, Will\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"12986\",\"height\":\"76\",\"jersey\":\"89\",\"sportsdata_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"team\":\"SEA\",\"cbs_id\":\"2139628\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13247\",\"stats_id\":\"31091\",\"position\":\"CB\",\"stats_global_id\":\"830021\",\"weight\":\"192\",\"id\":\"13764\",\"draft_team\":\"BUF\",\"birthdate\":\"838443600\",\"name\":\"Johnson, Taron\",\"draft_pick\":\"21\",\"college\":\"Weber State\",\"rotowire_id\":\"12784\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"team\":\"BUF\",\"cbs_id\":\"2133716\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13248\",\"stats_id\":\"31092\",\"position\":\"LB\",\"stats_global_id\":\"840802\",\"weight\":\"234\",\"id\":\"13765\",\"draft_team\":\"BAL\",\"birthdate\":\"816411600\",\"name\":\"Young, Kenny\",\"draft_pick\":\"22\",\"college\":\"UCLA\",\"rotowire_id\":\"12689\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"team\":\"LAR\",\"cbs_id\":\"2144833\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13250\",\"stats_id\":\"31094\",\"position\":\"S\",\"stats_global_id\":\"835842\",\"weight\":\"205\",\"id\":\"13766\",\"draft_team\":\"KCC\",\"birthdate\":\"827211600\",\"name\":\"Watts, Armani\",\"draft_pick\":\"24\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12781\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"team\":\"KCC\",\"cbs_id\":\"2139881\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13251\",\"stats_id\":\"31095\",\"position\":\"CB\",\"stats_global_id\":\"832463\",\"weight\":\"184\",\"id\":\"13767\",\"draft_team\":\"PHI\",\"birthdate\":\"828248400\",\"name\":\"Maddox, Avonte\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12683\",\"height\":\"69\",\"jersey\":\"29\",\"sportsdata_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"team\":\"PHI\",\"cbs_id\":\"2136493\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13252\",\"stats_id\":\"31096\",\"position\":\"RB\",\"stats_global_id\":\"835082\",\"weight\":\"195\",\"id\":\"13768\",\"draft_team\":\"ATL\",\"birthdate\":\"810795600\",\"name\":\"Smith, Ito\",\"draft_pick\":\"26\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12835\",\"height\":\"69\",\"jersey\":\"25\",\"sportsdata_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"team\":\"ATL\",\"cbs_id\":\"2139965\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13105\",\"stats_id\":\"31098\",\"position\":\"DE\",\"stats_global_id\":\"832247\",\"weight\":\"287\",\"id\":\"13769\",\"draft_team\":\"SFO\",\"birthdate\":\"831531600\",\"name\":\"Street, Kentavius\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"12752\",\"height\":\"74\",\"jersey\":\"95\",\"sportsdata_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"team\":\"SFO\",\"cbs_id\":\"2136453\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13256\",\"stats_id\":\"31105\",\"position\":\"DE\",\"stats_global_id\":\"835955\",\"weight\":\"288\",\"id\":\"13770\",\"draft_team\":\"LAR\",\"birthdate\":\"843714000\",\"name\":\"Franklin-Myers, John\",\"draft_pick\":\"35\",\"college\":\"Stephen F. Austin\",\"rotowire_id\":\"12972\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"team\":\"NYJ\",\"cbs_id\":\"2140474\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13257\",\"stats_id\":\"31106\",\"position\":\"DE\",\"stats_global_id\":\"820651\",\"weight\":\"235\",\"id\":\"13771\",\"draft_team\":\"CAR\",\"birthdate\":\"756018000\",\"name\":\"Haynes, Marquis\",\"draft_pick\":\"36\",\"college\":\"Mississippi\",\"rotowire_id\":\"12841\",\"height\":\"74\",\"jersey\":\"98\",\"sportsdata_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"team\":\"CAR\",\"cbs_id\":\"2131726\"},{\"draft_year\":\"2018\",\"draft_round\":\"4\",\"rotoworld_id\":\"13198\",\"stats_id\":\"31107\",\"position\":\"TE\",\"stats_global_id\":\"830523\",\"weight\":\"260\",\"id\":\"13772\",\"draft_team\":\"DAL\",\"birthdate\":\"837061200\",\"name\":\"Schultz, Dalton\",\"draft_pick\":\"37\",\"college\":\"Stanford\",\"rotowire_id\":\"12514\",\"height\":\"77\",\"jersey\":\"86\",\"sportsdata_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"team\":\"DAL\",\"cbs_id\":\"2136748\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13258\",\"stats_id\":\"31109\",\"position\":\"DE\",\"stats_global_id\":\"871710\",\"weight\":\"293\",\"id\":\"13773\",\"draft_team\":\"NYG\",\"birthdate\":\"833691600\",\"name\":\"McIntosh, RJ\",\"draft_pick\":\"2\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12589\",\"height\":\"77\",\"jersey\":\"90\",\"sportsdata_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"team\":\"NYG\",\"cbs_id\":\"2179396\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13259\",\"stats_id\":\"31112\",\"position\":\"S\",\"stats_global_id\":\"946841\",\"weight\":\"188\",\"id\":\"13774\",\"draft_team\":\"SFO\",\"birthdate\":\"847688400\",\"name\":\"Reed, D.J.\",\"draft_pick\":\"5\",\"college\":\"Kansas State\",\"rotowire_id\":\"12505\",\"height\":\"69\",\"jersey\":\"39\",\"sportsdata_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"team\":\"SEA\",\"cbs_id\":\"2261288\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13260\",\"stats_id\":\"31113\",\"position\":\"LB\",\"stats_global_id\":\"830914\",\"weight\":\"255\",\"id\":\"13775\",\"draft_team\":\"NEP\",\"birthdate\":\"840862800\",\"name\":\"Bentley, Ja'Whaun\",\"draft_pick\":\"6\",\"college\":\"Purdue\",\"rotowire_id\":\"12766\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"team\":\"NEP\",\"cbs_id\":\"2136560\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13208\",\"stats_id\":\"31114\",\"position\":\"WR\",\"stats_global_id\":\"832220\",\"weight\":\"215\",\"id\":\"13776\",\"draft_team\":\"TBB\",\"birthdate\":\"796971600\",\"name\":\"Watson, Justin\",\"draft_pick\":\"7\",\"college\":\"Pennsylvania\",\"rotowire_id\":\"12746\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"team\":\"TBB\",\"cbs_id\":\"2137198\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13261\",\"stats_id\":\"31115\",\"position\":\"DE\",\"stats_global_id\":\"839685\",\"weight\":\"290\",\"id\":\"13777\",\"draft_team\":\"CHI\",\"birthdate\":\"842677200\",\"name\":\"Nichols, Bilal\",\"draft_pick\":\"8\",\"college\":\"Delaware\",\"rotowire_id\":\"12711\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"team\":\"CHI\",\"cbs_id\":\"2142583\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13262\",\"stats_id\":\"31116\",\"position\":\"CB\",\"stats_global_id\":\"744889\",\"weight\":\"203\",\"id\":\"13778\",\"draft_team\":\"SEA\",\"birthdate\":\"802069200\",\"name\":\"Flowers, Tre\",\"draft_pick\":\"9\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12671\",\"height\":\"75\",\"jersey\":\"21\",\"sportsdata_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"team\":\"SEA\",\"cbs_id\":\"2079182\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13263\",\"stats_id\":\"31117\",\"position\":\"LB\",\"stats_global_id\":\"745849\",\"weight\":\"244\",\"id\":\"13779\",\"draft_team\":\"LAR\",\"birthdate\":\"791010000\",\"name\":\"Kiser, Micah\",\"draft_pick\":\"10\",\"college\":\"Virginia\",\"rotowire_id\":\"12846\",\"height\":\"72\",\"jersey\":\"59\",\"sportsdata_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"team\":\"LAR\",\"cbs_id\":\"2078955\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13264\",\"stats_id\":\"31118\",\"position\":\"S\",\"stats_global_id\":\"836130\",\"weight\":\"215\",\"id\":\"13780\",\"draft_team\":\"PIT\",\"birthdate\":\"839394000\",\"name\":\"Allen, Marcus\",\"draft_pick\":\"11\",\"college\":\"Penn State\",\"rotowire_id\":\"12768\",\"height\":\"74\",\"jersey\":\"27\",\"sportsdata_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"team\":\"PIT\",\"cbs_id\":\"2139286\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13183\",\"stats_id\":\"31120\",\"position\":\"LB\",\"stats_global_id\":\"838282\",\"weight\":\"250\",\"id\":\"13781\",\"draft_team\":\"CLE\",\"birthdate\":\"798872400\",\"name\":\"Avery, Genard\",\"draft_pick\":\"13\",\"college\":\"Memphis\",\"rotowire_id\":\"12916\",\"height\":\"72\",\"jersey\":\"58\",\"sportsdata_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"team\":\"PHI\",\"cbs_id\":\"2142208\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13265\",\"stats_id\":\"31119\",\"position\":\"PN\",\"stats_global_id\":\"884283\",\"weight\":\"208\",\"id\":\"13782\",\"draft_team\":\"SEA\",\"birthdate\":\"820731600\",\"name\":\"Dickson, Michael\",\"draft_pick\":\"12\",\"college\":\"Texas\",\"rotowire_id\":\"12481\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13266\",\"stats_id\":\"31121\",\"position\":\"CB\",\"stats_global_id\":\"745203\",\"weight\":\"200\",\"id\":\"13783\",\"draft_team\":\"CIN\",\"birthdate\":\"790664400\",\"name\":\"Harris, Davontae\",\"draft_pick\":\"14\",\"college\":\"Illinois State\",\"rotowire_id\":\"12726\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"team\":\"BAL\",\"cbs_id\":\"2080467\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13267\",\"stats_id\":\"31122\",\"position\":\"S\",\"stats_global_id\":\"886677\",\"weight\":\"209\",\"id\":\"13784\",\"draft_team\":\"TEN\",\"birthdate\":\"798958800\",\"name\":\"Cruikshank, Dane\",\"draft_pick\":\"15\",\"college\":\"Arizona\",\"rotowire_id\":\"12731\",\"height\":\"73\",\"jersey\":\"29\",\"sportsdata_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"team\":\"TEN\",\"cbs_id\":\"2189462\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13268\",\"stats_id\":\"31124\",\"position\":\"S\",\"stats_global_id\":\"750324\",\"weight\":\"206\",\"id\":\"13785\",\"draft_team\":\"BUF\",\"birthdate\":\"775976400\",\"name\":\"Neal, Siran\",\"draft_pick\":\"17\",\"college\":\"Jacksonville State\",\"rotowire_id\":\"12817\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"team\":\"BUF\",\"cbs_id\":\"2083380\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13271\",\"stats_id\":\"31128\",\"position\":\"DT\",\"stats_global_id\":\"820876\",\"weight\":\"290\",\"id\":\"13786\",\"draft_team\":\"CIN\",\"birthdate\":\"820299600\",\"name\":\"Brown, Andrew\",\"draft_pick\":\"21\",\"college\":\"Virginia\",\"rotowire_id\":\"12865\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"team\":\"HOU\",\"cbs_id\":\"2130967\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13272\",\"stats_id\":\"31131\",\"position\":\"LB\",\"stats_global_id\":\"745790\",\"weight\":\"225\",\"id\":\"13787\",\"draft_team\":\"CAR\",\"birthdate\":\"790059600\",\"name\":\"Carter, Jermaine\",\"draft_pick\":\"24\",\"college\":\"Maryland\",\"rotowire_id\":\"12988\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"team\":\"CAR\",\"cbs_id\":\"2078907\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13274\",\"stats_id\":\"31134\",\"position\":\"CB\",\"stats_global_id\":\"836196\",\"weight\":\"201\",\"id\":\"13788\",\"draft_team\":\"NOS\",\"birthdate\":\"819003600\",\"name\":\"Jamerson, Natrell\",\"draft_pick\":\"27\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12722\",\"height\":\"71\",\"jersey\":\"21\",\"sportsdata_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"team\":\"CAR\",\"cbs_id\":\"2139326\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13276\",\"stats_id\":\"31139\",\"position\":\"RB\",\"stats_global_id\":\"749205\",\"weight\":\"216\",\"id\":\"13789\",\"draft_team\":\"IND\",\"birthdate\":\"774507600\",\"name\":\"Wilkins, Jordan\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"12942\",\"height\":\"73\",\"jersey\":\"20\",\"sportsdata_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"team\":\"IND\",\"cbs_id\":\"2079901\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13277\",\"stats_id\":\"31140\",\"position\":\"CB\",\"stats_global_id\":\"732128\",\"weight\":\"190\",\"id\":\"13790\",\"draft_team\":\"CIN\",\"birthdate\":\"804142800\",\"name\":\"Phillips, Darius\",\"draft_pick\":\"33\",\"college\":\"Western Michigan\",\"rotowire_id\":\"12774\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"team\":\"CIN\",\"cbs_id\":\"2061015\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13278\",\"stats_id\":\"31142\",\"position\":\"PN\",\"stats_global_id\":\"835815\",\"weight\":\"208\",\"id\":\"13791\",\"draft_team\":\"GBP\",\"birthdate\":\"815029200\",\"name\":\"Scott, J.K.\",\"draft_pick\":\"35\",\"college\":\"Alabama\",\"rotowire_id\":\"12822\",\"height\":\"78\",\"jersey\":\"6\",\"sportsdata_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"team\":\"GBP\",\"cbs_id\":\"2139783\"},{\"draft_year\":\"2018\",\"draft_round\":\"5\",\"rotoworld_id\":\"13280\",\"stats_id\":\"31144\",\"position\":\"WR\",\"stats_global_id\":\"742382\",\"weight\":\"206\",\"id\":\"13793\",\"draft_team\":\"GBP\",\"birthdate\":\"781765200\",\"name\":\"Valdes-Scantling, Marquez\",\"draft_pick\":\"37\",\"college\":\"South Florida\",\"rotowire_id\":\"12934\",\"height\":\"76\",\"jersey\":\"83\",\"sportsdata_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"team\":\"GBP\",\"cbs_id\":\"2071540\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13281\",\"stats_id\":\"31148\",\"position\":\"WR\",\"stats_global_id\":\"865803\",\"weight\":\"200\",\"id\":\"13794\",\"draft_team\":\"CLE\",\"birthdate\":\"798008400\",\"name\":\"Ratley, Damion\",\"draft_pick\":\"1\",\"college\":\"Texas A&M\",\"rotowire_id\":\"12989\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"team\":\"FA\",\"cbs_id\":\"2180832\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13169\",\"stats_id\":\"31146\",\"position\":\"LB\",\"stats_global_id\":\"740260\",\"weight\":\"255\",\"id\":\"13795\",\"draft_team\":\"HOU\",\"birthdate\":\"798699600\",\"name\":\"Ejiofor, Duke\",\"draft_pick\":\"3\",\"college\":\"Wake Forest\",\"rotowire_id\":\"12933\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"team\":\"HOU\",\"cbs_id\":\"2071549\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13282\",\"stats_id\":\"31147\",\"position\":\"LB\",\"stats_global_id\":\"820618\",\"weight\":\"240\",\"id\":\"13796\",\"draft_team\":\"NEP\",\"birthdate\":\"833691600\",\"name\":\"Sam, Christian\",\"draft_pick\":\"4\",\"college\":\"Arizona State\",\"rotowire_id\":\"12587\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"team\":\"FA\",\"cbs_id\":\"2131494\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13283\",\"stats_id\":\"31149\",\"position\":\"CB\",\"stats_global_id\":\"729559\",\"weight\":\"182\",\"id\":\"13797\",\"draft_team\":\"NYJ\",\"birthdate\":\"781851600\",\"name\":\"Nickerson, Parry\",\"draft_pick\":\"5\",\"college\":\"Tulane\",\"rotowire_id\":\"12958\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"team\":\"GBP\",\"cbs_id\":\"2061674\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13284\",\"stats_id\":\"31150\",\"position\":\"DT\",\"stats_global_id\":\"741451\",\"weight\":\"318\",\"id\":\"13798\",\"draft_team\":\"NYJ\",\"birthdate\":\"794293200\",\"name\":\"Fatukasi, Foley\",\"draft_pick\":\"6\",\"college\":\"Connecticut\",\"rotowire_id\":\"12670\",\"height\":\"76\",\"jersey\":\"94\",\"sportsdata_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"team\":\"NYJ\",\"cbs_id\":\"2071999\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13285\",\"stats_id\":\"31151\",\"position\":\"LB\",\"stats_global_id\":\"732931\",\"weight\":\"260\",\"id\":\"13799\",\"draft_team\":\"CHI\",\"birthdate\":\"781851600\",\"name\":\"Fitts, Kylie\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"12823\",\"height\":\"76\",\"jersey\":\"49\",\"sportsdata_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"team\":\"ARI\",\"cbs_id\":\"2061074\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13287\",\"stats_id\":\"31154\",\"position\":\"S\",\"stats_global_id\":\"737869\",\"weight\":\"215\",\"id\":\"13801\",\"draft_team\":\"SFO\",\"birthdate\":\"834296400\",\"name\":\"Harris, Marcell\",\"draft_pick\":\"10\",\"college\":\"Florida\",\"rotowire_id\":\"12636\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"team\":\"SFO\",\"cbs_id\":\"2065941\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13288\",\"stats_id\":\"31156\",\"position\":\"LB\",\"stats_global_id\":\"838315\",\"weight\":\"242\",\"id\":\"13802\",\"draft_team\":\"SEA\",\"birthdate\":\"818658000\",\"name\":\"Martin, Jake\",\"draft_pick\":\"12\",\"college\":\"Temple\",\"rotowire_id\":\"12990\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"team\":\"HOU\",\"cbs_id\":\"2141626\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13290\",\"stats_id\":\"31158\",\"position\":\"CB\",\"stats_global_id\":\"736989\",\"weight\":\"197\",\"id\":\"13804\",\"draft_team\":\"CLE\",\"birthdate\":\"748674000\",\"name\":\"Thomas, Simeon\",\"draft_pick\":\"14\",\"college\":\"Louisiana\",\"rotowire_id\":\"12991\",\"height\":\"75\",\"jersey\":\"38\",\"sportsdata_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"team\":\"FA\",\"cbs_id\":\"2082589\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13165\",\"stats_id\":\"31160\",\"position\":\"S\",\"stats_global_id\":\"884284\",\"weight\":\"210\",\"id\":\"13806\",\"draft_team\":\"BAL\",\"birthdate\":\"852094800\",\"name\":\"Elliott, DeShon\",\"draft_pick\":\"16\",\"college\":\"Texas\",\"rotowire_id\":\"12459\",\"height\":\"72\",\"jersey\":\"32\",\"sportsdata_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"team\":\"BAL\",\"cbs_id\":\"2186486\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13292\",\"stats_id\":\"31161\",\"position\":\"TE\",\"stats_global_id\":\"748048\",\"weight\":\"226\",\"id\":\"13807\",\"draft_team\":\"LAC\",\"birthdate\":\"772866000\",\"name\":\"Cantrell, Dylan\",\"draft_pick\":\"17\",\"college\":\"Texas Tech\",\"rotowire_id\":\"12920\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"team\":\"FA\",\"cbs_id\":\"2080023\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13294\",\"stats_id\":\"31163\",\"position\":\"LB\",\"stats_global_id\":\"838201\",\"weight\":\"245\",\"id\":\"13808\",\"draft_team\":\"DAL\",\"birthdate\":\"820645200\",\"name\":\"Covington, Chris\",\"draft_pick\":\"19\",\"college\":\"Indiana\",\"rotowire_id\":\"12924\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"team\":\"FA\",\"cbs_id\":\"2141732\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13295\",\"stats_id\":\"31164\",\"position\":\"WR\",\"stats_global_id\":\"822014\",\"weight\":\"184\",\"id\":\"13809\",\"draft_team\":\"ATL\",\"birthdate\":\"822286800\",\"name\":\"Gage, Russell\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"12992\",\"height\":\"72\",\"jersey\":\"83\",\"sportsdata_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"team\":\"ATL\",\"cbs_id\":\"2131694\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13296\",\"stats_id\":\"31165\",\"position\":\"DT\",\"stats_global_id\":\"746185\",\"weight\":\"310\",\"id\":\"13810\",\"draft_team\":\"LAR\",\"birthdate\":\"795762000\",\"name\":\"Joseph-Day, Sebastian\",\"draft_pick\":\"21\",\"college\":\"Rutgers\",\"rotowire_id\":\"12993\",\"height\":\"76\",\"jersey\":\"69\",\"sportsdata_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"team\":\"LAR\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13297\",\"stats_id\":\"31166\",\"position\":\"CB\",\"stats_global_id\":\"843049\",\"weight\":\"190\",\"id\":\"13811\",\"draft_team\":\"KCC\",\"birthdate\":\"837838800\",\"name\":\"Smith, Tremon\",\"draft_pick\":\"22\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"12994\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"team\":\"IND\",\"cbs_id\":\"2161394\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13298\",\"stats_id\":\"31167\",\"position\":\"LB\",\"stats_global_id\":\"824531\",\"weight\":\"235\",\"id\":\"13812\",\"draft_team\":\"WAS\",\"birthdate\":\"810795600\",\"name\":\"Hamilton, Shaun Dion\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"12907\",\"height\":\"72\",\"jersey\":\"51\",\"sportsdata_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"team\":\"WAS\",\"cbs_id\":\"2131648\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13300\",\"stats_id\":\"31170\",\"position\":\"LB\",\"stats_global_id\":\"786943\",\"weight\":\"215\",\"id\":\"13813\",\"draft_team\":\"ATL\",\"birthdate\":\"807339600\",\"name\":\"Oluokun, Foyesade\",\"draft_pick\":\"26\",\"college\":\"Yale\",\"rotowire_id\":\"12995\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"team\":\"ATL\",\"cbs_id\":\"2093154\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13301\",\"stats_id\":\"31171\",\"position\":\"RB\",\"stats_global_id\":\"749635\",\"weight\":\"203\",\"id\":\"13814\",\"draft_team\":\"NOS\",\"birthdate\":\"798958800\",\"name\":\"Scott, Boston\",\"draft_pick\":\"27\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"12996\",\"height\":\"66\",\"jersey\":\"35\",\"sportsdata_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"team\":\"PHI\",\"cbs_id\":\"2079334\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13302\",\"stats_id\":\"31172\",\"position\":\"LB\",\"stats_global_id\":\"742469\",\"weight\":\"238\",\"id\":\"13815\",\"draft_team\":\"TBB\",\"birthdate\":\"799650000\",\"name\":\"Cichy, Jack\",\"draft_pick\":\"28\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12528\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"team\":\"TBB\",\"cbs_id\":\"2071772\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13304\",\"stats_id\":\"31174\",\"position\":\"RB\",\"stats_global_id\":\"1075216\",\"weight\":\"185\",\"id\":\"13816\",\"draft_team\":\"NYJ\",\"birthdate\":\"774939600\",\"name\":\"Cannon, Trenton\",\"draft_pick\":\"30\",\"college\":\"Virginia State\",\"rotowire_id\":\"12997\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"team\":\"CAR\",\"cbs_id\":\"2924426\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13307\",\"stats_id\":\"31179\",\"position\":\"CB\",\"stats_global_id\":\"835063\",\"weight\":\"185\",\"id\":\"13818\",\"draft_team\":\"MIA\",\"birthdate\":\"811746000\",\"name\":\"Armstrong, Cornell\",\"draft_pick\":\"35\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12999\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"team\":\"HOU\",\"cbs_id\":\"2139953\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13309\",\"stats_id\":\"31181\",\"position\":\"TE\",\"stats_global_id\":\"922092\",\"weight\":\"277\",\"id\":\"13819\",\"draft_team\":\"HOU\",\"birthdate\":\"838962000\",\"name\":\"Thomas, Jordan\",\"draft_pick\":\"37\",\"college\":\"Mississippi State\",\"rotowire_id\":\"12697\",\"height\":\"77\",\"jersey\":\"83\",\"sportsdata_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"team\":\"NEP\",\"cbs_id\":\"2249166\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13312\",\"stats_id\":\"31184\",\"position\":\"LB\",\"stats_global_id\":\"739425\",\"weight\":\"254\",\"id\":\"13820\",\"draft_team\":\"HOU\",\"birthdate\":\"804142800\",\"name\":\"Kalambayi, Peter\",\"draft_pick\":\"40\",\"college\":\"Stanford\",\"rotowire_id\":\"12964\",\"height\":\"75\",\"jersey\":\"58\",\"sportsdata_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"team\":\"HOU\",\"cbs_id\":\"2067005\"},{\"draft_year\":\"2018\",\"draft_round\":\"6\",\"rotoworld_id\":\"13315\",\"stats_id\":\"31187\",\"position\":\"LB\",\"stats_global_id\":\"747889\",\"weight\":\"223\",\"id\":\"13822\",\"draft_team\":\"DEN\",\"birthdate\":\"851749200\",\"name\":\"Bierria, Keishawn\",\"draft_pick\":\"43\",\"college\":\"Washington\",\"rotowire_id\":\"12917\",\"height\":\"73\",\"jersey\":\"40\",\"sportsdata_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"team\":\"FA\",\"cbs_id\":\"2079693\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13317\",\"stats_id\":\"31189\",\"position\":\"QB\",\"stats_global_id\":\"728374\",\"weight\":\"220\",\"id\":\"13824\",\"draft_team\":\"NEP\",\"birthdate\":\"774853200\",\"name\":\"Etling, Danny\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"12950\",\"height\":\"75\",\"jersey\":\"1\",\"sportsdata_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"team\":\"FA\",\"cbs_id\":\"2060804\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13318\",\"stats_id\":\"31190\",\"position\":\"QB\",\"stats_global_id\":\"824864\",\"weight\":\"214\",\"id\":\"13825\",\"draft_team\":\"SEA\",\"birthdate\":\"816757200\",\"name\":\"McGough, Alex\",\"draft_pick\":\"2\",\"college\":\"Florida International\",\"rotowire_id\":\"13003\",\"height\":\"75\",\"jersey\":\"2\",\"sportsdata_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"team\":\"FA\",\"cbs_id\":\"2132602\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13319\",\"stats_id\":\"31191\",\"position\":\"LB\",\"stats_global_id\":\"831240\",\"weight\":\"229\",\"id\":\"13826\",\"draft_team\":\"IND\",\"birthdate\":\"818744400\",\"name\":\"Adams, Matthew\",\"draft_pick\":\"3\",\"college\":\"Houston\",\"rotowire_id\":\"13000\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"team\":\"IND\",\"cbs_id\":\"2136752\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13321\",\"stats_id\":\"31193\",\"position\":\"DE\",\"stats_global_id\":\"749160\",\"weight\":\"305\",\"id\":\"13828\",\"draft_team\":\"SFO\",\"birthdate\":\"791442000\",\"name\":\"Taylor, Jullian\",\"draft_pick\":\"5\",\"college\":\"Temple\",\"rotowire_id\":\"13002\",\"height\":\"77\",\"jersey\":\"77\",\"sportsdata_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"team\":\"FA\",\"cbs_id\":\"2079048\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13323\",\"stats_id\":\"31195\",\"position\":\"LB\",\"stats_global_id\":\"820634\",\"weight\":\"252\",\"id\":\"13829\",\"draft_team\":\"MIN\",\"birthdate\":\"813992400\",\"name\":\"Downs, Devante\",\"draft_pick\":\"7\",\"college\":\"California\",\"rotowire_id\":\"13004\",\"height\":\"74\",\"jersey\":\"52\",\"sportsdata_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"team\":\"NYG\",\"cbs_id\":\"2131508\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13326\",\"stats_id\":\"31199\",\"position\":\"PK\",\"stats_global_id\":\"821895\",\"weight\":\"186\",\"id\":\"13832\",\"draft_team\":\"MIA\",\"birthdate\":\"816498000\",\"name\":\"Sanders, Jason\",\"draft_pick\":\"11\",\"college\":\"New Mexico\",\"rotowire_id\":\"13007\",\"height\":\"71\",\"jersey\":\"7\",\"sportsdata_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"team\":\"MIA\",\"cbs_id\":\"2131909\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13327\",\"stats_id\":\"31201\",\"position\":\"LB\",\"stats_global_id\":\"822440\",\"weight\":\"219\",\"id\":\"13833\",\"draft_team\":\"LAR\",\"birthdate\":\"831704400\",\"name\":\"Howard, Travin\",\"draft_pick\":\"13\",\"college\":\"TCU\",\"rotowire_id\":\"13008\",\"height\":\"73\",\"jersey\":\"48\",\"sportsdata_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"team\":\"LAR\",\"cbs_id\":\"2131815\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13328\",\"stats_id\":\"31200\",\"position\":\"LB\",\"stats_global_id\":\"742477\",\"weight\":\"246\",\"id\":\"13834\",\"draft_team\":\"JAC\",\"birthdate\":\"812696400\",\"name\":\"Jacobs, Leon\",\"draft_pick\":\"12\",\"college\":\"Wisconsin\",\"rotowire_id\":\"12723\",\"height\":\"74\",\"jersey\":\"48\",\"sportsdata_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"team\":\"JAC\",\"cbs_id\":\"2071780\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13331\",\"stats_id\":\"31204\",\"position\":\"LB\",\"stats_global_id\":\"866045\",\"weight\":\"240\",\"id\":\"13836\",\"draft_team\":\"CAR\",\"birthdate\":\"861512400\",\"name\":\"Smith, Andre\",\"draft_pick\":\"16\",\"college\":\"North Carolina\",\"rotowire_id\":\"12498\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"team\":\"BUF\",\"cbs_id\":\"2179350\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13332\",\"stats_id\":\"31205\",\"position\":\"LB\",\"stats_global_id\":\"836219\",\"weight\":\"235\",\"id\":\"13837\",\"draft_team\":\"IND\",\"birthdate\":\"836283600\",\"name\":\"Franklin, Zaire\",\"draft_pick\":\"17\",\"college\":\"Syracuse\",\"rotowire_id\":\"13010\",\"height\":\"72\",\"jersey\":\"44\",\"sportsdata_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"team\":\"IND\",\"cbs_id\":\"2139141\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13333\",\"stats_id\":\"31207\",\"position\":\"RB\",\"stats_global_id\":\"823811\",\"weight\":\"245\",\"id\":\"13838\",\"draft_team\":\"DET\",\"birthdate\":\"835419600\",\"name\":\"Bawden, Nick\",\"draft_pick\":\"19\",\"college\":\"San Diego State\",\"rotowire_id\":\"12828\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"team\":\"DET\",\"cbs_id\":\"2131912\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13334\",\"stats_id\":\"31208\",\"position\":\"DE\",\"stats_global_id\":\"1115236\",\"weight\":\"301\",\"id\":\"13839\",\"draft_team\":\"BAL\",\"birthdate\":\"810450000\",\"name\":\"Sieler, Zach\",\"draft_pick\":\"20\",\"college\":\"Ferris State\",\"rotowire_id\":\"13011\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"team\":\"MIA\",\"cbs_id\":\"2924468\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13337\",\"stats_id\":\"31211\",\"position\":\"CB\",\"stats_global_id\":\"836977\",\"weight\":\"182\",\"id\":\"13840\",\"draft_team\":\"WAS\",\"birthdate\":\"826261200\",\"name\":\"Stroman, Greg\",\"draft_pick\":\"23\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12751\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"team\":\"WAS\",\"cbs_id\":\"2139181\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13338\",\"stats_id\":\"31213\",\"position\":\"CB\",\"stats_global_id\":\"834491\",\"weight\":\"185\",\"id\":\"13841\",\"draft_team\":\"NEP\",\"birthdate\":\"829717200\",\"name\":\"Crossen, Keion\",\"draft_pick\":\"25\",\"college\":\"Western Carolina\",\"rotowire_id\":\"13012\",\"height\":\"70\",\"jersey\":\"35\",\"sportsdata_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"team\":\"HOU\",\"cbs_id\":\"2140325\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13343\",\"stats_id\":\"31216\",\"position\":\"PN\",\"stats_global_id\":\"835495\",\"weight\":\"230\",\"id\":\"13844\",\"draft_team\":\"JAC\",\"birthdate\":\"806907600\",\"name\":\"Cooke, Logan\",\"draft_pick\":\"29\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13013\",\"height\":\"77\",\"jersey\":\"9\",\"sportsdata_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"team\":\"JAC\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13348\",\"stats_id\":\"31219\",\"position\":\"QB\",\"stats_global_id\":\"732107\",\"weight\":\"213\",\"id\":\"13846\",\"draft_team\":\"CIN\",\"birthdate\":\"791182800\",\"name\":\"Woodside, Logan\",\"draft_pick\":\"31\",\"college\":\"Toledo\",\"rotowire_id\":\"12949\",\"height\":\"73\",\"jersey\":\"5\",\"sportsdata_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"team\":\"TEN\",\"cbs_id\":\"2060999\"},{\"draft_year\":\"2018\",\"draft_round\":\"7\",\"rotoworld_id\":\"13349\",\"stats_id\":\"31220\",\"position\":\"TE\",\"stats_global_id\":\"834990\",\"weight\":\"255\",\"id\":\"13847\",\"draft_team\":\"NEP\",\"birthdate\":\"819522000\",\"name\":\"Izzo, Ryan\",\"draft_pick\":\"32\",\"college\":\"Florida State\",\"rotowire_id\":\"12529\",\"height\":\"77\",\"jersey\":\"85\",\"sportsdata_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"team\":\"NEP\",\"cbs_id\":\"2138988\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12493\",\"stats_id\":\"30711\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"13848\",\"draft_team\":\"FA\",\"birthdate\":\"698907600\",\"name\":\"Johnston, Cam\",\"college\":\"Ohio State\",\"rotowire_id\":\"11829\",\"height\":\"71\",\"jersey\":\"1\",\"sportsdata_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"team\":\"PHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13796\",\"stats_id\":\"31662\",\"position\":\"RB\",\"stats_global_id\":\"838156\",\"weight\":\"232\",\"id\":\"13849\",\"draft_team\":\"FA\",\"birthdate\":\"820040400\",\"name\":\"Nall, Ryan\",\"college\":\"Oregon State\",\"rotowire_id\":\"12513\",\"height\":\"74\",\"jersey\":\"35\",\"sportsdata_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"team\":\"CHI\",\"cbs_id\":\"2141896\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13606\",\"stats_id\":\"31424\",\"position\":\"RB\",\"stats_global_id\":\"739799\",\"weight\":\"238\",\"id\":\"13850\",\"draft_team\":\"FA\",\"birthdate\":\"797749200\",\"name\":\"Edwards, Gus\",\"college\":\"Rutgers\",\"rotowire_id\":\"13123\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"team\":\"BAL\",\"cbs_id\":\"2925410\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12769\",\"stats_id\":\"30660\",\"position\":\"WR\",\"stats_global_id\":\"696881\",\"weight\":\"216\",\"id\":\"13851\",\"draft_team\":\"FA\",\"birthdate\":\"753598800\",\"name\":\"Hollister, Cody\",\"college\":\"Arkansas\",\"rotowire_id\":\"12926\",\"height\":\"76\",\"jersey\":\"16\",\"sportsdata_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"team\":\"TEN\",\"cbs_id\":\"2818961\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13397\",\"stats_id\":\"31372\",\"position\":\"LB\",\"stats_global_id\":\"744603\",\"weight\":\"225\",\"id\":\"13853\",\"draft_team\":\"FA\",\"birthdate\":\"789541200\",\"name\":\"Moore, Skai\",\"college\":\"South Carolina\",\"rotowire_id\":\"12967\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"team\":\"IND\",\"cbs_id\":\"2079803\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13688\",\"stats_id\":\"31519\",\"position\":\"TE\",\"stats_global_id\":\"750702\",\"weight\":\"255\",\"id\":\"13857\",\"draft_team\":\"FA\",\"birthdate\":\"794466000\",\"name\":\"Yelder, Deon\",\"college\":\"Western Kentucky\",\"rotowire_id\":\"13022\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"team\":\"KCC\",\"cbs_id\":\"2925876\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"13054\",\"stats_id\":\"30955\",\"position\":\"WR\",\"stats_global_id\":\"749681\",\"weight\":\"198\",\"id\":\"13862\",\"draft_team\":\"FA\",\"birthdate\":\"783666000\",\"name\":\"Cracraft, River\",\"college\":\"Washington State\",\"rotowire_id\":\"12447\",\"height\":\"72\",\"jersey\":\"11\",\"sportsdata_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"team\":\"SFO\",\"cbs_id\":\"2890282\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13666\",\"stats_id\":\"31496\",\"position\":\"WR\",\"stats_global_id\":\"913826\",\"weight\":\"203\",\"id\":\"13863\",\"draft_team\":\"FA\",\"birthdate\":\"753512400\",\"name\":\"Pringle, Byron\",\"college\":\"Kansas State\",\"rotowire_id\":\"12504\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"team\":\"KCC\",\"cbs_id\":\"2239646\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12815\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Ward, Greg\",\"college\":\"Houston\",\"stats_global_id\":\"741292\",\"height\":\"71\",\"rotowire_id\":\"11883\",\"jersey\":\"84\",\"weight\":\"190\",\"sportsdata_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"id\":\"13864\",\"team\":\"PHI\",\"cbs_id\":\"2820084\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13884\",\"stats_id\":\"31764\",\"position\":\"CB\",\"stats_global_id\":\"885925\",\"weight\":\"192\",\"id\":\"13866\",\"draft_team\":\"FA\",\"birthdate\":\"841381200\",\"name\":\"Beal, Sam\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13359\",\"height\":\"73\",\"jersey\":\"23\",\"sportsdata_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"team\":\"NYG\",\"cbs_id\":\"2951188\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13438\",\"stats_id\":\"31228\",\"position\":\"RB\",\"stats_global_id\":\"842181\",\"weight\":\"206\",\"id\":\"13868\",\"draft_team\":\"FA\",\"birthdate\":\"804488400\",\"name\":\"Boone, Mike\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13067\",\"height\":\"70\",\"jersey\":\"23\",\"sportsdata_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"team\":\"MIN\",\"cbs_id\":\"2925551\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13857\",\"stats_id\":\"31727\",\"position\":\"PN\",\"stats_global_id\":\"912096\",\"weight\":\"208\",\"id\":\"13869\",\"draft_team\":\"FA\",\"birthdate\":\"842590800\",\"name\":\"Bojorquez, Corey\",\"college\":\"New Mexico\",\"rotowire_id\":\"13323\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"team\":\"BUF\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12748\",\"stats_id\":\"30635\",\"position\":\"LB\",\"stats_global_id\":\"727929\",\"weight\":\"227\",\"id\":\"13870\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Thomas, Ahmad\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12558\",\"height\":\"72\",\"jersey\":\"54\",\"sportsdata_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"team\":\"FA\",\"cbs_id\":\"2819158\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13638\",\"stats_id\":\"31457\",\"position\":\"RB\",\"stats_global_id\":\"821729\",\"weight\":\"202\",\"id\":\"13871\",\"draft_team\":\"FA\",\"birthdate\":\"793774800\",\"name\":\"Hilliard, Dontrell\",\"college\":\"Tulane\",\"rotowire_id\":\"13135\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"team\":\"CLE\",\"cbs_id\":\"2925536\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13613\",\"stats_id\":\"31431\",\"position\":\"QB\",\"stats_global_id\":\"741447\",\"weight\":\"232\",\"id\":\"13873\",\"draft_team\":\"FA\",\"birthdate\":\"781160400\",\"name\":\"Boyle, Tim\",\"college\":\"Eastern Kentucky\",\"rotowire_id\":\"13109\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"team\":\"GBP\",\"cbs_id\":\"2071997\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13476\",\"stats_id\":\"31278\",\"position\":\"RB\",\"stats_global_id\":\"830812\",\"weight\":\"185\",\"id\":\"13874\",\"draft_team\":\"FA\",\"birthdate\":\"817880400\",\"name\":\"Wilson, Shaun\",\"college\":\"Duke\",\"rotowire_id\":\"13070\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"team\":\"FA\",\"cbs_id\":\"2926610\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13603\",\"stats_id\":\"31421\",\"position\":\"PK\",\"stats_global_id\":\"824269\",\"weight\":\"210\",\"id\":\"13877\",\"draft_team\":\"FA\",\"birthdate\":\"763794000\",\"name\":\"Vedvik, Kaare\",\"college\":\"Marshall\",\"rotowire_id\":\"13131\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"team\":\"FA\",\"cbs_id\":\"2132369\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12644\",\"stats_id\":\"30513\",\"position\":\"WR\",\"stats_global_id\":\"695408\",\"weight\":\"181\",\"id\":\"13878\",\"draft_team\":\"FA\",\"birthdate\":\"755672400\",\"name\":\"Board, C.J.\",\"college\":\"Chattanooga\",\"rotowire_id\":\"12443\",\"height\":\"73\",\"jersey\":\"18\",\"sportsdata_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"team\":\"NYG\",\"cbs_id\":\"2818904\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13495\",\"stats_id\":\"31301\",\"position\":\"QB\",\"stats_global_id\":\"822350\",\"weight\":\"210\",\"id\":\"13879\",\"draft_team\":\"FA\",\"birthdate\":\"826261200\",\"name\":\"Allen, Kyle\",\"college\":\"Houston\",\"rotowire_id\":\"12623\",\"height\":\"75\",\"jersey\":\"8\",\"sportsdata_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"team\":\"WAS\",\"cbs_id\":\"2131782\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12972\",\"stats_id\":\"30891\",\"position\":\"TE\",\"stats_global_id\":\"1053627\",\"weight\":\"220\",\"id\":\"13880\",\"draft_team\":\"FA\",\"birthdate\":\"795243600\",\"name\":\"Arnold, Dan\",\"college\":\"Wisconsin-Platteville\",\"rotowire_id\":\"12276\",\"height\":\"78\",\"jersey\":\"85\",\"sportsdata_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"team\":\"ARI\",\"cbs_id\":\"2835170\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13686\",\"stats_id\":\"31517\",\"position\":\"WR\",\"stats_global_id\":\"746244\",\"weight\":\"210\",\"id\":\"13882\",\"draft_team\":\"FA\",\"birthdate\":\"756882000\",\"name\":\"Kirkwood, Keith\",\"college\":\"Temple\",\"rotowire_id\":\"13019\",\"height\":\"75\",\"jersey\":\"19\",\"sportsdata_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"team\":\"CAR\",\"cbs_id\":\"2925874\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13746\",\"stats_id\":\"31588\",\"position\":\"WR\",\"stats_global_id\":\"850603\",\"weight\":\"202\",\"id\":\"13884\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Smith, Vyncint\",\"college\":\"Limestone\",\"rotowire_id\":\"12979\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"team\":\"NYJ\",\"cbs_id\":\"2926495\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13493\",\"stats_id\":\"31299\",\"position\":\"LB\",\"stats_global_id\":\"1115401\",\"weight\":\"232\",\"id\":\"13888\",\"draft_team\":\"FA\",\"birthdate\":\"776408400\",\"name\":\"Gardeck, Dennis\",\"college\":\"Sioux Falls\",\"rotowire_id\":\"13210\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"team\":\"ARI\",\"cbs_id\":\"2926501\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12709\",\"stats_id\":\"30594\",\"position\":\"TE\",\"stats_global_id\":\"690029\",\"weight\":\"246\",\"id\":\"13890\",\"draft_team\":\"FA\",\"birthdate\":\"762411600\",\"name\":\"Croom, Jason\",\"college\":\"Tennessee\",\"rotowire_id\":\"12082\",\"height\":\"77\",\"jersey\":\"80\",\"sportsdata_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"team\":\"FA\",\"cbs_id\":\"2819968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13513\",\"stats_id\":\"31320\",\"position\":\"WR\",\"stats_global_id\":\"835861\",\"weight\":\"205\",\"id\":\"13893\",\"draft_team\":\"FA\",\"birthdate\":\"825310800\",\"name\":\"Sherfield, Trent\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13061\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"team\":\"ARI\",\"cbs_id\":\"2139758\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13589\",\"stats_id\":\"31405\",\"position\":\"WR\",\"stats_global_id\":\"824541\",\"weight\":\"220\",\"id\":\"13895\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Sims, Cam\",\"college\":\"Alabama\",\"rotowire_id\":\"13101\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"team\":\"WAS\",\"cbs_id\":\"2925163\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13705\",\"stats_id\":\"31538\",\"position\":\"PK\",\"stats_global_id\":\"833701\",\"weight\":\"208\",\"id\":\"13898\",\"draft_team\":\"FA\",\"birthdate\":\"775976400\",\"name\":\"Joseph, Greg\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13266\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"team\":\"FA\",\"cbs_id\":\"2926810\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"11586\",\"stats_id\":\"29712\",\"position\":\"PK\",\"stats_global_id\":\"593584\",\"weight\":\"188\",\"id\":\"13900\",\"draft_team\":\"FA\",\"birthdate\":\"719902800\",\"name\":\"Bertolet, Taylor\",\"college\":\"Texas A&M\",\"rotowire_id\":\"11568\",\"height\":\"69\",\"jersey\":\"1\",\"sportsdata_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13359\",\"stats_id\":\"31480\",\"position\":\"LB\",\"stats_global_id\":\"836140\",\"weight\":\"235\",\"id\":\"13906\",\"draft_team\":\"FA\",\"birthdate\":\"827038800\",\"name\":\"Cabinda, Jason\",\"college\":\"Penn State\",\"rotowire_id\":\"12662\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"team\":\"DET\",\"cbs_id\":\"2139293\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13366\",\"stats_id\":\"31579\",\"position\":\"PN\",\"stats_global_id\":\"741261\",\"weight\":\"231\",\"id\":\"13908\",\"draft_team\":\"FA\",\"birthdate\":\"786862800\",\"name\":\"Daniel, Trevor\",\"college\":\"Tennessee\",\"rotowire_id\":\"12925\",\"height\":\"73\",\"jersey\":\"8\",\"sportsdata_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"team\":\"FA\",\"cbs_id\":\"2071843\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"9136\",\"stats_id\":\"27369\",\"position\":\"PK\",\"stats_global_id\":\"462787\",\"weight\":\"190\",\"id\":\"13909\",\"draft_team\":\"FA\",\"birthdate\":\"627627600\",\"name\":\"Maher, Brett\",\"college\":\"Nebraska\",\"rotowire_id\":\"9054\",\"height\":\"72\",\"jersey\":\"2\",\"sportsdata_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"team\":\"FA\",\"cbs_id\":\"1630817\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13782\",\"stats_id\":\"31641\",\"position\":\"WR\",\"stats_global_id\":\"820435\",\"weight\":\"188\",\"id\":\"13910\",\"draft_team\":\"FA\",\"birthdate\":\"842504400\",\"name\":\"Powell, Brandon\",\"college\":\"Florida\",\"rotowire_id\":\"13036\",\"height\":\"68\",\"jersey\":\"15\",\"sportsdata_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"team\":\"ATL\",\"cbs_id\":\"2926490\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13767\",\"stats_id\":\"31623\",\"position\":\"WR\",\"stats_global_id\":\"839009\",\"weight\":\"175\",\"id\":\"13912\",\"draft_team\":\"FA\",\"birthdate\":\"819435600\",\"name\":\"Batson, Cameron\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13206\",\"height\":\"68\",\"jersey\":\"12\",\"sportsdata_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"team\":\"TEN\",\"cbs_id\":\"2926801\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13665\",\"stats_id\":\"31495\",\"position\":\"LB\",\"stats_global_id\":\"844768\",\"weight\":\"235\",\"id\":\"13913\",\"draft_team\":\"FA\",\"birthdate\":\"806821200\",\"name\":\"Niemann, Ben\",\"college\":\"Iowa\",\"rotowire_id\":\"13179\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"team\":\"KCC\",\"cbs_id\":\"2925872\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13462\",\"stats_id\":\"31262\",\"position\":\"CB\",\"stats_global_id\":\"835853\",\"weight\":\"185\",\"id\":\"13914\",\"draft_team\":\"FA\",\"birthdate\":\"826002000\",\"name\":\"Herndon, Tre\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13040\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"team\":\"JAC\",\"cbs_id\":\"2139750\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12487\",\"stats_id\":\"30568\",\"position\":\"LB\",\"stats_global_id\":\"697868\",\"weight\":\"240\",\"id\":\"13915\",\"draft_team\":\"FA\",\"birthdate\":\"758178000\",\"name\":\"Calitro, Austin\",\"college\":\"Villanova\",\"rotowire_id\":\"12232\",\"height\":\"72\",\"jersey\":\"53\",\"sportsdata_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"team\":\"DEN\",\"cbs_id\":\"2818968\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13704\",\"stats_id\":\"31537\",\"position\":\"RB\",\"stats_global_id\":\"833687\",\"weight\":\"218\",\"id\":\"13916\",\"draft_team\":\"FA\",\"birthdate\":\"827902800\",\"name\":\"Howell, Buddy\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13185\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"team\":\"HOU\",\"cbs_id\":\"2926809\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13418\",\"stats_id\":\"31650\",\"position\":\"CB\",\"stats_global_id\":\"835198\",\"weight\":\"198\",\"id\":\"13917\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Jackson, J.C.\",\"college\":\"Maryland\",\"rotowire_id\":\"12578\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"team\":\"NEP\",\"cbs_id\":\"2926578\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13587\",\"stats_id\":\"31402\",\"position\":\"CB\",\"stats_global_id\":\"843510\",\"weight\":\"181\",\"id\":\"13918\",\"draft_team\":\"FA\",\"birthdate\":\"816584400\",\"name\":\"Johnson, Danny\",\"college\":\"Southern University\",\"rotowire_id\":\"12834\",\"height\":\"69\",\"jersey\":\"41\",\"sportsdata_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"team\":\"WAS\",\"cbs_id\":\"2924882\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"12691\",\"stats_id\":\"30571\",\"position\":\"TE\",\"stats_global_id\":\"767297\",\"weight\":\"246\",\"id\":\"13919\",\"draft_team\":\"FA\",\"birthdate\":\"793170000\",\"name\":\"Firkser, Anthony\",\"college\":\"Harvard\",\"rotowire_id\":\"12235\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"team\":\"TEN\",\"cbs_id\":\"2818971\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13488\",\"stats_id\":\"31293\",\"position\":\"CB\",\"stats_global_id\":\"912248\",\"weight\":\"198\",\"id\":\"13920\",\"draft_team\":\"FA\",\"birthdate\":\"832222800\",\"name\":\"Ward, Charvarius\",\"college\":\"Middle Tennessee State\",\"rotowire_id\":\"13257\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"team\":\"KCC\",\"cbs_id\":\"2926483\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12477\",\"stats_id\":\"30626\",\"position\":\"DE\",\"stats_global_id\":\"697313\",\"weight\":\"282\",\"id\":\"13921\",\"draft_team\":\"FA\",\"birthdate\":\"734850000\",\"name\":\"Brown, Fadol\",\"college\":\"Mississippi\",\"rotowire_id\":\"11906\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"team\":\"FA\",\"cbs_id\":\"2005914\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13731\",\"stats_id\":\"31572\",\"position\":\"DT\",\"stats_global_id\":\"741773\",\"weight\":\"296\",\"id\":\"13922\",\"draft_team\":\"FA\",\"birthdate\":\"781506000\",\"name\":\"Hector, Bruce\",\"college\":\"South Florida\",\"rotowire_id\":\"13280\",\"height\":\"74\",\"jersey\":\"62\",\"sportsdata_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"team\":\"CAR\",\"cbs_id\":\"2926582\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13394\",\"stats_id\":\"31484\",\"position\":\"LB\",\"stats_global_id\":\"833394\",\"weight\":\"248\",\"id\":\"13923\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Adeniyi, Ola\",\"college\":\"Toledo\",\"rotowire_id\":\"12574\",\"height\":\"73\",\"jersey\":\"92\",\"sportsdata_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"team\":\"PIT\",\"cbs_id\":\"2925440\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13880\",\"stats_id\":\"31750\",\"position\":\"LB\",\"stats_global_id\":\"748293\",\"weight\":\"237\",\"id\":\"13926\",\"draft_team\":\"FA\",\"birthdate\":\"806475600\",\"name\":\"Board, Chris\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13353\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"team\":\"BAL\",\"cbs_id\":\"2081315\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13431\",\"stats_id\":\"31612\",\"position\":\"DE\",\"stats_global_id\":\"840781\",\"weight\":\"292\",\"id\":\"13927\",\"draft_team\":\"FA\",\"birthdate\":\"815893200\",\"name\":\"Dickerson, Matt\",\"college\":\"UCLA\",\"rotowire_id\":\"12973\",\"height\":\"77\",\"jersey\":\"92\",\"sportsdata_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"team\":\"TEN\",\"cbs_id\":\"2144819\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13507\",\"stats_id\":\"31314\",\"position\":\"CB\",\"stats_global_id\":\"822378\",\"weight\":\"189\",\"id\":\"13928\",\"draft_team\":\"FA\",\"birthdate\":\"771051600\",\"name\":\"Nichols, Deatrick\",\"college\":\"South Florida\",\"rotowire_id\":\"12758\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"team\":\"FA\",\"cbs_id\":\"2926507\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"10446\",\"stats_id\":\"28386\",\"position\":\"DE\",\"stats_global_id\":\"868465\",\"weight\":\"265\",\"id\":\"13929\",\"draft_team\":\"FA\",\"birthdate\":\"703141200\",\"name\":\"Obada, Efe\",\"college\":\"None\",\"rotowire_id\":\"10448\",\"height\":\"78\",\"jersey\":\"94\",\"sportsdata_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"team\":\"CAR\",\"cbs_id\":\"2171885\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13517\",\"stats_id\":\"31324\",\"position\":\"LB\",\"stats_global_id\":\"865971\",\"weight\":\"214\",\"id\":\"13930\",\"draft_team\":\"FA\",\"birthdate\":\"834296400\",\"name\":\"Turner, Zeke\",\"college\":\"Washington\",\"rotowire_id\":\"13222\",\"height\":\"74\",\"jersey\":\"47\",\"sportsdata_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"team\":\"ARI\",\"cbs_id\":\"2926514\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13370\",\"stats_id\":\"31477\",\"position\":\"DT\",\"stats_global_id\":\"835441\",\"weight\":\"310\",\"id\":\"13933\",\"draft_team\":\"FA\",\"birthdate\":\"816757200\",\"name\":\"Ford, Poona\",\"college\":\"Texas\",\"rotowire_id\":\"12492\",\"height\":\"71\",\"jersey\":\"97\",\"sportsdata_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"team\":\"SEA\",\"cbs_id\":\"2925442\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13434\",\"stats_id\":\"31676\",\"position\":\"CB\",\"stats_global_id\":\"728180\",\"weight\":\"197\",\"id\":\"13934\",\"draft_team\":\"FA\",\"birthdate\":\"779000400\",\"name\":\"Facyson, Brandon\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"12669\",\"height\":\"74\",\"jersey\":\"28\",\"sportsdata_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"team\":\"LAC\",\"cbs_id\":\"2060535\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12553\",\"stats_id\":\"30412\",\"position\":\"DT\",\"stats_global_id\":\"835146\",\"weight\":\"295\",\"id\":\"13935\",\"draft_team\":\"FA\",\"birthdate\":\"718952400\",\"name\":\"Lawrence, Devaroe\",\"college\":\"Auburn\",\"rotowire_id\":\"12173\",\"height\":\"74\",\"jersey\":\"99\",\"sportsdata_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"team\":\"WAS\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12883\",\"stats_id\":\"30794\",\"position\":\"CB\",\"stats_global_id\":\"696587\",\"weight\":\"195\",\"id\":\"13936\",\"draft_team\":\"FA\",\"birthdate\":\"751870800\",\"name\":\"Virgin, Dee\",\"college\":\"West Alabama\",\"rotowire_id\":\"12409\",\"height\":\"69\",\"jersey\":\"30\",\"sportsdata_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"team\":\"DET\",\"cbs_id\":\"2820041\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13914\",\"stats_id\":\"31785\",\"position\":\"LB\",\"stats_global_id\":\"740364\",\"weight\":\"239\",\"id\":\"13937\",\"draft_team\":\"FA\",\"birthdate\":\"786344400\",\"name\":\"Crawford, James\",\"college\":\"Illinois\",\"rotowire_id\":\"13386\",\"height\":\"74\",\"jersey\":\"54\",\"sportsdata_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"team\":\"FA\",\"cbs_id\":\"2071661\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13615\",\"stats_id\":\"31433\",\"position\":\"S\",\"stats_global_id\":\"750480\",\"weight\":\"197\",\"id\":\"13938\",\"draft_team\":\"FA\",\"birthdate\":\"791701200\",\"name\":\"Greene, Raven\",\"college\":\"James Madison\",\"rotowire_id\":\"13111\",\"height\":\"71\",\"jersey\":\"24\",\"sportsdata_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"team\":\"GBP\",\"cbs_id\":\"2925419\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13558\",\"stats_id\":\"31373\",\"position\":\"S\",\"stats_global_id\":\"742874\",\"weight\":\"202\",\"id\":\"13939\",\"draft_team\":\"FA\",\"birthdate\":\"752302800\",\"name\":\"Odum, George\",\"college\":\"Central Arkansas\",\"rotowire_id\":\"13094\",\"height\":\"73\",\"jersey\":\"30\",\"sportsdata_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"team\":\"IND\",\"cbs_id\":\"2925156\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12525\",\"stats_id\":\"30373\",\"position\":\"TE\",\"stats_global_id\":\"740704\",\"weight\":\"233\",\"id\":\"13940\",\"draft_team\":\"FA\",\"birthdate\":\"785566800\",\"name\":\"Mundt, Johnny\",\"college\":\"Oregon\",\"rotowire_id\":\"12316\",\"height\":\"76\",\"jersey\":\"82\",\"sportsdata_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"team\":\"LAR\",\"cbs_id\":\"2818622\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13361\",\"stats_id\":\"31526\",\"position\":\"DT\",\"stats_global_id\":\"835752\",\"weight\":\"305\",\"id\":\"13941\",\"draft_team\":\"FA\",\"birthdate\":\"808722000\",\"name\":\"Stallworth, Taylor\",\"college\":\"South Carolina\",\"rotowire_id\":\"13170\",\"height\":\"74\",\"jersey\":\"76\",\"sportsdata_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"team\":\"IND\",\"cbs_id\":\"2139737\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13593\",\"stats_id\":\"31411\",\"position\":\"S\",\"stats_global_id\":\"835499\",\"weight\":\"202\",\"id\":\"13942\",\"draft_team\":\"FA\",\"birthdate\":\"821941200\",\"name\":\"Gray, J.T.\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13106\",\"height\":\"72\",\"jersey\":\"48\",\"sportsdata_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"team\":\"NOS\",\"cbs_id\":\"2139824\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13718\",\"stats_id\":\"31552\",\"position\":\"LB\",\"stats_global_id\":\"834389\",\"weight\":\"230\",\"id\":\"13943\",\"draft_team\":\"FA\",\"birthdate\":\"839998800\",\"name\":\"Davis, Tae\",\"college\":\"Chattanooga\",\"rotowire_id\":\"13276\",\"height\":\"73\",\"jersey\":\"55\",\"sportsdata_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"team\":\"CLE\",\"cbs_id\":\"2140279\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13168\",\"stats_id\":\"31233\",\"position\":\"CB\",\"stats_global_id\":\"884287\",\"weight\":\"196\",\"id\":\"13945\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Hill, Holton\",\"college\":\"Texas\",\"rotowire_id\":\"12462\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"team\":\"MIN\",\"cbs_id\":\"2186489\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13403\",\"stats_id\":\"31667\",\"position\":\"CB\",\"stats_global_id\":\"865534\",\"weight\":\"192\",\"id\":\"13946\",\"draft_team\":\"FA\",\"birthdate\":\"817189200\",\"name\":\"Toliver, Kevin\",\"college\":\"LSU\",\"rotowire_id\":\"12597\",\"height\":\"74\",\"jersey\":\"22\",\"sportsdata_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"team\":\"DEN\",\"cbs_id\":\"2926468\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13673\",\"stats_id\":\"31503\",\"position\":\"LB\",\"stats_global_id\":\"835933\",\"weight\":\"236\",\"id\":\"13952\",\"draft_team\":\"FA\",\"birthdate\":\"843109200\",\"name\":\"Luvu, Frankie\",\"college\":\"Washington State\",\"rotowire_id\":\"13159\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"team\":\"NYJ\",\"cbs_id\":\"2925877\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13514\",\"stats_id\":\"31321\",\"position\":\"CB\",\"stats_global_id\":\"1115407\",\"weight\":\"205\",\"id\":\"13953\",\"draft_team\":\"FA\",\"birthdate\":\"826520400\",\"name\":\"Thomas, Tavierre\",\"college\":\"Ferris State\",\"rotowire_id\":\"13219\",\"height\":\"70\",\"jersey\":\"20\",\"sportsdata_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"team\":\"CLE\",\"cbs_id\":\"2926511\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13760\",\"stats_id\":\"31615\",\"position\":\"LB\",\"stats_global_id\":\"749150\",\"weight\":\"250\",\"id\":\"13954\",\"draft_team\":\"FA\",\"birthdate\":\"812523600\",\"name\":\"Finch, Sharif\",\"college\":\"Temple\",\"rotowire_id\":\"13296\",\"height\":\"76\",\"jersey\":\"56\",\"sportsdata_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"team\":\"FA\",\"cbs_id\":\"2079038\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13788\",\"stats_id\":\"31652\",\"position\":\"S\",\"stats_global_id\":\"837936\",\"weight\":\"200\",\"id\":\"13955\",\"draft_team\":\"FA\",\"birthdate\":\"819003600\",\"name\":\"Moore, A.J.\",\"college\":\"Mississippi\",\"rotowire_id\":\"13189\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"team\":\"HOU\",\"cbs_id\":\"2926814\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13714\",\"stats_id\":\"31548\",\"position\":\"S\",\"stats_global_id\":\"838302\",\"weight\":\"202\",\"id\":\"13956\",\"draft_team\":\"FA\",\"birthdate\":\"830581200\",\"name\":\"Chandler, Sean\",\"college\":\"Temple\",\"rotowire_id\":\"12923\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"team\":\"FA\",\"cbs_id\":\"2141614\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13607\",\"stats_id\":\"31425\",\"position\":\"RB\",\"stats_global_id\":\"887450\",\"weight\":\"214\",\"id\":\"13958\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Turner, De'Lance\",\"college\":\"Alcorn State\",\"rotowire_id\":\"13130\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"team\":\"FA\",\"cbs_id\":\"2925521\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13604\",\"stats_id\":\"31422\",\"position\":\"CB\",\"stats_global_id\":\"838512\",\"weight\":\"187\",\"id\":\"13959\",\"draft_team\":\"FA\",\"birthdate\":\"732171600\",\"name\":\"Williams, Darious\",\"college\":\"UAB\",\"rotowire_id\":\"13132\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"team\":\"LAR\",\"cbs_id\":\"2925522\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13765\",\"stats_id\":\"31620\",\"position\":\"RB\",\"stats_global_id\":\"749064\",\"weight\":\"183\",\"id\":\"13961\",\"draft_team\":\"FA\",\"birthdate\":\"788418000\",\"name\":\"Dawkins, Dalyn\",\"college\":\"Colorado State\",\"rotowire_id\":\"13293\",\"height\":\"67\",\"jersey\":\"28\",\"sportsdata_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"team\":\"FA\",\"cbs_id\":\"2926802\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13899\",\"stats_id\":\"31769\",\"position\":\"WR\",\"stats_global_id\":\"757521\",\"weight\":\"205\",\"id\":\"13963\",\"draft_team\":\"FA\",\"birthdate\":\"789109200\",\"name\":\"Hodge, KhaDarel\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13418\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"team\":\"CLE\",\"cbs_id\":\"2954080\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12625\",\"stats_id\":\"30491\",\"position\":\"CB\",\"stats_global_id\":\"692336\",\"weight\":\"195\",\"id\":\"13964\",\"draft_team\":\"FA\",\"birthdate\":\"766386000\",\"name\":\"Lewis, Ryan\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"12929\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"team\":\"NYG\",\"cbs_id\":\"2820086\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12701\",\"stats_id\":\"30586\",\"position\":\"DT\",\"stats_global_id\":\"694909\",\"weight\":\"345\",\"id\":\"13965\",\"draft_team\":\"FA\",\"birthdate\":\"767854800\",\"name\":\"Tupou, Josh\",\"college\":\"Colorado\",\"rotowire_id\":\"12183\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"team\":\"CIN\",\"cbs_id\":\"2818925\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12684\",\"stats_id\":\"30563\",\"position\":\"QB\",\"stats_global_id\":\"748309\",\"weight\":\"210\",\"id\":\"13968\",\"draft_team\":\"FA\",\"birthdate\":\"795762000\",\"name\":\"Mullens, Nick\",\"college\":\"Southern Miss\",\"rotowire_id\":\"12511\",\"height\":\"73\",\"jersey\":\"4\",\"sportsdata_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"team\":\"SFO\",\"cbs_id\":\"2819104\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13355\",\"stats_id\":\"31671\",\"position\":\"CB\",\"stats_global_id\":\"824527\",\"weight\":\"199\",\"id\":\"13970\",\"draft_team\":\"FA\",\"birthdate\":\"805611600\",\"name\":\"Brown, Tony\",\"college\":\"Alabama\",\"rotowire_id\":\"12906\",\"height\":\"72\",\"jersey\":\"28\",\"sportsdata_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"team\":\"CIN\",\"cbs_id\":\"2131645\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13410\",\"stats_id\":\"31366\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"13980\",\"draft_team\":\"FA\",\"birthdate\":\"806907600\",\"name\":\"Badgley, Mike\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"12775\",\"height\":\"70\",\"jersey\":\"4\",\"sportsdata_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"team\":\"LAC\",\"cbs_id\":\"2925140\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13839\",\"stats_id\":\"31708\",\"position\":\"LB\",\"stats_global_id\":\"821446\",\"weight\":\"229\",\"id\":\"13987\",\"draft_team\":\"FA\",\"birthdate\":\"818917200\",\"name\":\"Spillane, Robert\",\"college\":\"Western Michigan\",\"rotowire_id\":\"13306\",\"height\":\"73\",\"jersey\":\"41\",\"sportsdata_id\":\"3b59e08c-0c3b-42c9-a4e2-9b79103ea715\",\"team\":\"PIT\",\"cbs_id\":\"2926962\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13522\",\"stats_id\":\"31329\",\"position\":\"TE\",\"stats_global_id\":\"752665\",\"weight\":\"235\",\"id\":\"13988\",\"draft_team\":\"FA\",\"birthdate\":\"791096400\",\"name\":\"Dwelley, Ross\",\"college\":\"San Diego\",\"rotowire_id\":\"13030\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"team\":\"SFO\",\"cbs_id\":\"2924888\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13618\",\"stats_id\":\"31436\",\"position\":\"DE\",\"stats_global_id\":\"742455\",\"weight\":\"313\",\"id\":\"13989\",\"draft_team\":\"FA\",\"birthdate\":\"783925200\",\"name\":\"Lancaster, Tyler\",\"college\":\"Northwestern\",\"rotowire_id\":\"13114\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"team\":\"GBP\",\"cbs_id\":\"2925422\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13641\",\"stats_id\":\"31460\",\"position\":\"WR\",\"stats_global_id\":\"752015\",\"weight\":\"205\",\"id\":\"13990\",\"draft_team\":\"FA\",\"birthdate\":\"807858000\",\"name\":\"Scott, Da'Mari\",\"college\":\"Fresno State\",\"rotowire_id\":\"13136\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"team\":\"NYG\",\"cbs_id\":\"2925416\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12737\",\"stats_id\":\"30627\",\"position\":\"TE\",\"stats_global_id\":\"689689\",\"weight\":\"258\",\"id\":\"13994\",\"draft_team\":\"FA\",\"birthdate\":\"768027600\",\"name\":\"Brown, Pharaoh\",\"college\":\"Oregon\",\"rotowire_id\":\"11887\",\"height\":\"78\",\"jersey\":\"86\",\"sportsdata_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"team\":\"HOU\",\"cbs_id\":\"2819155\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13219\",\"stats_id\":\"31555\",\"position\":\"CB\",\"stats_global_id\":\"836155\",\"weight\":\"191\",\"id\":\"13996\",\"draft_team\":\"FA\",\"birthdate\":\"820904400\",\"name\":\"Haley, Grant\",\"college\":\"Penn State\",\"rotowire_id\":\"12675\",\"height\":\"69\",\"jersey\":\"34\",\"sportsdata_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"team\":\"FA\",\"cbs_id\":\"2139300\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13570\",\"stats_id\":\"31386\",\"position\":\"CB\",\"stats_global_id\":\"820541\",\"weight\":\"190\",\"id\":\"13998\",\"draft_team\":\"FA\",\"birthdate\":\"827730000\",\"name\":\"Moseley, Emmanuel\",\"college\":\"Tennessee\",\"rotowire_id\":\"13422\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"team\":\"SFO\",\"cbs_id\":\"2131637\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13677\",\"stats_id\":\"31508\",\"position\":\"WR\",\"stats_global_id\":\"746577\",\"weight\":\"183\",\"id\":\"13999\",\"draft_team\":\"FA\",\"birthdate\":\"770446800\",\"name\":\"Beebe, Chad\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13164\",\"height\":\"70\",\"jersey\":\"12\",\"sportsdata_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"team\":\"MIN\",\"cbs_id\":\"2925891\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13408\",\"stats_id\":\"31634\",\"position\":\"CB\",\"stats_global_id\":\"919491\",\"weight\":\"198\",\"id\":\"14012\",\"draft_team\":\"FA\",\"birthdate\":\"807512400\",\"name\":\"Ford, Mike\",\"college\":\"Southeast Missouri State\",\"rotowire_id\":\"13195\",\"height\":\"72\",\"jersey\":\"38\",\"sportsdata_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"team\":\"DET\",\"cbs_id\":\"2926800\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13423\",\"stats_id\":\"31589\",\"position\":\"CB\",\"stats_global_id\":\"833597\",\"weight\":\"189\",\"id\":\"14013\",\"draft_team\":\"FA\",\"birthdate\":\"839394000\",\"name\":\"Sullivan, Chandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"12832\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"team\":\"GBP\",\"cbs_id\":\"2138011\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13748\",\"stats_id\":\"31597\",\"position\":\"LB\",\"stats_global_id\":\"651030\",\"weight\":\"222\",\"id\":\"14016\",\"draft_team\":\"FA\",\"birthdate\":\"756622800\",\"name\":\"Thompson, Corey\",\"college\":\"LSU\",\"rotowire_id\":\"13232\",\"height\":\"73\",\"jersey\":\"52\",\"sportsdata_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"team\":\"FA\",\"cbs_id\":\"2926781\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13578\",\"stats_id\":\"31394\",\"position\":\"RB\",\"stats_global_id\":\"834195\",\"weight\":\"213\",\"id\":\"14017\",\"draft_team\":\"FA\",\"birthdate\":\"816498000\",\"name\":\"Wilson, Jeffery\",\"college\":\"North Texas\",\"rotowire_id\":\"12932\",\"height\":\"72\",\"jersey\":\"30\",\"sportsdata_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"team\":\"SFO\",\"cbs_id\":\"2925161\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13756\",\"stats_id\":\"31609\",\"position\":\"CB\",\"stats_global_id\":\"821257\",\"weight\":\"203\",\"id\":\"14026\",\"draft_team\":\"FA\",\"birthdate\":\"809586000\",\"name\":\"Kalu, Joshua\",\"college\":\"Nebraska\",\"rotowire_id\":\"12720\",\"height\":\"72\",\"jersey\":\"46\",\"sportsdata_id\":\"ab741f46-d660-48f2-a910-774d0514d2e4\",\"team\":\"TEN\",\"cbs_id\":\"2131098\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13678\",\"stats_id\":\"31509\",\"position\":\"CB\",\"stats_global_id\":\"821181\",\"weight\":\"195\",\"id\":\"14027\",\"draft_team\":\"FA\",\"birthdate\":\"830754000\",\"name\":\"James, Craig\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13181\",\"height\":\"70\",\"jersey\":\"39\",\"sportsdata_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"team\":\"PHI\",\"cbs_id\":\"2925892\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13735\",\"stats_id\":\"31576\",\"position\":\"S\",\"stats_global_id\":\"831671\",\"weight\":\"200\",\"id\":\"14028\",\"draft_team\":\"FA\",\"birthdate\":\"819781200\",\"name\":\"Neal, Ryan\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"13282\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"67c2f38f-b568-4bcf-a40f-750cef707a05\",\"team\":\"SEA\",\"cbs_id\":\"2136964\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13701\",\"stats_id\":\"31534\",\"position\":\"CB\",\"stats_global_id\":\"834674\",\"weight\":\"185\",\"id\":\"14037\",\"draft_team\":\"FA\",\"birthdate\":\"823237200\",\"name\":\"Davis, Jalen\",\"college\":\"Utah State\",\"rotowire_id\":\"13263\",\"height\":\"70\",\"jersey\":\"36\",\"sportsdata_id\":\"57a21028-b3a1-494b-ade8-7e94c7108823\",\"team\":\"CIN\",\"cbs_id\":\"2926535\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13391\",\"stats_id\":\"31647\",\"position\":\"DT\",\"stats_global_id\":\"727711\",\"weight\":\"320\",\"id\":\"14038\",\"draft_team\":\"FA\",\"birthdate\":\"724914000\",\"name\":\"Atkins, John\",\"college\":\"Georgia\",\"rotowire_id\":\"12910\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"team\":\"DET\",\"cbs_id\":\"2061101\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13669\",\"stats_id\":\"31651\",\"position\":\"WR\",\"stats_global_id\":\"835417\",\"weight\":\"206\",\"id\":\"14045\",\"draft_team\":\"FA\",\"birthdate\":\"822805200\",\"name\":\"Lacy, Chris\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"12952\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"team\":\"FA\",\"cbs_id\":\"2139250\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"12165\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"LaFleur, Matt\",\"stats_global_id\":\"0\",\"id\":\"14050\",\"sportsdata_id\":\"8377599d-4d2e-4e47-b006-2270fabcd3fd\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"9495\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Fangio, Vic\",\"stats_global_id\":\"0\",\"id\":\"14052\",\"sportsdata_id\":\"d81be20b-eab0-4698-b455-07c6ae954432\",\"team\":\"DEN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13962\",\"birthdate\":\"421390800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Taylor, Zac\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"d757fce3-3b15-4dc6-9313-612df6439a14\",\"id\":\"14054\",\"team\":\"CIN\"},{\"draft_year\":\"0\",\"rotoworld_id\":\"13050\",\"birthdate\":\"351838800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Flores, Brian\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"5be83f45-64eb-4b60-85a9-214686dcbccf\",\"id\":\"14055\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13950\",\"stats_id\":\"31833\",\"position\":\"QB\",\"stats_global_id\":\"879799\",\"weight\":\"207\",\"id\":\"14056\",\"draft_team\":\"ARI\",\"birthdate\":\"870930000\",\"name\":\"Murray, Kyler\",\"draft_pick\":\"1\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13613\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"team\":\"ARI\",\"cbs_id\":\"2180829\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13992\",\"stats_id\":\"31874\",\"position\":\"QB\",\"stats_global_id\":\"882345\",\"weight\":\"228\",\"id\":\"14057\",\"draft_team\":\"DEN\",\"birthdate\":\"847602000\",\"name\":\"Lock, Drew\",\"draft_pick\":\"10\",\"college\":\"Missouri\",\"rotowire_id\":\"13736\",\"height\":\"76\",\"jersey\":\"3\",\"sportsdata_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"team\":\"DEN\",\"cbs_id\":\"2185479\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13979\",\"stats_id\":\"31847\",\"position\":\"QB\",\"stats_global_id\":\"946582\",\"weight\":\"231\",\"id\":\"14058\",\"draft_team\":\"WAS\",\"birthdate\":\"862635600\",\"name\":\"Haskins, Dwayne\",\"draft_pick\":\"15\",\"college\":\"Ohio State\",\"rotowire_id\":\"13558\",\"height\":\"75\",\"jersey\":\"7\",\"sportsdata_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"team\":\"WAS\",\"cbs_id\":\"2260980\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13963\",\"stats_id\":\"31838\",\"position\":\"QB\",\"stats_global_id\":\"879981\",\"weight\":\"220\",\"id\":\"14059\",\"draft_team\":\"NYG\",\"birthdate\":\"864709200\",\"name\":\"Jones, Daniel\",\"draft_pick\":\"6\",\"college\":\"Duke\",\"rotowire_id\":\"13491\",\"height\":\"77\",\"jersey\":\"8\",\"sportsdata_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"team\":\"NYG\",\"cbs_id\":\"2179245\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14047\",\"stats_id\":\"32415\",\"position\":\"QB\",\"stats_global_id\":\"881048\",\"weight\":\"249\",\"id\":\"14060\",\"draft_team\":\"FA\",\"birthdate\":\"855291600\",\"name\":\"Jackson, Tyree\",\"college\":\"Buffalo\",\"rotowire_id\":\"13551\",\"height\":\"79\",\"jersey\":\"6\",\"sportsdata_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"team\":\"FA\",\"cbs_id\":\"2184377\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14268\",\"stats_id\":\"32029\",\"position\":\"QB\",\"stats_global_id\":\"836164\",\"weight\":\"202\",\"id\":\"14061\",\"draft_team\":\"BAL\",\"birthdate\":\"809154000\",\"name\":\"McSorley, Trace\",\"draft_pick\":\"24\",\"college\":\"Penn State\",\"rotowire_id\":\"13752\",\"height\":\"72\",\"jersey\":\"7\",\"sportsdata_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"team\":\"BAL\",\"cbs_id\":\"2139306\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13977\",\"stats_id\":\"31932\",\"position\":\"QB\",\"stats_global_id\":\"820423\",\"weight\":\"220\",\"id\":\"14062\",\"draft_team\":\"CAR\",\"birthdate\":\"796885200\",\"name\":\"Grier, Will\",\"draft_pick\":\"36\",\"college\":\"West Virginia\",\"rotowire_id\":\"13446\",\"height\":\"73\",\"jersey\":\"7\",\"sportsdata_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"team\":\"CAR\",\"cbs_id\":\"2131571\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13945\",\"stats_id\":\"31965\",\"position\":\"QB\",\"stats_global_id\":\"865868\",\"weight\":\"215\",\"id\":\"14063\",\"draft_team\":\"NEP\",\"birthdate\":\"839480400\",\"name\":\"Stidham, Jarrett\",\"draft_pick\":\"31\",\"college\":\"Auburn\",\"rotowire_id\":\"13438\",\"height\":\"75\",\"jersey\":\"4\",\"sportsdata_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"team\":\"NEP\",\"cbs_id\":\"2180697\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14048\",\"stats_id\":\"31999\",\"position\":\"QB\",\"stats_global_id\":\"830853\",\"weight\":\"222\",\"id\":\"14064\",\"draft_team\":\"PHI\",\"birthdate\":\"819867600\",\"name\":\"Thorson, Clayton\",\"draft_pick\":\"29\",\"college\":\"Northwestern\",\"rotowire_id\":\"13513\",\"height\":\"76\",\"jersey\":\"8\",\"sportsdata_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"team\":\"FA\",\"cbs_id\":\"2136556\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14049\",\"stats_id\":\"32221\",\"position\":\"QB\",\"stats_global_id\":\"866216\",\"weight\":\"202\",\"id\":\"14065\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Rypien, Brett\",\"college\":\"Boise State\",\"rotowire_id\":\"13620\",\"height\":\"74\",\"jersey\":\"4\",\"sportsdata_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"team\":\"DEN\",\"cbs_id\":\"2181392\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14235\",\"stats_id\":\"32010\",\"position\":\"QB\",\"stats_global_id\":\"867303\",\"weight\":\"225\",\"id\":\"14067\",\"draft_team\":\"JAC\",\"birthdate\":\"832222800\",\"name\":\"Minshew, Gardner\",\"draft_pick\":\"5\",\"college\":\"Washington State\",\"rotowire_id\":\"13741\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"team\":\"JAC\",\"cbs_id\":\"2183083\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14046\",\"stats_id\":\"31936\",\"position\":\"QB\",\"stats_global_id\":\"728819\",\"weight\":\"207\",\"id\":\"14068\",\"draft_team\":\"CIN\",\"birthdate\":\"788418000\",\"name\":\"Finley, Ryan\",\"draft_pick\":\"2\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13750\",\"height\":\"76\",\"jersey\":\"5\",\"sportsdata_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"team\":\"CIN\",\"cbs_id\":\"2061727\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14145\",\"stats_id\":\"31998\",\"position\":\"QB\",\"stats_global_id\":\"831007\",\"weight\":\"217\",\"id\":\"14069\",\"draft_team\":\"LAC\",\"birthdate\":\"811141200\",\"name\":\"Stick, Easton\",\"draft_pick\":\"28\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13627\",\"height\":\"73\",\"jersey\":\"2\",\"sportsdata_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"team\":\"LAC\",\"cbs_id\":\"2137911\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14503\",\"stats_id\":\"32272\",\"position\":\"QB\",\"stats_global_id\":\"821297\",\"weight\":\"200\",\"id\":\"14070\",\"draft_team\":\"FA\",\"birthdate\":\"807166800\",\"name\":\"Blough, David\",\"college\":\"Purdue\",\"rotowire_id\":\"13630\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"team\":\"DET\",\"cbs_id\":\"2131261\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13978\",\"stats_id\":\"31905\",\"position\":\"RB\",\"stats_global_id\":\"946739\",\"weight\":\"222\",\"id\":\"14071\",\"draft_team\":\"CHI\",\"birthdate\":\"865659600\",\"name\":\"Montgomery, David\",\"draft_pick\":\"9\",\"college\":\"Iowa State\",\"rotowire_id\":\"13556\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"team\":\"CHI\",\"cbs_id\":\"2261252\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13951\",\"stats_id\":\"31954\",\"position\":\"RB\",\"stats_global_id\":\"920062\",\"weight\":\"224\",\"id\":\"14072\",\"draft_team\":\"PIT\",\"birthdate\":\"888555600\",\"name\":\"Snell, Benny\",\"draft_pick\":\"20\",\"college\":\"Kentucky\",\"rotowire_id\":\"13453\",\"height\":\"70\",\"jersey\":\"24\",\"sportsdata_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"team\":\"PIT\",\"cbs_id\":\"2245150\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14026\",\"stats_id\":\"31856\",\"position\":\"RB\",\"stats_global_id\":\"944416\",\"weight\":\"220\",\"id\":\"14073\",\"draft_team\":\"OAK\",\"birthdate\":\"887173200\",\"name\":\"Jacobs, Josh\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"13582\",\"height\":\"70\",\"jersey\":\"28\",\"sportsdata_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"team\":\"LVR\",\"cbs_id\":\"2257876\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14175\",\"stats_id\":\"32026\",\"position\":\"RB\",\"stats_global_id\":\"884610\",\"weight\":\"212\",\"id\":\"14074\",\"draft_team\":\"GBP\",\"birthdate\":\"852526800\",\"name\":\"Williams, Dexter\",\"draft_pick\":\"21\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13670\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"team\":\"FA\",\"cbs_id\":\"2186678\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14038\",\"stats_id\":\"31919\",\"position\":\"RB\",\"stats_global_id\":\"884014\",\"weight\":\"213\",\"id\":\"14075\",\"draft_team\":\"NEP\",\"birthdate\":\"855637200\",\"name\":\"Harris, Damien\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"13636\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"team\":\"NEP\",\"cbs_id\":\"2186318\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14042\",\"stats_id\":\"32014\",\"position\":\"RB\",\"stats_global_id\":\"910605\",\"weight\":\"206\",\"id\":\"14076\",\"draft_team\":\"CIN\",\"birthdate\":\"877150800\",\"name\":\"Williams, Trayveon\",\"draft_pick\":\"9\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13548\",\"height\":\"68\",\"jersey\":\"32\",\"sportsdata_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"team\":\"CIN\",\"cbs_id\":\"2222046\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14281\",\"stats_id\":\"32050\",\"position\":\"RB\",\"stats_global_id\":\"878778\",\"weight\":\"211\",\"id\":\"14077\",\"draft_team\":\"DAL\",\"birthdate\":\"872485200\",\"name\":\"Weber, Mike\",\"draft_pick\":\"4\",\"college\":\"Ohio State\",\"rotowire_id\":\"13456\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"team\":\"GBP\",\"cbs_id\":\"2179830\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14229\",\"draft_team\":\"FA\",\"stats_id\":\"32508\",\"position\":\"RB\",\"name\":\"Higdon, Karan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"13638\",\"weight\":\"206\",\"sportsdata_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"id\":\"14078\",\"team\":\"FA\",\"cbs_id\":\"2185711\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14040\",\"stats_id\":\"31885\",\"position\":\"RB\",\"stats_global_id\":\"924261\",\"weight\":\"211\",\"id\":\"14079\",\"draft_team\":\"PHI\",\"birthdate\":\"862462800\",\"name\":\"Sanders, Miles\",\"draft_pick\":\"21\",\"college\":\"Penn State\",\"rotowire_id\":\"13521\",\"height\":\"71\",\"jersey\":\"26\",\"sportsdata_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"team\":\"PHI\",\"cbs_id\":\"2251305\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14043\",\"stats_id\":\"31906\",\"position\":\"RB\",\"stats_global_id\":\"916466\",\"weight\":\"203\",\"id\":\"14080\",\"draft_team\":\"BUF\",\"birthdate\":\"873262800\",\"name\":\"Singletary, Devin\",\"draft_pick\":\"10\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13449\",\"height\":\"67\",\"jersey\":\"26\",\"sportsdata_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"team\":\"BUF\",\"cbs_id\":\"2241251\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14044\",\"stats_id\":\"32066\",\"position\":\"RB\",\"stats_global_id\":\"865895\",\"weight\":\"200\",\"id\":\"14081\",\"draft_team\":\"MIA\",\"birthdate\":\"855982800\",\"name\":\"Gaskin, Myles\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13505\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"team\":\"MIA\",\"cbs_id\":\"2180360\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14012\",\"stats_id\":\"31944\",\"position\":\"RB\",\"stats_global_id\":\"884948\",\"weight\":\"200\",\"id\":\"14082\",\"draft_team\":\"WAS\",\"birthdate\":\"868338000\",\"name\":\"Love, Bryce\",\"draft_pick\":\"10\",\"college\":\"Stanford\",\"rotowire_id\":\"13458\",\"height\":\"69\",\"jersey\":\"35\",\"sportsdata_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"team\":\"WAS\",\"cbs_id\":\"2186835\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14272\",\"stats_id\":\"32036\",\"position\":\"RB\",\"stats_global_id\":\"922484\",\"weight\":\"202\",\"id\":\"14083\",\"draft_team\":\"SEA\",\"birthdate\":\"902466000\",\"name\":\"Homer, Travis\",\"draft_pick\":\"31\",\"college\":\"Miami\",\"rotowire_id\":\"13484\",\"height\":\"70\",\"jersey\":\"25\",\"sportsdata_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"team\":\"SEA\",\"cbs_id\":\"2249831\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14301\",\"stats_id\":\"32148\",\"position\":\"RB\",\"stats_global_id\":\"922028\",\"weight\":\"215\",\"id\":\"14084\",\"draft_team\":\"FA\",\"birthdate\":\"880866000\",\"name\":\"Holyfield, Elijah\",\"college\":\"Georgia\",\"rotowire_id\":\"13534\",\"height\":\"70\",\"jersey\":\"21\",\"sportsdata_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"team\":\"PHI\",\"cbs_id\":\"2248620\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14245\",\"stats_id\":\"31960\",\"position\":\"RB\",\"stats_global_id\":\"880398\",\"weight\":\"215\",\"id\":\"14085\",\"draft_team\":\"DAL\",\"birthdate\":\"862376400\",\"name\":\"Pollard, Tony\",\"draft_pick\":\"26\",\"college\":\"Memphis\",\"rotowire_id\":\"13590\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"team\":\"DAL\",\"cbs_id\":\"2184011\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13944\",\"stats_id\":\"31945\",\"position\":\"RB\",\"stats_global_id\":\"923109\",\"weight\":\"200\",\"id\":\"14086\",\"draft_team\":\"BAL\",\"birthdate\":\"879483600\",\"name\":\"Hill, Justice\",\"draft_pick\":\"11\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13427\",\"height\":\"70\",\"jersey\":\"43\",\"sportsdata_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"team\":\"BAL\",\"cbs_id\":\"2250388\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14039\",\"stats_id\":\"31902\",\"position\":\"RB\",\"stats_global_id\":\"914372\",\"weight\":\"208\",\"id\":\"14087\",\"draft_team\":\"LAR\",\"birthdate\":\"871966800\",\"name\":\"Henderson, Darrell\",\"draft_pick\":\"6\",\"college\":\"Memphis\",\"rotowire_id\":\"13450\",\"height\":\"68\",\"jersey\":\"27\",\"sportsdata_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"team\":\"LAR\",\"cbs_id\":\"2240590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14180\",\"stats_id\":\"32043\",\"position\":\"RB\",\"stats_global_id\":\"865896\",\"weight\":\"224\",\"id\":\"14088\",\"draft_team\":\"CIN\",\"birthdate\":\"842504400\",\"name\":\"Anderson, Rodney\",\"draft_pick\":\"38\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13637\",\"height\":\"72\",\"jersey\":\"33\",\"sportsdata_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"team\":\"FA\",\"cbs_id\":\"2179644\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14327\",\"stats_id\":\"32528\",\"position\":\"RB\",\"stats_global_id\":\"822124\",\"weight\":\"212\",\"id\":\"14092\",\"draft_team\":\"FA\",\"birthdate\":\"817534800\",\"name\":\"Moore, Jalin\",\"college\":\"Appalachian State\",\"rotowire_id\":\"13641\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"team\":\"FA\",\"cbs_id\":\"2132335\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14167\",\"stats_id\":\"31972\",\"position\":\"RB\",\"stats_global_id\":\"884791\",\"weight\":\"220\",\"id\":\"14093\",\"draft_team\":\"JAC\",\"birthdate\":\"846651600\",\"name\":\"Armstead, Ryquell\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13473\",\"height\":\"71\",\"jersey\":\"23\",\"sportsdata_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"team\":\"JAC\",\"cbs_id\":\"2186616\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14253\",\"stats_id\":\"31986\",\"position\":\"RB\",\"stats_global_id\":\"879049\",\"weight\":\"210\",\"id\":\"14094\",\"draft_team\":\"CAR\",\"birthdate\":\"805179600\",\"name\":\"Scarlett, Jordan\",\"draft_pick\":\"16\",\"college\":\"Florida\",\"rotowire_id\":\"13510\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"team\":\"FA\",\"cbs_id\":\"2180445\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14262\",\"stats_id\":\"32018\",\"position\":\"RB\",\"stats_global_id\":\"877784\",\"weight\":\"210\",\"id\":\"14095\",\"draft_team\":\"DET\",\"birthdate\":\"874472400\",\"name\":\"Johnson, Ty\",\"draft_pick\":\"13\",\"college\":\"Maryland\",\"rotowire_id\":\"13587\",\"height\":\"70\",\"jersey\":\"31\",\"sportsdata_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"team\":\"NYJ\",\"cbs_id\":\"2179323\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14045\",\"stats_id\":\"32390\",\"position\":\"RB\",\"stats_global_id\":\"866115\",\"weight\":\"225\",\"id\":\"14096\",\"draft_team\":\"FA\",\"birthdate\":\"844232400\",\"name\":\"Ozigbo, Devine\",\"college\":\"Nebraska\",\"rotowire_id\":\"13624\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"team\":\"JAC\",\"cbs_id\":\"2179635\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14251\",\"stats_id\":\"31984\",\"position\":\"RB\",\"stats_global_id\":\"832473\",\"weight\":\"225\",\"id\":\"14097\",\"draft_team\":\"ATL\",\"birthdate\":\"842158800\",\"name\":\"Ollison, Qadree\",\"draft_pick\":\"14\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13494\",\"height\":\"74\",\"jersey\":\"30\",\"sportsdata_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"team\":\"ATL\",\"cbs_id\":\"2136496\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14303\",\"stats_id\":\"32502\",\"position\":\"RB\",\"stats_global_id\":\"920072\",\"weight\":\"225\",\"id\":\"14098\",\"draft_team\":\"FA\",\"birthdate\":\"882766800\",\"name\":\"Crockett, Damarea\",\"college\":\"Missouri\",\"rotowire_id\":\"13559\",\"height\":\"71\",\"jersey\":\"36\",\"sportsdata_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"team\":\"FA\",\"cbs_id\":\"3117269\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14317\",\"stats_id\":\"32279\",\"position\":\"RB\",\"stats_global_id\":\"879279\",\"weight\":\"217\",\"id\":\"14099\",\"draft_team\":\"FA\",\"birthdate\":\"841986000\",\"name\":\"Hall, Darrin\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"13657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"team\":\"FA\",\"cbs_id\":\"3116786\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14055\",\"stats_id\":\"31864\",\"position\":\"WR\",\"stats_global_id\":\"910431\",\"weight\":\"225\",\"id\":\"14101\",\"draft_team\":\"NEP\",\"birthdate\":\"882334800\",\"name\":\"Harry, N'Keal\",\"draft_pick\":\"32\",\"college\":\"Arizona State\",\"rotowire_id\":\"13425\",\"height\":\"76\",\"jersey\":\"15\",\"sportsdata_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"team\":\"NEP\",\"cbs_id\":\"2221807\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13940\",\"stats_id\":\"31896\",\"position\":\"WR\",\"stats_global_id\":\"945633\",\"weight\":\"229\",\"id\":\"14102\",\"draft_team\":\"SEA\",\"birthdate\":\"882075600\",\"name\":\"Metcalf, DK\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13424\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"team\":\"SEA\",\"cbs_id\":\"2260185\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13972\",\"stats_id\":\"31958\",\"position\":\"WR\",\"stats_global_id\":\"914009\",\"weight\":\"199\",\"id\":\"14103\",\"draft_team\":\"CHI\",\"birthdate\":\"837925200\",\"name\":\"Ridley, Riley\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13531\",\"height\":\"73\",\"jersey\":\"88\",\"sportsdata_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"team\":\"CHI\",\"cbs_id\":\"2240214\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13946\",\"stats_id\":\"31883\",\"position\":\"WR\",\"stats_global_id\":\"944826\",\"weight\":\"226\",\"id\":\"14104\",\"draft_team\":\"TEN\",\"birthdate\":\"867646800\",\"name\":\"Brown, A.J.\",\"draft_pick\":\"19\",\"college\":\"Mississippi\",\"rotowire_id\":\"13432\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"team\":\"TEN\",\"cbs_id\":\"2258303\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14010\",\"stats_id\":\"31857\",\"position\":\"WR\",\"stats_global_id\":\"976220\",\"weight\":\"170\",\"id\":\"14105\",\"draft_team\":\"BAL\",\"birthdate\":\"865400400\",\"name\":\"Brown, Marquise\",\"draft_pick\":\"25\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13502\",\"height\":\"69\",\"jersey\":\"15\",\"sportsdata_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"team\":\"BAL\",\"cbs_id\":\"2804128\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13955\",\"stats_id\":\"31935\",\"position\":\"WR\",\"stats_global_id\":\"882776\",\"weight\":\"227\",\"id\":\"14106\",\"draft_team\":\"ARI\",\"birthdate\":\"832222800\",\"name\":\"Butler, Hakeem\",\"draft_pick\":\"1\",\"college\":\"Iowa State\",\"rotowire_id\":\"13564\",\"height\":\"77\",\"jersey\":\"17\",\"sportsdata_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"team\":\"FA\",\"cbs_id\":\"2185654\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13976\",\"stats_id\":\"31889\",\"position\":\"WR\",\"stats_global_id\":\"884921\",\"weight\":\"225\",\"id\":\"14107\",\"draft_team\":\"PHI\",\"birthdate\":\"852008400\",\"name\":\"Arcega-Whiteside, JJ\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13529\",\"height\":\"74\",\"jersey\":\"19\",\"sportsdata_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"team\":\"PHI\",\"cbs_id\":\"2186820\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14061\",\"stats_id\":\"32523\",\"position\":\"WR\",\"stats_global_id\":\"910852\",\"weight\":\"173\",\"id\":\"14108\",\"draft_team\":\"FA\",\"birthdate\":\"896418000\",\"name\":\"Dortch, Greg\",\"college\":\"Wake Forest\",\"rotowire_id\":\"13469\",\"height\":\"67\",\"jersey\":\"2\",\"sportsdata_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"team\":\"FA\",\"cbs_id\":\"2223207\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14121\",\"stats_id\":\"31908\",\"position\":\"WR\",\"stats_global_id\":\"836116\",\"weight\":\"210\",\"id\":\"14109\",\"draft_team\":\"WAS\",\"birthdate\":\"811141200\",\"name\":\"McLaurin, Terry\",\"draft_pick\":\"12\",\"college\":\"Ohio State\",\"rotowire_id\":\"13536\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"team\":\"WAS\",\"cbs_id\":\"2139279\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14313\",\"stats_id\":\"32418\",\"position\":\"WR\",\"stats_global_id\":\"866973\",\"weight\":\"211\",\"id\":\"14110\",\"draft_team\":\"FA\",\"birthdate\":\"833346000\",\"name\":\"Sills, David\",\"college\":\"West Virginia\",\"rotowire_id\":\"13634\",\"height\":\"75\",\"jersey\":\"84\",\"sportsdata_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"team\":\"NYG\",\"cbs_id\":\"2179491\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14356\",\"stats_id\":\"32483\",\"position\":\"WR\",\"stats_global_id\":\"884088\",\"weight\":\"202\",\"id\":\"14111\",\"draft_team\":\"FA\",\"birthdate\":\"863413200\",\"name\":\"Lodge, DaMarkus\",\"college\":\"Mississippi\",\"rotowire_id\":\"13658\",\"height\":\"74\",\"jersey\":\"18\",\"sportsdata_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"team\":\"FA\",\"cbs_id\":\"2186347\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14056\",\"stats_id\":\"31891\",\"position\":\"WR\",\"stats_global_id\":\"836104\",\"weight\":\"208\",\"id\":\"14112\",\"draft_team\":\"IND\",\"birthdate\":\"869029200\",\"name\":\"Campbell, Parris\",\"draft_pick\":\"27\",\"college\":\"Ohio State\",\"rotowire_id\":\"13525\",\"height\":\"72\",\"jersey\":\"15\",\"sportsdata_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"team\":\"IND\",\"cbs_id\":\"2139271\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13973\",\"stats_id\":\"31888\",\"position\":\"WR\",\"stats_global_id\":\"922026\",\"weight\":\"187\",\"id\":\"14113\",\"draft_team\":\"KCC\",\"birthdate\":\"889678800\",\"name\":\"Hardman, Mecole\",\"draft_pick\":\"24\",\"college\":\"Georgia\",\"rotowire_id\":\"13532\",\"height\":\"70\",\"jersey\":\"17\",\"sportsdata_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"team\":\"KCC\",\"cbs_id\":\"2248618\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"13943\",\"stats_id\":\"32038\",\"position\":\"WR\",\"stats_global_id\":\"920809\",\"weight\":\"215\",\"id\":\"14114\",\"draft_team\":\"WAS\",\"birthdate\":\"850626000\",\"name\":\"Harmon, Kelvin\",\"draft_pick\":\"33\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13428\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"team\":\"WAS\",\"cbs_id\":\"2246942\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14132\",\"stats_id\":\"32253\",\"position\":\"WR\",\"stats_global_id\":\"882338\",\"weight\":\"201\",\"id\":\"14115\",\"draft_team\":\"FA\",\"birthdate\":\"864190800\",\"name\":\"Hall, Emanuel\",\"college\":\"Missouri\",\"rotowire_id\":\"13515\",\"height\":\"74\",\"jersey\":\"80\",\"sportsdata_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"team\":\"WAS\",\"cbs_id\":\"2185471\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14060\",\"stats_id\":\"31899\",\"position\":\"WR\",\"stats_global_id\":\"820517\",\"weight\":\"230\",\"id\":\"14116\",\"draft_team\":\"SFO\",\"birthdate\":\"822373200\",\"name\":\"Hurd, Jalen\",\"draft_pick\":\"3\",\"college\":\"Baylor\",\"rotowire_id\":\"13631\",\"height\":\"76\",\"jersey\":\"14\",\"sportsdata_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"team\":\"SFO\",\"cbs_id\":\"2131633\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14690\",\"stats_id\":\"32511\",\"position\":\"WR\",\"stats_global_id\":\"865567\",\"weight\":\"193\",\"id\":\"14117\",\"draft_team\":\"FA\",\"birthdate\":\"821077200\",\"name\":\"Johnson, Tyron\",\"college\":\"Oklahoma State\",\"rotowire_id\":\"13615\",\"height\":\"73\",\"jersey\":\"13\",\"sportsdata_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"team\":\"LAC\",\"cbs_id\":\"2180626\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14314\",\"stats_id\":\"32494\",\"position\":\"WR\",\"stats_global_id\":\"920758\",\"weight\":\"225\",\"id\":\"14118\",\"draft_team\":\"FA\",\"birthdate\":\"892875600\",\"name\":\"Humphrey, Lil'Jordan\",\"college\":\"Texas\",\"rotowire_id\":\"13565\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"team\":\"FA\",\"cbs_id\":\"2246852\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14143\",\"stats_id\":\"32482\",\"position\":\"WR\",\"stats_global_id\":\"945145\",\"weight\":\"209\",\"id\":\"14119\",\"draft_team\":\"FA\",\"birthdate\":\"791355600\",\"name\":\"Johnson, Anthony\",\"college\":\"Buffalo\",\"rotowire_id\":\"13788\",\"height\":\"74\",\"jersey\":\"81\",\"sportsdata_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"team\":\"FA\",\"cbs_id\":\"2258536\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14163\",\"stats_id\":\"31952\",\"position\":\"WR\",\"stats_global_id\":\"877654\",\"weight\":\"216\",\"id\":\"14120\",\"draft_team\":\"SEA\",\"birthdate\":\"857710800\",\"name\":\"Jennings, Gary\",\"draft_pick\":\"18\",\"college\":\"West Virginia\",\"rotowire_id\":\"13635\",\"height\":\"73\",\"jersey\":\"11\",\"sportsdata_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"team\":\"FA\",\"cbs_id\":\"2179483\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14019\",\"stats_id\":\"31894\",\"position\":\"WR\",\"stats_global_id\":\"878911\",\"weight\":\"188\",\"id\":\"14121\",\"draft_team\":\"ARI\",\"birthdate\":\"848293200\",\"name\":\"Isabella, Andy\",\"draft_pick\":\"30\",\"college\":\"Massachusetts\",\"rotowire_id\":\"13612\",\"height\":\"69\",\"jersey\":\"17\",\"sportsdata_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"team\":\"ARI\",\"cbs_id\":\"2182851\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14258\",\"stats_id\":\"32003\",\"position\":\"WR\",\"stats_global_id\":\"880557\",\"weight\":\"194\",\"id\":\"14122\",\"draft_team\":\"NYG\",\"birthdate\":\"853045200\",\"name\":\"Slayton, Darius\",\"draft_pick\":\"33\",\"college\":\"Auburn\",\"rotowire_id\":\"13522\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"team\":\"NYG\",\"cbs_id\":\"2183982\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14062\",\"stats_id\":\"31981\",\"position\":\"WR\",\"stats_global_id\":\"841649\",\"weight\":\"185\",\"id\":\"14123\",\"draft_team\":\"OAK\",\"birthdate\":\"819522000\",\"name\":\"Renfrow, Hunter\",\"draft_pick\":\"11\",\"college\":\"Clemson\",\"rotowire_id\":\"13749\",\"height\":\"70\",\"jersey\":\"13\",\"sportsdata_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"team\":\"LVR\",\"cbs_id\":\"2144726\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14195\",\"stats_id\":\"32006\",\"position\":\"WR\",\"stats_global_id\":\"838443\",\"weight\":\"201\",\"id\":\"14124\",\"draft_team\":\"ARI\",\"birthdate\":\"844837200\",\"name\":\"Johnson, KeeSean\",\"draft_pick\":\"1\",\"college\":\"Fresno State\",\"rotowire_id\":\"13628\",\"height\":\"73\",\"jersey\":\"19\",\"sportsdata_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"team\":\"ARI\",\"cbs_id\":\"2142105\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14013\",\"stats_id\":\"31925\",\"position\":\"WR\",\"stats_global_id\":\"884553\",\"weight\":\"220\",\"id\":\"14125\",\"draft_team\":\"BAL\",\"birthdate\":\"845096400\",\"name\":\"Boykin, Miles\",\"draft_pick\":\"29\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13553\",\"height\":\"76\",\"jersey\":\"80\",\"sportsdata_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"team\":\"BAL\",\"cbs_id\":\"2186656\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14171\",\"stats_id\":\"32447\",\"position\":\"WR\",\"stats_global_id\":\"877244\",\"weight\":\"218\",\"id\":\"14126\",\"draft_team\":\"FA\",\"birthdate\":\"859438800\",\"name\":\"Williams, Preston\",\"college\":\"Colorado State\",\"rotowire_id\":\"13445\",\"height\":\"77\",\"jersey\":\"18\",\"sportsdata_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"team\":\"MIA\",\"cbs_id\":\"3117057\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14220\",\"stats_id\":\"32231\",\"position\":\"WR\",\"stats_global_id\":\"880151\",\"weight\":\"200\",\"id\":\"14127\",\"draft_team\":\"FA\",\"birthdate\":\"847515600\",\"name\":\"Meyers, Jakobi\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13517\",\"height\":\"74\",\"jersey\":\"16\",\"sportsdata_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"team\":\"NEP\",\"cbs_id\":\"2183835\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14135\",\"stats_id\":\"32071\",\"position\":\"WR\",\"stats_global_id\":\"910570\",\"weight\":\"202\",\"id\":\"14129\",\"draft_team\":\"MIN\",\"birthdate\":\"863758800\",\"name\":\"Mitchell, Dillon\",\"draft_pick\":\"25\",\"college\":\"Oregon\",\"rotowire_id\":\"13501\",\"height\":\"73\",\"jersey\":\"17\",\"sportsdata_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"team\":\"FA\",\"cbs_id\":\"2221967\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14329\",\"stats_id\":\"32317\",\"position\":\"WR\",\"stats_global_id\":\"924946\",\"weight\":\"206\",\"id\":\"14130\",\"draft_team\":\"FA\",\"birthdate\":\"877496400\",\"name\":\"Wesley, Antoine\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13447\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"team\":\"BAL\",\"cbs_id\":\"2252278\"},{\"draft_year\":\"2019\",\"birthdate\":\"873608400\",\"draft_team\":\"FA\",\"stats_id\":\"32469\",\"position\":\"WR\",\"name\":\"Morgan, Stanley\",\"college\":\"Nebraska\",\"stats_global_id\":\"866112\",\"height\":\"72\",\"rotowire_id\":\"13877\",\"jersey\":\"8\",\"weight\":\"205\",\"sportsdata_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"id\":\"14131\",\"team\":\"CIN\",\"cbs_id\":\"2179632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14337\",\"stats_id\":\"32355\",\"position\":\"WR\",\"stats_global_id\":\"836211\",\"weight\":\"213\",\"id\":\"14132\",\"draft_team\":\"FA\",\"birthdate\":\"815634000\",\"name\":\"Custis, Jamal\",\"college\":\"Syracuse\",\"rotowire_id\":\"13621\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"8535bd19-f47b-4dad-a041-8daec77ab9ad\",\"team\":\"FA\",\"cbs_id\":\"2139136\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14333\",\"stats_id\":\"32504\",\"position\":\"WR\",\"stats_global_id\":\"821285\",\"weight\":\"198\",\"id\":\"14134\",\"draft_team\":\"FA\",\"birthdate\":\"779691600\",\"name\":\"Dixon, Johnnie\",\"college\":\"Ohio State\",\"rotowire_id\":\"13592\",\"height\":\"71\",\"jersey\":\"18\",\"sportsdata_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"team\":\"FA\",\"cbs_id\":\"2131248\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14059\",\"stats_id\":\"31868\",\"position\":\"WR\",\"stats_global_id\":\"835749\",\"weight\":\"215\",\"id\":\"14136\",\"draft_team\":\"SFO\",\"birthdate\":\"821682000\",\"name\":\"Samuel, Deebo\",\"draft_pick\":\"4\",\"college\":\"South Carolina\",\"rotowire_id\":\"13429\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"team\":\"SFO\",\"cbs_id\":\"2139735\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14050\",\"stats_id\":\"31852\",\"position\":\"TE\",\"stats_global_id\":\"923911\",\"weight\":\"249\",\"id\":\"14137\",\"draft_team\":\"DEN\",\"birthdate\":\"880002000\",\"name\":\"Fant, Noah\",\"draft_pick\":\"20\",\"college\":\"Iowa\",\"rotowire_id\":\"13426\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"team\":\"DEN\",\"cbs_id\":\"2251095\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14051\",\"stats_id\":\"31840\",\"position\":\"TE\",\"stats_global_id\":\"923915\",\"weight\":\"247\",\"id\":\"14138\",\"draft_team\":\"DET\",\"birthdate\":\"867906000\",\"name\":\"Hockenson, T.J.\",\"draft_pick\":\"8\",\"college\":\"Iowa\",\"rotowire_id\":\"13610\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"team\":\"DET\",\"cbs_id\":\"2251097\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"13975\",\"stats_id\":\"32063\",\"position\":\"TE\",\"stats_global_id\":\"884573\",\"weight\":\"249\",\"id\":\"14139\",\"draft_team\":\"NOS\",\"birthdate\":\"859611600\",\"name\":\"Mack, Alize\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13527\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"team\":\"FA\",\"cbs_id\":\"2186666\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14097\",\"stats_id\":\"31907\",\"position\":\"TE\",\"stats_global_id\":\"877598\",\"weight\":\"251\",\"id\":\"14140\",\"draft_team\":\"GBP\",\"birthdate\":\"835765200\",\"name\":\"Sternberger, Jace\",\"draft_pick\":\"11\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13495\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"team\":\"GBP\",\"cbs_id\":\"2179567\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14052\",\"stats_id\":\"31882\",\"position\":\"TE\",\"stats_global_id\":\"944428\",\"weight\":\"242\",\"id\":\"14141\",\"draft_team\":\"MIN\",\"birthdate\":\"902638800\",\"name\":\"Smith Jr., Irv\",\"draft_pick\":\"18\",\"college\":\"Alabama\",\"rotowire_id\":\"13583\",\"height\":\"74\",\"jersey\":\"84\",\"sportsdata_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"team\":\"MIN\",\"cbs_id\":\"2257888\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14217\",\"stats_id\":\"32008\",\"position\":\"TE\",\"stats_global_id\":\"924018\",\"weight\":\"249\",\"id\":\"14142\",\"draft_team\":\"SFO\",\"birthdate\":\"861858000\",\"name\":\"Smith, Kaden\",\"draft_pick\":\"3\",\"college\":\"Stanford\",\"rotowire_id\":\"13516\",\"height\":\"77\",\"jersey\":\"82\",\"sportsdata_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"team\":\"NYG\",\"cbs_id\":\"2251343\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13953\",\"stats_id\":\"31928\",\"position\":\"TE\",\"stats_global_id\":\"884083\",\"weight\":\"254\",\"id\":\"14143\",\"draft_team\":\"BUF\",\"birthdate\":\"847947600\",\"name\":\"Knox, Dawson\",\"draft_pick\":\"32\",\"college\":\"Mississippi\",\"rotowire_id\":\"13466\",\"height\":\"76\",\"jersey\":\"88\",\"sportsdata_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"team\":\"BUF\",\"cbs_id\":\"2186345\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14285\",\"stats_id\":\"32056\",\"position\":\"TE\",\"stats_global_id\":\"914008\",\"weight\":\"246\",\"id\":\"14144\",\"draft_team\":\"DET\",\"birthdate\":\"864190800\",\"name\":\"Nauta, Isaac\",\"draft_pick\":\"10\",\"college\":\"Georgia\",\"rotowire_id\":\"13528\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"team\":\"DET\",\"cbs_id\":\"2240213\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14054\",\"stats_id\":\"32086\",\"position\":\"TE\",\"stats_global_id\":\"924062\",\"weight\":\"240\",\"id\":\"14145\",\"draft_team\":\"ARI\",\"birthdate\":\"837406800\",\"name\":\"Wilson, Caleb\",\"draft_pick\":\"40\",\"college\":\"UCLA\",\"rotowire_id\":\"13444\",\"height\":\"76\",\"jersey\":\"84\",\"sportsdata_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"team\":\"PHI\",\"cbs_id\":\"2251371\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14111\",\"stats_id\":\"31884\",\"position\":\"TE\",\"stats_global_id\":\"837824\",\"weight\":\"258\",\"id\":\"14146\",\"draft_team\":\"CIN\",\"birthdate\":\"829630800\",\"name\":\"Sample, Drew\",\"draft_pick\":\"20\",\"college\":\"Washington\",\"rotowire_id\":\"13809\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"team\":\"CIN\",\"cbs_id\":\"2139646\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13937\",\"stats_id\":\"31834\",\"position\":\"DE\",\"stats_global_id\":\"946531\",\"weight\":\"266\",\"id\":\"14147\",\"draft_team\":\"SFO\",\"birthdate\":\"877582800\",\"name\":\"Bosa, Nick\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"13421\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"team\":\"SFO\",\"cbs_id\":\"2260972\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"stats_id\":\"31858\",\"position\":\"DE\",\"stats_global_id\":\"838242\",\"weight\":\"262\",\"id\":\"14148\",\"draft_team\":\"WAS\",\"birthdate\":\"841813200\",\"name\":\"Sweat, Montez\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13745\",\"height\":\"78\",\"jersey\":\"90\",\"sportsdata_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"team\":\"WAS\",\"cbs_id\":\"2141772\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14017\",\"stats_id\":\"31844\",\"position\":\"LB\",\"stats_global_id\":\"946020\",\"weight\":\"277\",\"id\":\"14149\",\"draft_team\":\"GBP\",\"birthdate\":\"881125200\",\"name\":\"Gary, Rashan\",\"draft_pick\":\"12\",\"college\":\"Michigan\",\"rotowire_id\":\"13651\",\"height\":\"77\",\"jersey\":\"52\",\"sportsdata_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"team\":\"GBP\",\"cbs_id\":\"2260648\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14184\",\"stats_id\":\"31949\",\"position\":\"DE\",\"stats_global_id\":\"867753\",\"weight\":\"261\",\"id\":\"14150\",\"draft_team\":\"DET\",\"birthdate\":\"847774800\",\"name\":\"Bryant, Austin\",\"draft_pick\":\"15\",\"college\":\"Clemson\",\"rotowire_id\":\"13843\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"team\":\"DET\",\"cbs_id\":\"2179209\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13984\",\"stats_id\":\"31836\",\"position\":\"DE\",\"stats_global_id\":\"867757\",\"weight\":\"265\",\"id\":\"14151\",\"draft_team\":\"OAK\",\"birthdate\":\"863845200\",\"name\":\"Ferrell, Clelin\",\"draft_pick\":\"4\",\"college\":\"Clemson\",\"rotowire_id\":\"13649\",\"height\":\"76\",\"jersey\":\"96\",\"sportsdata_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"team\":\"LVR\",\"cbs_id\":\"2179216\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14158\",\"stats_id\":\"31997\",\"position\":\"DE\",\"stats_global_id\":\"922486\",\"weight\":\"285\",\"id\":\"14152\",\"draft_team\":\"DAL\",\"birthdate\":\"851058000\",\"name\":\"Jackson, Joe\",\"draft_pick\":\"27\",\"college\":\"Miami\",\"rotowire_id\":\"13523\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"team\":\"CLE\",\"cbs_id\":\"2249833\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14106\",\"stats_id\":\"31897\",\"position\":\"DE\",\"stats_global_id\":\"883401\",\"weight\":\"285\",\"id\":\"14153\",\"draft_team\":\"ARI\",\"birthdate\":\"872053200\",\"name\":\"Allen, Zach\",\"draft_pick\":\"1\",\"college\":\"Boston College\",\"rotowire_id\":\"13742\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"team\":\"ARI\",\"cbs_id\":\"2185907\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14107\",\"stats_id\":\"31939\",\"position\":\"LB\",\"stats_global_id\":\"870515\",\"weight\":\"271\",\"id\":\"14154\",\"draft_team\":\"TBB\",\"birthdate\":\"857451600\",\"name\":\"Nelson, Anthony\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"13562\",\"height\":\"79\",\"jersey\":\"98\",\"sportsdata_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"team\":\"TBB\",\"cbs_id\":\"2179724\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14093\",\"stats_id\":\"31861\",\"position\":\"DE\",\"stats_global_id\":\"822436\",\"weight\":\"291\",\"id\":\"14155\",\"draft_team\":\"SEA\",\"birthdate\":\"810882000\",\"name\":\"Collier, L.J.\",\"draft_pick\":\"29\",\"college\":\"TCU\",\"rotowire_id\":\"13751\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"team\":\"SEA\",\"cbs_id\":\"2131806\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14182\",\"stats_id\":\"31970\",\"position\":\"DE\",\"stats_global_id\":\"884614\",\"weight\":\"254\",\"id\":\"14156\",\"draft_team\":\"PHI\",\"birthdate\":\"858315600\",\"name\":\"Miller, Shareef\",\"draft_pick\":\"36\",\"college\":\"Penn State\",\"rotowire_id\":\"13499\",\"height\":\"76\",\"jersey\":\"55\",\"sportsdata_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"team\":\"FA\",\"cbs_id\":\"2186639\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14011\",\"stats_id\":\"31835\",\"position\":\"DE\",\"stats_global_id\":\"944430\",\"weight\":\"303\",\"id\":\"14157\",\"draft_team\":\"NYJ\",\"birthdate\":\"882680400\",\"name\":\"Williams, Quinnen\",\"draft_pick\":\"3\",\"college\":\"Alabama\",\"rotowire_id\":\"13584\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"team\":\"NYJ\",\"cbs_id\":\"2257890\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14016\",\"stats_id\":\"31841\",\"position\":\"DT\",\"stats_global_id\":\"921280\",\"weight\":\"287\",\"id\":\"14158\",\"draft_team\":\"BUF\",\"birthdate\":\"881902800\",\"name\":\"Oliver, Ed\",\"draft_pick\":\"9\",\"college\":\"Houston\",\"rotowire_id\":\"13653\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"team\":\"BUF\",\"cbs_id\":\"2247345\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14014\",\"stats_id\":\"31849\",\"position\":\"DT\",\"stats_global_id\":\"913535\",\"weight\":\"342\",\"id\":\"14159\",\"draft_team\":\"NYG\",\"birthdate\":\"879310800\",\"name\":\"Lawrence, Dexter\",\"draft_pick\":\"17\",\"college\":\"Clemson\",\"rotowire_id\":\"13568\",\"height\":\"76\",\"jersey\":\"97\",\"sportsdata_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"team\":\"NYG\",\"cbs_id\":\"2239523\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14216\",\"stats_id\":\"32024\",\"position\":\"DE\",\"stats_global_id\":\"973976\",\"weight\":\"295\",\"id\":\"14160\",\"draft_team\":\"PIT\",\"birthdate\":\"872398800\",\"name\":\"Buggs, Isaiah\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"13755\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"team\":\"PIT\",\"cbs_id\":\"2741198\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14021\",\"stats_id\":\"31860\",\"position\":\"DT\",\"stats_global_id\":\"867700\",\"weight\":\"295\",\"id\":\"14161\",\"draft_team\":\"LAC\",\"birthdate\":\"844750800\",\"name\":\"Tillery, Jerry\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13757\",\"height\":\"78\",\"jersey\":\"99\",\"sportsdata_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"team\":\"LAC\",\"cbs_id\":\"2181242\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14071\",\"stats_id\":\"31845\",\"position\":\"DT\",\"stats_global_id\":\"867762\",\"weight\":\"315\",\"id\":\"14162\",\"draft_team\":\"MIA\",\"birthdate\":\"819435600\",\"name\":\"Wilkins, Christian\",\"draft_pick\":\"13\",\"college\":\"Clemson\",\"rotowire_id\":\"13758\",\"height\":\"75\",\"jersey\":\"94\",\"sportsdata_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"team\":\"MIA\",\"cbs_id\":\"2179235\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14008\",\"stats_id\":\"31851\",\"position\":\"DT\",\"stats_global_id\":\"922057\",\"weight\":\"305\",\"id\":\"14163\",\"draft_team\":\"TEN\",\"birthdate\":\"870066000\",\"name\":\"Simmons, Jeffery\",\"draft_pick\":\"19\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13465\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"team\":\"TEN\",\"cbs_id\":\"2248637\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14100\",\"stats_id\":\"31903\",\"position\":\"DE\",\"stats_global_id\":\"878764\",\"weight\":\"281\",\"id\":\"14164\",\"draft_team\":\"DEN\",\"birthdate\":\"852440400\",\"name\":\"Jones, Dre'Mont\",\"draft_pick\":\"7\",\"college\":\"Ohio State\",\"rotowire_id\":\"13451\",\"height\":\"75\",\"jersey\":\"93\",\"sportsdata_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"team\":\"DEN\",\"cbs_id\":\"2179816\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14191\",\"draft_team\":\"FA\",\"stats_id\":\"32308\",\"position\":\"DE\",\"name\":\"Willis, Gerald\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13747\",\"weight\":\"302\",\"sportsdata_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"id\":\"14165\",\"team\":\"FA\",\"cbs_id\":\"2133515\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14213\",\"stats_id\":\"31992\",\"position\":\"DT\",\"stats_global_id\":\"879797\",\"weight\":\"340\",\"id\":\"14166\",\"draft_team\":\"BAL\",\"birthdate\":\"856674000\",\"name\":\"Mack, Daylon\",\"draft_pick\":\"22\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13607\",\"height\":\"73\",\"jersey\":\"94\",\"sportsdata_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"team\":\"FA\",\"cbs_id\":\"2180825\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14024\",\"stats_id\":\"31839\",\"position\":\"DE\",\"stats_global_id\":\"881646\",\"weight\":\"262\",\"id\":\"14167\",\"draft_team\":\"JAC\",\"birthdate\":\"868770000\",\"name\":\"Allen, Josh\",\"draft_pick\":\"7\",\"college\":\"Kentucky\",\"rotowire_id\":\"13642\",\"height\":\"77\",\"jersey\":\"41\",\"sportsdata_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"team\":\"JAC\",\"cbs_id\":\"2184628\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13947\",\"stats_id\":\"31837\",\"position\":\"LB\",\"stats_global_id\":\"910681\",\"weight\":\"237\",\"id\":\"14168\",\"draft_team\":\"TBB\",\"birthdate\":\"887691600\",\"name\":\"White, Devin\",\"draft_pick\":\"5\",\"college\":\"LSU\",\"rotowire_id\":\"13611\",\"height\":\"72\",\"jersey\":\"45\",\"sportsdata_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"team\":\"TBB\",\"cbs_id\":\"2222025\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14064\",\"stats_id\":\"31987\",\"position\":\"LB\",\"stats_global_id\":\"944431\",\"weight\":\"233\",\"id\":\"14169\",\"draft_team\":\"CLE\",\"birthdate\":\"887432400\",\"name\":\"Wilson, Mack\",\"draft_pick\":\"17\",\"college\":\"Alabama\",\"rotowire_id\":\"13609\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"team\":\"CLE\",\"cbs_id\":\"2257891\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14063\",\"stats_id\":\"31842\",\"position\":\"LB\",\"stats_global_id\":\"910976\",\"weight\":\"234\",\"id\":\"14170\",\"draft_team\":\"PIT\",\"birthdate\":\"900738000\",\"name\":\"Bush, Devin\",\"draft_pick\":\"10\",\"college\":\"Michigan\",\"rotowire_id\":\"13461\",\"height\":\"71\",\"jersey\":\"55\",\"sportsdata_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"team\":\"PIT\",\"cbs_id\":\"2239725\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"13949\",\"stats_id\":\"31848\",\"position\":\"DE\",\"stats_global_id\":\"936822\",\"weight\":\"250\",\"id\":\"14171\",\"draft_team\":\"CAR\",\"birthdate\":\"893307600\",\"name\":\"Burns, Brian\",\"draft_pick\":\"16\",\"college\":\"Florida State\",\"rotowire_id\":\"13439\",\"height\":\"77\",\"jersey\":\"53\",\"sportsdata_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"team\":\"CAR\",\"cbs_id\":\"2253012\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14188\",\"stats_id\":\"32340\",\"position\":\"LB\",\"stats_global_id\":\"867664\",\"weight\":\"230\",\"id\":\"14172\",\"draft_team\":\"FA\",\"birthdate\":\"865918800\",\"name\":\"Coney, Te'von\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13799\",\"height\":\"73\",\"jersey\":\"56\",\"sportsdata_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"team\":\"FA\",\"cbs_id\":\"2181237\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13966\",\"stats_id\":\"31900\",\"position\":\"LB\",\"stats_global_id\":\"922018\",\"weight\":\"258\",\"id\":\"14173\",\"draft_team\":\"NYJ\",\"birthdate\":\"891234000\",\"name\":\"Polite, Jachai\",\"draft_pick\":\"4\",\"college\":\"Florida\",\"rotowire_id\":\"13493\",\"height\":\"75\",\"jersey\":\"95\",\"sportsdata_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"team\":\"LAR\",\"cbs_id\":\"2248611\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14120\",\"stats_id\":\"32000\",\"position\":\"LB\",\"stats_global_id\":\"879096\",\"weight\":\"251\",\"id\":\"14175\",\"draft_team\":\"TEN\",\"birthdate\":\"853995600\",\"name\":\"Walker, D'Andre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13737\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"team\":\"FA\",\"cbs_id\":\"2180476\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14089\",\"stats_id\":\"31909\",\"position\":\"DE\",\"stats_global_id\":\"830701\",\"weight\":\"250\",\"id\":\"14176\",\"draft_team\":\"NEP\",\"birthdate\":\"798267600\",\"name\":\"Winovich, Chase\",\"draft_pick\":\"13\",\"college\":\"Michigan\",\"rotowire_id\":\"13655\",\"height\":\"75\",\"jersey\":\"50\",\"sportsdata_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"team\":\"NEP\",\"cbs_id\":\"2136539\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13942\",\"stats_id\":\"31878\",\"position\":\"CB\",\"stats_global_id\":\"910960\",\"weight\":\"185\",\"id\":\"14177\",\"draft_team\":\"CLE\",\"birthdate\":\"881125200\",\"name\":\"Williams, Greedy\",\"draft_pick\":\"14\",\"college\":\"LSU\",\"rotowire_id\":\"13485\",\"height\":\"74\",\"jersey\":\"26\",\"sportsdata_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"team\":\"CLE\",\"cbs_id\":\"2240268\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14072\",\"stats_id\":\"31862\",\"position\":\"CB\",\"stats_global_id\":\"880521\",\"weight\":\"189\",\"id\":\"14178\",\"draft_team\":\"NYG\",\"birthdate\":\"873349200\",\"name\":\"Baker, Deandre\",\"draft_pick\":\"30\",\"college\":\"Georgia\",\"rotowire_id\":\"13475\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"team\":\"FA\",\"cbs_id\":\"2183948\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"13974\",\"stats_id\":\"31940\",\"position\":\"S\",\"stats_global_id\":\"946103\",\"weight\":\"195\",\"id\":\"14179\",\"draft_team\":\"NYG\",\"birthdate\":\"890283600\",\"name\":\"Love, Julian\",\"draft_pick\":\"6\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13533\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"team\":\"NYG\",\"cbs_id\":\"2260683\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14067\",\"stats_id\":\"31865\",\"position\":\"CB\",\"stats_global_id\":\"924155\",\"weight\":\"190\",\"id\":\"14180\",\"draft_team\":\"ARI\",\"birthdate\":\"885099600\",\"name\":\"Murphy, Byron\",\"draft_pick\":\"1\",\"college\":\"Washington\",\"rotowire_id\":\"13560\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"team\":\"ARI\",\"cbs_id\":\"2251384\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14066\",\"stats_id\":\"31872\",\"position\":\"CB\",\"stats_global_id\":\"913543\",\"weight\":\"199\",\"id\":\"14181\",\"draft_team\":\"OAK\",\"birthdate\":\"874731600\",\"name\":\"Mullen, Trayvon\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"13572\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"team\":\"LVR\",\"cbs_id\":\"2239524\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14075\",\"stats_id\":\"31948\",\"position\":\"S\",\"stats_global_id\":\"923916\",\"weight\":\"210\",\"id\":\"14182\",\"draft_team\":\"TEN\",\"birthdate\":\"897800400\",\"name\":\"Hooker, Amani\",\"draft_pick\":\"14\",\"college\":\"Iowa\",\"rotowire_id\":\"13550\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"team\":\"TEN\",\"cbs_id\":\"2251098\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"13982\",\"stats_id\":\"31971\",\"position\":\"S\",\"stats_global_id\":\"868097\",\"weight\":\"195\",\"id\":\"14183\",\"draft_team\":\"ARI\",\"birthdate\":\"855637200\",\"name\":\"Thompson, Deionte\",\"draft_pick\":\"1\",\"college\":\"Alabama\",\"rotowire_id\":\"13586\",\"height\":\"73\",\"jersey\":\"22\",\"sportsdata_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"team\":\"ARI\",\"cbs_id\":\"2180575\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14077\",\"stats_id\":\"31859\",\"position\":\"S\",\"stats_global_id\":\"871364\",\"weight\":\"205\",\"id\":\"14184\",\"birthdate\":\"846219600\",\"draft_team\":\"OAK\",\"name\":\"Abram, Johnathan\",\"draft_pick\":\"27\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13546\",\"height\":\"72\",\"jersey\":\"24\",\"twitter_username\":\"JohnathanAbram1\",\"sportsdata_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"team\":\"LVR\",\"cbs_id\":\"2180453\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14085\",\"stats_id\":\"31892\",\"position\":\"S\",\"stats_global_id\":\"878693\",\"weight\":\"195\",\"id\":\"14185\",\"draft_team\":\"LAC\",\"birthdate\":\"865054800\",\"name\":\"Adderley, Nasir\",\"draft_pick\":\"28\",\"college\":\"Delaware\",\"rotowire_id\":\"13668\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"team\":\"LAC\",\"cbs_id\":\"2182692\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14078\",\"stats_id\":\"31893\",\"position\":\"S\",\"stats_global_id\":\"913599\",\"weight\":\"208\",\"id\":\"14186\",\"draft_team\":\"LAR\",\"birthdate\":\"882766800\",\"name\":\"Rapp, Taylor\",\"draft_pick\":\"29\",\"college\":\"Washington\",\"rotowire_id\":\"13507\",\"height\":\"72\",\"jersey\":\"24\",\"sportsdata_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"team\":\"LAR\",\"cbs_id\":\"2240202\"},{\"draft_year\":\"2019\",\"nfl_id\":\"tylong/2553555\",\"rotoworld_id\":\"10975\",\"stats_id\":\"28861\",\"position\":\"PN\",\"stats_global_id\":\"609941\",\"weight\":\"205\",\"id\":\"14190\",\"draft_team\":\"FA\",\"birthdate\":\"734072400\",\"name\":\"Long, Ty\",\"college\":\"UAB\",\"rotowire_id\":\"10849\",\"height\":\"74\",\"jersey\":\"1\",\"sportsdata_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"team\":\"LAC\",\"cbs_id\":\"2174774\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14041\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"stats_id\":\"32419\",\"position\":\"RB\",\"name\":\"Barnes, Alex\",\"college\":\"Kansas State\",\"stats_global_id\":\"868507\",\"height\":\"72\",\"rotowire_id\":\"13452\",\"jersey\":\"39\",\"weight\":\"226\",\"id\":\"14191\",\"team\":\"FA\",\"cbs_id\":\"2179575\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14225\",\"draft_team\":\"FA\",\"stats_id\":\"32368\",\"position\":\"RB\",\"name\":\"Williams, James\",\"college\":\"Washington State\",\"stats_global_id\":\"868331\",\"height\":\"72\",\"rotowire_id\":\"13549\",\"jersey\":\"30\",\"weight\":\"205\",\"sportsdata_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"id\":\"14192\",\"team\":\"FA\",\"cbs_id\":\"2180416\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14028\",\"birthdate\":\"674283600\",\"draft_team\":\"FA\",\"stats_id\":\"31822\",\"position\":\"RB\",\"name\":\"Wade, Christian\",\"stats_global_id\":\"1164428\",\"height\":\"67\",\"rotowire_id\":\"13930\",\"jersey\":\"45\",\"weight\":\"185\",\"sportsdata_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"id\":\"14194\",\"team\":\"FA\",\"cbs_id\":\"3114045\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14053\",\"stats_id\":\"31918\",\"position\":\"TE\",\"stats_global_id\":\"887526\",\"weight\":\"252\",\"id\":\"14195\",\"draft_team\":\"HOU\",\"birthdate\":\"859093200\",\"name\":\"Warring, Kahale\",\"draft_pick\":\"22\",\"college\":\"San Diego State\",\"rotowire_id\":\"13478\",\"height\":\"77\",\"jersey\":\"81\",\"sportsdata_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"team\":\"HOU\",\"cbs_id\":\"2190068\"},{\"draft_year\":\"2019\",\"draft_round\":\"1\",\"rotoworld_id\":\"14076\",\"stats_id\":\"31853\",\"position\":\"S\",\"stats_global_id\":\"0\",\"id\":\"14197\",\"draft_team\":\"GBP\",\"birthdate\":\"870238800\",\"name\":\"Savage, Darnell\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13810\",\"jersey\":\"26\",\"sportsdata_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"team\":\"GBP\",\"cbs_id\":\"2179332\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14084\",\"stats_id\":\"31866\",\"position\":\"CB\",\"stats_global_id\":\"875395\",\"weight\":\"190\",\"id\":\"14198\",\"draft_team\":\"IND\",\"birthdate\":\"832827600\",\"name\":\"Ya-Sin, Rock\",\"draft_pick\":\"2\",\"college\":\"Temple\",\"rotowire_id\":\"13474\",\"height\":\"72\",\"jersey\":\"26\",\"sportsdata_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"team\":\"IND\",\"cbs_id\":\"2183381\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"seanmurphy-bunting/2562635\",\"rotoworld_id\":\"14094\",\"stats_id\":\"31871\",\"position\":\"CB\",\"stats_global_id\":\"885764\",\"weight\":\"195\",\"id\":\"14199\",\"birthdate\":\"866696400\",\"draft_team\":\"TBB\",\"name\":\"Murphy-Bunting, Sean\",\"draft_pick\":\"7\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13648\",\"height\":\"72\",\"jersey\":\"23\",\"sportsdata_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"team\":\"TBB\",\"cbs_id\":\"2188984\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14101\",\"stats_id\":\"31875\",\"position\":\"LB\",\"stats_global_id\":\"834599\",\"weight\":\"250\",\"id\":\"14200\",\"draft_team\":\"DET\",\"birthdate\":\"843886800\",\"name\":\"Tavai, Jahlani\",\"draft_pick\":\"11\",\"college\":\"Hawaii\",\"rotowire_id\":\"13885\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"team\":\"DET\",\"cbs_id\":\"2139903\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"13957\",\"stats_id\":\"31877\",\"position\":\"CB\",\"stats_global_id\":\"910430\",\"weight\":\"212\",\"id\":\"14201\",\"draft_team\":\"DET\",\"birthdate\":\"881384400\",\"name\":\"Williams, Joejuan\",\"draft_pick\":\"13\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"13482\",\"height\":\"75\",\"jersey\":\"33\",\"sportsdata_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"team\":\"NEP\",\"cbs_id\":\"2221852\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14102\",\"stats_id\":\"31879\",\"position\":\"S\",\"stats_global_id\":\"1052321\",\"weight\":\"196\",\"id\":\"14202\",\"draft_team\":\"SEA\",\"birthdate\":\"869202000\",\"name\":\"Blair, Marquise\",\"draft_pick\":\"15\",\"college\":\"Utah\",\"rotowire_id\":\"13796\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"team\":\"SEA\",\"cbs_id\":\"2827526\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14098\",\"stats_id\":\"31881\",\"position\":\"DE\",\"stats_global_id\":\"821861\",\"weight\":\"252\",\"id\":\"14204\",\"draft_team\":\"IND\",\"birthdate\":\"822027600\",\"name\":\"Banogu, Ben\",\"draft_pick\":\"17\",\"college\":\"TCU\",\"rotowire_id\":\"13761\",\"height\":\"75\",\"jersey\":\"52\",\"sportsdata_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"team\":\"IND\",\"cbs_id\":\"2131994\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14096\",\"stats_id\":\"31886\",\"position\":\"CB\",\"stats_global_id\":\"976145\",\"weight\":\"213\",\"id\":\"14205\",\"draft_team\":\"HOU\",\"name\":\"Johnson, Lonnie\",\"draft_pick\":\"22\",\"college\":\"Kentucky\",\"rotowire_id\":\"13820\",\"height\":\"74\",\"jersey\":\"32\",\"sportsdata_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"team\":\"HOU\",\"cbs_id\":\"2803779\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"nfl_id\":\"trystenhill/2562573\",\"rotoworld_id\":\"14092\",\"stats_id\":\"31890\",\"position\":\"DT\",\"stats_global_id\":\"944023\",\"weight\":\"310\",\"id\":\"14206\",\"birthdate\":\"890802000\",\"draft_team\":\"DAL\",\"name\":\"Hill, Trysten\",\"draft_pick\":\"26\",\"college\":\"UCF\",\"rotowire_id\":\"13514\",\"height\":\"75\",\"jersey\":\"72\",\"sportsdata_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"team\":\"DAL\",\"cbs_id\":\"2257304\"},{\"draft_year\":\"2019\",\"draft_round\":\"2\",\"rotoworld_id\":\"14079\",\"stats_id\":\"31895\",\"position\":\"S\",\"stats_global_id\":\"883971\",\"weight\":\"205\",\"id\":\"14207\",\"draft_team\":\"KCC\",\"birthdate\":\"845701200\",\"name\":\"Thornhill, Juan\",\"draft_pick\":\"31\",\"college\":\"Virginia\",\"rotowire_id\":\"13824\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"team\":\"KCC\",\"cbs_id\":\"2186262\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14126\",\"stats_id\":\"31898\",\"position\":\"WR\",\"stats_global_id\":\"891115\",\"weight\":\"183\",\"id\":\"14208\",\"draft_team\":\"PIT\",\"birthdate\":\"836542800\",\"name\":\"Johnson, Diontae\",\"draft_pick\":\"2\",\"college\":\"Toledo\",\"rotowire_id\":\"13472\",\"height\":\"70\",\"jersey\":\"18\",\"sportsdata_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"team\":\"PIT\",\"cbs_id\":\"2194164\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14127\",\"stats_id\":\"31901\",\"position\":\"TE\",\"stats_global_id\":\"881779\",\"weight\":\"249\",\"id\":\"14209\",\"draft_team\":\"JAC\",\"birthdate\":\"858920400\",\"name\":\"Oliver, Josh\",\"draft_pick\":\"5\",\"college\":\"San Jose State\",\"rotowire_id\":\"13786\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"team\":\"JAC\",\"cbs_id\":\"2184618\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14128\",\"stats_id\":\"31904\",\"position\":\"LB\",\"stats_global_id\":\"820884\",\"weight\":\"245\",\"id\":\"14210\",\"draft_team\":\"CIN\",\"birthdate\":\"864190800\",\"name\":\"Pratt, Germaine\",\"draft_pick\":\"8\",\"college\":\"North Carolina State\",\"rotowire_id\":\"13436\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"team\":\"CIN\",\"cbs_id\":\"2130964\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14103\",\"stats_id\":\"31911\",\"position\":\"CB\",\"stats_global_id\":\"946029\",\"weight\":\"196\",\"id\":\"14211\",\"draft_team\":\"LAR\",\"birthdate\":\"886741200\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"Michigan\",\"rotowire_id\":\"13508\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"team\":\"LAR\",\"cbs_id\":\"2260657\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14124\",\"stats_id\":\"31912\",\"position\":\"LB\",\"stats_global_id\":\"839574\",\"weight\":\"238\",\"id\":\"14212\",\"draft_team\":\"CLE\",\"birthdate\":\"802587600\",\"name\":\"Takitaki, Sione\",\"draft_pick\":\"16\",\"college\":\"Brigham Young\",\"rotowire_id\":\"13614\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"team\":\"CLE\",\"cbs_id\":\"2142097\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14129\",\"stats_id\":\"31913\",\"position\":\"S\",\"stats_global_id\":\"883417\",\"weight\":\"207\",\"id\":\"14213\",\"draft_team\":\"DET\",\"birthdate\":\"819349200\",\"name\":\"Harris, Will\",\"draft_pick\":\"17\",\"college\":\"Boston College\",\"rotowire_id\":\"13805\",\"height\":\"73\",\"jersey\":\"25\",\"sportsdata_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"team\":\"DET\",\"cbs_id\":\"2185917\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14068\",\"stats_id\":\"31915\",\"position\":\"CB\",\"stats_global_id\":\"943200\",\"weight\":\"192\",\"id\":\"14214\",\"draft_team\":\"PIT\",\"birthdate\":\"884581200\",\"name\":\"Layne, Justin\",\"draft_pick\":\"19\",\"college\":\"Michigan State\",\"rotowire_id\":\"13455\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"team\":\"PIT\",\"cbs_id\":\"2253374\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14130\",\"stats_id\":\"31916\",\"position\":\"DT\",\"stats_global_id\":\"831799\",\"weight\":\"324\",\"id\":\"14215\",\"draft_team\":\"KCC\",\"birthdate\":\"839566800\",\"name\":\"Saunders, Khalen\",\"draft_pick\":\"20\",\"college\":\"Western Illinois\",\"rotowire_id\":\"13746\",\"height\":\"72\",\"jersey\":\"99\",\"sportsdata_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"team\":\"KCC\",\"cbs_id\":\"2137006\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14009\",\"stats_id\":\"31917\",\"position\":\"LB\",\"stats_global_id\":\"824109\",\"weight\":\"270\",\"id\":\"14216\",\"draft_team\":\"BAL\",\"birthdate\":\"818917200\",\"name\":\"Ferguson, Jaylon\",\"draft_pick\":\"21\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"13468\",\"height\":\"77\",\"jersey\":\"45\",\"sportsdata_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"team\":\"BAL\",\"cbs_id\":\"2131282\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14137\",\"stats_id\":\"31920\",\"position\":\"LB\",\"stats_global_id\":\"882715\",\"weight\":\"237\",\"id\":\"14217\",\"draft_team\":\"SEA\",\"birthdate\":\"847861200\",\"name\":\"Barton, Cody\",\"draft_pick\":\"24\",\"college\":\"Utah\",\"rotowire_id\":\"13733\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"team\":\"SEA\",\"cbs_id\":\"2185568\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14065\",\"stats_id\":\"31921\",\"position\":\"LB\",\"stats_global_id\":\"830520\",\"weight\":\"235\",\"id\":\"14218\",\"draft_team\":\"IND\",\"birthdate\":\"838616400\",\"name\":\"Okereke, Bobby\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13782\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"team\":\"IND\",\"cbs_id\":\"2136745\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13959\",\"stats_id\":\"31926\",\"position\":\"CB\",\"stats_global_id\":\"866978\",\"weight\":\"206\",\"id\":\"14219\",\"draft_team\":\"TBB\",\"birthdate\":\"845355600\",\"name\":\"Dean, Jamel\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"13483\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"team\":\"TBB\",\"cbs_id\":\"2179803\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14146\",\"stats_id\":\"31927\",\"position\":\"DE\",\"stats_global_id\":\"835045\",\"weight\":\"254\",\"id\":\"14220\",\"draft_team\":\"NYG\",\"birthdate\":\"818312400\",\"name\":\"Ximines, Oshane\",\"draft_pick\":\"31\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13891\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"team\":\"NYG\",\"cbs_id\":\"2140954\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14149\",\"stats_id\":\"31930\",\"position\":\"LB\",\"stats_global_id\":\"832599\",\"weight\":\"225\",\"id\":\"14221\",\"draft_team\":\"JAC\",\"birthdate\":\"841208400\",\"name\":\"Williams, Quincy\",\"draft_pick\":\"34\",\"college\":\"Murray State\",\"rotowire_id\":\"13982\",\"height\":\"71\",\"jersey\":\"56\",\"sportsdata_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"team\":\"JAC\",\"cbs_id\":\"3116461\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"14150\",\"stats_id\":\"31931\",\"position\":\"S\",\"stats_global_id\":\"867995\",\"weight\":\"205\",\"id\":\"14222\",\"draft_team\":\"TBB\",\"birthdate\":\"832395600\",\"name\":\"Edwards, Mike\",\"draft_pick\":\"35\",\"college\":\"Kentucky\",\"rotowire_id\":\"13789\",\"height\":\"70\",\"jersey\":\"32\",\"sportsdata_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"team\":\"TBB\",\"cbs_id\":\"2180483\"},{\"draft_year\":\"2019\",\"draft_round\":\"3\",\"rotoworld_id\":\"13958\",\"stats_id\":\"31934\",\"position\":\"RB\",\"stats_global_id\":\"944343\",\"weight\":\"220\",\"id\":\"14223\",\"draft_team\":\"MIN\",\"birthdate\":\"898232400\",\"name\":\"Mattison, Alexander\",\"draft_pick\":\"38\",\"college\":\"Boise State\",\"rotowire_id\":\"13477\",\"height\":\"71\",\"jersey\":\"25\",\"sportsdata_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"team\":\"MIN\",\"cbs_id\":\"2257933\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14091\",\"stats_id\":\"31937\",\"position\":\"S\",\"stats_global_id\":\"910391\",\"weight\":\"210\",\"id\":\"14224\",\"draft_team\":\"NOS\",\"birthdate\":\"882594000\",\"name\":\"Gardner-Johnson, Chauncey\",\"draft_pick\":\"3\",\"college\":\"Florida\",\"rotowire_id\":\"13650\",\"height\":\"71\",\"jersey\":\"22\",\"sportsdata_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"team\":\"NOS\",\"cbs_id\":\"2221830\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14119\",\"stats_id\":\"31938\",\"position\":\"DE\",\"stats_global_id\":\"885785\",\"weight\":\"255\",\"id\":\"14225\",\"draft_team\":\"OAK\",\"birthdate\":\"872226000\",\"name\":\"Crosby, Maxx\",\"draft_pick\":\"4\",\"college\":\"Eastern Michigan\",\"rotowire_id\":\"13459\",\"height\":\"77\",\"jersey\":\"98\",\"sportsdata_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"team\":\"LVR\",\"cbs_id\":\"2189001\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14199\",\"stats_id\":\"31941\",\"position\":\"S\",\"stats_global_id\":\"884269\",\"weight\":\"217\",\"id\":\"14226\",\"draft_team\":\"IND\",\"birthdate\":\"831445200\",\"name\":\"Willis, Khari\",\"draft_pick\":\"7\",\"college\":\"Michigan State\",\"rotowire_id\":\"13760\",\"height\":\"71\",\"jersey\":\"37\",\"sportsdata_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"team\":\"IND\",\"cbs_id\":\"2186440\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14244\",\"stats_id\":\"31942\",\"position\":\"PN\",\"stats_global_id\":\"913716\",\"weight\":\"220\",\"id\":\"14227\",\"draft_team\":\"SFO\",\"birthdate\":\"699598800\",\"name\":\"Wishnowsky, Mitch\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"13816\",\"height\":\"74\",\"jersey\":\"6\",\"sportsdata_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"team\":\"SFO\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14166\",\"stats_id\":\"31943\",\"position\":\"CB\",\"stats_global_id\":\"884056\",\"weight\":\"193\",\"id\":\"14228\",\"draft_team\":\"ATL\",\"birthdate\":\"833432400\",\"name\":\"Sheffield, Kendall\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"13618\",\"height\":\"71\",\"jersey\":\"20\",\"sportsdata_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"team\":\"ATL\",\"cbs_id\":\"2186329\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14152\",\"stats_id\":\"31947\",\"position\":\"LB\",\"stats_global_id\":\"835810\",\"weight\":\"245\",\"id\":\"14229\",\"draft_team\":\"CAR\",\"birthdate\":\"834901200\",\"name\":\"Miller, Christian\",\"draft_pick\":\"13\",\"college\":\"Alabama\",\"rotowire_id\":\"13762\",\"height\":\"75\",\"jersey\":\"55\",\"sportsdata_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"team\":\"CAR\",\"cbs_id\":\"2139779\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14136\",\"stats_id\":\"31951\",\"position\":\"S\",\"stats_global_id\":\"871711\",\"weight\":\"196\",\"id\":\"14230\",\"draft_team\":\"CLE\",\"birthdate\":\"847256400\",\"name\":\"Redwine, Sheldrick\",\"draft_pick\":\"17\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13537\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"team\":\"CLE\",\"cbs_id\":\"2179401\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14224\",\"stats_id\":\"31953\",\"position\":\"TE\",\"stats_global_id\":\"919456\",\"weight\":\"267\",\"id\":\"14231\",\"draft_team\":\"NYJ\",\"birthdate\":\"810882000\",\"name\":\"Wesco, Trevon\",\"draft_pick\":\"19\",\"college\":\"West Virginia\",\"rotowire_id\":\"13828\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"team\":\"NYJ\",\"cbs_id\":\"2243366\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14179\",\"stats_id\":\"31957\",\"position\":\"DT\",\"stats_global_id\":\"820628\",\"weight\":\"318\",\"id\":\"14232\",\"draft_team\":\"CIN\",\"birthdate\":\"814424400\",\"name\":\"Wren, Renell\",\"draft_pick\":\"23\",\"college\":\"Arizona State\",\"rotowire_id\":\"13740\",\"height\":\"77\",\"jersey\":\"95\",\"sportsdata_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"team\":\"CIN\",\"cbs_id\":\"2131505\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14210\",\"stats_id\":\"31959\",\"position\":\"CB\",\"stats_global_id\":\"880035\",\"weight\":\"210\",\"id\":\"14233\",\"draft_team\":\"BAL\",\"birthdate\":\"857019600\",\"name\":\"Marshall, Iman\",\"draft_pick\":\"25\",\"college\":\"USC\",\"rotowire_id\":\"13654\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"team\":\"BAL\",\"cbs_id\":\"2180331\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14134\",\"stats_id\":\"31961\",\"position\":\"CB\",\"stats_global_id\":\"831248\",\"weight\":\"210\",\"id\":\"14234\",\"draft_team\":\"OAK\",\"birthdate\":\"819435600\",\"name\":\"Johnson, Isaiah\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13793\",\"height\":\"74\",\"jersey\":\"31\",\"sportsdata_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"team\":\"LVR\",\"cbs_id\":\"2146759\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14117\",\"stats_id\":\"31962\",\"position\":\"LB\",\"stats_global_id\":\"839068\",\"weight\":\"228\",\"id\":\"14235\",\"draft_team\":\"LAC\",\"birthdate\":\"808462800\",\"name\":\"Tranquill, Drue\",\"draft_pick\":\"28\",\"college\":\"Notre Dame\",\"rotowire_id\":\"13814\",\"height\":\"74\",\"jersey\":\"49\",\"sportsdata_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"team\":\"LAC\",\"cbs_id\":\"2142299\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14226\",\"stats_id\":\"31964\",\"position\":\"CB\",\"stats_global_id\":\"870196\",\"weight\":\"201\",\"id\":\"14236\",\"draft_team\":\"SEA\",\"birthdate\":\"863758800\",\"name\":\"Amadi, Ugo\",\"draft_pick\":\"30\",\"college\":\"Oregon\",\"rotowire_id\":\"13839\",\"height\":\"69\",\"jersey\":\"28\",\"sportsdata_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"team\":\"SEA\",\"cbs_id\":\"2180286\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14148\",\"stats_id\":\"31966\",\"position\":\"DT\",\"stats_global_id\":\"837808\",\"weight\":\"312\",\"id\":\"14237\",\"draft_team\":\"LAR\",\"birthdate\":\"831358800\",\"name\":\"Gaines, Greg\",\"draft_pick\":\"32\",\"college\":\"Washington\",\"rotowire_id\":\"13802\",\"height\":\"73\",\"jersey\":\"91\",\"sportsdata_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"team\":\"LAR\",\"cbs_id\":\"2139630\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14201\",\"stats_id\":\"31967\",\"position\":\"DE\",\"stats_global_id\":\"1163507\",\"weight\":\"275\",\"id\":\"14238\",\"draft_team\":\"ATL\",\"birthdate\":\"817016400\",\"name\":\"Cominsky, John\",\"draft_pick\":\"33\",\"college\":\"Charleston Univ\",\"rotowire_id\":\"13798\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"team\":\"ATL\",\"cbs_id\":\"3116532\"},{\"draft_year\":\"2019\",\"draft_round\":\"4\",\"rotoworld_id\":\"14154\",\"stats_id\":\"31969\",\"position\":\"TE\",\"stats_global_id\":\"865573\",\"weight\":\"250\",\"id\":\"14239\",\"draft_team\":\"OAK\",\"birthdate\":\"862894800\",\"name\":\"Moreau, Foster\",\"draft_pick\":\"35\",\"college\":\"LSU\",\"rotowire_id\":\"13822\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"team\":\"LVR\",\"cbs_id\":\"2180634\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14247\",\"stats_id\":\"31973\",\"position\":\"TE\",\"stats_global_id\":\"883079\",\"weight\":\"265\",\"id\":\"14240\",\"draft_team\":\"PIT\",\"birthdate\":\"842331600\",\"name\":\"Gentry, Zach\",\"draft_pick\":\"3\",\"college\":\"Michigan\",\"rotowire_id\":\"13511\",\"height\":\"80\",\"jersey\":\"81\",\"sportsdata_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"team\":\"PIT\",\"cbs_id\":\"2185708\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14125\",\"stats_id\":\"31974\",\"position\":\"LB\",\"stats_global_id\":\"865851\",\"weight\":\"230\",\"id\":\"14241\",\"draft_team\":\"SEA\",\"birthdate\":\"873694800\",\"name\":\"Burr-Kirven, Ben\",\"draft_pick\":\"4\",\"college\":\"Washington\",\"rotowire_id\":\"13844\",\"height\":\"72\",\"jersey\":\"55\",\"sportsdata_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"team\":\"SEA\",\"cbs_id\":\"2180357\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14218\",\"stats_id\":\"31975\",\"position\":\"LB\",\"stats_global_id\":\"836183\",\"weight\":\"236\",\"id\":\"14242\",\"draft_team\":\"NYG\",\"birthdate\":\"812696400\",\"name\":\"Connelly, Ryan\",\"draft_pick\":\"5\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13847\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"team\":\"MIN\",\"cbs_id\":\"2139317\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14099\",\"stats_id\":\"31976\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14243\",\"draft_team\":\"IND\",\"birthdate\":\"838962000\",\"name\":\"Tell, Marvell\",\"draft_pick\":\"6\",\"college\":\"USC\",\"rotowire_id\":\"13764\",\"height\":\"74\",\"jersey\":\"39\",\"sportsdata_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"team\":\"IND\",\"cbs_id\":\"2180341\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14248\",\"stats_id\":\"31977\",\"position\":\"PK\",\"stats_global_id\":\"1068998\",\"weight\":\"232\",\"id\":\"14244\",\"draft_team\":\"TBB\",\"birthdate\":\"763707600\",\"name\":\"Gay, Matt\",\"draft_pick\":\"7\",\"college\":\"Utah\",\"rotowire_id\":\"13673\",\"height\":\"72\",\"jersey\":\"9\",\"sportsdata_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"team\":\"LAR\",\"cbs_id\":\"2870511\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14073\",\"stats_id\":\"31978\",\"position\":\"CB\",\"stats_global_id\":\"836167\",\"weight\":\"205\",\"id\":\"14245\",\"draft_team\":\"DET\",\"birthdate\":\"823842000\",\"name\":\"Oruwariye, Amani\",\"draft_pick\":\"8\",\"college\":\"Penn State\",\"rotowire_id\":\"13744\",\"height\":\"74\",\"jersey\":\"24\",\"sportsdata_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"team\":\"DET\",\"cbs_id\":\"2139308\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14164\",\"stats_id\":\"31979\",\"position\":\"LB\",\"stats_global_id\":\"922013\",\"weight\":\"230\",\"id\":\"14246\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Joseph, Vosean\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"13506\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"team\":\"FA\",\"cbs_id\":\"2248606\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14249\",\"stats_id\":\"31980\",\"position\":\"LB\",\"stats_global_id\":\"882298\",\"weight\":\"227\",\"id\":\"14247\",\"draft_team\":\"SFO\",\"birthdate\":\"864536400\",\"name\":\"Greenlaw, Dre\",\"draft_pick\":\"10\",\"college\":\"Arkansas\",\"rotowire_id\":\"13804\",\"height\":\"72\",\"jersey\":\"57\",\"sportsdata_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"team\":\"SFO\",\"cbs_id\":\"2185496\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14194\",\"stats_id\":\"31982\",\"position\":\"DE\",\"stats_global_id\":\"879793\",\"weight\":\"288\",\"id\":\"14248\",\"draft_team\":\"GBP\",\"birthdate\":\"843714000\",\"name\":\"Keke, Kingsley\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13538\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"team\":\"GBP\",\"cbs_id\":\"2180818\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14250\",\"stats_id\":\"31983\",\"position\":\"LB\",\"stats_global_id\":\"840243\",\"weight\":\"242\",\"id\":\"14249\",\"draft_team\":\"MIA\",\"birthdate\":\"804574800\",\"name\":\"Van Ginkel, Andrew\",\"draft_pick\":\"13\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13887\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"team\":\"MIA\",\"cbs_id\":\"2142864\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14144\",\"stats_id\":\"31988\",\"position\":\"LB\",\"stats_global_id\":\"835877\",\"weight\":\"248\",\"id\":\"14250\",\"draft_team\":\"DEN\",\"birthdate\":\"821682000\",\"name\":\"Hollins, Justin\",\"draft_pick\":\"18\",\"college\":\"Oregon\",\"rotowire_id\":\"13773\",\"height\":\"77\",\"jersey\":\"58\",\"sportsdata_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"team\":\"LAR\",\"cbs_id\":\"2139590\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14104\",\"stats_id\":\"31989\",\"position\":\"LB\",\"stats_global_id\":\"867412\",\"weight\":\"237\",\"id\":\"14251\",\"draft_team\":\"NYJ\",\"birthdate\":\"831704400\",\"name\":\"Cashman, Blake\",\"draft_pick\":\"19\",\"college\":\"Minnesota\",\"rotowire_id\":\"13846\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"team\":\"NYJ\",\"cbs_id\":\"2179762\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14147\",\"stats_id\":\"31990\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14252\",\"draft_team\":\"DAL\",\"birthdate\":\"852872400\",\"name\":\"Jackson, Michael\",\"draft_pick\":\"20\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13704\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"team\":\"FA\",\"cbs_id\":\"2179388\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14254\",\"stats_id\":\"31991\",\"position\":\"DT\",\"stats_global_id\":\"880535\",\"weight\":\"300\",\"id\":\"14253\",\"draft_team\":\"NEP\",\"birthdate\":\"832568400\",\"name\":\"Cowart, Byron\",\"draft_pick\":\"21\",\"college\":\"Maryland\",\"rotowire_id\":\"13753\",\"height\":\"75\",\"jersey\":\"99\",\"sportsdata_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"team\":\"NEP\",\"cbs_id\":\"2183961\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14115\",\"stats_id\":\"31993\",\"position\":\"DE\",\"stats_global_id\":\"884296\",\"weight\":\"280\",\"id\":\"14254\",\"draft_team\":\"HOU\",\"birthdate\":\"872053200\",\"name\":\"Omenihu, Charles\",\"draft_pick\":\"23\",\"college\":\"Texas\",\"rotowire_id\":\"13791\",\"height\":\"77\",\"jersey\":\"94\",\"sportsdata_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"team\":\"HOU\",\"cbs_id\":\"2186497\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14173\",\"stats_id\":\"31994\",\"position\":\"LB\",\"stats_global_id\":\"865839\",\"weight\":\"235\",\"id\":\"14255\",\"draft_team\":\"MIN\",\"birthdate\":\"859352400\",\"name\":\"Smith, Cameron\",\"draft_pick\":\"24\",\"college\":\"USC\",\"rotowire_id\":\"13813\",\"height\":\"74\",\"jersey\":\"59\",\"sportsdata_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"team\":\"MIN\",\"cbs_id\":\"2180338\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14255\",\"stats_id\":\"31995\",\"position\":\"PN\",\"stats_global_id\":\"884923\",\"weight\":\"205\",\"id\":\"14256\",\"draft_team\":\"NEP\",\"birthdate\":\"866610000\",\"name\":\"Bailey, Jake\",\"draft_pick\":\"25\",\"college\":\"Stanford\",\"rotowire_id\":\"13817\",\"height\":\"74\",\"jersey\":\"7\",\"sportsdata_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14256\",\"stats_id\":\"31996\",\"position\":\"LB\",\"stats_global_id\":\"791843\",\"weight\":\"224\",\"id\":\"14257\",\"draft_team\":\"IND\",\"birthdate\":\"801982800\",\"name\":\"Speed, E.J.\",\"draft_pick\":\"26\",\"college\":\"Tarleton State\",\"rotowire_id\":\"13984\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"team\":\"IND\",\"cbs_id\":\"3116591\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14257\",\"stats_id\":\"32002\",\"position\":\"PK\",\"stats_global_id\":\"865932\",\"weight\":\"211\",\"id\":\"14258\",\"draft_team\":\"CLE\",\"birthdate\":\"848034000\",\"name\":\"Seibert, Austin\",\"draft_pick\":\"32\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13812\",\"height\":\"69\",\"jersey\":\"4\",\"sportsdata_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"team\":\"CIN\",\"cbs_id\":\"2179668\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14215\",\"stats_id\":\"32004\",\"position\":\"CB\",\"stats_global_id\":\"865960\",\"weight\":\"181\",\"id\":\"14259\",\"draft_team\":\"ATL\",\"birthdate\":\"855378000\",\"name\":\"Miller, Jordan\",\"draft_pick\":\"34\",\"college\":\"Washington\",\"rotowire_id\":\"13876\",\"height\":\"73\",\"jersey\":\"28\",\"sportsdata_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"team\":\"ATL\",\"cbs_id\":\"2180367\"},{\"draft_year\":\"2019\",\"draft_round\":\"5\",\"rotoworld_id\":\"14259\",\"stats_id\":\"32005\",\"position\":\"LB\",\"stats_global_id\":\"830662\",\"weight\":\"240\",\"id\":\"14260\",\"draft_team\":\"WAS\",\"birthdate\":\"838702800\",\"name\":\"Holcomb, Cole\",\"draft_pick\":\"35\",\"college\":\"North Carolina\",\"rotowire_id\":\"13700\",\"height\":\"73\",\"jersey\":\"55\",\"sportsdata_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"team\":\"WAS\",\"cbs_id\":\"3116561\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14112\",\"stats_id\":\"32007\",\"position\":\"LB\",\"stats_global_id\":\"885862\",\"weight\":\"232\",\"id\":\"14261\",\"draft_team\":\"PIT\",\"birthdate\":\"827470800\",\"name\":\"Smith, Sutton\",\"draft_pick\":\"2\",\"college\":\"Northern Illinois\",\"rotowire_id\":\"13462\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"team\":\"FA\",\"cbs_id\":\"2188961\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14239\",\"stats_id\":\"32009\",\"position\":\"S\",\"stats_global_id\":\"836999\",\"weight\":\"206\",\"id\":\"14262\",\"draft_team\":\"NOS\",\"birthdate\":\"818744400\",\"name\":\"Hampton, Saquan\",\"draft_pick\":\"4\",\"college\":\"Rutgers\",\"rotowire_id\":\"13702\",\"height\":\"73\",\"jersey\":\"33\",\"sportsdata_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"team\":\"FA\",\"cbs_id\":\"2139129\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14153\",\"stats_id\":\"32012\",\"position\":\"CB\",\"stats_global_id\":\"1163952\",\"weight\":\"191\",\"id\":\"14263\",\"draft_team\":\"NYG\",\"birthdate\":\"829371600\",\"name\":\"Ballentine, Corey\",\"draft_pick\":\"7\",\"college\":\"Washburn\",\"rotowire_id\":\"13795\",\"height\":\"72\",\"jersey\":\"25\",\"sportsdata_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"team\":\"NYJ\",\"cbs_id\":\"3116594\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14241\",\"stats_id\":\"32013\",\"position\":\"S\",\"stats_global_id\":\"865999\",\"weight\":\"191\",\"id\":\"14264\",\"draft_team\":\"BUF\",\"birthdate\":\"816238800\",\"name\":\"Johnson, Jaquan\",\"draft_pick\":\"8\",\"college\":\"Miami (FL)\",\"rotowire_id\":\"13819\",\"height\":\"70\",\"jersey\":\"46\",\"sportsdata_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"team\":\"BUF\",\"cbs_id\":\"2179389\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14236\",\"stats_id\":\"32016\",\"position\":\"WR\",\"stats_global_id\":\"839325\",\"weight\":\"215\",\"id\":\"14265\",\"draft_team\":\"DET\",\"birthdate\":\"810968400\",\"name\":\"Fulgham, Travis\",\"draft_pick\":\"11\",\"college\":\"Old Dominion\",\"rotowire_id\":\"13735\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"team\":\"PHI\",\"cbs_id\":\"2143075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14261\",\"stats_id\":\"32017\",\"position\":\"CB\",\"stats_global_id\":\"871187\",\"weight\":\"196\",\"id\":\"14266\",\"draft_team\":\"GBP\",\"birthdate\":\"779864400\",\"name\":\"Hollman, Ka'dar\",\"draft_pick\":\"12\",\"college\":\"Toledo\",\"rotowire_id\":\"13729\",\"height\":\"72\",\"jersey\":\"29\",\"sportsdata_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"team\":\"GBP\",\"cbs_id\":\"3116590\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14263\",\"stats_id\":\"32019\",\"position\":\"WR\",\"stats_global_id\":\"836079\",\"weight\":\"215\",\"id\":\"14267\",\"draft_team\":\"DEN\",\"birthdate\":\"841813200\",\"name\":\"Winfree, Juwann\",\"draft_pick\":\"14\",\"college\":\"Colorado\",\"rotowire_id\":\"13664\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"team\":\"GBP\",\"cbs_id\":\"3116589\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14264\",\"stats_id\":\"32020\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14268\",\"draft_team\":\"TEN\",\"birthdate\":\"908168400\",\"name\":\"Long, David\",\"draft_pick\":\"15\",\"college\":\"West Virginia\",\"rotowire_id\":\"13486\",\"height\":\"71\",\"jersey\":\"51\",\"sportsdata_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"team\":\"TEN\",\"cbs_id\":\"2179486\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14176\",\"stats_id\":\"32022\",\"position\":\"DT\",\"stats_global_id\":\"837920\",\"weight\":\"295\",\"id\":\"14269\",\"draft_team\":\"MIN\",\"birthdate\":\"838011600\",\"name\":\"Watts, Armon\",\"draft_pick\":\"17\",\"college\":\"Arkansas\",\"rotowire_id\":\"13776\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"team\":\"MIN\",\"cbs_id\":\"2141939\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14266\",\"stats_id\":\"32023\",\"position\":\"S\",\"stats_global_id\":\"840324\",\"weight\":\"198\",\"id\":\"14270\",\"draft_team\":\"MIN\",\"birthdate\":\"822718800\",\"name\":\"Epps, Marcus\",\"draft_pick\":\"18\",\"college\":\"Wyoming\",\"rotowire_id\":\"13985\",\"height\":\"72\",\"jersey\":\"22\",\"sportsdata_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"team\":\"PHI\",\"cbs_id\":\"3116592\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14181\",\"stats_id\":\"32027\",\"position\":\"CB\",\"stats_global_id\":\"865794\",\"weight\":\"187\",\"id\":\"14271\",\"draft_team\":\"HOU\",\"birthdate\":\"818571600\",\"name\":\"Crawford, Xavier\",\"draft_pick\":\"22\",\"college\":\"Central Michigan\",\"rotowire_id\":\"13430\",\"height\":\"71\",\"jersey\":\"28\",\"sportsdata_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"team\":\"FA\",\"cbs_id\":\"2180312\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14222\",\"stats_id\":\"32028\",\"position\":\"CB\",\"stats_global_id\":\"868171\",\"weight\":\"198\",\"id\":\"14272\",\"draft_team\":\"NYJ\",\"birthdate\":\"837752400\",\"name\":\"Austin, Blessuan\",\"draft_pick\":\"23\",\"college\":\"Rutgers\",\"rotowire_id\":\"13471\",\"height\":\"73\",\"jersey\":\"31\",\"sportsdata_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"team\":\"NYJ\",\"cbs_id\":\"2179428\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14269\",\"stats_id\":\"32031\",\"position\":\"DE\",\"stats_global_id\":\"835500\",\"weight\":\"252\",\"id\":\"14274\",\"draft_team\":\"IND\",\"birthdate\":\"811054800\",\"name\":\"Green, Gerri\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"13818\",\"height\":\"76\",\"jersey\":\"91\",\"sportsdata_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"team\":\"FA\",\"cbs_id\":\"2139825\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14190\",\"stats_id\":\"32032\",\"position\":\"LB\",\"stats_global_id\":\"877886\",\"weight\":\"245\",\"id\":\"14275\",\"draft_team\":\"LAC\",\"birthdate\":\"845182800\",\"name\":\"Egbule, Emeke\",\"draft_pick\":\"27\",\"college\":\"Houston\",\"rotowire_id\":\"13855\",\"height\":\"74\",\"jersey\":\"51\",\"sportsdata_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"team\":\"LAC\",\"cbs_id\":\"2180702\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14270\",\"stats_id\":\"32033\",\"position\":\"CB\",\"stats_global_id\":\"881954\",\"weight\":\"188\",\"id\":\"14276\",\"draft_team\":\"KCC\",\"birthdate\":\"856155600\",\"name\":\"Fenton, Rashad\",\"draft_pick\":\"28\",\"college\":\"South Carolina\",\"rotowire_id\":\"13703\",\"height\":\"71\",\"jersey\":\"27\",\"sportsdata_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"team\":\"KCC\",\"cbs_id\":\"2185052\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14271\",\"stats_id\":\"32035\",\"position\":\"WR\",\"stats_global_id\":\"821868\",\"weight\":\"191\",\"id\":\"14277\",\"draft_team\":\"ATL\",\"birthdate\":\"839912400\",\"name\":\"Green, Marcus\",\"draft_pick\":\"30\",\"college\":\"Louisiana-Monroe\",\"rotowire_id\":\"13979\",\"height\":\"68\",\"jersey\":\"3\",\"sportsdata_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"team\":\"FA\",\"cbs_id\":\"2181212\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14273\",\"stats_id\":\"32037\",\"position\":\"CB\",\"stats_global_id\":\"879946\",\"weight\":\"180\",\"id\":\"14278\",\"draft_team\":\"CHI\",\"birthdate\":\"844750800\",\"name\":\"Shelley, Duke\",\"draft_pick\":\"32\",\"college\":\"Kansas State\",\"rotowire_id\":\"13986\",\"height\":\"69\",\"jersey\":\"20\",\"sportsdata_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"team\":\"CHI\",\"cbs_id\":\"3116651\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14274\",\"stats_id\":\"32039\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14279\",\"draft_team\":\"PIT\",\"birthdate\":\"871102800\",\"name\":\"Gilbert, Ulysees\",\"draft_pick\":\"34\",\"college\":\"Akron\",\"rotowire_id\":\"13632\",\"height\":\"73\",\"jersey\":\"54\",\"sportsdata_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"team\":\"PIT\",\"cbs_id\":\"2188808\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14275\",\"stats_id\":\"32040\",\"position\":\"WR\",\"stats_global_id\":\"866578\",\"weight\":\"166\",\"id\":\"14280\",\"draft_team\":\"TBB\",\"birthdate\":\"870325200\",\"name\":\"Miller, Scott\",\"draft_pick\":\"35\",\"college\":\"Bowling Green\",\"rotowire_id\":\"13987\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"team\":\"TBB\",\"cbs_id\":\"2180075\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14278\",\"stats_id\":\"32045\",\"position\":\"S\",\"stats_global_id\":\"835844\",\"weight\":\"208\",\"id\":\"14283\",\"draft_team\":\"DAL\",\"birthdate\":\"793342800\",\"name\":\"Wilson, Donovan\",\"draft_pick\":\"40\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13890\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"team\":\"DAL\",\"cbs_id\":\"2139883\"},{\"draft_year\":\"2019\",\"draft_round\":\"6\",\"rotoworld_id\":\"14178\",\"stats_id\":\"32046\",\"position\":\"RB\",\"stats_global_id\":\"1108841\",\"weight\":\"200\",\"id\":\"14284\",\"draft_team\":\"KCC\",\"birthdate\":\"855723600\",\"name\":\"Thompson, Darwin\",\"draft_pick\":\"42\",\"college\":\"Utah State\",\"rotowire_id\":\"13476\",\"height\":\"68\",\"jersey\":\"34\",\"sportsdata_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"team\":\"KCC\",\"cbs_id\":\"2962970\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14161\",\"stats_id\":\"32049\",\"position\":\"CB\",\"stats_global_id\":\"884277\",\"weight\":\"200\",\"id\":\"14286\",\"draft_team\":\"MIN\",\"birthdate\":\"842504400\",\"name\":\"Boyd, Kris\",\"draft_pick\":\"3\",\"college\":\"Texas\",\"rotowire_id\":\"13797\",\"height\":\"71\",\"jersey\":\"29\",\"sportsdata_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"team\":\"MIN\",\"cbs_id\":\"2186481\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14282\",\"stats_id\":\"32052\",\"position\":\"RB\",\"stats_global_id\":\"835830\",\"weight\":\"235\",\"id\":\"14287\",\"draft_team\":\"HOU\",\"birthdate\":\"800254800\",\"name\":\"Gillaspia, Cullen\",\"draft_pick\":\"6\",\"college\":\"Texas A&M\",\"rotowire_id\":\"13988\",\"height\":\"74\",\"jersey\":\"44\",\"sportsdata_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"team\":\"HOU\",\"cbs_id\":\"3116625\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14283\",\"stats_id\":\"32054\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14289\",\"draft_team\":\"CHI\",\"birthdate\":\"846738000\",\"name\":\"Whyte, Kerrith\",\"draft_pick\":\"8\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"13454\",\"height\":\"70\",\"sportsdata_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"team\":\"FA\",\"cbs_id\":\"2183545\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14286\",\"stats_id\":\"32057\",\"position\":\"DE\",\"stats_global_id\":\"890731\",\"weight\":\"253\",\"id\":\"14291\",\"draft_team\":\"BUF\",\"birthdate\":\"860130000\",\"name\":\"Johnson, Darryl\",\"draft_pick\":\"11\",\"college\":\"North Carolina A&T\",\"rotowire_id\":\"13989\",\"height\":\"78\",\"jersey\":\"92\",\"sportsdata_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"team\":\"BUF\",\"cbs_id\":\"2132701\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14233\",\"stats_id\":\"32058\",\"position\":\"LB\",\"stats_global_id\":\"822442\",\"weight\":\"241\",\"id\":\"14292\",\"draft_team\":\"GBP\",\"birthdate\":\"820386000\",\"name\":\"Summers, Ty\",\"draft_pick\":\"12\",\"college\":\"TCU\",\"rotowire_id\":\"13883\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"team\":\"GBP\",\"cbs_id\":\"2131833\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14162\",\"stats_id\":\"32059\",\"position\":\"CB\",\"stats_global_id\":\"830262\",\"weight\":\"182\",\"id\":\"14293\",\"draft_team\":\"WAS\",\"birthdate\":\"809413200\",\"name\":\"Moreland, Jimmy\",\"draft_pick\":\"13\",\"college\":\"James Madison\",\"rotowire_id\":\"13603\",\"height\":\"71\",\"jersey\":\"32\",\"sportsdata_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"team\":\"WAS\",\"cbs_id\":\"2137635\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14287\",\"stats_id\":\"32060\",\"position\":\"TE\",\"stats_global_id\":\"836094\",\"weight\":\"251\",\"id\":\"14294\",\"draft_team\":\"BUF\",\"birthdate\":\"804574800\",\"name\":\"Sweeney, Tommy\",\"draft_pick\":\"14\",\"college\":\"Boston College\",\"rotowire_id\":\"13667\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"team\":\"BUF\",\"cbs_id\":\"2139106\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14292\",\"stats_id\":\"32065\",\"position\":\"RB\",\"stats_global_id\":\"866956\",\"weight\":\"240\",\"id\":\"14295\",\"draft_team\":\"MIA\",\"birthdate\":\"838616400\",\"name\":\"Cox, Chandler\",\"draft_pick\":\"19\",\"college\":\"Auburn\",\"rotowire_id\":\"13991\",\"height\":\"73\",\"jersey\":\"27\",\"sportsdata_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"team\":\"MIA\",\"cbs_id\":\"3116654\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14293\",\"stats_id\":\"32067\",\"position\":\"DT\",\"stats_global_id\":\"835157\",\"weight\":\"320\",\"id\":\"14296\",\"draft_team\":\"JAC\",\"birthdate\":\"811400400\",\"name\":\"Russell, Dontavius\",\"draft_pick\":\"21\",\"college\":\"Auburn\",\"rotowire_id\":\"13542\",\"height\":\"75\",\"jersey\":\"98\",\"sportsdata_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"team\":\"JAC\",\"cbs_id\":\"2139800\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14294\",\"stats_id\":\"32068\",\"position\":\"WR\",\"stats_global_id\":\"886186\",\"weight\":\"182\",\"id\":\"14297\",\"draft_team\":\"SEA\",\"birthdate\":\"758782800\",\"name\":\"Ursua, John\",\"draft_pick\":\"22\",\"college\":\"Hawaii\",\"rotowire_id\":\"13470\",\"height\":\"70\",\"jersey\":\"15\",\"sportsdata_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"team\":\"FA\",\"cbs_id\":\"3116657\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14295\",\"stats_id\":\"32069\",\"position\":\"WR\",\"stats_global_id\":\"879072\",\"weight\":\"185\",\"id\":\"14298\",\"draft_team\":\"CAR\",\"birthdate\":\"846046800\",\"name\":\"Godwin, Terry\",\"draft_pick\":\"23\",\"college\":\"Georgia\",\"rotowire_id\":\"13619\",\"height\":\"71\",\"jersey\":\"17\",\"sportsdata_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"team\":\"JAC\",\"cbs_id\":\"2180462\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14219\",\"stats_id\":\"32074\",\"position\":\"DT\",\"stats_global_id\":\"842184\",\"weight\":\"291\",\"id\":\"14301\",\"draft_team\":\"LAC\",\"birthdate\":\"841640400\",\"name\":\"Broughton, Cortez\",\"draft_pick\":\"28\",\"college\":\"Cincinnati\",\"rotowire_id\":\"13706\",\"height\":\"74\",\"jersey\":\"91\",\"sportsdata_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"team\":\"LAC\",\"cbs_id\":\"2144909\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14297\",\"stats_id\":\"32075\",\"position\":\"S\",\"stats_global_id\":\"836171\",\"weight\":\"201\",\"id\":\"14302\",\"draft_team\":\"LAR\",\"birthdate\":\"800686800\",\"name\":\"Scott, Nick\",\"draft_pick\":\"29\",\"college\":\"Penn State\",\"rotowire_id\":\"13958\",\"height\":\"71\",\"jersey\":\"33\",\"sportsdata_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"team\":\"LAR\",\"cbs_id\":\"2139311\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14207\",\"stats_id\":\"32076\",\"position\":\"LB\",\"stats_global_id\":\"821940\",\"weight\":\"238\",\"id\":\"14303\",\"draft_team\":\"NOS\",\"birthdate\":\"805352400\",\"name\":\"Elliss, Kaden\",\"draft_pick\":\"30\",\"college\":\"Idaho\",\"rotowire_id\":\"13953\",\"height\":\"74\",\"jersey\":\"55\",\"sportsdata_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"team\":\"NOS\",\"cbs_id\":\"2132125\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14299\",\"stats_id\":\"32079\",\"position\":\"WR\",\"stats_global_id\":\"867071\",\"weight\":\"203\",\"id\":\"14305\",\"draft_team\":\"MIN\",\"birthdate\":\"858574800\",\"name\":\"Johnson, Olabisi\",\"draft_pick\":\"33\",\"college\":\"Colorado State\",\"rotowire_id\":\"13660\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"team\":\"MIN\",\"cbs_id\":\"2180922\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14198\",\"stats_id\":\"32081\",\"position\":\"DE\",\"stats_global_id\":\"838305\",\"weight\":\"280\",\"id\":\"14306\",\"draft_team\":\"ARI\",\"birthdate\":\"831272400\",\"name\":\"Dogbe, Michael\",\"draft_pick\":\"35\",\"college\":\"Temple\",\"rotowire_id\":\"13709\",\"height\":\"75\",\"jersey\":\"91\",\"sportsdata_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"team\":\"ARI\",\"cbs_id\":\"2141616\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14205\",\"stats_id\":\"32083\",\"position\":\"LB\",\"stats_global_id\":\"839005\",\"weight\":\"232\",\"id\":\"14307\",\"draft_team\":\"LAR\",\"birthdate\":\"815288400\",\"name\":\"Allen, Dakota\",\"draft_pick\":\"37\",\"college\":\"Texas Tech\",\"rotowire_id\":\"13831\",\"height\":\"73\",\"jersey\":\"53\",\"sportsdata_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"team\":\"JAC\",\"cbs_id\":\"2142032\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14208\",\"stats_id\":\"32084\",\"position\":\"CB\",\"stats_global_id\":\"837945\",\"weight\":\"202\",\"id\":\"14308\",\"draft_team\":\"NEP\",\"birthdate\":\"835160400\",\"name\":\"Webster, Ken\",\"draft_pick\":\"38\",\"college\":\"Mississippi\",\"rotowire_id\":\"13889\",\"height\":\"71\",\"jersey\":\"47\",\"sportsdata_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"team\":\"SFO\",\"cbs_id\":\"2141956\"},{\"draft_year\":\"2019\",\"draft_round\":\"7\",\"rotoworld_id\":\"14290\",\"stats_id\":\"32062\",\"position\":\"LB\",\"stats_global_id\":\"893248\",\"weight\":\"253\",\"id\":\"14310\",\"draft_team\":\"OAK\",\"birthdate\":\"863154000\",\"name\":\"Bell, Quinton\",\"draft_pick\":\"16\",\"college\":\"Prairie View A&M\",\"rotowire_id\":\"13990\",\"height\":\"76\",\"jersey\":\"57\",\"sportsdata_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"team\":\"FA\",\"cbs_id\":\"3116653\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14323\",\"stats_id\":\"32211\",\"position\":\"WR\",\"stats_global_id\":\"838603\",\"weight\":\"220\",\"id\":\"14313\",\"draft_team\":\"FA\",\"birthdate\":\"841122000\",\"name\":\"Butler, Emmanuel\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"13640\",\"height\":\"76\",\"jersey\":\"17\",\"sportsdata_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"team\":\"FA\",\"cbs_id\":\"2142440\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14664\",\"stats_id\":\"32475\",\"position\":\"RB\",\"stats_global_id\":\"888716\",\"weight\":\"210\",\"id\":\"14314\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Anderson, Bruce\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13598\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"team\":\"FA\",\"cbs_id\":\"2190739\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14020\",\"stats_id\":\"32292\",\"position\":\"WR\",\"stats_global_id\":\"1166036\",\"weight\":\"215\",\"id\":\"14315\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Dulin, Ashton\",\"college\":\"Malone University\",\"rotowire_id\":\"13854\",\"height\":\"73\",\"jersey\":\"16\",\"sportsdata_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"team\":\"IND\",\"cbs_id\":\"3116796\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14334\",\"stats_id\":\"32293\",\"position\":\"WR\",\"stats_global_id\":\"878935\",\"weight\":\"182\",\"id\":\"14316\",\"draft_team\":\"FA\",\"birthdate\":\"836542800\",\"name\":\"Hart, Penny\",\"college\":\"Georgia State\",\"rotowire_id\":\"13616\",\"height\":\"68\",\"jersey\":\"19\",\"sportsdata_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"team\":\"SEA\",\"cbs_id\":\"2183625\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14212\",\"stats_id\":\"32342\",\"position\":\"WR\",\"stats_global_id\":\"830084\",\"weight\":\"215\",\"id\":\"14317\",\"draft_team\":\"FA\",\"birthdate\":\"827384400\",\"name\":\"Doss, Keelan\",\"college\":\"UC Davis\",\"rotowire_id\":\"13479\",\"height\":\"75\",\"jersey\":\"89\",\"sportsdata_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"team\":\"LVR\",\"cbs_id\":\"2137866\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14312\",\"stats_id\":\"32338\",\"position\":\"WR\",\"stats_global_id\":\"865560\",\"weight\":\"228\",\"id\":\"14318\",\"draft_team\":\"FA\",\"birthdate\":\"853045200\",\"name\":\"Ferguson, Jazz\",\"college\":\"Northwestern State\",\"rotowire_id\":\"13434\",\"height\":\"77\",\"jersey\":\"87\",\"sportsdata_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"team\":\"FA\",\"cbs_id\":\"2180620\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14462\",\"stats_id\":\"32225\",\"position\":\"TE\",\"stats_global_id\":\"824428\",\"weight\":\"255\",\"id\":\"14319\",\"draft_team\":\"FA\",\"birthdate\":\"832136400\",\"name\":\"Beck, Andrew\",\"college\":\"Texas\",\"rotowire_id\":\"13713\",\"height\":\"75\",\"jersey\":\"83\",\"sportsdata_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"team\":\"DEN\",\"cbs_id\":\"2131774\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13437\",\"stats_id\":\"31227\",\"position\":\"WR\",\"stats_global_id\":\"746896\",\"weight\":\"182\",\"id\":\"14320\",\"draft_team\":\"FA\",\"birthdate\":\"775803600\",\"name\":\"Badet, Jeff\",\"college\":\"Oklahoma\",\"rotowire_id\":\"12739\",\"height\":\"71\",\"jersey\":\"84\",\"sportsdata_id\":\"e98ce252-583a-4c74-a718-d38f1ba5793d\",\"team\":\"WAS\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14335\",\"stats_id\":\"32367\",\"position\":\"WR\",\"stats_global_id\":\"833514\",\"weight\":\"205\",\"id\":\"14321\",\"draft_team\":\"FA\",\"birthdate\":\"821336400\",\"name\":\"Thompson, Cody\",\"college\":\"Toledo\",\"rotowire_id\":\"13490\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"team\":\"FA\",\"cbs_id\":\"2136709\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14202\",\"stats_id\":\"32403\",\"position\":\"LB\",\"stats_global_id\":\"836191\",\"weight\":\"242\",\"id\":\"14322\",\"draft_team\":\"FA\",\"birthdate\":\"839826000\",\"name\":\"Edwards, T.J.\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13460\",\"height\":\"73\",\"jersey\":\"57\",\"sportsdata_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"team\":\"PHI\",\"cbs_id\":\"2139322\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14321\",\"stats_id\":\"32261\",\"position\":\"TE\",\"stats_global_id\":\"886225\",\"weight\":\"255\",\"id\":\"14324\",\"draft_team\":\"FA\",\"birthdate\":\"786171600\",\"name\":\"Raymond, Dax\",\"college\":\"Utah State\",\"rotowire_id\":\"13440\",\"height\":\"77\",\"jersey\":\"46\",\"sportsdata_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"team\":\"FA\",\"cbs_id\":\"2189163\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14328\",\"stats_id\":\"32105\",\"position\":\"S\",\"stats_global_id\":\"868228\",\"weight\":\"209\",\"id\":\"14328\",\"draft_team\":\"FA\",\"birthdate\":\"849762000\",\"name\":\"Wingard, Andrew\",\"college\":\"Wyoming\",\"rotowire_id\":\"13768\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"team\":\"JAC\",\"cbs_id\":\"2181092\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14495\",\"stats_id\":\"32244\",\"position\":\"WR\",\"stats_global_id\":\"830113\",\"weight\":\"212\",\"id\":\"14329\",\"draft_team\":\"FA\",\"birthdate\":\"826434000\",\"name\":\"White Jr., Reggie\",\"college\":\"Monmouth\",\"rotowire_id\":\"13926\",\"height\":\"74\",\"jersey\":\"13\",\"sportsdata_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"team\":\"FA\",\"cbs_id\":\"3116826\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14591\",\"stats_id\":\"32378\",\"position\":\"WR\",\"stats_global_id\":\"831003\",\"weight\":\"186\",\"id\":\"14330\",\"draft_team\":\"FA\",\"birthdate\":\"815202000\",\"name\":\"Shepherd, Darrius\",\"college\":\"North Dakota State\",\"rotowire_id\":\"13924\",\"height\":\"71\",\"jersey\":\"10\",\"sportsdata_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"team\":\"GBP\",\"cbs_id\":\"3116850\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14786\",\"stats_id\":\"32608\",\"position\":\"RB\",\"stats_global_id\":\"839043\",\"weight\":\"208\",\"id\":\"14331\",\"draft_team\":\"FA\",\"birthdate\":\"825397200\",\"name\":\"Johnson, D'Ernest\",\"college\":\"South Florida\",\"rotowire_id\":\"12678\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"team\":\"CLE\",\"cbs_id\":\"3117165\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14319\",\"stats_id\":\"32352\",\"position\":\"TE\",\"stats_global_id\":\"867993\",\"weight\":\"247\",\"id\":\"14332\",\"draft_team\":\"FA\",\"birthdate\":\"831618000\",\"name\":\"Conrad, C.J.\",\"college\":\"Kentucky\",\"rotowire_id\":\"13687\",\"height\":\"76\",\"jersey\":\"47\",\"sportsdata_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"team\":\"FA\",\"cbs_id\":\"2180481\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14662\",\"stats_id\":\"32473\",\"position\":\"RB\",\"stats_global_id\":\"788307\",\"weight\":\"218\",\"id\":\"14333\",\"draft_team\":\"FA\",\"birthdate\":\"802328400\",\"name\":\"Hills, Wes\",\"college\":\"Slippery Rock\",\"rotowire_id\":\"13665\",\"height\":\"72\",\"jersey\":\"49\",\"sportsdata_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"team\":\"FA\",\"cbs_id\":\"2132445\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14037\",\"birthdate\":\"787208400\",\"draft_team\":\"FA\",\"stats_id\":\"31831\",\"position\":\"PK\",\"name\":\"Fry, Elliott\",\"college\":\"South Carolina\",\"stats_global_id\":\"744596\",\"height\":\"72\",\"rotowire_id\":\"13943\",\"weight\":\"189\",\"sportsdata_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"id\":\"14335\",\"team\":\"ATL\",\"cbs_id\":\"2079797\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14450\",\"stats_id\":\"32200\",\"position\":\"WR\",\"stats_global_id\":\"833478\",\"weight\":\"195\",\"id\":\"14336\",\"draft_team\":\"FA\",\"birthdate\":\"819694800\",\"name\":\"Johnson, Jon'Vea\",\"college\":\"Toledo\",\"rotowire_id\":\"13912\",\"height\":\"72\",\"jersey\":\"81\",\"sportsdata_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"team\":\"FA\",\"cbs_id\":\"2136691\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14311\",\"stats_id\":\"32201\",\"position\":\"WR\",\"stats_global_id\":\"884567\",\"weight\":\"212\",\"id\":\"14337\",\"draft_team\":\"FA\",\"birthdate\":\"865659600\",\"name\":\"Guyton, Jalen\",\"college\":\"North Texas\",\"rotowire_id\":\"13575\",\"height\":\"73\",\"jersey\":\"15\",\"sportsdata_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"team\":\"LAC\",\"cbs_id\":\"2186663\"},{\"draft_year\":\"2019\",\"birthdate\":\"816325200\",\"draft_team\":\"FA\",\"stats_id\":\"32238\",\"position\":\"RB\",\"name\":\"Hilliman, Jon\",\"college\":\"Rutgers\",\"stats_global_id\":\"836057\",\"height\":\"72\",\"rotowire_id\":\"14082\",\"jersey\":\"23\",\"weight\":\"226\",\"sportsdata_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"id\":\"14338\",\"team\":\"FA\",\"cbs_id\":\"3116824\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12216\",\"stats_id\":\"30111\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"178\",\"id\":\"14339\",\"draft_team\":\"FA\",\"birthdate\":\"755067600\",\"name\":\"Grayson, Cyril\",\"college\":\"Louisiana State\",\"rotowire_id\":\"12121\",\"height\":\"71\",\"jersey\":\"15\",\"sportsdata_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14320\",\"stats_id\":\"32456\",\"position\":\"TE\",\"stats_global_id\":\"875649\",\"weight\":\"240\",\"id\":\"14341\",\"draft_team\":\"FA\",\"birthdate\":\"871707600\",\"name\":\"Parham, Donald\",\"college\":\"Stetson University\",\"rotowire_id\":\"13602\",\"height\":\"80\",\"jersey\":\"89\",\"sportsdata_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"team\":\"LAC\",\"cbs_id\":\"2183713\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13539\",\"birthdate\":\"834210000\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Blake, Christian\",\"college\":\"Northern Illinois\",\"stats_global_id\":\"837503\",\"height\":\"73\",\"rotowire_id\":\"13083\",\"jersey\":\"13\",\"weight\":\"181\",\"sportsdata_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"id\":\"14342\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14325\",\"birthdate\":\"844664400\",\"draft_team\":\"FA\",\"stats_id\":\"32464\",\"position\":\"QB\",\"name\":\"Dolegala, Jacob\",\"college\":\"Central Connecticut State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"13925\",\"weight\":\"235\",\"sportsdata_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"id\":\"14344\",\"team\":\"FA\",\"cbs_id\":\"3117019\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14082\",\"stats_id\":\"31832\",\"position\":\"WR\",\"stats_global_id\":\"739628\",\"weight\":\"196\",\"id\":\"14348\",\"draft_team\":\"FA\",\"birthdate\":\"809154000\",\"name\":\"Hyman, Ishmael\",\"college\":\"James Madison\",\"rotowire_id\":\"13967\",\"height\":\"72\",\"jersey\":\"16\",\"sportsdata_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"team\":\"FA\",\"cbs_id\":\"3116376\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13478\",\"stats_id\":\"31280\",\"position\":\"RB\",\"stats_global_id\":\"744162\",\"weight\":\"230\",\"id\":\"14350\",\"draft_team\":\"FA\",\"birthdate\":\"789022800\",\"name\":\"Chunn, Jordan\",\"college\":\"Troy\",\"rotowire_id\":\"12734\",\"height\":\"72\",\"jersey\":\"46\",\"sportsdata_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"team\":\"FA\"},{\"draft_year\":\"2017\",\"birthdate\":\"754722000\",\"draft_team\":\"FA\",\"stats_id\":\"30901\",\"position\":\"WR\",\"name\":\"Brown, Fred\",\"college\":\"Mississippi State\",\"stats_global_id\":\"686800\",\"height\":\"73\",\"rotowire_id\":\"12291\",\"jersey\":\"19\",\"weight\":\"195\",\"sportsdata_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"id\":\"14352\",\"team\":\"DEN\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13609\",\"stats_id\":\"31427\",\"position\":\"TE\",\"stats_global_id\":\"1115710\",\"weight\":\"251\",\"id\":\"14356\",\"draft_team\":\"FA\",\"birthdate\":\"799390800\",\"name\":\"Keizer, Nick\",\"college\":\"Grand Valley State\",\"rotowire_id\":\"13126\",\"height\":\"76\",\"jersey\":\"48\",\"sportsdata_id\":\"cafbcd5f-8b40-444e-baec-a48f49d8c5f0\",\"team\":\"KCC\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14305\",\"stats_id\":\"32138\",\"position\":\"QB\",\"stats_global_id\":\"865844\",\"weight\":\"210\",\"id\":\"14358\",\"draft_team\":\"FA\",\"birthdate\":\"829198800\",\"name\":\"Browning, Jake\",\"college\":\"Washington\",\"rotowire_id\":\"13504\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"team\":\"FA\",\"cbs_id\":\"2180355\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14032\",\"stats_id\":\"31826\",\"position\":\"RB\",\"stats_global_id\":\"820601\",\"weight\":\"255\",\"id\":\"14359\",\"draft_team\":\"FA\",\"birthdate\":\"787467600\",\"name\":\"Johnson, Jakob\",\"college\":\"Tennessee\",\"rotowire_id\":\"13931\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"team\":\"NEP\",\"cbs_id\":\"3114047\"},{\"draft_year\":\"2017\",\"rotoworld_id\":\"12569\",\"stats_id\":\"30430\",\"position\":\"WR\",\"stats_global_id\":\"746191\",\"weight\":\"200\",\"id\":\"14365\",\"draft_team\":\"FA\",\"birthdate\":\"770101200\",\"name\":\"Patton, Andre\",\"college\":\"Rutgers\",\"rotowire_id\":\"12539\",\"height\":\"74\",\"jersey\":\"15\",\"sportsdata_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14338\",\"stats_id\":\"32543\",\"position\":\"TE\",\"stats_global_id\":\"820720\",\"weight\":\"255\",\"id\":\"14367\",\"draft_team\":\"FA\",\"birthdate\":\"798354000\",\"name\":\"Helm, Daniel\",\"college\":\"Duke\",\"rotowire_id\":\"13685\",\"height\":\"76\",\"jersey\":\"43\",\"sportsdata_id\":\"7f48c754-002d-4d0c-ba40-8c402f95a7c4\",\"team\":\"SFO\",\"cbs_id\":\"2131632\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14584\",\"stats_id\":\"32383\",\"position\":\"RB\",\"stats_global_id\":\"839390\",\"weight\":\"190\",\"id\":\"14368\",\"draft_team\":\"FA\",\"birthdate\":\"840258000\",\"name\":\"Walter, Austin\",\"college\":\"Rice\",\"rotowire_id\":\"14170\",\"height\":\"68\",\"jersey\":\"33\",\"sportsdata_id\":\"e25b6e0d-efa3-4425-bab6-5f846b902195\",\"team\":\"SFO\",\"cbs_id\":\"3116876\"},{\"draft_year\":\"2018\",\"birthdate\":\"784616400\",\"draft_team\":\"FA\",\"stats_id\":\"31257\",\"position\":\"TE\",\"name\":\"Hudson, Tanner\",\"college\":\"Southern Arkansas\",\"stats_global_id\":\"1115394\",\"height\":\"77\",\"rotowire_id\":\"13286\",\"jersey\":\"88\",\"weight\":\"239\",\"sportsdata_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"id\":\"14370\",\"team\":\"TBB\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11813\",\"birthdate\":\"746514000\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Holtz, J.P.\",\"college\":\"Pittsburgh\",\"stats_global_id\":\"692334\",\"height\":\"75\",\"rotowire_id\":\"11364\",\"jersey\":\"81\",\"weight\":\"255\",\"sportsdata_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"id\":\"14372\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14659\",\"stats_id\":\"32471\",\"position\":\"WR\",\"stats_global_id\":\"978040\",\"weight\":\"204\",\"id\":\"14373\",\"draft_team\":\"FA\",\"birthdate\":\"866782800\",\"name\":\"Willis, Damion\",\"college\":\"Troy\",\"rotowire_id\":\"14214\",\"height\":\"75\",\"jersey\":\"9\",\"sportsdata_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"team\":\"FA\",\"cbs_id\":\"3117021\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13792\",\"stats_id\":\"31657\",\"position\":\"DE\",\"stats_global_id\":\"832993\",\"weight\":\"295\",\"id\":\"14377\",\"draft_team\":\"FA\",\"birthdate\":\"822459600\",\"name\":\"Anderson, Abdullah\",\"college\":\"Bucknell\",\"rotowire_id\":\"13237\",\"height\":\"76\",\"jersey\":\"76\",\"sportsdata_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"team\":\"MIN\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13885\",\"stats_id\":\"31753\",\"position\":\"LB\",\"stats_global_id\":\"836080\",\"weight\":\"204\",\"id\":\"14379\",\"draft_team\":\"FA\",\"birthdate\":\"836197200\",\"name\":\"Woods, Josh\",\"college\":\"Maryland\",\"rotowire_id\":\"13361\",\"height\":\"73\",\"jersey\":\"55\",\"sportsdata_id\":\"abdf27dc-a54d-427c-a745-173f1c485292\",\"team\":\"CHI\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13728\",\"stats_id\":\"31562\",\"position\":\"CB\",\"stats_global_id\":\"746240\",\"weight\":\"205\",\"id\":\"14380\",\"draft_team\":\"FA\",\"birthdate\":\"808462800\",\"name\":\"Henderson, Trayvon\",\"college\":\"Hawaii\",\"rotowire_id\":\"12791\",\"height\":\"72\",\"jersey\":\"41\",\"sportsdata_id\":\"7917b396-b7e0-4722-9a5a-7c608dd0a6ff\",\"team\":\"CIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32220\",\"position\":\"LB\",\"name\":\"Reed, Malik\",\"college\":\"Nevada\",\"stats_global_id\":\"821593\",\"height\":\"74\",\"rotowire_id\":\"13907\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"id\":\"14384\",\"team\":\"DEN\",\"cbs_id\":\"2131312\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13783\",\"stats_id\":\"31643\",\"position\":\"PK\",\"stats_global_id\":\"728263\",\"weight\":\"258\",\"id\":\"14387\",\"draft_team\":\"FA\",\"birthdate\":\"809413200\",\"name\":\"Santoso, Ryan\",\"college\":\"Minnesota\",\"rotowire_id\":\"13526\",\"height\":\"77\",\"jersey\":\"2\",\"sportsdata_id\":\"d58166e2-24ee-4dd2-ae22-36b05634eb6d\",\"team\":\"NYG\"},{\"draft_year\":\"2016\",\"rotoworld_id\":\"11986\",\"stats_id\":\"29933\",\"position\":\"S\",\"stats_global_id\":\"699216\",\"weight\":\"200\",\"id\":\"14394\",\"draft_team\":\"FA\",\"birthdate\":\"777013200\",\"name\":\"Milligan, Rolan\",\"college\":\"Toledo\",\"rotowire_id\":\"11374\",\"height\":\"70\",\"jersey\":\"42\",\"sportsdata_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"team\":\"IND\",\"cbs_id\":\"2237082\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13864\",\"stats_id\":\"31733\",\"position\":\"S\",\"stats_global_id\":\"820730\",\"weight\":\"210\",\"id\":\"14398\",\"draft_team\":\"FA\",\"birthdate\":\"818917200\",\"name\":\"Parker, Steven\",\"college\":\"Oklahoma\",\"rotowire_id\":\"13342\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"team\":\"DAL\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14304\",\"stats_id\":\"32440\",\"position\":\"DE\",\"stats_global_id\":\"871367\",\"weight\":\"280\",\"id\":\"14400\",\"draft_team\":\"FA\",\"birthdate\":\"874040400\",\"name\":\"Ledbetter, Jonathan\",\"college\":\"Georgia\",\"rotowire_id\":\"13787\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"team\":\"MIA\",\"cbs_id\":\"2180466\"},{\"draft_year\":\"2019\",\"birthdate\":\"730357200\",\"draft_team\":\"FA\",\"stats_id\":\"31815\",\"position\":\"LB\",\"name\":\"Eguavoen, Sam\",\"college\":\"Texas Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13561\",\"jersey\":\"49\",\"weight\":\"225\",\"sportsdata_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"id\":\"14401\",\"team\":\"MIA\",\"cbs_id\":\"3103639\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14174\",\"stats_id\":\"32490\",\"position\":\"DE\",\"stats_global_id\":\"868212\",\"weight\":\"261\",\"id\":\"14405\",\"draft_team\":\"FA\",\"birthdate\":\"850885200\",\"name\":\"Granderson, Carl\",\"college\":\"Wyoming\",\"rotowire_id\":\"13784\",\"height\":\"77\",\"jersey\":\"96\",\"sportsdata_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"team\":\"NOS\",\"cbs_id\":\"2181068\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13989\",\"stats_id\":\"31810\",\"position\":\"CB\",\"stats_global_id\":\"870932\",\"weight\":\"200\",\"id\":\"14411\",\"draft_team\":\"FA\",\"birthdate\":\"740034000\",\"name\":\"Campbell, Tevaughn\",\"college\":\"Regina, Canada\",\"rotowire_id\":\"13555\",\"height\":\"72\",\"jersey\":\"37\",\"sportsdata_id\":\"68b3f7e5-cc33-41e1-833c-8f48cb70bf72\",\"team\":\"LAC\"},{\"draft_year\":\"2015\",\"rotoworld_id\":\"10782\",\"birthdate\":\"755240400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Singleton, Alex\",\"college\":\"Montana State\",\"stats_global_id\":\"608786\",\"height\":\"74\",\"rotowire_id\":\"10811\",\"jersey\":\"49\",\"weight\":\"240\",\"sportsdata_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"id\":\"14412\",\"team\":\"PHI\"},{\"draft_year\":\"2016\",\"birthdate\":\"723704400\",\"draft_team\":\"FA\",\"stats_id\":\"29915\",\"position\":\"PK\",\"name\":\"Brown, Jon\",\"college\":\"Louisville\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"11738\",\"jersey\":\"3\",\"weight\":\"202\",\"sportsdata_id\":\"1a59e864-5282-4d94-b678-8537d524e181\",\"id\":\"14419\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14561\",\"stats_id\":\"32344\",\"position\":\"RB\",\"stats_global_id\":\"880322\",\"weight\":\"240\",\"id\":\"14420\",\"draft_team\":\"FA\",\"birthdate\":\"836888400\",\"name\":\"Ingold, Alec\",\"college\":\"Wisconsin\",\"rotowire_id\":\"13806\",\"height\":\"73\",\"jersey\":\"45\",\"sportsdata_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"team\":\"LVR\",\"cbs_id\":\"2183930\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13786\",\"stats_id\":\"31648\",\"position\":\"DE\",\"stats_global_id\":\"820764\",\"weight\":\"255\",\"id\":\"14421\",\"draft_team\":\"FA\",\"birthdate\":\"811314000\",\"name\":\"Harris, Trent\",\"college\":\"Miami\",\"rotowire_id\":\"13187\",\"height\":\"74\",\"jersey\":\"45\",\"sportsdata_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"team\":\"NYG\"},{\"draft_year\":\"2018\",\"rotoworld_id\":\"13405\",\"stats_id\":\"31582\",\"position\":\"S\",\"stats_global_id\":\"837722\",\"weight\":\"200\",\"id\":\"14434\",\"draft_team\":\"FA\",\"birthdate\":\"841294800\",\"name\":\"Reaves, Jeremy\",\"college\":\"South Alabama\",\"rotowire_id\":\"12827\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"team\":\"WAS\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"13496\",\"birthdate\":\"820731600\",\"draft_team\":\"FA\",\"stats_id\":\"31302\",\"position\":\"RB\",\"name\":\"Bonnafon, Reggie\",\"stats_global_id\":\"830860\",\"height\":\"72\",\"rotowire_id\":\"13233\",\"jersey\":\"39\",\"weight\":\"215\",\"sportsdata_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"id\":\"14435\",\"team\":\"CAR\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14350\",\"stats_id\":\"32101\",\"position\":\"WR\",\"stats_global_id\":\"883432\",\"weight\":\"194\",\"id\":\"14440\",\"draft_team\":\"FA\",\"birthdate\":\"846565200\",\"name\":\"Walker, Michael\",\"college\":\"Boston College\",\"rotowire_id\":\"14005\",\"height\":\"71\",\"jersey\":\"13\",\"sportsdata_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"team\":\"FA\",\"cbs_id\":\"3117047\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14336\",\"stats_id\":\"32356\",\"position\":\"WR\",\"stats_global_id\":\"884246\",\"weight\":\"211\",\"id\":\"14450\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Davis, Felton\",\"college\":\"Michigan State\",\"rotowire_id\":\"13850\",\"height\":\"75\",\"jersey\":\"80\",\"sportsdata_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"team\":\"FA\",\"cbs_id\":\"2186422\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14351\",\"stats_id\":\"32102\",\"position\":\"CB\",\"stats_global_id\":\"822514\",\"weight\":\"198\",\"id\":\"14456\",\"draft_team\":\"FA\",\"birthdate\":\"805438800\",\"name\":\"Watson, Brandon\",\"college\":\"Michigan\",\"rotowire_id\":\"14036\",\"height\":\"71\",\"jersey\":\"40\",\"sportsdata_id\":\"095f659a-2aaa-4961-912c-66f337755787\",\"team\":\"JAC\",\"cbs_id\":\"2131208\"},{\"draft_year\":\"2019\",\"rotoworld_id\":\"14716\",\"stats_id\":\"32541\",\"position\":\"RB\",\"stats_global_id\":\"867172\",\"weight\":\"226\",\"id\":\"14458\",\"draft_team\":\"FA\",\"birthdate\":\"840171600\",\"name\":\"Cox, Jeremy\",\"college\":\"Old Dominion\",\"rotowire_id\":\"14003\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"3eb32502-2ecd-44b9-978e-33473fdd8354\",\"team\":\"DEN\",\"cbs_id\":\"3117060\"},{\"draft_year\":\"2018\",\"birthdate\":\"813301200\",\"draft_team\":\"FA\",\"position\":\"TE\",\"name\":\"Graham, Jaeden\",\"college\":\"Yale\",\"stats_global_id\":\"832316\",\"height\":\"76\",\"rotowire_id\":\"13356\",\"jersey\":\"87\",\"weight\":\"250\",\"sportsdata_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"id\":\"14464\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"786690000\",\"draft_team\":\"FA\",\"stats_id\":\"32559\",\"position\":\"RB\",\"name\":\"Brooks-James, Tony\",\"college\":\"Oregon\",\"stats_global_id\":\"835777\",\"height\":\"69\",\"rotowire_id\":\"14237\",\"jersey\":\"46\",\"weight\":\"179\",\"sportsdata_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"id\":\"14465\",\"team\":\"FA\",\"cbs_id\":\"3117135\"},{\"draft_year\":\"2019\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"stats_id\":\"32118\",\"position\":\"LB\",\"name\":\"Phillips, Del'Shawn\",\"college\":\"Illinois\",\"stats_global_id\":\"821487\",\"height\":\"74\",\"rotowire_id\":\"14025\",\"jersey\":\"43\",\"weight\":\"230\",\"sportsdata_id\":\"a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9\",\"id\":\"14467\",\"team\":\"BUF\",\"cbs_id\":\"3116938\"},{\"draft_year\":\"2019\",\"birthdate\":\"898750800\",\"draft_team\":\"FA\",\"stats_id\":\"32411\",\"position\":\"LB\",\"name\":\"Dodson, Tyrel\",\"college\":\"Texas A&M\",\"stats_global_id\":\"922129\",\"height\":\"72\",\"rotowire_id\":\"13512\",\"jersey\":\"53\",\"weight\":\"237\",\"sportsdata_id\":\"1881d1a7-218b-4690-9065-497946d1ec1e\",\"id\":\"14472\",\"team\":\"BUF\",\"cbs_id\":\"2249181\"},{\"draft_year\":\"2015\",\"birthdate\":\"741157200\",\"draft_team\":\"FA\",\"stats_id\":\"28934\",\"position\":\"LB\",\"name\":\"Vaughters, James\",\"college\":\"Stanford\",\"stats_global_id\":\"598982\",\"height\":\"74\",\"rotowire_id\":\"10850\",\"jersey\":\"93\",\"weight\":\"254\",\"sportsdata_id\":\"ee209aa3-145f-4acb-85fd-e8a2420b4d2a\",\"id\":\"14478\",\"team\":\"CHI\"},{\"draft_year\":\"2019\",\"birthdate\":\"840862800\",\"draft_team\":\"FA\",\"stats_id\":\"32556\",\"position\":\"WR\",\"name\":\"Bryant, Ventell\",\"college\":\"Temple\",\"stats_global_id\":\"838301\",\"height\":\"75\",\"rotowire_id\":\"14236\",\"jersey\":\"83\",\"weight\":\"205\",\"sportsdata_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"id\":\"14481\",\"team\":\"FA\",\"cbs_id\":\"3117108\"},{\"draft_year\":\"2019\",\"birthdate\":\"848206800\",\"draft_team\":\"FA\",\"stats_id\":\"32283\",\"position\":\"WR\",\"name\":\"Montgomery, D.J.\",\"college\":\"Austin Peay\",\"stats_global_id\":\"1063397\",\"height\":\"73\",\"rotowire_id\":\"14129\",\"jersey\":\"83\",\"weight\":\"201\",\"sportsdata_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"id\":\"14486\",\"team\":\"FA\",\"cbs_id\":\"3116788\"},{\"draft_year\":\"2019\",\"birthdate\":\"850366800\",\"draft_team\":\"FA\",\"stats_id\":\"32273\",\"position\":\"TE\",\"name\":\"Carlson, Stephen\",\"college\":\"Princeton\",\"stats_global_id\":\"881697\",\"height\":\"76\",\"rotowire_id\":\"14131\",\"jersey\":\"89\",\"weight\":\"240\",\"sportsdata_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"id\":\"14488\",\"team\":\"CLE\",\"cbs_id\":\"3116783\"},{\"draft_year\":\"2019\",\"birthdate\":\"867992400\",\"draft_team\":\"FA\",\"stats_id\":\"32277\",\"position\":\"PN\",\"name\":\"Gillan, Jamie\",\"college\":\"Arkansas-Pine Bluff\",\"stats_global_id\":\"891880\",\"height\":\"73\",\"rotowire_id\":\"14147\",\"jersey\":\"7\",\"weight\":\"207\",\"sportsdata_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"id\":\"14489\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"828766800\",\"draft_team\":\"FA\",\"stats_id\":\"32206\",\"position\":\"LB\",\"name\":\"Hall, Nate\",\"college\":\"Northwestern\",\"stats_global_id\":\"830840\",\"height\":\"74\",\"rotowire_id\":\"13860\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"2b13e2a3-22c5-41cc-b13f-30c501f7c810\",\"id\":\"14493\",\"team\":\"HOU\",\"cbs_id\":\"2136547\"},{\"draft_year\":\"2019\",\"birthdate\":\"809586000\",\"draft_team\":\"FA\",\"stats_id\":\"32205\",\"position\":\"LB\",\"name\":\"Gifford, Luke\",\"college\":\"Nebraska\",\"stats_global_id\":\"821248\",\"height\":\"75\",\"rotowire_id\":\"14068\",\"jersey\":\"57\",\"weight\":\"245\",\"sportsdata_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"id\":\"14495\",\"team\":\"DAL\",\"cbs_id\":\"3117022\"},{\"draft_year\":\"2019\",\"birthdate\":\"853390800\",\"draft_team\":\"FA\",\"stats_id\":\"32189\",\"position\":\"WR\",\"name\":\"Benson, Trinity\",\"college\":\"East Central\",\"stats_global_id\":\"1165782\",\"height\":\"72\",\"rotowire_id\":\"13919\",\"jersey\":\"2\",\"weight\":\"180\",\"sportsdata_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"id\":\"14499\",\"team\":\"FA\",\"cbs_id\":\"3116706\"},{\"draft_year\":\"2018\",\"birthdate\":\"824187600\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Marshall, Trey\",\"college\":\"Florida State\",\"stats_global_id\":\"824088\",\"height\":\"72\",\"rotowire_id\":\"12684\",\"jersey\":\"36\",\"weight\":\"207\",\"sportsdata_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"id\":\"14502\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"819262800\",\"draft_team\":\"FA\",\"stats_id\":\"32266\",\"position\":\"LB\",\"name\":\"Bolton, Curtis\",\"college\":\"Oklahoma\",\"stats_global_id\":\"820700\",\"height\":\"72\",\"rotowire_id\":\"14103\",\"jersey\":\"40\",\"weight\":\"228\",\"sportsdata_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"id\":\"14509\",\"team\":\"FA\",\"cbs_id\":\"3116793\"},{\"draft_year\":\"2019\",\"birthdate\":\"813992400\",\"draft_team\":\"FA\",\"stats_id\":\"32152\",\"position\":\"QB\",\"name\":\"Anderson, Drew\",\"college\":\"Murray State\",\"stats_global_id\":\"945086\",\"height\":\"76\",\"rotowire_id\":\"14040\",\"jersey\":\"3\",\"weight\":\"221\",\"sportsdata_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"id\":\"14510\",\"team\":\"FA\",\"cbs_id\":\"3117010\"},{\"draft_year\":\"2018\",\"birthdate\":\"786949200\",\"draft_team\":\"FA\",\"stats_id\":\"31478\",\"position\":\"TE\",\"name\":\"Baugh, Marcus\",\"college\":\"Ohio State\",\"stats_global_id\":\"728328\",\"height\":\"76\",\"rotowire_id\":\"12901\",\"jersey\":\"85\",\"weight\":\"245\",\"sportsdata_id\":\"14683736-9d8f-4e99-86c4-a778d343569c\",\"id\":\"14517\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"900738000\",\"draft_team\":\"FA\",\"stats_id\":\"32623\",\"position\":\"S\",\"name\":\"Thompson, Jalen\",\"college\":\"Washington State\",\"stats_global_id\":\"910649\",\"height\":\"72\",\"rotowire_id\":\"14330\",\"jersey\":\"34\",\"weight\":\"195\",\"sportsdata_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"id\":\"14518\",\"team\":\"ARI\",\"cbs_id\":\"3126183\"},{\"draft_year\":\"2019\",\"birthdate\":\"845355600\",\"draft_team\":\"FA\",\"stats_id\":\"32151\",\"position\":\"LB\",\"name\":\"Kunaszyk, Jordan\",\"college\":\"California\",\"stats_global_id\":\"923359\",\"height\":\"75\",\"rotowire_id\":\"14257\",\"jersey\":\"43\",\"weight\":\"235\",\"sportsdata_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"id\":\"14519\",\"team\":\"WAS\",\"cbs_id\":\"2250824\"},{\"draft_year\":\"2019\",\"birthdate\":\"867387600\",\"draft_team\":\"FA\",\"stats_id\":\"32509\",\"position\":\"DT\",\"name\":\"Huggins, Albert\",\"college\":\"Clemson\",\"stats_global_id\":\"867748\",\"height\":\"75\",\"rotowire_id\":\"13864\",\"jersey\":\"67\",\"weight\":\"305\",\"sportsdata_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"id\":\"14531\",\"team\":\"DET\",\"cbs_id\":\"2179221\"},{\"draft_year\":\"2019\",\"birthdate\":\"844923600\",\"draft_team\":\"FA\",\"stats_id\":\"32357\",\"position\":\"CB\",\"name\":\"Fields, Mark\",\"college\":\"Clemson\",\"stats_global_id\":\"867758\",\"height\":\"70\",\"rotowire_id\":\"13646\",\"jersey\":\"26\",\"weight\":\"192\",\"sportsdata_id\":\"f60017c5-e44c-4256-831f-86c8d8626481\",\"id\":\"14532\",\"team\":\"MIN\",\"cbs_id\":\"2179217\"},{\"draft_year\":\"2019\",\"birthdate\":\"819522000\",\"draft_team\":\"FA\",\"stats_id\":\"32488\",\"position\":\"WR\",\"name\":\"Taylor, Malik\",\"college\":\"Ferris State\",\"stats_global_id\":\"1166944\",\"height\":\"75\",\"rotowire_id\":\"14002\",\"jersey\":\"86\",\"weight\":\"220\",\"sportsdata_id\":\"228b0dd8-3f75-4b60-90d1-59036858b8ae\",\"id\":\"14533\",\"team\":\"GBP\",\"cbs_id\":\"3117089\"},{\"draft_year\":\"2019\",\"birthdate\":\"886741200\",\"draft_team\":\"FA\",\"stats_id\":\"32420\",\"position\":\"DE\",\"name\":\"Bledsoe, Amani\",\"college\":\"Oklahoma\",\"stats_global_id\":\"923062\",\"height\":\"76\",\"rotowire_id\":\"14200\",\"jersey\":\"95\",\"weight\":\"280\",\"sportsdata_id\":\"1a7d431e-f97b-4631-a067-438ed2debe24\",\"id\":\"14535\",\"team\":\"CIN\",\"cbs_id\":\"3117093\"},{\"draft_year\":\"2018\",\"birthdate\":\"773730000\",\"draft_team\":\"FA\",\"stats_id\":\"31649\",\"position\":\"DE\",\"name\":\"Herron, Frank\",\"college\":\"Louisiana State\",\"stats_global_id\":\"727750\",\"height\":\"76\",\"rotowire_id\":\"13188\",\"jersey\":\"93\",\"weight\":\"305\",\"sportsdata_id\":\"ef0a8abc-074e-4ed1-a053-846c3b1d9cc5\",\"id\":\"14536\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"803883600\",\"draft_team\":\"FA\",\"stats_id\":\"32547\",\"position\":\"WR\",\"name\":\"Moore, Jason\",\"college\":\"Findlay\",\"stats_global_id\":\"1166990\",\"height\":\"74\",\"rotowire_id\":\"13999\",\"jersey\":\"89\",\"weight\":\"213\",\"sportsdata_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"id\":\"14545\",\"team\":\"LAC\",\"cbs_id\":\"3117063\"},{\"draft_year\":\"2019\",\"birthdate\":\"833346000\",\"draft_team\":\"FA\",\"stats_id\":\"32124\",\"position\":\"WR\",\"name\":\"Bachman, Alex\",\"college\":\"Wake Forest\",\"stats_global_id\":\"884315\",\"height\":\"72\",\"rotowire_id\":\"13911\",\"jersey\":\"80\",\"weight\":\"190\",\"sportsdata_id\":\"427038d8-ff50-4d6e-a088-4fdb8bc2f0e3\",\"id\":\"14548\",\"team\":\"NYG\",\"cbs_id\":\"2186388\"},{\"draft_year\":\"2019\",\"birthdate\":\"822718800\",\"draft_team\":\"FA\",\"stats_id\":\"32137\",\"position\":\"WR\",\"name\":\"Webster, Nsimba\",\"college\":\"Eastern Washington\",\"stats_global_id\":\"828656\",\"height\":\"70\",\"rotowire_id\":\"14012\",\"jersey\":\"14\",\"weight\":\"180\",\"sportsdata_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"id\":\"14549\",\"team\":\"LAR\",\"cbs_id\":\"3117157\"},{\"draft_year\":\"2019\",\"birthdate\":\"836197200\",\"draft_team\":\"FA\",\"stats_id\":\"32140\",\"position\":\"RB\",\"name\":\"Blasingame, Khari\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"835845\",\"height\":\"72\",\"rotowire_id\":\"13998\",\"jersey\":\"41\",\"weight\":\"233\",\"sportsdata_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"id\":\"14552\",\"team\":\"TEN\",\"cbs_id\":\"2139744\"},{\"draft_year\":\"2019\",\"birthdate\":\"848811600\",\"draft_team\":\"FA\",\"stats_id\":\"32143\",\"position\":\"WR\",\"name\":\"Hollins, Alexander\",\"college\":\"Eastern Illinois\",\"stats_global_id\":\"1050926\",\"height\":\"73\",\"rotowire_id\":\"14049\",\"jersey\":\"85\",\"weight\":\"166\",\"sportsdata_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"id\":\"14554\",\"team\":\"FA\",\"cbs_id\":\"3116816\"},{\"draft_year\":\"2019\",\"birthdate\":\"848984400\",\"draft_team\":\"FA\",\"stats_id\":\"32612\",\"position\":\"WR\",\"name\":\"Olszewski, Gunner\",\"college\":\"Bemidji State\",\"stats_global_id\":\"1168410\",\"height\":\"72\",\"rotowire_id\":\"14318\",\"jersey\":\"80\",\"weight\":\"190\",\"sportsdata_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"id\":\"14555\",\"team\":\"NEP\",\"cbs_id\":\"3117210\"},{\"draft_year\":\"2019\",\"birthdate\":\"848293200\",\"draft_team\":\"FA\",\"stats_id\":\"32230\",\"position\":\"LB\",\"name\":\"Hall, Terez\",\"college\":\"Missouri\",\"stats_global_id\":\"882337\",\"height\":\"74\",\"rotowire_id\":\"13861\",\"jersey\":\"59\",\"weight\":\"235\",\"sportsdata_id\":\"49bf0cd8-c01f-4d31-b6f1-fdda02b4999f\",\"id\":\"14557\",\"team\":\"NEP\",\"cbs_id\":\"2185472\"},{\"draft_year\":\"2019\",\"birthdate\":\"881211600\",\"draft_team\":\"FA\",\"stats_id\":\"32398\",\"position\":\"WR\",\"name\":\"Harris, Deonte\",\"college\":\"Assumption\",\"stats_global_id\":\"1166545\",\"height\":\"66\",\"rotowire_id\":\"14191\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"id\":\"14558\",\"team\":\"NOS\",\"cbs_id\":\"3116892\"},{\"draft_year\":\"2019\",\"birthdate\":\"855378000\",\"draft_team\":\"FA\",\"stats_id\":\"32492\",\"position\":\"LB\",\"name\":\"Gustin, Porter\",\"college\":\"Southern California\",\"stats_global_id\":\"880029\",\"height\":\"77\",\"rotowire_id\":\"13859\",\"jersey\":\"97\",\"weight\":\"260\",\"sportsdata_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"id\":\"14559\",\"team\":\"CLE\",\"cbs_id\":\"2180324\"},{\"draft_year\":\"2019\",\"birthdate\":\"814770000\",\"draft_team\":\"FA\",\"stats_id\":\"32243\",\"position\":\"WR\",\"name\":\"Wesley, Alex\",\"college\":\"Northern Colorado\",\"stats_global_id\":\"838670\",\"height\":\"72\",\"rotowire_id\":\"13815\",\"jersey\":\"80\",\"weight\":\"191\",\"sportsdata_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"id\":\"14560\",\"team\":\"FA\",\"cbs_id\":\"2142830\"},{\"draft_year\":\"2019\",\"birthdate\":\"861598800\",\"draft_team\":\"FA\",\"stats_id\":\"32533\",\"position\":\"WR\",\"name\":\"Smith, Jeff\",\"college\":\"Boston College\",\"stats_global_id\":\"883429\",\"height\":\"73\",\"rotowire_id\":\"13934\",\"jersey\":\"16\",\"weight\":\"195\",\"sportsdata_id\":\"767b1112-c77a-4a58-89b4-30f1ffa2a497\",\"id\":\"14561\",\"team\":\"NYJ\",\"cbs_id\":\"2185927\"},{\"draft_year\":\"2019\",\"birthdate\":\"812523600\",\"draft_team\":\"FA\",\"stats_id\":\"32409\",\"position\":\"WR\",\"name\":\"Thompkins, DeAndre\",\"college\":\"Penn State\",\"stats_global_id\":\"821298\",\"height\":\"71\",\"rotowire_id\":\"14023\",\"jersey\":\"81\",\"weight\":\"188\",\"sportsdata_id\":\"8b66001c-c41f-406a-9583-d8b6848ea6d2\",\"id\":\"14563\",\"team\":\"FA\",\"cbs_id\":\"2131257\"},{\"draft_year\":\"2014\",\"birthdate\":\"700981200\",\"draft_team\":\"FA\",\"position\":\"WR\",\"name\":\"Spencer, Diontae\",\"college\":\"McNeese State\",\"stats_global_id\":\"562859\",\"height\":\"68\",\"rotowire_id\":\"13530\",\"jersey\":\"11\",\"weight\":\"170\",\"sportsdata_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"id\":\"14565\",\"team\":\"DEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"805698000\",\"draft_team\":\"FA\",\"stats_id\":\"32548\",\"position\":\"PN\",\"name\":\"Newsome, Tyler\",\"college\":\"Notre Dame\",\"stats_global_id\":\"839067\",\"height\":\"75\",\"rotowire_id\":\"14265\",\"jersey\":\"6\",\"weight\":\"219\",\"sportsdata_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"id\":\"14568\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"852181200\",\"draft_team\":\"FA\",\"stats_id\":\"32589\",\"position\":\"S\",\"name\":\"Orr, Kareem\",\"college\":\"Chattanooga\",\"stats_global_id\":\"865648\",\"height\":\"71\",\"rotowire_id\":\"14297\",\"jersey\":\"32\",\"weight\":\"195\",\"sportsdata_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"id\":\"14579\",\"team\":\"TEN\",\"cbs_id\":\"3117116\"},{\"draft_year\":\"2019\",\"birthdate\":\"832568400\",\"draft_team\":\"FA\",\"stats_id\":\"32222\",\"position\":\"LB\",\"name\":\"Watson, Josh\",\"college\":\"Colorado State\",\"stats_global_id\":\"828111\",\"height\":\"74\",\"rotowire_id\":\"14081\",\"jersey\":\"54\",\"weight\":\"240\",\"sportsdata_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"id\":\"14584\",\"team\":\"DEN\",\"cbs_id\":\"2174864\"},{\"draft_year\":\"2019\",\"birthdate\":\"870670800\",\"draft_team\":\"FA\",\"stats_id\":\"32318\",\"position\":\"LB\",\"name\":\"Al-Shaair, Azeez\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"866464\",\"height\":\"74\",\"rotowire_id\":\"13829\",\"jersey\":\"51\",\"weight\":\"228\",\"sportsdata_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"id\":\"14590\",\"team\":\"SFO\",\"cbs_id\":\"2183512\"},{\"draft_year\":\"2019\",\"birthdate\":\"830408400\",\"draft_team\":\"FA\",\"stats_id\":\"32364\",\"position\":\"TE\",\"name\":\"Lovett, John\",\"college\":\"Princeton\",\"stats_global_id\":\"832213\",\"height\":\"75\",\"rotowire_id\":\"14184\",\"jersey\":\"40\",\"weight\":\"225\",\"sportsdata_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"id\":\"14591\",\"team\":\"GBP\",\"cbs_id\":\"3116861\"},{\"draft_year\":\"2019\",\"birthdate\":\"869634000\",\"draft_team\":\"FA\",\"stats_id\":\"32123\",\"position\":\"WR\",\"name\":\"Zaccheaus, Olamide\",\"college\":\"Virginia\",\"stats_global_id\":\"883976\",\"height\":\"68\",\"rotowire_id\":\"13833\",\"jersey\":\"17\",\"weight\":\"190\",\"sportsdata_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"id\":\"14592\",\"team\":\"ATL\",\"cbs_id\":\"2186266\"},{\"draft_year\":\"2019\",\"birthdate\":\"839221200\",\"draft_team\":\"FA\",\"stats_id\":\"32461\",\"position\":\"DT\",\"name\":\"Strong, Kevin\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"835485\",\"height\":\"76\",\"rotowire_id\":\"14213\",\"jersey\":\"62\",\"weight\":\"285\",\"sportsdata_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"id\":\"14595\",\"team\":\"FA\",\"cbs_id\":\"3117029\"},{\"draft_year\":\"2019\",\"birthdate\":\"829112400\",\"draft_team\":\"FA\",\"stats_id\":\"32384\",\"position\":\"PK\",\"name\":\"Slye, Joey\",\"college\":\"Virginia Tech\",\"stats_global_id\":\"836963\",\"height\":\"71\",\"rotowire_id\":\"14172\",\"jersey\":\"4\",\"weight\":\"213\",\"sportsdata_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"id\":\"14600\",\"team\":\"CAR\",\"cbs_id\":\"3116871\"},{\"draft_year\":\"2019\",\"birthdate\":\"808635600\",\"draft_team\":\"FA\",\"stats_id\":\"32439\",\"position\":\"RB\",\"name\":\"Laird, Patrick\",\"college\":\"California\",\"stats_global_id\":\"835694\",\"height\":\"72\",\"rotowire_id\":\"13913\",\"jersey\":\"32\",\"weight\":\"205\",\"sportsdata_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"id\":\"14612\",\"team\":\"MIA\",\"cbs_id\":\"2139562\"},{\"draft_year\":\"2019\",\"birthdate\":\"859784400\",\"draft_team\":\"FA\",\"stats_id\":\"32187\",\"position\":\"WR\",\"name\":\"Sims, Steven\",\"college\":\"Kansas\",\"stats_global_id\":\"877596\",\"height\":\"70\",\"rotowire_id\":\"14055\",\"jersey\":\"15\",\"weight\":\"190\",\"sportsdata_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"id\":\"14613\",\"team\":\"WAS\",\"cbs_id\":\"3116703\"},{\"draft_year\":\"2019\",\"birthdate\":\"829285200\",\"draft_team\":\"FA\",\"stats_id\":\"32581\",\"position\":\"QB\",\"name\":\"Hodges, Devlin\",\"college\":\"Samford\",\"stats_global_id\":\"837040\",\"height\":\"73\",\"rotowire_id\":\"13566\",\"jersey\":\"6\",\"weight\":\"210\",\"sportsdata_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"id\":\"14618\",\"team\":\"FA\",\"cbs_id\":\"3117128\"},{\"draft_year\":\"2019\",\"birthdate\":\"881730000\",\"draft_team\":\"FA\",\"stats_id\":\"32642\",\"position\":\"QB\",\"name\":\"Ta'amu, Jordan\",\"college\":\"Mississippi\",\"stats_global_id\":\"974470\",\"height\":\"75\",\"rotowire_id\":\"13629\",\"jersey\":\"6\",\"weight\":\"221\",\"sportsdata_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"id\":\"14622\",\"team\":\"FA\"},{\"draft_year\":\"2016\",\"birthdate\":\"748155600\",\"draft_team\":\"FA\",\"stats_id\":\"29813\",\"position\":\"DT\",\"name\":\"Bryant, Brandin\",\"college\":\"Florida Atlantic\",\"stats_global_id\":\"695076\",\"height\":\"75\",\"rotowire_id\":\"11557\",\"jersey\":\"69\",\"weight\":\"294\",\"sportsdata_id\":\"8b1be2ac-e483-4f39-9bf9-a81be33ac92e\",\"id\":\"14627\",\"team\":\"BUF\"},{\"draft_year\":\"2019\",\"birthdate\":\"817448400\",\"draft_team\":\"FA\",\"stats_id\":\"32386\",\"position\":\"PN\",\"name\":\"Cole, A.J.\",\"college\":\"North Carolina State\",\"stats_global_id\":\"866061\",\"height\":\"76\",\"rotowire_id\":\"14171\",\"jersey\":\"6\",\"weight\":\"220\",\"sportsdata_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"id\":\"14630\",\"team\":\"LVR\"},{\"draft_year\":\"2019\",\"birthdate\":\"857192400\",\"draft_team\":\"FA\",\"stats_id\":\"32321\",\"position\":\"DT\",\"name\":\"Givens, Kevin\",\"college\":\"Penn State\",\"stats_global_id\":\"883319\",\"height\":\"73\",\"rotowire_id\":\"13519\",\"jersey\":\"90\",\"weight\":\"285\",\"sportsdata_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"id\":\"14652\",\"team\":\"SFO\",\"cbs_id\":\"2185968\"},{\"draft_year\":\"2019\",\"birthdate\":\"827211600\",\"draft_team\":\"FA\",\"stats_id\":\"32425\",\"position\":\"DE\",\"name\":\"Mack, Isaiah\",\"college\":\"Chattanooga\",\"stats_global_id\":\"834396\",\"height\":\"73\",\"rotowire_id\":\"14204\",\"jersey\":\"97\",\"weight\":\"299\",\"sportsdata_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"id\":\"14653\",\"team\":\"NEP\",\"cbs_id\":\"2140284\"},{\"draft_year\":\"2019\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"stats_id\":\"32295\",\"position\":\"TE\",\"name\":\"Hentges, Hale\",\"college\":\"Alabama\",\"stats_global_id\":\"884045\",\"height\":\"76\",\"rotowire_id\":\"14094\",\"jersey\":\"86\",\"weight\":\"245\",\"sportsdata_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"id\":\"14654\",\"team\":\"FA\",\"cbs_id\":\"3116798\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32241\",\"position\":\"LB\",\"name\":\"Tauaefa, Josiah\",\"college\":\"Texas-San Antonio\",\"stats_global_id\":\"881829\",\"height\":\"73\",\"rotowire_id\":\"13487\",\"jersey\":\"48\",\"weight\":\"235\",\"sportsdata_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"id\":\"14660\",\"team\":\"FA\",\"cbs_id\":\"2184767\"},{\"draft_year\":\"2018\",\"birthdate\":\"840430800\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Kelly, Kameron\",\"college\":\"San Diego State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"12837\",\"jersey\":\"38\",\"weight\":\"205\",\"sportsdata_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"id\":\"14666\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"866955600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Nixon, Keisean\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13701\",\"jersey\":\"22\",\"weight\":\"200\",\"sportsdata_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"id\":\"14669\",\"team\":\"LVR\",\"cbs_id\":\"3116813\"},{\"draft_year\":\"2018\",\"birthdate\":\"758437200\",\"draft_team\":\"FA\",\"stats_id\":\"31454\",\"position\":\"DT\",\"name\":\"Ekuale, Daniel\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13142\",\"jersey\":\"96\",\"weight\":\"300\",\"sportsdata_id\":\"55998ec0-4d69-4d14-a2f4-cf72de36e998\",\"id\":\"14670\",\"team\":\"JAC\"},{\"draft_year\":\"2017\",\"birthdate\":\"749192400\",\"draft_team\":\"FA\",\"position\":\"S\",\"name\":\"Moore, C.J.\",\"college\":\"Southern Methodist\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14209\",\"jersey\":\"49\",\"weight\":\"190\",\"sportsdata_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"id\":\"14671\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"779432400\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Reeder, Troy\",\"college\":\"Delaware\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14013\",\"jersey\":\"51\",\"weight\":\"245\",\"sportsdata_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"id\":\"14672\",\"team\":\"LAR\",\"cbs_id\":\"2139310\"},{\"draft_year\":\"2019\",\"birthdate\":\"868424400\",\"draft_team\":\"FA\",\"stats_id\":\"32134\",\"position\":\"LB\",\"name\":\"Patrick, Natrez\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13973\",\"jersey\":\"57\",\"weight\":\"242\",\"sportsdata_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"id\":\"14673\",\"team\":\"FA\",\"cbs_id\":\"2180469\"},{\"draft_year\":\"2017\",\"birthdate\":\"782888400\",\"draft_team\":\"FA\",\"stats_id\":\"30716\",\"position\":\"CB\",\"name\":\"Perry, Jamal\",\"college\":\"Iowa State\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"12930\",\"jersey\":\"33\",\"weight\":\"180\",\"sportsdata_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"id\":\"14674\",\"team\":\"MIA\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuttle, Shy\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14286\",\"jersey\":\"99\",\"weight\":\"300\",\"sportsdata_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"id\":\"14675\",\"team\":\"NOS\",\"cbs_id\":\"2180542\"},{\"draft_year\":\"2019\",\"birthdate\":\"862808400\",\"draft_team\":\"FA\",\"stats_id\":\"32530\",\"position\":\"DE\",\"name\":\"Phillips, Kyle\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13708\",\"jersey\":\"98\",\"weight\":\"277\",\"sportsdata_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"id\":\"14676\",\"team\":\"NYJ\",\"cbs_id\":\"2180531\"},{\"draft_year\":\"2019\",\"birthdate\":\"873349200\",\"draft_team\":\"FA\",\"stats_id\":\"32155\",\"position\":\"DT\",\"name\":\"Brown, Miles\",\"college\":\"Wofford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14044\",\"jersey\":\"72\",\"weight\":\"320\",\"sportsdata_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"id\":\"14677\",\"team\":\"FA\",\"cbs_id\":\"3117013\"},{\"draft_year\":\"2019\",\"birthdate\":\"802328400\",\"draft_team\":\"FA\",\"stats_id\":\"32582\",\"position\":\"LB\",\"name\":\"Skipper, Tuzar\",\"college\":\"Toledo\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14293\",\"jersey\":\"51\",\"weight\":\"246\",\"sportsdata_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"id\":\"14678\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"814165200\",\"draft_team\":\"FA\",\"stats_id\":\"32336\",\"position\":\"DT\",\"name\":\"Mone, Bryan\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14099\",\"jersey\":\"92\",\"weight\":\"366\",\"sportsdata_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"id\":\"14680\",\"team\":\"SEA\"},{\"draft_year\":\"2018\",\"birthdate\":\"820299600\",\"draft_team\":\"FA\",\"stats_id\":\"31256\",\"position\":\"DE\",\"name\":\"Harris, Demone\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13285\",\"jersey\":\"52\",\"weight\":\"272\",\"sportsdata_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"id\":\"14681\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"832395600\",\"draft_team\":\"FA\",\"stats_id\":\"32304\",\"position\":\"LB\",\"name\":\"Alaka, Otaro\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13539\",\"jersey\":\"50\",\"weight\":\"240\",\"sportsdata_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"id\":\"14682\",\"team\":\"BAL\",\"cbs_id\":\"2139862\"},{\"draft_year\":\"2018\",\"birthdate\":\"808290000\",\"draft_team\":\"FA\",\"stats_id\":\"31636\",\"position\":\"CB\",\"name\":\"Jones, Chris\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"13196\",\"jersey\":\"25\",\"weight\":\"200\",\"sportsdata_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"id\":\"14683\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"855810000\",\"draft_team\":\"FA\",\"stats_id\":\"32145\",\"position\":\"CB\",\"name\":\"Meadors, Nate\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14155\",\"jersey\":\"44\",\"weight\":\"194\",\"sportsdata_id\":\"78ca0233-a32a-4435-ba06-6ececaa3c537\",\"id\":\"14696\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"863413200\",\"draft_team\":\"FA\",\"stats_id\":\"32552\",\"position\":\"S\",\"name\":\"Teamer, Roderic\",\"college\":\"Tulane\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14267\",\"jersey\":\"36\",\"weight\":\"205\",\"sportsdata_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"id\":\"14702\",\"team\":\"FA\",\"cbs_id\":\"3117066\"},{\"draft_year\":\"2018\",\"birthdate\":\"755326800\",\"draft_team\":\"FA\",\"stats_id\":\"31370\",\"position\":\"CB\",\"name\":\"Jackson, Robert\",\"college\":\"Nevada-Las Vegas\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13411\",\"jersey\":\"34\",\"weight\":\"205\",\"sportsdata_id\":\"d962a98d-cbba-47e0-ad20-dedc094a1822\",\"id\":\"14713\",\"team\":\"CLE\"},{\"draft_year\":\"2019\",\"birthdate\":\"839134800\",\"draft_team\":\"FA\",\"stats_id\":\"32254\",\"position\":\"DE\",\"name\":\"Harris, Jonathan\",\"college\":\"Lindenwood\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14144\",\"jersey\":\"92\",\"weight\":\"295\",\"sportsdata_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"id\":\"14716\",\"team\":\"DEN\",\"cbs_id\":\"3116773\"},{\"draft_year\":\"2019\",\"birthdate\":\"829026000\",\"draft_team\":\"FA\",\"stats_id\":\"32417\",\"position\":\"PK\",\"name\":\"McLaughlin, Chase\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14254\",\"jersey\":\"7\",\"weight\":\"190\",\"sportsdata_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"id\":\"14717\",\"team\":\"JAC\",\"cbs_id\":\"2165272\"},{\"draft_year\":\"2019\",\"birthdate\":\"851662800\",\"draft_team\":\"FA\",\"stats_id\":\"32371\",\"position\":\"CB\",\"name\":\"Taylor, Shakial\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14162\",\"jersey\":\"38\",\"weight\":\"175\",\"sportsdata_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"id\":\"14720\",\"team\":\"NYG\",\"cbs_id\":\"3116853\"},{\"draft_year\":\"2019\",\"birthdate\":\"847083600\",\"draft_team\":\"FA\",\"position\":\"CB\",\"name\":\"Needham, Nik\",\"college\":\"Texas-El Paso\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14077\",\"jersey\":\"40\",\"weight\":\"193\",\"sportsdata_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"id\":\"14722\",\"team\":\"MIA\",\"cbs_id\":\"3117055\"},{\"draft_year\":\"2019\",\"birthdate\":\"834814800\",\"draft_team\":\"FA\",\"stats_id\":\"32596\",\"position\":\"RB\",\"name\":\"Reynolds, Craig\",\"college\":\"Kutztown\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13960\",\"jersey\":\"48\",\"weight\":\"215\",\"sportsdata_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"id\":\"14727\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"816411600\",\"draft_team\":\"FA\",\"position\":\"LB\",\"name\":\"Roberson, Derick\",\"college\":\"Sam Houston State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13774\",\"jersey\":\"50\",\"weight\":\"250\",\"sportsdata_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"id\":\"14728\",\"team\":\"TEN\"},{\"draft_year\":\"2019\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"stats_id\":\"32091\",\"position\":\"LB\",\"name\":\"Giles-Harris, Joe\",\"college\":\"Duke\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13492\",\"jersey\":\"43\",\"weight\":\"234\",\"sportsdata_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"id\":\"14737\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32408\",\"position\":\"DT\",\"name\":\"Rush, Anthony\",\"college\":\"Alabama-Birmingham\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14018\",\"jersey\":\"66\",\"weight\":\"350\",\"sportsdata_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"id\":\"14738\",\"team\":\"GBP\",\"cbs_id\":\"3117082\"},{\"draft_year\":\"2019\",\"birthdate\":\"871966800\",\"draft_team\":\"FA\",\"stats_id\":\"32092\",\"position\":\"CB\",\"name\":\"Hayes, Tae\",\"college\":\"Appalachian State\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14031\",\"jersey\":\"30\",\"weight\":\"188\",\"sportsdata_id\":\"588d8e04-98dc-478a-b3ba-9e3cb58d9afc\",\"id\":\"14741\",\"team\":\"MIA\",\"cbs_id\":\"3117040\"},{\"draft_year\":\"2018\",\"birthdate\":\"838270800\",\"draft_team\":\"FA\",\"position\":\"DT\",\"name\":\"Tuioti-Mariner, Jacob\",\"college\":\"UCLA\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13087\",\"jersey\":\"91\",\"weight\":\"285\",\"sportsdata_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"id\":\"14746\",\"team\":\"ATL\"},{\"draft_year\":\"2019\",\"birthdate\":\"857019600\",\"draft_team\":\"FA\",\"stats_id\":\"32576\",\"position\":\"TE\",\"name\":\"Horsted, Jesper\",\"college\":\"Princeton\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13639\",\"jersey\":\"49\",\"weight\":\"237\",\"sportsdata_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"id\":\"14752\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"birthdate\":\"797144400\",\"draft_team\":\"FA\",\"stats_id\":\"31286\",\"position\":\"DE\",\"name\":\"Larkin, Austin\",\"college\":\"Purdue\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13251\",\"jersey\":\"62\",\"weight\":\"265\",\"sportsdata_id\":\"9fe70732-0c55-42ff-a79c-9d234fbc995c\",\"id\":\"14756\",\"team\":\"CAR\"},{\"draft_year\":\"2018\",\"birthdate\":\"832827600\",\"draft_team\":\"FA\",\"stats_id\":\"31607\",\"position\":\"WR\",\"name\":\"Gafford, Rico\",\"college\":\"Wyoming\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"13297\",\"jersey\":\"10\",\"weight\":\"185\",\"sportsdata_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"id\":\"14760\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"birthdate\":\"795762000\",\"draft_team\":\"FA\",\"stats_id\":\"31415\",\"position\":\"CB\",\"name\":\"Stephens, Linden\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"12699\",\"jersey\":\"32\",\"weight\":\"193\",\"sportsdata_id\":\"1163ba47-560b-4705-82be-69967c4fc096\",\"id\":\"14762\",\"team\":\"SEA\"},{\"draft_year\":\"0\",\"birthdate\":\"160376400\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Rhule, Matt\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"c8f37d4a-81fc-4649-a9d9-9cdbc5c3e64b\",\"id\":\"14774\",\"team\":\"CAR\"},{\"draft_year\":\"0\",\"birthdate\":\"378622800\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Judge, Joe\",\"stats_global_id\":\"0\",\"sportsdata_id\":\"bafe0b67-9f00-4a40-a33e-e6d26680439b\",\"id\":\"14775\",\"team\":\"NYG\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"position\":\"Coach\",\"name\":\"Stefanski, Kevin\",\"stats_global_id\":\"0\",\"id\":\"14776\",\"sportsdata_id\":\"e266a725-2c3d-4222-be78-19bc78e5b85e\",\"team\":\"CLE\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32671\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14777\",\"draft_team\":\"CIN\",\"birthdate\":\"850194000\",\"name\":\"Burrow, Joe\",\"draft_pick\":\"1\",\"college\":\"LSU\",\"rotowire_id\":\"14442\",\"height\":\"76\",\"jersey\":\"9\",\"twitter_username\":\"Joe_Burrow10\",\"sportsdata_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"team\":\"CIN\",\"cbs_id\":\"2179798\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32675\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14778\",\"draft_team\":\"MIA\",\"birthdate\":\"888814800\",\"name\":\"Tagovailoa, Tua\",\"draft_pick\":\"5\",\"college\":\"Alabama\",\"rotowire_id\":\"14465\",\"height\":\"73\",\"jersey\":\"1\",\"twitter_username\":\"Tuaamann\",\"sportsdata_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"team\":\"MIA\",\"cbs_id\":\"2741209\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32676\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"237\",\"id\":\"14779\",\"draft_team\":\"LAC\",\"birthdate\":\"889506000\",\"name\":\"Herbert, Justin\",\"draft_pick\":\"6\",\"college\":\"Oregon\",\"rotowire_id\":\"14446\",\"height\":\"78\",\"jersey\":\"10\",\"twitter_username\":\"Justin10Herbert\",\"sportsdata_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"team\":\"LAC\",\"cbs_id\":\"2221960\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32792\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14780\",\"draft_team\":\"IND\",\"birthdate\":\"879742800\",\"name\":\"Eason, Jacob\",\"draft_pick\":\"16\",\"college\":\"Washington\",\"rotowire_id\":\"14401\",\"height\":\"78\",\"jersey\":\"9\",\"twitter_username\":\"skinnyqb10\",\"sportsdata_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"team\":\"IND\",\"cbs_id\":\"2240210\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32837\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"222\",\"id\":\"14781\",\"draft_team\":\"BUF\",\"birthdate\":\"901774800\",\"name\":\"Fromm, Jake\",\"draft_pick\":\"21\",\"college\":\"Georgia\",\"rotowire_id\":\"14486\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"FrommJake\",\"sportsdata_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"team\":\"BUF\",\"cbs_id\":\"2803326\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32696\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14782\",\"draft_team\":\"GBP\",\"birthdate\":\"909982800\",\"name\":\"Love, Jordan\",\"draft_pick\":\"26\",\"college\":\"Utah State\",\"rotowire_id\":\"14371\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"jordan3love\",\"sportsdata_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"team\":\"GBP\",\"cbs_id\":\"2239997\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32723\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"218\",\"id\":\"14783\",\"draft_team\":\"PHI\",\"birthdate\":\"902466000\",\"name\":\"Hurts, Jalen\",\"draft_pick\":\"21\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14416\",\"height\":\"74\",\"jersey\":\"2\",\"twitter_username\":\"JalenHurts\",\"sportsdata_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"team\":\"PHI\",\"cbs_id\":\"2240246\"},{\"draft_year\":\"2020\",\"birthdate\":\"853218000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33207\",\"position\":\"QB\",\"name\":\"Montez, Steven\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14393\",\"weight\":\"230\",\"sportsdata_id\":\"d446443f-130c-4bce-a300-a15cf66f27f1\",\"id\":\"14784\",\"team\":\"FA\",\"cbs_id\":\"2185536\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32914\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"14785\",\"draft_team\":\"MIN\",\"birthdate\":\"872571600\",\"name\":\"Stanley, Nate\",\"draft_pick\":\"30\",\"college\":\"Iowa\",\"rotowire_id\":\"14566\",\"height\":\"76\",\"twitter_username\":\"Njstan4\",\"sportsdata_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"team\":\"FA\",\"cbs_id\":\"2251110\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33246\",\"position\":\"QB\",\"name\":\"Patterson, Shea\",\"college\":\"Michigan\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14469\",\"id\":\"14786\",\"team\":\"FA\",\"cbs_id\":\"2221866\"},{\"draft_year\":\"2020\",\"birthdate\":\"872744400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33266\",\"position\":\"QB\",\"name\":\"Gordon, Anthony\",\"college\":\"Washington State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14431\",\"weight\":\"210\",\"sportsdata_id\":\"71a2444a-a6b1-4e62-8974-2d858e2c5b73\",\"id\":\"14787\",\"team\":\"FA\",\"cbs_id\":\"2251387\"},{\"draft_year\":\"2020\",\"birthdate\":\"846133200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33015\",\"position\":\"QB\",\"name\":\"Lewerke, Brian\",\"college\":\"Michigan State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14530\",\"weight\":\"212\",\"sportsdata_id\":\"e8b4f505-28b2-4a87-8bf8-87041afab45c\",\"id\":\"14788\",\"team\":\"FA\",\"cbs_id\":\"2186429\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32993\",\"position\":\"QB\",\"name\":\"Huntley, Tyler\",\"college\":\"Utah\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14563\",\"sportsdata_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"id\":\"14789\",\"team\":\"FA\",\"cbs_id\":\"3159137\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32795\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14790\",\"draft_team\":\"NYJ\",\"birthdate\":\"857106000\",\"name\":\"Morgan, James\",\"draft_pick\":\"19\",\"college\":\"Florida International\",\"rotowire_id\":\"14531\",\"height\":\"76\",\"jersey\":\"4\",\"twitter_username\":\"jmoneyyy12\",\"sportsdata_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"team\":\"NYJ\",\"cbs_id\":\"2180077\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Fine, Mason\",\"college\":\"North Texas\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14786\",\"id\":\"14791\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"851058000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33258\",\"position\":\"QB\",\"name\":\"Perkins, Bryce\",\"college\":\"Virginia\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14429\",\"weight\":\"215\",\"sportsdata_id\":\"da837572-0558-4946-9af4-aeb11582cca8\",\"id\":\"14792\",\"team\":\"FA\",\"cbs_id\":\"3159114\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32859\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"14793\",\"draft_team\":\"JAC\",\"birthdate\":\"829198800\",\"name\":\"Luton, Jake\",\"draft_pick\":\"10\",\"college\":\"Oregon State\",\"rotowire_id\":\"14562\",\"height\":\"78\",\"jersey\":\"6\",\"twitter_username\":\"jakeluton6\",\"sportsdata_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"team\":\"JAC\",\"cbs_id\":\"2132133\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32894\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14794\",\"draft_team\":\"TEN\",\"birthdate\":\"895640400\",\"name\":\"McDonald, Cole\",\"draft_pick\":\"10\",\"college\":\"Hawaii\",\"rotowire_id\":\"14493\",\"height\":\"76\",\"twitter_username\":\"ColeHunter520\",\"sportsdata_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"team\":\"FA\",\"cbs_id\":\"2257005\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"QB\",\"name\":\"Bryant, Kelly\",\"college\":\"Missouri\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14528\",\"id\":\"14795\",\"team\":\"FA\",\"cbs_id\":\"2179210\"},{\"draft_year\":\"2020\",\"birthdate\":\"844232400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32928\",\"position\":\"QB\",\"name\":\"Neal, Riley\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"14859\",\"weight\":\"225\",\"sportsdata_id\":\"8e4cd763-30ec-4a00-9dc2-5567a80a3191\",\"id\":\"14796\",\"team\":\"FA\",\"cbs_id\":\"3159056\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32705\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14797\",\"draft_team\":\"DET\",\"birthdate\":\"916290000\",\"name\":\"Swift, D'Andre\",\"draft_pick\":\"3\",\"college\":\"Georgia\",\"rotowire_id\":\"14394\",\"height\":\"70\",\"jersey\":\"32\",\"twitter_username\":\"DAndreSwift\",\"sportsdata_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"team\":\"DET\",\"cbs_id\":\"2871710\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32756\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14798\",\"draft_team\":\"BUF\",\"birthdate\":\"882162000\",\"name\":\"Moss, Zack\",\"draft_pick\":\"22\",\"college\":\"Utah\",\"rotowire_id\":\"14564\",\"height\":\"70\",\"jersey\":\"20\",\"twitter_username\":\"PresMoss2\",\"sportsdata_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"team\":\"BUF\",\"cbs_id\":\"2240516\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32722\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14799\",\"draft_team\":\"LAR\",\"birthdate\":\"930027600\",\"name\":\"Akers, Cam\",\"draft_pick\":\"20\",\"college\":\"Florida State\",\"rotowire_id\":\"14383\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"thereal_cam3\",\"sportsdata_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"team\":\"LAR\",\"cbs_id\":\"2804034\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32725\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14800\",\"draft_team\":\"BAL\",\"birthdate\":\"913870800\",\"name\":\"Dobbins, J.K.\",\"draft_pick\":\"23\",\"college\":\"Ohio State\",\"rotowire_id\":\"14418\",\"height\":\"70\",\"jersey\":\"27\",\"twitter_username\":\"jkdobbins22\",\"sportsdata_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"team\":\"BAL\",\"cbs_id\":\"2804420\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32892\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14801\",\"draft_team\":\"ARI\",\"birthdate\":\"945061200\",\"name\":\"Benjamin, Eno\",\"draft_pick\":\"8\",\"college\":\"Arizona State\",\"rotowire_id\":\"14372\",\"height\":\"70\",\"jersey\":\"26\",\"twitter_username\":\"eno_benjamin5\",\"sportsdata_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"team\":\"ARI\",\"cbs_id\":\"2760832\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32711\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14802\",\"draft_team\":\"IND\",\"birthdate\":\"916722000\",\"name\":\"Taylor, Jonathan\",\"draft_pick\":\"9\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14455\",\"height\":\"71\",\"jersey\":\"28\",\"twitter_username\":\"JayT23\",\"sportsdata_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"team\":\"IND\",\"cbs_id\":\"2866395\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32702\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14803\",\"draft_team\":\"KCC\",\"birthdate\":\"923806800\",\"name\":\"Edwards-Helaire, Clyde\",\"draft_pick\":\"32\",\"college\":\"LSU\",\"rotowire_id\":\"14514\",\"height\":\"68\",\"jersey\":\"25\",\"sportsdata_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"team\":\"KCC\",\"cbs_id\":\"2804554\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32794\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14804\",\"draft_team\":\"PIT\",\"birthdate\":\"920523600\",\"name\":\"McFarland, Anthony\",\"draft_pick\":\"18\",\"college\":\"Maryland\",\"rotowire_id\":\"14357\",\"height\":\"69\",\"jersey\":\"26\",\"sportsdata_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"team\":\"PIT\",\"cbs_id\":\"2804293\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32732\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"espn_id\":\"4239934\",\"weight\":\"250\",\"id\":\"14805\",\"birthdate\":\"894085200\",\"draft_team\":\"GBP\",\"name\":\"Dillon, AJ\",\"draft_pick\":\"30\",\"college\":\"Boston College\",\"rotowire_id\":\"14370\",\"height\":\"73\",\"jersey\":\"28\",\"twitter_username\":\"ajdillon7\",\"sportsdata_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"team\":\"GBP\",\"cbs_id\":\"2867083\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32790\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14806\",\"draft_team\":\"NYJ\",\"birthdate\":\"886136400\",\"name\":\"Perine, Lamical\",\"draft_pick\":\"14\",\"college\":\"Florida\",\"rotowire_id\":\"14427\",\"height\":\"71\",\"jersey\":\"22\",\"twitter_username\":\"lp_deucedeuce\",\"sportsdata_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"team\":\"NYJ\",\"cbs_id\":\"2248610\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32782\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14807\",\"draft_team\":\"LAC\",\"birthdate\":\"880002000\",\"name\":\"Kelley, Joshua\",\"draft_pick\":\"6\",\"college\":\"UCLA\",\"rotowire_id\":\"14494\",\"height\":\"71\",\"jersey\":\"27\",\"twitter_username\":\"SmoothplayJK\",\"sportsdata_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"team\":\"LAC\",\"cbs_id\":\"2183195\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32763\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14808\",\"draft_team\":\"TEN\",\"birthdate\":\"899960400\",\"name\":\"Evans, Darrynton\",\"draft_pick\":\"29\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14400\",\"height\":\"71\",\"jersey\":\"32\",\"twitter_username\":\"ItzLiveee\",\"sportsdata_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"team\":\"TEN\",\"cbs_id\":\"2240806\"},{\"draft_year\":\"2020\",\"birthdate\":\"825483600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33153\",\"position\":\"RB\",\"name\":\"Smith, Rodney\",\"college\":\"Minnesota\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14435\",\"weight\":\"210\",\"sportsdata_id\":\"ee96c74a-7a51-478a-99f9-97ddaaac1e34\",\"id\":\"14809\",\"team\":\"CAR\",\"cbs_id\":\"2165586\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32746\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14810\",\"draft_team\":\"TBB\",\"birthdate\":\"862722000\",\"name\":\"Vaughn, Ke'Shawn\",\"draft_pick\":\"12\",\"college\":\"Vanderbilt\",\"rotowire_id\":\"14557\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"SneakVaughn\",\"sportsdata_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"team\":\"TBB\",\"cbs_id\":\"2179704\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33265\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14811\",\"draft_team\":\"FA\",\"birthdate\":\"914907600\",\"name\":\"Ahmed, Salvon\",\"college\":\"Washington\",\"rotowire_id\":\"14453\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"0dbbd211-0372-4751-9751-e4df4ab1f8eb\",\"team\":\"MIA\",\"cbs_id\":\"2815163\"},{\"draft_year\":\"2020\",\"birthdate\":\"873867600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33098\",\"position\":\"RB\",\"name\":\"Anderson, Darius\",\"college\":\"TCU\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14565\",\"weight\":\"212\",\"sportsdata_id\":\"9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6\",\"id\":\"14812\",\"team\":\"FA\",\"cbs_id\":\"2240319\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33138\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14813\",\"draft_team\":\"FA\",\"birthdate\":\"902638800\",\"name\":\"Robinson, James\",\"college\":\"Illinois State\",\"rotowire_id\":\"14660\",\"height\":\"70\",\"jersey\":\"30\",\"sportsdata_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"team\":\"JAC\",\"cbs_id\":\"2257036\"},{\"draft_year\":\"2020\",\"birthdate\":\"886827600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33307\",\"position\":\"RB\",\"name\":\"Herrien, Brian\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14438\",\"weight\":\"210\",\"sportsdata_id\":\"af366ded-5eba-4a8d-b9fe-37ace1e173f0\",\"id\":\"14814\",\"team\":\"FA\",\"cbs_id\":\"2248619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32814\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14815\",\"draft_team\":\"SEA\",\"birthdate\":\"905922000\",\"name\":\"Dallas, DeeJay\",\"draft_pick\":\"38\",\"college\":\"Miami\",\"rotowire_id\":\"14410\",\"height\":\"70\",\"jersey\":\"31\",\"twitter_username\":\"DallasDeejay\",\"sportsdata_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"team\":\"SEA\",\"cbs_id\":\"2804094\"},{\"draft_year\":\"2020\",\"birthdate\":\"910846800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32972\",\"position\":\"RB\",\"name\":\"Warren, Michael\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14496\",\"weight\":\"224\",\"sportsdata_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"id\":\"14816\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"893826000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33235\",\"position\":\"RB\",\"name\":\"Taylor, Patrick\",\"college\":\"Memphis\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14573\",\"weight\":\"223\",\"sportsdata_id\":\"ef87e355-8e0c-40ed-a85d-bca4896d4f1e\",\"id\":\"14817\",\"team\":\"GBP\",\"cbs_id\":\"2256736\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33297\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14818\",\"draft_team\":\"FA\",\"birthdate\":\"872398800\",\"name\":\"Jones, Xavier\",\"college\":\"SMU\",\"rotowire_id\":\"14925\",\"height\":\"71\",\"jersey\":\"35\",\"sportsdata_id\":\"70110b01-060d-443d-b799-5d4edc9272de\",\"team\":\"LAR\",\"cbs_id\":\"3159182\"},{\"draft_year\":\"2020\",\"birthdate\":\"883544400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33126\",\"position\":\"RB\",\"name\":\"Feaster, Tavien\",\"college\":\"South Carolina\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14592\",\"weight\":\"215\",\"sportsdata_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"id\":\"14819\",\"team\":\"FA\",\"cbs_id\":\"2239519\"},{\"draft_year\":\"2020\",\"birthdate\":\"901947600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33037\",\"position\":\"RB\",\"name\":\"Leake, Javon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14361\",\"weight\":\"206\",\"sportsdata_id\":\"241d5e15-f9e6-4bf2-ac36-74dcbc9cc148\",\"id\":\"14820\",\"team\":\"FA\",\"cbs_id\":\"2804292\"},{\"draft_year\":\"2020\",\"birthdate\":\"842504400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33199\",\"position\":\"RB\",\"name\":\"Hasty, JaMycal\",\"college\":\"Baylor\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14392\",\"weight\":\"205\",\"sportsdata_id\":\"c6c50d09-f14f-41c2-9eb3-87514f0121f6\",\"id\":\"14821\",\"team\":\"SFO\",\"cbs_id\":\"2189504\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Corbin, Reggie\",\"college\":\"Illinois\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14440\",\"id\":\"14822\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33100\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14823\",\"draft_team\":\"FA\",\"birthdate\":\"897800400\",\"name\":\"Dowdle, Rico\",\"college\":\"South Carolina\",\"rotowire_id\":\"14657\",\"height\":\"72\",\"jersey\":\"34\",\"sportsdata_id\":\"bba755a2-63b6-4ac1-b806-0609816135de\",\"team\":\"DAL\",\"cbs_id\":\"2252798\"},{\"draft_year\":\"2020\",\"rotoworld_id\":\"60322\",\"status\":\"R\",\"stats_id\":\"33161\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"14824\",\"draft_team\":\"FA\",\"birthdate\":\"876114000\",\"name\":\"Phillips, Scottie\",\"college\":\"Mississippi\",\"rotowire_id\":\"14659\",\"height\":\"68\",\"jersey\":\"40\",\"sportsdata_id\":\"26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd\",\"team\":\"HOU\",\"cbs_id\":\"2962972\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"RB\",\"name\":\"Conkrite, Jordan\",\"college\":\"South Florida\",\"stats_global_id\":\"0\",\"id\":\"14825\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"832050000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33179\",\"position\":\"RB\",\"name\":\"Pierce, Artavis\",\"college\":\"Oregon State\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14881\",\"weight\":\"208\",\"sportsdata_id\":\"a21cba9e-32a9-494b-b2a1-d454b65872b6\",\"id\":\"14826\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33028\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14827\",\"draft_team\":\"FA\",\"birthdate\":\"883890000\",\"name\":\"Taylor, J.J.\",\"college\":\"Arizona\",\"rotowire_id\":\"14459\",\"height\":\"66\",\"jersey\":\"42\",\"sportsdata_id\":\"879325b1-c961-4c9a-a3a4-679d77a28293\",\"team\":\"NEP\",\"cbs_id\":\"2252786\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33114\",\"position\":\"RB\",\"name\":\"Jones, Tony\",\"college\":\"Notre Dame\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14423\",\"weight\":\"224\",\"sportsdata_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"id\":\"14828\",\"team\":\"FA\",\"cbs_id\":\"2260681\"},{\"draft_year\":\"2020\",\"birthdate\":\"877150800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33309\",\"position\":\"RB\",\"name\":\"LeMay, Benny\",\"college\":\"Charlotte\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14532\",\"weight\":\"218\",\"sportsdata_id\":\"46cf23c5-7096-4f18-a3d8-59f0befc95ff\",\"id\":\"14829\",\"team\":\"FA\",\"cbs_id\":\"2258154\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32926\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"188\",\"id\":\"14830\",\"draft_team\":\"FA\",\"birthdate\":\"849157200\",\"name\":\"Bellamy, LeVante\",\"college\":\"Western Michigan\",\"rotowire_id\":\"14656\",\"height\":\"69\",\"jersey\":\"32\",\"sportsdata_id\":\"53022661-b6bb-481b-9ce8-b603e521925f\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"883717200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32966\",\"position\":\"RB\",\"name\":\"Killins Jr., Adrian\",\"college\":\"Central Florida\",\"stats_global_id\":\"0\",\"height\":\"68\",\"rotowire_id\":\"14396\",\"weight\":\"164\",\"sportsdata_id\":\"2af6db68-3ad7-4699-8f86-0140fffce577\",\"id\":\"14831\",\"team\":\"FA\",\"cbs_id\":\"3159156\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32687\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"189\",\"id\":\"14832\",\"draft_team\":\"DAL\",\"birthdate\":\"923547600\",\"name\":\"Lamb, CeeDee\",\"draft_pick\":\"17\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14411\",\"height\":\"74\",\"jersey\":\"88\",\"twitter_username\":\"_CeeDeeThree\",\"sportsdata_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"team\":\"DAL\",\"cbs_id\":\"2865251\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32685\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14833\",\"draft_team\":\"DEN\",\"birthdate\":\"924930000\",\"name\":\"Jeudy, Jerry\",\"draft_pick\":\"15\",\"college\":\"Alabama\",\"rotowire_id\":\"14458\",\"height\":\"73\",\"jersey\":\"10\",\"twitter_username\":\"jerryjeudy\",\"sportsdata_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"team\":\"DEN\",\"cbs_id\":\"2741201\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32682\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14834\",\"draft_team\":\"LVR\",\"birthdate\":\"917154000\",\"name\":\"Ruggs, Henry\",\"draft_pick\":\"12\",\"college\":\"Alabama\",\"rotowire_id\":\"14473\",\"height\":\"72\",\"jersey\":\"11\",\"twitter_username\":\"__RUGGS\",\"sportsdata_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32703\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14835\",\"draft_team\":\"CIN\",\"birthdate\":\"917499600\",\"name\":\"Higgins, Tee\",\"draft_pick\":\"1\",\"college\":\"Clemson\",\"rotowire_id\":\"14506\",\"height\":\"76\",\"jersey\":\"85\",\"twitter_username\":\"teehiggins5\",\"sportsdata_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"team\":\"CIN\",\"cbs_id\":\"2809208\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32692\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14836\",\"draft_team\":\"MIN\",\"birthdate\":\"929509200\",\"name\":\"Jefferson, Justin\",\"draft_pick\":\"22\",\"college\":\"LSU\",\"rotowire_id\":\"14509\",\"height\":\"75\",\"jersey\":\"18\",\"twitter_username\":\"JJettas2\",\"sportsdata_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"team\":\"MIN\",\"cbs_id\":\"2871343\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32716\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"14837\",\"draft_team\":\"DEN\",\"birthdate\":\"931410000\",\"name\":\"Hamler, KJ\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14462\",\"height\":\"69\",\"jersey\":\"13\",\"twitter_username\":\"Kj_hamler\",\"sportsdata_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"team\":\"DEN\",\"cbs_id\":\"2804432\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32712\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14838\",\"draft_team\":\"JAC\",\"birthdate\":\"907563600\",\"name\":\"Shenault, Laviska\",\"draft_pick\":\"10\",\"college\":\"Colorado\",\"rotowire_id\":\"14358\",\"height\":\"74\",\"jersey\":\"10\",\"twitter_username\":\"Viska2live\",\"sportsdata_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32691\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14839\",\"draft_team\":\"PHI\",\"birthdate\":\"915166800\",\"name\":\"Reagor, Jalen\",\"draft_pick\":\"21\",\"rotowire_id\":\"14421\",\"height\":\"71\",\"jersey\":\"18\",\"twitter_username\":\"jalenreagor\",\"sportsdata_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"team\":\"PHI\",\"cbs_id\":\"2803733\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32695\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"14840\",\"draft_team\":\"SFO\",\"birthdate\":\"890110800\",\"name\":\"Aiyuk, Brandon\",\"draft_pick\":\"25\",\"college\":\"Arizona State\",\"rotowire_id\":\"14386\",\"height\":\"73\",\"jersey\":\"11\",\"twitter_username\":\"THE2ERA\",\"sportsdata_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"team\":\"SFO\",\"cbs_id\":\"2967489\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32719\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14841\",\"draft_team\":\"PIT\",\"birthdate\":\"899787600\",\"name\":\"Claypool, Chase\",\"draft_pick\":\"17\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14433\",\"height\":\"76\",\"jersey\":\"11\",\"twitter_username\":\"ChaseClaypool\",\"sportsdata_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"team\":\"PIT\",\"cbs_id\":\"2260676\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32704\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14842\",\"draft_team\":\"IND\",\"birthdate\":\"876027600\",\"name\":\"Pittman, Michael\",\"draft_pick\":\"2\",\"college\":\"USC\",\"rotowire_id\":\"14378\",\"height\":\"76\",\"jersey\":\"11\",\"twitter_username\":\"MikePitt_Jr\",\"sportsdata_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"team\":\"IND\",\"cbs_id\":\"2240188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32750\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14843\",\"draft_team\":\"LVR\",\"birthdate\":\"876805200\",\"name\":\"Bowden, Lynn\",\"draft_pick\":\"16\",\"college\":\"Kentucky\",\"rotowire_id\":\"14460\",\"height\":\"72\",\"jersey\":\"15\",\"twitter_username\":\"LynnBowden_1\",\"sportsdata_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"team\":\"MIA\",\"cbs_id\":\"2875380\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32751\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14844\",\"draft_team\":\"LVR\",\"birthdate\":\"910933200\",\"name\":\"Edwards, Bryan\",\"draft_pick\":\"17\",\"college\":\"South Carolina\",\"rotowire_id\":\"14577\",\"height\":\"75\",\"jersey\":\"89\",\"twitter_username\":\"B__ED89\",\"sportsdata_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"team\":\"LVR\",\"cbs_id\":\"2221840\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32798\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"213\",\"id\":\"14845\",\"draft_team\":\"BUF\",\"birthdate\":\"922942800\",\"name\":\"Davis, Gabriel\",\"draft_pick\":\"22\",\"college\":\"Central Florida\",\"rotowire_id\":\"14359\",\"height\":\"75\",\"jersey\":\"3\",\"twitter_username\":\"DavisGB1\",\"sportsdata_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"team\":\"BUF\",\"cbs_id\":\"2804813\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32729\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14846\",\"draft_team\":\"NYJ\",\"birthdate\":\"876459600\",\"name\":\"Mims, Denzel\",\"draft_pick\":\"27\",\"college\":\"Baylor\",\"rotowire_id\":\"14539\",\"height\":\"75\",\"jersey\":\"11\",\"twitter_username\":\"Zel5Zelly\",\"sportsdata_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"team\":\"NYJ\",\"cbs_id\":\"2253076\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32762\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14847\",\"draft_team\":\"BAL\",\"birthdate\":\"874040400\",\"name\":\"Duvernay, Devin\",\"draft_pick\":\"28\",\"college\":\"Texas\",\"rotowire_id\":\"14636\",\"height\":\"71\",\"jersey\":\"13\",\"twitter_username\":\"Dev_Duv5\",\"sportsdata_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"team\":\"BAL\",\"cbs_id\":\"2246849\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32871\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14848\",\"draft_team\":\"BAL\",\"birthdate\":\"843282000\",\"name\":\"Proche, James\",\"draft_pick\":\"22\",\"college\":\"SMU\",\"rotowire_id\":\"14415\",\"height\":\"72\",\"jersey\":\"11\",\"twitter_username\":\"jamesproche3\",\"sportsdata_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"team\":\"BAL\",\"cbs_id\":\"2180769\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32877\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14849\",\"draft_team\":\"BUF\",\"birthdate\":\"908946000\",\"name\":\"Hodgins, Isaiah\",\"draft_pick\":\"28\",\"college\":\"Oregon State\",\"rotowire_id\":\"14356\",\"height\":\"76\",\"jersey\":\"16\",\"twitter_username\":\"IsaiahHodgins\",\"sportsdata_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"team\":\"BUF\",\"cbs_id\":\"2783899\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32836\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14850\",\"draft_team\":\"DET\",\"birthdate\":\"891406800\",\"name\":\"Cephus, Quintez\",\"draft_pick\":\"20\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14466\",\"height\":\"73\",\"jersey\":\"87\",\"twitter_username\":\"QoDeep_87\",\"sportsdata_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"team\":\"DET\",\"cbs_id\":\"2251870\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32890\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14851\",\"draft_team\":\"LAC\",\"birthdate\":\"874299600\",\"name\":\"Hill, K.J.\",\"draft_pick\":\"6\",\"college\":\"Ohio State\",\"rotowire_id\":\"14414\",\"height\":\"72\",\"jersey\":\"84\",\"twitter_username\":\"kayjayhill\",\"sportsdata_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"team\":\"LAC\",\"cbs_id\":\"2179813\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32736\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"221\",\"id\":\"14852\",\"draft_team\":\"WAS\",\"birthdate\":\"898578000\",\"name\":\"Gibson, Antonio\",\"draft_pick\":\"2\",\"college\":\"Memphis\",\"rotowire_id\":\"14639\",\"height\":\"74\",\"jersey\":\"24\",\"twitter_username\":\"antoniogibson14\",\"sportsdata_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"team\":\"WAS\",\"cbs_id\":\"2960976\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32835\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14853\",\"draft_team\":\"JAC\",\"birthdate\":\"874990800\",\"name\":\"Johnson, Collin\",\"draft_pick\":\"19\",\"college\":\"Texas\",\"rotowire_id\":\"14545\",\"height\":\"78\",\"jersey\":\"19\",\"twitter_username\":\"Call_In_Johnson\",\"sportsdata_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"team\":\"JAC\",\"cbs_id\":\"2240315\"},{\"draft_year\":\"2020\",\"birthdate\":\"853304400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33040\",\"position\":\"WR\",\"name\":\"Victor, Binjimen\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14529\",\"weight\":\"199\",\"sportsdata_id\":\"630e6b5d-0486-4bc3-a919-1f02687c1291\",\"id\":\"14854\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33039\",\"position\":\"WR\",\"name\":\"Mack, Austin\",\"college\":\"Ohio State\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14546\",\"weight\":\"215\",\"sportsdata_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"id\":\"14855\",\"team\":\"NYG\",\"cbs_id\":\"2239784\"},{\"draft_year\":\"2020\",\"birthdate\":\"891925200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33027\",\"position\":\"WR\",\"name\":\"Davis, Quartney\",\"college\":\"Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14461\",\"weight\":\"200\",\"sportsdata_id\":\"5c54defd-6f6d-4884-9fcb-80343d2d72d3\",\"id\":\"14856\",\"team\":\"FA\",\"cbs_id\":\"2249179\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32857\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14857\",\"draft_team\":\"CLE\",\"birthdate\":\"919400400\",\"name\":\"Peoples-Jones, Donovan\",\"draft_pick\":\"8\",\"college\":\"Michigan\",\"rotowire_id\":\"14457\",\"height\":\"74\",\"jersey\":\"11\",\"twitter_username\":\"dpeoplesjones\",\"sportsdata_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"team\":\"CLE\",\"cbs_id\":\"2819119\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32727\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14858\",\"draft_team\":\"LAR\",\"birthdate\":\"838357200\",\"name\":\"Jefferson, Van\",\"draft_pick\":\"25\",\"college\":\"Florida\",\"rotowire_id\":\"14430\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"team\":\"LAR\",\"cbs_id\":\"2186342\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33253\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14859\",\"draft_team\":\"FA\",\"birthdate\":\"889419600\",\"name\":\"Jackson, Trishton\",\"college\":\"Syracuse\",\"rotowire_id\":\"14402\",\"height\":\"73\",\"jersey\":\"83\",\"sportsdata_id\":\"9a2cd41e-a6e8-42d6-aad4-65c42939d733\",\"team\":\"LAR\",\"cbs_id\":\"2253371\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32887\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"214\",\"id\":\"14860\",\"draft_team\":\"SFO\",\"birthdate\":\"868510800\",\"name\":\"Jennings, Jauan\",\"draft_pick\":\"3\",\"college\":\"Tennessee\",\"rotowire_id\":\"14376\",\"height\":\"75\",\"sportsdata_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"team\":\"FA\",\"cbs_id\":\"2180514\"},{\"draft_year\":\"2020\",\"birthdate\":\"842590800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33113\",\"position\":\"WR\",\"name\":\"Johnson, Juwan\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14630\",\"weight\":\"231\",\"sportsdata_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"id\":\"14861\",\"team\":\"NOS\",\"cbs_id\":\"2186637\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32821\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14862\",\"draft_team\":\"LAC\",\"birthdate\":\"883890000\",\"name\":\"Reed, Joe\",\"draft_pick\":\"5\",\"college\":\"Virginia\",\"rotowire_id\":\"14428\",\"height\":\"73\",\"jersey\":\"12\",\"twitter_username\":\"JoeBee_2\",\"sportsdata_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"team\":\"LAC\",\"cbs_id\":\"2251260\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32812\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14863\",\"draft_team\":\"WAS\",\"birthdate\":\"892270800\",\"name\":\"Gandy-Golden, Antonio\",\"draft_pick\":\"36\",\"college\":\"Liberty\",\"rotowire_id\":\"14568\",\"height\":\"76\",\"jersey\":\"10\",\"twitter_username\":\"gandygolden11\",\"sportsdata_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"team\":\"WAS\",\"cbs_id\":\"2250521\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32831\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14864\",\"draft_team\":\"TBB\",\"birthdate\":\"904021200\",\"name\":\"Johnson, Tyler\",\"draft_pick\":\"15\",\"college\":\"Minnesota\",\"rotowire_id\":\"14432\",\"height\":\"74\",\"jersey\":\"18\",\"twitter_username\":\"T_muhneyy10\",\"sportsdata_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"team\":\"TBB\",\"cbs_id\":\"1620002\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32884\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"14865\",\"draft_team\":\"SEA\",\"birthdate\":\"902206800\",\"name\":\"Swain, Freddie\",\"draft_pick\":\"35\",\"college\":\"Florida\",\"rotowire_id\":\"14644\",\"height\":\"72\",\"jersey\":\"18\",\"sportsdata_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"team\":\"SEA\",\"cbs_id\":\"2221836\"},{\"draft_year\":\"2020\",\"birthdate\":\"866523600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33022\",\"position\":\"WR\",\"name\":\"Thomas, Jeff\",\"college\":\"Miami\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14382\",\"weight\":\"180\",\"sportsdata_id\":\"a80ccad9-4e50-4796-955e-0278f0c9bd2f\",\"id\":\"14866\",\"team\":\"FA\",\"cbs_id\":\"2826768\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32713\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"258\",\"id\":\"14867\",\"draft_team\":\"CHI\",\"birthdate\":\"921042000\",\"name\":\"Kmet, Cole\",\"draft_pick\":\"11\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14436\",\"height\":\"78\",\"jersey\":\"85\",\"twitter_username\":\"ColeKmet\",\"sportsdata_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"team\":\"CHI\",\"cbs_id\":\"2868619\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32806\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14868\",\"draft_team\":\"LAR\",\"birthdate\":\"859438800\",\"name\":\"Hopkins, Brycen\",\"draft_pick\":\"30\",\"college\":\"Purdue\",\"rotowire_id\":\"14586\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"Itsbhop89\",\"sportsdata_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"team\":\"LAR\",\"cbs_id\":\"2183906\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33208\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"249\",\"id\":\"14869\",\"draft_team\":\"FA\",\"birthdate\":\"895122000\",\"name\":\"Moss, Thaddeus\",\"college\":\"LSU\",\"rotowire_id\":\"14524\",\"height\":\"75\",\"jersey\":\"46\",\"sportsdata_id\":\"309b8104-8407-4365-989a-f726251714a7\",\"team\":\"WAS\",\"cbs_id\":\"2246946\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32775\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14870\",\"draft_team\":\"NOS\",\"birthdate\":\"855118800\",\"name\":\"Trautman, Adam\",\"draft_pick\":\"41\",\"college\":\"Dayton\",\"rotowire_id\":\"14541\",\"height\":\"78\",\"jersey\":\"82\",\"sportsdata_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"team\":\"NOS\",\"cbs_id\":\"2182228\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32803\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14871\",\"draft_team\":\"SEA\",\"birthdate\":\"915771600\",\"name\":\"Parkinson, Colby\",\"draft_pick\":\"27\",\"college\":\"Stanford\",\"rotowire_id\":\"14463\",\"height\":\"79\",\"jersey\":\"84\",\"sportsdata_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"team\":\"SEA\",\"cbs_id\":\"2867522\"},{\"draft_year\":\"2020\",\"birthdate\":\"872139600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33064\",\"position\":\"TE\",\"name\":\"Pinkney, Jared\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14632\",\"weight\":\"260\",\"sportsdata_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"id\":\"14872\",\"team\":\"FA\",\"cbs_id\":\"2180558\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32788\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14873\",\"draft_team\":\"DEN\",\"birthdate\":\"893480400\",\"name\":\"Okwuegbunam, Albert\",\"draft_pick\":\"12\",\"college\":\"Missouri\",\"rotowire_id\":\"14369\",\"height\":\"77\",\"jersey\":\"85\",\"twitter_username\":\"AOkwuegbunam\",\"sportsdata_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"team\":\"DEN\",\"cbs_id\":\"2245117\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33186\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"239\",\"id\":\"14874\",\"draft_team\":\"FA\",\"birthdate\":\"903589200\",\"name\":\"Bryant, Hunter\",\"college\":\"Washington\",\"rotowire_id\":\"14364\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"826c6c22-2a3a-48bb-befb-8e552fb391ea\",\"team\":\"DET\",\"cbs_id\":\"2815166\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32785\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14875\",\"draft_team\":\"CLE\",\"birthdate\":\"893307600\",\"name\":\"Bryant, Harrison\",\"draft_pick\":\"9\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14576\",\"height\":\"77\",\"jersey\":\"88\",\"twitter_username\":\"hbryant17\",\"sportsdata_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"team\":\"CLE\",\"cbs_id\":\"2241240\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32764\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"14876\",\"draft_team\":\"GBP\",\"birthdate\":\"855896400\",\"name\":\"Deguara, Josiah\",\"draft_pick\":\"30\",\"college\":\"Cincinnati\",\"rotowire_id\":\"14629\",\"height\":\"75\",\"jersey\":\"81\",\"twitter_username\":\"JosiahD5\",\"sportsdata_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"team\":\"GBP\",\"cbs_id\":\"2181108\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32672\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14877\",\"draft_team\":\"WAS\",\"birthdate\":\"924066000\",\"name\":\"Young, Chase\",\"draft_pick\":\"2\",\"college\":\"Ohio State\",\"rotowire_id\":\"14452\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"youngchase907\",\"sportsdata_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"team\":\"WAS\",\"cbs_id\":\"2829229\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32707\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"264\",\"id\":\"14878\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Gross-Matos, Yetur\",\"draft_pick\":\"6\",\"college\":\"Penn State\",\"rotowire_id\":\"14355\",\"height\":\"77\",\"jersey\":\"97\",\"twitter_username\":\"__lobo99\",\"sportsdata_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"team\":\"CAR\",\"cbs_id\":\"2868927\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32724\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14879\",\"draft_team\":\"BUF\",\"birthdate\":\"905835600\",\"name\":\"Epenesa, A.J.\",\"draft_pick\":\"22\",\"college\":\"Iowa\",\"rotowire_id\":\"14501\",\"height\":\"77\",\"jersey\":\"57\",\"twitter_username\":\"ajepenesa24\",\"sportsdata_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"team\":\"BUF\",\"cbs_id\":\"2865969\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32817\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14880\",\"draft_team\":\"CIN\",\"birthdate\":\"893739600\",\"name\":\"Kareem, Khalid\",\"draft_pick\":\"1\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14684\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"khalid_kareem53\",\"sportsdata_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"team\":\"CIN\",\"cbs_id\":\"2240621\"},{\"draft_year\":\"2020\",\"birthdate\":\"871362000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33320\",\"position\":\"DE\",\"name\":\"Coe, Nick\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14398\",\"weight\":\"282\",\"sportsdata_id\":\"67d2e7dd-e937-49d5-bf37-0efed947609f\",\"id\":\"14881\",\"team\":\"FA\",\"cbs_id\":\"2257893\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"rotoworld_id\":\"60119\",\"status\":\"R\",\"stats_id\":\"32760\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14882\",\"birthdate\":\"864536400\",\"draft_team\":\"HOU\",\"name\":\"Greenard, Jonathan\",\"draft_pick\":\"26\",\"college\":\"Florida\",\"rotowire_id\":\"14550\",\"height\":\"75\",\"jersey\":\"52\",\"twitter_username\":\"jongreenard7\",\"sportsdata_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"team\":\"HOU\",\"cbs_id\":\"2181166\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32717\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"279\",\"id\":\"14883\",\"draft_team\":\"ATL\",\"birthdate\":\"894862800\",\"name\":\"Davidson, Marlon\",\"draft_pick\":\"15\",\"college\":\"Auburn\",\"rotowire_id\":\"14540\",\"height\":\"75\",\"jersey\":\"90\",\"twitter_username\":\"marlondavidson7\",\"sportsdata_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"team\":\"ATL\",\"cbs_id\":\"2222006\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32824\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"280\",\"id\":\"14884\",\"draft_team\":\"MIA\",\"birthdate\":\"842331600\",\"name\":\"Strowbridge, Jason\",\"draft_pick\":\"8\",\"college\":\"North Carolina\",\"rotowire_id\":\"14730\",\"height\":\"77\",\"jersey\":\"58\",\"sportsdata_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"team\":\"MIA\",\"cbs_id\":\"2179351\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32749\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"14885\",\"draft_team\":\"NYJ\",\"birthdate\":\"871534800\",\"name\":\"Zuniga, Jabari\",\"draft_pick\":\"15\",\"college\":\"Florida\",\"rotowire_id\":\"14734\",\"height\":\"76\",\"jersey\":\"92\",\"twitter_username\":\"JabariZuniga\",\"sportsdata_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"team\":\"NYJ\",\"cbs_id\":\"2180452\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32849\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14886\",\"draft_team\":\"DAL\",\"birthdate\":\"908600400\",\"name\":\"Anae, Bradlee\",\"draft_pick\":\"33\",\"college\":\"Utah\",\"rotowire_id\":\"14582\",\"height\":\"75\",\"jersey\":\"56\",\"sportsdata_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"team\":\"DAL\",\"cbs_id\":\"2240496\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32678\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14887\",\"draft_team\":\"ARI\",\"birthdate\":\"901429200\",\"name\":\"Simmons, Isaiah\",\"draft_pick\":\"8\",\"college\":\"Clemson\",\"rotowire_id\":\"14525\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"isaiahsimmons25\",\"sportsdata_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"team\":\"ARI\",\"cbs_id\":\"2239532\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32690\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14888\",\"draft_team\":\"JAC\",\"birthdate\":\"932878800\",\"name\":\"Chaisson, K'Lavon\",\"draft_pick\":\"20\",\"college\":\"LSU\",\"rotowire_id\":\"14523\",\"height\":\"76\",\"jersey\":\"45\",\"twitter_username\":\"S4CKGURU\",\"sportsdata_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"team\":\"JAC\",\"cbs_id\":\"2804551\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32693\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"234\",\"id\":\"14889\",\"draft_team\":\"LAC\",\"birthdate\":\"911192400\",\"name\":\"Murray, Kenneth\",\"draft_pick\":\"23\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14434\",\"height\":\"75\",\"jersey\":\"56\",\"twitter_username\":\"KennethMurray\",\"sportsdata_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"team\":\"LAC\",\"cbs_id\":\"2804138\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32767\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14890\",\"draft_team\":\"CLE\",\"birthdate\":\"922942800\",\"name\":\"Phillips, Jacob\",\"draft_pick\":\"33\",\"college\":\"LSU\",\"rotowire_id\":\"14517\",\"height\":\"76\",\"jersey\":\"50\",\"twitter_username\":\"jacobphilly\",\"sportsdata_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"team\":\"CLE\",\"cbs_id\":\"2804564\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32768\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14891\",\"draft_team\":\"BAL\",\"birthdate\":\"889074000\",\"name\":\"Harrison, Malik\",\"draft_pick\":\"34\",\"college\":\"Ohio State\",\"rotowire_id\":\"14648\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"team\":\"BAL\",\"cbs_id\":\"2260979\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32697\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14892\",\"draft_team\":\"SEA\",\"birthdate\":\"877410000\",\"name\":\"Brooks, Jordyn\",\"draft_pick\":\"27\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14739\",\"height\":\"73\",\"jersey\":\"56\",\"twitter_username\":\"JordynBrooks_\",\"sportsdata_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"team\":\"SEA\",\"cbs_id\":\"2252263\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32744\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14893\",\"draft_team\":\"NOS\",\"birthdate\":\"851922000\",\"name\":\"Baun, Zack\",\"draft_pick\":\"10\",\"college\":\"Wisconsin\",\"rotowire_id\":\"14374\",\"height\":\"75\",\"jersey\":\"53\",\"twitter_username\":\"zackbizzaun\",\"sportsdata_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"team\":\"NOS\",\"cbs_id\":\"2183919\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32757\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"259\",\"id\":\"14894\",\"draft_team\":\"NEP\",\"birthdate\":\"862462800\",\"name\":\"Jennings, Anfernee\",\"draft_pick\":\"23\",\"college\":\"Alabama\",\"rotowire_id\":\"14742\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"anferneejenning\",\"sportsdata_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"team\":\"NEP\",\"cbs_id\":\"2186321\"},{\"draft_year\":\"2020\",\"draft_team\":\"FA\",\"status\":\"R\",\"position\":\"LB\",\"name\":\"Woodward, David\",\"college\":\"Utah State\",\"stats_global_id\":\"0\",\"rotowire_id\":\"14645\",\"id\":\"14895\",\"team\":\"FA\",\"cbs_id\":\"2258285\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32698\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"14896\",\"draft_team\":\"BAL\",\"birthdate\":\"934520400\",\"name\":\"Queen, Patrick\",\"draft_pick\":\"28\",\"college\":\"LSU\",\"rotowire_id\":\"14508\",\"height\":\"73\",\"jersey\":\"48\",\"twitter_username\":\"Patrickqueen_\",\"sportsdata_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"team\":\"BAL\",\"cbs_id\":\"2804566\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32677\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"318\",\"id\":\"14897\",\"draft_team\":\"CAR\",\"birthdate\":\"892616400\",\"name\":\"Brown, Derrick\",\"draft_pick\":\"7\",\"college\":\"Auburn\",\"rotowire_id\":\"13852\",\"height\":\"77\",\"jersey\":\"95\",\"twitter_username\":\"DerrickBrownAU5\",\"sportsdata_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"team\":\"CAR\",\"cbs_id\":\"2241797\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32726\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14898\",\"draft_team\":\"MIA\",\"birthdate\":\"865918800\",\"name\":\"Davis, Raekwon\",\"draft_pick\":\"24\",\"college\":\"Alabama\",\"rotowire_id\":\"14538\",\"height\":\"79\",\"jersey\":\"98\",\"twitter_username\":\"raekwondavis_99\",\"sportsdata_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"team\":\"MIA\",\"cbs_id\":\"2252833\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32684\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14899\",\"draft_team\":\"SFO\",\"birthdate\":\"875854800\",\"name\":\"Kinlaw, Javon\",\"draft_pick\":\"14\",\"college\":\"South Carolina\",\"rotowire_id\":\"14444\",\"height\":\"78\",\"jersey\":\"99\",\"twitter_username\":\"JavonKinlaw\",\"sportsdata_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"team\":\"SFO\",\"cbs_id\":\"2869019\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32741\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14900\",\"draft_team\":\"BAL\",\"birthdate\":\"879742800\",\"name\":\"Madubuike, Justin\",\"draft_pick\":\"7\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14380\",\"height\":\"75\",\"jersey\":\"92\",\"twitter_username\":\"MadubuikeJustin\",\"sportsdata_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"team\":\"BAL\",\"cbs_id\":\"2249188\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32752\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"302\",\"id\":\"14901\",\"draft_team\":\"DAL\",\"birthdate\":\"853477200\",\"name\":\"Gallimore, Neville\",\"draft_pick\":\"18\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14451\",\"height\":\"74\",\"jersey\":\"96\",\"twitter_username\":\"path2greatwork\",\"sportsdata_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"team\":\"DAL\",\"cbs_id\":\"2179652\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32673\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14902\",\"draft_team\":\"DET\",\"birthdate\":\"917931600\",\"name\":\"Okudah, Jeff\",\"draft_pick\":\"3\",\"college\":\"Ohio State\",\"rotowire_id\":\"14424\",\"height\":\"73\",\"jersey\":\"30\",\"twitter_username\":\"jeffokudah\",\"sportsdata_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"team\":\"DET\",\"cbs_id\":\"2804425\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32721\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"14903\",\"draft_team\":\"DAL\",\"birthdate\":\"906267600\",\"name\":\"Diggs, Trevon\",\"draft_pick\":\"19\",\"college\":\"Alabama\",\"rotowire_id\":\"14389\",\"height\":\"74\",\"jersey\":\"27\",\"twitter_username\":\"TrevonDiggs\",\"sportsdata_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"team\":\"DAL\",\"cbs_id\":\"2252834\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32731\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14904\",\"draft_team\":\"TEN\",\"birthdate\":\"904798800\",\"name\":\"Fulton, Kristian\",\"draft_pick\":\"29\",\"college\":\"LSU\",\"rotowire_id\":\"14443\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"Kriss1_\",\"sportsdata_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"team\":\"TEN\",\"cbs_id\":\"2223248\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32679\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14905\",\"draft_team\":\"JAC\",\"birthdate\":\"907131600\",\"name\":\"Henderson, CJ\",\"draft_pick\":\"9\",\"college\":\"Florida\",\"rotowire_id\":\"14367\",\"height\":\"73\",\"jersey\":\"23\",\"twitter_username\":\"HendersonChris_\",\"sportsdata_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"team\":\"JAC\",\"cbs_id\":\"2773013\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32689\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14906\",\"draft_team\":\"LVR\",\"birthdate\":\"823237200\",\"name\":\"Arnette, Damon\",\"draft_pick\":\"19\",\"college\":\"Ohio State\",\"rotowire_id\":\"14547\",\"height\":\"72\",\"jersey\":\"20\",\"twitter_username\":\"damon_arnette\",\"sportsdata_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"team\":\"LVR\",\"cbs_id\":\"2179793\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32714\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"14907\",\"draft_team\":\"CLE\",\"birthdate\":\"906267600\",\"name\":\"Delpit, Grant\",\"draft_pick\":\"12\",\"college\":\"LSU\",\"rotowire_id\":\"14507\",\"height\":\"75\",\"jersey\":\"22\",\"twitter_username\":\"realgrantdelpit\",\"sportsdata_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"team\":\"CLE\",\"cbs_id\":\"2804169\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32706\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14908\",\"draft_team\":\"NYG\",\"birthdate\":\"934174800\",\"name\":\"McKinney, Xavier\",\"draft_pick\":\"4\",\"college\":\"Alabama\",\"rotowire_id\":\"14617\",\"height\":\"73\",\"jersey\":\"29\",\"twitter_username\":\"mckinney15__\",\"sportsdata_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"team\":\"NYG\",\"cbs_id\":\"2741205\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32715\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14909\",\"draft_team\":\"TBB\",\"birthdate\":\"903243600\",\"name\":\"Winfield, Antoine\",\"draft_pick\":\"13\",\"college\":\"Minnesota\",\"rotowire_id\":\"14484\",\"height\":\"69\",\"jersey\":\"31\",\"twitter_username\":\"AntoineWJr11\",\"sportsdata_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"team\":\"TBB\",\"cbs_id\":\"2239774\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32740\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14910\",\"draft_team\":\"MIA\",\"birthdate\":\"891493200\",\"name\":\"Jones, Brandon\",\"draft_pick\":\"6\",\"college\":\"Texas\",\"rotowire_id\":\"14696\",\"height\":\"72\",\"jersey\":\"29\",\"twitter_username\":\"BlessedJones33\",\"sportsdata_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"team\":\"MIA\",\"cbs_id\":\"2246113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32738\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14911\",\"draft_team\":\"NYJ\",\"birthdate\":\"844923600\",\"name\":\"Davis, Ashtyn\",\"draft_pick\":\"4\",\"college\":\"California\",\"rotowire_id\":\"14447\",\"height\":\"73\",\"jersey\":\"32\",\"sportsdata_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"team\":\"NYJ\",\"cbs_id\":\"2180264\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33211\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"191\",\"id\":\"14912\",\"draft_team\":\"FA\",\"birthdate\":\"854514000\",\"name\":\"Blankenship, Rodrigo\",\"college\":\"Georgia\",\"rotowire_id\":\"14437\",\"height\":\"73\",\"jersey\":\"3\",\"sportsdata_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"team\":\"IND\",\"cbs_id\":\"2183949\"},{\"draft_year\":\"2018\",\"birthdate\":\"773298000\",\"draft_team\":\"FA\",\"stats_id\":\"31669\",\"position\":\"DE\",\"name\":\"Walker, Cavon\",\"college\":\"Maryland\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13244\",\"weight\":\"278\",\"sportsdata_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"id\":\"14913\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"640933200\",\"draft_team\":\"FA\",\"stats_id\":\"32668\",\"position\":\"PK\",\"name\":\"Hajrullahu, Lirim\",\"college\":\"Western Ontario\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"14808\",\"weight\":\"205\",\"sportsdata_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"id\":\"14914\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"799563600\",\"draft_team\":\"FA\",\"stats_id\":\"32667\",\"position\":\"PK\",\"name\":\"MacGinnis, Austin\",\"college\":\"Kentucky\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14354\",\"weight\":\"185\",\"sportsdata_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"id\":\"14915\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"878706000\",\"draft_team\":\"FA\",\"stats_id\":\"32097\",\"position\":\"CB\",\"name\":\"Smith, Saivion\",\"college\":\"Alabama\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13589\",\"jersey\":\"35\",\"weight\":\"199\",\"sportsdata_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"id\":\"14916\",\"team\":\"DAL\"},{\"draft_year\":\"2019\",\"birthdate\":\"852613200\",\"draft_team\":\"FA\",\"stats_id\":\"32669\",\"position\":\"RB\",\"name\":\"Patrick, Jacques\",\"college\":\"Florida State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13964\",\"weight\":\"236\",\"sportsdata_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"id\":\"14917\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32686\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14918\",\"draft_team\":\"ATL\",\"birthdate\":\"906526800\",\"name\":\"Terrell, A.J.\",\"draft_pick\":\"16\",\"college\":\"Clemson\",\"rotowire_id\":\"14526\",\"height\":\"74\",\"jersey\":\"24\",\"twitter_username\":\"ajterrell_8\",\"sportsdata_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"team\":\"ATL\",\"cbs_id\":\"2809212\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32700\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"196\",\"id\":\"14919\",\"draft_team\":\"MIA\",\"birthdate\":\"943678800\",\"name\":\"Igbinoghene, Noah\",\"draft_pick\":\"30\",\"college\":\"Auburn\",\"rotowire_id\":\"14713\",\"height\":\"71\",\"jersey\":\"23\",\"twitter_username\":\"Noah_Igbo9\",\"sportsdata_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"team\":\"MIA\",\"cbs_id\":\"2829987\"},{\"draft_year\":\"2020\",\"draft_round\":\"1\",\"status\":\"R\",\"stats_id\":\"32701\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14920\",\"draft_team\":\"MIN\",\"birthdate\":\"850366800\",\"name\":\"Gladney, Jeff\",\"draft_pick\":\"31\",\"college\":\"TCU\",\"rotowire_id\":\"14548\",\"height\":\"72\",\"jersey\":\"20\",\"sportsdata_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"team\":\"MIN\",\"cbs_id\":\"2180855\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32710\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"14921\",\"draft_team\":\"NEP\",\"birthdate\":\"827470800\",\"name\":\"Dugger, Kyle\",\"draft_pick\":\"5\",\"college\":\"Lenoir-Rhyne University\",\"rotowire_id\":\"14542\",\"height\":\"74\",\"jersey\":\"35\",\"twitter_username\":\"KingDugg_3\",\"sportsdata_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"team\":\"NEP\",\"cbs_id\":\"3150388\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32709\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14922\",\"draft_team\":\"HOU\",\"birthdate\":\"899960400\",\"name\":\"Blacklock, Ross\",\"draft_pick\":\"8\",\"college\":\"TCU\",\"rotowire_id\":\"14406\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"1krozayy\",\"sportsdata_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"team\":\"HOU\",\"cbs_id\":\"2240321\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32718\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"253\",\"id\":\"14923\",\"draft_team\":\"SEA\",\"birthdate\":\"859179600\",\"name\":\"Taylor, Darrell\",\"draft_pick\":\"16\",\"college\":\"Tennessee\",\"rotowire_id\":\"14649\",\"height\":\"75\",\"jersey\":\"58\",\"twitter_username\":\"darrelltaylorst\",\"sportsdata_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"team\":\"SEA\",\"cbs_id\":\"2180538\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32720\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"14924\",\"draft_team\":\"CHI\",\"birthdate\":\"924498000\",\"name\":\"Johnson, Jaylon\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14627\",\"height\":\"72\",\"jersey\":\"33\",\"twitter_username\":\"NBAxJay1\",\"sportsdata_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"team\":\"CHI\",\"cbs_id\":\"2827532\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32730\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14925\",\"draft_team\":\"NEP\",\"birthdate\":\"906094800\",\"name\":\"Uche, Josh\",\"draft_pick\":\"28\",\"college\":\"Michigan\",\"rotowire_id\":\"14477\",\"height\":\"74\",\"twitter_username\":\"_Uche35\",\"sportsdata_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"team\":\"NEP\",\"cbs_id\":\"2260670\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32733\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14926\",\"draft_team\":\"KCC\",\"birthdate\":\"887518800\",\"name\":\"Gay, Willie\",\"draft_pick\":\"31\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14520\",\"height\":\"74\",\"jersey\":\"50\",\"twitter_username\":\"WillieG___\",\"sportsdata_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"2\",\"status\":\"R\",\"stats_id\":\"32734\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"212\",\"id\":\"14927\",\"draft_team\":\"CAR\",\"birthdate\":\"888469200\",\"name\":\"Chinn, Jeremy\",\"draft_pick\":\"32\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14623\",\"height\":\"75\",\"jersey\":\"21\",\"twitter_username\":\"ChinnJeremy2\",\"sportsdata_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"team\":\"CAR\",\"cbs_id\":\"2247190\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32735\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14928\",\"draft_team\":\"CIN\",\"birthdate\":\"836802000\",\"name\":\"Wilson, Logan\",\"draft_pick\":\"1\",\"college\":\"Wyoming\",\"rotowire_id\":\"14647\",\"height\":\"74\",\"jersey\":\"55\",\"twitter_username\":\"ljw21\",\"sportsdata_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"team\":\"CIN\",\"cbs_id\":\"2181091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32737\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"241\",\"id\":\"14929\",\"draft_team\":\"DET\",\"birthdate\":\"883198800\",\"name\":\"Okwara, Julian\",\"draft_pick\":\"3\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14448\",\"height\":\"77\",\"jersey\":\"99\",\"twitter_username\":\"julian_okwara\",\"sportsdata_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"team\":\"DET\",\"cbs_id\":\"2260688\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32743\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"310\",\"id\":\"14930\",\"draft_team\":\"JAC\",\"birthdate\":\"854773200\",\"name\":\"Hamilton, Davon\",\"draft_pick\":\"9\",\"college\":\"Ohio State\",\"rotowire_id\":\"14714\",\"height\":\"76\",\"jersey\":\"52\",\"twitter_username\":\"dmhamilton53\",\"sportsdata_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"team\":\"JAC\",\"cbs_id\":\"2179811\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32747\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14931\",\"draft_team\":\"DEN\",\"birthdate\":\"874040400\",\"name\":\"Ojemudia, Michael\",\"draft_pick\":\"13\",\"college\":\"Iowa\",\"rotowire_id\":\"14711\",\"height\":\"73\",\"jersey\":\"23\",\"twitter_username\":\"GotMo_J\",\"sportsdata_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"team\":\"DEN\",\"cbs_id\":\"2179727\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"252\",\"id\":\"14932\",\"draft_team\":\"LAR\",\"name\":\"Lewis, Terrell\",\"draft_pick\":\"20\",\"college\":\"Alabama\",\"rotowire_id\":\"14390\",\"height\":\"77\",\"jersey\":\"52\",\"twitter_username\":\"_real24_\",\"sportsdata_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"team\":\"LAR\",\"cbs_id\":\"2252836\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32755\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"14933\",\"draft_team\":\"IND\",\"birthdate\":\"903934800\",\"name\":\"Blackmon, Julian\",\"draft_pick\":\"21\",\"college\":\"Utah\",\"rotowire_id\":\"14704\",\"height\":\"73\",\"jersey\":\"32\",\"twitter_username\":\"jumpmanjuice23\",\"sportsdata_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"team\":\"IND\",\"cbs_id\":\"2253091\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32758\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14934\",\"draft_team\":\"CLE\",\"birthdate\":\"880261200\",\"name\":\"Elliott, Jordan\",\"draft_pick\":\"24\",\"college\":\"Missouri\",\"rotowire_id\":\"14353\",\"height\":\"76\",\"jersey\":\"90\",\"twitter_username\":\"bigj5k\",\"sportsdata_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"team\":\"CLE\",\"cbs_id\":\"2246110\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32759\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14935\",\"draft_team\":\"MIN\",\"birthdate\":\"904798800\",\"name\":\"Dantzler, Cameron\",\"draft_pick\":\"25\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14363\",\"height\":\"74\",\"jersey\":\"27\",\"twitter_username\":\"camdantzler3\",\"sportsdata_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"team\":\"MIN\",\"cbs_id\":\"2248633\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32761\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14936\",\"draft_team\":\"NEP\",\"birthdate\":\"871534800\",\"name\":\"Asiasi, Devin\",\"draft_pick\":\"27\",\"college\":\"UCLA\",\"rotowire_id\":\"14425\",\"height\":\"75\",\"jersey\":\"86\",\"twitter_username\":\"ASI2X\",\"sportsdata_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"team\":\"NEP\",\"cbs_id\":\"2260483\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32765\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"300\",\"id\":\"14937\",\"draft_team\":\"DEN\",\"birthdate\":\"875163600\",\"name\":\"Agim, McTelvin\",\"draft_pick\":\"31\",\"college\":\"Arkansas\",\"rotowire_id\":\"14602\",\"height\":\"75\",\"jersey\":\"95\",\"twitter_username\":\"So_Splash\",\"sportsdata_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"team\":\"DEN\",\"cbs_id\":\"2240258\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32770\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14938\",\"draft_team\":\"LVR\",\"birthdate\":\"841986000\",\"name\":\"Muse, Tanner\",\"draft_pick\":\"36\",\"college\":\"Clemson\",\"rotowire_id\":\"14690\",\"height\":\"75\",\"jersey\":\"55\",\"twitter_username\":\"tanner_muse\",\"sportsdata_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"team\":\"LVR\",\"cbs_id\":\"2179227\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32771\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"251\",\"id\":\"14939\",\"draft_team\":\"NEP\",\"birthdate\":\"924066000\",\"name\":\"Keene, Dalton\",\"draft_pick\":\"37\",\"college\":\"Virginia Tech\",\"rotowire_id\":\"14559\",\"height\":\"76\",\"jersey\":\"44\",\"twitter_username\":\"DaltonKeene18\",\"sportsdata_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"team\":\"NEP\",\"cbs_id\":\"2805113\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32772\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"14940\",\"draft_team\":\"PIT\",\"birthdate\":\"870930000\",\"name\":\"Highsmith, Alex\",\"draft_pick\":\"38\",\"college\":\"North Carolina-Charlotte\",\"rotowire_id\":\"14724\",\"height\":\"76\",\"jersey\":\"56\",\"twitter_username\":\"highsmith34\",\"sportsdata_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"team\":\"PIT\",\"cbs_id\":\"2241393\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32773\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14941\",\"draft_team\":\"PHI\",\"birthdate\":\"902293200\",\"name\":\"Taylor, Davion\",\"draft_pick\":\"39\",\"college\":\"Colorado\",\"rotowire_id\":\"14751\",\"height\":\"74\",\"jersey\":\"52\",\"twitter_username\":\"daviontaylot\",\"sportsdata_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"team\":\"PHI\",\"cbs_id\":\"2962569\"},{\"draft_year\":\"2020\",\"draft_round\":\"3\",\"status\":\"R\",\"stats_id\":\"32774\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14942\",\"draft_team\":\"LAR\",\"birthdate\":\"910846800\",\"name\":\"Burgess, Terrell\",\"draft_pick\":\"40\",\"college\":\"Utah\",\"rotowire_id\":\"14702\",\"height\":\"72\",\"jersey\":\"26\",\"twitter_username\":\"titaniumt98\",\"sportsdata_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"team\":\"LAR\",\"cbs_id\":\"2240499\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32777\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14943\",\"draft_team\":\"CIN\",\"birthdate\":\"874818000\",\"name\":\"Davis-Gaither, Akeem\",\"draft_pick\":\"1\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14661\",\"height\":\"74\",\"jersey\":\"59\",\"twitter_username\":\"AkeemDavis16\",\"sportsdata_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"team\":\"CIN\",\"cbs_id\":\"2182263\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32780\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"198\",\"id\":\"14944\",\"draft_team\":\"NYG\",\"birthdate\":\"898578000\",\"name\":\"Holmes, Darney\",\"draft_pick\":\"4\",\"college\":\"UCLA\",\"rotowire_id\":\"14535\",\"height\":\"70\",\"jersey\":\"30\",\"twitter_username\":\"prowaydarnay\",\"sportsdata_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32783\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"194\",\"id\":\"14945\",\"draft_team\":\"CAR\",\"birthdate\":\"885186000\",\"name\":\"Pride, Troy\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14581\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"TroyPride18\",\"sportsdata_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"team\":\"CAR\",\"cbs_id\":\"2260689\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32784\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"335\",\"id\":\"14946\",\"draft_team\":\"ARI\",\"birthdate\":\"903848400\",\"name\":\"Fotu, Leki\",\"draft_pick\":\"8\",\"college\":\"Utah\",\"rotowire_id\":\"14712\",\"height\":\"77\",\"jersey\":\"95\",\"twitter_username\":\"LekiFotu\",\"sportsdata_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"team\":\"ARI\",\"cbs_id\":\"2240504\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32787\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14947\",\"draft_team\":\"MIN\",\"birthdate\":\"878274000\",\"name\":\"Wonnum, D.J.\",\"draft_pick\":\"11\",\"college\":\"South Carolina\",\"rotowire_id\":\"14612\",\"height\":\"77\",\"jersey\":\"57\",\"twitter_username\":\"dwonnum\",\"sportsdata_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"team\":\"MIN\",\"cbs_id\":\"2252822\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32789\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"219\",\"id\":\"14948\",\"draft_team\":\"ATL\",\"birthdate\":\"872744400\",\"name\":\"Walker, Mykal\",\"draft_pick\":\"13\",\"college\":\"Fresno State\",\"rotowire_id\":\"14754\",\"height\":\"75\",\"jersey\":\"43\",\"twitter_username\":\"MykalWalker3\",\"sportsdata_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"team\":\"ATL\",\"cbs_id\":\"2865637\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32793\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"197\",\"id\":\"14949\",\"draft_team\":\"DAL\",\"birthdate\":\"860994000\",\"name\":\"Robinson, Reggie\",\"draft_pick\":\"17\",\"college\":\"Tulsa\",\"rotowire_id\":\"14708\",\"height\":\"73\",\"jersey\":\"41\",\"twitter_username\":\"RegRobII\",\"sportsdata_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32797\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"208\",\"id\":\"14950\",\"draft_team\":\"PHI\",\"birthdate\":\"869806800\",\"name\":\"Wallace, K'Von\",\"draft_pick\":\"21\",\"college\":\"Clemson\",\"rotowire_id\":\"14686\",\"height\":\"71\",\"jersey\":\"42\",\"twitter_username\":\"KVonWallace\",\"sportsdata_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"team\":\"PHI\",\"cbs_id\":\"2239538\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32800\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"14951\",\"draft_team\":\"MIN\",\"birthdate\":\"916808400\",\"name\":\"Lynch, James\",\"draft_pick\":\"24\",\"college\":\"Baylor\",\"rotowire_id\":\"14499\",\"height\":\"76\",\"jersey\":\"66\",\"twitter_username\":\"JamesHusker38\",\"sportsdata_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"team\":\"MIN\",\"cbs_id\":\"2868531\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32801\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"308\",\"id\":\"14952\",\"draft_team\":\"ARI\",\"birthdate\":\"904194000\",\"name\":\"Lawrence, Rashard\",\"draft_pick\":\"25\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14717\",\"height\":\"74\",\"jersey\":\"92\",\"twitter_username\":\"Rashard_99\",\"sportsdata_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"team\":\"ARI\",\"cbs_id\":\"2223249\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32802\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"225\",\"id\":\"14953\",\"draft_team\":\"MIN\",\"birthdate\":\"843022800\",\"name\":\"Dye, Troy\",\"draft_pick\":\"26\",\"college\":\"Oregon\",\"rotowire_id\":\"14740\",\"height\":\"76\",\"jersey\":\"45\",\"twitter_username\":\"tdye15dbtroy\",\"sportsdata_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"team\":\"MIN\",\"cbs_id\":\"2221826\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32804\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14954\",\"draft_team\":\"ATL\",\"birthdate\":\"872485200\",\"name\":\"Hawkins, Jaylinn\",\"draft_pick\":\"28\",\"college\":\"California\",\"rotowire_id\":\"14697\",\"height\":\"74\",\"jersey\":\"32\",\"twitter_username\":\"jhawko6\",\"sportsdata_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"team\":\"ATL\",\"cbs_id\":\"2180267\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32807\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"14955\",\"draft_team\":\"JAC\",\"birthdate\":\"923288400\",\"name\":\"Scott, Josiah\",\"draft_pick\":\"31\",\"college\":\"Michigan State\",\"rotowire_id\":\"14413\",\"height\":\"70\",\"jersey\":\"24\",\"twitter_username\":\"josiahscott7\",\"sportsdata_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"team\":\"JAC\",\"cbs_id\":\"2807092\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32808\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14956\",\"draft_team\":\"KCC\",\"birthdate\":\"853822800\",\"name\":\"Sneed, L'Jarius\",\"draft_pick\":\"32\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14688\",\"height\":\"73\",\"jersey\":\"38\",\"sportsdata_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"team\":\"KCC\",\"cbs_id\":\"2239881\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32809\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"183\",\"id\":\"14957\",\"draft_team\":\"LVR\",\"birthdate\":\"899701200\",\"name\":\"Robertson, Amik\",\"draft_pick\":\"33\",\"college\":\"Louisiana Tech\",\"rotowire_id\":\"14709\",\"height\":\"69\",\"jersey\":\"21\",\"twitter_username\":\"_youngtruth7\",\"sportsdata_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"team\":\"LVR\",\"cbs_id\":\"2816298\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32810\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14958\",\"draft_team\":\"JAC\",\"birthdate\":\"878014800\",\"name\":\"Quarterman, Shaquille\",\"draft_pick\":\"34\",\"college\":\"Miami\",\"rotowire_id\":\"14747\",\"height\":\"73\",\"jersey\":\"50\",\"sportsdata_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"team\":\"JAC\",\"cbs_id\":\"2221934\"},{\"draft_year\":\"2020\",\"draft_round\":\"4\",\"status\":\"R\",\"stats_id\":\"32811\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"181\",\"id\":\"14959\",\"draft_team\":\"HOU\",\"birthdate\":\"832136400\",\"name\":\"Reid, John\",\"draft_pick\":\"35\",\"college\":\"Penn State\",\"rotowire_id\":\"14710\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"John_Doe_25\",\"sportsdata_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"team\":\"HOU\",\"cbs_id\":\"2186643\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32818\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"260\",\"id\":\"14960\",\"draft_team\":\"SEA\",\"birthdate\":\"896763600\",\"name\":\"Robinson, Alton\",\"draft_pick\":\"2\",\"college\":\"Syracuse\",\"rotowire_id\":\"14727\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"team\":\"SEA\",\"cbs_id\":\"2868213\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32822\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14961\",\"draft_team\":\"CAR\",\"name\":\"Robinson, Kenny\",\"draft_pick\":\"6\",\"college\":\"West Virginia\",\"rotowire_id\":\"14787\",\"height\":\"74\",\"twitter_username\":\"krob2__\",\"sportsdata_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"team\":\"CAR\",\"cbs_id\":\"2835561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32825\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"268\",\"id\":\"14962\",\"draft_team\":\"CHI\",\"birthdate\":\"866178000\",\"name\":\"Gipson, Trevis\",\"draft_pick\":\"9\",\"college\":\"Tulsa\",\"rotowire_id\":\"14680\",\"height\":\"76\",\"jersey\":\"99\",\"twitter_username\":\"trevisgipson\",\"sportsdata_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"team\":\"CHI\",\"cbs_id\":\"2181277\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32827\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"14963\",\"draft_team\":\"JAC\",\"birthdate\":\"899269200\",\"name\":\"Thomas, Daniel\",\"draft_pick\":\"11\",\"college\":\"Auburn\",\"rotowire_id\":\"14687\",\"height\":\"71\",\"jersey\":\"20\",\"twitter_username\":\"gamechanger021\",\"sportsdata_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"team\":\"JAC\",\"cbs_id\":\"2241807\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32828\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"201\",\"id\":\"14964\",\"draft_team\":\"NYJ\",\"birthdate\":\"863326800\",\"name\":\"Hall, Bryce\",\"draft_pick\":\"12\",\"college\":\"Virginia\",\"rotowire_id\":\"14445\",\"height\":\"73\",\"jersey\":\"37\",\"sportsdata_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"team\":\"NYJ\",\"cbs_id\":\"2251254\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32829\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14965\",\"draft_team\":\"NEP\",\"birthdate\":\"849934800\",\"name\":\"Rohrwasser, Justin\",\"draft_pick\":\"13\",\"college\":\"Marshall\",\"rotowire_id\":\"14822\",\"height\":\"75\",\"sportsdata_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"team\":\"FA\",\"cbs_id\":\"2194734\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32832\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14966\",\"draft_team\":\"WAS\",\"birthdate\":\"881384400\",\"name\":\"Hudson, Khaleke\",\"draft_pick\":\"16\",\"college\":\"Michigan\",\"rotowire_id\":\"14480\",\"height\":\"72\",\"jersey\":\"47\",\"twitter_username\":\"KhalekeHudson\",\"sportsdata_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"team\":\"WAS\",\"cbs_id\":\"2260652\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32833\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14967\",\"draft_team\":\"CHI\",\"birthdate\":\"881816400\",\"name\":\"Vildor, Kindle\",\"draft_pick\":\"17\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14706\",\"height\":\"71\",\"jersey\":\"37\",\"twitter_username\":\"ThePremier20\",\"sportsdata_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"team\":\"CHI\",\"cbs_id\":\"2252448\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32834\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"14968\",\"draft_team\":\"MIA\",\"birthdate\":\"902120400\",\"name\":\"Weaver, Curtis\",\"draft_pick\":\"18\",\"college\":\"Boise State\",\"rotowire_id\":\"14409\",\"height\":\"75\",\"jersey\":\"61\",\"twitter_username\":\"curtisweaver99\",\"sportsdata_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"team\":\"CLE\",\"cbs_id\":\"2257946\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32838\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14969\",\"draft_team\":\"PHI\",\"birthdate\":\"833518800\",\"name\":\"Hightower, John\",\"draft_pick\":\"22\",\"college\":\"Boise State\",\"rotowire_id\":\"14567\",\"height\":\"74\",\"jersey\":\"82\",\"sportsdata_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"team\":\"PHI\",\"cbs_id\":\"2969061\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32839\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"192\",\"id\":\"14970\",\"draft_team\":\"MIN\",\"birthdate\":\"910846800\",\"name\":\"Hand, Harrison\",\"draft_pick\":\"23\",\"college\":\"Temple\",\"rotowire_id\":\"14522\",\"height\":\"72\",\"jersey\":\"38\",\"twitter_username\":\"__harry22\",\"sportsdata_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"team\":\"MIN\",\"cbs_id\":\"2868561\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32840\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"305\",\"id\":\"14971\",\"draft_team\":\"BAL\",\"birthdate\":\"849675600\",\"name\":\"Washington, Broderick\",\"draft_pick\":\"24\",\"college\":\"Texas Tech\",\"rotowire_id\":\"14720\",\"height\":\"75\",\"jersey\":\"96\",\"sportsdata_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"team\":\"BAL\",\"cbs_id\":\"2185746\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32841\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14972\",\"draft_team\":\"HOU\",\"name\":\"Coulter, Isaiah\",\"draft_pick\":\"25\",\"college\":\"Rhode Island\",\"rotowire_id\":\"14537\",\"height\":\"75\",\"jersey\":\"82\",\"sportsdata_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"team\":\"HOU\",\"cbs_id\":\"2830035\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32842\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"14973\",\"draft_team\":\"DET\",\"birthdate\":\"893048400\",\"name\":\"Huntley, Jason\",\"draft_pick\":\"26\",\"college\":\"New Mexico State\",\"rotowire_id\":\"14796\",\"height\":\"69\",\"jersey\":\"32\",\"twitter_username\":\"thejasonhuntley\",\"sportsdata_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"team\":\"PHI\",\"cbs_id\":\"2239939\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32843\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"172\",\"id\":\"14974\",\"draft_team\":\"CHI\",\"birthdate\":\"878101200\",\"name\":\"Mooney, Darnell\",\"draft_pick\":\"27\",\"college\":\"Tulane\",\"rotowire_id\":\"14510\",\"height\":\"71\",\"jersey\":\"11\",\"twitter_username\":\"Darnell_M1\",\"sportsdata_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"team\":\"CHI\",\"cbs_id\":\"2240651\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32844\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"291\",\"id\":\"14975\",\"draft_team\":\"TEN\",\"birthdate\":\"861858000\",\"name\":\"Murchison, Larrell\",\"draft_pick\":\"28\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14718\",\"height\":\"75\",\"jersey\":\"91\",\"twitter_username\":\"Murchboy92\",\"sportsdata_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"team\":\"TEN\",\"cbs_id\":\"2865164\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32845\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14976\",\"draft_team\":\"GBP\",\"birthdate\":\"898059600\",\"name\":\"Martin, Kamal\",\"draft_pick\":\"29\",\"college\":\"Minnesota\",\"rotowire_id\":\"14385\",\"height\":\"75\",\"twitter_username\":\"KamalMartin6\",\"sportsdata_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"team\":\"GBP\",\"cbs_id\":\"2239765\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32846\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"14977\",\"draft_team\":\"MIN\",\"birthdate\":\"865918800\",\"name\":\"Osborn, K.J.\",\"draft_pick\":\"30\",\"college\":\"Miami\",\"rotowire_id\":\"14641\",\"height\":\"72\",\"jersey\":\"17\",\"sportsdata_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"team\":\"MIN\",\"cbs_id\":\"2184383\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32847\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"14978\",\"draft_team\":\"KCC\",\"birthdate\":\"881211600\",\"name\":\"Danna, Michael\",\"draft_pick\":\"31\",\"college\":\"Michigan\",\"rotowire_id\":\"14823\",\"height\":\"74\",\"jersey\":\"51\",\"twitter_username\":\"M_Danna4\",\"sportsdata_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"team\":\"KCC\",\"cbs_id\":\"2180090\"},{\"draft_year\":\"2020\",\"draft_round\":\"5\",\"status\":\"R\",\"stats_id\":\"32848\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"14979\",\"draft_team\":\"DEN\",\"birthdate\":\"840603600\",\"name\":\"Strnad, Justin\",\"draft_pick\":\"32\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14757\",\"height\":\"75\",\"jersey\":\"40\",\"twitter_username\":\"jsgarbs\",\"sportsdata_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"team\":\"DEN\",\"cbs_id\":\"2186413\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32852\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"233\",\"id\":\"14980\",\"draft_team\":\"NYG\",\"birthdate\":\"891406800\",\"name\":\"Brown, Cam\",\"draft_pick\":\"4\",\"college\":\"Penn State\",\"rotowire_id\":\"14596\",\"height\":\"77\",\"jersey\":\"47\",\"sportsdata_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"team\":\"NYG\",\"cbs_id\":\"2251294\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32854\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14981\",\"draft_team\":\"CAR\",\"birthdate\":\"845614800\",\"name\":\"Roy, Bravvion\",\"draft_pick\":\"5\",\"college\":\"Baylor\",\"rotowire_id\":\"14824\",\"height\":\"73\",\"jersey\":\"93\",\"twitter_username\":\"brave_roy\",\"sportsdata_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"team\":\"CAR\",\"cbs_id\":\"2253081\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32856\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"14982\",\"draft_team\":\"LAC\",\"birthdate\":\"874472400\",\"name\":\"Gilman, Alohi\",\"draft_pick\":\"7\",\"college\":\"Notre Dame\",\"rotowire_id\":\"14521\",\"height\":\"71\",\"jersey\":\"32\",\"twitter_username\":\"alohigilman\",\"sportsdata_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"team\":\"LAC\",\"cbs_id\":\"2868542\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32858\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"14983\",\"draft_team\":\"BUF\",\"birthdate\":\"855896400\",\"name\":\"Bass, Tyler\",\"draft_pick\":\"9\",\"college\":\"Georgia Southern\",\"rotowire_id\":\"14609\",\"height\":\"70\",\"jersey\":\"2\",\"twitter_username\":\"tbass_xvi\",\"sportsdata_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"team\":\"BUF\",\"cbs_id\":\"2188356\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32860\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14984\",\"draft_team\":\"SFO\",\"birthdate\":\"876978000\",\"name\":\"Woerner, Charlie\",\"draft_pick\":\"11\",\"college\":\"Georgia\",\"rotowire_id\":\"14608\",\"height\":\"77\",\"jersey\":\"89\",\"sportsdata_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"team\":\"SFO\",\"cbs_id\":\"2248629\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32861\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14985\",\"draft_team\":\"NYJ\",\"birthdate\":\"880347600\",\"name\":\"Mann, Braden\",\"draft_pick\":\"12\",\"college\":\"Texas A&M\",\"rotowire_id\":\"14654\",\"height\":\"71\",\"jersey\":\"7\",\"twitter_username\":\"MannBraden\",\"sportsdata_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32863\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"14986\",\"draft_team\":\"IND\",\"birthdate\":\"853304400\",\"name\":\"Windsor, Robert\",\"draft_pick\":\"14\",\"college\":\"Penn State\",\"rotowire_id\":\"14613\",\"height\":\"77\",\"twitter_username\":\"RobertWindsor54\",\"sportsdata_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"team\":\"IND\",\"cbs_id\":\"2186647\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32864\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"315\",\"id\":\"14987\",\"draft_team\":\"TBB\",\"birthdate\":\"840690000\",\"name\":\"Davis, Khalil\",\"draft_pick\":\"15\",\"college\":\"Nebraska\",\"rotowire_id\":\"14682\",\"height\":\"74\",\"jersey\":\"94\",\"twitter_username\":\"khalildaish95\",\"sportsdata_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"team\":\"TBB\",\"cbs_id\":\"2179622\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32866\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"14988\",\"draft_team\":\"PHI\",\"birthdate\":\"860475600\",\"name\":\"Bradley, Shaun\",\"draft_pick\":\"17\",\"college\":\"Temple\",\"rotowire_id\":\"14737\",\"height\":\"73\",\"jersey\":\"54\",\"twitter_username\":\"Sdot_Bradley5\",\"sportsdata_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"team\":\"PHI\",\"cbs_id\":\"2239597\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32867\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"333\",\"id\":\"14989\",\"draft_team\":\"DET\",\"birthdate\":\"865054800\",\"name\":\"Penisini, John\",\"draft_pick\":\"18\",\"college\":\"Utah\",\"rotowire_id\":\"14719\",\"height\":\"74\",\"jersey\":\"91\",\"twitter_username\":\"Dub_jayy_boy\",\"sportsdata_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"team\":\"DET\",\"cbs_id\":\"2827536\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32868\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"14990\",\"draft_team\":\"PIT\",\"birthdate\":\"909550800\",\"name\":\"Brooks, Antoine\",\"draft_pick\":\"19\",\"college\":\"Maryland\",\"rotowire_id\":\"14595\",\"height\":\"71\",\"jersey\":\"25\",\"twitter_username\":\"TwanDoee\",\"sportsdata_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32869\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"14991\",\"draft_team\":\"LAR\",\"birthdate\":\"888987600\",\"name\":\"Fuller, Jordan\",\"draft_pick\":\"20\",\"college\":\"Ohio State\",\"rotowire_id\":\"14698\",\"height\":\"74\",\"jersey\":\"32\",\"twitter_username\":\"j_fuller4\",\"sportsdata_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"team\":\"LAR\",\"cbs_id\":\"2260978\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32870\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"14992\",\"draft_team\":\"PHI\",\"birthdate\":\"897368400\",\"name\":\"Watkins, Quez\",\"draft_pick\":\"21\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"14464\",\"height\":\"74\",\"jersey\":\"80\",\"twitter_username\":\"AdamSchefter\",\"sportsdata_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"team\":\"PHI\",\"cbs_id\":\"2262953\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32872\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"14993\",\"draft_team\":\"ARI\",\"birthdate\":\"902811600\",\"name\":\"Weaver, Evan\",\"draft_pick\":\"23\",\"college\":\"California\",\"rotowire_id\":\"14752\",\"height\":\"75\",\"twitter_username\":\"Weavin_it\",\"sportsdata_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"team\":\"FA\",\"cbs_id\":\"2250836\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32874\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"248\",\"id\":\"14994\",\"draft_team\":\"NEP\",\"birthdate\":\"907390800\",\"name\":\"Maluia, Cassh\",\"draft_pick\":\"25\",\"college\":\"Wyoming\",\"rotowire_id\":\"14826\",\"height\":\"72\",\"jersey\":\"46\",\"twitter_username\":\"cassh7mula\",\"sportsdata_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"team\":\"NEP\",\"cbs_id\":\"2258320\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32875\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"14995\",\"draft_team\":\"MIN\",\"birthdate\":\"885358800\",\"name\":\"Metellus, Josh\",\"draft_pick\":\"26\",\"college\":\"Michigan\",\"rotowire_id\":\"14479\",\"height\":\"72\",\"twitter_username\":\"NoExcuses_23\",\"sportsdata_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"team\":\"MIN\",\"cbs_id\":\"2260662\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32876\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"14996\",\"draft_team\":\"JAC\",\"birthdate\":\"859957200\",\"name\":\"Davis, Tyler\",\"draft_pick\":\"27\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14827\",\"height\":\"76\",\"jersey\":\"87\",\"twitter_username\":\"Tyler_Davis9\",\"sportsdata_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"team\":\"JAC\",\"cbs_id\":\"2182811\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32881\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"14997\",\"draft_team\":\"IND\",\"birthdate\":\"884149200\",\"name\":\"Rodgers, Isaiah\",\"draft_pick\":\"32\",\"college\":\"Massachusetts\",\"rotowire_id\":\"14828\",\"height\":\"70\",\"jersey\":\"34\",\"twitter_username\":\"rodgers_isaiah\",\"sportsdata_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"team\":\"IND\",\"cbs_id\":\"2261492\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32882\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"14998\",\"draft_team\":\"IND\",\"birthdate\":\"902379600\",\"name\":\"Patmon, Dezmon\",\"draft_pick\":\"33\",\"college\":\"Washington State\",\"rotowire_id\":\"14643\",\"height\":\"76\",\"jersey\":\"85\",\"twitter_username\":\"dadpat7\",\"sportsdata_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"team\":\"IND\",\"cbs_id\":\"2221990\"},{\"draft_year\":\"2020\",\"draft_round\":\"6\",\"status\":\"R\",\"stats_id\":\"32883\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"226\",\"id\":\"14999\",\"draft_team\":\"IND\",\"birthdate\":\"835938000\",\"name\":\"Glasgow, Jordan\",\"draft_pick\":\"34\",\"college\":\"Michigan\",\"rotowire_id\":\"14799\",\"height\":\"73\",\"jersey\":\"59\",\"sportsdata_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"team\":\"IND\",\"cbs_id\":\"2185709\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32885\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15000\",\"draft_team\":\"CIN\",\"birthdate\":\"857710800\",\"name\":\"Bailey, Markus\",\"draft_pick\":\"1\",\"college\":\"Purdue\",\"rotowire_id\":\"14736\",\"height\":\"73\",\"jersey\":\"51\",\"twitter_username\":\"mb_boiler21\",\"sportsdata_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"team\":\"CIN\",\"cbs_id\":\"2183896\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32886\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"203\",\"id\":\"15001\",\"draft_team\":\"WAS\",\"birthdate\":\"922856400\",\"name\":\"Curl, Kamren\",\"draft_pick\":\"2\",\"college\":\"Arkansas\",\"rotowire_id\":\"14381\",\"height\":\"74\",\"jersey\":\"31\",\"twitter_username\":\"KCurl_2\",\"sportsdata_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"team\":\"WAS\",\"cbs_id\":\"2866171\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32888\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"245\",\"id\":\"15002\",\"draft_team\":\"NYG\",\"birthdate\":\"869461200\",\"name\":\"Coughlin, Carter\",\"draft_pick\":\"4\",\"college\":\"Minnesota\",\"rotowire_id\":\"14580\",\"height\":\"76\",\"jersey\":\"49\",\"twitter_username\":\"Cmoe34\",\"sportsdata_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"team\":\"NYG\",\"cbs_id\":\"2239754\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32889\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15003\",\"draft_team\":\"BAL\",\"birthdate\":\"924498000\",\"name\":\"Stone, Geno\",\"draft_pick\":\"5\",\"college\":\"Iowa\",\"rotowire_id\":\"14474\",\"height\":\"71\",\"jersey\":\"26\",\"twitter_username\":\"GenoStone22\",\"sportsdata_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"team\":\"BAL\",\"cbs_id\":\"2867170\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32891\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"184\",\"id\":\"15004\",\"draft_team\":\"CAR\",\"birthdate\":\"896936400\",\"name\":\"Thomas-Oliver, Stantley\",\"draft_pick\":\"7\",\"college\":\"Florida International\",\"rotowire_id\":\"14707\",\"height\":\"74\",\"jersey\":\"23\",\"twitter_username\":\"__Alcatraz21\",\"sportsdata_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"team\":\"CAR\",\"cbs_id\":\"2262783\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32895\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15005\",\"draft_team\":\"MIN\",\"birthdate\":\"869547600\",\"name\":\"Willekes, Kenny\",\"draft_pick\":\"11\",\"college\":\"Michigan State\",\"rotowire_id\":\"14732\",\"height\":\"76\",\"jersey\":\"79\",\"twitter_username\":\"kennyw97\",\"sportsdata_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"team\":\"MIN\",\"cbs_id\":\"2186438\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32898\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"199\",\"id\":\"15006\",\"draft_team\":\"ATL\",\"birthdate\":\"849762000\",\"name\":\"Hofrichter, Sterling\",\"draft_pick\":\"14\",\"college\":\"Syracuse\",\"rotowire_id\":\"14653\",\"height\":\"69\",\"jersey\":\"4\",\"twitter_username\":\"shofrichter10\",\"sportsdata_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"team\":\"ATL\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32899\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"265\",\"id\":\"15007\",\"draft_team\":\"WAS\",\"birthdate\":\"870238800\",\"name\":\"Smith-Williams, James\",\"draft_pick\":\"15\",\"college\":\"North Carolina State\",\"rotowire_id\":\"14729\",\"height\":\"75\",\"jersey\":\"72\",\"twitter_username\":\"jacsw3\",\"sportsdata_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"team\":\"WAS\",\"cbs_id\":\"2179368\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32901\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15008\",\"draft_team\":\"DAL\",\"birthdate\":\"848811600\",\"name\":\"DiNucci, Ben\",\"draft_pick\":\"17\",\"college\":\"James Madison\",\"rotowire_id\":\"14832\",\"height\":\"75\",\"jersey\":\"7\",\"twitter_username\":\"B_DiNucci6\",\"sportsdata_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"team\":\"DAL\",\"cbs_id\":\"2179411\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32902\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"320\",\"id\":\"15009\",\"draft_team\":\"PIT\",\"birthdate\":\"840690000\",\"name\":\"Davis, Carlos\",\"draft_pick\":\"18\",\"college\":\"Nebraska\",\"rotowire_id\":\"14681\",\"height\":\"74\",\"jersey\":\"73\",\"sportsdata_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"team\":\"PIT\",\"cbs_id\":\"2179621\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32903\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"247\",\"id\":\"15010\",\"draft_team\":\"PHI\",\"birthdate\":\"840603600\",\"name\":\"Toohill, Casey\",\"draft_pick\":\"19\",\"college\":\"Stanford\",\"rotowire_id\":\"14753\",\"height\":\"76\",\"jersey\":\"56\",\"twitter_username\":\"CaseyToohill\",\"sportsdata_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"team\":\"WAS\",\"cbs_id\":\"2186841\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32904\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"232\",\"id\":\"15011\",\"draft_team\":\"LAR\",\"birthdate\":\"839480400\",\"name\":\"Johnston, Clay\",\"draft_pick\":\"20\",\"college\":\"Baylor\",\"rotowire_id\":\"14743\",\"height\":\"73\",\"twitter_username\":\"C_Johnston4\",\"sportsdata_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"team\":\"FA\",\"cbs_id\":\"2189507\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32905\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"285\",\"id\":\"15012\",\"draft_team\":\"DET\",\"birthdate\":\"851922000\",\"name\":\"Cornell, Jashon\",\"draft_pick\":\"21\",\"college\":\"Ohio State\",\"rotowire_id\":\"14833\",\"height\":\"75\",\"jersey\":\"96\",\"twitter_username\":\"JayRock_9\",\"sportsdata_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"team\":\"DET\",\"cbs_id\":\"2179802\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32906\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"206\",\"id\":\"15013\",\"draft_team\":\"GBP\",\"birthdate\":\"873954000\",\"name\":\"Scott, Vernon\",\"draft_pick\":\"22\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14779\",\"height\":\"74\",\"jersey\":\"36\",\"twitter_username\":\"OfficialVern_\",\"sportsdata_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"team\":\"GBP\",\"cbs_id\":\"2240340\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32907\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"200\",\"id\":\"15014\",\"draft_team\":\"KCC\",\"birthdate\":\"879051600\",\"name\":\"Keyes, Thakarius\",\"draft_pick\":\"23\",\"college\":\"Tulane\",\"rotowire_id\":\"14579\",\"height\":\"73\",\"jersey\":\"29\",\"twitter_username\":\"TzKeyes\",\"sportsdata_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32908\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15015\",\"draft_team\":\"NYG\",\"birthdate\":\"881125200\",\"name\":\"Brunson, T.J.\",\"draft_pick\":\"24\",\"college\":\"South Carolina\",\"rotowire_id\":\"14834\",\"height\":\"73\",\"jersey\":\"35\",\"sportsdata_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"team\":\"NYG\",\"cbs_id\":\"2252794\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32909\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15016\",\"draft_team\":\"BUF\",\"birthdate\":\"849243600\",\"name\":\"Jackson, Dane\",\"draft_pick\":\"25\",\"college\":\"Pittsburgh\",\"rotowire_id\":\"14549\",\"height\":\"71\",\"twitter_username\":\"Djack11_\",\"sportsdata_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"team\":\"BUF\",\"cbs_id\":\"2179418\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32910\",\"position\":\"QB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15017\",\"draft_team\":\"NOS\",\"birthdate\":\"850626000\",\"name\":\"Stevens, Tommy\",\"draft_pick\":\"26\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14527\",\"height\":\"77\",\"sportsdata_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"team\":\"FA\",\"cbs_id\":\"2179839\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32911\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15018\",\"draft_team\":\"TBB\",\"birthdate\":\"853736400\",\"name\":\"Russell, Chapelle\",\"draft_pick\":\"27\",\"college\":\"Temple\",\"rotowire_id\":\"14755\",\"height\":\"73\",\"twitter_username\":\"DeuceRussell36\",\"sportsdata_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"team\":\"TBB\",\"cbs_id\":\"2186632\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32912\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15019\",\"draft_team\":\"GBP\",\"birthdate\":\"933138000\",\"name\":\"Garvin, Jonathan\",\"draft_pick\":\"28\",\"college\":\"Miami\",\"rotowire_id\":\"14365\",\"height\":\"76\",\"jersey\":\"53\",\"sportsdata_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"team\":\"GBP\",\"cbs_id\":\"2804100\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32913\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"186\",\"id\":\"15020\",\"draft_team\":\"TEN\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Chris\",\"draft_pick\":\"29\",\"college\":\"Marshall\",\"rotowire_id\":\"14835\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"team\":\"TEN\",\"cbs_id\":\"3679\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32915\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15021\",\"draft_team\":\"TBB\",\"birthdate\":\"891493200\",\"name\":\"Calais, Raymond\",\"draft_pick\":\"31\",\"college\":\"Louisiana-Lafayette\",\"rotowire_id\":\"14625\",\"height\":\"69\",\"jersey\":\"43\",\"twitter_username\":\"king_calais\",\"sportsdata_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"team\":\"LAR\",\"cbs_id\":\"2252175\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32916\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15022\",\"draft_team\":\"MIA\",\"birthdate\":\"861426000\",\"name\":\"Perry, Malcolm\",\"draft_pick\":\"32\",\"college\":\"Navy\",\"rotowire_id\":\"14504\",\"height\":\"69\",\"jersey\":\"10\",\"sportsdata_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"team\":\"MIA\",\"cbs_id\":\"2251971\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32917\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15023\",\"draft_team\":\"NYG\",\"birthdate\":\"864018000\",\"name\":\"Williamson, Chris\",\"draft_pick\":\"33\",\"college\":\"Minnesota\",\"rotowire_id\":\"14836\",\"height\":\"72\",\"sportsdata_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"team\":\"FA\",\"cbs_id\":\"2180451\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32918\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15024\",\"draft_team\":\"LAR\",\"birthdate\":\"874645200\",\"name\":\"Sloman, Sam\",\"draft_pick\":\"34\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14837\",\"height\":\"68\",\"jersey\":\"1\",\"twitter_username\":\"ssloman118\",\"sportsdata_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"team\":\"FA\",\"cbs_id\":\"2240109\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32919\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15025\",\"draft_team\":\"MIN\",\"birthdate\":\"860043600\",\"name\":\"Cole, Brian\",\"draft_pick\":\"35\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14620\",\"height\":\"74\",\"sportsdata_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32921\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"242\",\"id\":\"15026\",\"draft_team\":\"SEA\",\"birthdate\":\"849157200\",\"name\":\"Sullivan, Stephen\",\"draft_pick\":\"37\",\"college\":\"Louisiana State\",\"rotowire_id\":\"14570\",\"height\":\"77\",\"twitter_username\":\"SJS_10\",\"sportsdata_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"team\":\"SEA\",\"cbs_id\":\"2223251\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32922\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15027\",\"draft_team\":\"DEN\",\"birthdate\":\"874731600\",\"name\":\"Cleveland, Tyrie\",\"draft_pick\":\"38\",\"college\":\"Florida\",\"rotowire_id\":\"14621\",\"height\":\"74\",\"jersey\":\"86\",\"sportsdata_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"team\":\"DEN\",\"cbs_id\":\"2248604\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32923\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15028\",\"draft_team\":\"DEN\",\"birthdate\":\"837061200\",\"name\":\"Tuszka, Derrek\",\"draft_pick\":\"40\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14731\",\"height\":\"77\",\"sportsdata_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"team\":\"DEN\",\"cbs_id\":\"2190767\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32924\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15029\",\"draft_team\":\"NYG\",\"birthdate\":\"858142800\",\"name\":\"Crowder, Tae\",\"draft_pick\":\"41\",\"college\":\"Georgia\",\"rotowire_id\":\"14839\",\"height\":\"75\",\"jersey\":\"48\",\"twitter_username\":\"TaeCrowder\",\"sportsdata_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"team\":\"NYG\",\"cbs_id\":\"2180461\"},{\"draft_year\":\"2018\",\"birthdate\":\"826174800\",\"draft_team\":\"FA\",\"stats_id\":\"31744\",\"position\":\"LB\",\"name\":\"Gates, DeMarquis\",\"college\":\"Mississippi\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13942\",\"weight\":\"221\",\"sportsdata_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"id\":\"15030\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"841554000\",\"draft_team\":\"FA\",\"stats_id\":\"32358\",\"position\":\"PN\",\"name\":\"Fox, Jack\",\"college\":\"Rice\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13715\",\"jersey\":\"3\",\"weight\":\"224\",\"sportsdata_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"id\":\"15032\",\"team\":\"DET\"},{\"draft_year\":\"2019\",\"birthdate\":\"746773200\",\"draft_team\":\"FA\",\"stats_id\":\"32664\",\"position\":\"WR\",\"name\":\"Begelton, Reggie\",\"college\":\"Lamar\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14472\",\"weight\":\"200\",\"sportsdata_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"id\":\"15033\",\"team\":\"FA\",\"cbs_id\":\"3157671\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33109\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"15034\",\"draft_team\":\"FA\",\"birthdate\":\"890974800\",\"name\":\"Callaway, Marquez\",\"college\":\"Tennessee\",\"rotowire_id\":\"14556\",\"height\":\"74\",\"jersey\":\"12\",\"sportsdata_id\":\"1364cb22-1bfa-429b-8bde-dfd0d2938163\",\"team\":\"NOS\",\"cbs_id\":\"2247505\"},{\"draft_year\":\"2018\",\"birthdate\":\"813819600\",\"draft_team\":\"FA\",\"stats_id\":\"31803\",\"position\":\"QB\",\"name\":\"Wolford, John\",\"college\":\"Wake Forest\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"13403\",\"jersey\":\"9\",\"weight\":\"200\",\"sportsdata_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"id\":\"15035\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"843541200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33016\",\"position\":\"QB\",\"name\":\"Smith, J'mar\",\"college\":\"Louisiana Tech\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14845\",\"weight\":\"218\",\"sportsdata_id\":\"0c1998f2-7fd2-4191-a05f-1f7f5b5e2ea3\",\"id\":\"15036\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"876114000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32946\",\"position\":\"WR\",\"name\":\"Lipscomb, Kalija\",\"college\":\"Vanderbilt\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14640\",\"weight\":\"200\",\"sportsdata_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"id\":\"15037\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33132\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"207\",\"id\":\"15038\",\"draft_team\":\"FA\",\"birthdate\":\"850626000\",\"name\":\"Bayless, Omar\",\"college\":\"Arkansas State\",\"rotowire_id\":\"14585\",\"height\":\"75\",\"jersey\":\"17\",\"sportsdata_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"birthdate\":\"895726800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33095\",\"position\":\"WR\",\"name\":\"Parker, Aaron\",\"college\":\"Rhode Island\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14642\",\"weight\":\"191\",\"sportsdata_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"id\":\"15039\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33006\",\"position\":\"RB\",\"name\":\"Williams, Ty'Son\",\"college\":\"Brigham Young\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14404\",\"weight\":\"220\",\"id\":\"15040\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"872053200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33329\",\"position\":\"WR\",\"name\":\"Cager, Lawrence\",\"college\":\"Georgia\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"14597\",\"weight\":\"220\",\"sportsdata_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"id\":\"15041\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"875595600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33088\",\"position\":\"RB\",\"name\":\"Ward, Jonathan\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"15106\",\"weight\":\"202\",\"sportsdata_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"id\":\"15042\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"838702800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33017\",\"position\":\"WR\",\"name\":\"Hastings, Will\",\"college\":\"Auburn\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14762\",\"weight\":\"174\",\"sportsdata_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"id\":\"15043\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"844837200\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33345\",\"position\":\"RB\",\"name\":\"Scarlett, Cameron\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"73\",\"rotowire_id\":\"14887\",\"weight\":\"216\",\"sportsdata_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"id\":\"15044\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32994\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15045\",\"draft_team\":\"FA\",\"birthdate\":\"880002000\",\"name\":\"Breeland, Jacob\",\"college\":\"Oregon\",\"rotowire_id\":\"14628\",\"height\":\"77\",\"jersey\":\"88\",\"sportsdata_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"birthdate\":\"852440400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33242\",\"position\":\"WR\",\"name\":\"Merritt, Kirk\",\"college\":\"Arkansas State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14861\",\"weight\":\"210\",\"sportsdata_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"id\":\"15046\",\"team\":\"MIA\"},{\"draft_year\":\"2016\",\"birthdate\":\"719730000\",\"draft_team\":\"FA\",\"stats_id\":\"29925\",\"position\":\"CB\",\"name\":\"Roberson, Tre\",\"college\":\"Illinois State\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"11506\",\"jersey\":\"31\",\"weight\":\"205\",\"sportsdata_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"id\":\"15047\",\"team\":\"CHI\"},{\"draft_year\":\"2020\",\"birthdate\":\"846392400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33330\",\"position\":\"WR\",\"name\":\"Campbell, George\",\"college\":\"West Virginia\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"14944\",\"weight\":\"183\",\"sportsdata_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"id\":\"15048\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33108\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15049\",\"draft_team\":\"FA\",\"birthdate\":\"888469200\",\"name\":\"Bachie, Joe\",\"college\":\"Michigan State\",\"rotowire_id\":\"14735\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"890802000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33096\",\"position\":\"TE\",\"name\":\"Taumoepeau, Charlie\",\"college\":\"Portland State\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14633\",\"weight\":\"245\",\"sportsdata_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"id\":\"15050\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32960\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"15051\",\"draft_team\":\"FA\",\"birthdate\":\"847774800\",\"name\":\"Townsend, Tommy\",\"college\":\"Florida\",\"rotowire_id\":\"14574\",\"height\":\"74\",\"jersey\":\"5\",\"sportsdata_id\":\"edfc712a-54f7-4c34-a838-c50c14dbf7dc\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33233\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"216\",\"id\":\"15052\",\"draft_team\":\"FA\",\"birthdate\":\"837320400\",\"name\":\"Stewart, Darrell\",\"college\":\"Michigan State\",\"rotowire_id\":\"14631\",\"height\":\"74\",\"jersey\":\"80\",\"sportsdata_id\":\"4f077de6-d368-4246-84d5-de809736ddb2\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"882507600\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33066\",\"position\":\"WR\",\"name\":\"Rowland, Chris\",\"college\":\"Tennessee State\",\"stats_global_id\":\"0\",\"height\":\"68\",\"rotowire_id\":\"14885\",\"weight\":\"180\",\"sportsdata_id\":\"40f11577-5646-4da3-99ba-ea8b038b17a3\",\"id\":\"15053\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33151\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15054\",\"draft_team\":\"FA\",\"birthdate\":\"845442000\",\"name\":\"Ricci, Giovanni\",\"college\":\"Western Michigan\",\"rotowire_id\":\"14785\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"689de342-1d99-4a4d-976d-f6573ef3a8c2\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33360\",\"position\":\"PN\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15055\",\"draft_team\":\"FA\",\"birthdate\":\"860389200\",\"name\":\"Charlton, Joseph\",\"college\":\"South Carolina\",\"rotowire_id\":\"14652\",\"height\":\"77\",\"jersey\":\"3\",\"sportsdata_id\":\"9a76c690-1946-4860-9564-a0b7b9bbaf0a\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33318\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15056\",\"draft_team\":\"FA\",\"birthdate\":\"856501200\",\"name\":\"White, Javin\",\"college\":\"Nevada-Las Vegas\",\"rotowire_id\":\"14902\",\"height\":\"75\",\"jersey\":\"53\",\"sportsdata_id\":\"3f95afdc-2140-424b-8250-7d4e273c2efc\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33023\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"202\",\"id\":\"15057\",\"draft_team\":\"FA\",\"birthdate\":\"856846800\",\"name\":\"Chisena, Dan\",\"college\":\"Penn State\",\"rotowire_id\":\"14889\",\"height\":\"75\",\"jersey\":\"85\",\"sportsdata_id\":\"92529995-41e9-48db-b429-c96540ad357b\",\"team\":\"MIN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33030\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15058\",\"draft_team\":\"FA\",\"birthdate\":\"897973200\",\"name\":\"Fehr, Jordan\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14940\",\"height\":\"75\",\"jersey\":\"49\",\"sportsdata_id\":\"a850609c-efba-446d-ae0f-17de46503061\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33029\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15059\",\"draft_team\":\"FA\",\"birthdate\":\"898750800\",\"name\":\"Dorn, Myles\",\"college\":\"North Carolina\",\"rotowire_id\":\"14598\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"e11eff18-b567-47c2-99e6-f4c6bc3d10c3\",\"team\":\"MIN\"},{\"draft_year\":\"2019\",\"birthdate\":\"789368400\",\"draft_team\":\"FA\",\"stats_id\":\"32662\",\"position\":\"QB\",\"name\":\"Streveler, Chris\",\"college\":\"South Dakota\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14587\",\"jersey\":\"15\",\"weight\":\"215\",\"sportsdata_id\":\"23461354-f2d7-4e36-9046-fe9cde6dd413\",\"id\":\"15060\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"birthdate\":\"859870800\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33067\",\"position\":\"LB\",\"name\":\"Wilborn, Ray\",\"college\":\"Ball State\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"15001\",\"weight\":\"224\",\"sportsdata_id\":\"91584998-260d-4d2e-a154-e4b6f7886ff0\",\"id\":\"15061\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"846133200\",\"draft_team\":\"FA\",\"stats_id\":\"32287\",\"position\":\"LB\",\"name\":\"Ray, Wyatt\",\"college\":\"Boston College\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"13881\",\"jersey\":\"43\",\"weight\":\"255\",\"sportsdata_id\":\"b84b99f3-5fac-46ed-b892-5800159edbf9\",\"id\":\"15062\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"birthdate\":\"878360400\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33321\",\"position\":\"LB\",\"name\":\"Harris, De'Jon\",\"college\":\"Arkansas\",\"stats_global_id\":\"0\",\"height\":\"72\",\"rotowire_id\":\"14553\",\"weight\":\"244\",\"sportsdata_id\":\"8ca83e4e-d3a5-4dcb-a917-e58e36b77721\",\"id\":\"15063\",\"team\":\"GBP\"},{\"draft_year\":\"2018\",\"birthdate\":\"808203600\",\"draft_team\":\"FA\",\"stats_id\":\"31625\",\"position\":\"WR\",\"name\":\"Ross, Devin\",\"college\":\"Colorado\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"13302\",\"jersey\":\"17\",\"weight\":\"185\",\"sportsdata_id\":\"5f58e780-62ff-414e-8d32-b0608679e9b3\",\"id\":\"15064\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"birthdate\":\"891234000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"33250\",\"position\":\"WR\",\"name\":\"Edwards, Earnest\",\"college\":\"Maine\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14924\",\"weight\":\"175\",\"sportsdata_id\":\"b7cbd456-e07c-45ba-bae6-cf7c43a5c199\",\"id\":\"15065\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33007\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"236\",\"id\":\"15066\",\"draft_team\":\"FA\",\"birthdate\":\"858056400\",\"name\":\"Wolf, Eli\",\"college\":\"Georgia\",\"rotowire_id\":\"14375\",\"height\":\"76\",\"jersey\":\"87\",\"sportsdata_id\":\"71c657d6-a2d9-48f3-b6db-dd4372e910f4\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"31754\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"209\",\"id\":\"15067\",\"draft_team\":\"FA\",\"birthdate\":\"786603600\",\"name\":\"Holley, Nate\",\"college\":\"Kent State\",\"rotowire_id\":\"15178\",\"height\":\"72\",\"jersey\":\"42\",\"sportsdata_id\":\"f8f7c003-1c6d-4715-bef7-5238bdb600dd\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33243\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"256\",\"id\":\"15068\",\"draft_team\":\"FA\",\"birthdate\":\"859525200\",\"name\":\"Render, Tyshun\",\"college\":\"Middle Tennessee\",\"rotowire_id\":\"15029\",\"height\":\"76\",\"jersey\":\"64\",\"sportsdata_id\":\"160934d8-6fac-4a5f-8121-d8bca301d1b4\",\"team\":\"MIA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33267\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"188\",\"id\":\"15069\",\"draft_team\":\"FA\",\"birthdate\":\"875595600\",\"name\":\"Fuller, Aaron\",\"college\":\"Washington\",\"rotowire_id\":\"14638\",\"height\":\"71\",\"jersey\":\"2\",\"sportsdata_id\":\"df2caa7b-29f4-4391-8ce0-b1b711196379\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"818312400\",\"draft_team\":\"FA\",\"stats_id\":\"32600\",\"position\":\"WR\",\"name\":\"Fortson, Jody\",\"college\":\"Valdosta State\",\"stats_global_id\":\"0\",\"height\":\"78\",\"rotowire_id\":\"14306\",\"jersey\":\"1\",\"weight\":\"230\",\"sportsdata_id\":\"a01ffd42-5fdb-42f8-95ab-157025e3fba8\",\"id\":\"15070\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33103\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"269\",\"id\":\"15071\",\"draft_team\":\"FA\",\"birthdate\":\"867906000\",\"name\":\"Carter, Ron'Dell\",\"college\":\"James Madison\",\"rotowire_id\":\"14920\",\"height\":\"75\",\"jersey\":\"68\",\"sportsdata_id\":\"2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33300\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15072\",\"draft_team\":\"FA\",\"birthdate\":\"869029200\",\"name\":\"Ajayi, Solomon\",\"college\":\"Liberty\",\"rotowire_id\":\"15131\",\"height\":\"73\",\"jersey\":\"58\",\"sportsdata_id\":\"2b604cd5-2ed5-41ab-864b-3e527c922c11\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33293\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"15073\",\"draft_team\":\"FA\",\"birthdate\":\"878014800\",\"name\":\"Motley, Parnell\",\"college\":\"Oklahoma\",\"rotowire_id\":\"14599\",\"height\":\"72\",\"jersey\":\"39\",\"sportsdata_id\":\"eaacee31-0a3c-4f9d-be85-86490ae16f6b\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33180\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"15074\",\"draft_team\":\"FA\",\"birthdate\":\"861512400\",\"name\":\"Smith, Rashad\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"15096\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"dec323b8-fb75-4182-b03d-6c412d3d51a5\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33343\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"15075\",\"draft_team\":\"FA\",\"birthdate\":\"879138000\",\"name\":\"McCann, Tucker\",\"college\":\"Missouri\",\"rotowire_id\":\"14860\",\"height\":\"74\",\"jersey\":\"3\",\"sportsdata_id\":\"397901eb-5589-4f0e-8c02-f50509e22f3c\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33261\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15076\",\"draft_team\":\"FA\",\"birthdate\":\"854600400\",\"name\":\"Rozeboom, Christian\",\"college\":\"South Dakota State\",\"rotowire_id\":\"15090\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"49abd11f-fe2b-4d15-99ed-f316d2ec67e1\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33209\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"220\",\"id\":\"15077\",\"draft_team\":\"FA\",\"birthdate\":\"853131600\",\"name\":\"Wright, Isaiah\",\"college\":\"Temple\",\"rotowire_id\":\"14503\",\"height\":\"74\",\"jersey\":\"83\",\"sportsdata_id\":\"af534c7d-791e-4b7f-900d-2d8fd47c0d2a\",\"team\":\"WAS\"},{\"draft_year\":\"2020\",\"draft_round\":\"7\",\"status\":\"R\",\"stats_id\":\"32893\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"176\",\"id\":\"15078\",\"draft_team\":\"JAC\",\"birthdate\":\"869115600\",\"name\":\"Claybrooks, Chris\",\"draft_pick\":\"9\",\"college\":\"Memphis\",\"rotowire_id\":\"14829\",\"height\":\"72\",\"jersey\":\"27\",\"sportsdata_id\":\"039d817f-17a4-471d-8949-197335dcd1ad\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32932\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15079\",\"draft_team\":\"FA\",\"birthdate\":\"902898000\",\"name\":\"Bassey, Essang\",\"college\":\"Wake Forest\",\"rotowire_id\":\"14738\",\"height\":\"70\",\"jersey\":\"34\",\"sportsdata_id\":\"34853ce3-5e1f-4b23-b730-6f51444291ac\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32970\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15080\",\"draft_team\":\"FA\",\"birthdate\":\"868165200\",\"name\":\"Togiai, Noah\",\"college\":\"Oregon State\",\"rotowire_id\":\"14843\",\"height\":\"76\",\"jersey\":\"86\",\"sportsdata_id\":\"86707c8e-fec4-4ebe-9111-4d3ad238ad43\",\"team\":\"IND\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32952\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"15081\",\"draft_team\":\"FA\",\"birthdate\":\"898750800\",\"name\":\"Wharton, Tershawn\",\"college\":\"Missouri S&T\",\"rotowire_id\":\"15077\",\"height\":\"76\",\"jersey\":\"98\",\"sportsdata_id\":\"632a8382-27d6-45ae-b3d2-a37157e09ab7\",\"team\":\"KCC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33221\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15082\",\"draft_team\":\"FA\",\"birthdate\":\"891493200\",\"name\":\"Barnes, Krys\",\"college\":\"UCLA\",\"rotowire_id\":\"14572\",\"height\":\"73\",\"jersey\":\"51\",\"sportsdata_id\":\"fc081a72-124d-4648-86a4-45aebb95a5ba\",\"team\":\"GBP\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33123\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"193\",\"id\":\"15087\",\"draft_team\":\"FA\",\"birthdate\":\"838962000\",\"name\":\"Cottrell, Nathan\",\"college\":\"Georgia Tech\",\"rotowire_id\":\"14773\",\"height\":\"71\",\"jersey\":\"31\",\"sportsdata_id\":\"bc43e18a-c2f9-4e49-a90c-41a95cffa736\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33124\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15088\",\"draft_team\":\"FA\",\"birthdate\":\"841554000\",\"name\":\"Ellefson, Ben\",\"college\":\"North Dakota State\",\"rotowire_id\":\"14864\",\"height\":\"75\",\"jersey\":\"86\",\"sportsdata_id\":\"ca393469-d587-4bf7-905d-838e960de851\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33118\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"15089\",\"draft_team\":\"FA\",\"birthdate\":\"897368400\",\"name\":\"Roach, Malcolm\",\"college\":\"Texas\",\"rotowire_id\":\"14726\",\"height\":\"75\",\"jersey\":\"97\",\"sportsdata_id\":\"bb01a04e-0d54-4fc6-98c8-2b8614d07afe\",\"team\":\"NOS\"},{\"draft_year\":\"2019\",\"birthdate\":\"863154000\",\"draft_team\":\"FA\",\"stats_id\":\"32130\",\"position\":\"DT\",\"name\":\"Copeland, Marquise\",\"college\":\"Cincinnati\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14014\",\"jersey\":\"93\",\"weight\":\"285\",\"sportsdata_id\":\"7e4f9b27-edc4-4f5c-b77a-81604220a454\",\"id\":\"15093\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"855723600\",\"draft_team\":\"FA\",\"stats_id\":\"32164\",\"position\":\"S\",\"name\":\"Locke, P.J.\",\"college\":\"Texas\",\"stats_global_id\":\"0\",\"height\":\"70\",\"rotowire_id\":\"14198\",\"jersey\":\"37\",\"weight\":\"202\",\"sportsdata_id\":\"155980c2-e289-48c4-a047-09c08d0ce7ae\",\"id\":\"15094\",\"team\":\"DEN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33225\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15095\",\"draft_team\":\"FA\",\"birthdate\":\"856933200\",\"name\":\"Galeai, Tipa\",\"college\":\"Utah State\",\"rotowire_id\":\"15072\",\"height\":\"77\",\"jersey\":\"50\",\"sportsdata_id\":\"fa797d7d-4537-4e2e-8fd1-cd8831894092\",\"team\":\"GBP\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32987\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"243\",\"id\":\"15096\",\"draft_team\":\"FA\",\"birthdate\":\"878706000\",\"name\":\"Nabers, Gabe\",\"college\":\"Florida State\",\"rotowire_id\":\"15093\",\"height\":\"75\",\"jersey\":\"40\",\"sportsdata_id\":\"538cf938-8f65-435f-b8fd-2856ce5c4e6d\",\"team\":\"LAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33101\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"246\",\"id\":\"15097\",\"draft_team\":\"FA\",\"birthdate\":\"883285200\",\"name\":\"McKeon, Sean\",\"college\":\"Michigan\",\"rotowire_id\":\"14478\",\"height\":\"77\",\"jersey\":\"84\",\"sportsdata_id\":\"0f369885-8ecd-4ca0-a3dc-df8530a0db6e\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32975\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"230\",\"id\":\"15098\",\"draft_team\":\"FA\",\"birthdate\":\"863672400\",\"name\":\"Bradwell, Darius\",\"college\":\"Tulane\",\"rotowire_id\":\"14919\",\"height\":\"73\",\"jersey\":\"34\",\"sportsdata_id\":\"06f3e98d-7d73-4007-b673-4a74ed72bda3\",\"team\":\"LAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32974\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"227\",\"id\":\"15099\",\"draft_team\":\"FA\",\"birthdate\":\"860821200\",\"name\":\"Bilal, Asmar\",\"college\":\"Notre Dame\",\"rotowire_id\":\"15017\",\"height\":\"74\",\"jersey\":\"57\",\"sportsdata_id\":\"621e177a-e23d-489e-a747-369eb662f0de\",\"team\":\"LAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"824014800\",\"draft_team\":\"FA\",\"stats_id\":\"32601\",\"position\":\"DT\",\"name\":\"Akinmoladun, Freedom\",\"college\":\"Nebraska\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14294\",\"jersey\":\"92\",\"weight\":\"284\",\"sportsdata_id\":\"594c3651-1a2f-453e-a39d-2c84a377f2b5\",\"id\":\"15101\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33357\",\"position\":\"TE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"15103\",\"draft_team\":\"FA\",\"birthdate\":\"872053200\",\"name\":\"Gilliam, Reggie\",\"college\":\"Toledo\",\"rotowire_id\":\"14844\",\"height\":\"73\",\"jersey\":\"86\",\"sportsdata_id\":\"4475bb8a-b5a6-4527-bfc7-8e7e03900984\",\"team\":\"BUF\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33348\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"15109\",\"draft_team\":\"FA\",\"birthdate\":\"858920400\",\"name\":\"Westbrook, Nick\",\"college\":\"Indiana\",\"rotowire_id\":\"14750\",\"height\":\"75\",\"jersey\":\"15\",\"sportsdata_id\":\"5e63e674-adf3-4f4e-929e-4a0ff2cfb1df\",\"team\":\"TEN\"},{\"draft_year\":\"2018\",\"birthdate\":\"802933200\",\"draft_team\":\"FA\",\"stats_id\":\"31726\",\"position\":\"DE\",\"name\":\"Thurman, Nick\",\"college\":\"Houston\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13320\",\"jersey\":\"92\",\"weight\":\"305\",\"sportsdata_id\":\"ded1a577-51cc-4f13-8b79-4f4c09655f44\",\"id\":\"15110\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33149\",\"position\":\"PK\",\"stats_global_id\":\"0\",\"weight\":\"182\",\"id\":\"15111\",\"draft_team\":\"FA\",\"birthdate\":\"856242000\",\"name\":\"Wright, Brandon\",\"college\":\"Georgia State\",\"rotowire_id\":\"14954\",\"height\":\"70\",\"jersey\":\"1\",\"sportsdata_id\":\"61980614-1609-4b68-b11f-05aa30fefb89\",\"team\":\"FA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33139\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"211\",\"id\":\"15114\",\"draft_team\":\"FA\",\"birthdate\":\"870757200\",\"name\":\"Hartsfield, Myles\",\"college\":\"Mississippi\",\"rotowire_id\":\"14968\",\"height\":\"71\",\"jersey\":\"38\",\"sportsdata_id\":\"87e59fe7-8744-4318-a41e-53a18d1f9647\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33020\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15116\",\"draft_team\":\"FA\",\"birthdate\":\"861080400\",\"name\":\"Zuber, Isaiah\",\"college\":\"Mississippi State\",\"rotowire_id\":\"14862\",\"height\":\"72\",\"jersey\":\"19\",\"sportsdata_id\":\"e83c7957-58c7-48eb-aaf2-47e410607957\",\"team\":\"NEP\"},{\"draft_year\":\"2019\",\"birthdate\":\"841813200\",\"draft_team\":\"FA\",\"stats_id\":\"32319\",\"position\":\"LB\",\"name\":\"Flannigan-Fowles, Demetrius\",\"college\":\"Arizona\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14074\",\"jersey\":\"45\",\"weight\":\"209\",\"sportsdata_id\":\"c5175598-1392-4eaa-ae62-d99811a0c477\",\"id\":\"15117\",\"team\":\"SFO\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33335\",\"position\":\"DE\",\"stats_global_id\":\"0\",\"weight\":\"255\",\"id\":\"15121\",\"draft_team\":\"FA\",\"birthdate\":\"892789200\",\"name\":\"Huff, Bryce\",\"college\":\"Memphis\",\"rotowire_id\":\"15035\",\"height\":\"75\",\"jersey\":\"47\",\"sportsdata_id\":\"07b963d4-aef7-4874-ba04-f9b1ec1142d3\",\"team\":\"NYJ\"},{\"draft_year\":\"2017\",\"birthdate\":\"755931600\",\"draft_team\":\"FA\",\"stats_id\":\"30740\",\"position\":\"TE\",\"name\":\"Thompson, Colin\",\"college\":\"Temple\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"12375\",\"jersey\":\"86\",\"weight\":\"255\",\"sportsdata_id\":\"1d55ba37-c09e-4945-b7ae-8d84e2357283\",\"id\":\"15123\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32939\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15124\",\"draft_team\":\"FA\",\"birthdate\":\"842850000\",\"name\":\"Pierre, James\",\"college\":\"Florida Atlantic\",\"rotowire_id\":\"14439\",\"height\":\"74\",\"jersey\":\"42\",\"sportsdata_id\":\"6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33336\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"215\",\"id\":\"15125\",\"draft_team\":\"FA\",\"birthdate\":\"892443600\",\"name\":\"Jackson, Lamar\",\"college\":\"Nebraska\",\"rotowire_id\":\"14583\",\"height\":\"75\",\"jersey\":\"38\",\"sportsdata_id\":\"22e0f7ed-9b46-4a75-9780-d9b66c245744\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33105\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"235\",\"id\":\"15126\",\"draft_team\":\"FA\",\"birthdate\":\"797317200\",\"name\":\"Bernard, Francis\",\"college\":\"Utah\",\"rotowire_id\":\"14610\",\"height\":\"73\",\"jersey\":\"44\",\"sportsdata_id\":\"41bc429b-f4c2-4edd-bbe1-9a36a178caeb\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33122\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"295\",\"id\":\"15127\",\"draft_team\":\"FA\",\"birthdate\":\"876027600\",\"name\":\"Costin, Doug\",\"college\":\"Miami, O.\",\"rotowire_id\":\"14951\",\"height\":\"74\",\"jersey\":\"58\",\"sportsdata_id\":\"cc5a9d21-10cd-4966-ad17-44edb238834d\",\"team\":\"JAC\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33012\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"170\",\"id\":\"15129\",\"draft_team\":\"FA\",\"birthdate\":\"891320400\",\"name\":\"Dorsey, Khalil\",\"college\":\"Northern Arizona\",\"rotowire_id\":\"15137\",\"height\":\"69\",\"jersey\":\"31\",\"sportsdata_id\":\"e8b1322a-6162-4535-b6af-4ca60ce8b09c\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33296\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"188\",\"id\":\"15130\",\"draft_team\":\"FA\",\"birthdate\":\"900824400\",\"name\":\"Hughes, Juju\",\"college\":\"Fresno State\",\"rotowire_id\":\"15130\",\"height\":\"71\",\"jersey\":\"46\",\"sportsdata_id\":\"d014789f-6cc0-435b-bd18-9faaf12ffd6e\",\"team\":\"LAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33310\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15131\",\"draft_team\":\"FA\",\"birthdate\":\"851490000\",\"name\":\"Moffatt, Jovante\",\"college\":\"Middle Tennessee\",\"rotowire_id\":\"15062\",\"height\":\"72\",\"jersey\":\"35\",\"sportsdata_id\":\"bea5ccd6-b05b-43f8-975f-396399349a42\",\"team\":\"CLE\"},{\"draft_year\":\"2018\",\"birthdate\":\"801205200\",\"draft_team\":\"FA\",\"stats_id\":\"31420\",\"position\":\"DT\",\"name\":\"Vickers, Kendal\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14560\",\"jersey\":\"91\",\"weight\":\"295\",\"sportsdata_id\":\"0cd46b5f-5397-4947-9331-8d3420af7852\",\"id\":\"15132\",\"team\":\"LVR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33316\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15133\",\"draft_team\":\"FA\",\"birthdate\":\"876718800\",\"name\":\"Harper, Madre\",\"college\":\"Southern Illinois\",\"rotowire_id\":\"14904\",\"height\":\"74\",\"jersey\":\"43\",\"sportsdata_id\":\"3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0\",\"team\":\"NYG\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"32961\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15137\",\"draft_team\":\"FA\",\"birthdate\":\"873349200\",\"name\":\"Arnold, Grayland\",\"college\":\"Baylor\",\"rotowire_id\":\"14491\",\"height\":\"70\",\"jersey\":\"37\",\"sportsdata_id\":\"d6969476-95dc-42e4-9cd1-a1e8ae6973ff\",\"team\":\"FA\"},{\"draft_year\":\"2019\",\"birthdate\":\"860907600\",\"draft_team\":\"FA\",\"stats_id\":\"32416\",\"position\":\"CB\",\"name\":\"Lewis, Cam\",\"college\":\"Buffalo\",\"stats_global_id\":\"0\",\"height\":\"69\",\"rotowire_id\":\"14253\",\"jersey\":\"47\",\"weight\":\"185\",\"sportsdata_id\":\"d5dee97b-aa96-4fa6-868f-b6dc1f66245c\",\"id\":\"15140\",\"team\":\"BUF\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33272\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15141\",\"draft_team\":\"FA\",\"birthdate\":\"882075600\",\"name\":\"Gill, Cam\",\"college\":\"Wagner\",\"rotowire_id\":\"14917\",\"height\":\"75\",\"jersey\":\"49\",\"sportsdata_id\":\"112b95ea-d080-4aa7-bedc-5755c6c6b80c\",\"team\":\"TBB\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33058\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15142\",\"draft_team\":\"FA\",\"birthdate\":\"909810000\",\"name\":\"Hall, Tyler\",\"college\":\"Wyoming\",\"rotowire_id\":\"14999\",\"height\":\"70\",\"jersey\":\"44\",\"sportsdata_id\":\"74761bca-f09c-4a06-8dd4-5f3cf2a2b897\",\"team\":\"ATL\"},{\"draft_year\":\"2018\",\"birthdate\":\"852267600\",\"draft_team\":\"FA\",\"stats_id\":\"31168\",\"position\":\"DT\",\"name\":\"McKenzie, Kahlil\",\"college\":\"Tennessee\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"12571\",\"jersey\":\"69\",\"weight\":\"320\",\"sportsdata_id\":\"e738f88d-6a49-4efd-b53e-d031bc8c5772\",\"id\":\"15146\",\"team\":\"CIN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33333\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"190\",\"id\":\"15147\",\"draft_team\":\"FA\",\"birthdate\":\"902379600\",\"name\":\"Guidry, Javelin\",\"college\":\"Utah\",\"rotowire_id\":\"14454\",\"height\":\"70\",\"jersey\":\"40\",\"sportsdata_id\":\"dfdf250e-0457-4008-be27-a0be2a3ae5bd\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33137\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"210\",\"id\":\"15148\",\"draft_team\":\"FA\",\"birthdate\":\"823237200\",\"name\":\"Franklin, Sam\",\"college\":\"Temple\",\"rotowire_id\":\"14931\",\"height\":\"75\",\"jersey\":\"42\",\"sportsdata_id\":\"3b1bb0da-607a-4502-8855-8ab5095334da\",\"team\":\"CAR\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33215\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"15149\",\"draft_team\":\"FA\",\"birthdate\":\"900219600\",\"name\":\"Harris, De'Michael\",\"college\":\"Southern Mississippi\",\"rotowire_id\":\"15020\",\"height\":\"69\",\"jersey\":\"5\",\"sportsdata_id\":\"18a3fb57-3220-4fa3-af42-20e179ec896f\",\"team\":\"IND\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33005\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"239\",\"id\":\"15151\",\"draft_team\":\"FA\",\"birthdate\":\"895986000\",\"name\":\"Welch, Kristian\",\"college\":\"Iowa\",\"rotowire_id\":\"15141\",\"height\":\"75\",\"jersey\":\"57\",\"sportsdata_id\":\"0782b3a2-9693-40f6-aff2-a21bc8fa4c5d\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33086\",\"position\":\"LB\",\"stats_global_id\":\"0\",\"weight\":\"250\",\"id\":\"15152\",\"draft_team\":\"FA\",\"birthdate\":\"830149200\",\"name\":\"Walker, Reggie\",\"college\":\"Kansas State\",\"rotowire_id\":\"15102\",\"height\":\"74\",\"jersey\":\"56\",\"sportsdata_id\":\"75513062-bfe5-4e32-af04-04a805c0fd8d\",\"team\":\"FA\"},{\"draft_year\":\"2014\",\"birthdate\":\"657435600\",\"draft_team\":\"FA\",\"stats_id\":\"28300\",\"position\":\"PK\",\"name\":\"Castillo, Sergio\",\"college\":\"West Texas A&M\",\"stats_global_id\":\"0\",\"height\":\"71\",\"rotowire_id\":\"9844\",\"jersey\":\"6\",\"weight\":\"195\",\"sportsdata_id\":\"1f2c7574-f56a-47b3-bd75-5dd0d5ff8d93\",\"id\":\"15154\",\"team\":\"NYJ\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33201\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15155\",\"draft_team\":\"FA\",\"birthdate\":\"898664400\",\"name\":\"Mayden, Jared\",\"college\":\"Alabama\",\"rotowire_id\":\"14780\",\"height\":\"72\",\"jersey\":\"43\",\"sportsdata_id\":\"cec656f2-7a0b-4993-9489-7a0cef088c0f\",\"team\":\"SFO\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33303\",\"position\":\"WR\",\"stats_global_id\":\"0\",\"weight\":\"195\",\"id\":\"15156\",\"draft_team\":\"FA\",\"birthdate\":\"871016400\",\"name\":\"Brown, Tony\",\"college\":\"Colorado\",\"rotowire_id\":\"14603\",\"height\":\"73\",\"jersey\":\"12\",\"sportsdata_id\":\"eb626cc4-10ec-4385-933e-eea81e2dbfbc\",\"team\":\"FA\"},{\"draft_year\":\"2018\",\"birthdate\":\"811486800\",\"draft_team\":\"FA\",\"stats_id\":\"31518\",\"position\":\"DE\",\"name\":\"Mondeaux, Henry\",\"college\":\"Oregon\",\"stats_global_id\":\"0\",\"height\":\"76\",\"rotowire_id\":\"13390\",\"jersey\":\"99\",\"weight\":\"280\",\"sportsdata_id\":\"d7f79a32-6a28-4e14-bedf-6186dec771e6\",\"id\":\"15159\",\"team\":\"PIT\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33222\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"204\",\"id\":\"15160\",\"draft_team\":\"FA\",\"birthdate\":\"852267600\",\"name\":\"Black, Henry\",\"college\":\"Baylor\",\"rotowire_id\":\"15070\",\"height\":\"71\",\"jersey\":\"41\",\"sportsdata_id\":\"959f035c-b8ce-45a3-bbe3-fda439c1e9f1\",\"team\":\"GBP\"},{\"draft_year\":\"2019\",\"birthdate\":\"810450000\",\"draft_team\":\"FA\",\"stats_id\":\"32276\",\"position\":\"LB\",\"name\":\"Ramsey, Randy\",\"college\":\"Arkansas\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"14106\",\"jersey\":\"56\",\"weight\":\"236\",\"sportsdata_id\":\"3267e534-526e-4db8-8e1f-49fc7ee8aedb\",\"id\":\"15162\",\"team\":\"GBP\"},{\"draft_year\":\"2019\",\"birthdate\":\"838011600\",\"draft_team\":\"FA\",\"stats_id\":\"32381\",\"position\":\"CB\",\"name\":\"Bonds, Terrell\",\"college\":\"Tennessee State\",\"stats_global_id\":\"0\",\"height\":\"68\",\"rotowire_id\":\"14165\",\"jersey\":\"38\",\"weight\":\"182\",\"sportsdata_id\":\"7af54f9d-0a09-45ce-b96c-a179bcbb11ca\",\"id\":\"15164\",\"team\":\"BAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33239\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"329\",\"id\":\"15165\",\"draft_team\":\"FA\",\"birthdate\":\"880606800\",\"name\":\"Jones, Benito\",\"college\":\"Mississippi\",\"rotowire_id\":\"14715\",\"height\":\"73\",\"jersey\":\"95\",\"sportsdata_id\":\"e9746156-842c-475e-806d-4bcb26032e3b\",\"team\":\"MIA\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33358\",\"position\":\"S\",\"stats_global_id\":\"0\",\"weight\":\"205\",\"id\":\"15167\",\"draft_team\":\"FA\",\"birthdate\":\"848379600\",\"name\":\"Thomas, Josh\",\"college\":\"Appalachian State\",\"rotowire_id\":\"14882\",\"height\":\"72\",\"jersey\":\"36\",\"sportsdata_id\":\"9c84646c-75d9-41f3-9cad-f3f002ca82a5\",\"team\":\"BUF\"},{\"draft_year\":\"2020\",\"birthdate\":\"854514000\",\"draft_team\":\"FA\",\"status\":\"R\",\"stats_id\":\"32964\",\"position\":\"CB\",\"name\":\"Jacquet, Michael\",\"college\":\"Louisiana-Lafayette\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"14875\",\"weight\":\"201\",\"sportsdata_id\":\"8dde622e-645e-4e89-85b1-a8aca7bdfd7e\",\"id\":\"15168\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33231\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15170\",\"draft_team\":\"FA\",\"birthdate\":\"919746000\",\"name\":\"Samuels, Stanford\",\"college\":\"Florida State\",\"rotowire_id\":\"14405\",\"height\":\"74\",\"jersey\":\"46\",\"sportsdata_id\":\"c1bbdfa3-5171-4018-a812-1dddacb3b421\",\"team\":\"GBP\"},{\"draft_year\":\"0\",\"draft_team\":\"FA\",\"stats_id\":\"33370\",\"position\":\"PN\",\"name\":\"Niswander, Hunter\",\"college\":\"Northwestern\",\"stats_global_id\":\"0\",\"height\":\"77\",\"rotowire_id\":\"15206\",\"jersey\":\"1\",\"weight\":\"243\",\"sportsdata_id\":\"48efc038-96b7-4c63-a33c-41f6abe6d3de\",\"id\":\"15171\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33099\",\"position\":\"RB\",\"stats_global_id\":\"0\",\"weight\":\"240\",\"id\":\"15172\",\"draft_team\":\"FA\",\"birthdate\":\"880606800\",\"name\":\"Olonilua, Sewo\",\"college\":\"Texas Christian\",\"rotowire_id\":\"14658\",\"height\":\"75\",\"jersey\":\"45\",\"sportsdata_id\":\"fb48038c-8f33-47a5-abb4-cda19f66c853\",\"team\":\"DAL\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33347\",\"position\":\"DT\",\"stats_global_id\":\"0\",\"weight\":\"290\",\"id\":\"15173\",\"draft_team\":\"FA\",\"birthdate\":\"857106000\",\"name\":\"Tart, Teair\",\"college\":\"Florida International\",\"rotowire_id\":\"14985\",\"height\":\"75\",\"jersey\":\"78\",\"sportsdata_id\":\"a78206af-6d78-4b4c-90e3-dc4bd62ac80b\",\"team\":\"TEN\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33089\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"185\",\"id\":\"15176\",\"draft_team\":\"FA\",\"birthdate\":\"805870800\",\"name\":\"Whittaker, Jace\",\"college\":\"Arizona\",\"rotowire_id\":\"14793\",\"height\":\"71\",\"jersey\":\"39\",\"sportsdata_id\":\"528bf5c9-1d23-40c3-adda-df21f8f0e2ab\",\"team\":\"ARI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33319\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"180\",\"id\":\"15177\",\"draft_team\":\"FA\",\"birthdate\":\"883717200\",\"name\":\"Bryant, Myles\",\"college\":\"Washington\",\"rotowire_id\":\"14703\",\"height\":\"68\",\"jersey\":\"41\",\"sportsdata_id\":\"7a51270b-cbdf-451e-a9e7-0f0b23435dd0\",\"team\":\"NEP\"},{\"draft_year\":\"2018\",\"birthdate\":\"805525200\",\"draft_team\":\"FA\",\"stats_id\":\"31578\",\"position\":\"DE\",\"name\":\"Ostman, Joe\",\"college\":\"Central Michigan\",\"stats_global_id\":\"0\",\"height\":\"75\",\"rotowire_id\":\"12708\",\"jersey\":\"95\",\"weight\":\"259\",\"sportsdata_id\":\"14063f54-4935-4043-90f0-a6d2d6ab6143\",\"id\":\"15179\",\"team\":\"PHI\"},{\"draft_year\":\"2020\",\"status\":\"R\",\"stats_id\":\"33115\",\"position\":\"CB\",\"stats_global_id\":\"0\",\"weight\":\"175\",\"id\":\"15180\",\"draft_team\":\"FA\",\"birthdate\":\"901515600\",\"name\":\"Barcoo, Luq\",\"college\":\"San Diego State\",\"rotowire_id\":\"14950\",\"height\":\"73\",\"jersey\":\"36\",\"sportsdata_id\":\"56d8015b-aed7-4a46-868e-a85672cde790\",\"team\":\"JAC\"},{\"draft_year\":\"2019\",\"birthdate\":\"822632400\",\"draft_team\":\"FA\",\"stats_id\":\"32218\",\"position\":\"S\",\"name\":\"Holder, Alijah\",\"college\":\"Stanford\",\"stats_global_id\":\"0\",\"height\":\"74\",\"rotowire_id\":\"13863\",\"jersey\":\"33\",\"weight\":\"188\",\"sportsdata_id\":\"1e8293b4-25ec-479d-83b3-ef231d84ebca\",\"id\":\"15181\",\"team\":\"DEN\"}]},\"encoding\":\"utf-8\"}"),
+ date = structure(1606598257, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 5.7e-05,
+ connect = 6.5e-05, pretransfer = 0.000155, starttransfer = 0.876835,
+ total = 1.166499
+ )
+), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-9df682.R b/tests/testthat/mfl/2020/export-9df682.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-9df682.R
rename to tests/testthat/mfl/2020/export-9df682.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-a5f4e1.R b/tests/testthat/mfl/2020/export-a5f4e1.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-a5f4e1.R
rename to tests/testthat/mfl/2020/export-a5f4e1.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-b3862c.R b/tests/testthat/mfl/2020/export-b3862c.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-b3862c.R
rename to tests/testthat/mfl/2020/export-b3862c.R
diff --git a/tests/testthat/mfl/2020/export-c43c8e.R b/tests/testthat/mfl/2020/export-c43c8e.R
new file mode 100644
index 00000000..494e54ce
--- /dev/null
+++ b/tests/testthat/mfl/2020/export-c43c8e.R
@@ -0,0 +1,31 @@
+structure(list(
+ url = "https://api.myfantasyleague.com/2020/export?TYPE=leagueSearch&SEARCH=sfbx%20conference&JSON=1",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:17:29 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "316", `content-type` = "application/json; charset=utf-8",
+ targethost = "www70"
+ ), class = c("insensitive", "list")), all_headers = list(list(
+ status = 200L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:17:29 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "316", `content-type` = "application/json; charset=utf-8",
+ targethost = "www70"
+ ), class = c("insensitive", "list"))
+ )), cookies = structure(list(
+ domain = logical(0), flag = logical(0),
+ path = logical(0), secure = logical(0), expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"version\":\"1.0\",\"leagues\":{\"league\":[{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/13411\",\"name\":\"#SFBX Conference 12\",\"id\":\"13411\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/16428\",\"name\":\"#SFBX Conference 6\",\"id\":\"16428\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/17910\",\"name\":\"#SFBX Conference 11\",\"id\":\"17910\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/26453\",\"name\":\"#SFBX Conference 8\",\"id\":\"26453\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/27495\",\"name\":\"#SFBX Conference 2\",\"id\":\"27495\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/31492\",\"name\":\"#SFBX Conference 14\",\"id\":\"31492\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/31671\",\"name\":\"#SFBX Conference 15\",\"id\":\"31671\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/35779\",\"name\":\"#SFBX Conference 13\",\"id\":\"35779\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/37784\",\"name\":\"#SFBX Conference 1\",\"id\":\"37784\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/39990\",\"name\":\"#SFBX Conference 9\",\"id\":\"39990\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/42222\",\"name\":\"#SFBX Conference 7\",\"id\":\"42222\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/43130\",\"name\":\"#SFBX Conference 3\",\"id\":\"43130\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/60168\",\"name\":\"#SFBX Conference 10\",\"id\":\"60168\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/65443\",\"name\":\"#SFBX Conference 5\",\"id\":\"65443\"},{\"homeURL\":\"http://www73.myfantasyleague.com/2020/home/69624\",\"name\":\"#SFBX Conference 4\",\"id\":\"69624\"}]},\"encoding\":\"utf-8\"}"),
+ date = structure(1606598249, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 0.041419,
+ connect = 0.074933, pretransfer = 0.16718, starttransfer = 0.320741,
+ total = 0.321132
+ )
+), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-c56855.R b/tests/testthat/mfl/2020/export-c56855.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-c56855.R
rename to tests/testthat/mfl/2020/export-c56855.R
diff --git a/tests/testthat/mfl/2020/export-ca73a0.R b/tests/testthat/mfl/2020/export-ca73a0.R
new file mode 100644
index 00000000..32751ffa
--- /dev/null
+++ b/tests/testthat/mfl/2020/export-ca73a0.R
@@ -0,0 +1,47 @@
+structure(list(
+ url = "https://www61.myfantasyleague.com/2020/export?TYPE=rules&L=54040&JSON=1",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:18 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "274", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 302L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:18 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ location = "https://www61.myfantasyleague.com/2020/export?TYPE=rules&L=54040&JSON=1",
+ `content-length` = "0", targethost = "www77"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ ), list(
+ status = 200L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:18 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "274", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"version\":\"1.0\",\"rules\":{\"positionRules\":[{\"positions\":\"QB|RB|WR|TE\",\"rule\":[{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#P\"}},{\"points\":{\"$t\":\"*.04\"},\"range\":{\"$t\":\"-50-999\"},\"event\":{\"$t\":\"PY\"}},{\"points\":{\"$t\":\"*-4\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"IN\"}},{\"points\":{\"$t\":\"*2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"P2\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#R\"}},{\"points\":{\"$t\":\"*0.1\"},\"range\":{\"$t\":\"-50-999\"},\"event\":{\"$t\":\"RY\"}},{\"points\":{\"$t\":\"*2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"R2\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#C\"}},{\"points\":{\"$t\":\"*0.1\"},\"range\":{\"$t\":\"-50-999\"},\"event\":{\"$t\":\"CY\"}},{\"points\":{\"$t\":\"*0.5\"},\"range\":{\"$t\":\"0-99\"},\"event\":{\"$t\":\"CC\"}},{\"points\":{\"$t\":\"*2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"C2\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#UT\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#KT\"}},{\"points\":{\"$t\":\"*-2\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"FL\"}},{\"points\":{\"$t\":\"*6\"},\"range\":{\"$t\":\"0-10\"},\"event\":{\"$t\":\"#FR\"}},{\"points\":{\"$t\":\"*0.5\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1R\"}},{\"points\":{\"$t\":\"*0.5\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1C\"}}]},{\"positions\":\"TE\",\"rule\":[{\"points\":{\"$t\":\"*0.25\"},\"range\":{\"$t\":\"0-99\"},\"event\":{\"$t\":\"CC\"}},{\"points\":{\"$t\":\"*0.25\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1R\"}},{\"points\":{\"$t\":\"*0.25\"},\"range\":{\"$t\":\"1-50\"},\"event\":{\"$t\":\"1C\"}}]}]},\"encoding\":\"utf-8\"}"),
+ date = structure(1606597878, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0.14508, namelookup = 9e-05,
+ connect = 9.9e-05, pretransfer = 0.000279, starttransfer = 0.30621,
+ total = 0.316008
+ )
+), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-cc192d.R b/tests/testthat/mfl/2020/export-cc192d.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-cc192d.R
rename to tests/testthat/mfl/2020/export-cc192d.R
diff --git a/tests/testthat/mfl/2020/export-ccd01d.R b/tests/testthat/mfl/2020/export-ccd01d.R
new file mode 100644
index 00000000..9385a4d3
--- /dev/null
+++ b/tests/testthat/mfl/2020/export-ccd01d.R
@@ -0,0 +1,47 @@
+structure(list(
+ url = "https://www61.myfantasyleague.com/2020/export?TYPE=rosters&L=54040&JSON=1",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:27 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "2903", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 302L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:27 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ location = "https://www61.myfantasyleague.com/2020/export?TYPE=rosters&L=54040&JSON=1",
+ `content-length` = "0", targethost = "www77"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ ), list(
+ status = 200L, version = "HTTP/1.1",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:11:27 GMT",
+ server = "Apache/2.4.18 (Unix) mod_apreq2-20090110/2.8.0 mod_perl/2.0.9 Perl/v5.10.1",
+ vary = "Accept-Encoding", `content-encoding` = "gzip",
+ `content-length` = "2903", `content-type` = "application/json; charset=utf-8"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = logical(0),
+ flag = logical(0), path = logical(0), secure = logical(0),
+ expiration = structure(numeric(0), class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = logical(0), value = logical(0)
+ ), row.names = integer(0), class = "data.frame"),
+ content = charToRaw("{\"rosters\":{\"franchise\":[{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13189\",\"drafted\":\"3.04\"},{\"status\":\"ROSTER\",\"id\":\"11680\",\"drafted\":\"4.02\"},{\"status\":\"ROSTER\",\"id\":\"13645\",\"drafted\":\"18.02\"},{\"status\":\"ROSTER\",\"id\":\"12110\",\"drafted\":\"19.04\"},{\"status\":\"ROSTER\",\"id\":\"13168\",\"drafted\":\"20.02\"},{\"status\":\"ROSTER\",\"id\":\"13793\",\"drafted\":\"21.04\"},{\"status\":\"ROSTER\",\"id\":\"13879\",\"drafted\":\"24.02\"},{\"status\":\"ROSTER\",\"id\":\"13377\",\"drafted\":\"25.04\"},{\"status\":\"ROSTER\",\"id\":\"13254\",\"drafted\":\"26.02\"},{\"status\":\"ROSTER\",\"id\":\"8673\",\"drafted\":\"27.04\"},{\"status\":\"ROSTER\",\"id\":\"14803\",\"drafted\":\"1.01\"},{\"status\":\"ROSTER\",\"id\":\"14838\",\"drafted\":\"2.02\"},{\"status\":\"ROSTER\",\"id\":\"14837\",\"drafted\":\"2.10\"},{\"status\":\"ROSTER\",\"id\":\"13652\",\"drafted\":\"BB $21.00\"},{\"status\":\"ROSTER\",\"id\":\"13505\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13611\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14870\",\"drafted\":\"3.01\"},{\"status\":\"ROSTER\",\"id\":\"13868\",\"drafted\":\"BB $5.00\"},{\"status\":\"ROSTER\",\"id\":\"9918\",\"drafted\":\"17.04\"},{\"status\":\"ROSTER\",\"id\":\"13139\",\"drafted\":\"15.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13290\",\"drafted\":\"6.02\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13188\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13158\",\"drafted\":\"8.02\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14874\",\"drafted\":\"BB $3.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14863\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14876\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13155\",\"drafted\":\"7.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14777\",\"drafted\":\"1.14\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14779\",\"drafted\":\"2.11\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14835\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14085\",\"drafted\":\"13.04\"}],\"id\":\"0001\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13163\",\"drafted\":\"1.03\"},{\"status\":\"ROSTER\",\"id\":\"13319\",\"drafted\":\"2.03\"},{\"status\":\"ROSTER\",\"id\":\"14102\",\"drafted\":\"3.03\"},{\"status\":\"ROSTER\",\"id\":\"14071\",\"drafted\":\"4.03\"},{\"status\":\"ROSTER\",\"id\":\"12176\",\"drafted\":\"5.03\"},{\"status\":\"ROSTER\",\"id\":\"14087\",\"drafted\":\"9.03\"},{\"status\":\"ROSTER\",\"id\":\"4925\",\"drafted\":\"10.03\"},{\"status\":\"ROSTER\",\"id\":\"14058\",\"drafted\":\"11.03\"},{\"status\":\"ROSTER\",\"id\":\"12634\",\"drafted\":\"12.03\"},{\"status\":\"ROSTER\",\"id\":\"13763\",\"drafted\":\"14.03\"},{\"status\":\"ROSTER\",\"id\":\"12197\",\"drafted\":\"15.03\"},{\"status\":\"ROSTER\",\"id\":\"13850\",\"drafted\":\"16.03\"},{\"status\":\"ROSTER\",\"id\":\"7394\",\"drafted\":\"18.03\"},{\"status\":\"ROSTER\",\"id\":\"13644\",\"drafted\":\"25.03\"},{\"status\":\"ROSTER\",\"id\":\"14076\",\"drafted\":\"26.03\"},{\"status\":\"ROSTER\",\"id\":\"14063\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13605\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14804\",\"drafted\":\"2.14\"},{\"status\":\"ROSTER\",\"id\":\"10948\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13157\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14552\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"12213\",\"drafted\":\"BB $1.00\"},{\"status\":\"ROSTER\",\"id\":\"13968\",\"drafted\":\"BB $28.00\"},{\"status\":\"ROSTER\",\"id\":\"9823\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"12621\",\"drafted\":\"BB $71.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14093\",\"drafted\":\"13.03\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14114\",\"drafted\":\"20.03\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14782\",\"drafted\":\"3.07\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14805\",\"drafted\":\"2.04\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14868\",\"drafted\":\"4.07\"}],\"id\":\"0002\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"11678\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12611\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12678\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12912\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11222\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11516\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14073\",\"drafted\":\"1.01 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14208\",\"drafted\":\"2.07 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14223\",\"drafted\":\"3.01 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11244\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13814\",\"drafted\":\"BB $0.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14123\",\"drafted\":\"4.01 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12330\",\"drafted\":\"BB $10.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14778\",\"drafted\":\"1.15\"},{\"status\":\"ROSTER\",\"id\":\"14798\",\"drafted\":\"2.05\"},{\"status\":\"ROSTER\",\"id\":\"12629\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14864\",\"drafted\":\"3.05\"},{\"status\":\"ROSTER\",\"id\":\"11192\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14558\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13988\",\"drafted\":\"BB $50.00\"},{\"status\":\"ROSTER\",\"id\":\"13633\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14613\",\"drafted\":\"BB $15.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13590\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13642\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10313\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11890\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13630\",\"drafted\":\"1.12 (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14209\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14081\",\"drafted\":\"BB $5.00 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14146\",\"drafted\":\"3.09 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14862\",\"drafted\":\"4.05\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14781\",\"drafted\":\"BB $0.00\"}],\"id\":\"0003\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13132\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12175\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12677\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13378\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11225\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12140\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13424\",\"drafted\":\"FCFS (2018)\"},{\"status\":\"ROSTER\",\"id\":\"10699\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14280\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10729\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13880\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13427\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13679\",\"drafted\":\"4.06 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"10271\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14067\",\"drafted\":\"BB $201.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14239\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13277\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14341\",\"drafted\":\"BB $42.00\"},{\"status\":\"ROSTER\",\"id\":\"11390\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"15034\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13134\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13674\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13130\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"15022\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13289\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14116\",\"drafted\":\"1.14 (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12261\",\"drafted\":\"BB $0.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11760\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11925\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14869\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14840\",\"drafted\":\"1.12\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14315\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14435\",\"drafted\":\"FCFS\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14142\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14086\",\"drafted\":\"FCFS\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14117\",\"drafted\":\"FCFS\"}],\"id\":\"0004\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13668\",\"drafted\":\"3.05\"},{\"status\":\"ROSTER\",\"id\":\"13671\",\"drafted\":\"4.01\"},{\"status\":\"ROSTER\",\"id\":\"13606\",\"drafted\":\"7.05\"},{\"status\":\"ROSTER\",\"id\":\"13153\",\"drafted\":\"12.01\"},{\"status\":\"ROSTER\",\"id\":\"14284\",\"drafted\":\"13.05\"},{\"status\":\"ROSTER\",\"id\":\"8658\",\"drafted\":\"15.05\"},{\"status\":\"ROSTER\",\"id\":\"13115\",\"drafted\":\"16.01\"},{\"status\":\"ROSTER\",\"id\":\"8062\",\"drafted\":\"17.05\"},{\"status\":\"ROSTER\",\"id\":\"13864\",\"drafted\":\"20.01\"},{\"status\":\"ROSTER\",\"id\":\"13176\",\"drafted\":\"26.01\"},{\"status\":\"ROSTER\",\"id\":\"11367\",\"drafted\":\"27.05\"},{\"status\":\"ROSTER\",\"id\":\"13162\",\"drafted\":\"31.05\"},{\"status\":\"ROSTER\",\"id\":\"14852\",\"drafted\":\"2.06\"},{\"status\":\"ROSTER\",\"id\":\"14101\",\"drafted\":\"5.05\"},{\"status\":\"ROSTER\",\"id\":\"12675\",\"drafted\":\"BB $50.00\"},{\"status\":\"ROSTER\",\"id\":\"14826\",\"drafted\":\"BB $1.00\"},{\"status\":\"ROSTER\",\"id\":\"12211\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"15077\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14815\",\"drafted\":\"3.11\"},{\"status\":\"ROSTER\",\"id\":\"14848\",\"drafted\":\"4.06\"},{\"status\":\"ROSTER\",\"id\":\"14104\",\"drafted\":\"1.05\"},{\"status\":\"ROSTER\",\"id\":\"14109\",\"drafted\":\"2.01\"},{\"status\":\"ROSTER\",\"id\":\"14974\",\"drafted\":\"4.04\"},{\"status\":\"ROSTER\",\"id\":\"13066\",\"drafted\":\"BB $3.00\"},{\"status\":\"ROSTER\",\"id\":\"14855\",\"drafted\":\"BB $17.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14112\",\"drafted\":\"6.01\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13722\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"9662\",\"drafted\":\"8.01\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14850\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14561\",\"drafted\":\"BB $45.00\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14533\",\"drafted\":\"FCFS\"}],\"id\":\"0005\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12630\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"10312\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13116\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11644\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13146\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11227\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13629\",\"drafted\":\"1.10 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13726\",\"drafted\":\"3.03 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14105\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14059\",\"drafted\":\"3.11 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13623\",\"drafted\":\"FCFS (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14122\",\"drafted\":\"4.11 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12801\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12676\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13613\",\"drafted\":\"3.08 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14072\",\"drafted\":\"3.12 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14836\",\"drafted\":\"1.09\"},{\"status\":\"ROSTER\",\"id\":\"14834\",\"drafted\":\"1.10\"},{\"status\":\"ROSTER\",\"id\":\"14810\",\"drafted\":\"2.03\"},{\"status\":\"ROSTER\",\"id\":\"13847\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14113\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13919\",\"drafted\":\"BB $0.00 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14265\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13621\",\"drafted\":\"BB $37.00\"},{\"status\":\"ROSTER\",\"id\":\"14095\",\"drafted\":\"BB $33.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12317\",\"drafted\":\"BB $1.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14806\",\"drafted\":\"3.09\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14103\",\"drafted\":\"2.11 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14939\",\"drafted\":\"4.09\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14936\",\"drafted\":\"2.09\"}],\"id\":\"0006\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"5848\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11951\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14079\",\"drafted\":\"1.03 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14056\",\"drafted\":\"1.15 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14121\",\"drafted\":\"2.03 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12157\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"7877\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13592\",\"drafted\":\"2.02 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13240\",\"drafted\":\"BB $17.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13138\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13391\",\"drafted\":\"BB $61.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10722\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11232\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13348\",\"drafted\":\"BB $2.00\"},{\"status\":\"ROSTER\",\"id\":\"14083\",\"drafted\":\"BB $31.00\"},{\"status\":\"ROSTER\",\"id\":\"12929\",\"drafted\":\"BB $16.00\"},{\"status\":\"ROSTER\",\"id\":\"14839\",\"drafted\":\"1.08\"},{\"status\":\"ROSTER\",\"id\":\"13724\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14143\",\"drafted\":\"3.07 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13610\",\"drafted\":\"1.04 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"14592\",\"drafted\":\"BB $69.00\"},{\"status\":\"ROSTER\",\"id\":\"14843\",\"drafted\":\"3.06\"},{\"status\":\"ROSTER\",\"id\":\"14809\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10723\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13308\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12665\",\"drafted\":\"BB $2.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12596\",\"drafted\":\"BB $0.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12391\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12188\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11247\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13634\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11938\",\"drafted\":\"Trade (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14124\",\"drafted\":\"4.03 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14783\",\"drafted\":\"3.10\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14992\",\"drafted\":\"4.08\"}],\"id\":\"0007\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12151\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12184\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13617\",\"drafted\":\"1.07 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13646\",\"drafted\":\"1.14 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12637\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13614\",\"drafted\":\"BBID (2018)\"},{\"status\":\"ROSTER\",\"id\":\"11257\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13364\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13593\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13622\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10973\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"7393\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11228\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12150\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13768\",\"drafted\":\"3.07 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13418\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"9075\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"9474\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"11250\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13190\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13649\",\"drafted\":\"BB $16.00\"},{\"status\":\"ROSTER\",\"id\":\"10261\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"10273\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"11152\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"12628\",\"drafted\":\"BB $173.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11239\",\"drafted\":\"Trade (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13234\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13608\",\"drafted\":\"1.05 (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12620\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"10983\",\"drafted\":\"FCFS\"}],\"id\":\"0008\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"11675\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13113\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"10700\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13193\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13678\",\"drafted\":\"3.06 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13128\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13164\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12652\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"6997\",\"drafted\":\"BB $24.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14127\",\"drafted\":\"3.06 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13488\",\"drafted\":\"BB $0.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13108\",\"drafted\":\"BB $15.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12263\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11747\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11957\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13313\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13772\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13789\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13871\",\"drafted\":\"BB $26.00\"},{\"status\":\"ROSTER\",\"id\":\"14096\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13632\",\"drafted\":\"BB $35.00 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12155\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13607\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12447\",\"drafted\":\"FCFS (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11186\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"10276\",\"drafted\":\"Trade (2019)\"}],\"id\":\"0009\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12186\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12656\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12814\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11337\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13589\",\"drafted\":\"2.12 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"13635\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11657\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14136\",\"drafted\":\"1.11 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"7836\",\"drafted\":\"9.04\"},{\"status\":\"ROSTER\",\"id\":\"14797\",\"drafted\":\"1.03\"},{\"status\":\"ROSTER\",\"id\":\"11647\",\"drafted\":\"BB $25.00\"},{\"status\":\"ROSTER\",\"id\":\"14858\",\"drafted\":\"3.02\"},{\"status\":\"ROSTER\",\"id\":\"14844\",\"drafted\":\"2.08\"},{\"status\":\"ROSTER\",\"id\":\"14813\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14851\",\"drafted\":\"BB $11.00\"},{\"status\":\"ROSTER\",\"id\":\"14337\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13387\",\"drafted\":\"BB $39.00\"},{\"status\":\"ROSTER\",\"id\":\"13895\",\"drafted\":\"BB $4.00\"},{\"status\":\"ROSTER\",\"id\":\"14846\",\"drafted\":\"1.13\"},{\"status\":\"ROSTER\",\"id\":\"14799\",\"drafted\":\"1.05\"},{\"status\":\"ROSTER\",\"id\":\"13680\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14811\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"11785\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14865\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14195\",\"drafted\":\"3.04 (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"10960\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13299\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14126\",\"drafted\":\"2.13 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14612\",\"drafted\":\"BB $0.00 (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14969\",\"drafted\":\"4.02\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"15046\",\"drafted\":\"FCFS\"}],\"id\":\"0010\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"11660\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12626\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12610\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11695\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"9099\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11182\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"11783\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12505\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12257\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"9831\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14017\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14080\",\"drafted\":\"2.08 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14305\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"14097\",\"drafted\":\"4.08 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11399\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13662\",\"drafted\":\"3.13 (2018)\"},{\"status\":\"ROSTER\",\"id\":\"11761\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"14832\",\"drafted\":\"1.07\"},{\"status\":\"ROSTER\",\"id\":\"14841\",\"drafted\":\"2.07\"},{\"status\":\"ROSTER\",\"id\":\"14138\",\"drafted\":\"1.08 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11705\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"9064\",\"drafted\":\"BB $6.00\"},{\"status\":\"ROSTER\",\"id\":\"11248\",\"drafted\":\"BB $3.00\"},{\"status\":\"ROSTER\",\"id\":\"12857\",\"drafted\":\"BB $1.00\"},{\"status\":\"ROSTER\",\"id\":\"13676\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14082\",\"drafted\":\"3.08 (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13404\",\"drafted\":\"Trade (2018)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11679\",\"drafted\":\"\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"13669\",\"drafted\":\"FCFS (2019)\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14816\",\"drafted\":\"BB $0.00\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14780\",\"drafted\":\"BB $11.00\"}],\"id\":\"0011\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12625\",\"drafted\":\"1.02\"},{\"status\":\"ROSTER\",\"id\":\"13154\",\"drafted\":\"5.02\"},{\"status\":\"ROSTER\",\"id\":\"13639\",\"drafted\":\"6.04\"},{\"status\":\"ROSTER\",\"id\":\"13672\",\"drafted\":\"7.02\"},{\"status\":\"ROSTER\",\"id\":\"11674\",\"drafted\":\"8.04\"},{\"status\":\"ROSTER\",\"id\":\"13192\",\"drafted\":\"9.02\"},{\"status\":\"ROSTER\",\"id\":\"14057\",\"drafted\":\"10.04\"},{\"status\":\"ROSTER\",\"id\":\"9431\",\"drafted\":\"11.02\"},{\"status\":\"ROSTER\",\"id\":\"12171\",\"drafted\":\"12.04\"},{\"status\":\"ROSTER\",\"id\":\"11670\",\"drafted\":\"13.02\"},{\"status\":\"ROSTER\",\"id\":\"14106\",\"drafted\":\"16.04\"},{\"status\":\"ROSTER\",\"id\":\"14075\",\"drafted\":\"18.04\"},{\"status\":\"ROSTER\",\"id\":\"13637\",\"drafted\":\"27.02\"},{\"status\":\"ROSTER\",\"id\":\"12212\",\"drafted\":\"28.04\"},{\"status\":\"ROSTER\",\"id\":\"13412\",\"drafted\":\"30.04\"},{\"status\":\"ROSTER\",\"id\":\"14802\",\"drafted\":\"1.02\"},{\"status\":\"ROSTER\",\"id\":\"14833\",\"drafted\":\"1.06\"},{\"status\":\"ROSTER\",\"id\":\"14867\",\"drafted\":\"2.13\"},{\"status\":\"ROSTER\",\"id\":\"14807\",\"drafted\":\"3.04\"},{\"status\":\"ROSTER\",\"id\":\"13129\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"7813\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14827\",\"drafted\":\"BB $31.00\"},{\"status\":\"ROSTER\",\"id\":\"13638\",\"drafted\":\"BB $42.00\"},{\"status\":\"ROSTER\",\"id\":\"14793\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"9988\",\"drafted\":\"20.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12141\",\"drafted\":\"22.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14871\",\"drafted\":\"4.13\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13963\",\"drafted\":\"BB $1.00\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14972\",\"drafted\":\"4.03\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14845\",\"drafted\":\"3.13\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14873\",\"drafted\":\"4.01\"}],\"id\":\"0012\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"13612\",\"drafted\":\"3.01\"},{\"status\":\"ROSTER\",\"id\":\"10697\",\"drafted\":\"9.01\"},{\"status\":\"ROSTER\",\"id\":\"10738\",\"drafted\":\"10.05\"},{\"status\":\"ROSTER\",\"id\":\"10308\",\"drafted\":\"12.05\"},{\"status\":\"ROSTER\",\"id\":\"11640\",\"drafted\":\"15.01\"},{\"status\":\"ROSTER\",\"id\":\"10413\",\"drafted\":\"18.05\"},{\"status\":\"ROSTER\",\"id\":\"11193\",\"drafted\":\"19.01\"},{\"status\":\"ROSTER\",\"id\":\"9308\",\"drafted\":\"20.05\"},{\"status\":\"ROSTER\",\"id\":\"13753\",\"drafted\":\"21.01\"},{\"status\":\"ROSTER\",\"id\":\"13135\",\"drafted\":\"22.05\"},{\"status\":\"ROSTER\",\"id\":\"12181\",\"drafted\":\"24.05\"},{\"status\":\"ROSTER\",\"id\":\"12464\",\"drafted\":\"29.01\"},{\"status\":\"ROSTER\",\"id\":\"13246\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14847\",\"drafted\":\"3.03\"},{\"status\":\"ROSTER\",\"id\":\"14857\",\"drafted\":\"4.11\"},{\"status\":\"ROSTER\",\"id\":\"12152\",\"drafted\":\"8.05\"},{\"status\":\"ROSTER\",\"id\":\"12658\",\"drafted\":\"5.01\"},{\"status\":\"ROSTER\",\"id\":\"14331\",\"drafted\":\"BB $146.00\"},{\"status\":\"ROSTER\",\"id\":\"12616\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"14125\",\"drafted\":\"6.05\"},{\"status\":\"ROSTER\",\"id\":\"13416\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13994\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"15096\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10870\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"10696\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13604\",\"drafted\":\"1.01\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14808\",\"drafted\":\"2.12\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13620\",\"drafted\":\"14.05\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12328\",\"drafted\":\"28.05\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14800\",\"drafted\":\"1.04\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13863\",\"drafted\":\"FCFS\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14140\",\"drafted\":\"11.01\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14842\",\"drafted\":\"2.01\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14137\",\"drafted\":\"4.05\"}],\"id\":\"0013\"},{\"week\":\"12\",\"player\":[{\"status\":\"ROSTER\",\"id\":\"12930\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"12650\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"10389\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"13236\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12647\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"12785\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12386\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"10703\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"9925\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"11671\",\"drafted\":\"Trade (2019)\"},{\"status\":\"ROSTER\",\"id\":\"13631\",\"drafted\":\"Trade (2018)\"},{\"status\":\"ROSTER\",\"id\":\"7401\",\"drafted\":\"\"},{\"status\":\"ROSTER\",\"id\":\"9902\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"12187\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13809\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"13156\",\"drafted\":\"Trade\"},{\"status\":\"ROSTER\",\"id\":\"14141\",\"drafted\":\"2.04 (2019)\"},{\"status\":\"ROSTER\",\"id\":\"12164\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13143\",\"drafted\":\"BB $28.00\"},{\"status\":\"ROSTER\",\"id\":\"13133\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"14801\",\"drafted\":\"BB $29.00\"},{\"status\":\"ROSTER\",\"id\":\"13816\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"13640\",\"drafted\":\"BB $0.00\"},{\"status\":\"ROSTER\",\"id\":\"10695\",\"drafted\":\"FCFS\"},{\"status\":\"ROSTER\",\"id\":\"13148\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"11886\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"12205\",\"drafted\":\"\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14821\",\"drafted\":\"BB $98.00\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13131\",\"drafted\":\"Trade\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"13136\",\"drafted\":\"FCFS\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"8687\",\"drafted\":\"Trade (2019)\"},{\"status\":\"INJURED_RESERVE\",\"id\":\"14107\",\"drafted\":\"Trade\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14849\",\"drafted\":\"4.12\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14875\",\"drafted\":\"4.14\"},{\"status\":\"TAXI_SQUAD\",\"id\":\"14853\",\"drafted\":\"BB $5.00\"}],\"id\":\"0014\"}]},\"version\":\"1.0\",\"encoding\":\"utf-8\"}"),
+ date = structure(1606597887, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0.140827, namelookup = 7.8e-05,
+ connect = 9.2e-05, pretransfer = 0.000233, starttransfer = 0.36102,
+ total = 0.361275
+ )
+), class = "response")
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-d275ab.R b/tests/testthat/mfl/2020/export-d275ab.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-d275ab.R
rename to tests/testthat/mfl/2020/export-d275ab.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-d275ab.json b/tests/testthat/mfl/2020/export-d275ab.json
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-d275ab.json
rename to tests/testthat/mfl/2020/export-d275ab.json
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-d4f576.R b/tests/testthat/mfl/2020/export-d4f576.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-d4f576.R
rename to tests/testthat/mfl/2020/export-d4f576.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-d4f576.json b/tests/testthat/mfl/2020/export-d4f576.json
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-d4f576.json
rename to tests/testthat/mfl/2020/export-d4f576.json
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-df2e8a.R b/tests/testthat/mfl/2020/export-df2e8a.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-df2e8a.R
rename to tests/testthat/mfl/2020/export-df2e8a.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-e54ca1.R b/tests/testthat/mfl/2020/export-e54ca1.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-e54ca1.R
rename to tests/testthat/mfl/2020/export-e54ca1.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/export-f5d34a.R b/tests/testthat/mfl/2020/export-f5d34a.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/export-f5d34a.R
rename to tests/testthat/mfl/2020/export-f5d34a.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/login-8aa81d-POST.R b/tests/testthat/mfl/2020/login-8aa81d-POST.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/login-8aa81d-POST.R
rename to tests/testthat/mfl/2020/login-8aa81d-POST.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/login-8aa81d.R b/tests/testthat/mfl/2020/login-8aa81d.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/login-8aa81d.R
rename to tests/testthat/mfl/2020/login-8aa81d.R
diff --git a/tests/testthat/api.myfantasyleague.com/2020/login-fad163.R b/tests/testthat/mfl/2020/login-fad163.R
similarity index 100%
rename from tests/testthat/api.myfantasyleague.com/2020/login-fad163.R
rename to tests/testthat/mfl/2020/login-fad163.R
diff --git a/tests/testthat/api.sleeper.app/v1/draft/522458773321240576/picks.R b/tests/testthat/sleeper/v1/draft/522458773321240576/picks.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/draft/522458773321240576/picks.R
rename to tests/testthat/sleeper/v1/draft/522458773321240576/picks.R
diff --git a/tests/testthat/sleeper/v1/league/386236959468675072.R b/tests/testthat/sleeper/v1/league/386236959468675072.R
new file mode 100644
index 00000000..aaceeaac
--- /dev/null
+++ b/tests/testthat/sleeper/v1/league/386236959468675072.R
@@ -0,0 +1,49 @@
+structure(list(
+ url = "https://api.sleeper.app/v1/league/386236959468675072",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:44 GMT",
+ `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
+ `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "7cb540283f2a228e59c672723fb449bc",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24d72870000ca4b93001000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f971830d87bca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:44 GMT",
+ `content-type` = "application/json; charset=utf-8",
+ vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "7cb540283f2a228e59c672723fb449bc",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24d72870000ca4b93001000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f971830d87bca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = "#HttpOnly_.sleeper.app",
+ flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = "__cfduid", value = "REDACTED"
+ ), row.names = c(
+ NA,
+ -1L
+ ), class = "data.frame"), content = charToRaw("{\"total_rosters\":12,\"status\":\"complete\",\"sport\":\"nfl\",\"shard\":581,\"settings\":{\"max_keepers\":1,\"draft_rounds\":4,\"trade_review_days\":2,\"reserve_allow_dnr\":0,\"capacity_override\":0,\"pick_trading\":1,\"taxi_years\":1,\"taxi_allow_vets\":0,\"last_report\":13,\"disable_adds\":0,\"waiver_type\":2,\"bench_lock\":1,\"reserve_allow_sus\":1,\"type\":2,\"waiver_clear_days\":1,\"daily_waivers_last_ran\":1,\"waiver_day_of_week\":2,\"start_week\":1,\"playoff_teams\":6,\"num_teams\":12,\"reserve_slots\":3,\"playoff_round_type\":0,\"daily_waivers_hour\":0,\"waiver_budget\":200,\"reserve_allow_out\":1,\"offseason_adds\":0,\"last_scored_leg\":16,\"daily_waivers\":0,\"playoff_week_start\":14,\"daily_waivers_days\":1093,\"league_average_match\":0,\"leg\":16,\"trade_deadline\":13,\"reserve_allow_doubtful\":0,\"taxi_deadline\":0,\"reserve_allow_na\":0,\"taxi_slots\":3,\"playoff_type\":1},\"season_type\":\"regular\",\"season\":\"2019\",\"scoring_settings\":{\"pass_2pt\":2.0,\"pass_int\":-2.0,\"fgmiss\":0.0,\"rec_yd\":0.10000000149011612,\"xpmiss\":0.0,\"def_pr_td\":0.0,\"fgm_30_39\":0.0,\"blk_kick\":2.0,\"pts_allow_7_13\":0.0,\"ff\":1.0,\"fgm_20_29\":0.0,\"fgm_40_49\":0.0,\"pts_allow_1_6\":0.0,\"st_fum_rec\":1.0,\"def_st_ff\":1.0,\"st_ff\":1.0,\"pts_allow_28_34\":0.0,\"fgm_50p\":0.0,\"fum_rec\":2.0,\"def_td\":6.0,\"fgm_0_19\":0.0,\"int\":2.0,\"pts_allow_0\":0.0,\"pts_allow_21_27\":0.0,\"rec_2pt\":2.0,\"rec\":0.5,\"xpm\":0.0,\"st_td\":6.0,\"def_st_fum_rec\":1.0,\"def_st_td\":6.0,\"sack\":1.0,\"idp_tkl_solo\":0.0,\"rush_2pt\":2.0,\"rec_td\":6.0,\"pts_allow_35p\":0.0,\"pts_allow_14_20\":0.0,\"rush_yd\":0.10000000149011612,\"pass_yd\":0.03999999910593033,\"pass_td\":4.0,\"rush_td\":6.0,\"def_kr_td\":0.0,\"fum_lost\":-2.0,\"fum\":0.0,\"safe\":2.0},\"roster_positions\":[\"QB\",\"RB\",\"RB\",\"WR\",\"WR\",\"TE\",\"FLEX\",\"FLEX\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\"],\"previous_league_id\":\"0\",\"name\":\"The JanMichaelLarkin Dynasty League\",\"metadata\":{\"trophy_loser_banner_text\":\"THE MELLY\",\"trophy_loser_background\":\"poop\",\"trophy_loser\":\"loser1\"},\"loser_bracket_id\":513526691414429696,\"league_id\":\"386236959468675072\",\"last_read_id\":null,\"last_pinned_message_id\":null,\"last_message_time\":1578111120190,\"last_message_text_map\":{},\"last_message_text\":\"When Ryan comes back\",\"last_message_id\":\"519039293647638528\",\"last_message_attachment\":null,\"last_author_is_bot\":false,\"last_author_id\":\"386976568364306432\",\"last_author_display_name\":\"TwoFrames\",\"last_author_avatar\":\"712105a5bab80482980a3f55d87fc612\",\"group_id\":null,\"draft_id\":\"386351625650020352\",\"company_id\":null,\"bracket_id\":513526691410235392,\"avatar\":\"6405a606ed8554f6728a38bd48b9a64d\"}"),
+ date = structure(1606598024, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 4.7e-05,
+ connect = 5.4e-05, pretransfer = 0.000159, starttransfer = 0.327992,
+ total = 0.328079
+ )
+), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864.R b/tests/testthat/sleeper/v1/league/521379020332068864.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864.R
rename to tests/testthat/sleeper/v1/league/521379020332068864.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864.json b/tests/testthat/sleeper/v1/league/521379020332068864.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864.json
rename to tests/testthat/sleeper/v1/league/521379020332068864.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/drafts.R b/tests/testthat/sleeper/v1/league/521379020332068864/drafts.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/drafts.R
rename to tests/testthat/sleeper/v1/league/521379020332068864/drafts.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/1.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/1.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/1.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/1.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/10.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/10.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/10.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/10.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/11.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/11.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/11.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/11.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/12.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/12.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/12.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/12.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/13.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/13.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/13.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/13.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/2.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/2.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/2.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/2.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/3.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/3.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/3.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/3.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/4.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/4.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/4.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/4.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/5.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/5.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/5.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/5.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/6.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/6.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/6.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/6.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/7.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/7.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/7.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/7.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/8.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/8.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/8.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/8.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/9.json b/tests/testthat/sleeper/v1/league/521379020332068864/matchups/9.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/matchups/9.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/matchups/9.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/rosters.R b/tests/testthat/sleeper/v1/league/521379020332068864/rosters.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/rosters.R
rename to tests/testthat/sleeper/v1/league/521379020332068864/rosters.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/rosters.json b/tests/testthat/sleeper/v1/league/521379020332068864/rosters.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/rosters.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/rosters.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/traded_picks.R b/tests/testthat/sleeper/v1/league/521379020332068864/traded_picks.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/traded_picks.R
rename to tests/testthat/sleeper/v1/league/521379020332068864/traded_picks.R
diff --git a/tests/testthat/sleeper/v1/league/521379020332068864/users.R b/tests/testthat/sleeper/v1/league/521379020332068864/users.R
new file mode 100644
index 00000000..e8066216
--- /dev/null
+++ b/tests/testthat/sleeper/v1/league/521379020332068864/users.R
@@ -0,0 +1,49 @@
+structure(list(
+ url = "https://api.sleeper.app/v1/league/521379020332068864/users",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:38 GMT",
+ `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
+ `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "8dd7b3885ef7ef520c312ca9c516fcc2",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24d5cc50000ca4be1314000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f97180e08e7ca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:38 GMT",
+ `content-type` = "application/json; charset=utf-8",
+ vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "8dd7b3885ef7ef520c312ca9c516fcc2",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24d5cc50000ca4be1314000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f97180e08e7ca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = "#HttpOnly_.sleeper.app",
+ flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = "__cfduid", value = "REDACTED"
+ ), row.names = c(
+ NA,
+ -1L
+ ), class = "data.frame"), content = charToRaw("[{\"user_id\":\"202892038360801280\",\"settings\":null,\"metadata\":{\"user_message_pn\":\"off\",\"transaction_waiver\":\"on\",\"transaction_trade\":\"on\",\"transaction_free_agent\":\"on\",\"transaction_commissioner\":\"on\",\"team_name_update\":\"on\",\"team_name\":\"DLP::thoriyan\",\"player_nickname_update\":\"on\",\"mention_pn\":\"on\",\"mascot_message\":\"on\",\"mascot_item_type_id_leg_9\":\"steel-man\",\"mascot_item_type_id_leg_8\":\"steel-man\",\"mascot_item_type_id_leg_7\":\"steel-man\",\"mascot_item_type_id_leg_6\":\"steel-man\",\"mascot_item_type_id_leg_5\":\"steel-man\",\"mascot_item_type_id_leg_4\":\"steel-man\",\"mascot_item_type_id_leg_3\":\"steel-man\",\"mascot_item_type_id_leg_2\":\"steel-man\",\"mascot_item_type_id_leg_17\":\"steel-man\",\"mascot_item_type_id_leg_16\":\"steel-man\",\"mascot_item_type_id_leg_15\":\"steel-man\",\"mascot_item_type_id_leg_14\":\"steel-man\",\"mascot_item_type_id_leg_13\":\"steel-man\",\"mascot_item_type_id_leg_12\":\"steel-man\",\"mascot_item_type_id_leg_11\":\"steel-man\",\"mascot_item_type_id_leg_10\":\"steel-man\",\"mascot_item_type_id_leg_1\":\"steel-man\",\"allow_pn\":\"off\"},\"league_id\":\"521379020332068864\",\"is_owner\":true,\"is_bot\":false,\"display_name\":\"solarpool\",\"avatar\":\"a71f864896ba28cbfaa4dc5df5b564e0\"},{\"user_id\":\"459230175830208512\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"AKWilson\",\"avatar\":\"8fcf0e0e6a75e96a591d2a4a4a400f41\"},{\"user_id\":\"460930515327774720\",\"settings\":null,\"metadata\":{\"team_name\":\"Team Mage\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_2\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"troll\",\"mascot_item_type_id_leg_8\":\"troll\",\"mascot_item_type_id_leg_7\":\"troll\",\"mascot_item_type_id_leg_6\":\"troll\",\"mascot_item_type_id_leg_5\":\"troll\",\"mascot_item_type_id_leg_4\":\"troll\",\"mascot_item_type_id_leg_3\":\"troll\",\"mascot_item_type_id_leg_2\":\"troll\",\"mascot_item_type_id_leg_17\":\"troll\",\"mascot_item_type_id_leg_16\":\"troll\",\"mascot_item_type_id_leg_15\":\"troll\",\"mascot_item_type_id_leg_14\":\"troll\",\"mascot_item_type_id_leg_13\":\"troll\",\"mascot_item_type_id_leg_12\":\"troll\",\"mascot_item_type_id_leg_11\":\"troll\",\"mascot_item_type_id_leg_10\":\"troll\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Mage\",\"avatar\":\"8078fbb07b843e8fcbb4601e5cb06b2d\"},{\"user_id\":\"464108705281994752\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_leg_1\":\"\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"silentclock\",\"avatar\":null},{\"user_id\":\"464123755250053120\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_item_type_id_leg_9\":\"goat\",\"mascot_item_type_id_leg_8\":\"goat\",\"mascot_item_type_id_leg_7\":\"goat\",\"mascot_item_type_id_leg_6\":\"goat\",\"mascot_item_type_id_leg_5\":\"goat\",\"mascot_item_type_id_leg_4\":\"goat\",\"mascot_item_type_id_leg_3\":\"goat\",\"mascot_item_type_id_leg_2\":\"goat\",\"mascot_item_type_id_leg_17\":\"goat\",\"mascot_item_type_id_leg_16\":\"goat\",\"mascot_item_type_id_leg_15\":\"goat\",\"mascot_item_type_id_leg_14\":\"goat\",\"mascot_item_type_id_leg_13\":\"goat\",\"mascot_item_type_id_leg_12\":\"goat\",\"mascot_item_type_id_leg_11\":\"goat\",\"mascot_item_type_id_leg_10\":\"goat\",\"mascot_item_type_id_leg_1\":\"goat\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Rah292\",\"avatar\":\"6f925123e8c7894bf1cddb0e21a9ae71\"},{\"user_id\":\"464498960719933440\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"hyphenated\",\"avatar\":\"7fb450a5b9acf255a2a563067dcd7bbe\"},{\"user_id\":\"464935605336272896\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_leg_1\":\"Ya momma\",\"mascot_message_emotion_leg_1\":\"idle\",\"mascot_item_type_id_leg_9\":\"cache-ream\",\"mascot_item_type_id_leg_8\":\"cache-ream\",\"mascot_item_type_id_leg_7\":\"cache-ream\",\"mascot_item_type_id_leg_6\":\"cache-ream\",\"mascot_item_type_id_leg_5\":\"cache-ream\",\"mascot_item_type_id_leg_4\":\"cache-ream\",\"mascot_item_type_id_leg_3\":\"cache-ream\",\"mascot_item_type_id_leg_2\":\"cache-ream\",\"mascot_item_type_id_leg_17\":\"cache-ream\",\"mascot_item_type_id_leg_16\":\"cache-ream\",\"mascot_item_type_id_leg_15\":\"cache-ream\",\"mascot_item_type_id_leg_14\":\"cache-ream\",\"mascot_item_type_id_leg_13\":\"cache-ream\",\"mascot_item_type_id_leg_12\":\"cache-ream\",\"mascot_item_type_id_leg_11\":\"cache-ream\",\"mascot_item_type_id_leg_10\":\"cache-ream\",\"mascot_item_type_id_leg_1\":\"cache-ream\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"MonkeyEpoxy\",\"avatar\":\"b5f980efc36001cb4e056a9e146d0ca0\"},{\"user_id\":\"466527109116850176\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Azraels_Little_Helper\",\"avatar\":\"e06c36b2119f2b564e9c839b5377bdc8\"},{\"user_id\":\"466857724680859648\",\"settings\":null,\"metadata\":{\"team_name\":\"Waco Kid\",\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"WacoRides2glory\",\"avatar\":null},{\"user_id\":\"467329259925401600\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Eidolonic\",\"avatar\":null},{\"user_id\":\"507457165422039040\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":null,\"is_bot\":false,\"display_name\":\"yeavoxxtalknah\",\"avatar\":null},{\"user_id\":\"589594433561858048\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"521379020332068864\",\"is_owner\":null,\"is_bot\":false,\"display_name\":\"Conquistador00\",\"avatar\":null}]"),
+ date = structure(1606598018, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 3.8e-05,
+ connect = 4.3e-05, pretransfer = 0.000133, starttransfer = 0.33285,
+ total = 0.332956
+ )
+), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/521379020332068864/users.json b/tests/testthat/sleeper/v1/league/521379020332068864/users.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/521379020332068864/users.json
rename to tests/testthat/sleeper/v1/league/521379020332068864/users.json
diff --git a/tests/testthat/sleeper/v1/league/522458773317046272.R b/tests/testthat/sleeper/v1/league/522458773317046272.R
new file mode 100644
index 00000000..659496a2
--- /dev/null
+++ b/tests/testthat/sleeper/v1/league/522458773317046272.R
@@ -0,0 +1,49 @@
+structure(list(
+ url = "https://api.sleeper.app/v1/league/522458773317046272",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:43 GMT",
+ `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
+ `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "47a0076afef16ba5f1e348201c98b628",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24d6f7b0000ca4bc41e1000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f97182bfc93ca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:43 GMT",
+ `content-type` = "application/json; charset=utf-8",
+ vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "47a0076afef16ba5f1e348201c98b628",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24d6f7b0000ca4bc41e1000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f97182bfc93ca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = "#HttpOnly_.sleeper.app",
+ flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = "__cfduid", value = "REDACTED"
+ ), row.names = c(
+ NA,
+ -1L
+ ), class = "data.frame"), content = charToRaw("{\"total_rosters\":12,\"status\":\"in_season\",\"sport\":\"nfl\",\"shard\":62,\"settings\":{\"max_keepers\":1,\"draft_rounds\":4,\"trade_review_days\":2,\"reserve_allow_dnr\":1,\"capacity_override\":0,\"pick_trading\":1,\"taxi_years\":1,\"taxi_allow_vets\":0,\"last_report\":11,\"disable_adds\":0,\"waiver_type\":2,\"bench_lock\":1,\"reserve_allow_sus\":1,\"type\":2,\"reserve_allow_cov\":1,\"waiver_clear_days\":1,\"daily_waivers_last_ran\":27,\"waiver_day_of_week\":2,\"start_week\":1,\"playoff_teams\":6,\"num_teams\":12,\"reserve_slots\":6,\"playoff_round_type\":0,\"daily_waivers_hour\":1,\"waiver_budget\":200,\"reserve_allow_out\":1,\"offseason_adds\":1,\"last_scored_leg\":11,\"playoff_seed_type\":0,\"daily_waivers\":0,\"playoff_week_start\":14,\"daily_waivers_days\":2075,\"league_average_match\":0,\"leg\":12,\"trade_deadline\":13,\"reserve_allow_doubtful\":0,\"taxi_deadline\":0,\"reserve_allow_na\":0,\"taxi_slots\":3,\"playoff_type\":1},\"season_type\":\"regular\",\"season\":\"2020\",\"scoring_settings\":{\"pass_2pt\":2.0,\"pass_int\":-2.0,\"fgmiss\":0.0,\"rec_yd\":0.10000000149011612,\"xpmiss\":0.0,\"def_pr_td\":0.0,\"fgm_30_39\":0.0,\"blk_kick\":2.0,\"pts_allow_7_13\":0.0,\"ff\":1.0,\"fgm_20_29\":0.0,\"fgm_40_49\":0.0,\"pts_allow_1_6\":0.0,\"st_fum_rec\":1.0,\"def_st_ff\":1.0,\"st_ff\":1.0,\"pts_allow_28_34\":0.0,\"fgm_50p\":0.0,\"fum_rec\":2.0,\"def_td\":6.0,\"fgm_0_19\":0.0,\"int\":2.0,\"pts_allow_0\":0.0,\"pts_allow_21_27\":0.0,\"rec_2pt\":2.0,\"rec\":0.5,\"xpm\":0.0,\"st_td\":6.0,\"def_st_fum_rec\":1.0,\"def_st_td\":6.0,\"sack\":1.0,\"fum_rec_td\":6.0,\"idp_tkl_solo\":0.0,\"rush_2pt\":2.0,\"rec_td\":6.0,\"pts_allow_35p\":0.0,\"pts_allow_14_20\":0.0,\"rush_yd\":0.10000000149011612,\"pass_yd\":0.03999999910593033,\"pass_td\":4.0,\"rush_td\":6.0,\"def_kr_td\":0.0,\"fum_lost\":-2.0,\"fum\":0.0,\"safe\":2.0},\"roster_positions\":[\"QB\",\"RB\",\"RB\",\"WR\",\"WR\",\"TE\",\"FLEX\",\"FLEX\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\",\"BN\"],\"previous_league_id\":\"386236959468675072\",\"name\":\"The JanMichaelLarkin Dynasty League\",\"metadata\":null,\"loser_bracket_id\":null,\"league_id\":\"522458773317046272\",\"last_read_id\":null,\"last_pinned_message_id\":null,\"last_message_time\":1606592976839,\"last_message_text_map\":{},\"last_message_text\":\"Jcurtis44 put a player on the trade block.\",\"last_message_id\":\"638500858916569088\",\"last_message_attachment\":{\"type\":\"trade_block_player\",\"data\":{\"roster\":{\"taxi\":[\"6826\",\"7082\"],\"starters\":[\"4017\",\"4199\",\"4098\",\"1426\",\"4037\",\"5022\",\"2197\",\"2319\"],\"settings\":{\"wins\":7,\"waiver_position\":9,\"waiver_budget_used\":111,\"total_moves\":0,\"ties\":0,\"ppts_decimal\":40,\"ppts\":1338,\"losses\":4,\"fpts_decimal\":30,\"fpts_against_decimal\":14,\"fpts_against\":1093,\"fpts\":1052},\"roster_id\":1,\"reserve\":[\"2025\",\"289\",\"344\",\"3503\",\"4866\"],\"players\":[\"1110\",\"1339\",\"1426\",\"1825\",\"2025\",\"2197\",\"2319\",\"232\",\"2822\",\"289\",\"344\",\"3503\",\"4017\",\"4036\",\"4037\",\"4089\",\"4098\",\"4137\",\"4144\",\"4149\",\"4171\",\"4199\",\"421\",\"4866\",\"5022\",\"5068\",\"5965\",\"6001\",\"6068\",\"6149\",\"6826\",\"7082\"],\"metadata\":{\"record\":\"LWWWWLLWLWW\",\"p_nick_956\":\"2019 Chiefs Starting RB\",\"p_nick_574\":\"\",\"p_nick_5068\":\"\",\"p_nick_5007\":\"\",\"p_nick_4993\":\"\",\"p_nick_4866\":\"\",\"p_nick_4863\":\"\",\"p_nick_4454\":\"\",\"p_nick_4273\":\"Bell Cow\",\"p_nick_4197\":\"\",\"p_nick_4171\":\"\",\"p_nick_4149\":\"\",\"p_nick_4144\":\"\",\"p_nick_4089\":\"\",\"p_nick_4068\":\"High Point Monster\",\"p_nick_4037\":\"\",\"p_nick_3976\":\"Biscuit\",\"p_nick_3969\":\"Fat, Lazy and Disrespectful\",\"p_nick_3208\":\"\",\"p_nick_1825\":\"\",\"p_nick_1706\":\"\",\"p_nick_1426\":\"\",\"p_nick_1339\":\"\",\"p_nick_1110\":\"\",\"allow_pn_scoring\":\"off\",\"allow_pn_news\":\"on\"},\"keepers\":null,\"co_owners\":null,\"bucket\":0},\"player\":{\"team\":\"NYG\",\"sport\":\"nfl\",\"position\":\"WR\",\"player_id\":\"6149\",\"number\":86,\"metadata\":null,\"last_name\":\"Slayton\",\"injury_status\":null,\"hashtag\":null,\"first_name\":\"Darius\",\"fantasy_positions\":[\"WR\"],\"depth_chart_position\":\"LWR\",\"depth_chart_order\":1},\"owner\":{\"settings\":null,\"metadata\":{\"team_name\":\"Fake News\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_9\":\"dancing\",\"mascot_message_emotion_leg_3\":\"victory\",\"mascot_item_type_id_leg_9\":\"metal-slug\",\"mascot_item_type_id_leg_8\":\"smoothie\",\"mascot_item_type_id_leg_7\":\"smoothie\",\"mascot_item_type_id_leg_6\":\"smoothie\",\"mascot_item_type_id_leg_5\":\"smoothie\",\"mascot_item_type_id_leg_4\":\"smoothie\",\"mascot_item_type_id_leg_3\":\"smoothie\",\"mascot_item_type_id_leg_2\":\"metal-slug\",\"mascot_item_type_id_leg_17\":\"metal-slug\",\"mascot_item_type_id_leg_16\":\"metal-slug\",\"mascot_item_type_id_leg_15\":\"metal-slug\",\"mascot_item_type_id_leg_14\":\"metal-slug\",\"mascot_item_type_id_leg_13\":\"metal-slug\",\"mascot_item_type_id_leg_12\":\"metal-slug\",\"mascot_item_type_id_leg_11\":\"metal-slug\",\"mascot_item_type_id_leg_10\":\"metal-slug\",\"mascot_item_type_id_leg_1\":\"metal-slug\",\"avatar\":\"https://sleepercdn.com/uploads/227fe45a080c97ba3ee59ebd1dca80af.jpg\",\"allow_pn\":\"on\"},\"is_owner\":false,\"is_bot\":null,\"display_name\":\"Jcurtis44\",\"avatar\":\"694db09fd474fe0ab8d767b31dd093c2\"}}},\"last_author_is_bot\":true,\"last_author_id\":\"166666666666666666\",\"last_author_display_name\":\"sys\",\"last_author_avatar\":null,\"group_id\":null,\"draft_id\":\"522458773321240576\",\"company_id\":null,\"bracket_id\":null,\"avatar\":\"6405a606ed8554f6728a38bd48b9a64d\"}"),
+ date = structure(1606598023, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 5.1e-05,
+ connect = 5.7e-05, pretransfer = 0.000162, starttransfer = 0.321119,
+ total = 0.321246
+ )
+), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272.json b/tests/testthat/sleeper/v1/league/522458773317046272.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272.json
rename to tests/testthat/sleeper/v1/league/522458773317046272.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/drafts.R b/tests/testthat/sleeper/v1/league/522458773317046272/drafts.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/drafts.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/drafts.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/1.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/1.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/1.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/1.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/1.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/1.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/1.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/1.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/10.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/10.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/10.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/10.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/10.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/10.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/10.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/10.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/11.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/11.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/11.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/11.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/11.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/11.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/11.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/11.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/12.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/12.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/12.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/12.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/12.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/12.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/12.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/12.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/13.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/13.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/13.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/13.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/13.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/13.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/13.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/13.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/2.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/2.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/2.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/2.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/2.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/2.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/2.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/2.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/3.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/3.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/3.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/3.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/3.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/3.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/3.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/3.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/4.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/4.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/4.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/4.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/4.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/4.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/4.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/4.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/5.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/5.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/5.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/5.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/5.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/5.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/5.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/5.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/6.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/6.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/6.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/6.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/6.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/6.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/6.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/6.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/7.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/7.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/7.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/7.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/7.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/7.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/7.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/7.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/8.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/8.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/8.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/8.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/8.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/8.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/8.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/8.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/9.R b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/9.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/9.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/9.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/9.json b/tests/testthat/sleeper/v1/league/522458773317046272/matchups/9.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/matchups/9.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/matchups/9.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/rosters.R b/tests/testthat/sleeper/v1/league/522458773317046272/rosters.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/rosters.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/rosters.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/rosters.json b/tests/testthat/sleeper/v1/league/522458773317046272/rosters.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/rosters.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/rosters.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/traded_picks.R b/tests/testthat/sleeper/v1/league/522458773317046272/traded_picks.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/traded_picks.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/traded_picks.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/1.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/1.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/1.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/1.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/2.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/2.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/2.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/2.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/3.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/3.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/3.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/3.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/4.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/4.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/4.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/4.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/5.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/5.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/5.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/5.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/6.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/6.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/6.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/6.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/7.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/7.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/7.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/7.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/8.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/8.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/8.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/8.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/9.R b/tests/testthat/sleeper/v1/league/522458773317046272/transactions/9.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/transactions/9.R
rename to tests/testthat/sleeper/v1/league/522458773317046272/transactions/9.R
diff --git a/tests/testthat/sleeper/v1/league/522458773317046272/users.R b/tests/testthat/sleeper/v1/league/522458773317046272/users.R
new file mode 100644
index 00000000..12c5fb9c
--- /dev/null
+++ b/tests/testthat/sleeper/v1/league/522458773317046272/users.R
@@ -0,0 +1,49 @@
+structure(list(
+ url = "https://api.sleeper.app/v1/league/522458773317046272/users",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:14:01 GMT",
+ `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
+ `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "f5b76526c31933e58ca2ccdad4c13811",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24db51d0000ca4b719b1000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f97189b6efdca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:14:01 GMT",
+ `content-type` = "application/json; charset=utf-8",
+ vary = "Accept-Encoding", `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "f5b76526c31933e58ca2ccdad4c13811",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "MISS",
+ `cf-request-id` = "06b24db51d0000ca4b719b1000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f97189b6efdca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = "#HttpOnly_.sleeper.app",
+ flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = "__cfduid", value = "REDACTED"
+ ), row.names = c(
+ NA,
+ -1L
+ ), class = "data.frame"), content = charToRaw("[{\"user_id\":\"70729037081100288\",\"settings\":null,\"metadata\":{\"team_name\":\"Fake News\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_9\":\"dancing\",\"mascot_message_emotion_leg_3\":\"victory\",\"mascot_item_type_id_leg_9\":\"metal-slug\",\"mascot_item_type_id_leg_8\":\"smoothie\",\"mascot_item_type_id_leg_7\":\"smoothie\",\"mascot_item_type_id_leg_6\":\"smoothie\",\"mascot_item_type_id_leg_5\":\"smoothie\",\"mascot_item_type_id_leg_4\":\"smoothie\",\"mascot_item_type_id_leg_3\":\"smoothie\",\"mascot_item_type_id_leg_2\":\"metal-slug\",\"mascot_item_type_id_leg_17\":\"metal-slug\",\"mascot_item_type_id_leg_16\":\"metal-slug\",\"mascot_item_type_id_leg_15\":\"metal-slug\",\"mascot_item_type_id_leg_14\":\"metal-slug\",\"mascot_item_type_id_leg_13\":\"metal-slug\",\"mascot_item_type_id_leg_12\":\"metal-slug\",\"mascot_item_type_id_leg_11\":\"metal-slug\",\"mascot_item_type_id_leg_10\":\"metal-slug\",\"mascot_item_type_id_leg_1\":\"metal-slug\",\"avatar\":\"https://sleepercdn.com/uploads/227fe45a080c97ba3ee59ebd1dca80af.jpg\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":null,\"display_name\":\"Jcurtis44\",\"avatar\":\"694db09fd474fe0ab8d767b31dd093c2\"},{\"user_id\":\"76686532077305856\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":null,\"display_name\":\"KingGabe\",\"avatar\":\"nfl_cin\"},{\"user_id\":\"198540145396289536\",\"settings\":null,\"metadata\":{\"team_name\":\"Permian Panthers\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_11\":\"dancing\",\"mascot_message_emotion_leg_1\":\"idle_nervous\",\"mascot_item_type_id_leg_9\":\"skol\",\"mascot_item_type_id_leg_8\":\"skol\",\"mascot_item_type_id_leg_7\":\"skol\",\"mascot_item_type_id_leg_6\":\"skol\",\"mascot_item_type_id_leg_5\":\"skol\",\"mascot_item_type_id_leg_4\":\"skol\",\"mascot_item_type_id_leg_3\":\"skol\",\"mascot_item_type_id_leg_2\":\"skol\",\"mascot_item_type_id_leg_17\":\"skol\",\"mascot_item_type_id_leg_16\":\"skol\",\"mascot_item_type_id_leg_15\":\"skol\",\"mascot_item_type_id_leg_14\":\"skol\",\"mascot_item_type_id_leg_13\":\"skol\",\"mascot_item_type_id_leg_12\":\"skol\",\"mascot_item_type_id_leg_11\":\"skol\",\"mascot_item_type_id_leg_10\":\"skol\",\"mascot_item_type_id_leg_1\":\"skol\",\"avatar\":\"https://sleepercdn.com/uploads/1cc3333a55ab9a4feb58c7eb785ebadb.jpg\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"theoracleETS\",\"avatar\":\"c1891dffbc1262bc3663ef6eb920d8ae\"},{\"user_id\":\"202882046337490944\",\"settings\":null,\"metadata\":{\"team_name\":\"The FANTom Menace\",\"mention_pn\":\"on\",\"mascot_message_leg_4\":\"\",\"mascot_message_emotion_leg_6\":\"idle\",\"mascot_item_type_id_leg_9\":\"doge\",\"mascot_item_type_id_leg_8\":\"doge\",\"mascot_item_type_id_leg_7\":\"doge\",\"mascot_item_type_id_leg_6\":\"doge\",\"mascot_item_type_id_leg_17\":\"doge\",\"mascot_item_type_id_leg_16\":\"doge\",\"mascot_item_type_id_leg_15\":\"doge\",\"mascot_item_type_id_leg_14\":\"doge\",\"mascot_item_type_id_leg_13\":\"doge\",\"mascot_item_type_id_leg_12\":\"doge\",\"mascot_item_type_id_leg_11\":\"doge\",\"mascot_item_type_id_leg_10\":\"doge\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"weeknee\",\"avatar\":\"712105a5bab80482980a3f55d87fc612\"},{\"user_id\":\"202892038360801280\",\"settings\":null,\"metadata\":{\"user_message_pn\":\"off\",\"transaction_waiver\":\"on\",\"transaction_trade\":\"on\",\"transaction_free_agent\":\"on\",\"transaction_commissioner\":\"on\",\"team_name_update\":\"off\",\"player_nickname_update\":\"off\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_message\":\"off\",\"mascot_item_type_id_leg_9\":\"steel-man\",\"mascot_item_type_id_leg_8\":\"steel-man\",\"mascot_item_type_id_leg_7\":\"steel-man\",\"mascot_item_type_id_leg_6\":\"steel-man\",\"mascot_item_type_id_leg_5\":\"steel-man\",\"mascot_item_type_id_leg_4\":\"steel-man\",\"mascot_item_type_id_leg_3\":\"steel-man\",\"mascot_item_type_id_leg_2\":\"steel-man\",\"mascot_item_type_id_leg_17\":\"steel-man\",\"mascot_item_type_id_leg_16\":\"steel-man\",\"mascot_item_type_id_leg_15\":\"steel-man\",\"mascot_item_type_id_leg_14\":\"steel-man\",\"mascot_item_type_id_leg_13\":\"steel-man\",\"mascot_item_type_id_leg_12\":\"steel-man\",\"mascot_item_type_id_leg_11\":\"steel-man\",\"mascot_item_type_id_leg_10\":\"steel-man\",\"mascot_item_type_id_leg_1\":\"steel-man\",\"allow_pn\":\"off\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"solarpool\",\"avatar\":\"a71f864896ba28cbfaa4dc5df5b564e0\"},{\"user_id\":\"386377724614320128\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"panpan\",\"mascot_item_type_id_leg_8\":\"panpan\",\"mascot_item_type_id_leg_7\":\"panpan\",\"mascot_item_type_id_leg_6\":\"panpan\",\"mascot_item_type_id_leg_5\":\"panpan\",\"mascot_item_type_id_leg_4\":\"panpan\",\"mascot_item_type_id_leg_3\":\"panpan\",\"mascot_item_type_id_leg_2\":\"panpan\",\"mascot_item_type_id_leg_17\":\"panpan\",\"mascot_item_type_id_leg_16\":\"panpan\",\"mascot_item_type_id_leg_15\":\"panpan\",\"mascot_item_type_id_leg_14\":\"panpan\",\"mascot_item_type_id_leg_13\":\"panpan\",\"mascot_item_type_id_leg_12\":\"panpan\",\"mascot_item_type_id_leg_11\":\"panpan\",\"mascot_item_type_id_leg_10\":\"panpan\",\"mascot_item_type_id_leg_1\":\"panpan\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Billow23\",\"avatar\":\"4c36f6cc68ca5fb2daae149ee6bbee44\"},{\"user_id\":\"386383436639973376\",\"settings\":null,\"metadata\":{\"user_message_pn\":\"on\",\"transaction_waiver\":\"on\",\"transaction_trade\":\"on\",\"transaction_free_agent\":\"on\",\"transaction_commissioner\":\"off\",\"trade_block_pn\":\"on\",\"team_name_update\":\"off\",\"team_name\":\"Barbarians\",\"player_nickname_update\":\"off\",\"player_like_pn\":\"on\",\"mention_pn\":\"on\",\"mascot_message_emotion_leg_2\":\"action_hurt02\",\"mascot_message_emotion_leg_1\":\"action_hurt01\",\"mascot_message\":\"on\",\"mascot_item_type_id_leg_9\":\"trash\",\"mascot_item_type_id_leg_8\":\"trash\",\"mascot_item_type_id_leg_7\":\"trash\",\"mascot_item_type_id_leg_6\":\"trash\",\"mascot_item_type_id_leg_5\":\"trash\",\"mascot_item_type_id_leg_4\":\"trash\",\"mascot_item_type_id_leg_3\":\"trash\",\"mascot_item_type_id_leg_2\":\"trash\",\"mascot_item_type_id_leg_17\":\"trash\",\"mascot_item_type_id_leg_16\":\"trash\",\"mascot_item_type_id_leg_15\":\"trash\",\"mascot_item_type_id_leg_14\":\"trash\",\"mascot_item_type_id_leg_13\":\"trash\",\"mascot_item_type_id_leg_12\":\"trash\",\"mascot_item_type_id_leg_11\":\"trash\",\"mascot_item_type_id_leg_10\":\"trash\",\"mascot_item_type_id_leg_1\":\"trash\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"ABitterHomer\",\"avatar\":\"279bc69baf2cd8bfaadadb36a44e43fb\"},{\"user_id\":\"386571720443764736\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"panpan\",\"mascot_item_type_id_leg_8\":\"panpan\",\"mascot_item_type_id_leg_7\":\"panpan\",\"mascot_item_type_id_leg_6\":\"panpan\",\"mascot_item_type_id_leg_5\":\"panpan\",\"mascot_item_type_id_leg_4\":\"panpan\",\"mascot_item_type_id_leg_3\":\"panpan\",\"mascot_item_type_id_leg_2\":\"panpan\",\"mascot_item_type_id_leg_17\":\"panpan\",\"mascot_item_type_id_leg_16\":\"panpan\",\"mascot_item_type_id_leg_15\":\"panpan\",\"mascot_item_type_id_leg_14\":\"panpan\",\"mascot_item_type_id_leg_13\":\"panpan\",\"mascot_item_type_id_leg_12\":\"panpan\",\"mascot_item_type_id_leg_11\":\"panpan\",\"mascot_item_type_id_leg_10\":\"panpan\",\"mascot_item_type_id_leg_1\":\"panpan\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":true,\"is_bot\":false,\"display_name\":\"ZPMiller97\",\"avatar\":\"1d538540976713a2a93c687c112b5c70\"},{\"user_id\":\"386950378371207168\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_5\":\"taunting\",\"mascot_message_emotion_leg_4\":\"victory\",\"mascot_message_emotion_leg_3\":\"taunting\",\"mascot_item_type_id_leg_9\":\"monkey-king\",\"mascot_item_type_id_leg_8\":\"monkey-king\",\"mascot_item_type_id_leg_7\":\"monkey-king\",\"mascot_item_type_id_leg_6\":\"monkey-king\",\"mascot_item_type_id_leg_5\":\"monkey-king\",\"mascot_item_type_id_leg_4\":\"monkey-king\",\"mascot_item_type_id_leg_3\":\"monkey-king\",\"mascot_item_type_id_leg_2\":\"monkey-king\",\"mascot_item_type_id_leg_17\":\"monkey-king\",\"mascot_item_type_id_leg_16\":\"monkey-king\",\"mascot_item_type_id_leg_15\":\"monkey-king\",\"mascot_item_type_id_leg_14\":\"monkey-king\",\"mascot_item_type_id_leg_13\":\"monkey-king\",\"mascot_item_type_id_leg_12\":\"monkey-king\",\"mascot_item_type_id_leg_11\":\"monkey-king\",\"mascot_item_type_id_leg_10\":\"monkey-king\",\"mascot_item_type_id_leg_1\":\"monkey-king\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"Flipadelphia05\",\"avatar\":\"73d59b8362cd0da4d3f69354c4bb1272\"},{\"user_id\":\"386976568364306432\",\"settings\":null,\"metadata\":{\"team_name\":\"Hocka Flocka\",\"mention_pn\":\"on\",\"mascot_message_leg_4\":\"Ez\",\"mascot_message_emotion_leg_4\":\"idle\",\"mascot_item_type_id_leg_9\":\"larry-bird\",\"mascot_item_type_id_leg_8\":\"larry-bird\",\"mascot_item_type_id_leg_7\":\"larry-bird\",\"mascot_item_type_id_leg_6\":\"larry-bird\",\"mascot_item_type_id_leg_5\":\"larry-bird\",\"mascot_item_type_id_leg_4\":\"larry-bird\",\"mascot_item_type_id_leg_3\":\"larry-bird\",\"mascot_item_type_id_leg_2\":\"larry-bird\",\"mascot_item_type_id_leg_17\":\"larry-bird\",\"mascot_item_type_id_leg_16\":\"larry-bird\",\"mascot_item_type_id_leg_15\":\"larry-bird\",\"mascot_item_type_id_leg_14\":\"larry-bird\",\"mascot_item_type_id_leg_13\":\"larry-bird\",\"mascot_item_type_id_leg_12\":\"larry-bird\",\"mascot_item_type_id_leg_11\":\"larry-bird\",\"mascot_item_type_id_leg_10\":\"larry-bird\",\"mascot_item_type_id_leg_1\":\"larry-bird\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"TwoFrames\",\"avatar\":\"712105a5bab80482980a3f55d87fc612\"},{\"user_id\":\"387070108625039360\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_message_emotion_leg_1\":\"idle_happy\",\"mascot_item_type_id_leg_9\":\"taco\",\"mascot_item_type_id_leg_8\":\"taco\",\"mascot_item_type_id_leg_7\":\"taco\",\"mascot_item_type_id_leg_6\":\"taco\",\"mascot_item_type_id_leg_5\":\"taco\",\"mascot_item_type_id_leg_4\":\"taco\",\"mascot_item_type_id_leg_3\":\"taco\",\"mascot_item_type_id_leg_2\":\"taco\",\"mascot_item_type_id_leg_17\":\"taco\",\"mascot_item_type_id_leg_16\":\"taco\",\"mascot_item_type_id_leg_15\":\"taco\",\"mascot_item_type_id_leg_14\":\"taco\",\"mascot_item_type_id_leg_13\":\"taco\",\"mascot_item_type_id_leg_12\":\"taco\",\"mascot_item_type_id_leg_11\":\"taco\",\"mascot_item_type_id_leg_10\":\"taco\",\"mascot_item_type_id_leg_1\":\"taco\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"JMLarkin\",\"avatar\":\"1d538540976713a2a93c687c112b5c70\"},{\"user_id\":\"401485903224193024\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_item_type_id_leg_9\":\"da-dolph\",\"mascot_item_type_id_leg_8\":\"da-dolph\",\"mascot_item_type_id_leg_7\":\"da-dolph\",\"mascot_item_type_id_leg_6\":\"da-dolph\",\"mascot_item_type_id_leg_5\":\"da-dolph\",\"mascot_item_type_id_leg_4\":\"da-dolph\",\"mascot_item_type_id_leg_3\":\"da-dolph\",\"mascot_item_type_id_leg_2\":\"da-dolph\",\"mascot_item_type_id_leg_17\":\"da-dolph\",\"mascot_item_type_id_leg_16\":\"da-dolph\",\"mascot_item_type_id_leg_15\":\"da-dolph\",\"mascot_item_type_id_leg_14\":\"da-dolph\",\"mascot_item_type_id_leg_13\":\"da-dolph\",\"mascot_item_type_id_leg_12\":\"da-dolph\",\"mascot_item_type_id_leg_11\":\"da-dolph\",\"mascot_item_type_id_leg_10\":\"da-dolph\",\"mascot_item_type_id_leg_1\":\"da-dolph\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"jaydk\",\"avatar\":\"6e6ccf02bcac09ace27f4f4076d0a8c3\"},{\"user_id\":\"409797051455393792\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"mascot_item_type_id_leg_9\":\"lion-san\",\"mascot_item_type_id_leg_8\":\"lion-san\",\"mascot_item_type_id_leg_7\":\"lion-san\",\"mascot_item_type_id_leg_6\":\"lion-san\",\"mascot_item_type_id_leg_5\":\"lion-san\",\"mascot_item_type_id_leg_4\":\"lion-san\",\"mascot_item_type_id_leg_3\":\"lion-san\",\"mascot_item_type_id_leg_2\":\"lion-san\",\"mascot_item_type_id_leg_17\":\"lion-san\",\"mascot_item_type_id_leg_16\":\"lion-san\",\"mascot_item_type_id_leg_15\":\"lion-san\",\"mascot_item_type_id_leg_14\":\"lion-san\",\"mascot_item_type_id_leg_13\":\"lion-san\",\"mascot_item_type_id_leg_12\":\"lion-san\",\"mascot_item_type_id_leg_11\":\"lion-san\",\"mascot_item_type_id_leg_10\":\"lion-san\",\"mascot_item_type_id_leg_1\":\"lion-san\",\"archived\":\"off\",\"allow_pn\":\"on\"},\"league_id\":\"522458773317046272\",\"is_owner\":false,\"is_bot\":false,\"display_name\":\"sox05syd\",\"avatar\":\"db7b742f6549b03367eb48ed1e328e5e\"}]"),
+ date = structure(1606598041, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 3.3e-05,
+ connect = 3.7e-05, pretransfer = 0.000147, starttransfer = 0.337301,
+ total = 0.337439
+ )
+), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/league/522458773317046272/users.json b/tests/testthat/sleeper/v1/league/522458773317046272/users.json
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/522458773317046272/users.json
rename to tests/testthat/sleeper/v1/league/522458773317046272/users.json
diff --git a/tests/testthat/api.sleeper.app/v1/league/527362181635997696.R b/tests/testthat/sleeper/v1/league/527362181635997696.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/527362181635997696.R
rename to tests/testthat/sleeper/v1/league/527362181635997696.R
diff --git a/tests/testthat/api.sleeper.app/v1/league/598598956691288064/users.R b/tests/testthat/sleeper/v1/league/598598956691288064/users.R
similarity index 100%
rename from tests/testthat/api.sleeper.app/v1/league/598598956691288064/users.R
rename to tests/testthat/sleeper/v1/league/598598956691288064/users.R
diff --git a/tests/testthat/sleeper/v1/league/633501761776197632/users.R b/tests/testthat/sleeper/v1/league/633501761776197632/users.R
new file mode 100644
index 00000000..9fe698b2
--- /dev/null
+++ b/tests/testthat/sleeper/v1/league/633501761776197632/users.R
@@ -0,0 +1,48 @@
+structure(list(
+ url = "https://api.sleeper.app/v1/league/633501761776197632/users",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:37 GMT",
+ `content-type` = "application/json; charset=utf-8", `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "e61b874ad447a0446c91a4c4af875a75",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `cf-cache-status` = "MISS", `cf-request-id` = "06b24d59900000ca4b84173000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ vary = "Accept-Encoding", server = "cloudflare", `cf-ray` = "5f971808ed3aca4b-YUL",
+ `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:13:37 GMT",
+ `content-type` = "application/json; charset=utf-8",
+ `cache-control` = "max-age=0, private, must-revalidate",
+ `x-request-id` = "e61b874ad447a0446c91a4c4af875a75",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `cf-cache-status` = "MISS", `cf-request-id` = "06b24d59900000ca4b84173000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ vary = "Accept-Encoding", server = "cloudflare",
+ `cf-ray` = "5f971808ed3aca4b-YUL", `content-encoding` = "gzip"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = "#HttpOnly_.sleeper.app",
+ flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = "__cfduid", value = "REDACTED"
+ ), row.names = c(
+ NA,
+ -1L
+ ), class = "data.frame"), content = charToRaw("[{\"user_id\":\"202892038360801280\",\"settings\":null,\"metadata\":{\"mention_pn\":\"on\",\"allow_pn\":\"on\"},\"league_id\":\"633501761776197632\",\"is_owner\":true,\"is_bot\":false,\"display_name\":\"solarpool\",\"avatar\":\"a71f864896ba28cbfaa4dc5df5b564e0\"}]"),
+ date = structure(1606598017, class = c("POSIXct", "POSIXt"), tzone = "GMT"), times = c(
+ redirect = 0, namelookup = 4e-05,
+ connect = 4.5e-05, pretransfer = 0.000153, starttransfer = 0.326408,
+ total = 0.326515
+ )
+), class = "response")
diff --git a/tests/testthat/api.sleeper.app/v1/players/nfl.R b/tests/testthat/sleeper/v1/players/nfl.R
similarity index 55%
rename from tests/testthat/api.sleeper.app/v1/players/nfl.R
rename to tests/testthat/sleeper/v1/players/nfl.R
index 1c6c3fd3..9feba2ac 100644
--- a/tests/testthat/api.sleeper.app/v1/players/nfl.R
+++ b/tests/testthat/sleeper/v1/players/nfl.R
@@ -1,29 +1,48 @@
-structure(list(url = "https://api.sleeper.app/v1/players/nfl",
- status_code = 200L, headers = structure(list(date = "Sat, 28 Nov 2020 21:15:01 GMT",
- `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
- `cache-control` = "public, s-maxage=600", `x-request-id` = "b35dda4efac102a44deeb93751ceb14d",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "HIT",
- age = "420", `cf-request-id` = "06b24ea1dc0000ca4b71860000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f971a162a03ca4b-YUL"), class = c("insensitive",
- "list")), all_headers = list(list(status = 200L, version = "HTTP/2",
- headers = structure(list(date = "Sat, 28 Nov 2020 21:15:01 GMT",
- `content-type` = "application/json; charset=utf-8",
- vary = "Accept-Encoding", `cache-control` = "public, s-maxage=600",
- `x-request-id` = "b35dda4efac102a44deeb93751ceb14d",
- `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
- `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
- `content-encoding` = "gzip", `cf-cache-status` = "HIT",
- age = "420", `cf-request-id` = "06b24ea1dc0000ca4b71860000000001",
- `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
- server = "cloudflare", `cf-ray` = "5f971a162a03ca4b-YUL"), class = c("insensitive",
- "list")))), cookies = structure(list(domain = "#HttpOnly_.sleeper.app",
- flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c("POSIXct",
- "POSIXt")), name = "__cfduid", value = "REDACTED"), row.names = c(NA,
- -1L), class = "data.frame"), content = charToRaw("{\"2103\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"booth\",\"depth_chart_position\":null,\"player_id\":\"2103\",\"birth_city\":null,\"fantasy_data_id\":16426,\"years_exp\":1,\"hashtag\":\"#CodyBooth-NFL-FA-60\",\"search_first_name\":\"cody\",\"rotowire_id\":9866,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cody Booth\",\"sportradar_id\":\"4cd4976e-e230-4935-ad3f-c12876a41350\",\"pandascore_id\":null,\"yahoo_id\":27841,\"last_name\":\"Booth\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"codybooth\",\"birth_date\":\"1991-04-22\",\"espn_id\":17054},\"6250\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eurndraus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"6250\",\"birth_city\":null,\"fantasy_data_id\":21183,\"years_exp\":0,\"hashtag\":\"#EurndrausBryant-NFL-FA-0\",\"search_first_name\":\"eurndraus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eurndraus Bryant\",\"sportradar_id\":\"9ff46edb-988f-4c8a-ad56-0502808ca1a6\",\"pandascore_id\":null,\"yahoo_id\":32538,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"eurndrausbryant\",\"birth_date\":null,\"espn_id\":3916426},\"4116\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033922\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1560221750273,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garcia\",\"depth_chart_position\":null,\"player_id\":\"4116\",\"birth_city\":null,\"fantasy_data_id\":18962,\"years_exp\":3,\"hashtag\":\"#AntonioGarcia-NFL-FA-71\",\"search_first_name\":\"antonio\",\"rotowire_id\":11794,\"rotoworld_id\":12247,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Antonio Garcia\",\"sportradar_id\":\"a2b6e1f9-1f06-45e3-b6e9-79ec8490e5ef\",\"pandascore_id\":null,\"yahoo_id\":30198,\"last_name\":\"Garcia\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'6\\\"\",\"search_full_name\":\"antoniogarcia\",\"birth_date\":\"1993-12-10\",\"espn_id\":2972820},\"6177\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035656\",\"first_name\":\"Khalen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603596358561,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"saunders\",\"depth_chart_position\":\"RDT\",\"player_id\":\"6177\",\"birth_city\":null,\"fantasy_data_id\":20934,\"years_exp\":1,\"hashtag\":\"#KhalenSaunders-NFL-KC-99\",\"search_first_name\":\"khalen\",\"rotowire_id\":13746,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1596,\"age\":24,\"full_name\":\"Khalen Saunders\",\"sportradar_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"pandascore_id\":null,\"yahoo_id\":31916,\"last_name\":\"Saunders\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":\"Parkway Central (MO)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khalensaunders\",\"birth_date\":\"1996-08-09\",\"espn_id\":3121634},\"5870\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035710\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606499705662,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"QB\",\"player_id\":\"5870\",\"birth_city\":null,\"fantasy_data_id\":20841,\"years_exp\":1,\"hashtag\":\"#DanielJones-NFL-NYG-8\",\"search_first_name\":\"daniel\",\"rotowire_id\":13491,\"rotoworld_id\":13963,\"active\":true,\"search_rank\":113,\"age\":23,\"full_name\":\"Daniel Jones\",\"sportradar_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"pandascore_id\":null,\"yahoo_id\":31838,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Charlotte Latin (NC)\",\"depth_chart_order\":1,\"stats_id\":879981,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'5\\\"\",\"search_full_name\":\"danieljones\",\"birth_date\":\"1997-05-27\",\"espn_id\":3917792},\"4297\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarnor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4297\",\"birth_city\":null,\"fantasy_data_id\":19145,\"years_exp\":2,\"hashtag\":\"#JarnorJones-NFL-FA-40\",\"search_first_name\":\"jarnor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarnor Jones\",\"sportradar_id\":\"508a854c-2fc5-47e1-9376-0151f45963c1\",\"pandascore_id\":null,\"yahoo_id\":30454,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jarnorjones\",\"birth_date\":\"1994-04-29\",\"espn_id\":3892776},\"1347\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gragg\",\"depth_chart_position\":null,\"player_id\":\"1347\",\"birth_city\":null,\"fantasy_data_id\":14866,\"years_exp\":7,\"hashtag\":\"#ChrisGragg-NFL-FA-87\",\"search_first_name\":\"chris\",\"rotowire_id\":8788,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Gragg\",\"sportradar_id\":\"36521d92-2c2c-4ae4-9b60-9928c3167e30\",\"pandascore_id\":null,\"yahoo_id\":26845,\"last_name\":\"Gragg\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Warren (AR)\",\"depth_chart_order\":null,\"stats_id\":465638,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisgragg\",\"birth_date\":\"1990-06-30\",\"espn_id\":15940},\"5381\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034684\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1565823938203,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"townsend\",\"depth_chart_position\":null,\"player_id\":\"5381\",\"birth_city\":null,\"fantasy_data_id\":19995,\"years_exp\":2,\"hashtag\":\"#JohnnyTownsend-NFL-KC-6\",\"search_first_name\":\"johnny\",\"rotowire_id\":12777,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Johnny Townsend\",\"sportradar_id\":\"2eb0706c-3017-4895-a207-71d6fe9e1549\",\"pandascore_id\":null,\"yahoo_id\":31143,\"last_name\":\"Townsend\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Boone (FL)\",\"depth_chart_order\":null,\"stats_id\":748627,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnnytownsend\",\"birth_date\":\"1995-02-14\",\"espn_id\":3054971},\"1023\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027953\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602381309880,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"pouncey\",\"depth_chart_position\":null,\"player_id\":\"1023\",\"birth_city\":null,\"fantasy_data_id\":13698,\"years_exp\":9,\"hashtag\":\"#MikePouncey-NFL-LAC-53\",\"search_first_name\":\"mike\",\"rotowire_id\":7548,\"rotoworld_id\":6478,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mike Pouncey\",\"sportradar_id\":\"041c36ad-0d7d-4ed1-8157-95092b3027a4\",\"pandascore_id\":null,\"yahoo_id\":24802,\"last_name\":\"Pouncey\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Lakeland (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mikepouncey\",\"birth_date\":\"1989-07-24\",\"espn_id\":13974},\"5300\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034266\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602286504257,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":\"RILB\",\"player_id\":\"5300\",\"birth_city\":null,\"fantasy_data_id\":19926,\"years_exp\":2,\"hashtag\":\"#KennyYoung-NFL-LAR-41\",\"search_first_name\":\"kenny\",\"rotowire_id\":12689,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1345,\"age\":26,\"full_name\":\"Kenny Young\",\"sportradar_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"pandascore_id\":null,\"yahoo_id\":31092,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"John Curtis Christian (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kennyyoung\",\"birth_date\":\"1994-11-15\",\"espn_id\":3134310},\"7328\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Asmar\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605750944030,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bilal\",\"depth_chart_position\":null,\"player_id\":\"7328\",\"birth_city\":null,\"fantasy_data_id\":22320,\"years_exp\":0,\"hashtag\":\"#AsmarBilal-NFL-LAC-57\",\"search_first_name\":\"asmar\",\"rotowire_id\":15017,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1980,\"age\":23,\"full_name\":\"Asmar Bilal\",\"sportradar_id\":\"621e177a-e23d-489e-a747-369eb662f0de\",\"pandascore_id\":null,\"yahoo_id\":32974,\"last_name\":\"Bilal\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Ben Davis (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'2\\\"\",\"search_full_name\":\"asmarbilal\",\"birth_date\":\"1997-04-12\",\"espn_id\":3932422},\"608\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027686\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605832813284,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":null,\"player_id\":\"608\",\"birth_city\":null,\"fantasy_data_id\":11437,\"years_exp\":10,\"hashtag\":\"#CoreyPeters-NFL-ARI-98\",\"search_first_name\":\"corey\",\"rotowire_id\":6682,\"rotoworld_id\":5886,\"active\":true,\"search_rank\":613,\"age\":32,\"full_name\":\"Corey Peters\",\"sportradar_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"pandascore_id\":null,\"yahoo_id\":24058,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Central (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'3\\\"\",\"search_full_name\":\"coreypeters\",\"birth_date\":\"1988-06-08\",\"espn_id\":13292},\"3925\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lee\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hightower\",\"depth_chart_position\":null,\"player_id\":\"3925\",\"birth_city\":null,\"fantasy_data_id\":18754,\"years_exp\":3,\"hashtag\":\"#LeeHightower-NFL-FA-39\",\"search_first_name\":\"lee\",\"rotowire_id\":11626,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lee Hightower\",\"sportradar_id\":\"2ac6848d-1482-4a1b-b4ee-886ccaef270d\",\"pandascore_id\":null,\"yahoo_id\":30053,\"last_name\":\"Hightower\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'2\\\"\",\"search_full_name\":\"leehightower\",\"birth_date\":\"1993-07-28\",\"espn_id\":2573308},\"3396\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032959\",\"first_name\":\"Charone\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588021862005,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peake\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3396\",\"birth_city\":null,\"fantasy_data_id\":18157,\"years_exp\":4,\"hashtag\":\"#CharonePeake-NFL-FA-0\",\"search_first_name\":\"charone\",\"rotowire_id\":11001,\"rotoworld_id\":11410,\"active\":true,\"search_rank\":1042,\"age\":27,\"full_name\":\"Charone Peake\",\"sportradar_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"pandascore_id\":null,\"yahoo_id\":29475,\"last_name\":\"Peake\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":602104,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"charonepeake\",\"birth_date\":\"1992-10-16\",\"espn_id\":2576498},\"3956\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fisherjr\",\"depth_chart_position\":null,\"player_id\":\"3956\",\"birth_city\":null,\"fantasy_data_id\":18789,\"years_exp\":0,\"hashtag\":\"#KelvinFisherJr-NFL-FA-8\",\"search_first_name\":\"kelvin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kelvin Fisher Jr\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fisher Jr\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kelvinfisherjr\",\"birth_date\":null,\"espn_id\":2574518},\"6343\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035077\",\"first_name\":\"Manny\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1588023962396,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilkins\",\"depth_chart_position\":null,\"player_id\":\"6343\",\"birth_city\":null,\"fantasy_data_id\":21260,\"years_exp\":1,\"hashtag\":\"#MannyWilkins-NFL-FA-0\",\"search_first_name\":\"manny\",\"rotowire_id\":13968,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Manny Wilkins\",\"sportradar_id\":\"941662f4-da41-48cf-a663-cfbd011491bb\",\"pandascore_id\":null,\"yahoo_id\":32282,\"last_name\":\"Wilkins\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820627,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mannywilkins\",\"birth_date\":\"1995-11-05\",\"espn_id\":3128814},\"3199\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032765\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606513528056,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3199\",\"birth_city\":null,\"fantasy_data_id\":17960,\"years_exp\":4,\"hashtag\":\"#MichaelThomas-NFL-NO-13\",\"search_first_name\":\"michael\",\"rotowire_id\":10759,\"rotoworld_id\":11222,\"active\":true,\"search_rank\":9,\"age\":27,\"full_name\":\"Michael Thomas\",\"sportradar_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"pandascore_id\":null,\"yahoo_id\":29281,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Woodland Hills Taft (CA)\",\"depth_chart_order\":1,\"stats_id\":653699,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaelthomas\",\"birth_date\":\"1993-03-03\",\"espn_id\":2976316},\"1850\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tajh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":null,\"player_id\":\"1850\",\"birth_city\":null,\"fantasy_data_id\":16058,\"years_exp\":1,\"hashtag\":\"#TajhBoyd-NFL-FA-3\",\"search_first_name\":\"tajh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tajh Boyd\",\"sportradar_id\":\"75404d15-88d6-43e0-9258-27112b070a43\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":506599,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tajhboyd\",\"birth_date\":\"1990-09-25\",\"espn_id\":16812},\"6487\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035119\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1598920530072,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scarff\",\"depth_chart_position\":\"TE\",\"player_id\":\"6487\",\"birth_city\":null,\"fantasy_data_id\":21275,\"years_exp\":1,\"hashtag\":\"#CharlesScarff-NFL-FA-0\",\"search_first_name\":\"charles\",\"rotowire_id\":14120,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Charles Scarff\",\"sportradar_id\":\"0c49b066-56ef-42dd-b9f1-1e956cced841\",\"pandascore_id\":null,\"yahoo_id\":32314,\"last_name\":\"Scarff\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":838249,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'5\\\"\",\"search_full_name\":\"charlesscarff\",\"birth_date\":\"1996-05-03\",\"espn_id\":3127376},\"2355\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032195\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603405248727,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"darby\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2355\",\"birth_city\":null,\"fantasy_data_id\":16811,\"years_exp\":5,\"hashtag\":\"#RonaldDarby-NFL-WAS-23\",\"search_first_name\":\"ronald\",\"rotowire_id\":10408,\"rotoworld_id\":10375,\"active\":true,\"search_rank\":872,\"age\":26,\"full_name\":\"Ronald Darby\",\"sportradar_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"pandascore_id\":null,\"yahoo_id\":28438,\"last_name\":\"Darby\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Potomac (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ronalddarby\",\"birth_date\":\"1994-01-02\",\"espn_id\":2969920},\"6818\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606530329668,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"madubuike\",\"depth_chart_position\":null,\"player_id\":\"6818\",\"birth_city\":null,\"fantasy_data_id\":21900,\"years_exp\":0,\"hashtag\":\"#JustinMadubuike-NFL-BAL-92\",\"search_first_name\":\"justin\",\"rotowire_id\":14380,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1824,\"age\":23,\"full_name\":\"Justin Madubuike\",\"sportradar_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"pandascore_id\":null,\"yahoo_id\":32741,\"last_name\":\"Madubuike\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"McKinney North (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinmadubuike\",\"birth_date\":\"1997-11-17\",\"espn_id\":4035245},\"257\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Husain\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abdullah\",\"depth_chart_position\":null,\"player_id\":\"257\",\"birth_city\":null,\"fantasy_data_id\":6411,\"years_exp\":12,\"hashtag\":\"#HusainAbdullah-NFL-FA-39\",\"search_first_name\":\"husain\",\"rotowire_id\":6297,\"rotoworld_id\":5026,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Husain Abdullah\",\"sportradar_id\":\"1c4cf2d1-5bcf-457a-9f5b-34e4949edfcd\",\"pandascore_id\":null,\"yahoo_id\":9063,\"last_name\":\"Abdullah\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Pomona (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"husainabdullah\",\"birth_date\":\"1985-07-27\",\"espn_id\":11910},\"6898\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599336357354,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gordon\",\"depth_chart_position\":null,\"player_id\":\"6898\",\"birth_city\":null,\"fantasy_data_id\":21816,\"years_exp\":0,\"hashtag\":\"#AnthonyGordon-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":14431,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1788,\"age\":24,\"full_name\":\"Anthony Gordon\",\"sportradar_id\":\"71a2444a-a6b1-4e62-8974-2d858e2c5b73\",\"pandascore_id\":null,\"yahoo_id\":33266,\"last_name\":\"Gordon\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'2\\\"\",\"search_full_name\":\"anthonygordon\",\"birth_date\":\"1996-08-28\",\"espn_id\":4055171},\"2817\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rodriguez\",\"depth_chart_position\":null,\"player_id\":\"2817\",\"birth_city\":null,\"fantasy_data_id\":17285,\"years_exp\":0,\"hashtag\":\"#DanielRodriguez-NFL-FA-3\",\"search_first_name\":\"daniel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Daniel Rodriguez\",\"sportradar_id\":\"fa1ac661-9b71-4dbd-8321-f3c6a7ec79e6\",\"pandascore_id\":null,\"yahoo_id\":29089,\"last_name\":\"Rodriguez\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":700055,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'8\\\"\",\"search_full_name\":\"danielrodriguez\",\"birth_date\":\"1988-01-08\",\"espn_id\":2983134},\"1952\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031087\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554248138033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hal\",\"depth_chart_position\":null,\"player_id\":\"1952\",\"birth_city\":null,\"fantasy_data_id\":16203,\"years_exp\":6,\"hashtag\":\"#AndreHal-NFL-FA-29\",\"search_first_name\":\"andre\",\"rotowire_id\":9676,\"rotoworld_id\":9628,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Andre Hal\",\"sportradar_id\":\"513caa63-d30d-4cde-b605-8cf825a4ef27\",\"pandascore_id\":null,\"yahoo_id\":27744,\"last_name\":\"Hal\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Port Allen (LA)\",\"depth_chart_order\":null,\"stats_id\":555644,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"andrehal\",\"birth_date\":\"1992-05-30\",\"espn_id\":17467},\"3210\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033098\",\"first_name\":\"Cardale\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1568835621332,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"3210\",\"birth_city\":null,\"fantasy_data_id\":17971,\"years_exp\":4,\"hashtag\":\"#CardaleJones-NFL-FA-10\",\"search_first_name\":\"cardale\",\"rotowire_id\":11007,\"rotoworld_id\":10325,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cardale Jones\",\"sportradar_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"pandascore_id\":null,\"yahoo_id\":29373,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653682,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cardalejones\",\"birth_date\":\"1992-09-29\",\"espn_id\":2976299},\"4148\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033463\",\"first_name\":\"Carl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606195850513,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawson\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4148\",\"birth_city\":null,\"fantasy_data_id\":18994,\"years_exp\":3,\"hashtag\":\"#CarlLawson-NFL-CIN-58\",\"search_first_name\":\"carl\",\"rotowire_id\":11926,\"rotoworld_id\":12240,\"active\":true,\"search_rank\":1171,\"age\":25,\"full_name\":\"Carl Lawson\",\"sportradar_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"pandascore_id\":null,\"yahoo_id\":30229,\"last_name\":\"Lawson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Milton (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"carllawson\",\"birth_date\":\"1995-06-29\",\"espn_id\":3051911},\"5781\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034867\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599411960135,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5781\",\"birth_city\":null,\"fantasy_data_id\":20684,\"years_exp\":2,\"hashtag\":\"#MalikTurner-NFL-DAL-17\",\"search_first_name\":\"malik\",\"rotowire_id\":13378,\"rotoworld_id\":13906,\"active\":true,\"search_rank\":363,\"age\":24,\"full_name\":\"Malik Turner\",\"sportradar_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"pandascore_id\":null,\"yahoo_id\":31777,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Sacred Heart-Griffin (IL)\",\"depth_chart_order\":2,\"stats_id\":830686,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malikturner\",\"birth_date\":\"1996-01-30\",\"espn_id\":3115928},\"4888\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"helfrich\",\"depth_chart_position\":null,\"player_id\":\"4888\",\"birth_city\":null,\"fantasy_data_id\":19786,\"years_exp\":0,\"hashtag\":\"#MarkHelfrich-NFL-FA-0\",\"search_first_name\":\"mark\",\"rotowire_id\":null,\"rotoworld_id\":13066,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mark Helfrich\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Helfrich\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"markhelfrich\",\"birth_date\":null,\"espn_id\":null},\"6992\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1603405248728,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"warren\",\"depth_chart_position\":null,\"player_id\":\"6992\",\"birth_city\":null,\"fantasy_data_id\":21793,\"years_exp\":0,\"hashtag\":\"#MichaelWarren-NFL-CAR-38\",\"search_first_name\":\"michael\",\"rotowire_id\":14496,\"rotoworld_id\":null,\"active\":true,\"search_rank\":356,\"age\":21,\"full_name\":\"Michael Warren\",\"sportradar_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"pandascore_id\":null,\"yahoo_id\":32972,\"last_name\":\"Warren\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Central Catholic (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michaelwarren\",\"birth_date\":\"1998-11-12\",\"espn_id\":4239083},\"1746\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevita\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"finau\",\"depth_chart_position\":null,\"player_id\":\"1746\",\"birth_city\":null,\"fantasy_data_id\":15736,\"years_exp\":1,\"hashtag\":\"#TevitaFinau-NFL-FA-92\",\"search_first_name\":\"tevita\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Tevita Finau\",\"sportradar_id\":\"d65f9afe-1001-4c56-9b0e-957250f79316\",\"pandascore_id\":null,\"yahoo_id\":26139,\"last_name\":\"Finau\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tevitafinau\",\"birth_date\":\"1986-01-13\",\"espn_id\":15704},\"3124\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"horton\",\"depth_chart_position\":null,\"player_id\":\"3124\",\"birth_city\":null,\"fantasy_data_id\":17878,\"years_exp\":0,\"hashtag\":\"#RayHorton-NFL-FA-0\",\"search_first_name\":\"ray\",\"rotowire_id\":null,\"rotoworld_id\":9300,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ray Horton\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Horton\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rayhorton\",\"birth_date\":null,\"espn_id\":null},\"2041\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Torrence\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"2041\",\"birth_city\":null,\"fantasy_data_id\":16333,\"years_exp\":2,\"hashtag\":\"#TorrenceAllen-NFL-FA-83\",\"search_first_name\":\"torrence\",\"rotowire_id\":10061,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Torrence Allen\",\"sportradar_id\":\"ec251689-808b-4f35-b1f7-743d4a37722a\",\"pandascore_id\":null,\"yahoo_id\":27844,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":794253,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"torrenceallen\",\"birth_date\":\"1991-03-31\",\"espn_id\":16962},\"2286\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"furney\",\"depth_chart_position\":null,\"player_id\":\"2286\",\"birth_city\":null,\"fantasy_data_id\":16719,\"years_exp\":1,\"hashtag\":\"#AndrewFurney-NFL-FA-8\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Andrew Furney\",\"sportradar_id\":\"4b482230-621c-4b7f-8d5d-cf50da82e7c4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Furney\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":560191,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"andrewfurney\",\"birth_date\":\"1991-06-23\",\"espn_id\":17492},\"4211\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033961\",\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1544580937621,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"donahue\",\"depth_chart_position\":null,\"player_id\":\"4211\",\"birth_city\":null,\"fantasy_data_id\":19057,\"years_exp\":3,\"hashtag\":\"#DylanDonahue-NFL-FA-49\",\"search_first_name\":\"dylan\",\"rotowire_id\":11912,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dylan Donahue\",\"sportradar_id\":\"139d8533-cbd7-4a41-9567-f1ce1c641311\",\"pandascore_id\":null,\"yahoo_id\":30294,\"last_name\":\"Donahue\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dylandonahue\",\"birth_date\":\"1992-08-20\",\"espn_id\":2584628},\"WAS\":{\"team\":\"WAS\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"WAS\",\"last_name\":\"Football Team\",\"injury_status\":null,\"first_name\":\"Washington\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"1294\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chapman\",\"depth_chart_position\":null,\"player_id\":\"1294\",\"birth_city\":null,\"fantasy_data_id\":14760,\"years_exp\":4,\"hashtag\":\"#JoshChapman-NFL-FA-96\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Chapman\",\"sportradar_id\":\"2f0190fc-16ce-486c-bcb5-f752ed345275\",\"pandascore_id\":null,\"yahoo_id\":25846,\"last_name\":\"Chapman\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshchapman\",\"birth_date\":\"1989-06-10\",\"espn_id\":15039},\"2050\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031277\",\"first_name\":\"Branden\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535844652782,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oliver\",\"depth_chart_position\":null,\"player_id\":\"2050\",\"birth_city\":null,\"fantasy_data_id\":16345,\"years_exp\":6,\"hashtag\":\"#BrandenOliver-NFL-FA-40\",\"search_first_name\":\"branden\",\"rotowire_id\":9550,\"rotoworld_id\":10198,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Branden Oliver\",\"sportradar_id\":\"7dac43ce-3a74-4033-b63f-bf9171a24a55\",\"pandascore_id\":null,\"yahoo_id\":28272,\"last_name\":\"Oliver\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Miami Southridge (FL)\",\"depth_chart_order\":null,\"stats_id\":506492,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'8\\\"\",\"search_full_name\":\"brandenoliver\",\"birth_date\":\"1991-05-07\",\"espn_id\":17452},\"256\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rian\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lindell\",\"depth_chart_position\":null,\"player_id\":\"256\",\"birth_city\":null,\"fantasy_data_id\":6410,\"years_exp\":14,\"hashtag\":\"#RianLindell-NFL-FA-4\",\"search_first_name\":\"rian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Rian Lindell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lindell\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rianlindell\",\"birth_date\":\"1977-01-20\",\"espn_id\":null},\"1216\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029530\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1571790322307,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bethel\",\"depth_chart_position\":\"FS\",\"player_id\":\"1216\",\"birth_city\":null,\"fantasy_data_id\":14469,\"years_exp\":8,\"hashtag\":\"#JustinBethel-NFL-NE-29\",\"search_first_name\":\"justin\",\"rotowire_id\":8306,\"rotoworld_id\":7622,\"active\":true,\"search_rank\":688,\"age\":30,\"full_name\":\"Justin Bethel\",\"sportradar_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"pandascore_id\":null,\"yahoo_id\":25887,\"last_name\":\"Bethel\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Presbyterian\",\"high_school\":\"Blythewood (SC)\",\"depth_chart_order\":2,\"stats_id\":461022,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justinbethel\",\"birth_date\":\"1990-06-17\",\"espn_id\":15089},\"3126\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robiskie\",\"depth_chart_position\":null,\"player_id\":\"3126\",\"birth_city\":null,\"fantasy_data_id\":17880,\"years_exp\":0,\"hashtag\":\"#TerryRobiskie-NFL-FA-0\",\"search_first_name\":\"terry\",\"rotowire_id\":null,\"rotoworld_id\":11241,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Terry Robiskie\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Robiskie\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"terryrobiskie\",\"birth_date\":null,\"espn_id\":null},\"1154\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"broyles\",\"depth_chart_position\":null,\"player_id\":\"1154\",\"birth_city\":null,\"fantasy_data_id\":14203,\"years_exp\":4,\"hashtag\":\"#RyanBroyles-NFL-FA-84\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ryan Broyles\",\"sportradar_id\":\"a84c6342-3333-4af7-bf29-ea954e156835\",\"pandascore_id\":null,\"yahoo_id\":25764,\"last_name\":\"Broyles\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":381163,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ryanbroyles\",\"birth_date\":\"1988-04-09\",\"espn_id\":14919},\"4981\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034837\",\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606512028026,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ridley\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4981\",\"birth_city\":null,\"fantasy_data_id\":19802,\"years_exp\":2,\"hashtag\":\"#CalvinRidley-NFL-ATL-18\",\"search_first_name\":\"calvin\",\"rotowire_id\":12616,\"rotoworld_id\":13137,\"active\":true,\"search_rank\":37,\"age\":25,\"full_name\":\"Calvin Ridley\",\"sportradar_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"pandascore_id\":null,\"yahoo_id\":30996,\"last_name\":\"Ridley\",\"metadata\":{\"injury_override_regular_2020_10\":\"Out\"},\"college\":\"Alabama\",\"high_school\":\"Monarch (FL)\",\"depth_chart_order\":1,\"stats_id\":884013,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"calvinridley\",\"birth_date\":\"1994-12-20\",\"espn_id\":3925357},\"4440\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534639807758,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyettejr\",\"depth_chart_position\":null,\"player_id\":\"4440\",\"birth_city\":null,\"fantasy_data_id\":19301,\"years_exp\":3,\"hashtag\":\"#PaulBoyetteJr-NFL-FA-91\",\"search_first_name\":\"paul\",\"rotowire_id\":12047,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Paul Boyette Jr.\",\"sportradar_id\":\"4e200230-c115-46ac-a560-da77f9001567\",\"pandascore_id\":null,\"yahoo_id\":30624,\"last_name\":\"Boyette Jr.\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"paulboyettejr\",\"birth_date\":\"1993-12-16\",\"espn_id\":2971696},\"4614\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033773\",\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1537319403953,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccarron\",\"depth_chart_position\":null,\"player_id\":\"4614\",\"birth_city\":null,\"fantasy_data_id\":19504,\"years_exp\":3,\"hashtag\":\"#RileyMcCarron-NFL-FA-17\",\"search_first_name\":\"riley\",\"rotowire_id\":12307,\"rotoworld_id\":12896,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Riley McCarron\",\"sportradar_id\":\"ab9cf0fc-f4e4-4d18-8132-97e518eb14f3\",\"pandascore_id\":null,\"yahoo_id\":30808,\"last_name\":\"McCarron\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":702925,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"rileymccarron\",\"birth_date\":\"1993-06-16\",\"espn_id\":2988624},\"2782\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Niko\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2782\",\"birth_city\":null,\"fantasy_data_id\":17250,\"years_exp\":0,\"hashtag\":\"#NikoDavis-NFL-FA-67\",\"search_first_name\":\"niko\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Niko Davis\",\"sportradar_id\":\"d589f707-c40d-44b2-8c44-bf78e2d222bc\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nikodavis\",\"birth_date\":\"1990-06-18\",\"espn_id\":2575185},\"4237\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033586\",\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1531878301459,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"4237\",\"birth_city\":null,\"fantasy_data_id\":19083,\"years_exp\":3,\"hashtag\":\"#MarquezWhite-NFL-FA-39\",\"search_first_name\":\"marquez\",\"rotowire_id\":12035,\"rotoworld_id\":12418,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marquez White\",\"sportradar_id\":\"db4eadbd-ef43-444c-9e33-1ee781dc9965\",\"pandascore_id\":null,\"yahoo_id\":30329,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742157,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marquezwhite\",\"birth_date\":\"1994-10-29\",\"espn_id\":3045378},\"3573\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032593\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567195556672,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilds\",\"depth_chart_position\":null,\"player_id\":\"3573\",\"birth_city\":null,\"fantasy_data_id\":18349,\"years_exp\":4,\"hashtag\":\"#BrandonWilds-NFL-FA-35\",\"search_first_name\":\"brandon\",\"rotowire_id\":10898,\"rotoworld_id\":11682,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brandon Wilds\",\"sportradar_id\":\"abeef681-4be7-4ff3-9076-c72ec5a1b2e4\",\"pandascore_id\":null,\"yahoo_id\":29661,\"last_name\":\"Wilds\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604939,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonwilds\",\"birth_date\":\"1993-07-22\",\"espn_id\":2577692},\"1191\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1524271501245,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"1191\",\"birth_city\":null,\"fantasy_data_id\":14370,\"years_exp\":8,\"hashtag\":\"#CoreyWhite-NFL-FA-38\",\"search_first_name\":\"corey\",\"rotowire_id\":8351,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Corey White\",\"sportradar_id\":\"ccf1d49a-deda-4254-abd2-1ee79eb34c13\",\"pandascore_id\":null,\"yahoo_id\":25872,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Dunwoody (GA)\",\"depth_chart_order\":null,\"stats_id\":459492,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coreywhite\",\"birth_date\":\"1990-05-09\",\"espn_id\":15086},\"1399\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schum\",\"depth_chart_position\":null,\"player_id\":\"1399\",\"birth_city\":null,\"fantasy_data_id\":14941,\"years_exp\":7,\"hashtag\":\"#JacobSchum-NFL-FA-10\",\"search_first_name\":\"jacob\",\"rotowire_id\":10142,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jacob Schum\",\"sportradar_id\":\"cdfb58eb-2920-47d4-9c24-df5de536450e\",\"pandascore_id\":null,\"yahoo_id\":26613,\"last_name\":\"Schum\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Frontier (NY)\",\"depth_chart_order\":null,\"stats_id\":544154,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jacobschum\",\"birth_date\":\"1989-01-11\",\"espn_id\":15774},\"1080\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534082406005,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"1080\",\"birth_city\":null,\"fantasy_data_id\":13896,\"years_exp\":8,\"hashtag\":\"#JohnHughes-NFL-FA-91\",\"search_first_name\":\"john\",\"rotowire_id\":8221,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"John Hughes\",\"sportradar_id\":\"51e6e64c-7150-4588-847a-44b9ce7e0903\",\"pandascore_id\":null,\"yahoo_id\":25797,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Lincoln (OH)\",\"depth_chart_order\":null,\"stats_id\":382267,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnhughes\",\"birth_date\":\"1989-04-27\",\"espn_id\":14954},\"3756\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1508894701681,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"disalvo\",\"depth_chart_position\":null,\"player_id\":\"3756\",\"birth_city\":null,\"fantasy_data_id\":18568,\"years_exp\":4,\"hashtag\":\"#RyanDiSalvo-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":11584,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ryan DiSalvo\",\"sportradar_id\":\"560dbfe1-923d-49ef-a5dd-a24b2f6b1f5d\",\"pandascore_id\":null,\"yahoo_id\":29826,\"last_name\":\"DiSalvo\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryandisalvo\",\"birth_date\":\"1994-01-20\",\"espn_id\":2981193},\"2874\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mackey\",\"depth_chart_position\":null,\"player_id\":\"2874\",\"birth_city\":null,\"fantasy_data_id\":17342,\"years_exp\":1,\"hashtag\":\"#LeonMackey-NFL-FA-78\",\"search_first_name\":\"leon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Leon Mackey\",\"sportradar_id\":\"e4192fdc-8e9d-43d1-91f0-0ca77f673920\",\"pandascore_id\":null,\"yahoo_id\":28367,\"last_name\":\"Mackey\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"leonmackey\",\"birth_date\":\"1989-02-28\",\"espn_id\":2577644},\"2383\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032059\",\"first_name\":\"P.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600382117194,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2383\",\"birth_city\":null,\"fantasy_data_id\":16839,\"years_exp\":5,\"hashtag\":\"#PJWilliams-NFL-NO-26\",\"search_first_name\":\"pj\",\"rotowire_id\":10409,\"rotoworld_id\":10449,\"active\":true,\"search_rank\":878,\"age\":27,\"full_name\":\"P.J. Williams\",\"sportradar_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"pandascore_id\":null,\"yahoo_id\":28466,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Vanguard (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"pjwilliams\",\"birth_date\":\"1993-06-01\",\"espn_id\":2977661},\"7224\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1606345803279,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":\"SS\",\"player_id\":\"7224\",\"birth_city\":null,\"fantasy_data_id\":22226,\"years_exp\":0,\"hashtag\":\"#SamFranklin-NFL-CAR-42\",\"search_first_name\":\"sam\",\"rotowire_id\":14931,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1952,\"age\":24,\"full_name\":\"Sam Franklin\",\"sportradar_id\":\"3b1bb0da-607a-4502-8855-8ab5095334da\",\"pandascore_id\":null,\"yahoo_id\":33137,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Citrus (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"samfranklin\",\"birth_date\":\"1996-02-02\",\"espn_id\":4044133},\"6374\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035484\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1568813121831,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"belcher\",\"depth_chart_position\":\"TE\",\"player_id\":\"6374\",\"birth_city\":null,\"fantasy_data_id\":21319,\"years_exp\":1,\"hashtag\":\"#DrewBelcher-NFL-FA-82\",\"search_first_name\":\"drew\",\"rotowire_id\":14041,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Drew Belcher\",\"sportradar_id\":\"7467134f-8eb3-4fde-ac64-e2fc9f9789db\",\"pandascore_id\":null,\"yahoo_id\":32153,\"last_name\":\"Belcher\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":830271,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"drewbelcher\",\"birth_date\":\"1996-04-18\",\"espn_id\":3120540},\"2025\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030669\",\"first_name\":\"Albert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596641112345,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2025\",\"birth_city\":null,\"fantasy_data_id\":16308,\"years_exp\":6,\"hashtag\":\"#AlbertWilson-NFL-MIA-15\",\"search_first_name\":\"albert\",\"rotowire_id\":9491,\"rotoworld_id\":9572,\"active\":true,\"search_rank\":804,\"age\":28,\"full_name\":\"Albert Wilson\",\"sportradar_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"pandascore_id\":null,\"yahoo_id\":28046,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"Port St. Lucie (FL)\",\"depth_chart_order\":3,\"stats_id\":556955,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"albertwilson\",\"birth_date\":\"1992-07-12\",\"espn_id\":17051},\"6160\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035016\",\"first_name\":\"Josiah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599605455494,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tauaefa\",\"depth_chart_position\":\"RILB\",\"player_id\":\"6160\",\"birth_city\":null,\"fantasy_data_id\":20958,\"years_exp\":1,\"hashtag\":\"#JosiahTauaefa-NFL-FA-0\",\"search_first_name\":\"josiah\",\"rotowire_id\":13487,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1604,\"age\":23,\"full_name\":\"Josiah Tauaefa\",\"sportradar_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"pandascore_id\":null,\"yahoo_id\":32241,\"last_name\":\"Tauaefa\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":881829,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"josiahtauaefa\",\"birth_date\":\"1997-03-05\",\"espn_id\":3914595},\"1707\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lanning\",\"depth_chart_position\":null,\"player_id\":\"1707\",\"birth_city\":null,\"fantasy_data_id\":15603,\"years_exp\":9,\"hashtag\":\"#SpencerLanning-NFL-FA-4\",\"search_first_name\":\"spencer\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Spencer Lanning\",\"sportradar_id\":\"4ca3e1bb-6604-41df-b86f-4b07c758421c\",\"pandascore_id\":null,\"yahoo_id\":25150,\"last_name\":\"Lanning\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"York Comprehensive (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"spencerlanning\",\"birth_date\":\"1988-05-21\",\"espn_id\":14342},\"3114\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dean\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spanos\",\"depth_chart_position\":null,\"player_id\":\"3114\",\"birth_city\":null,\"fantasy_data_id\":17867,\"years_exp\":0,\"hashtag\":\"#DeanSpanos-NFL-FA-0\",\"search_first_name\":\"dean\",\"rotowire_id\":null,\"rotoworld_id\":9467,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dean Spanos\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Spanos\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"deanspanos\",\"birth_date\":null,\"espn_id\":null},\"199\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0023177\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1569283535171,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"condo\",\"depth_chart_position\":null,\"player_id\":\"199\",\"birth_city\":null,\"fantasy_data_id\":5083,\"years_exp\":15,\"hashtag\":\"#JonCondo-NFL-FA-59\",\"search_first_name\":\"jon\",\"rotowire_id\":7122,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Jon Condo\",\"sportradar_id\":\"9c6d7765-03dd-4266-aeaa-926e5a85235f\",\"pandascore_id\":null,\"yahoo_id\":7455,\"last_name\":\"Condo\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Philipsburg-Osceola (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joncondo\",\"birth_date\":\"1981-08-26\",\"espn_id\":9276},\"2333\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032234\",\"first_name\":\"Laken\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567100438861,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tomlinson\",\"depth_chart_position\":\"LG\",\"player_id\":\"2333\",\"birth_city\":null,\"fantasy_data_id\":16789,\"years_exp\":5,\"hashtag\":\"#LakenTomlinson-NFL-SF-75\",\"search_first_name\":\"laken\",\"rotowire_id\":10269,\"rotoworld_id\":10454,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Laken Tomlinson\",\"sportradar_id\":\"d0b7699f-5e18-4631-813d-2f709ee4b281\",\"pandascore_id\":null,\"yahoo_id\":28416,\"last_name\":\"Tomlinson\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Lane Technical (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lakentomlinson\",\"birth_date\":\"1992-02-09\",\"espn_id\":2512477},\"929\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028069\",\"first_name\":\"Davon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1539104710413,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"house\",\"depth_chart_position\":null,\"player_id\":\"929\",\"birth_city\":null,\"fantasy_data_id\":13236,\"years_exp\":9,\"hashtag\":\"#DavonHouse-NFL-FA-31\",\"search_first_name\":\"davon\",\"rotowire_id\":7518,\"rotoworld_id\":6574,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Davon House\",\"sportradar_id\":\"bb6c7928-54f1-43bd-bf14-f2645644dda9\",\"pandascore_id\":null,\"yahoo_id\":24918,\"last_name\":\"House\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":\"Palmdale (CA)\",\"depth_chart_order\":null,\"stats_id\":410959,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davonhouse\",\"birth_date\":\"1989-07-10\",\"espn_id\":14157},\"4218\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033292\",\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605471012351,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4218\",\"birth_city\":null,\"fantasy_data_id\":19064,\"years_exp\":3,\"hashtag\":\"#TrentTaylor-NFL-SF-15\",\"search_first_name\":\"trent\",\"rotowire_id\":11881,\"rotoworld_id\":12305,\"active\":true,\"search_rank\":206,\"age\":26,\"full_name\":\"Trent Taylor\",\"sportradar_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"pandascore_id\":null,\"yahoo_id\":30290,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Evangel Christian Academy (LA)\",\"depth_chart_order\":2,\"stats_id\":733849,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'8\\\"\",\"search_full_name\":\"trenttaylor\",\"birth_date\":\"1994-04-30\",\"espn_id\":3040569},\"7515\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sergio\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606258855540,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"castillo\",\"depth_chart_position\":\"K\",\"player_id\":\"7515\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":6,\"hashtag\":\"#SergioCastillo-NFL-NYJ-6\",\"search_first_name\":\"sergio\",\"rotowire_id\":9844,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":30,\"full_name\":\"Sergio Castillo\",\"sportradar_id\":\"1f2c7574-f56a-47b3-bd75-5dd0d5ff8d93\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Castillo\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"La Joya (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sergiocastillo\",\"birth_date\":\"1990-11-01\",\"espn_id\":null},\"2446\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031585\",\"first_name\":\"MyCole\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606522827688,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pruitt\",\"depth_chart_position\":\"TE\",\"player_id\":\"2446\",\"birth_city\":null,\"fantasy_data_id\":16903,\"years_exp\":5,\"hashtag\":\"#MyColePruitt-NFL-TEN-85\",\"search_first_name\":\"mycole\",\"rotowire_id\":10251,\"rotoworld_id\":null,\"active\":true,\"search_rank\":444,\"age\":28,\"full_name\":\"MyCole Pruitt\",\"sportradar_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"pandascore_id\":null,\"yahoo_id\":28531,\"last_name\":\"Pruitt\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Southern Illinois\",\"high_school\":\"Kirkwood (MO)\",\"depth_chart_order\":4,\"stats_id\":552586,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mycolepruitt\",\"birth_date\":\"1992-03-24\",\"espn_id\":2508256},\"6333\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035133\",\"first_name\":\"Keisean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604104540968,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nixon\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6333\",\"birth_city\":null,\"fantasy_data_id\":21239,\"years_exp\":1,\"hashtag\":\"#KeiseanNixon-NFL-LV-22\",\"search_first_name\":\"keisean\",\"rotowire_id\":13701,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1701,\"age\":23,\"full_name\":\"Keisean Nixon\",\"sportradar_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"pandascore_id\":null,\"yahoo_id\":32348,\"last_name\":\"Nixon\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Salesian (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keiseannixon\",\"birth_date\":\"1997-06-22\",\"espn_id\":4259493},\"2653\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032089\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1571521825824,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":null,\"player_id\":\"2653\",\"birth_city\":null,\"fantasy_data_id\":17121,\"years_exp\":5,\"hashtag\":\"#BrianParker-NFL-FA-89\",\"search_first_name\":\"brian\",\"rotowire_id\":10661,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brian Parker\",\"sportradar_id\":\"c5606f69-f550-4b4a-b61a-f1f71142a32f\",\"pandascore_id\":null,\"yahoo_id\":28688,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"Albany, N.Y.\",\"high_school\":\"McQuaid Jesuit (NY)\",\"depth_chart_order\":null,\"stats_id\":556849,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brianparker\",\"birth_date\":\"1992-05-30\",\"espn_id\":2508328},\"1369\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030112\",\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567194957370,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bohanon\",\"depth_chart_position\":null,\"player_id\":\"1369\",\"birth_city\":null,\"fantasy_data_id\":14891,\"years_exp\":7,\"hashtag\":\"#TommyBohanon-NFL-FA-48\",\"search_first_name\":\"tommy\",\"rotowire_id\":8987,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tommy Bohanon\",\"sportradar_id\":\"97c96dce-9b33-4d0e-ba01-5eb629192d19\",\"pandascore_id\":null,\"yahoo_id\":26838,\"last_name\":\"Bohanon\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"North Fort Myers (FL)\",\"depth_chart_order\":null,\"stats_id\":496208,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tommybohanon\",\"birth_date\":\"1990-09-10\",\"espn_id\":15973},\"6858\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587836142898,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":\"DT\",\"player_id\":\"6858\",\"birth_city\":null,\"fantasy_data_id\":21894,\"years_exp\":0,\"hashtag\":\"#JamesLynch-NFL-MIN-92\",\"search_first_name\":\"james\",\"rotowire_id\":14499,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1818,\"age\":21,\"full_name\":\"James Lynch\",\"sportradar_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"pandascore_id\":null,\"yahoo_id\":32800,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Round Rock (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jameslynch\",\"birth_date\":\"1999-01-20\",\"espn_id\":4259181},\"5527\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034224\",\"first_name\":\"Ramon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richards\",\"depth_chart_position\":null,\"player_id\":\"5527\",\"birth_city\":null,\"fantasy_data_id\":20573,\"years_exp\":2,\"hashtag\":\"#RamonRichards-NFL-FA-47\",\"search_first_name\":\"ramon\",\"rotowire_id\":13146,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ramon Richards\",\"sportradar_id\":\"cc5a9d4b-7838-470d-8c36-182e97ff161d\",\"pandascore_id\":null,\"yahoo_id\":31448,\"last_name\":\"Richards\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ramonrichards\",\"birth_date\":\"1995-11-29\",\"espn_id\":3122442},\"4720\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033845\",\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1573603256747,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hatfield\",\"depth_chart_position\":null,\"player_id\":\"4720\",\"birth_city\":null,\"fantasy_data_id\":19628,\"years_exp\":3,\"hashtag\":\"#DominiqueHatfield-NFL-FA-0\",\"search_first_name\":\"dominique\",\"rotowire_id\":12317,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dominique Hatfield\",\"sportradar_id\":\"2cf86b24-50e1-4047-83cb-afd82b17aa91\",\"pandascore_id\":null,\"yahoo_id\":30865,\"last_name\":\"Hatfield\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733254,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dominiquehatfield\",\"birth_date\":\"1994-12-13\",\"espn_id\":3052502},\"2288\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chas\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alecxih\",\"depth_chart_position\":null,\"player_id\":\"2288\",\"birth_city\":null,\"fantasy_data_id\":16725,\"years_exp\":1,\"hashtag\":\"#ChasAlecxih-NFL-FA-65\",\"search_first_name\":\"chas\",\"rotowire_id\":8472,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chas Alecxih\",\"sportradar_id\":\"1fde3c16-427a-4b51-9d0c-904a5d7a3e6d\",\"pandascore_id\":null,\"yahoo_id\":26268,\"last_name\":\"Alecxih\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chasalecxih\",\"birth_date\":\"1989-02-10\",\"espn_id\":15353},\"909\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028620\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1520893801859,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herzlich\",\"depth_chart_position\":null,\"player_id\":\"909\",\"birth_city\":null,\"fantasy_data_id\":13140,\"years_exp\":9,\"hashtag\":\"#MarkHerzlich-NFL-FA-44\",\"search_first_name\":\"mark\",\"rotowire_id\":7479,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Mark Herzlich\",\"sportradar_id\":\"30be69a5-f203-49dc-a354-19e4733a80da\",\"pandascore_id\":null,\"yahoo_id\":25509,\"last_name\":\"Herzlich\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Conestoga (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'4\\\"\",\"search_full_name\":\"markherzlich\",\"birth_date\":\"1987-09-01\",\"espn_id\":14262},\"4712\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ragin\",\"depth_chart_position\":null,\"player_id\":\"4712\",\"birth_city\":null,\"fantasy_data_id\":19619,\"years_exp\":0,\"hashtag\":\"#JohnnyRagin-NFL-TEN-49\",\"search_first_name\":\"johnny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Johnny Ragin\",\"sportradar_id\":\"746168bc-d529-4fb9-bcd1-3fe9889b0027\",\"pandascore_id\":null,\"yahoo_id\":30831,\"last_name\":\"Ragin\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnnyragin\",\"birth_date\":\"1995-02-08\",\"espn_id\":3117315},\"7160\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ledarius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":null,\"player_id\":\"7160\",\"birth_city\":null,\"fantasy_data_id\":22161,\"years_exp\":0,\"hashtag\":\"#LedariusMack-NFL-CHI-57\",\"search_first_name\":\"ledarius\",\"rotowire_id\":14979,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ledarius Mack\",\"sportradar_id\":\"306d7e5a-f0f6-4b30-8484-5d933361278e\",\"pandascore_id\":null,\"yahoo_id\":33176,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Lincoln Park Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ledariusmack\",\"birth_date\":\"1996-10-03\",\"espn_id\":4257195},\"6527\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035151\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"droogsma\",\"depth_chart_position\":null,\"player_id\":\"6527\",\"birth_city\":null,\"fantasy_data_id\":21518,\"years_exp\":1,\"hashtag\":\"#AustinDroogsma-NFL-FA-66\",\"search_first_name\":\"austin\",\"rotowire_id\":14169,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Droogsma\",\"sportradar_id\":\"7c218b81-76f2-45a1-b4a1-ac4e7a987c6c\",\"pandascore_id\":null,\"yahoo_id\":32382,\"last_name\":\"Droogsma\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austindroogsma\",\"birth_date\":\"1995-03-04\",\"espn_id\":4422420},\"4282\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033793\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599193555149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"levin\",\"depth_chart_position\":null,\"player_id\":\"4282\",\"birth_city\":null,\"fantasy_data_id\":19128,\"years_exp\":3,\"hashtag\":\"#CoreyLevin-NFL-NE-60\",\"search_first_name\":\"corey\",\"rotowire_id\":11804,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Corey Levin\",\"sportradar_id\":\"e5266a8b-b610-4c5e-9bee-7269917ffd6f\",\"pandascore_id\":null,\"yahoo_id\":30330,\"last_name\":\"Levin\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Chattanooga\",\"high_school\":\"Dacula (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coreylevin\",\"birth_date\":\"1994-08-12\",\"espn_id\":2973637},\"789\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marsh\",\"depth_chart_position\":null,\"player_id\":\"789\",\"birth_city\":null,\"fantasy_data_id\":12711,\"years_exp\":9,\"hashtag\":\"#CurtisMarsh-NFL-FA-32\",\"search_first_name\":\"curtis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Curtis Marsh\",\"sportradar_id\":\"4fc319fc-3b0f-4b32-a3f7-43a4d03e4e72\",\"pandascore_id\":null,\"yahoo_id\":24877,\"last_name\":\"Marsh\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Royal (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'1\\\"\",\"search_full_name\":\"curtismarsh\",\"birth_date\":\"1988-03-01\",\"espn_id\":14031},\"3443\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swain\",\"depth_chart_position\":null,\"player_id\":\"3443\",\"birth_city\":null,\"fantasy_data_id\":18207,\"years_exp\":1,\"hashtag\":\"#ChrisSwain-NFL-FA-31\",\"search_first_name\":\"chris\",\"rotowire_id\":11490,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Swain\",\"sportradar_id\":\"1a6927a9-1a96-4441-95ce-4833350a011c\",\"pandascore_id\":null,\"yahoo_id\":29531,\"last_name\":\"Swain\",\"metadata\":null,\"college\":\"Navy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisswain\",\"birth_date\":\"1992-11-17\",\"espn_id\":2970472},\"3364\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032438\",\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1595909126501,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"canady\",\"depth_chart_position\":null,\"player_id\":\"3364\",\"birth_city\":null,\"fantasy_data_id\":18125,\"years_exp\":4,\"hashtag\":\"#MauriceCanady-NFL-DAL-28\",\"search_first_name\":\"maurice\",\"rotowire_id\":10936,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1035,\"age\":26,\"full_name\":\"Maurice Canady\",\"sportradar_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"pandascore_id\":null,\"yahoo_id\":29443,\"last_name\":\"Canady\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Varina (VA)\",\"depth_chart_order\":null,\"stats_id\":693989,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mauricecanady\",\"birth_date\":\"1994-05-26\",\"espn_id\":2979655},\"4861\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kent\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1525231801303,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"4861\",\"birth_city\":null,\"fantasy_data_id\":19761,\"years_exp\":3,\"hashtag\":\"#KentTaylor-NFL-FA-86\",\"search_first_name\":\"kent\",\"rotowire_id\":12601,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kent Taylor\",\"sportradar_id\":\"69443f0b-8385-4eeb-871b-cbab8f1dddf0\",\"pandascore_id\":null,\"yahoo_id\":30957,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"UTEP\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694628,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kenttaylor\",\"birth_date\":null,\"espn_id\":2980119},\"5076\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034808\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599612313407,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"RB\",\"player_id\":\"5076\",\"birth_city\":null,\"fantasy_data_id\":19957,\"years_exp\":2,\"hashtag\":\"#JohnKelly-NFL-CLE-42\",\"search_first_name\":\"john\",\"rotowire_id\":12555,\"rotoworld_id\":13212,\"active\":true,\"search_rank\":485,\"age\":24,\"full_name\":\"John Kelly\",\"sportradar_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"pandascore_id\":null,\"yahoo_id\":31145,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Oak Park (MI)\",\"depth_chart_order\":7,\"stats_id\":879766,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"johnkelly\",\"birth_date\":\"1996-10-04\",\"espn_id\":3915381},\"6631\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allison\",\"depth_chart_position\":null,\"player_id\":\"6631\",\"birth_city\":null,\"fantasy_data_id\":21395,\"years_exp\":0,\"hashtag\":\"#JalenAllison-NFL-FA-32\",\"search_first_name\":\"jalen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jalen Allison\",\"sportradar_id\":\"4c4c9eb6-b7cc-41c9-b14f-92125832c8b5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Allison\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jalenallison\",\"birth_date\":null,\"espn_id\":null},\"3046\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rotheram\",\"depth_chart_position\":null,\"player_id\":\"3046\",\"birth_city\":null,\"fantasy_data_id\":17759,\"years_exp\":4,\"hashtag\":\"#MattRotheram-NFL-FA-61\",\"search_first_name\":\"matt\",\"rotowire_id\":10834,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Matt Rotheram\",\"sportradar_id\":\"f533b338-a3ae-4942-a69f-fc6e66f87a2c\",\"pandascore_id\":null,\"yahoo_id\":28933,\"last_name\":\"Rotheram\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"344\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattrotheram\",\"birth_date\":\"1992-07-05\",\"espn_id\":2513151},\"6667\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035543\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"agasiva\",\"depth_chart_position\":null,\"player_id\":\"6667\",\"birth_city\":null,\"fantasy_data_id\":21552,\"years_exp\":1,\"hashtag\":\"#JordanAgasiva-NFL-FA-66\",\"search_first_name\":\"jordan\",\"rotowire_id\":14241,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jordan Agasiva\",\"sportradar_id\":\"b4565520-ee0d-4d4a-a3dd-7f8c17a9196c\",\"pandascore_id\":null,\"yahoo_id\":32563,\"last_name\":\"Agasiva\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanagasiva\",\"birth_date\":\"1997-05-21\",\"espn_id\":4243241},\"4522\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033599\",\"first_name\":\"Carlton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567219258028,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"agudosi\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4522\",\"birth_city\":null,\"fantasy_data_id\":19398,\"years_exp\":3,\"hashtag\":\"#CarltonAgudosi-NFL-FA-14\",\"search_first_name\":\"carlton\",\"rotowire_id\":12364,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Carlton Agudosi\",\"sportradar_id\":\"9bd7ed5d-968a-40c0-8dcd-25fcc2d4d47f\",\"pandascore_id\":null,\"yahoo_id\":30482,\"last_name\":\"Agudosi\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":696192,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'6\\\"\",\"search_full_name\":\"carltonagudosi\",\"birth_date\":\"1994-02-01\",\"espn_id\":2982809},\"7259\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"7259\",\"birth_city\":null,\"fantasy_data_id\":22258,\"years_exp\":0,\"hashtag\":\"#BobbyPrice-NFL-DET-47\",\"search_first_name\":\"bobby\",\"rotowire_id\":14849,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Bobby Price\",\"sportradar_id\":\"b80be347-fd65-4a40-bdad-e11c75bded39\",\"pandascore_id\":null,\"yahoo_id\":33190,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Norfolk State\",\"high_school\":\"Bishop Sullivan (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bobbyprice\",\"birth_date\":\"1998-04-25\",\"espn_id\":4030779},\"1196\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029422\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1543987259889,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tandy\",\"depth_chart_position\":null,\"player_id\":\"1196\",\"birth_city\":null,\"fantasy_data_id\":14391,\"years_exp\":8,\"hashtag\":\"#KeithTandy-NFL-FA-35\",\"search_first_name\":\"keith\",\"rotowire_id\":8318,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Keith Tandy\",\"sportradar_id\":\"e597cba3-fa90-4ce2-85e7-3e0bed1791d5\",\"pandascore_id\":null,\"yahoo_id\":25884,\"last_name\":\"Tandy\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Christian County (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keithtandy\",\"birth_date\":\"1989-02-12\",\"espn_id\":15001},\"6031\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035512\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567191054464,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":\"RB\",\"player_id\":\"6031\",\"birth_city\":null,\"fantasy_data_id\":21023,\"years_exp\":1,\"hashtag\":\"#AlexBarnes-NFL-FA-39\",\"search_first_name\":\"alex\",\"rotowire_id\":13452,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Alex Barnes\",\"sportradar_id\":\"e63d39ab-704f-40ad-9036-b8bad7ece8bb\",\"pandascore_id\":null,\"yahoo_id\":32419,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":868507,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alexbarnes\",\"birth_date\":\"1996-10-27\",\"espn_id\":3886636},\"1583\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030127\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565730006323,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"1583\",\"birth_city\":null,\"fantasy_data_id\":15234,\"years_exp\":7,\"hashtag\":\"#MarcusCooper-NFL-FA-31\",\"search_first_name\":\"marcus\",\"rotowire_id\":9082,\"rotoworld_id\":8641,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Marcus Cooper\",\"sportradar_id\":\"38709da2-bd62-45f9-a7cd-f209879aca81\",\"pandascore_id\":null,\"yahoo_id\":26875,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Bloomfield (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marcuscooper\",\"birth_date\":\"1990-02-01\",\"espn_id\":15888},\"533\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027688\",\"first_name\":\"Colt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1584657935872,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccoy\",\"depth_chart_position\":\"QB\",\"player_id\":\"533\",\"birth_city\":null,\"fantasy_data_id\":11047,\"years_exp\":10,\"hashtag\":\"#ColtMcCoy-NFL-NYG-12\",\"search_first_name\":\"colt\",\"rotowire_id\":6444,\"rotoworld_id\":5699,\"active\":true,\"search_rank\":515,\"age\":34,\"full_name\":\"Colt McCoy\",\"sportradar_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"pandascore_id\":null,\"yahoo_id\":24060,\"last_name\":\"McCoy\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Jim Ned (TX)\",\"depth_chart_order\":2,\"stats_id\":306296,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coltmccoy\",\"birth_date\":\"1986-09-05\",\"espn_id\":13199},\"2657\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lowdermilk\",\"depth_chart_position\":null,\"player_id\":\"2657\",\"birth_city\":null,\"fantasy_data_id\":17125,\"years_exp\":1,\"hashtag\":\"#JohnLowdermilk-NFL-FA-33\",\"search_first_name\":\"john\",\"rotowire_id\":10809,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"John Lowdermilk\",\"sportradar_id\":\"df6aa22c-9baf-421d-af09-8bc6638731f6\",\"pandascore_id\":null,\"yahoo_id\":28686,\"last_name\":\"Lowdermilk\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnlowdermilk\",\"birth_date\":\"1992-04-17\",\"espn_id\":2582441},\"2358\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032196\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1557761711253,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fisher\",\"depth_chart_position\":\"LT\",\"player_id\":\"2358\",\"birth_city\":null,\"fantasy_data_id\":16814,\"years_exp\":5,\"hashtag\":\"#JakeFisher-NFL-FA-74\",\"search_first_name\":\"jake\",\"rotowire_id\":10265,\"rotoworld_id\":10385,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jake Fisher\",\"sportradar_id\":\"aacd2e1d-0882-4698-87dc-f033382257a7\",\"pandascore_id\":null,\"yahoo_id\":28441,\"last_name\":\"Fisher\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Traverse City West (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jakefisher\",\"birth_date\":\"1993-04-23\",\"espn_id\":2576971},\"1450\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ace\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":null,\"player_id\":\"1450\",\"birth_city\":null,\"fantasy_data_id\":15019,\"years_exp\":3,\"hashtag\":\"#AceSanders-NFL-FA-18\",\"search_first_name\":\"ace\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ace Sanders\",\"sportradar_id\":\"e506364d-fe69-48c7-8b84-a49603b0a7b6\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sanders\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553026,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'7\\\"\",\"search_full_name\":\"acesanders\",\"birth_date\":\"1991-11-11\",\"espn_id\":16022},\"6526\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"6526\",\"birth_city\":null,\"fantasy_data_id\":21510,\"years_exp\":0,\"hashtag\":\"#TreThomas-NFL-FA-48\",\"search_first_name\":\"tre\",\"rotowire_id\":14163,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tre Thomas\",\"sportradar_id\":\"afc3cd02-f7fb-4de3-9e4f-46f02f7fd9b8\",\"pandascore_id\":null,\"yahoo_id\":32372,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trethomas\",\"birth_date\":\"1995-09-03\",\"espn_id\":3124517},\"3999\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"godsey\",\"depth_chart_position\":null,\"player_id\":\"3999\",\"birth_city\":null,\"fantasy_data_id\":18838,\"years_exp\":0,\"hashtag\":\"#GeorgeGodsey-NFL-FA-0\",\"search_first_name\":\"george\",\"rotowire_id\":null,\"rotoworld_id\":10444,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"George Godsey\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Godsey\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"georgegodsey\",\"birth_date\":null,\"espn_id\":null},\"2316\":{\"position\":\"CB\",\"injury_notes\":\"Wayne is expected to miss a significant portion of the season.\",\"birth_country\":null,\"gsis_id\":\"00-0031546\",\"first_name\":\"Trae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605828916410,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"waynes\",\"depth_chart_position\":null,\"player_id\":\"2316\",\"birth_city\":null,\"fantasy_data_id\":16772,\"years_exp\":5,\"hashtag\":\"#TraeWaynes-NFL-CIN-26\",\"search_first_name\":\"trae\",\"rotowire_id\":10028,\"rotoworld_id\":10426,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Trae Waynes\",\"sportradar_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"pandascore_id\":null,\"yahoo_id\":28399,\"last_name\":\"Waynes\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Bradford (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"traewaynes\",\"birth_date\":\"1992-07-25\",\"espn_id\":2576283},\"3789\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perkins\",\"depth_chart_position\":null,\"player_id\":\"3789\",\"birth_city\":null,\"fantasy_data_id\":18603,\"years_exp\":0,\"hashtag\":\"#DavidPerkins-NFL-FA-42\",\"search_first_name\":\"david\",\"rotowire_id\":11562,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Perkins\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29831,\"last_name\":\"Perkins\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidperkins\",\"birth_date\":\"1993-01-13\",\"espn_id\":null},\"1275\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grimes\",\"depth_chart_position\":null,\"player_id\":\"1275\",\"birth_city\":null,\"fantasy_data_id\":14719,\"years_exp\":8,\"hashtag\":\"#JonathanGrimes-NFL-FA-34\",\"search_first_name\":\"jonathan\",\"rotowire_id\":8297,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jonathan Grimes\",\"sportradar_id\":\"c8088c8c-b4fc-46e9-98b8-cda869e344e5\",\"pandascore_id\":null,\"yahoo_id\":26488,\"last_name\":\"Grimes\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Paul VI (NJ)\",\"depth_chart_order\":null,\"stats_id\":461885,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathangrimes\",\"birth_date\":\"1989-12-21\",\"espn_id\":15632},\"3260\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032396\",\"first_name\":\"Vincent\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567543221199,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"valentine\",\"depth_chart_position\":null,\"player_id\":\"3260\",\"birth_city\":null,\"fantasy_data_id\":18021,\"years_exp\":4,\"hashtag\":\"#VincentValentine-NFL-FA-96\",\"search_first_name\":\"vincent\",\"rotowire_id\":10950,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Vincent Valentine\",\"sportradar_id\":\"89781fd0-0817-4de8-ac16-c9cf095b333e\",\"pandascore_id\":null,\"yahoo_id\":29330,\"last_name\":\"Valentine\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651875,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vincentvalentine\",\"birth_date\":\"1994-02-23\",\"espn_id\":2974333},\"3248\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032954\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605916803475,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"seumalo\",\"depth_chart_position\":\"LG\",\"player_id\":\"3248\",\"birth_city\":null,\"fantasy_data_id\":18009,\"years_exp\":4,\"hashtag\":\"#IsaacSeumalo-NFL-PHI-73\",\"search_first_name\":\"isaac\",\"rotowire_id\":11169,\"rotoworld_id\":11386,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Isaac Seumalo\",\"sportradar_id\":\"447db942-40e8-4bb3-9710-b12cfaaafb46\",\"pandascore_id\":null,\"yahoo_id\":29313,\"last_name\":\"Seumalo\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Corvallis (OR)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"isaacseumalo\",\"birth_date\":\"1993-10-29\",\"espn_id\":2978247},\"516\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hernandez\",\"depth_chart_position\":null,\"player_id\":\"516\",\"birth_city\":null,\"fantasy_data_id\":10975,\"years_exp\":9,\"hashtag\":\"#AaronHernandez-NFL-FA-81\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":5674,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Aaron Hernandez\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hernandez\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aaronhernandez\",\"birth_date\":\"1989-11-06\",\"espn_id\":null},\"4244\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033304\",\"first_name\":\"Devante\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567532419491,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mays\",\"depth_chart_position\":\"RB\",\"player_id\":\"4244\",\"birth_city\":null,\"fantasy_data_id\":19090,\"years_exp\":3,\"hashtag\":\"#DevanteMays-NFL-FA-0\",\"search_first_name\":\"devante\",\"rotowire_id\":12219,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1216,\"age\":26,\"full_name\":\"Devante Mays\",\"sportradar_id\":\"b92d015f-0e5f-42e5-b85a-9c68ee6d8f1f\",\"pandascore_id\":null,\"yahoo_id\":30351,\"last_name\":\"Mays\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":16,\"stats_id\":867674,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'10\\\"\",\"search_full_name\":\"devantemays\",\"birth_date\":\"1994-05-26\",\"espn_id\":3918026},\"5682\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034444\",\"first_name\":\"Cayson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1546449623212,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"5682\",\"birth_city\":null,\"fantasy_data_id\":20609,\"years_exp\":2,\"hashtag\":\"#CaysonCollins-NFL-FA-46\",\"search_first_name\":\"cayson\",\"rotowire_id\":13262,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cayson Collins\",\"sportradar_id\":\"af606d16-92a5-474f-8674-0bcd440a76c2\",\"pandascore_id\":null,\"yahoo_id\":31533,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"caysoncollins\",\"birth_date\":\"1995-11-10\",\"espn_id\":3116695},\"3654\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535495103565,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowen\",\"depth_chart_position\":null,\"player_id\":\"3654\",\"birth_city\":null,\"fantasy_data_id\":18447,\"years_exp\":4,\"hashtag\":\"#KevinBowen-NFL-FA-77\",\"search_first_name\":\"kevin\",\"rotowire_id\":11384,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kevin Bowen\",\"sportradar_id\":\"5311dbf3-9a87-431c-9393-7a7d4180d118\",\"pandascore_id\":null,\"yahoo_id\":29698,\"last_name\":\"Bowen\",\"metadata\":null,\"college\":\"East Central Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'7\\\"\",\"search_full_name\":\"kevinbowen\",\"birth_date\":\"1993-07-03\",\"espn_id\":4002683},\"4376\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532566201744,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"4376\",\"birth_city\":null,\"fantasy_data_id\":19233,\"years_exp\":3,\"hashtag\":\"#MichaelClark-NFL-FA-89\",\"search_first_name\":\"michael\",\"rotowire_id\":12460,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Michael Clark\",\"sportradar_id\":\"a4556664-56b6-49ee-bc5b-a05da0780c65\",\"pandascore_id\":null,\"yahoo_id\":30609,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":886316,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'6\\\"\",\"search_full_name\":\"michaelclark\",\"birth_date\":\"1995-10-26\",\"espn_id\":3931763},\"7142\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dustin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597352134911,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"woodard\",\"depth_chart_position\":null,\"player_id\":\"7142\",\"birth_city\":null,\"fantasy_data_id\":22145,\"years_exp\":0,\"hashtag\":\"#DustinWoodard-NFL-NE-0\",\"search_first_name\":\"dustin\",\"rotowire_id\":14831,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Dustin Woodard\",\"sportradar_id\":\"6c55bb5c-dde4-43ec-b4aa-0e5d65303244\",\"pandascore_id\":null,\"yahoo_id\":32900,\"last_name\":\"Woodard\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Memphis\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dustinwoodard\",\"birth_date\":\"1998-03-08\",\"espn_id\":4039374},\"3871\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bergen\",\"depth_chart_position\":null,\"player_id\":\"3871\",\"birth_city\":null,\"fantasy_data_id\":18693,\"years_exp\":0,\"hashtag\":\"#SamBergen-NFL-FA-40\",\"search_first_name\":\"sam\",\"rotowire_id\":11395,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Sam Bergen\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29982,\"last_name\":\"Bergen\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556482,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sambergen\",\"birth_date\":\"1992-03-06\",\"espn_id\":null},\"3605\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032496\",\"first_name\":\"Matthias\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599707443847,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"farley\",\"depth_chart_position\":\"FS\",\"player_id\":\"3605\",\"birth_city\":null,\"fantasy_data_id\":18392,\"years_exp\":4,\"hashtag\":\"#MatthiasFarley-NFL-NYJ-41\",\"search_first_name\":\"matthias\",\"rotowire_id\":11292,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1072,\"age\":28,\"full_name\":\"Matthias Farley\",\"sportradar_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"pandascore_id\":null,\"yahoo_id\":29574,\"last_name\":\"Farley\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Christian (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"matthiasfarley\",\"birth_date\":\"1992-07-15\",\"espn_id\":2579840},\"3891\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033086\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"3891\",\"birth_city\":null,\"fantasy_data_id\":18713,\"years_exp\":4,\"hashtag\":\"#KyleColeman-NFL-FA-96\",\"search_first_name\":\"kyle\",\"rotowire_id\":11558,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Coleman\",\"sportradar_id\":\"0105886c-9f70-4600-b0c4-bb2a8efc5e9b\",\"pandascore_id\":null,\"yahoo_id\":30021,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Arkansas-Pine Bluff\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":891825,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylecoleman\",\"birth_date\":\"1993-09-30\",\"espn_id\":2572846},\"7365\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nevelle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596384616282,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clarke\",\"depth_chart_position\":null,\"player_id\":\"7365\",\"birth_city\":null,\"fantasy_data_id\":22077,\"years_exp\":0,\"hashtag\":\"#NevelleClarke-NFL-FA-0\",\"search_first_name\":\"nevelle\",\"rotowire_id\":14701,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nevelle Clarke\",\"sportradar_id\":\"136f5d97-d41c-4fad-b296-f69a129cdea7\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Clarke\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nevelleclarke\",\"birth_date\":\"1996-11-16\",\"espn_id\":3929034},\"5312\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034379\",\"first_name\":\"Rick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1546994134576,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leonard\",\"depth_chart_position\":null,\"player_id\":\"5312\",\"birth_city\":null,\"fantasy_data_id\":19945,\"years_exp\":2,\"hashtag\":\"#RickLeonard-NFL-ARI-72\",\"search_first_name\":\"rick\",\"rotowire_id\":12987,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Rick Leonard\",\"sportradar_id\":\"a54039fe-c6f8-4a25-82e8-80ce45db9a67\",\"pandascore_id\":null,\"yahoo_id\":31097,\"last_name\":\"Leonard\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Middletown (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'7\\\"\",\"search_full_name\":\"rickleonard\",\"birth_date\":\"1996-11-22\",\"espn_id\":3122927},\"5990\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034962\",\"first_name\":\"Terez\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605978007348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"LB\",\"player_id\":\"5990\",\"birth_city\":null,\"fantasy_data_id\":20784,\"years_exp\":1,\"hashtag\":\"#TerezHall-NFL-NE-59\",\"search_first_name\":\"terez\",\"rotowire_id\":13861,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1544,\"age\":24,\"full_name\":\"Terez Hall\",\"sportradar_id\":\"49bf0cd8-c01f-4d31-b6f1-fdda02b4999f\",\"pandascore_id\":null,\"yahoo_id\":32230,\"last_name\":\"Hall\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Missouri\",\"high_school\":\"King (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terezhall\",\"birth_date\":\"1996-11-18\",\"espn_id\":3924319},\"4097\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033525\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606341903138,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4097\",\"birth_city\":null,\"fantasy_data_id\":18943,\"years_exp\":3,\"hashtag\":\"#RyanAnderson-NFL-WAS-52\",\"search_first_name\":\"ryan\",\"rotowire_id\":11956,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1142,\"age\":26,\"full_name\":\"Ryan Anderson\",\"sportradar_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"pandascore_id\":null,\"yahoo_id\":30162,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Daphne (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryananderson\",\"birth_date\":\"1994-08-12\",\"espn_id\":2976495},\"916\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027979\",\"first_name\":\"Jarvis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1544195424488,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"916\",\"birth_city\":null,\"fantasy_data_id\":13165,\"years_exp\":9,\"hashtag\":\"#JarvisJenkins-NFL-FA-94\",\"search_first_name\":\"jarvis\",\"rotowire_id\":7470,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jarvis Jenkins\",\"sportradar_id\":\"5c453cab-dfd6-4c8f-ad31-f872229c6e06\",\"pandascore_id\":null,\"yahoo_id\":24828,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Daniel (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jarvisjenkins\",\"birth_date\":\"1988-04-24\",\"espn_id\":14019},\"1572\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030527\",\"first_name\":\"Alec\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602373509314,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ogletree\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1572\",\"birth_city\":null,\"fantasy_data_id\":15220,\"years_exp\":7,\"hashtag\":\"#AlecOgletree-NFL-NYJ-52\",\"search_first_name\":\"alec\",\"rotowire_id\":8695,\"rotoworld_id\":8383,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Alec Ogletree\",\"sportradar_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"pandascore_id\":null,\"yahoo_id\":26653,\"last_name\":\"Ogletree\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Newnan (GA)\",\"depth_chart_order\":2,\"stats_id\":552990,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alecogletree\",\"birth_date\":\"1991-09-25\",\"espn_id\":15806},\"4072\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033884\",\"first_name\":\"Tre'Davious\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605299454000,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4072\",\"birth_city\":null,\"fantasy_data_id\":18918,\"years_exp\":3,\"hashtag\":\"#TreDaviousWhite-NFL-BUF-27\",\"search_first_name\":\"tredavious\",\"rotowire_id\":12127,\"rotoworld_id\":12250,\"active\":true,\"search_rank\":1125,\"age\":25,\"full_name\":\"Tre'Davious White\",\"sportradar_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"pandascore_id\":null,\"yahoo_id\":30140,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Green Oaks (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tredaviouswhite\",\"birth_date\":\"1995-01-16\",\"espn_id\":3042717},\"5598\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daronte\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bouldin\",\"depth_chart_position\":null,\"player_id\":\"5598\",\"birth_city\":null,\"fantasy_data_id\":20518,\"years_exp\":0,\"hashtag\":\"#DaronteBouldin-NFL-NO-0\",\"search_first_name\":\"daronte\",\"rotowire_id\":13172,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Daronte Bouldin\",\"sportradar_id\":\"a7c8ed67-44b2-4286-aebc-2ce5bfa1e52c\",\"pandascore_id\":null,\"yahoo_id\":31531,\"last_name\":\"Bouldin\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"darontebouldin\",\"birth_date\":\"1994-12-14\",\"espn_id\":null},\"577\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"577\",\"birth_city\":null,\"fantasy_data_id\":11279,\"years_exp\":10,\"hashtag\":\"#DannyMcCray-NFL-FA-40\",\"search_first_name\":\"danny\",\"rotowire_id\":7094,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Danny McCray\",\"sportradar_id\":\"e210223b-fd36-4cc2-a5e3-16578ea0d17d\",\"pandascore_id\":null,\"yahoo_id\":24605,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Westfield (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dannymccray\",\"birth_date\":\"1988-03-10\",\"espn_id\":13611},\"3097\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdaniels\",\"depth_chart_position\":null,\"player_id\":\"3097\",\"birth_city\":null,\"fantasy_data_id\":17847,\"years_exp\":0,\"hashtag\":\"#JoshMcDaniels-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":9281,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Josh McDaniels\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McDaniels\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joshmcdaniels\",\"birth_date\":null,\"espn_id\":null},\"6851\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603307739485,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"okwara\",\"depth_chart_position\":null,\"player_id\":\"6851\",\"birth_city\":null,\"fantasy_data_id\":21887,\"years_exp\":0,\"hashtag\":\"#JulianOkwara-NFL-DET-99\",\"search_first_name\":\"julian\",\"rotowire_id\":14448,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1813,\"age\":22,\"full_name\":\"Julian Okwara\",\"sportradar_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"pandascore_id\":null,\"yahoo_id\":32737,\"last_name\":\"Okwara\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Ardrey Kell (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'5\\\"\",\"search_full_name\":\"julianokwara\",\"birth_date\":\"1997-12-27\",\"espn_id\":4046690},\"2788\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harwell\",\"depth_chart_position\":null,\"player_id\":\"2788\",\"birth_city\":null,\"fantasy_data_id\":17256,\"years_exp\":1,\"hashtag\":\"#NickHarwell-NFL-FA-18\",\"search_first_name\":\"nick\",\"rotowire_id\":10538,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nick Harwell\",\"sportradar_id\":\"e892a99d-6c94-460f-8922-00a444e71d73\",\"pandascore_id\":null,\"yahoo_id\":29017,\"last_name\":\"Harwell\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":544753,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nickharwell\",\"birth_date\":\"1991-01-21\",\"espn_id\":2516768},\"6254\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035542\",\"first_name\":\"Kemon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598474742387,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"6254\",\"birth_city\":null,\"fantasy_data_id\":21187,\"years_exp\":1,\"hashtag\":\"#KemonHall-NFL-NO-25\",\"search_first_name\":\"kemon\",\"rotowire_id\":14307,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1690,\"age\":23,\"full_name\":\"Kemon Hall\",\"sportradar_id\":\"9e82eb73-21f0-469a-ac85-b4fde70a6a4e\",\"pandascore_id\":null,\"yahoo_id\":32542,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Calhoun City (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kemonhall\",\"birth_date\":\"1997-06-02\",\"espn_id\":4243831},\"751\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mauga\",\"depth_chart_position\":null,\"player_id\":\"751\",\"birth_city\":null,\"fantasy_data_id\":12430,\"years_exp\":11,\"hashtag\":\"#JoshuaMauga-NFL-FA-90\",\"search_first_name\":\"joshua\",\"rotowire_id\":7199,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Joshua Mauga\",\"sportradar_id\":\"c82d07c7-c02a-4ea7-8cd7-7ba6e9e60f21\",\"pandascore_id\":null,\"yahoo_id\":9758,\"last_name\":\"Mauga\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Churchill County (NV)\",\"depth_chart_order\":null,\"stats_id\":286668,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshuamauga\",\"birth_date\":\"1987-06-20\",\"espn_id\":13165},\"5661\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034593\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604440245318,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lacy\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5661\",\"birth_city\":null,\"fantasy_data_id\":20511,\"years_exp\":2,\"hashtag\":\"#ChrisLacy-NFL-DAL-15\",\"search_first_name\":\"chris\",\"rotowire_id\":12952,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1483,\"age\":24,\"full_name\":\"Chris Lacy\",\"sportradar_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"pandascore_id\":null,\"yahoo_id\":31651,\"last_name\":\"Lacy\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":3,\"stats_id\":835417,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrislacy\",\"birth_date\":\"1996-01-28\",\"espn_id\":3122430},\"484\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weatherford\",\"depth_chart_position\":null,\"player_id\":\"484\",\"birth_city\":null,\"fantasy_data_id\":9814,\"years_exp\":14,\"hashtag\":\"#SteveWeatherford-NFL-FA-3\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Steve Weatherford\",\"sportradar_id\":\"2d7263cd-2437-46a8-bca6-a224576e3063\",\"pandascore_id\":null,\"yahoo_id\":8050,\"last_name\":\"Weatherford\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"North Vigo (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"steveweatherford\",\"birth_date\":\"1982-12-17\",\"espn_id\":10127},\"2889\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dewaltondijo\",\"depth_chart_position\":null,\"player_id\":\"2889\",\"birth_city\":null,\"fantasy_data_id\":17357,\"years_exp\":0,\"hashtag\":\"#JordanDewaltOndijo-NFL-FA-47\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Dewalt-Ondijo\",\"sportradar_id\":\"820ed36e-fbff-4ed2-99e8-411b1ac7c05b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dewalt-Ondijo\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordandewaltondijo\",\"birth_date\":\"1992-05-19\",\"espn_id\":2512459},\"4404\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033326\",\"first_name\":\"Aviante\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1573749606314,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"4404\",\"birth_city\":null,\"fantasy_data_id\":19263,\"years_exp\":3,\"hashtag\":\"#AvianteCollins-NFL-MIN-76\",\"search_first_name\":\"aviante\",\"rotowire_id\":11785,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Aviante Collins\",\"sportradar_id\":\"7f59e894-4ce1-4803-a556-2e02add60bc2\",\"pandascore_id\":null,\"yahoo_id\":30431,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Willowridge (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aviantecollins\",\"birth_date\":\"1993-04-21\",\"espn_id\":2971556},\"4423\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033389\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1560186341309,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4423\",\"birth_city\":null,\"fantasy_data_id\":19283,\"years_exp\":3,\"hashtag\":\"#DavidJones-NFL-FA-41\",\"search_first_name\":\"david\",\"rotowire_id\":12928,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Jones\",\"sportradar_id\":\"369d8fc2-fce9-4e75-9419-3dfbe3ad3977\",\"pandascore_id\":null,\"yahoo_id\":30663,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidjones\",\"birth_date\":\"1993-12-04\",\"espn_id\":2969018},\"2448\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031587\",\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601838340076,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccain\",\"depth_chart_position\":\"NB\",\"player_id\":\"2448\",\"birth_city\":null,\"fantasy_data_id\":16905,\"years_exp\":5,\"hashtag\":\"#BobbyMcCain-NFL-MIA-28\",\"search_first_name\":\"bobby\",\"rotowire_id\":10422,\"rotoworld_id\":10524,\"active\":true,\"search_rank\":896,\"age\":27,\"full_name\":\"Bobby McCain\",\"sportradar_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"pandascore_id\":null,\"yahoo_id\":28533,\"last_name\":\"McCain\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Oxford (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bobbymccain\",\"birth_date\":\"1993-08-18\",\"espn_id\":2575606},\"4860\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034058\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toth\",\"depth_chart_position\":\"C\",\"player_id\":\"4860\",\"birth_city\":null,\"fantasy_data_id\":19760,\"years_exp\":3,\"hashtag\":\"#JonToth-NFL-FA-0\",\"search_first_name\":\"jon\",\"rotowire_id\":11823,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jon Toth\",\"sportradar_id\":\"f527c2af-05ac-4086-a35e-8efa1136860d\",\"pandascore_id\":null,\"yahoo_id\":30956,\"last_name\":\"Toth\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jontoth\",\"birth_date\":\"1994-02-11\",\"espn_id\":2971093},\"2688\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031928\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604783409376,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slade\",\"depth_chart_position\":null,\"player_id\":\"2688\",\"birth_city\":null,\"fantasy_data_id\":17156,\"years_exp\":5,\"hashtag\":\"#ChadSlade-NFL-NYG-62\",\"search_first_name\":\"chad\",\"rotowire_id\":10649,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chad Slade\",\"sportradar_id\":\"79a3c87a-85e2-41ed-aee2-ee6b33dd401e\",\"pandascore_id\":null,\"yahoo_id\":28899,\"last_name\":\"Slade\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Moody (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chadslade\",\"birth_date\":\"1992-05-04\",\"espn_id\":2516029},\"7194\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"7194\",\"birth_city\":null,\"fantasy_data_id\":22196,\"years_exp\":0,\"hashtag\":\"#AaronCrawford-NFL-BAL-69\",\"search_first_name\":\"aaron\",\"rotowire_id\":15140,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aaron Crawford\",\"sportradar_id\":\"1c1c956f-0f4c-4b22-98f2-6bbbd5e4a504\",\"pandascore_id\":null,\"yahoo_id\":33008,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Stone Bridge (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aaroncrawford\",\"birth_date\":\"1997-11-04\",\"espn_id\":3895837},\"2727\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manning\",\"depth_chart_position\":null,\"player_id\":\"2727\",\"birth_city\":null,\"fantasy_data_id\":17195,\"years_exp\":0,\"hashtag\":\"#TravisManning-NFL-FA-26\",\"search_first_name\":\"travis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Travis Manning\",\"sportradar_id\":\"7610c1b3-594a-4b33-8c1b-992f4c780b3a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manning\",\"metadata\":null,\"college\":\"Northwest Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"travismanning\",\"birth_date\":\"1990-12-30\",\"espn_id\":2497566},\"4089\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033895\",\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606229451969,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"everett\",\"depth_chart_position\":\"TE\",\"player_id\":\"4089\",\"birth_city\":null,\"fantasy_data_id\":18935,\"years_exp\":3,\"hashtag\":\"#GeraldEverett-NFL-LAR-81\",\"search_first_name\":\"gerald\",\"rotowire_id\":11737,\"rotoworld_id\":12284,\"active\":true,\"search_rank\":324,\"age\":26,\"full_name\":\"Gerald Everett\",\"sportradar_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"pandascore_id\":null,\"yahoo_id\":30157,\"last_name\":\"Everett\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":\"Columbia (GA)\",\"depth_chart_order\":2,\"stats_id\":838487,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"geraldeverett\",\"birth_date\":\"1994-06-25\",\"espn_id\":3918639},\"1168\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029139\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1554316248436,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gettis\",\"depth_chart_position\":null,\"player_id\":\"1168\",\"birth_city\":null,\"fantasy_data_id\":14256,\"years_exp\":8,\"hashtag\":\"#AdamGettis-NFL-FA-72\",\"search_first_name\":\"adam\",\"rotowire_id\":8338,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Adam Gettis\",\"sportradar_id\":\"0cb97421-cccf-4cce-ac0f-92d47986defc\",\"pandascore_id\":null,\"yahoo_id\":25851,\"last_name\":\"Gettis\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Lincoln Way East (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"adamgettis\",\"birth_date\":\"1988-12-09\",\"espn_id\":14995},\"ARI\":{\"team\":\"ARI\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"ARI\",\"last_name\":\"Cardinals\",\"injury_status\":null,\"first_name\":\"Arizona\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"7059\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596208216574,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":null,\"player_id\":\"7059\",\"birth_city\":null,\"fantasy_data_id\":21986,\"years_exp\":0,\"hashtag\":\"#JordanMack-NFL-CAR-47\",\"search_first_name\":\"jordan\",\"rotowire_id\":14745,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1868,\"age\":22,\"full_name\":\"Jordan Mack\",\"sportradar_id\":\"00484794-97e8-443b-876f-d192722cd70c\",\"pandascore_id\":null,\"yahoo_id\":33144,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Wesleyan (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanmack\",\"birth_date\":\"1998-02-07\",\"espn_id\":null},\"4574\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033662\",\"first_name\":\"Cooper\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604974230091,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rush\",\"depth_chart_position\":\"QB\",\"player_id\":\"4574\",\"birth_city\":null,\"fantasy_data_id\":19461,\"years_exp\":3,\"hashtag\":\"#CooperRush-NFL-DAL-10\",\"search_first_name\":\"cooper\",\"rotowire_id\":11841,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1264,\"age\":27,\"full_name\":\"Cooper Rush\",\"sportradar_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"pandascore_id\":null,\"yahoo_id\":30788,\"last_name\":\"Rush\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Lansing Catholic (MI)\",\"depth_chart_order\":5,\"stats_id\":694117,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cooperrush\",\"birth_date\":\"1993-11-21\",\"espn_id\":2972515},\"5255\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034647\",\"first_name\":\"Teo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567185953780,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redding\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5255\",\"birth_city\":null,\"fantasy_data_id\":20274,\"years_exp\":2,\"hashtag\":\"#TeoRedding-NFL-FA-88\",\"search_first_name\":\"teo\",\"rotowire_id\":13023,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Teo Redding\",\"sportradar_id\":\"11a3d414-412d-4dee-992a-4eb8ece1fbdb\",\"pandascore_id\":null,\"yahoo_id\":31642,\"last_name\":\"Redding\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":744013,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'1\\\"\",\"search_full_name\":\"teoredding\",\"birth_date\":\"1994-12-08\",\"espn_id\":3045763},\"4373\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stanley\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4373\",\"birth_city\":null,\"fantasy_data_id\":19230,\"years_exp\":2,\"hashtag\":\"#StanleyWilliams-NFL-FA-30\",\"search_first_name\":\"stanley\",\"rotowire_id\":11776,\"rotoworld_id\":12703,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Stanley Williams\",\"sportradar_id\":\"c726c9ec-060e-47d8-95cf-2d00b73c9eb0\",\"pandascore_id\":null,\"yahoo_id\":30588,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835378,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'9\\\"\",\"search_full_name\":\"stanleywilliams\",\"birth_date\":\"1995-09-30\",\"espn_id\":3126338},\"3405\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032979\",\"first_name\":\"Scooby\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567547421615,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"3405\",\"birth_city\":null,\"fantasy_data_id\":18166,\"years_exp\":4,\"hashtag\":\"#ScoobyWright-NFL-FA-96\",\"search_first_name\":\"scooby\",\"rotowire_id\":10940,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Scooby Wright\",\"sportradar_id\":\"345a3f59-1eec-484b-93d0-6330bdb358e1\",\"pandascore_id\":null,\"yahoo_id\":29484,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":751295,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'0\\\"\",\"search_full_name\":\"scoobywright\",\"birth_date\":\"1994-08-28\",\"espn_id\":3056472},\"6068\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035184\",\"first_name\":\"Devine\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606164314807,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ozigbo\",\"depth_chart_position\":\"RB\",\"player_id\":\"6068\",\"birth_city\":null,\"fantasy_data_id\":20904,\"years_exp\":1,\"hashtag\":\"#DevineOzigbo-NFL-JAX-22\",\"search_first_name\":\"devine\",\"rotowire_id\":13624,\"rotoworld_id\":14045,\"active\":true,\"search_rank\":154,\"age\":24,\"full_name\":\"Devine Ozigbo\",\"sportradar_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"pandascore_id\":null,\"yahoo_id\":32390,\"last_name\":\"Ozigbo\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Sachse (TX)\",\"depth_chart_order\":2,\"stats_id\":866115,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"devineozigbo\",\"birth_date\":\"1996-10-02\",\"espn_id\":3699935},\"7018\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588038004077,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roach\",\"depth_chart_position\":\"LDT\",\"player_id\":\"7018\",\"birth_city\":null,\"fantasy_data_id\":21899,\"years_exp\":0,\"hashtag\":\"#MalcolmRoach-NFL-NO-97\",\"search_first_name\":\"malcolm\",\"rotowire_id\":14726,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1823,\"age\":22,\"full_name\":\"Malcolm Roach\",\"sportradar_id\":\"bb01a04e-0d54-4fc6-98c8-2b8614d07afe\",\"pandascore_id\":null,\"yahoo_id\":33118,\"last_name\":\"Roach\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Madison Prep (LA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"malcolmroach\",\"birth_date\":\"1998-06-09\",\"espn_id\":4039064},\"6572\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035344\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"monteiro\",\"depth_chart_position\":null,\"player_id\":\"6572\",\"birth_city\":null,\"fantasy_data_id\":21268,\"years_exp\":1,\"hashtag\":\"#AaronMonteiro-NFL-CAR-62\",\"search_first_name\":\"aaron\",\"rotowire_id\":14281,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aaron Monteiro\",\"sportradar_id\":\"b84b415e-a7a5-4d3c-8128-9e58f002578c\",\"pandascore_id\":null,\"yahoo_id\":32441,\"last_name\":\"Monteiro\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Brockton (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"aaronmonteiro\",\"birth_date\":\"1997-03-25\",\"espn_id\":3915304},\"6279\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035102\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605660026118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":\"TE\",\"player_id\":\"6279\",\"birth_city\":null,\"fantasy_data_id\":21161,\"years_exp\":1,\"hashtag\":\"#BrandonDillon-NFL-MIN-86\",\"search_first_name\":\"brandon\",\"rotowire_id\":14001,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1686,\"age\":23,\"full_name\":\"Brandon Dillon\",\"sportradar_id\":\"c1576aca-1bd1-4b9f-ba83-10235f1e2eca\",\"pandascore_id\":null,\"yahoo_id\":32142,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"Marian, Ind.\",\"high_school\":\"Carroll (IN)\",\"depth_chart_order\":4,\"stats_id\":1165740,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandondillon\",\"birth_date\":\"1997-04-30\",\"espn_id\":4411192},\"3253\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033060\",\"first_name\":\"Leonte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1569969914948,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carroo\",\"depth_chart_position\":null,\"player_id\":\"3253\",\"birth_city\":null,\"fantasy_data_id\":18014,\"years_exp\":4,\"hashtag\":\"#LeonteCarroo-NFL-FA-88\",\"search_first_name\":\"leonte\",\"rotowire_id\":10899,\"rotoworld_id\":11277,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Leonte Carroo\",\"sportradar_id\":\"931dbb14-36ac-4044-a61e-5f11854f0383\",\"pandascore_id\":null,\"yahoo_id\":29320,\"last_name\":\"Carroo\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696195,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"leontecarroo\",\"birth_date\":\"1994-01-24\",\"espn_id\":2982804},\"4001\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033191\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1526589301497,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knox\",\"depth_chart_position\":null,\"player_id\":\"4001\",\"birth_city\":null,\"fantasy_data_id\":18840,\"years_exp\":3,\"hashtag\":\"#JeffKnox-NFL-FA-48\",\"search_first_name\":\"jeff\",\"rotowire_id\":11735,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeff Knox\",\"sportradar_id\":\"d59adf1f-97dc-4787-b47b-9dc6148941ee\",\"pandascore_id\":null,\"yahoo_id\":30094,\"last_name\":\"Knox\",\"metadata\":null,\"college\":\"California (PA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeffknox\",\"birth_date\":\"1992-02-22\",\"espn_id\":4081021},\"2856\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blechen\",\"depth_chart_position\":null,\"player_id\":\"2856\",\"birth_city\":null,\"fantasy_data_id\":17324,\"years_exp\":1,\"hashtag\":\"#BrianBlechen-NFL-FA-45\",\"search_first_name\":\"brian\",\"rotowire_id\":10523,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brian Blechen\",\"sportradar_id\":\"6a5075f0-7e18-4ebc-a40c-663832c2b188\",\"pandascore_id\":null,\"yahoo_id\":28729,\"last_name\":\"Blechen\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brianblechen\",\"birth_date\":\"1991-09-30\",\"espn_id\":2514544},\"2634\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032048\",\"first_name\":\"Mack\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1564854347894,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2634\",\"birth_city\":null,\"fantasy_data_id\":17102,\"years_exp\":5,\"hashtag\":\"#MackBrown-NFL-FA-34\",\"search_first_name\":\"mack\",\"rotowire_id\":10568,\"rotoworld_id\":11084,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mack Brown\",\"sportradar_id\":\"7dc5af64-ae1d-4915-8af9-a4f5fb601710\",\"pandascore_id\":null,\"yahoo_id\":29085,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557180,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mackbrown\",\"birth_date\":\"1991-09-24\",\"espn_id\":2512191},\"670\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kassim\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"osgood\",\"depth_chart_position\":null,\"player_id\":\"670\",\"birth_city\":null,\"fantasy_data_id\":11821,\"years_exp\":12,\"hashtag\":\"#KassimOsgood-NFL-FA-14\",\"search_first_name\":\"kassim\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Kassim Osgood\",\"sportradar_id\":\"d00b8cd0-86fb-4d44-9816-7011747ad3fd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Osgood\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kassimosgood\",\"birth_date\":\"1980-05-20\",\"espn_id\":5437},\"2907\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"2907\",\"birth_city\":null,\"fantasy_data_id\":17375,\"years_exp\":5,\"hashtag\":\"#BenEdwards-NFL-FA-83\",\"search_first_name\":\"ben\",\"rotowire_id\":10725,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ben Edwards\",\"sportradar_id\":\"879f996a-95f2-48db-8234-022ffebd3bda\",\"pandascore_id\":null,\"yahoo_id\":29045,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"York (VA)\",\"depth_chart_order\":null,\"stats_id\":552370,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"benedwards\",\"birth_date\":\"1992-04-10\",\"espn_id\":2507340},\"111\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024243\",\"first_name\":\"Marcedes\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606525229181,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"TE\",\"player_id\":\"111\",\"birth_city\":null,\"fantasy_data_id\":3061,\"years_exp\":14,\"hashtag\":\"#MarcedesLewis-NFL-GB-89\",\"search_first_name\":\"marcedes\",\"rotowire_id\":4891,\"rotoworld_id\":3615,\"active\":true,\"search_rank\":511,\"age\":36,\"full_name\":\"Marcedes Lewis\",\"sportradar_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"pandascore_id\":null,\"yahoo_id\":7777,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":3,\"stats_id\":214197,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'6\\\"\",\"search_full_name\":\"marcedeslewis\",\"birth_date\":\"1984-05-19\",\"espn_id\":9614},\"1461\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"catapano\",\"depth_chart_position\":null,\"player_id\":\"1461\",\"birth_city\":null,\"fantasy_data_id\":15043,\"years_exp\":7,\"hashtag\":\"#MikeCatapano-NFL-FA-48\",\"search_first_name\":\"mike\",\"rotowire_id\":8961,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Mike Catapano\",\"sportradar_id\":\"4c08189b-2268-4755-87d0-b0a291f08eb9\",\"pandascore_id\":null,\"yahoo_id\":26830,\"last_name\":\"Catapano\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":\"Chaminade (NY)\",\"depth_chart_order\":null,\"stats_id\":470175,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikecatapano\",\"birth_date\":\"1990-08-17\",\"espn_id\":15944},\"6446\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035013\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596395417324,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hilliman\",\"depth_chart_position\":\"RB\",\"player_id\":\"6446\",\"birth_city\":null,\"fantasy_data_id\":21456,\"years_exp\":1,\"hashtag\":\"#JonHilliman-NFL-FA-0\",\"search_first_name\":\"jon\",\"rotowire_id\":14082,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1740,\"age\":24,\"full_name\":\"Jon Hilliman\",\"sportradar_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"pandascore_id\":null,\"yahoo_id\":32238,\"last_name\":\"Hilliman\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":25,\"stats_id\":836057,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jonhilliman\",\"birth_date\":\"1995-11-14\",\"espn_id\":3122799},\"3349\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sebastian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tretola\",\"depth_chart_position\":null,\"player_id\":\"3349\",\"birth_city\":null,\"fantasy_data_id\":18110,\"years_exp\":2,\"hashtag\":\"#SebastianTretola-NFL-FA-79\",\"search_first_name\":\"sebastian\",\"rotowire_id\":10962,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Sebastian Tretola\",\"sportradar_id\":\"4e5dab0a-cec3-4eb0-ad60-68635d652626\",\"pandascore_id\":null,\"yahoo_id\":29427,\"last_name\":\"Tretola\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sebastiantretola\",\"birth_date\":\"1992-05-01\",\"espn_id\":2512138},\"7064\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrynton\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605731432864,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":\"RB\",\"player_id\":\"7064\",\"birth_city\":null,\"fantasy_data_id\":21845,\"years_exp\":0,\"hashtag\":\"#DarryntonEvans-NFL-TEN-32\",\"search_first_name\":\"darrynton\",\"rotowire_id\":14400,\"rotoworld_id\":null,\"active\":true,\"search_rank\":184,\"age\":22,\"full_name\":\"Darrynton Evans\",\"sportradar_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"pandascore_id\":null,\"yahoo_id\":32763,\"last_name\":\"Evans\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Appalachian State\",\"high_school\":\"New Smyrna Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darryntonevans\",\"birth_date\":\"1998-07-09\",\"espn_id\":4036431},\"3904\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ra'Zahn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":\"NT\",\"player_id\":\"3904\",\"birth_city\":null,\"fantasy_data_id\":18730,\"years_exp\":0,\"hashtag\":\"#RaZahnHoward-NFL-FA-60\",\"search_first_name\":\"razahn\",\"rotowire_id\":11603,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ra'Zahn Howard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30034,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'4\\\"\",\"search_full_name\":\"razahnhoward\",\"birth_date\":\"1994-08-08\",\"espn_id\":2969052},\"5701\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034718\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535763090499,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flagel\",\"depth_chart_position\":null,\"player_id\":\"5701\",\"birth_city\":null,\"fantasy_data_id\":20628,\"years_exp\":2,\"hashtag\":\"#ConnorFlagel-NFL-FA-75\",\"search_first_name\":\"connor\",\"rotowire_id\":13308,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Connor Flagel\",\"sportradar_id\":\"10a361ab-933c-46b6-bd83-3e10896813b8\",\"pandascore_id\":null,\"yahoo_id\":31710,\"last_name\":\"Flagel\",\"metadata\":null,\"college\":\"Central Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"connorflagel\",\"birth_date\":\"1995-01-08\",\"espn_id\":3052283},\"2145\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rettig\",\"depth_chart_position\":null,\"player_id\":\"2145\",\"birth_city\":null,\"fantasy_data_id\":16489,\"years_exp\":1,\"hashtag\":\"#ChaseRettig-NFL-FA-7\",\"search_first_name\":\"chase\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chase Rettig\",\"sportradar_id\":\"525fc206-a76f-4630-b2f4-ec6351ff1afd\",\"pandascore_id\":null,\"yahoo_id\":28088,\"last_name\":\"Rettig\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542393,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chaserettig\",\"birth_date\":\"1991-09-26\",\"espn_id\":17237},\"3404\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032456\",\"first_name\":\"Prince Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532569201620,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"iworah\",\"depth_chart_position\":null,\"player_id\":\"3404\",\"birth_city\":null,\"fantasy_data_id\":18165,\"years_exp\":4,\"hashtag\":\"#PrinceCharlesIworah-NFL-FA-39\",\"search_first_name\":\"princecharles\",\"rotowire_id\":11246,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Prince Charles Iworah\",\"sportradar_id\":\"b8fa8d21-898c-4718-9b4e-f512c6414b28\",\"pandascore_id\":null,\"yahoo_id\":29483,\"last_name\":\"Iworah\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"princecharlesiworah\",\"birth_date\":\"1993-03-11\",\"espn_id\":2994680},\"2071\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarrod\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pughsley\",\"depth_chart_position\":null,\"player_id\":\"2071\",\"birth_city\":null,\"fantasy_data_id\":16375,\"years_exp\":6,\"hashtag\":\"#JarrodPughsley-NFL-FA-63\",\"search_first_name\":\"jarrod\",\"rotowire_id\":10120,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jarrod Pughsley\",\"sportradar_id\":\"2704b8c6-2f29-459c-ac3c-f921acf955d0\",\"pandascore_id\":null,\"yahoo_id\":28137,\"last_name\":\"Pughsley\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":\"Lima (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jarrodpughsley\",\"birth_date\":\"1990-12-18\",\"espn_id\":17312},\"5469\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034124\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schleuger\",\"depth_chart_position\":null,\"player_id\":\"5469\",\"birth_city\":null,\"fantasy_data_id\":20344,\"years_exp\":2,\"hashtag\":\"#ChrisSchleuger-NFL-FA-74\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Schleuger\",\"sportradar_id\":\"5535abc8-e8c0-48bc-b233-3aacccde7eaf\",\"pandascore_id\":null,\"yahoo_id\":31419,\"last_name\":\"Schleuger\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisschleuger\",\"birth_date\":\"1995-05-12\",\"espn_id\":3908989},\"2656\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chi Chi\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ariguzo\",\"depth_chart_position\":null,\"player_id\":\"2656\",\"birth_city\":null,\"fantasy_data_id\":17124,\"years_exp\":1,\"hashtag\":\"#ChiChiAriguzo-NFL-FA-58\",\"search_first_name\":\"chichi\",\"rotowire_id\":10682,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chi Chi Ariguzo\",\"sportradar_id\":\"e640f40d-e8af-46f4-bd4f-fb6f3bd7d361\",\"pandascore_id\":null,\"yahoo_id\":28672,\"last_name\":\"Ariguzo\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chichiariguzo\",\"birth_date\":\"1992-06-23\",\"espn_id\":2511087},\"6756\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kahani\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6756\",\"birth_city\":null,\"fantasy_data_id\":21700,\"years_exp\":1,\"hashtag\":\"#KahaniSmith-NFL-FA-0\",\"search_first_name\":\"kahani\",\"rotowire_id\":14417,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1184,\"age\":22,\"full_name\":\"Kahani Smith\",\"sportradar_id\":\"400515df-2c75-4570-b37d-c12436a961ba\",\"pandascore_id\":null,\"yahoo_id\":32660,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kahanismith\",\"birth_date\":\"1997-11-21\",\"espn_id\":null},\"6799\":{\"position\":\"DB\",\"injury_notes\":\"Delpit was carted off the practice field and will likely miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Grant\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598395839046,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"delpit\",\"depth_chart_position\":null,\"player_id\":\"6799\",\"birth_city\":null,\"fantasy_data_id\":21918,\"years_exp\":0,\"hashtag\":\"#GrantDelpit-NFL-CLE-22\",\"search_first_name\":\"grant\",\"rotowire_id\":14507,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Grant Delpit\",\"sportradar_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"pandascore_id\":null,\"yahoo_id\":32714,\"last_name\":\"Delpit\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'3\\\"\",\"search_full_name\":\"grantdelpit\",\"birth_date\":\"1998-09-20\",\"espn_id\":4242208},\"7108\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hasise\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dubois\",\"depth_chart_position\":null,\"player_id\":\"7108\",\"birth_city\":null,\"fantasy_data_id\":22131,\"years_exp\":0,\"hashtag\":\"#HasiseDubois-NFL-FA-0\",\"search_first_name\":\"hasise\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Hasise Dubois\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dubois\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hasisedubois\",\"birth_date\":null,\"espn_id\":null},\"2370\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D'Joun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2370\",\"birth_city\":null,\"fantasy_data_id\":16826,\"years_exp\":5,\"hashtag\":\"#DJounSmith-NFL-FA-20\",\"search_first_name\":\"djoun\",\"rotowire_id\":10414,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"D'Joun Smith\",\"sportradar_id\":\"fee7cbd7-9880-4a0c-aa6b-fe148483bc92\",\"pandascore_id\":null,\"yahoo_id\":28453,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"American (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"djounsmith\",\"birth_date\":\"1992-09-23\",\"espn_id\":2982861},\"2239\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2239\",\"birth_city\":null,\"fantasy_data_id\":16641,\"years_exp\":1,\"hashtag\":\"#JonathanBrown-NFL-FA-45\",\"search_first_name\":\"jonathan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jonathan Brown\",\"sportradar_id\":\"206bc431-7d63-4d27-a19b-9ea9ab2cb7c4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonathanbrown\",\"birth_date\":\"1992-06-22\",\"espn_id\":17116},\"7072\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turk\",\"depth_chart_position\":null,\"player_id\":\"7072\",\"birth_city\":null,\"fantasy_data_id\":22116,\"years_exp\":0,\"hashtag\":\"#MichaelTurk-NFL-FA-0\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Michael Turk\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Turk\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelturk\",\"birth_date\":null,\"espn_id\":null},\"175\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026176\",\"first_name\":\"Jordy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1554315648501,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"175\",\"birth_city\":null,\"fantasy_data_id\":4556,\"years_exp\":12,\"hashtag\":\"#JordyNelson-NFL-FA-82\",\"search_first_name\":\"jordy\",\"rotowire_id\":5691,\"rotoworld_id\":4731,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jordy Nelson\",\"sportradar_id\":\"9f2aebe4-b654-4f0e-a437-ec46f20b6bfe\",\"pandascore_id\":null,\"yahoo_id\":8813,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":227442,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordynelson\",\"birth_date\":\"1985-05-31\",\"espn_id\":11270},\"1666\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029955\",\"first_name\":\"LaRoy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1585059038006,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":\"LB\",\"player_id\":\"1666\",\"birth_city\":null,\"fantasy_data_id\":15450,\"years_exp\":7,\"hashtag\":\"#LaRoyReynolds-NFL-ATL-59\",\"search_first_name\":\"laroy\",\"rotowire_id\":9068,\"rotoworld_id\":null,\"active\":true,\"search_rank\":760,\"age\":30,\"full_name\":\"LaRoy Reynolds\",\"sportradar_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"pandascore_id\":null,\"yahoo_id\":26975,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Maury (VA)\",\"depth_chart_order\":2,\"stats_id\":509379,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"laroyreynolds\",\"birth_date\":\"1990-11-03\",\"espn_id\":16449},\"5671\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034662\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1572730552939,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kalu\",\"depth_chart_position\":\"SS\",\"player_id\":\"5671\",\"birth_city\":null,\"fantasy_data_id\":20384,\"years_exp\":2,\"hashtag\":\"#JoshuaKalu-NFL-TEN-46\",\"search_first_name\":\"joshua\",\"rotowire_id\":12720,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1464,\"age\":25,\"full_name\":\"Joshua Kalu\",\"sportradar_id\":\"ab741f46-d660-48f2-a910-774d0514d2e4\",\"pandascore_id\":null,\"yahoo_id\":31609,\"last_name\":\"Kalu\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Nebraska\",\"high_school\":\"Alief Taylor (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshuakalu\",\"birth_date\":\"1995-08-28\",\"espn_id\":3116105},\"5602\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034451\",\"first_name\":\"Claudy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathieu\",\"depth_chart_position\":null,\"player_id\":\"5602\",\"birth_city\":null,\"fantasy_data_id\":20322,\"years_exp\":2,\"hashtag\":\"#ClaudyMathieu-NFL-FA-60\",\"search_first_name\":\"claudy\",\"rotowire_id\":13267,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Claudy Mathieu\",\"sportradar_id\":\"1da8b818-601e-4d53-943b-c7cb767969a3\",\"pandascore_id\":null,\"yahoo_id\":31539,\"last_name\":\"Mathieu\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"claudymathieu\",\"birth_date\":\"1993-01-18\",\"espn_id\":3939134},\"6871\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606075819186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dantzler\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6871\",\"birth_city\":null,\"fantasy_data_id\":22048,\"years_exp\":0,\"hashtag\":\"#CameronDantzler-NFL-MIN-27\",\"search_first_name\":\"cameron\",\"rotowire_id\":14363,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1884,\"age\":22,\"full_name\":\"Cameron Dantzler\",\"sportradar_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"pandascore_id\":null,\"yahoo_id\":32759,\"last_name\":\"Dantzler\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"St. Thomas Aquinas (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"camerondantzler\",\"birth_date\":\"1998-09-03\",\"espn_id\":4035385},\"4036\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033871\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606503004103,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4036\",\"birth_city\":null,\"fantasy_data_id\":18879,\"years_exp\":3,\"hashtag\":\"#CoreyDavis-NFL-TEN-84\",\"search_first_name\":\"corey\",\"rotowire_id\":11733,\"rotoworld_id\":12169,\"active\":true,\"search_rank\":180,\"age\":25,\"full_name\":\"Corey Davis\",\"sportradar_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"pandascore_id\":null,\"yahoo_id\":30118,\"last_name\":\"Davis\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Western Michigan\",\"high_school\":\"Warrenville South (IL)\",\"depth_chart_order\":1,\"stats_id\":732121,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"coreydavis\",\"birth_date\":\"1995-01-11\",\"espn_id\":3042778},\"2156\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031267\",\"first_name\":\"Antone\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577914234877,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"exum\",\"depth_chart_position\":\"SS\",\"player_id\":\"2156\",\"birth_city\":null,\"fantasy_data_id\":16502,\"years_exp\":6,\"hashtag\":\"#AntoneExum-NFL-FA-38\",\"search_first_name\":\"antone\",\"rotowire_id\":9339,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Antone Exum\",\"sportradar_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"pandascore_id\":null,\"yahoo_id\":27710,\"last_name\":\"Exum\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Deep Run (VA)\",\"depth_chart_order\":3,\"stats_id\":507515,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'0\\\"\",\"search_full_name\":\"antoneexum\",\"birth_date\":\"1991-02-27\",\"espn_id\":16833},\"6618\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035718\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1582683328855,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"searight\",\"depth_chart_position\":\"LTE\",\"player_id\":\"6618\",\"birth_city\":null,\"fantasy_data_id\":21394,\"years_exp\":1,\"hashtag\":\"#IsaiahSearight-NFL-FA-0\",\"search_first_name\":\"isaiah\",\"rotowire_id\":13944,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Isaiah Searight\",\"sportradar_id\":\"79b89410-979a-4cc6-8463-940e78e0d1b6\",\"pandascore_id\":null,\"yahoo_id\":32486,\"last_name\":\"Searight\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":874663,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaiahsearight\",\"birth_date\":\"1995-08-08\",\"espn_id\":3909346},\"7094\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lirim\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1602716153952,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hajrullahu\",\"depth_chart_position\":null,\"player_id\":\"7094\",\"birth_city\":null,\"fantasy_data_id\":22122,\"years_exp\":0,\"hashtag\":\"#LirimHajrullahu-NFL-FA-0\",\"search_first_name\":\"lirim\",\"rotowire_id\":14808,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1926,\"age\":30,\"full_name\":\"Lirim Hajrullahu\",\"sportradar_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"pandascore_id\":null,\"yahoo_id\":32668,\"last_name\":\"Hajrullahu\",\"metadata\":null,\"college\":\"Western Ontario (Canada)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lirimhajrullahu\",\"birth_date\":\"1990-04-24\",\"espn_id\":4682912},\"6271\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035208\",\"first_name\":\"Olamide\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606114511206,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zaccheaus\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6271\",\"birth_city\":null,\"fantasy_data_id\":21142,\"years_exp\":1,\"hashtag\":\"#OlamideZaccheaus-NFL-ATL-17\",\"search_first_name\":\"olamide\",\"rotowire_id\":13833,\"rotoworld_id\":null,\"active\":true,\"search_rank\":288,\"age\":23,\"full_name\":\"Olamide Zaccheaus\",\"sportradar_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"pandascore_id\":null,\"yahoo_id\":32123,\"last_name\":\"Zaccheaus\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"St. Joseph's Prep (PA)\",\"depth_chart_order\":2,\"stats_id\":883976,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'8\\\"\",\"search_full_name\":\"olamidezaccheaus\",\"birth_date\":\"1997-07-23\",\"espn_id\":3917914},\"408\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"canty\",\"depth_chart_position\":null,\"player_id\":\"408\",\"birth_city\":null,\"fantasy_data_id\":8872,\"years_exp\":15,\"hashtag\":\"#ChrisCanty-NFL-FA-99\",\"search_first_name\":\"chris\",\"rotowire_id\":4477,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Chris Canty\",\"sportradar_id\":\"5870bbda-5923-4924-865c-964f8ac6da78\",\"pandascore_id\":null,\"yahoo_id\":7308,\"last_name\":\"Canty\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Charlotte Latin (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'7\\\"\",\"search_full_name\":\"chriscanty\",\"birth_date\":\"1982-11-10\",\"espn_id\":8546},\"1768\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"browner\",\"depth_chart_position\":null,\"player_id\":\"1768\",\"birth_city\":null,\"fantasy_data_id\":15821,\"years_exp\":1,\"hashtag\":\"#KBrowner-NFL-FA-76\",\"search_first_name\":\"k\",\"rotowire_id\":9909,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"K Browner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":26554,\"last_name\":\"Browner\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"276\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kbrowner\",\"birth_date\":\"1988-04-07\",\"espn_id\":15698},\"311\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fields\",\"depth_chart_position\":null,\"player_id\":\"311\",\"birth_city\":null,\"fantasy_data_id\":7650,\"years_exp\":13,\"hashtag\":\"#BrandonFields-NFL-FA-4\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Brandon Fields\",\"sportradar_id\":\"c0ef0d99-8f3f-480e-a9b5-eeff5c8f7339\",\"pandascore_id\":null,\"yahoo_id\":8479,\"last_name\":\"Fields\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"St. John's Jesuit (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonfields\",\"birth_date\":\"1984-05-21\",\"espn_id\":10668},\"2313\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032240\",\"first_name\":\"Vic\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606172415343,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beasley\",\"depth_chart_position\":null,\"player_id\":\"2313\",\"birth_city\":null,\"fantasy_data_id\":16769,\"years_exp\":5,\"hashtag\":\"#VicBeasley-NFL-LV-44\",\"search_first_name\":\"vic\",\"rotowire_id\":9261,\"rotoworld_id\":10365,\"active\":true,\"search_rank\":851,\"age\":28,\"full_name\":\"Vic Beasley\",\"sportradar_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"pandascore_id\":null,\"yahoo_id\":28396,\"last_name\":\"Beasley\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Clemson\",\"high_school\":\"Adairsville (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vicbeasley\",\"birth_date\":\"1992-07-08\",\"espn_id\":2512400},\"7494\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyahva\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tezino\",\"depth_chart_position\":null,\"player_id\":\"7494\",\"birth_city\":null,\"fantasy_data_id\":22469,\"years_exp\":0,\"hashtag\":\"#KyahvaTezino-NFL-FA-0\",\"search_first_name\":\"kyahva\",\"rotowire_id\":14910,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kyahva Tezino\",\"sportradar_id\":\"2cb466a9-fce5-49ab-bff6-b0b0f8960cac\",\"pandascore_id\":null,\"yahoo_id\":33323,\"last_name\":\"Tezino\",\"metadata\":null,\"college\":\"San DIego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kyahvatezino\",\"birth_date\":\"1997-06-21\",\"espn_id\":3921659},\"2560\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031665\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1576018846783,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zenner\",\"depth_chart_position\":null,\"player_id\":\"2560\",\"birth_city\":null,\"fantasy_data_id\":17023,\"years_exp\":5,\"hashtag\":\"#ZachZenner-NFL-FA-22\",\"search_first_name\":\"zach\",\"rotowire_id\":10188,\"rotoworld_id\":10429,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Zenner\",\"sportradar_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"pandascore_id\":null,\"yahoo_id\":28887,\"last_name\":\"Zenner\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":\"Eagan (MN)\",\"depth_chart_order\":null,\"stats_id\":568874,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"zachzenner\",\"birth_date\":\"1991-09-13\",\"espn_id\":2521161},\"6924\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Netane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596583550273,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"muti\",\"depth_chart_position\":\"RG\",\"player_id\":\"6924\",\"birth_city\":null,\"fantasy_data_id\":22032,\"years_exp\":0,\"hashtag\":\"#NetaneMuti-NFL-DEN-52\",\"search_first_name\":\"netane\",\"rotowire_id\":14624,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Netane Muti\",\"sportradar_id\":\"64321852-52e3-4ac0-9b3e-898f0b1e500c\",\"pandascore_id\":null,\"yahoo_id\":32851,\"last_name\":\"Muti\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Fresno State\",\"high_school\":\"Leilehua (HI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'3\\\"\",\"search_full_name\":\"netanemuti\",\"birth_date\":\"1999-03-27\",\"espn_id\":4040910},\"61\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cortland\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"finnegan\",\"depth_chart_position\":null,\"player_id\":\"61\",\"birth_city\":null,\"fantasy_data_id\":1722,\"years_exp\":14,\"hashtag\":\"#CortlandFinnegan-NFL-FA-21\",\"search_first_name\":\"cortland\",\"rotowire_id\":null,\"rotoworld_id\":4035,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Cortland Finnegan\",\"sportradar_id\":\"9fe9d478-6884-4f2e-b74f-76d3305975e4\",\"pandascore_id\":null,\"yahoo_id\":7964,\"last_name\":\"Finnegan\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Milton (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cortlandfinnegan\",\"birth_date\":\"1984-02-02\",\"espn_id\":9801},\"6050\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035418\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606022710663,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"knight\",\"depth_chart_position\":\"RT\",\"player_id\":\"6050\",\"birth_city\":null,\"fantasy_data_id\":20849,\"years_exp\":1,\"hashtag\":\"#BrandonKnight-NFL-DAL-69\",\"search_first_name\":\"brandon\",\"rotowire_id\":13873,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Brandon Knight\",\"sportradar_id\":\"e1705a56-ae89-4af7-baac-4e72b6f7bd7a\",\"pandascore_id\":null,\"yahoo_id\":32202,\"last_name\":\"Knight\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Noblesville (IN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonknight\",\"birth_date\":\"1997-04-01\",\"espn_id\":3929795},\"2752\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"steelman\",\"depth_chart_position\":null,\"player_id\":\"2752\",\"birth_city\":null,\"fantasy_data_id\":17220,\"years_exp\":0,\"hashtag\":\"#TrentSteelman-NFL-FA-6\",\"search_first_name\":\"trent\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Trent Steelman\",\"sportradar_id\":\"7c3c06ea-0b4f-418c-bef2-935f2bc209cf\",\"pandascore_id\":null,\"yahoo_id\":29173,\"last_name\":\"Steelman\",\"metadata\":null,\"college\":\"Army\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":507611,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"trentsteelman\",\"birth_date\":null,\"espn_id\":2469123},\"2392\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032166\",\"first_name\":\"Sammie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557525614790,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coates\",\"depth_chart_position\":null,\"player_id\":\"2392\",\"birth_city\":null,\"fantasy_data_id\":16848,\"years_exp\":5,\"hashtag\":\"#SammieCoates-NFL-FA-18\",\"search_first_name\":\"sammie\",\"rotowire_id\":10211,\"rotoworld_id\":10285,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Sammie Coates\",\"sportradar_id\":\"52d09eea-a580-447a-8062-5841d5a9c8b3\",\"pandascore_id\":null,\"yahoo_id\":28475,\"last_name\":\"Coates\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Leroy (AL)\",\"depth_chart_order\":null,\"stats_id\":593296,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sammiecoates\",\"birth_date\":\"1993-03-31\",\"espn_id\":2574549},\"2711\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031800\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1574442315097,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"heinicke\",\"depth_chart_position\":null,\"player_id\":\"2711\",\"birth_city\":null,\"fantasy_data_id\":17179,\"years_exp\":5,\"hashtag\":\"#TaylorHeinicke-NFL-FA-6\",\"search_first_name\":\"taylor\",\"rotowire_id\":10179,\"rotoworld_id\":10665,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Taylor Heinicke\",\"sportradar_id\":\"2c259733-ec2c-4e3c-bb7b-34dc0d37dc34\",\"pandascore_id\":null,\"yahoo_id\":28839,\"last_name\":\"Heinicke\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"Collins Hill (GA)\",\"depth_chart_order\":null,\"stats_id\":599113,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"taylorheinicke\",\"birth_date\":\"1993-03-15\",\"espn_id\":2565969},\"2454\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031592\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567285206214,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parry\",\"depth_chart_position\":null,\"player_id\":\"2454\",\"birth_city\":null,\"fantasy_data_id\":16911,\"years_exp\":5,\"hashtag\":\"#DavidParry-NFL-FA-75\",\"search_first_name\":\"david\",\"rotowire_id\":10461,\"rotoworld_id\":10528,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"David Parry\",\"sportradar_id\":\"376a61bd-de05-4fb1-a698-7f93fd1a102c\",\"pandascore_id\":null,\"yahoo_id\":28539,\"last_name\":\"Parry\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Linn-Marr (IA)\",\"depth_chart_order\":null,\"stats_id\":553094,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidparry\",\"birth_date\":\"1992-03-07\",\"espn_id\":2517779},\"5208\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"linehan\",\"depth_chart_position\":null,\"player_id\":\"5208\",\"birth_city\":null,\"fantasy_data_id\":20158,\"years_exp\":0,\"hashtag\":\"#MattLinehan-NFL-FA-10\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Matt Linehan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Linehan\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattlinehan\",\"birth_date\":null,\"espn_id\":3060176},\"753\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"753\",\"birth_city\":null,\"fantasy_data_id\":12445,\"years_exp\":7,\"hashtag\":\"#JasonWilliams-NFL-FA-52\",\"search_first_name\":\"jason\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jason Williams\",\"sportradar_id\":\"ea3365f9-6ca3-4e66-bb73-574d99e5c387\",\"pandascore_id\":null,\"yahoo_id\":9333,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jasonwilliams\",\"birth_date\":\"1986-02-21\",\"espn_id\":12749},\"6311\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035342\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606270855582,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"laird\",\"depth_chart_position\":\"RB\",\"player_id\":\"6311\",\"birth_city\":null,\"fantasy_data_id\":21211,\"years_exp\":1,\"hashtag\":\"#PatrickLaird-NFL-MIA-32\",\"search_first_name\":\"patrick\",\"rotowire_id\":13913,\"rotoworld_id\":null,\"active\":true,\"search_rank\":280,\"age\":25,\"full_name\":\"Patrick Laird\",\"sportradar_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"pandascore_id\":null,\"yahoo_id\":32439,\"last_name\":\"Laird\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Mission Prep (CA)\",\"depth_chart_order\":4,\"stats_id\":835694,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"patricklaird\",\"birth_date\":\"1995-08-17\",\"espn_id\":3127211},\"1860\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031031\",\"first_name\":\"Brent\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584754511389,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"qvale\",\"depth_chart_position\":\"RG\",\"player_id\":\"1860\",\"birth_city\":null,\"fantasy_data_id\":16071,\"years_exp\":6,\"hashtag\":\"#BrentQvale-NFL-HOU-76\",\"search_first_name\":\"brent\",\"rotowire_id\":10144,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brent Qvale\",\"sportradar_id\":\"19da8eea-111c-4e70-b516-0259015ad9db\",\"pandascore_id\":null,\"yahoo_id\":27864,\"last_name\":\"Qvale\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Williston (ND)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brentqvale\",\"birth_date\":\"1991-03-11\",\"espn_id\":17087},\"3187\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032383\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604250919007,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"C\",\"player_id\":\"3187\",\"birth_city\":null,\"fantasy_data_id\":17948,\"years_exp\":4,\"hashtag\":\"#RyanKelly-NFL-IND-78\",\"search_first_name\":\"ryan\",\"rotowire_id\":11089,\"rotoworld_id\":11304,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan Kelly\",\"sportradar_id\":\"66990fc9-f98d-4712-8a0e-524372b9102f\",\"pandascore_id\":null,\"yahoo_id\":29252,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Lakota West (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryankelly\",\"birth_date\":\"1993-05-30\",\"espn_id\":2578475},\"2899\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalil\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"2899\",\"birth_city\":null,\"fantasy_data_id\":17367,\"years_exp\":1,\"hashtag\":\"#JalilCarter-NFL-FA-39\",\"search_first_name\":\"jalil\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jalil Carter\",\"sportradar_id\":\"243824d4-d2f8-482f-9483-9e73c5fe8d1b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jalilcarter\",\"birth_date\":\"1989-07-18\",\"espn_id\":14692},\"3212\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032810\",\"first_name\":\"Kalan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567101038638,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"3212\",\"birth_city\":null,\"fantasy_data_id\":17973,\"years_exp\":4,\"hashtag\":\"#KalanReed-NFL-FA-0\",\"search_first_name\":\"kalan\",\"rotowire_id\":11248,\"rotoworld_id\":11530,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kalan Reed\",\"sportradar_id\":\"3ade957d-5c6f-4f8d-8d56-fdaae1753aa2\",\"pandascore_id\":null,\"yahoo_id\":29487,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693428,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kalanreed\",\"birth_date\":\"1993-12-29\",\"espn_id\":2972090},\"837\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028075\",\"first_name\":\"Buster\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603753839293,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"skrine\",\"depth_chart_position\":\"CB\",\"player_id\":\"837\",\"birth_city\":null,\"fantasy_data_id\":12881,\"years_exp\":9,\"hashtag\":\"#BusterSkrine-NFL-CHI-24\",\"search_first_name\":\"buster\",\"rotowire_id\":7623,\"rotoworld_id\":6651,\"active\":true,\"search_rank\":630,\"age\":31,\"full_name\":\"Buster Skrine\",\"sportradar_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"pandascore_id\":null,\"yahoo_id\":24924,\"last_name\":\"Skrine\",\"metadata\":null,\"college\":\"Chattanooga\",\"high_school\":\"Etowah (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"busterskrine\",\"birth_date\":\"1989-04-26\",\"espn_id\":14139},\"5163\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034597\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605588621567,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nall\",\"depth_chart_position\":\"RB\",\"player_id\":\"5163\",\"birth_city\":null,\"fantasy_data_id\":20106,\"years_exp\":2,\"hashtag\":\"#RyanNall-NFL-CHI-35\",\"search_first_name\":\"ryan\",\"rotowire_id\":12513,\"rotoworld_id\":null,\"active\":true,\"search_rank\":269,\"age\":24,\"full_name\":\"Ryan Nall\",\"sportradar_id\":\"02880089-ccba-44f0-9d6c-fe6f12d15e5b\",\"pandascore_id\":null,\"yahoo_id\":31662,\"last_name\":\"Nall\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Central Catholic (OR)\",\"depth_chart_order\":3,\"stats_id\":838156,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryannall\",\"birth_date\":\"1995-12-27\",\"espn_id\":3127335},\"695\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025396\",\"first_name\":\"Ted\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604507150002,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ginn\",\"depth_chart_position\":\"LWR\",\"player_id\":\"695\",\"birth_city\":null,\"fantasy_data_id\":12109,\"years_exp\":13,\"hashtag\":\"#TedGinn-NFL-CHI-19\",\"search_first_name\":\"ted\",\"rotowire_id\":5214,\"rotoworld_id\":4168,\"active\":true,\"search_rank\":210,\"age\":35,\"full_name\":\"Ted Ginn\",\"sportradar_id\":\"3aef6950-1c19-4454-a3d0-0afe9634ea9f\",\"pandascore_id\":null,\"yahoo_id\":8263,\"last_name\":\"Ginn\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":1,\"stats_id\":246804,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tedginn\",\"birth_date\":\"1985-04-12\",\"espn_id\":10453},\"1285\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kaddu\",\"depth_chart_position\":null,\"player_id\":\"1285\",\"birth_city\":null,\"fantasy_data_id\":14732,\"years_exp\":4,\"hashtag\":\"#JoshKaddu-NFL-FA-51\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josh Kaddu\",\"sportradar_id\":\"a3272eb3-3e1b-45a8-b8e5-c095ebb71275\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kaddu\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshkaddu\",\"birth_date\":\"1990-03-12\",\"espn_id\":15069},\"5609\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034494\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baggett\",\"depth_chart_position\":null,\"player_id\":\"5609\",\"birth_city\":null,\"fantasy_data_id\":20553,\"years_exp\":2,\"hashtag\":\"#StephenBaggett-NFL-FA-86\",\"search_first_name\":\"stephen\",\"rotowire_id\":13271,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Stephen Baggett\",\"sportradar_id\":\"56bc4b31-3074-4cad-92fc-041f550b7fe6\",\"pandascore_id\":null,\"yahoo_id\":31546,\"last_name\":\"Baggett\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":831178,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stephenbaggett\",\"birth_date\":\"1995-09-20\",\"espn_id\":3126158},\"6848\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anfernee\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587786036485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":\"LB\",\"player_id\":\"6848\",\"birth_city\":null,\"fantasy_data_id\":21898,\"years_exp\":0,\"hashtag\":\"#AnferneeJennings-NFL-NE-58\",\"search_first_name\":\"anfernee\",\"rotowire_id\":14742,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1822,\"age\":23,\"full_name\":\"Anfernee Jennings\",\"sportradar_id\":\"56692800-dd44-4b82-a988-398314845fd9\",\"pandascore_id\":null,\"yahoo_id\":32757,\"last_name\":\"Jennings\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Alabama\",\"high_school\":\"Dadeville (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"anferneejennings\",\"birth_date\":\"1997-05-01\",\"espn_id\":3925350},\"2266\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031305\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1575996944196,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"2266\",\"birth_city\":null,\"fantasy_data_id\":16677,\"years_exp\":6,\"hashtag\":\"#BrandonThomas-NFL-FA-70\",\"search_first_name\":\"brandon\",\"rotowire_id\":9440,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brandon Thomas\",\"sportradar_id\":\"6fa770b7-6cf8-400f-a3ea-47696eef0074\",\"pandascore_id\":null,\"yahoo_id\":27628,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Dorman (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonthomas\",\"birth_date\":\"1991-02-18\",\"espn_id\":16739},\"4179\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033949\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599411360050,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dobbs\",\"depth_chart_position\":\"QB\",\"player_id\":\"4179\",\"birth_city\":null,\"fantasy_data_id\":19025,\"years_exp\":3,\"hashtag\":\"#JoshuaDobbs-NFL-PIT-5\",\"search_first_name\":\"joshua\",\"rotowire_id\":11834,\"rotoworld_id\":12335,\"active\":true,\"search_rank\":518,\"age\":25,\"full_name\":\"Joshua Dobbs\",\"sportradar_id\":\"15bedebc-839e-450a-86f6-1f5ad1f4f820\",\"pandascore_id\":null,\"yahoo_id\":30248,\"last_name\":\"Dobbs\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Tennessee\",\"high_school\":\"Alpharetta (GA)\",\"depth_chart_order\":3,\"stats_id\":741262,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshuadobbs\",\"birth_date\":\"1995-01-26\",\"espn_id\":3044720},\"2884\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shirley\",\"depth_chart_position\":null,\"player_id\":\"2884\",\"birth_city\":null,\"fantasy_data_id\":17352,\"years_exp\":5,\"hashtag\":\"#JoshShirley-NFL-FA-46\",\"search_first_name\":\"josh\",\"rotowire_id\":10704,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Shirley\",\"sportradar_id\":\"7f04f11e-13ee-4a4f-94a5-54d8e87ff38a\",\"pandascore_id\":null,\"yahoo_id\":28970,\"last_name\":\"Shirley\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"Kaiser\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshshirley\",\"birth_date\":\"1992-01-04\",\"espn_id\":2509499},\"6564\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035403\",\"first_name\":\"Ethan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"greenidge\",\"depth_chart_position\":\"RT\",\"player_id\":\"6564\",\"birth_city\":null,\"fantasy_data_id\":21164,\"years_exp\":1,\"hashtag\":\"#EthanGreenidge-NFL-NO-73\",\"search_first_name\":\"ethan\",\"rotowire_id\":13683,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ethan Greenidge\",\"sportradar_id\":\"505b14e9-7ba1-4c7b-99e7-8dafa8cd0946\",\"pandascore_id\":null,\"yahoo_id\":32491,\"last_name\":\"Greenidge\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":\"Riverhead (NY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ethangreenidge\",\"birth_date\":\"1997-09-10\",\"espn_id\":3938169},\"2702\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chiles\",\"depth_chart_position\":null,\"player_id\":\"2702\",\"birth_city\":null,\"fantasy_data_id\":17170,\"years_exp\":1,\"hashtag\":\"#JohnChiles-NFL-FA-82\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"John Chiles\",\"sportradar_id\":\"95d53258-a784-4dbb-8158-107836aa486c\",\"pandascore_id\":null,\"yahoo_id\":25277,\"last_name\":\"Chiles\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":381215,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnchiles\",\"birth_date\":\"1988-10-09\",\"espn_id\":14372},\"3626\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lars\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hanson\",\"depth_chart_position\":null,\"player_id\":\"3626\",\"birth_city\":null,\"fantasy_data_id\":18413,\"years_exp\":0,\"hashtag\":\"#LarsHanson-NFL-FA-78\",\"search_first_name\":\"lars\",\"rotowire_id\":11418,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lars Hanson\",\"sportradar_id\":\"72b50b18-90eb-40c3-842f-b4e235f7bcf7\",\"pandascore_id\":null,\"yahoo_id\":29620,\"last_name\":\"Hanson\",\"metadata\":null,\"college\":\"Sacramento State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'7\\\"\",\"search_full_name\":\"larshanson\",\"birth_date\":\"1992-09-30\",\"espn_id\":null},\"6349\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035207\",\"first_name\":\"Jayson\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605827413738,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stanley\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6349\",\"birth_city\":null,\"fantasy_data_id\":21307,\"years_exp\":1,\"hashtag\":\"#JaysonStanley-NFL-SEA-39\",\"search_first_name\":\"jayson\",\"rotowire_id\":14027,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jayson Stanley\",\"sportradar_id\":\"bdeffac7-3509-4689-af1b-29e9fe86b008\",\"pandascore_id\":null,\"yahoo_id\":32120,\"last_name\":\"Stanley\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Creekside (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jaysonstanley\",\"birth_date\":\"1997-04-24\",\"espn_id\":3915190},\"4014\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nolan\",\"depth_chart_position\":null,\"player_id\":\"4014\",\"birth_city\":null,\"fantasy_data_id\":18854,\"years_exp\":0,\"hashtag\":\"#MikeNolan-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":9494,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Nolan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Nolan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikenolan\",\"birth_date\":null,\"espn_id\":null},\"304\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":null,\"player_id\":\"304\",\"birth_city\":null,\"fantasy_data_id\":7524,\"years_exp\":12,\"hashtag\":\"#JakeLong-NFL-FA-72\",\"search_first_name\":\"jake\",\"rotowire_id\":5611,\"rotoworld_id\":4712,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jake Long\",\"sportradar_id\":\"e0e55096-4f50-42e3-897c-663017220b56\",\"pandascore_id\":null,\"yahoo_id\":8778,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Lapeer East (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jakelong\",\"birth_date\":\"1985-05-09\",\"espn_id\":11234},\"5804\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034894\",\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1537304705874,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5804\",\"birth_city\":null,\"fantasy_data_id\":20701,\"years_exp\":2,\"hashtag\":\"#JulianWilliams-NFL-FA-16\",\"search_first_name\":\"julian\",\"rotowire_id\":13400,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Julian Williams\",\"sportradar_id\":\"5db04b51-4f65-48ef-ab75-695a404d63ff\",\"pandascore_id\":null,\"yahoo_id\":31799,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":886261,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"julianwilliams\",\"birth_date\":\"1996-06-09\",\"espn_id\":3921645},\"4631\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033692\",\"first_name\":\"Charlie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534030510234,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"4631\",\"birth_city\":null,\"fantasy_data_id\":19525,\"years_exp\":3,\"hashtag\":\"#CharlieMiller-NFL-FA-47\",\"search_first_name\":\"charlie\",\"rotowire_id\":12876,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Charlie Miller\",\"sportradar_id\":\"dd6959e5-13cf-4c1f-a05a-03bb7648af96\",\"pandascore_id\":null,\"yahoo_id\":30404,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'0\\\"\",\"search_full_name\":\"charliemiller\",\"birth_date\":\"1994-05-15\",\"espn_id\":3049640},\"2119\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":null,\"player_id\":\"2119\",\"birth_city\":null,\"fantasy_data_id\":16452,\"years_exp\":0,\"hashtag\":\"#JamesFranklin-NFL-FA-14\",\"search_first_name\":\"james\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"James Franklin\",\"sportradar_id\":\"94e4b4c4-87f5-4a95-9fa2-60fbd3629c12\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesfranklin\",\"birth_date\":\"1991-07-23\",\"espn_id\":null},\"5864\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035236\",\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605133807179,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":\"NB\",\"player_id\":\"5864\",\"birth_city\":null,\"fantasy_data_id\":20888,\"years_exp\":1,\"hashtag\":\"#ByronMurphy-NFL-ARI-33\",\"search_first_name\":\"byron\",\"rotowire_id\":13560,\"rotoworld_id\":14067,\"active\":true,\"search_rank\":1581,\"age\":22,\"full_name\":\"Byron Murphy\",\"sportradar_id\":\"c025b513-9431-4097-bc25-9777bf08f846\",\"pandascore_id\":null,\"yahoo_id\":31865,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Saguaro (AZ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"byronmurphy\",\"birth_date\":\"1998-01-18\",\"espn_id\":4038999},\"3655\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reginald\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"diggs\",\"depth_chart_position\":null,\"player_id\":\"3655\",\"birth_city\":null,\"fantasy_data_id\":18448,\"years_exp\":1,\"hashtag\":\"#ReginaldDiggs-NFL-FA-17\",\"search_first_name\":\"reginald\",\"rotowire_id\":11264,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Reginald Diggs\",\"sportradar_id\":\"4f24211d-94b6-4245-bb2e-7c8eca00e819\",\"pandascore_id\":null,\"yahoo_id\":29690,\"last_name\":\"Diggs\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":659357,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'4\\\"\",\"search_full_name\":\"reginalddiggs\",\"birth_date\":\"1993-05-08\",\"espn_id\":null},\"4606\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033765\",\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605407161051,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":null,\"player_id\":\"4606\",\"birth_city\":null,\"fantasy_data_id\":19496,\"years_exp\":3,\"hashtag\":\"#DylanCole-NFL-HOU-51\",\"search_first_name\":\"dylan\",\"rotowire_id\":12410,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1269,\"age\":26,\"full_name\":\"Dylan Cole\",\"sportradar_id\":\"1817f16b-5ff3-4d64-8d7a-f64e02f5a033\",\"pandascore_id\":null,\"yahoo_id\":30799,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"Missouri State\",\"high_school\":\"Logan-Rogersville (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dylancole\",\"birth_date\":\"1994-05-19\",\"espn_id\":2986109},\"7000\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chapelle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602616548974,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"russell\",\"depth_chart_position\":\"RILB\",\"player_id\":\"7000\",\"birth_city\":null,\"fantasy_data_id\":22006,\"years_exp\":0,\"hashtag\":\"#ChapelleRussell-NFL-TB-53\",\"search_first_name\":\"chapelle\",\"rotowire_id\":14755,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1879,\"age\":23,\"full_name\":\"Chapelle Russell\",\"sportradar_id\":\"6a2ee9da-4df9-4486-8060-8362a20bbb40\",\"pandascore_id\":null,\"yahoo_id\":32911,\"last_name\":\"Russell\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Lakewood (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chapellerussell\",\"birth_date\":\"1997-01-20\",\"espn_id\":3923413},\"5546\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034188\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535832924513,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meadows\",\"depth_chart_position\":null,\"player_id\":\"5546\",\"birth_city\":null,\"fantasy_data_id\":20572,\"years_exp\":2,\"hashtag\":\"#KyleMeadows-NFL-FA-72\",\"search_first_name\":\"kyle\",\"rotowire_id\":13116,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyle Meadows\",\"sportradar_id\":\"f8ba56d5-ba8f-4ed0-92bc-e850c619bb80\",\"pandascore_id\":null,\"yahoo_id\":31438,\"last_name\":\"Meadows\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kylemeadows\",\"birth_date\":\"1994-11-03\",\"espn_id\":3053777},\"6627\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035409\",\"first_name\":\"Shy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1578567949408,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tuttle\",\"depth_chart_position\":\"NT\",\"player_id\":\"6627\",\"birth_city\":null,\"fantasy_data_id\":21422,\"years_exp\":1,\"hashtag\":\"#ShyTuttle-NFL-NO-99\",\"search_first_name\":\"shy\",\"rotowire_id\":14286,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1731,\"age\":25,\"full_name\":\"Shy Tuttle\",\"sportradar_id\":\"c8fb3887-c2bb-4038-af6f-f9b81aeee0ac\",\"pandascore_id\":null,\"yahoo_id\":32497,\"last_name\":\"Tuttle\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"North Davidson (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shytuttle\",\"birth_date\":\"1995-10-20\",\"espn_id\":3886601},\"1856\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031018\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1536619505638,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"george\",\"depth_chart_position\":null,\"player_id\":\"1856\",\"birth_city\":null,\"fantasy_data_id\":16065,\"years_exp\":6,\"hashtag\":\"#JeremiahGeorge-NFL-FA-59\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":9388,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeremiah George\",\"sportradar_id\":\"94d5430e-41b9-4b3f-af7e-4d25bd6da4be\",\"pandascore_id\":null,\"yahoo_id\":27682,\"last_name\":\"George\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Clearwater (FL)\",\"depth_chart_order\":null,\"stats_id\":555732,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jeremiahgeorge\",\"birth_date\":\"1992-01-24\",\"espn_id\":16897},\"3877\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelsey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"3877\",\"birth_city\":null,\"fantasy_data_id\":18699,\"years_exp\":0,\"hashtag\":\"#KelseyYoung-NFL-FA-32\",\"search_first_name\":\"kelsey\",\"rotowire_id\":11394,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kelsey Young\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30005,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kelseyyoung\",\"birth_date\":\"1993-05-04\",\"espn_id\":null},\"58\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025418\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606251954100,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"olsen\",\"depth_chart_position\":\"TE\",\"player_id\":\"58\",\"birth_city\":null,\"fantasy_data_id\":1658,\"years_exp\":13,\"hashtag\":\"#GregOlsen-NFL-SEA-88\",\"search_first_name\":\"greg\",\"rotowire_id\":5206,\"rotoworld_id\":4190,\"active\":true,\"search_rank\":302,\"age\":35,\"full_name\":\"Greg Olsen\",\"sportradar_id\":\"587d0a98-7ec5-45a5-adba-8af26e8f256b\",\"pandascore_id\":null,\"yahoo_id\":8285,\"last_name\":\"Olsen\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Wayne Hills (NJ)\",\"depth_chart_order\":4,\"stats_id\":230925,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"gregolsen\",\"birth_date\":\"1985-03-11\",\"espn_id\":10475},\"3130\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547661328766,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"defilippo\",\"depth_chart_position\":null,\"player_id\":\"3130\",\"birth_city\":null,\"fantasy_data_id\":17884,\"years_exp\":0,\"hashtag\":\"#JohnDefilippo-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":10342,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Defilippo\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Defilippo\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johndefilippo\",\"birth_date\":null,\"espn_id\":null},\"590\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wootton\",\"depth_chart_position\":null,\"player_id\":\"590\",\"birth_city\":null,\"fantasy_data_id\":11370,\"years_exp\":6,\"hashtag\":\"#CoreyWootton-NFL-FA-99\",\"search_first_name\":\"corey\",\"rotowire_id\":6575,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Corey Wootton\",\"sportradar_id\":\"bc2df468-802e-473d-a9d5-3acf25e23158\",\"pandascore_id\":null,\"yahoo_id\":24084,\"last_name\":\"Wootton\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'6\\\"\",\"search_full_name\":\"coreywootton\",\"birth_date\":\"1987-06-22\",\"espn_id\":13494},\"320\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darnell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dockett\",\"depth_chart_position\":null,\"player_id\":\"320\",\"birth_city\":null,\"fantasy_data_id\":7816,\"years_exp\":12,\"hashtag\":\"#DarnellDockett-NFL-FA-90\",\"search_first_name\":\"darnell\",\"rotowire_id\":null,\"rotoworld_id\":2800,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Darnell Dockett\",\"sportradar_id\":\"04a04302-9d18-4a66-b047-61ae9c83c137\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dockett\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"darnelldockett\",\"birth_date\":\"1981-05-27\",\"espn_id\":5589},\"754\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027723\",\"first_name\":\"Al\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596210016569,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"woods\",\"depth_chart_position\":null,\"player_id\":\"754\",\"birth_city\":null,\"fantasy_data_id\":12450,\"years_exp\":10,\"hashtag\":\"#AlWoods-NFL-JAX-97\",\"search_first_name\":\"al\",\"rotowire_id\":6714,\"rotoworld_id\":5903,\"active\":true,\"search_rank\":622,\"age\":33,\"full_name\":\"Al Woods\",\"sportradar_id\":\"7011a0e7-f402-4bc0-bba3-b31d3613e47f\",\"pandascore_id\":null,\"yahoo_id\":24098,\"last_name\":\"Woods\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Elton (LA)\",\"depth_chart_order\":null,\"stats_id\":323244,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alwoods\",\"birth_date\":\"1987-03-25\",\"espn_id\":13493},\"4735\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034009\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565795405104,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"4735\",\"birth_city\":null,\"fantasy_data_id\":19650,\"years_exp\":3,\"hashtag\":\"#AlexJenkins-NFL-FA-98\",\"search_first_name\":\"alex\",\"rotowire_id\":12761,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Alex Jenkins\",\"sportradar_id\":\"399071d5-6918-40ad-9f1b-8ee787ee8cd2\",\"pandascore_id\":null,\"yahoo_id\":30880,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Incarnate Word\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"alexjenkins\",\"birth_date\":\"1993-01-15\",\"espn_id\":3049426},\"4761\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033997\",\"first_name\":\"Brady\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599193855141,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sheldon\",\"depth_chart_position\":null,\"player_id\":\"4761\",\"birth_city\":null,\"fantasy_data_id\":19679,\"years_exp\":3,\"hashtag\":\"#BradySheldon-NFL-FA-0\",\"search_first_name\":\"brady\",\"rotowire_id\":12295,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brady Sheldon\",\"sportradar_id\":\"1aec5d74-58c8-4bf2-9508-f09e6384952c\",\"pandascore_id\":null,\"yahoo_id\":30904,\"last_name\":\"Sheldon\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bradysheldon\",\"birth_date\":\"1993-02-23\",\"espn_id\":3057876},\"5756\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034795\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599338457451,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dickerson\",\"depth_chart_position\":\"TE\",\"player_id\":\"5756\",\"birth_city\":null,\"fantasy_data_id\":20663,\"years_exp\":2,\"hashtag\":\"#GarrettDickerson-NFL-FA-0\",\"search_first_name\":\"garrett\",\"rotowire_id\":13357,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1505,\"age\":24,\"full_name\":\"Garrett Dickerson\",\"sportradar_id\":\"a9a138f8-372d-4d49-9e6e-5e423ce885fb\",\"pandascore_id\":null,\"yahoo_id\":31751,\"last_name\":\"Dickerson\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":12,\"stats_id\":830838,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrettdickerson\",\"birth_date\":\"1995-12-30\",\"espn_id\":3116132},\"923\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028031\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1537980303382,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"conte\",\"depth_chart_position\":null,\"player_id\":\"923\",\"birth_city\":null,\"fantasy_data_id\":13188,\"years_exp\":9,\"hashtag\":\"#ChrisConte-NFL-FA-23\",\"search_first_name\":\"chris\",\"rotowire_id\":7539,\"rotoworld_id\":6629,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Chris Conte\",\"sportradar_id\":\"c10e08b6-33a7-4233-8628-29b40d1183ea\",\"pandascore_id\":null,\"yahoo_id\":24880,\"last_name\":\"Conte\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Loyola (CA)\",\"depth_chart_order\":null,\"stats_id\":401723,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisconte\",\"birth_date\":\"1989-02-23\",\"espn_id\":14016},\"945\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cone\",\"depth_chart_position\":null,\"player_id\":\"945\",\"birth_city\":null,\"fantasy_data_id\":13282,\"years_exp\":3,\"hashtag\":\"#KevinCone-NFL-FA-14\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kevin Cone\",\"sportradar_id\":\"1f026b72-5d1a-4c7b-a1ef-1ef89b054e56\",\"pandascore_id\":null,\"yahoo_id\":25658,\"last_name\":\"Cone\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":447492,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevincone\",\"birth_date\":\"1988-03-20\",\"espn_id\":14818},\"830\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027942\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606089635147,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":\"SWR\",\"player_id\":\"830\",\"birth_city\":null,\"fantasy_data_id\":12845,\"years_exp\":9,\"hashtag\":\"#AJGreen-NFL-CIN-18\",\"search_first_name\":\"aj\",\"rotowire_id\":7241,\"rotoworld_id\":6438,\"active\":true,\"search_rank\":70,\"age\":32,\"full_name\":\"A.J. Green\",\"sportradar_id\":\"c9701373-23f6-4058-9189-8d9c085f3c49\",\"pandascore_id\":null,\"yahoo_id\":24791,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Summerville (SC)\",\"depth_chart_order\":1,\"stats_id\":458093,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ajgreen\",\"birth_date\":\"1988-07-31\",\"espn_id\":13983},\"6581\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035521\",\"first_name\":\"Derick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604534728995,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roberson\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6581\",\"birth_city\":null,\"fantasy_data_id\":21360,\"years_exp\":1,\"hashtag\":\"#DerickRoberson-NFL-TEN-50\",\"search_first_name\":\"derick\",\"rotowire_id\":13774,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1722,\"age\":25,\"full_name\":\"Derick Roberson\",\"sportradar_id\":\"8f442456-427c-4d96-8596-a7928074a094\",\"pandascore_id\":null,\"yahoo_id\":32427,\"last_name\":\"Roberson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Sam Houston State\",\"high_school\":\"Brennan (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derickroberson\",\"birth_date\":\"1995-11-15\",\"espn_id\":3125126},\"5384\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034504\",\"first_name\":\"Jonah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535665807659,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trinnaman\",\"depth_chart_position\":null,\"player_id\":\"5384\",\"birth_city\":null,\"fantasy_data_id\":20463,\"years_exp\":2,\"hashtag\":\"#JonahTrinnaman-NFL-FA-9\",\"search_first_name\":\"jonah\",\"rotowire_id\":13221,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jonah Trinnaman\",\"sportradar_id\":\"8ef4eb3a-9f85-464c-8184-1fd4b8999478\",\"pandascore_id\":null,\"yahoo_id\":31323,\"last_name\":\"Trinnaman\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":945466,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonahtrinnaman\",\"birth_date\":\"1996-07-20\",\"espn_id\":4046666},\"1015\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jed\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"1015\",\"birth_city\":null,\"fantasy_data_id\":13661,\"years_exp\":4,\"hashtag\":\"#JedCollins-NFL-FA-45\",\"search_first_name\":\"jed\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jed Collins\",\"sportradar_id\":\"67f976f5-1f14-4f5f-a5f1-917cf6c3b807\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":272731,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jedcollins\",\"birth_date\":\"1986-03-03\",\"espn_id\":11517},\"2075\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dustin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vaughan\",\"depth_chart_position\":null,\"player_id\":\"2075\",\"birth_city\":null,\"fantasy_data_id\":16382,\"years_exp\":5,\"hashtag\":\"#DustinVaughan-NFL-FA-2\",\"search_first_name\":\"dustin\",\"rotowire_id\":9678,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dustin Vaughan\",\"sportradar_id\":\"5758c325-819c-4f83-9ad2-b0376348884f\",\"pandascore_id\":null,\"yahoo_id\":28142,\"last_name\":\"Vaughan\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":794256,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dustinvaughan\",\"birth_date\":\"1991-01-27\",\"espn_id\":17337},\"1985\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcel\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jensen\",\"depth_chart_position\":null,\"player_id\":\"1985\",\"birth_city\":null,\"fantasy_data_id\":16254,\"years_exp\":6,\"hashtag\":\"#MarcelJensen-NFL-FA-83\",\"search_first_name\":\"marcel\",\"rotowire_id\":9683,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Marcel Jensen\",\"sportradar_id\":\"ad9badc2-77a4-4f87-8f5a-060863780b30\",\"pandascore_id\":null,\"yahoo_id\":27875,\"last_name\":\"Jensen\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Rodriguez (CA)\",\"depth_chart_order\":null,\"stats_id\":496105,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'6\\\"\",\"search_full_name\":\"marceljensen\",\"birth_date\":\"1990-02-12\",\"espn_id\":17183},\"4375\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033351\",\"first_name\":\"Johnathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1539131703378,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"calvin\",\"depth_chart_position\":null,\"player_id\":\"4375\",\"birth_city\":null,\"fantasy_data_id\":19232,\"years_exp\":3,\"hashtag\":\"#JohnathanCalvin-NFL-FA-56\",\"search_first_name\":\"johnathan\",\"rotowire_id\":12515,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Johnathan Calvin\",\"sportradar_id\":\"911991de-37c3-4fcd-9896-80d1fb0b6112\",\"pandascore_id\":null,\"yahoo_id\":30608,\"last_name\":\"Calvin\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnathancalvin\",\"birth_date\":\"1993-11-28\",\"espn_id\":3894927},\"769\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"norwood\",\"depth_chart_position\":null,\"player_id\":\"769\",\"birth_city\":null,\"fantasy_data_id\":12551,\"years_exp\":11,\"hashtag\":\"#JordanNorwood-NFL-FA-11\",\"search_first_name\":\"jordan\",\"rotowire_id\":6375,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jordan Norwood\",\"sportradar_id\":\"fa83b20f-9528-43a0-ab8c-45072ad3942c\",\"pandascore_id\":null,\"yahoo_id\":9705,\"last_name\":\"Norwood\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"State Collage Area (PA)\",\"depth_chart_order\":null,\"stats_id\":301585,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordannorwood\",\"birth_date\":\"1986-09-28\",\"espn_id\":12587},\"1385\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stoudermire\",\"depth_chart_position\":null,\"player_id\":\"1385\",\"birth_city\":null,\"fantasy_data_id\":14913,\"years_exp\":1,\"hashtag\":\"#TroyStoudermire-NFL-FA-1\",\"search_first_name\":\"troy\",\"rotowire_id\":11600,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Troy Stoudermire\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":27116,\"last_name\":\"Stoudermire\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'10\\\"\",\"search_full_name\":\"troystoudermire\",\"birth_date\":\"1990-07-01\",\"espn_id\":16280},\"7239\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clay\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cordasco\",\"depth_chart_position\":null,\"player_id\":\"7239\",\"birth_city\":null,\"fantasy_data_id\":22240,\"years_exp\":0,\"hashtag\":\"#ClayCordasco-NFL-FA-0\",\"search_first_name\":\"clay\",\"rotowire_id\":15004,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Clay Cordasco\",\"sportradar_id\":\"c494d58e-f780-4477-a197-0cc45cb0d237\",\"pandascore_id\":null,\"yahoo_id\":33204,\"last_name\":\"Cordasco\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"claycordasco\",\"birth_date\":\"1996-04-28\",\"espn_id\":4256002},\"1440\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bjoern\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"werner\",\"depth_chart_position\":null,\"player_id\":\"1440\",\"birth_city\":null,\"fantasy_data_id\":15009,\"years_exp\":7,\"hashtag\":\"#BjoernWerner-NFL-FA-45\",\"search_first_name\":\"bjoern\",\"rotowire_id\":8653,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Bjoern Werner\",\"sportradar_id\":\"77799fc2-b3dd-48e8-b3cf-7f361026c23b\",\"pandascore_id\":null,\"yahoo_id\":26647,\"last_name\":\"Werner\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Salisbury (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bjoernwerner\",\"birth_date\":\"1990-08-30\",\"espn_id\":15815},\"1155\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"1155\",\"birth_city\":null,\"fantasy_data_id\":14209,\"years_exp\":3,\"hashtag\":\"#JonteGreen-NFL-FA-36\",\"search_first_name\":\"jonte\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jonte Green\",\"sportradar_id\":\"65a01fae-a39c-4807-8a1f-41eea5be7523\",\"pandascore_id\":null,\"yahoo_id\":25906,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jontegreen\",\"birth_date\":\"1989-07-19\",\"espn_id\":15128},\"1791\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Karim\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barton\",\"depth_chart_position\":null,\"player_id\":\"1791\",\"birth_city\":null,\"fantasy_data_id\":15963,\"years_exp\":5,\"hashtag\":\"#KarimBarton-NFL-FA-71\",\"search_first_name\":\"karim\",\"rotowire_id\":10137,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Karim Barton\",\"sportradar_id\":\"50598f3d-1319-470d-8e67-8859dc9ef269\",\"pandascore_id\":null,\"yahoo_id\":27787,\"last_name\":\"Barton\",\"metadata\":null,\"college\":\"Morgan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"karimbarton\",\"birth_date\":\"1991-12-13\",\"espn_id\":16968},\"7351\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kirk\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604976330436,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"merritt\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7351\",\"birth_city\":null,\"fantasy_data_id\":22339,\"years_exp\":0,\"hashtag\":\"#KirkMerritt-NFL-MIA-83\",\"search_first_name\":\"kirk\",\"rotowire_id\":14861,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1984,\"age\":23,\"full_name\":\"Kirk Merritt\",\"sportradar_id\":\"521f597a-0709-4cc4-afab-72d93eccb5fc\",\"pandascore_id\":null,\"yahoo_id\":33242,\"last_name\":\"Merritt\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Destrehan (LA)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kirkmerritt\",\"birth_date\":\"1997-01-05\",\"espn_id\":3915145},\"5478\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034525\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"motuapuaka\",\"depth_chart_position\":null,\"player_id\":\"5478\",\"birth_city\":null,\"fantasy_data_id\":20459,\"years_exp\":2,\"hashtag\":\"#AndrewMotuapuaka-NFL-FA-45\",\"search_first_name\":\"andrew\",\"rotowire_id\":13043,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andrew Motuapuaka\",\"sportradar_id\":\"a8912b9a-e400-4f2e-be47-59e17b4ddf2d\",\"pandascore_id\":null,\"yahoo_id\":31272,\"last_name\":\"Motuapuaka\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andrewmotuapuaka\",\"birth_date\":\"1995-06-29\",\"espn_id\":3045469},\"1754\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1510084201233,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lelito\",\"depth_chart_position\":null,\"player_id\":\"1754\",\"birth_city\":null,\"fantasy_data_id\":15771,\"years_exp\":7,\"hashtag\":\"#TimLelito-NFL-FA-63\",\"search_first_name\":\"tim\",\"rotowire_id\":9115,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Tim Lelito\",\"sportradar_id\":\"cf301e4c-f4e9-4f7a-aed6-61880af7fd16\",\"pandascore_id\":null,\"yahoo_id\":26952,\"last_name\":\"Lelito\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":\"East China School District (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"timlelito\",\"birth_date\":\"1989-07-21\",\"espn_id\":16146},\"2567\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bennett\",\"depth_chart_position\":null,\"player_id\":\"2567\",\"birth_city\":null,\"fantasy_data_id\":17031,\"years_exp\":0,\"hashtag\":\"#BryanBennett-NFL-FA-7\",\"search_first_name\":\"bryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bryan Bennett\",\"sportradar_id\":\"2aefdaa8-aeb3-4fe9-8df8-fcb0e7faae22\",\"pandascore_id\":null,\"yahoo_id\":28739,\"last_name\":\"Bennett\",\"metadata\":null,\"college\":\"Southeastern Louisiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555659,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bryanbennett\",\"birth_date\":\"1992-03-06\",\"espn_id\":2516976},\"936\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028198\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"asiata\",\"depth_chart_position\":null,\"player_id\":\"936\",\"birth_city\":null,\"fantasy_data_id\":13255,\"years_exp\":9,\"hashtag\":\"#MattAsiata-NFL-FA-41\",\"search_first_name\":\"matt\",\"rotowire_id\":7666,\"rotoworld_id\":6958,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Matt Asiata\",\"sportradar_id\":\"65b991ed-ad0c-41d8-bbe0-95fc147c9441\",\"pandascore_id\":null,\"yahoo_id\":25238,\"last_name\":\"Asiata\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Hunter (UT)\",\"depth_chart_order\":null,\"stats_id\":383504,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mattasiata\",\"birth_date\":\"1987-07-24\",\"espn_id\":14360},\"2806\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031815\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1521268202015,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":null,\"player_id\":\"2806\",\"birth_city\":null,\"fantasy_data_id\":17274,\"years_exp\":5,\"hashtag\":\"#CameronLynch-NFL-FA-52\",\"search_first_name\":\"cameron\",\"rotowire_id\":10688,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cameron Lynch\",\"sportradar_id\":\"b882eddd-10fc-4cc0-9a8f-ca2d6db0c6fc\",\"pandascore_id\":null,\"yahoo_id\":28999,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Brookwood (GA)\",\"depth_chart_order\":null,\"stats_id\":607259,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'0\\\"\",\"search_full_name\":\"cameronlynch\",\"birth_date\":\"1993-08-04\",\"espn_id\":2577602},\"2982\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032043\",\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604069738418,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"spain\",\"depth_chart_position\":\"LG\",\"player_id\":\"2982\",\"birth_city\":null,\"fantasy_data_id\":17486,\"years_exp\":5,\"hashtag\":\"#QuintonSpain-NFL-CIN-67\",\"search_first_name\":\"quinton\",\"rotowire_id\":10303,\"rotoworld_id\":11068,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Quinton Spain\",\"sportradar_id\":\"1374a32a-6215-4ba7-ba0f-a26d24535059\",\"pandascore_id\":null,\"yahoo_id\":29063,\"last_name\":\"Spain\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Petersburg (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"quintonspain\",\"birth_date\":\"1991-08-07\",\"espn_id\":2515319},\"6089\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035428\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605909603305,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"helm\",\"depth_chart_position\":\"TE\",\"player_id\":\"6089\",\"birth_city\":null,\"fantasy_data_id\":20797,\"years_exp\":1,\"hashtag\":\"#DanielHelm-NFL-SF-88\",\"search_first_name\":\"daniel\",\"rotowire_id\":13685,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Daniel Helm\",\"sportradar_id\":\"7f48c754-002d-4d0c-ba40-8c402f95a7c4\",\"pandascore_id\":null,\"yahoo_id\":32543,\"last_name\":\"Helm\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Glenwood (IL)\",\"depth_chart_order\":5,\"stats_id\":820720,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danielhelm\",\"birth_date\":\"1995-04-20\",\"espn_id\":3115359},\"4599\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rector\",\"depth_chart_position\":null,\"player_id\":\"4599\",\"birth_city\":null,\"fantasy_data_id\":19487,\"years_exp\":2,\"hashtag\":\"#MichaelRector-NFL-FA-84\",\"search_first_name\":\"michael\",\"rotowire_id\":11870,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Michael Rector\",\"sportradar_id\":\"8e8f0a5c-2e26-4638-a303-6809eb738795\",\"pandascore_id\":null,\"yahoo_id\":30773,\"last_name\":\"Rector\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691014,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelrector\",\"birth_date\":\"1993-12-16\",\"espn_id\":2978279},\"4009\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dominik\",\"depth_chart_position\":null,\"player_id\":\"4009\",\"birth_city\":null,\"fantasy_data_id\":18848,\"years_exp\":0,\"hashtag\":\"#MarkDominik-NFL-FA-0\",\"search_first_name\":\"mark\",\"rotowire_id\":null,\"rotoworld_id\":12158,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mark Dominik\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dominik\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"markdominik\",\"birth_date\":null,\"espn_id\":null},\"6188\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035218\",\"first_name\":\"Sutton\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1595800212946,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6188\",\"birth_city\":null,\"fantasy_data_id\":20948,\"years_exp\":1,\"hashtag\":\"#SuttonSmith-NFL-FA-0\",\"search_first_name\":\"sutton\",\"rotowire_id\":13462,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Sutton Smith\",\"sportradar_id\":\"50ffb7df-ae23-4211-a495-3beac62a6522\",\"pandascore_id\":null,\"yahoo_id\":32007,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":885862,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"suttonsmith\",\"birth_date\":\"1996-03-22\",\"espn_id\":3921970},\"7347\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Juju\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602630049916,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":\"SS\",\"player_id\":\"7347\",\"birth_city\":null,\"fantasy_data_id\":22335,\"years_exp\":0,\"hashtag\":\"#JujuHughes-NFL-LAR-46\",\"search_first_name\":\"juju\",\"rotowire_id\":15130,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Juju Hughes\",\"sportradar_id\":\"d014789f-6cc0-435b-bd18-9faaf12ffd6e\",\"pandascore_id\":null,\"yahoo_id\":33296,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Hanford (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jujuhughes\",\"birth_date\":\"1998-07-19\",\"espn_id\":4040901},\"5644\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fields\",\"depth_chart_position\":null,\"player_id\":\"5644\",\"birth_city\":null,\"fantasy_data_id\":20503,\"years_exp\":0,\"hashtag\":\"#BryonFields-NFL-NYG-43\",\"search_first_name\":\"bryon\",\"rotowire_id\":13184,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bryon Fields\",\"sportradar_id\":\"7e84ea1f-b59a-48cd-9bce-513190fef260\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fields\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bryonfields\",\"birth_date\":null,\"espn_id\":3048659},\"1406\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunn\",\"depth_chart_position\":null,\"player_id\":\"1406\",\"birth_city\":null,\"fantasy_data_id\":14954,\"years_exp\":1,\"hashtag\":\"#ReggieDunn-NFL-FA-17\",\"search_first_name\":\"reggie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Reggie Dunn\",\"sportradar_id\":\"ad38088f-ce13-45aa-b410-ffd13c87d730\",\"pandascore_id\":null,\"yahoo_id\":26905,\"last_name\":\"Dunn\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":399405,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'9\\\"\",\"search_full_name\":\"reggiedunn\",\"birth_date\":\"1989-01-05\",\"espn_id\":16059},\"5081\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034682\",\"first_name\":\"Genard\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606275655826,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"avery\",\"depth_chart_position\":null,\"player_id\":\"5081\",\"birth_city\":null,\"fantasy_data_id\":19970,\"years_exp\":2,\"hashtag\":\"#GenardAvery-NFL-PHI-58\",\"search_first_name\":\"genard\",\"rotowire_id\":12916,\"rotoworld_id\":13183,\"active\":true,\"search_rank\":1374,\"age\":25,\"full_name\":\"Genard Avery\",\"sportradar_id\":\"a56b9958-2eb9-47d2-a50e-be8aeaea3eaf\",\"pandascore_id\":null,\"yahoo_id\":31120,\"last_name\":\"Avery\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Grenada (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"genardavery\",\"birth_date\":\"1995-04-26\",\"espn_id\":3126204},\"562\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.D.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walton\",\"depth_chart_position\":null,\"player_id\":\"562\",\"birth_city\":null,\"fantasy_data_id\":11200,\"years_exp\":10,\"hashtag\":\"#JDWalton-NFL-FA-66\",\"search_first_name\":\"jd\",\"rotowire_id\":6564,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"J.D. Walton\",\"sportradar_id\":\"2ba94880-d59e-4efb-8de9-abb432286614\",\"pandascore_id\":null,\"yahoo_id\":24055,\"last_name\":\"Walton\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Allen (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jdwalton\",\"birth_date\":\"1987-03-24\",\"espn_id\":16694},\"5674\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034623\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598326553634,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chachere\",\"depth_chart_position\":null,\"player_id\":\"5674\",\"birth_city\":null,\"fantasy_data_id\":20604,\"years_exp\":2,\"hashtag\":\"#AndreChachere-NFL-IND-22\",\"search_first_name\":\"andre\",\"rotowire_id\":12922,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1498,\"age\":24,\"full_name\":\"Andre Chachere\",\"sportradar_id\":\"9fe24e8f-360b-4ca6-8e46-6d60d8728efa\",\"pandascore_id\":null,\"yahoo_id\":31573,\"last_name\":\"Chachere\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Clovis West (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andrechachere\",\"birth_date\":\"1996-02-10\",\"espn_id\":3125287},\"3708\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kragen\",\"depth_chart_position\":null,\"player_id\":\"3708\",\"birth_city\":null,\"fantasy_data_id\":18514,\"years_exp\":1,\"hashtag\":\"#KyleKragen-NFL-FA-0\",\"search_first_name\":\"kyle\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyle Kragen\",\"sportradar_id\":\"41459b5a-2251-4139-ba35-fa4d682d4bd0\",\"pandascore_id\":null,\"yahoo_id\":29922,\"last_name\":\"Kragen\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylekragen\",\"birth_date\":\"1993-02-01\",\"espn_id\":null},\"3116\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vance\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547237109063,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":null,\"player_id\":\"3116\",\"birth_city\":null,\"fantasy_data_id\":17869,\"years_exp\":0,\"hashtag\":\"#VanceJoseph-NFL-FA-0\",\"search_first_name\":\"vance\",\"rotowire_id\":null,\"rotoworld_id\":10328,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Vance Joseph\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"vancejoseph\",\"birth_date\":null,\"espn_id\":null},\"6098\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035143\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1579133736916,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burrkirven\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"6098\",\"birth_city\":null,\"fantasy_data_id\":21053,\"years_exp\":1,\"hashtag\":\"#BenBurrKirven-NFL-SEA-55\",\"search_first_name\":\"ben\",\"rotowire_id\":13844,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1651,\"age\":23,\"full_name\":\"Ben Burr-Kirven\",\"sportradar_id\":\"8fe853ae-184e-4c65-a00e-70d2f141504f\",\"pandascore_id\":null,\"yahoo_id\":31974,\"last_name\":\"Burr-Kirven\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Sacred Heart Prep (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"benburrkirven\",\"birth_date\":\"1997-09-08\",\"espn_id\":3886816},\"3852\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033006\",\"first_name\":\"Jaydon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605458410666,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"mickens\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3852\",\"birth_city\":null,\"fantasy_data_id\":18673,\"years_exp\":4,\"hashtag\":\"#JaydonMickens-NFL-TB-85\",\"search_first_name\":\"jaydon\",\"rotowire_id\":11213,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1108,\"age\":26,\"full_name\":\"Jaydon Mickens\",\"sportradar_id\":\"a0498a95-9dc3-4df5-8f51-a1564fb3de57\",\"pandascore_id\":null,\"yahoo_id\":29978,\"last_name\":\"Mickens\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Dorsey (CA)\",\"depth_chart_order\":3,\"stats_id\":695199,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jaydonmickens\",\"birth_date\":\"1994-04-21\",\"espn_id\":2978308},\"5684\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034650\",\"first_name\":\"Jojo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535233238942,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wicker\",\"depth_chart_position\":null,\"player_id\":\"5684\",\"birth_city\":null,\"fantasy_data_id\":20130,\"years_exp\":2,\"hashtag\":\"#JojoWicker-NFL-FA-95\",\"search_first_name\":\"jojo\",\"rotowire_id\":12554,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jojo Wicker\",\"sportradar_id\":\"63ed4efa-6dcd-40f5-ae8a-d6221ac0ead5\",\"pandascore_id\":null,\"yahoo_id\":31645,\"last_name\":\"Wicker\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":865660,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jojowicker\",\"birth_date\":\"1996-06-09\",\"espn_id\":3676003},\"5725\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034719\",\"first_name\":\"Tobenna\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okeke\",\"depth_chart_position\":null,\"player_id\":\"5725\",\"birth_city\":null,\"fantasy_data_id\":20645,\"years_exp\":2,\"hashtag\":\"#TobennaOkeke-NFL-FA-49\",\"search_first_name\":\"tobenna\",\"rotowire_id\":13307,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tobenna Okeke\",\"sportradar_id\":\"0bfa4f27-7a00-438a-a0c9-20fbf0be3370\",\"pandascore_id\":null,\"yahoo_id\":31709,\"last_name\":\"Okeke\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tobennaokeke\",\"birth_date\":\"1996-07-17\",\"espn_id\":3124544},\"986\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0027945\",\"first_name\":\"Aldon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1604867119858,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"DPR\",\"player_id\":\"986\",\"birth_city\":null,\"fantasy_data_id\":13453,\"years_exp\":9,\"hashtag\":\"#AldonSmith-NFL-DAL-58\",\"search_first_name\":\"aldon\",\"rotowire_id\":7446,\"rotoworld_id\":6477,\"active\":true,\"search_rank\":648,\"age\":31,\"full_name\":\"Aldon Smith\",\"sportradar_id\":\"3d22209a-9800-4199-aa36-b9c86c86455b\",\"pandascore_id\":null,\"yahoo_id\":24794,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Raytown (MO)\",\"depth_chart_order\":1,\"stats_id\":463434,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aldonsmith\",\"birth_date\":\"1989-09-25\",\"espn_id\":13988},\"5960\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035386\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605552618790,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":\"MLB\",\"player_id\":\"5960\",\"birth_city\":null,\"fantasy_data_id\":20749,\"years_exp\":1,\"hashtag\":\"#TJEdwards-NFL-PHI-57\",\"search_first_name\":\"tj\",\"rotowire_id\":13460,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1526,\"age\":24,\"full_name\":\"T.J. Edwards\",\"sportradar_id\":\"a7b4b50a-9431-4551-89e1-6b8cb80536d7\",\"pandascore_id\":null,\"yahoo_id\":32403,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Lakes Community (IL)\",\"depth_chart_order\":2,\"stats_id\":836191,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tjedwards\",\"birth_date\":\"1996-08-12\",\"espn_id\":3121544},\"2686\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031922\",\"first_name\":\"Khari\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605037813970,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":\"TE\",\"player_id\":\"2686\",\"birth_city\":null,\"fantasy_data_id\":17154,\"years_exp\":5,\"hashtag\":\"#KhariLee-NFL-DET-86\",\"search_first_name\":\"khari\",\"rotowire_id\":10503,\"rotoworld_id\":null,\"active\":true,\"search_rank\":925,\"age\":28,\"full_name\":\"Khari Lee\",\"sportradar_id\":\"98a944cf-0fc3-4a0b-9011-490722667d37\",\"pandascore_id\":null,\"yahoo_id\":28893,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Bowie State\",\"high_school\":\"Western Tech (MD)\",\"depth_chart_order\":6,\"stats_id\":846695,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kharilee\",\"birth_date\":\"1992-01-16\",\"espn_id\":3144062},\"1339\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030061\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606579832423,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ertz\",\"depth_chart_position\":\"TE\",\"player_id\":\"1339\",\"birth_city\":null,\"fantasy_data_id\":14856,\"years_exp\":7,\"hashtag\":\"#ZachErtz-NFL-PHI-86\",\"search_first_name\":\"zach\",\"rotowire_id\":8781,\"rotoworld_id\":8409,\"active\":true,\"search_rank\":54,\"age\":30,\"full_name\":\"Zach Ertz\",\"sportradar_id\":\"de3421f7-2147-4835-89a5-724e87bad463\",\"pandascore_id\":null,\"yahoo_id\":26658,\"last_name\":\"Ertz\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Monte Vista (CA)\",\"depth_chart_order\":2,\"stats_id\":503177,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zachertz\",\"birth_date\":\"1990-11-10\",\"espn_id\":15835},\"1993\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030827\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584583826763,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shatley\",\"depth_chart_position\":\"C\",\"player_id\":\"1993\",\"birth_city\":null,\"fantasy_data_id\":16264,\"years_exp\":6,\"hashtag\":\"#TylerShatley-NFL-JAX-69\",\"search_first_name\":\"tyler\",\"rotowire_id\":9971,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tyler Shatley\",\"sportradar_id\":\"62ae1c72-f5ef-4c45-bac9-aac5569b034c\",\"pandascore_id\":null,\"yahoo_id\":27880,\"last_name\":\"Shatley\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"East Burke (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylershatley\",\"birth_date\":\"1991-05-05\",\"espn_id\":17037},\"3875\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nila\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kasitati\",\"depth_chart_position\":null,\"player_id\":\"3875\",\"birth_city\":null,\"fantasy_data_id\":18697,\"years_exp\":3,\"hashtag\":\"#NilaKasitati-NFL-FA-62\",\"search_first_name\":\"nila\",\"rotowire_id\":11086,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nila Kasitati\",\"sportradar_id\":\"32d58744-06fb-40f3-b4b8-8d6b0f887406\",\"pandascore_id\":null,\"yahoo_id\":30003,\"last_name\":\"Kasitati\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nilakasitati\",\"birth_date\":\"1993-04-25\",\"espn_id\":2577460},\"2405\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032107\",\"first_name\":\"Angelo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599413760065,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blackson\",\"depth_chart_position\":\"RDE\",\"player_id\":\"2405\",\"birth_city\":null,\"fantasy_data_id\":16861,\"years_exp\":5,\"hashtag\":\"#AngeloBlackson-NFL-ARI-96\",\"search_first_name\":\"angelo\",\"rotowire_id\":10453,\"rotoworld_id\":null,\"active\":true,\"search_rank\":886,\"age\":28,\"full_name\":\"Angelo Blackson\",\"sportradar_id\":\"e9799059-f592-47e8-aab3-e2027fe7b148\",\"pandascore_id\":null,\"yahoo_id\":28488,\"last_name\":\"Blackson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Red Lion Christian Academy (DE)\",\"depth_chart_order\":1,\"stats_id\":593288,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"angeloblackson\",\"birth_date\":\"1992-11-14\",\"espn_id\":2574582},\"954\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027939\",\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606577432579,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"newton\",\"depth_chart_position\":\"QB\",\"player_id\":\"954\",\"birth_city\":null,\"fantasy_data_id\":13320,\"years_exp\":9,\"hashtag\":\"#CamNewton-NFL-NE-1\",\"search_first_name\":\"cam\",\"rotowire_id\":7257,\"rotoworld_id\":6491,\"active\":true,\"search_rank\":118,\"age\":31,\"full_name\":\"Cam Newton\",\"sportradar_id\":\"214e55e4-a089-412d-9598-a16495df0d25\",\"pandascore_id\":null,\"yahoo_id\":24788,\"last_name\":\"Newton\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Auburn\",\"high_school\":\"Westlake (GA)\",\"depth_chart_order\":1,\"stats_id\":380750,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"camnewton\",\"birth_date\":\"1989-05-11\",\"espn_id\":13994},\"1020\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028825\",\"first_name\":\"Terrelle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1575246615206,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"pryor\",\"depth_chart_position\":null,\"player_id\":\"1020\",\"birth_city\":null,\"fantasy_data_id\":13693,\"years_exp\":9,\"hashtag\":\"#TerrellePryor-NFL-FA-10\",\"search_first_name\":\"terrelle\",\"rotowire_id\":7640,\"rotoworld_id\":6757,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Terrelle Pryor\",\"sportradar_id\":\"af48c3f0-040b-40f9-95ab-6ebcb4c16cf8\",\"pandascore_id\":null,\"yahoo_id\":25681,\"last_name\":\"Pryor\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Jeannette (PA)\",\"depth_chart_order\":null,\"stats_id\":457289,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"terrellepryor\",\"birth_date\":\"1989-06-20\",\"espn_id\":14851},\"3268\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033038\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599962454223,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":\"SS\",\"player_id\":\"3268\",\"birth_city\":null,\"fantasy_data_id\":18029,\"years_exp\":4,\"hashtag\":\"#EricMurray-NFL-HOU-23\",\"search_first_name\":\"eric\",\"rotowire_id\":11141,\"rotoworld_id\":null,\"active\":true,\"search_rank\":999,\"age\":26,\"full_name\":\"Eric Murray\",\"sportradar_id\":\"16e4ffec-959d-4210-8702-36c0bf20dda5\",\"pandascore_id\":null,\"yahoo_id\":29340,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Riverside (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ericmurray\",\"birth_date\":\"1994-01-07\",\"espn_id\":2970716},\"2601\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2601\",\"birth_city\":null,\"fantasy_data_id\":17069,\"years_exp\":1,\"hashtag\":\"#AndreDavis-NFL-FA-14\",\"search_first_name\":\"andre\",\"rotowire_id\":10591,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andre Davis\",\"sportradar_id\":\"decf0d7c-29e2-4b58-9c79-6ff67194b735\",\"pandascore_id\":null,\"yahoo_id\":28770,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606976,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andredavis\",\"birth_date\":\"1993-09-01\",\"espn_id\":2577480},\"7340\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693360082,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"polk\",\"depth_chart_position\":null,\"player_id\":\"7340\",\"birth_city\":null,\"fantasy_data_id\":22328,\"years_exp\":0,\"hashtag\":\"#BrandonPolk-NFL-FA-0\",\"search_first_name\":\"brandon\",\"rotowire_id\":14927,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Brandon Polk\",\"sportradar_id\":\"50ad1a94-be69-4c99-8bf2-005333ef8e1f\",\"pandascore_id\":null,\"yahoo_id\":33298,\"last_name\":\"Polk\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brandonpolk\",\"birth_date\":\"1996-12-10\",\"espn_id\":3929652},\"5638\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaq\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1529018101361,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roland\",\"depth_chart_position\":null,\"player_id\":\"5638\",\"birth_city\":null,\"fantasy_data_id\":20606,\"years_exp\":1,\"hashtag\":\"#ShaqRoland-NFL-CHI-6\",\"search_first_name\":\"shaq\",\"rotowire_id\":13242,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1104,\"age\":null,\"full_name\":\"Shaq Roland\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31665,\"last_name\":\"Roland\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694031,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shaqroland\",\"birth_date\":null,\"espn_id\":2978744},\"4523\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lucas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crowley\",\"depth_chart_position\":null,\"player_id\":\"4523\",\"birth_city\":null,\"fantasy_data_id\":19400,\"years_exp\":2,\"hashtag\":\"#LucasCrowley-NFL-FA-64\",\"search_first_name\":\"lucas\",\"rotowire_id\":12350,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lucas Crowley\",\"sportradar_id\":\"d851aa17-48e3-42ca-92b8-1cae7820f5fa\",\"pandascore_id\":null,\"yahoo_id\":30484,\"last_name\":\"Crowley\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lucascrowley\",\"birth_date\":\"1994-09-07\",\"espn_id\":3039716},\"6845\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606497003576,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moss\",\"depth_chart_position\":\"RB\",\"player_id\":\"6845\",\"birth_city\":null,\"fantasy_data_id\":21784,\"years_exp\":0,\"hashtag\":\"#ZackMoss-NFL-BUF-20\",\"search_first_name\":\"zack\",\"rotowire_id\":14564,\"rotoworld_id\":null,\"active\":true,\"search_rank\":74,\"age\":22,\"full_name\":\"Zack Moss\",\"sportradar_id\":\"d8fef424-aa41-4c26-9bce-1265b53cd5e2\",\"pandascore_id\":null,\"yahoo_id\":32756,\"last_name\":\"Moss\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Hallandale (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"zackmoss\",\"birth_date\":\"1997-12-15\",\"espn_id\":4035676},\"145\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashard\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mendenhall\",\"depth_chart_position\":null,\"player_id\":\"145\",\"birth_city\":null,\"fantasy_data_id\":3931,\"years_exp\":6,\"hashtag\":\"#RashardMendenhall-NFL-FA-28\",\"search_first_name\":\"rashard\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Rashard Mendenhall\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mendenhall\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rashardmendenhall\",\"birth_date\":\"1987-06-19\",\"espn_id\":null},\"4216\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033566\",\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604789409806,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":\"DB\",\"player_id\":\"4216\",\"birth_city\":null,\"fantasy_data_id\":19062,\"years_exp\":3,\"hashtag\":\"#DesmondKing-NFL-TEN-33\",\"search_first_name\":\"desmond\",\"rotowire_id\":11999,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1202,\"age\":25,\"full_name\":\"Desmond King\",\"sportradar_id\":\"1c41b4ac-bec1-4943-b0a3-5b57642faaaa\",\"pandascore_id\":null,\"yahoo_id\":30264,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"East English Village (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'10\\\"\",\"search_full_name\":\"desmondking\",\"birth_date\":\"1994-12-14\",\"espn_id\":3040145},\"7041\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1589297161225,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":\"RT\",\"player_id\":\"7041\",\"birth_city\":null,\"fantasy_data_id\":21943,\"years_exp\":0,\"hashtag\":\"#RobertHunt-NFL-MIA-68\",\"search_first_name\":\"robert\",\"rotowire_id\":14589,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Robert Hunt\",\"sportradar_id\":\"c7ebe543-7fec-4123-bc6e-b0d509af22a2\",\"pandascore_id\":null,\"yahoo_id\":32708,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Burkeville (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'5\\\"\",\"search_full_name\":\"roberthunt\",\"birth_date\":\"1996-08-25\",\"espn_id\":3917592},\"3315\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"KJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":null,\"player_id\":\"3315\",\"birth_city\":null,\"fantasy_data_id\":18076,\"years_exp\":3,\"hashtag\":\"#KJDillon-NFL-FA-47\",\"search_first_name\":\"kj\",\"rotowire_id\":11021,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"KJ Dillon\",\"sportradar_id\":\"44b6240a-f9bd-4680-8566-9fd8537d55b2\",\"pandascore_id\":null,\"yahoo_id\":29393,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691366,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kjdillon\",\"birth_date\":\"1994-05-11\",\"espn_id\":2976629},\"1094\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1094\",\"birth_city\":null,\"fantasy_data_id\":13946,\"years_exp\":8,\"hashtag\":\"#MikeMartin-NFL-FA-93\",\"search_first_name\":\"mike\",\"rotowire_id\":8161,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Mike Martin\",\"sportradar_id\":\"72953052-ee38-4833-b927-9dc0b2d2966b\",\"pandascore_id\":null,\"yahoo_id\":25792,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Detroit Catholic Central (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikemartin\",\"birth_date\":\"1990-01-09\",\"espn_id\":14988},\"6602\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035518\",\"first_name\":\"Braxton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605660626149,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hoyett\",\"depth_chart_position\":null,\"player_id\":\"6602\",\"birth_city\":null,\"fantasy_data_id\":21358,\"years_exp\":1,\"hashtag\":\"#BraxtonHoyett-NFL-KC-96\",\"search_first_name\":\"braxton\",\"rotowire_id\":14203,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1721,\"age\":24,\"full_name\":\"Braxton Hoyett\",\"sportradar_id\":\"457123e2-aeb5-41c7-b2a8-ddc42c04f977\",\"pandascore_id\":null,\"yahoo_id\":32424,\"last_name\":\"Hoyett\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Pelham (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"braxtonhoyett\",\"birth_date\":\"1996-02-05\",\"espn_id\":3115492},\"940\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028263\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1548285308876,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":null,\"player_id\":\"940\",\"birth_city\":null,\"fantasy_data_id\":13264,\"years_exp\":9,\"hashtag\":\"#AndreHolmes-NFL-FA-19\",\"search_first_name\":\"andre\",\"rotowire_id\":7405,\"rotoworld_id\":6954,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Andre Holmes\",\"sportradar_id\":\"996974b8-2e0a-47d9-90a7-c3455192d06b\",\"pandascore_id\":null,\"yahoo_id\":25234,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"Hillsdale\",\"high_school\":\"James B. Conant (IL)\",\"depth_chart_order\":null,\"stats_id\":557954,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andreholmes\",\"birth_date\":\"1988-06-16\",\"espn_id\":14403},\"1634\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weaver\",\"depth_chart_position\":null,\"player_id\":\"1634\",\"birth_city\":null,\"fantasy_data_id\":15366,\"years_exp\":2,\"hashtag\":\"#JasonWeaver-NFL-FA-0\",\"search_first_name\":\"jason\",\"rotowire_id\":9572,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jason Weaver\",\"sportradar_id\":\"c7d20767-3934-4375-b8b6-a430608d77e1\",\"pandascore_id\":null,\"yahoo_id\":27049,\"last_name\":\"Weaver\",\"metadata\":null,\"college\":\"Southern Mississipi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jasonweaver\",\"birth_date\":\"1989-04-12\",\"espn_id\":16283},\"1813\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1813\",\"birth_city\":null,\"fantasy_data_id\":15997,\"years_exp\":6,\"hashtag\":\"#RandellJohnson-NFL-FA-49\",\"search_first_name\":\"randell\",\"rotowire_id\":9777,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Randell Johnson\",\"sportradar_id\":\"437120e5-3406-4796-b941-ae3c9aed8bee\",\"pandascore_id\":null,\"yahoo_id\":27749,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"North Miami (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"randelljohnson\",\"birth_date\":\"1991-03-23\",\"espn_id\":16816},\"5687\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sherrils\",\"depth_chart_position\":null,\"player_id\":\"5687\",\"birth_city\":null,\"fantasy_data_id\":20133,\"years_exp\":0,\"hashtag\":\"#AnthonySherrils-NFL-DET-49\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anthony Sherrils\",\"sportradar_id\":\"673f1e54-2536-41bc-85b6-aefc70b69a22\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sherrils\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonysherrils\",\"birth_date\":null,\"espn_id\":3051864},\"4126\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033918\",\"first_name\":\"Fabian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599674420764,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moreau\",\"depth_chart_position\":\"CB\",\"player_id\":\"4126\",\"birth_city\":null,\"fantasy_data_id\":18972,\"years_exp\":3,\"hashtag\":\"#FabianMoreau-NFL-WAS-25\",\"search_first_name\":\"fabian\",\"rotowire_id\":11970,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1159,\"age\":26,\"full_name\":\"Fabian Moreau\",\"sportradar_id\":\"5ff63fe6-3b33-4f0d-bc51-d5e84d862b08\",\"pandascore_id\":null,\"yahoo_id\":30194,\"last_name\":\"Moreau\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Western (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"fabianmoreau\",\"birth_date\":\"1994-04-09\",\"espn_id\":2971586},\"472\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1517453401348,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"472\",\"birth_city\":null,\"fantasy_data_id\":9704,\"years_exp\":11,\"hashtag\":\"#DariusButler-NFL-FA-20\",\"search_first_name\":\"darius\",\"rotowire_id\":6088,\"rotoworld_id\":5277,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Darius Butler\",\"sportradar_id\":\"1efa534b-cff5-4b6c-ab66-d402efc99b0e\",\"pandascore_id\":null,\"yahoo_id\":9305,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Charter (FL)\",\"depth_chart_order\":null,\"stats_id\":267341,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dariusbutler\",\"birth_date\":\"1986-03-18\",\"espn_id\":12423},\"3076\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pettine\",\"depth_chart_position\":null,\"player_id\":\"3076\",\"birth_city\":null,\"fantasy_data_id\":17823,\"years_exp\":0,\"hashtag\":\"#MikePettine-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":9338,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Pettine\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pettine\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikepettine\",\"birth_date\":null,\"espn_id\":null},\"2872\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quayshawne\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"buckley\",\"depth_chart_position\":null,\"player_id\":\"2872\",\"birth_city\":null,\"fantasy_data_id\":17340,\"years_exp\":0,\"hashtag\":\"#QuayshawneBuckley-NFL-FA-59\",\"search_first_name\":\"quayshawne\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Quayshawne Buckley\",\"sportradar_id\":\"2f374117-253c-4a29-bd04-343fa578f8e0\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Buckley\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quayshawnebuckley\",\"birth_date\":\"1991-08-25\",\"espn_id\":2468651},\"1848\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031062\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606578032222,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"RB\",\"player_id\":\"1848\",\"birth_city\":null,\"fantasy_data_id\":16056,\"years_exp\":6,\"hashtag\":\"#JamesWhite-NFL-NE-28\",\"search_first_name\":\"james\",\"rotowire_id\":9524,\"rotoworld_id\":9426,\"active\":true,\"search_rank\":104,\"age\":28,\"full_name\":\"James White\",\"sportradar_id\":\"39f70428-a78a-494c-8676-438d953c289e\",\"pandascore_id\":null,\"yahoo_id\":27658,\"last_name\":\"White\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wisconsin\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":2,\"stats_id\":556294,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jameswhite\",\"birth_date\":\"1992-02-03\",\"espn_id\":16913},\"4012\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morton\",\"depth_chart_position\":null,\"player_id\":\"4012\",\"birth_city\":null,\"fantasy_data_id\":18852,\"years_exp\":0,\"hashtag\":\"#JohnMorton-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":12166,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Morton\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Morton\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johnmorton\",\"birth_date\":null,\"espn_id\":null},\"6954\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1597878929388,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"6954\",\"birth_city\":null,\"fantasy_data_id\":21822,\"years_exp\":0,\"hashtag\":\"#ColeMcDonald-NFL-FA-0\",\"search_first_name\":\"cole\",\"rotowire_id\":14493,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1790,\"age\":22,\"full_name\":\"Cole McDonald\",\"sportradar_id\":\"2d907c0c-cf4e-4564-b9eb-560d84f16144\",\"pandascore_id\":null,\"yahoo_id\":32894,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"colemcdonald\",\"birth_date\":\"1998-05-20\",\"espn_id\":4038220},\"1109\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harnish\",\"depth_chart_position\":null,\"player_id\":\"1109\",\"birth_city\":null,\"fantasy_data_id\":14002,\"years_exp\":1,\"hashtag\":\"#ChandlerHarnish-NFL-FA-8\",\"search_first_name\":\"chandler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chandler Harnish\",\"sportradar_id\":\"dcb9c467-c17b-4b98-9513-4f6bc3ac1a3d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harnish\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":400886,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chandlerharnish\",\"birth_date\":\"1988-07-28\",\"espn_id\":15007},\"7334\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Earnest\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693360074,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwardsiv\",\"depth_chart_position\":null,\"player_id\":\"7334\",\"birth_city\":null,\"fantasy_data_id\":22326,\"years_exp\":0,\"hashtag\":\"#EarnestEdwardsIV-NFL-FA-0\",\"search_first_name\":\"earnest\",\"rotowire_id\":14924,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Earnest Edwards IV\",\"sportradar_id\":\"b7cbd456-e07c-45ba-bae6-cf7c43a5c199\",\"pandascore_id\":null,\"yahoo_id\":33250,\"last_name\":\"Edwards IV\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"earnestedwardsiv\",\"birth_date\":\"1998-03-30\",\"espn_id\":4034320},\"5663\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1533863168194,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wimann\",\"depth_chart_position\":null,\"player_id\":\"5663\",\"birth_city\":null,\"fantasy_data_id\":20514,\"years_exp\":2,\"hashtag\":\"#ShaneWimann-NFL-FA-35\",\"search_first_name\":\"shane\",\"rotowire_id\":13190,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shane Wimann\",\"sportradar_id\":\"0922a2e6-3b10-4f16-adc4-0914dca2f49f\",\"pandascore_id\":null,\"yahoo_id\":31654,\"last_name\":\"Wimann\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746600,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shanewimann\",\"birth_date\":\"1994-09-09\",\"espn_id\":3047994},\"6338\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035459\",\"first_name\":\"Ira\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596936345381,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"savagelewis\",\"depth_chart_position\":null,\"player_id\":\"6338\",\"birth_city\":null,\"fantasy_data_id\":21245,\"years_exp\":1,\"hashtag\":\"#IraSavageLewis-NFL-FA-0\",\"search_first_name\":\"ira\",\"rotowire_id\":14233,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1702,\"age\":24,\"full_name\":\"Ira Savage-Lewis\",\"sportradar_id\":\"1435dd7d-3378-45ac-8b35-3ef9260afbaf\",\"pandascore_id\":null,\"yahoo_id\":32517,\"last_name\":\"Savage-Lewis\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"irasavagelewis\",\"birth_date\":\"1996-02-06\",\"espn_id\":3128354},\"5295\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034103\",\"first_name\":\"De'Mornay\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599597641011,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"piersonel\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5295\",\"birth_city\":null,\"fantasy_data_id\":20388,\"years_exp\":2,\"hashtag\":\"#DeMornayPiersonEl-NFL-LV-17\",\"search_first_name\":\"demornay\",\"rotowire_id\":13100,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1465,\"age\":24,\"full_name\":\"De'Mornay Pierson-El\",\"sportradar_id\":\"191847bd-6b12-4824-a832-29cddfffb046\",\"pandascore_id\":null,\"yahoo_id\":31404,\"last_name\":\"Pierson-El\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"West Potomac\",\"depth_chart_order\":3,\"stats_id\":821270,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"demornaypiersonel\",\"birth_date\":\"1995-12-26\",\"espn_id\":3121398},\"5536\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034253\",\"first_name\":\"Dontrell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605460511289,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hilliard\",\"depth_chart_position\":\"RB\",\"player_id\":\"5536\",\"birth_city\":null,\"fantasy_data_id\":20566,\"years_exp\":2,\"hashtag\":\"#DontrellHilliard-NFL-CLE-25\",\"search_first_name\":\"dontrell\",\"rotowire_id\":13135,\"rotoworld_id\":13638,\"active\":true,\"search_rank\":343,\"age\":25,\"full_name\":\"Dontrell Hilliard\",\"sportradar_id\":\"ef21feb3-991e-42d7-bb16-8bc92f7894bf\",\"pandascore_id\":null,\"yahoo_id\":31457,\"last_name\":\"Hilliard\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Scotlandville Magnet (LA)\",\"depth_chart_order\":3,\"stats_id\":821729,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dontrellhilliard\",\"birth_date\":\"1995-02-26\",\"espn_id\":3126246},\"7176\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1596396917521,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"repp\",\"depth_chart_position\":null,\"player_id\":\"7176\",\"birth_city\":null,\"fantasy_data_id\":22178,\"years_exp\":0,\"hashtag\":\"#CalebRepp-NFL-FA-0\",\"search_first_name\":\"caleb\",\"rotowire_id\":14978,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Caleb Repp\",\"sportradar_id\":\"bdffba96-cafa-40e2-91e8-bf2fe231669f\",\"pandascore_id\":null,\"yahoo_id\":33065,\"last_name\":\"Repp\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'5\\\"\",\"search_full_name\":\"calebrepp\",\"birth_date\":null,\"espn_id\":null},\"6269\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035163\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1588027562967,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shurmur\",\"depth_chart_position\":null,\"player_id\":\"6269\",\"birth_city\":null,\"fantasy_data_id\":21143,\"years_exp\":1,\"hashtag\":\"#KyleShurmur-NFL-FA-0\",\"search_first_name\":\"kyle\",\"rotowire_id\":13663,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kyle Shurmur\",\"sportradar_id\":\"ba1032c6-bcbd-430c-afae-40898b9e83bb\",\"pandascore_id\":null,\"yahoo_id\":32366,\"last_name\":\"Shurmur\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":879962,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kyleshurmur\",\"birth_date\":\"1996-11-06\",\"espn_id\":3915776},\"4362\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033338\",\"first_name\":\"Cethan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604021435750,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":\"TE\",\"player_id\":\"4362\",\"birth_city\":null,\"fantasy_data_id\":19219,\"years_exp\":3,\"hashtag\":\"#CethanCarter-NFL-CIN-82\",\"search_first_name\":\"cethan\",\"rotowire_id\":11889,\"rotoworld_id\":null,\"active\":true,\"search_rank\":566,\"age\":25,\"full_name\":\"Cethan Carter\",\"sportradar_id\":\"53fd9a69-1b10-4fd6-90e7-ee84cca9e041\",\"pandascore_id\":null,\"yahoo_id\":30577,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Archbishop Shaw (LA)\",\"depth_chart_order\":2,\"stats_id\":728274,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cethancarter\",\"birth_date\":\"1995-09-05\",\"espn_id\":3040470},\"1654\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sudfeld\",\"depth_chart_position\":null,\"player_id\":\"1654\",\"birth_city\":null,\"fantasy_data_id\":15416,\"years_exp\":3,\"hashtag\":\"#ZachSudfeld-NFL-FA-44\",\"search_first_name\":\"zach\",\"rotowire_id\":8790,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Sudfeld\",\"sportradar_id\":\"a02fe2cf-3446-4a03-883c-314494087086\",\"pandascore_id\":null,\"yahoo_id\":27234,\"last_name\":\"Sudfeld\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":409543,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'6\\\"\",\"search_full_name\":\"zachsudfeld\",\"birth_date\":\"1989-04-17\",\"espn_id\":16418},\"5655\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034527\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604714747242,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":\"SS\",\"player_id\":\"5655\",\"birth_city\":null,\"fantasy_data_id\":20538,\"years_exp\":2,\"hashtag\":\"#RyanNeal-NFL-SEA-35\",\"search_first_name\":\"ryan\",\"rotowire_id\":13282,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1488,\"age\":24,\"full_name\":\"Ryan Neal\",\"sportradar_id\":\"67c2f38f-b568-4bcf-a40f-750cef707a05\",\"pandascore_id\":null,\"yahoo_id\":31576,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":\"Merrillville (IN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ryanneal\",\"birth_date\":\"1995-12-24\",\"espn_id\":3121344},\"6703\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wellock\",\"depth_chart_position\":null,\"player_id\":\"6703\",\"birth_city\":null,\"fantasy_data_id\":21620,\"years_exp\":0,\"hashtag\":\"#AndrewWellock-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Andrew Wellock\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wellock\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"andrewwellock\",\"birth_date\":null,\"espn_id\":null},\"3060\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coyle\",\"depth_chart_position\":null,\"player_id\":\"3060\",\"birth_city\":null,\"fantasy_data_id\":17793,\"years_exp\":null,\"hashtag\":\"#KevinCoyle-NFL-FA-0\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":9485,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kevin Coyle\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Coyle\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kevincoyle\",\"birth_date\":null,\"espn_id\":null},\"5643\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034530\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleer\",\"depth_chart_position\":null,\"player_id\":\"5643\",\"birth_city\":null,\"fantasy_data_id\":20603,\"years_exp\":2,\"hashtag\":\"#AustinFleer-NFL-FA-63\",\"search_first_name\":\"austin\",\"rotowire_id\":13246,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Fleer\",\"sportradar_id\":\"a9b13ddb-a292-46b8-8f66-13fe60cffe5a\",\"pandascore_id\":null,\"yahoo_id\":31559,\"last_name\":\"Fleer\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'7\\\"\",\"search_full_name\":\"austinfleer\",\"birth_date\":\"1995-06-01\",\"espn_id\":3062371},\"6091\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jovon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durante\",\"depth_chart_position\":null,\"player_id\":\"6091\",\"birth_city\":null,\"fantasy_data_id\":21074,\"years_exp\":0,\"hashtag\":\"#JovonDurante-NFL-FA-0\",\"search_first_name\":\"jovon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jovon Durante\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Durante\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"165\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jovondurante\",\"birth_date\":null,\"espn_id\":null},\"3041\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032319\",\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606279255992,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"travis\",\"depth_chart_position\":\"TE\",\"player_id\":\"3041\",\"birth_city\":null,\"fantasy_data_id\":17750,\"years_exp\":4,\"hashtag\":\"#RossTravis-NFL-NYJ-43\",\"search_first_name\":\"ross\",\"rotowire_id\":10837,\"rotoworld_id\":null,\"active\":true,\"search_rank\":572,\"age\":27,\"full_name\":\"Ross Travis\",\"sportradar_id\":\"75dfd9cc-5419-49e1-bade-0632d03ca4b4\",\"pandascore_id\":null,\"yahoo_id\":29208,\"last_name\":\"Travis\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Chaska (MN)\",\"depth_chart_order\":3,\"stats_id\":602069,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rosstravis\",\"birth_date\":\"1993-01-09\",\"espn_id\":3936647},\"5649\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034465\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603838454931,\"status\":\"Practice Squad\",\"injury_body_part\":null,\"search_last_name\":\"reaves\",\"depth_chart_position\":null,\"player_id\":\"5649\",\"birth_city\":null,\"fantasy_data_id\":20611,\"years_exp\":2,\"hashtag\":\"#JeremyReaves-NFL-WAS-39\",\"search_first_name\":\"jeremy\",\"rotowire_id\":12827,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1497,\"age\":24,\"full_name\":\"Jeremy Reaves\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31582,\"last_name\":\"Reaves\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jeremyreaves\",\"birth_date\":\"1996-08-29\",\"espn_id\":null},\"5444\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ossai\",\"depth_chart_position\":null,\"player_id\":\"5444\",\"birth_city\":null,\"fantasy_data_id\":20491,\"years_exp\":2,\"hashtag\":\"#WilliamOssai-NFL-FA-47\",\"search_first_name\":\"william\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"William Ossai\",\"sportradar_id\":\"34a8d418-2fc4-4d78-aeb9-454169562a49\",\"pandascore_id\":null,\"yahoo_id\":31374,\"last_name\":\"Ossai\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'2\\\"\",\"search_full_name\":\"williamossai\",\"birth_date\":\"1995-08-14\",\"espn_id\":3056616},\"118\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0019646\",\"first_name\":\"Sebastian\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1556817301845,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"janikowski\",\"depth_chart_position\":null,\"player_id\":\"118\",\"birth_city\":null,\"fantasy_data_id\":3253,\"years_exp\":20,\"hashtag\":\"#SebastianJanikowski-NFL-FA-11\",\"search_first_name\":\"sebastian\",\"rotowire_id\":1299,\"rotoworld_id\":819,\"active\":true,\"search_rank\":9999999,\"age\":42,\"full_name\":\"Sebastian Janikowski\",\"sportradar_id\":\"480277d1-47c9-44df-969e-038a84cd0fea\",\"pandascore_id\":null,\"yahoo_id\":5046,\"last_name\":\"Janikowski\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Seabreeze (FL)\",\"depth_chart_order\":null,\"stats_id\":25165,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sebastianjanikowski\",\"birth_date\":\"1978-03-02\",\"espn_id\":2148},\"3234\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033129\",\"first_name\":\"Carl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603652109379,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nassib\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3234\",\"birth_city\":null,\"fantasy_data_id\":17995,\"years_exp\":4,\"hashtag\":\"#CarlNassib-NFL-LV-94\",\"search_first_name\":\"carl\",\"rotowire_id\":11142,\"rotoworld_id\":null,\"active\":true,\"search_rank\":983,\"age\":27,\"full_name\":\"Carl Nassib\",\"sportradar_id\":\"ed2317f2-1cc5-4a84-a46e-7423a9a1c730\",\"pandascore_id\":null,\"yahoo_id\":29299,\"last_name\":\"Nassib\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Malvern Prep (PA)\",\"depth_chart_order\":2,\"stats_id\":638342,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'7\\\"\",\"search_full_name\":\"carlnassib\",\"birth_date\":\"1993-04-12\",\"espn_id\":2614825},\"2777\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tavarus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dantzler\",\"depth_chart_position\":null,\"player_id\":\"2777\",\"birth_city\":null,\"fantasy_data_id\":17245,\"years_exp\":0,\"hashtag\":\"#TavarusDantzler-NFL-FA-57\",\"search_first_name\":\"tavarus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tavarus Dantzler\",\"sportradar_id\":\"9d966a28-aac9-4ff5-8a11-496ef65cabee\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dantzler\",\"metadata\":null,\"college\":\"Bethune-Cookman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tavarusdantzler\",\"birth_date\":\"1991-09-10\",\"espn_id\":2592714},\"1092\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1515272701252,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spence\",\"depth_chart_position\":null,\"player_id\":\"1092\",\"birth_city\":null,\"fantasy_data_id\":13932,\"years_exp\":8,\"hashtag\":\"#SeanSpence-NFL-FA-51\",\"search_first_name\":\"sean\",\"rotowire_id\":8241,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sean Spence\",\"sportradar_id\":\"efaec80b-f578-4d7e-939c-5965fbfc8a02\",\"pandascore_id\":null,\"yahoo_id\":25796,\"last_name\":\"Spence\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Northwestern (FL)\",\"depth_chart_order\":null,\"stats_id\":447335,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"5'11\\\"\",\"search_full_name\":\"seanspence\",\"birth_date\":\"1990-06-07\",\"espn_id\":14972},\"2585\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031897\",\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567194956421,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rawls\",\"depth_chart_position\":null,\"player_id\":\"2585\",\"birth_city\":null,\"fantasy_data_id\":17050,\"years_exp\":5,\"hashtag\":\"#ThomasRawls-NFL-FA-34\",\"search_first_name\":\"thomas\",\"rotowire_id\":10185,\"rotoworld_id\":10420,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Thomas Rawls\",\"sportradar_id\":\"488c3707-26ee-4e1a-8742-494a06f77801\",\"pandascore_id\":null,\"yahoo_id\":28714,\"last_name\":\"Rawls\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Flint Northern (MI)\",\"depth_chart_order\":null,\"stats_id\":605730,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'9\\\"\",\"search_full_name\":\"thomasrawls\",\"birth_date\":\"1993-08-03\",\"espn_id\":2576237},\"4846\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033199\",\"first_name\":\"Taybor\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1546277744755,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pepper\",\"depth_chart_position\":null,\"player_id\":\"4846\",\"birth_city\":null,\"fantasy_data_id\":18851,\"years_exp\":3,\"hashtag\":\"#TayborPepper-NFL-SF-46\",\"search_first_name\":\"taybor\",\"rotowire_id\":11740,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Taybor Pepper\",\"sportradar_id\":\"0c727216-dadf-41d5-80e9-154ba9261663\",\"pandascore_id\":null,\"yahoo_id\":30088,\"last_name\":\"Pepper\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Saline (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tayborpepper\",\"birth_date\":\"1994-05-28\",\"espn_id\":2979553},\"1690\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ka'Lial\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"glaud\",\"depth_chart_position\":null,\"player_id\":\"1690\",\"birth_city\":null,\"fantasy_data_id\":15539,\"years_exp\":2,\"hashtag\":\"#KaLialGlaud-NFL-FA-47\",\"search_first_name\":\"kalial\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ka'Lial Glaud\",\"sportradar_id\":\"27393f01-ca76-4f79-8c48-9fe3f2c018ce\",\"pandascore_id\":null,\"yahoo_id\":27281,\"last_name\":\"Glaud\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kalialglaud\",\"birth_date\":\"1990-11-09\",\"espn_id\":16458},\"4666\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033702\",\"first_name\":\"Younghoe\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606356303033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"koo\",\"depth_chart_position\":\"K\",\"player_id\":\"4666\",\"birth_city\":null,\"fantasy_data_id\":19565,\"years_exp\":3,\"hashtag\":\"#YounghoeKoo-NFL-ATL-7\",\"search_first_name\":\"younghoe\",\"rotowire_id\":12292,\"rotoworld_id\":12566,\"active\":true,\"search_rank\":166,\"age\":26,\"full_name\":\"Younghoe Koo\",\"sportradar_id\":\"a8c79523-3d0e-48dd-b4c6-e3d8afd24a13\",\"pandascore_id\":null,\"yahoo_id\":30426,\"last_name\":\"Koo\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":\"Ridgewood (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"younghoekoo\",\"birth_date\":\"1994-08-03\",\"espn_id\":3049899},\"5626\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Olubunmi\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rotimi\",\"depth_chart_position\":null,\"player_id\":\"5626\",\"birth_city\":null,\"fantasy_data_id\":20108,\"years_exp\":1,\"hashtag\":\"#OlubunmiRotimi-NFL-CHI-74\",\"search_first_name\":\"olubunmi\",\"rotowire_id\":12970,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Olubunmi Rotimi\",\"sportradar_id\":\"226d3b7d-f8d9-4dfe-86b9-ba710eafaced\",\"pandascore_id\":null,\"yahoo_id\":31666,\"last_name\":\"Rotimi\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'3\\\"\",\"search_full_name\":\"olubunmirotimi\",\"birth_date\":\"1995-07-16\",\"espn_id\":3060151},\"5901\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035234\",\"first_name\":\"Tytus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600629007761,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":\"RT\",\"player_id\":\"5901\",\"birth_city\":null,\"fantasy_data_id\":20813,\"years_exp\":1,\"hashtag\":\"#TytusHoward-NFL-HOU-71\",\"search_first_name\":\"tytus\",\"rotowire_id\":13743,\"rotoworld_id\":14090,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tytus Howard\",\"sportradar_id\":\"8abf63a5-6f5d-46c2-8a3a-b9b03d0cab26\",\"pandascore_id\":null,\"yahoo_id\":31855,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":\"Monroe County (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tytushoward\",\"birth_date\":\"1996-05-23\",\"espn_id\":3131498},\"6852\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1588299613417,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"6852\",\"birth_city\":null,\"fantasy_data_id\":21992,\"years_exp\":0,\"hashtag\":\"#TreyAdams-NFL-BUF-72\",\"search_first_name\":\"trey\",\"rotowire_id\":14366,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Trey Adams\",\"sportradar_id\":\"980d9a73-9dbb-4456-9256-d4021c013acf\",\"pandascore_id\":null,\"yahoo_id\":33355,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Wenatchee (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'8\\\"\",\"search_full_name\":\"treyadams\",\"birth_date\":\"1997-03-04\",\"espn_id\":3886808},\"1900\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031426\",\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601827238235,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bitonio\",\"depth_chart_position\":\"LG\",\"player_id\":\"1900\",\"birth_city\":null,\"fantasy_data_id\":16125,\"years_exp\":6,\"hashtag\":\"#JoelBitonio-NFL-CLE-75\",\"search_first_name\":\"joel\",\"rotowire_id\":9421,\"rotoworld_id\":9539,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Joel Bitonio\",\"sportradar_id\":\"0207678d-d682-4916-ba20-74a218d5b6b1\",\"pandascore_id\":null,\"yahoo_id\":27563,\"last_name\":\"Bitonio\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Long Beach Wilson (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joelbitonio\",\"birth_date\":\"1991-10-11\",\"espn_id\":16740},\"3602\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":null,\"player_id\":\"3602\",\"birth_city\":null,\"fantasy_data_id\":18387,\"years_exp\":0,\"hashtag\":\"#DanielDillon-NFL-FA-48\",\"search_first_name\":\"daniel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Daniel Dillon\",\"sportradar_id\":\"744d6431-9e95-4e39-b3e2-9df195dbbda9\",\"pandascore_id\":null,\"yahoo_id\":29573,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"Campbell\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danieldillon\",\"birth_date\":\"1993-05-03\",\"espn_id\":null},\"6872\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606427760093,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dugger\",\"depth_chart_position\":\"SS\",\"player_id\":\"6872\",\"birth_city\":null,\"fantasy_data_id\":21926,\"years_exp\":0,\"hashtag\":\"#KyleDugger-NFL-NE-35\",\"search_first_name\":\"kyle\",\"rotowire_id\":14542,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1844,\"age\":24,\"full_name\":\"Kyle Dugger\",\"sportradar_id\":\"1d8d5c04-15e7-4346-9d1f-f128e4df3adb\",\"pandascore_id\":null,\"yahoo_id\":32710,\"last_name\":\"Dugger\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Lenoir-Rhyne\",\"high_school\":\"Whitewater (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kyledugger\",\"birth_date\":\"1996-03-22\",\"espn_id\":4401811},\"362\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026957\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"362\",\"birth_city\":null,\"fantasy_data_id\":8508,\"years_exp\":11,\"hashtag\":\"#DavidJohnson-NFL-FA-82\",\"search_first_name\":\"david\",\"rotowire_id\":6145,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"David Johnson\",\"sportradar_id\":\"a2579c70-73d2-477a-b7f6-4ff09aa75364\",\"pandascore_id\":null,\"yahoo_id\":9505,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Pine Bluff (AR)\",\"depth_chart_order\":null,\"stats_id\":288291,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidjohnson\",\"birth_date\":\"1987-08-26\",\"espn_id\":12506},\"1352\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030431\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606196149139,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"woods\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1352\",\"birth_city\":null,\"fantasy_data_id\":14871,\"years_exp\":7,\"hashtag\":\"#RobertWoods-NFL-LAR-17\",\"search_first_name\":\"robert\",\"rotowire_id\":8628,\"rotoworld_id\":8407,\"active\":true,\"search_rank\":47,\"age\":28,\"full_name\":\"Robert Woods\",\"sportradar_id\":\"618bedee-9259-4536-b0ff-fec98d2a20de\",\"pandascore_id\":null,\"yahoo_id\":26664,\"last_name\":\"Woods\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":1,\"stats_id\":555693,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'0\\\"\",\"search_full_name\":\"robertwoods\",\"birth_date\":\"1992-04-10\",\"espn_id\":15880},\"6949\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordyn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603751739242,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6949\",\"birth_city\":null,\"fantasy_data_id\":22005,\"years_exp\":0,\"hashtag\":\"#JordynBrooks-NFL-SEA-56\",\"search_first_name\":\"jordyn\",\"rotowire_id\":14739,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1878,\"age\":23,\"full_name\":\"Jordyn Brooks\",\"sportradar_id\":\"ef422c88-b74f-4720-a831-947010c44ebe\",\"pandascore_id\":null,\"yahoo_id\":32697,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Stratford (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordynbrooks\",\"birth_date\":\"1997-10-21\",\"espn_id\":4043130},\"5909\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hamp\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565716205187,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cheevers\",\"depth_chart_position\":null,\"player_id\":\"5909\",\"birth_city\":null,\"fantasy_data_id\":21006,\"years_exp\":1,\"hashtag\":\"#HampCheevers-NFL-FA-35\",\"search_first_name\":\"hamp\",\"rotowire_id\":13557,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Hamp Cheevers\",\"sportradar_id\":\"e08a431a-0fb0-48b8-a6bd-18375a8b91ab\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cheevers\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"169\",\"height\":\"5'9\\\"\",\"search_full_name\":\"hampcheevers\",\"birth_date\":null,\"espn_id\":4035311},\"4077\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033872\",\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606580432556,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"SS\",\"player_id\":\"4077\",\"birth_city\":null,\"fantasy_data_id\":18923,\"years_exp\":3,\"hashtag\":\"#JamalAdams-NFL-SEA-33\",\"search_first_name\":\"jamal\",\"rotowire_id\":11985,\"rotoworld_id\":12210,\"active\":true,\"search_rank\":1129,\"age\":25,\"full_name\":\"Jamal Adams\",\"sportradar_id\":\"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c\",\"pandascore_id\":null,\"yahoo_id\":30119,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Carrollton Hebron (TX)\",\"depth_chart_order\":3,\"stats_id\":822003,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamaladams\",\"birth_date\":\"1995-10-17\",\"espn_id\":3115373},\"2080\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031403\",\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1564896948378,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bromley\",\"depth_chart_position\":null,\"player_id\":\"2080\",\"birth_city\":null,\"fantasy_data_id\":16391,\"years_exp\":6,\"hashtag\":\"#JayBromley-NFL-FA-90\",\"search_first_name\":\"jay\",\"rotowire_id\":9404,\"rotoworld_id\":9588,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jay Bromley\",\"sportradar_id\":\"8fd4379f-242a-4388-ae91-5b99acbb1bd8\",\"pandascore_id\":null,\"yahoo_id\":27602,\"last_name\":\"Bromley\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Flushing (NY)\",\"depth_chart_order\":null,\"stats_id\":558716,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jaybromley\",\"birth_date\":\"1992-05-28\",\"espn_id\":16776},\"1254\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029691\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1572469532901,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1254\",\"birth_city\":null,\"fantasy_data_id\":14631,\"years_exp\":8,\"hashtag\":\"#JoshRobinson-NFL-FA-29\",\"search_first_name\":\"josh\",\"rotowire_id\":8211,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Josh Robinson\",\"sportradar_id\":\"8cd557fb-94df-48c2-8665-198e5c8be20b\",\"pandascore_id\":null,\"yahoo_id\":25776,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Plantation (FL)\",\"depth_chart_order\":null,\"stats_id\":495661,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshrobinson\",\"birth_date\":\"1991-01-08\",\"espn_id\":14948},\"6918\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Salvon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606505126379,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ahmed\",\"depth_chart_position\":\"RB\",\"player_id\":\"6918\",\"birth_city\":null,\"fantasy_data_id\":21843,\"years_exp\":0,\"hashtag\":\"#SalvonAhmed-NFL-MIA-26\",\"search_first_name\":\"salvon\",\"rotowire_id\":14453,\"rotoworld_id\":null,\"active\":true,\"search_rank\":261,\"age\":21,\"full_name\":\"Salvon Ahmed\",\"sportradar_id\":\"0dbbd211-0372-4751-9751-e4df4ab1f8eb\",\"pandascore_id\":null,\"yahoo_id\":33265,\"last_name\":\"Ahmed\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Juanita (WA)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"salvonahmed\",\"birth_date\":\"1998-12-29\",\"espn_id\":4243315},\"3795\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"muir\",\"depth_chart_position\":null,\"player_id\":\"3795\",\"birth_city\":null,\"fantasy_data_id\":18609,\"years_exp\":3,\"hashtag\":\"#BlakeMuir-NFL-FA-63\",\"search_first_name\":\"blake\",\"rotowire_id\":11555,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Blake Muir\",\"sportradar_id\":\"2fe3b02e-4a60-4213-8c63-b9960f41d12b\",\"pandascore_id\":null,\"yahoo_id\":29770,\"last_name\":\"Muir\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"blakemuir\",\"birth_date\":\"1991-05-10\",\"espn_id\":2573339},\"5982\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035139\",\"first_name\":\"Marquise\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600896009137,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"blair\",\"depth_chart_position\":null,\"player_id\":\"5982\",\"birth_city\":null,\"fantasy_data_id\":21031,\"years_exp\":1,\"hashtag\":\"#MarquiseBlair-NFL-SEA-27\",\"search_first_name\":\"marquise\",\"rotowire_id\":13796,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1641,\"age\":23,\"full_name\":\"Marquise Blair\",\"sportradar_id\":\"1c468a8a-355f-429a-a12d-d8528fdc6aa2\",\"pandascore_id\":null,\"yahoo_id\":31879,\"last_name\":\"Blair\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Wooster (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marquiseblair\",\"birth_date\":\"1997-07-18\",\"espn_id\":4243244},\"1554\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rufus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1554\",\"birth_city\":null,\"fantasy_data_id\":15195,\"years_exp\":7,\"hashtag\":\"#RufusJohnson-NFL-FA-62\",\"search_first_name\":\"rufus\",\"rotowire_id\":8963,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Rufus Johnson\",\"sportradar_id\":\"58cd5920-2dd3-468b-8531-2973b97efebb\",\"pandascore_id\":null,\"yahoo_id\":26806,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Tarleton State\",\"high_school\":\"Grady Spruce (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rufusjohnson\",\"birth_date\":\"1990-08-28\",\"espn_id\":16031},\"2029\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031269\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605568520233,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carrie\",\"depth_chart_position\":\"CB\",\"player_id\":\"2029\",\"birth_city\":null,\"fantasy_data_id\":16312,\"years_exp\":6,\"hashtag\":\"#TJCarrie-NFL-IND-38\",\"search_first_name\":\"tj\",\"rotowire_id\":11514,\"rotoworld_id\":9596,\"active\":true,\"search_rank\":806,\"age\":30,\"full_name\":\"T.J. Carrie\",\"sportradar_id\":\"3f0613a9-f060-4b43-95cb-3b263f05cd0f\",\"pandascore_id\":null,\"yahoo_id\":27747,\"last_name\":\"Carrie\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":\"De La Salle (CA)\",\"depth_chart_order\":2,\"stats_id\":468954,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tjcarrie\",\"birth_date\":\"1990-07-28\",\"espn_id\":16808},\"5533\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trenton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1532999740043,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"5533\",\"birth_city\":null,\"fantasy_data_id\":20270,\"years_exp\":1,\"hashtag\":\"#TrentonThompson-NFL-CLE-77\",\"search_first_name\":\"trenton\",\"rotowire_id\":12631,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Trenton Thompson\",\"sportradar_id\":\"a2f38e33-faf5-44e3-ba20-4e5fc3733d62\",\"pandascore_id\":null,\"yahoo_id\":31461,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trentonthompson\",\"birth_date\":\"1996-07-27\",\"espn_id\":3915192},\"5532\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034251\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602718554328,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ekuale\",\"depth_chart_position\":\"DT\",\"player_id\":\"5532\",\"birth_city\":null,\"fantasy_data_id\":20269,\"years_exp\":2,\"hashtag\":\"#DanielEkuale-NFL-JAX-99\",\"search_first_name\":\"daniel\",\"rotowire_id\":13142,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1442,\"age\":26,\"full_name\":\"Daniel Ekuale\",\"sportradar_id\":\"55998ec0-4d69-4d14-a2f4-cf72de36e998\",\"pandascore_id\":null,\"yahoo_id\":31454,\"last_name\":\"Ekuale\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Nuuuli Poly Tech (ASM)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danielekuale\",\"birth_date\":\"1994-01-13\",\"espn_id\":3052059},\"1550\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029857\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1601234741780,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":\"QB\",\"player_id\":\"1550\",\"birth_city\":null,\"fantasy_data_id\":15190,\"years_exp\":7,\"hashtag\":\"#RyanGriffin-NFL-TB-4\",\"search_first_name\":\"ryan\",\"rotowire_id\":8923,\"rotoworld_id\":8507,\"active\":true,\"search_rank\":586,\"age\":31,\"full_name\":\"Ryan Griffin\",\"sportradar_id\":\"949c34b9-150a-4a1b-b884-1fcf1ebaabdf\",\"pandascore_id\":null,\"yahoo_id\":26949,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Chaminade College Prep (CA)\",\"depth_chart_order\":3,\"stats_id\":466883,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryangriffin\",\"birth_date\":\"1989-11-17\",\"espn_id\":16140},\"5967\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035261\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606491603972,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pollard\",\"depth_chart_position\":\"RB\",\"player_id\":\"5967\",\"birth_city\":null,\"fantasy_data_id\":20912,\"years_exp\":1,\"hashtag\":\"#TonyPollard-NFL-DAL-20\",\"search_first_name\":\"tony\",\"rotowire_id\":13590,\"rotoworld_id\":14245,\"active\":true,\"search_rank\":116,\"age\":23,\"full_name\":\"Tony Pollard\",\"sportradar_id\":\"33b0227d-4c21-4e71-b4cd-be35f7db9123\",\"pandascore_id\":null,\"yahoo_id\":31960,\"last_name\":\"Pollard\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Melrose (TN)\",\"depth_chart_order\":2,\"stats_id\":880398,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tonypollard\",\"birth_date\":\"1997-04-30\",\"espn_id\":3916148},\"4867\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rick\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4867\",\"birth_city\":null,\"fantasy_data_id\":19765,\"years_exp\":0,\"hashtag\":\"#RickSmith-NFL-FA-0\",\"search_first_name\":\"rick\",\"rotowire_id\":null,\"rotoworld_id\":9500,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rick Smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ricksmith\",\"birth_date\":null,\"espn_id\":null},\"49\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023252\",\"first_name\":\"Robbie\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1605565219561,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gould\",\"depth_chart_position\":\"K\",\"player_id\":\"49\",\"birth_city\":null,\"fantasy_data_id\":1410,\"years_exp\":15,\"hashtag\":\"#RobbieGould-NFL-SF-9\",\"search_first_name\":\"robbie\",\"rotowire_id\":4686,\"rotoworld_id\":3519,\"active\":true,\"search_rank\":159,\"age\":37,\"full_name\":\"Robbie Gould\",\"sportradar_id\":\"abd73d50-ce60-47f1-b37f-2f9a05b0d7b9\",\"pandascore_id\":null,\"yahoo_id\":7520,\"last_name\":\"Gould\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Central Mountain (PA)\",\"depth_chart_order\":1,\"stats_id\":167377,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"robbiegould\",\"birth_date\":\"1982-12-06\",\"espn_id\":9354},\"7382\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"7382\",\"birth_city\":null,\"fantasy_data_id\":22368,\"years_exp\":0,\"hashtag\":\"#DominiqueRoss-NFL-FA-0\",\"search_first_name\":\"dominique\",\"rotowire_id\":15007,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1993,\"age\":22,\"full_name\":\"Dominique Ross\",\"sportradar_id\":\"e7b2ce0b-13ce-415e-ad2f-c1703be95ed9\",\"pandascore_id\":null,\"yahoo_id\":33053,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dominiqueross\",\"birth_date\":\"1997-12-21\",\"espn_id\":null},\"4308\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"4308\",\"birth_city\":null,\"fantasy_data_id\":19157,\"years_exp\":2,\"hashtag\":\"#DeronWashington-NFL-FA-49\",\"search_first_name\":\"deron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Deron Washington\",\"sportradar_id\":\"df8516ec-a305-4a13-a35e-7ccf06aa56b3\",\"pandascore_id\":null,\"yahoo_id\":30467,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Pittsburg State (KS)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deronwashington\",\"birth_date\":\"1993-05-03\",\"espn_id\":3073714},\"4458\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":null,\"player_id\":\"4458\",\"birth_city\":null,\"fantasy_data_id\":19322,\"years_exp\":0,\"hashtag\":\"#ZachFranklin-NFL-SF-31\",\"search_first_name\":\"zach\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Zach Franklin\",\"sportradar_id\":\"6ae140bb-56cb-4eaa-8473-3ebd39042325\",\"pandascore_id\":null,\"yahoo_id\":30555,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Washburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'0\\\"\",\"search_full_name\":\"zachfranklin\",\"birth_date\":null,\"espn_id\":4232831},\"6547\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035214\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1574206850719,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wharton\",\"depth_chart_position\":null,\"player_id\":\"6547\",\"birth_city\":null,\"fantasy_data_id\":21524,\"years_exp\":1,\"hashtag\":\"#IsaiahWharton-NFL-FA-35\",\"search_first_name\":\"isaiah\",\"rotowire_id\":13695,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Isaiah Wharton\",\"sportradar_id\":\"472c659e-621d-4933-b539-1ad9fedc21ac\",\"pandascore_id\":null,\"yahoo_id\":32394,\"last_name\":\"Wharton\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"isaiahwharton\",\"birth_date\":\"1995-11-01\",\"espn_id\":3127378},\"3563\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032470\",\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587010839824,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"longa\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"3563\",\"birth_city\":null,\"fantasy_data_id\":18338,\"years_exp\":4,\"hashtag\":\"#SteveLonga-NFL-FA-0\",\"search_first_name\":\"steve\",\"rotowire_id\":11118,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Steve Longa\",\"sportradar_id\":\"54403340-5565-4fdb-82bf-60c9b38a9bac\",\"pandascore_id\":null,\"yahoo_id\":29818,\"last_name\":\"Longa\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":696208,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"stevelonga\",\"birth_date\":\"1994-09-29\",\"espn_id\":2982803},\"5587\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034315\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1564349114465,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"warreniii\",\"depth_chart_position\":\"RB\",\"player_id\":\"5587\",\"birth_city\":null,\"fantasy_data_id\":20588,\"years_exp\":2,\"hashtag\":\"#ChrisWarrenIII-NFL-FA-34\",\"search_first_name\":\"chris\",\"rotowire_id\":12867,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Warren III\",\"sportradar_id\":\"86b05ebc-a22f-46a4-b521-67cc0b1fa206\",\"pandascore_id\":null,\"yahoo_id\":31514,\"last_name\":\"Warren III\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":884299,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chriswarreniii\",\"birth_date\":\"1996-06-06\",\"espn_id\":3929855},\"7241\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spearsjr\",\"depth_chart_position\":null,\"player_id\":\"7241\",\"birth_city\":null,\"fantasy_data_id\":22242,\"years_exp\":0,\"hashtag\":\"#MarcelSpearsJr-NFL-FA-0\",\"search_first_name\":\"marcel\",\"rotowire_id\":14991,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Marcel Spears Jr.\",\"sportradar_id\":\"cf1e8dcf-96fb-44d8-a1e7-ee25b1a705cc\",\"pandascore_id\":null,\"yahoo_id\":33165,\"last_name\":\"Spears Jr.\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marcelspearsjr\",\"birth_date\":\"1997-05-29\",\"espn_id\":3917947},\"4704\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1526321701569,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"4704\",\"birth_city\":null,\"fantasy_data_id\":19610,\"years_exp\":2,\"hashtag\":\"#TylerFerguson-NFL-FA-5\",\"search_first_name\":\"tyler\",\"rotowire_id\":12866,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyler Ferguson\",\"sportradar_id\":\"c10e306a-60d3-49fb-a933-6101855851d3\",\"pandascore_id\":null,\"yahoo_id\":30747,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728359,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylerferguson\",\"birth_date\":\"1994-01-07\",\"espn_id\":3040520},\"2522\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031620\",\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1514426102120,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simon\",\"depth_chart_position\":null,\"player_id\":\"2522\",\"birth_city\":null,\"fantasy_data_id\":16982,\"years_exp\":5,\"hashtag\":\"#DeonSimon-NFL-FA-79\",\"search_first_name\":\"deon\",\"rotowire_id\":10495,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Deon Simon\",\"sportradar_id\":\"df13444e-015f-413a-89f2-fe402765f232\",\"pandascore_id\":null,\"yahoo_id\":28611,\"last_name\":\"Simon\",\"metadata\":null,\"college\":\"Northwestern State, La.\",\"high_school\":\"Glen Oaks (LA)\",\"depth_chart_order\":null,\"stats_id\":609433,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'4\\\"\",\"search_full_name\":\"deonsimon\",\"birth_date\":\"1990-07-06\",\"espn_id\":2568060},\"5507\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034136\",\"first_name\":\"Secdrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"5507\",\"birth_city\":null,\"fantasy_data_id\":20236,\"years_exp\":2,\"hashtag\":\"#SecdrickCooper-NFL-FA-35\",\"search_first_name\":\"secdrick\",\"rotowire_id\":12733,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Secdrick Cooper\",\"sportradar_id\":\"6a83bc28-1b9c-41b7-9860-aa1640929ec3\",\"pandascore_id\":null,\"yahoo_id\":31360,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"secdrickcooper\",\"birth_date\":\"1995-07-17\",\"espn_id\":3122761},\"4685\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033827\",\"first_name\":\"Roubbens\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":null,\"player_id\":\"4685\",\"birth_city\":null,\"fantasy_data_id\":19586,\"years_exp\":3,\"hashtag\":\"#RoubbensJoseph-NFL-FA-63\",\"search_first_name\":\"roubbens\",\"rotowire_id\":12980,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Roubbens Joseph\",\"sportradar_id\":\"8c609519-c1cc-4c84-bf7a-9c6c8d483800\",\"pandascore_id\":null,\"yahoo_id\":30847,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"roubbensjoseph\",\"birth_date\":\"1994-12-21\",\"espn_id\":3916585},\"3335\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032896\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1557167122980,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kaser\",\"depth_chart_position\":null,\"player_id\":\"3335\",\"birth_city\":null,\"fantasy_data_id\":18096,\"years_exp\":4,\"hashtag\":\"#DrewKaser-NFL-GB-9\",\"search_first_name\":\"drew\",\"rotowire_id\":11085,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Drew Kaser\",\"sportradar_id\":\"45f4b9ae-f1be-454b-bff7-8f808e6f0268\",\"pandascore_id\":null,\"yahoo_id\":29413,\"last_name\":\"Kaser\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Walsh Jesuit (OH)\",\"depth_chart_order\":null,\"stats_id\":593591,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'2\\\"\",\"search_full_name\":\"drewkaser\",\"birth_date\":\"1993-02-11\",\"espn_id\":2578698},\"6717\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ka'John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598152242173,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"armstrong\",\"depth_chart_position\":null,\"player_id\":\"6717\",\"birth_city\":null,\"fantasy_data_id\":21623,\"years_exp\":1,\"hashtag\":\"#KaJohnArmstrong-NFL-FA-0\",\"search_first_name\":\"kajohn\",\"rotowire_id\":14321,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ka'John Armstrong\",\"sportradar_id\":\"deef8931-7466-44d8-9dac-cd6edf68cb51\",\"pandascore_id\":null,\"yahoo_id\":32616,\"last_name\":\"Armstrong\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kajohnarmstrong\",\"birth_date\":\"1996-05-25\",\"espn_id\":3125842},\"5308\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5308\",\"birth_city\":null,\"fantasy_data_id\":20399,\"years_exp\":1,\"hashtag\":\"#JohnFranklin-NFL-LAR-94\",\"search_first_name\":\"john\",\"rotowire_id\":12972,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1769,\"age\":22,\"full_name\":\"John Franklin\",\"sportradar_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"pandascore_id\":null,\"yahoo_id\":900302,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Stephen F. Austin\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnfranklin\",\"birth_date\":\"1996-09-26\",\"espn_id\":3120464},\"7168\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zane\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598922330041,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"7168\",\"birth_city\":null,\"fantasy_data_id\":22170,\"years_exp\":0,\"hashtag\":\"#ZaneLewis-NFL-NYJ-33\",\"search_first_name\":\"zane\",\"rotowire_id\":15112,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Zane Lewis\",\"sportradar_id\":\"9c95fee4-129e-4765-b99f-f09f517c1f4f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Air Force\",\"high_school\":\"Trinity Episcopal (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zanelewis\",\"birth_date\":\"1998-04-06\",\"espn_id\":4239965},\"217\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whitner\",\"depth_chart_position\":null,\"player_id\":\"217\",\"birth_city\":null,\"fantasy_data_id\":5442,\"years_exp\":14,\"hashtag\":\"#DonteWhitner-NFL-FA-39\",\"search_first_name\":\"donte\",\"rotowire_id\":4752,\"rotoworld_id\":3691,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Donte Whitner\",\"sportradar_id\":\"2bd18508-91d1-463f-ab87-18a41fe7ca32\",\"pandascore_id\":null,\"yahoo_id\":7757,\"last_name\":\"Whitner\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dontewhitner\",\"birth_date\":\"1985-07-24\",\"espn_id\":9594},\"1804\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carey\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spear\",\"depth_chart_position\":null,\"player_id\":\"1804\",\"birth_city\":null,\"fantasy_data_id\":15979,\"years_exp\":1,\"hashtag\":\"#CareySpear-NFL-FA-1\",\"search_first_name\":\"carey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Carey Spear\",\"sportradar_id\":\"ef9c68a7-4b4e-4dd8-97f7-2e48dac48b23\",\"pandascore_id\":null,\"yahoo_id\":27799,\"last_name\":\"Spear\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555654,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"careyspear\",\"birth_date\":\"1992-01-05\",\"espn_id\":17041},\"5037\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034774\",\"first_name\":\"Breeland\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1601687140453,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"speaks\",\"depth_chart_position\":null,\"player_id\":\"5037\",\"birth_city\":null,\"fantasy_data_id\":19858,\"years_exp\":2,\"hashtag\":\"#BreelandSpeaks-NFL-DAL-57\",\"search_first_name\":\"breeland\",\"rotowire_id\":12585,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1305,\"age\":24,\"full_name\":\"Breeland Speaks\",\"sportradar_id\":\"54074654-5618-4b09-98e7-560d4b0d91f6\",\"pandascore_id\":null,\"yahoo_id\":31016,\"last_name\":\"Speaks\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Callaway (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'3\\\"\",\"search_full_name\":\"breelandspeaks\",\"birth_date\":\"1995-12-18\",\"espn_id\":3128740},\"10\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tulloch\",\"depth_chart_position\":null,\"player_id\":\"10\",\"birth_city\":null,\"fantasy_data_id\":384,\"years_exp\":14,\"hashtag\":\"#StephenTulloch-NFL-FA-50\",\"search_first_name\":\"stephen\",\"rotowire_id\":4748,\"rotoworld_id\":3936,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Stephen Tulloch\",\"sportradar_id\":\"e4a19da6-a95d-47b1-a8ae-cbaad5777487\",\"pandascore_id\":null,\"yahoo_id\":7865,\"last_name\":\"Tulloch\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Killian (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"5'11\\\"\",\"search_full_name\":\"stephentulloch\",\"birth_date\":\"1985-01-01\",\"espn_id\":9702},\"2797\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lemon\",\"depth_chart_position\":null,\"player_id\":\"2797\",\"birth_city\":null,\"fantasy_data_id\":17265,\"years_exp\":1,\"hashtag\":\"#ShawnLemon-NFL-FA-46\",\"search_first_name\":\"shawn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Shawn Lemon\",\"sportradar_id\":\"9e8a0f57-23e9-4751-80fe-ce0c0952bf78\",\"pandascore_id\":null,\"yahoo_id\":28370,\"last_name\":\"Lemon\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shawnlemon\",\"birth_date\":\"1988-08-25\",\"espn_id\":2271986},\"7163\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"benzinger\",\"depth_chart_position\":null,\"player_id\":\"7163\",\"birth_city\":null,\"fantasy_data_id\":22164,\"years_exp\":0,\"hashtag\":\"#JakeBenzinger-NFL-FA-0\",\"search_first_name\":\"jake\",\"rotowire_id\":15095,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jake Benzinger\",\"sportradar_id\":\"9a0ca58a-7850-44b1-9866-50d7120faecc\",\"pandascore_id\":null,\"yahoo_id\":33072,\"last_name\":\"Benzinger\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jakebenzinger\",\"birth_date\":\"1997-01-30\",\"espn_id\":null},\"2303\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"2303\",\"birth_city\":null,\"fantasy_data_id\":16758,\"years_exp\":1,\"hashtag\":\"#JoshHarris-NFL-FA-40\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Josh Harris\",\"sportradar_id\":\"1858f746-cbd9-492f-83ef-3f963b110962\",\"pandascore_id\":null,\"yahoo_id\":28331,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshharris\",\"birth_date\":\"1991-01-22\",\"espn_id\":2467210},\"6637\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035387\",\"first_name\":\"Nico\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"6637\",\"birth_city\":null,\"fantasy_data_id\":21439,\"years_exp\":1,\"hashtag\":\"#NicoEvans-NFL-PHI-41\",\"search_first_name\":\"nico\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nico Evans\",\"sportradar_id\":\"d77d9cb1-7fbf-4f77-9f55-cd52afd0ba91\",\"pandascore_id\":null,\"yahoo_id\":32404,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823870,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"nicoevans\",\"birth_date\":null,\"espn_id\":null},\"3673\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032584\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1575346252637,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rose\",\"depth_chart_position\":null,\"player_id\":\"3673\",\"birth_city\":null,\"fantasy_data_id\":18473,\"years_exp\":4,\"hashtag\":\"#NickRose-NFL-FA-6\",\"search_first_name\":\"nick\",\"rotowire_id\":11434,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nick Rose\",\"sportradar_id\":\"7df7e968-8402-48a4-b0b7-97cb54a1702e\",\"pandascore_id\":null,\"yahoo_id\":29659,\"last_name\":\"Rose\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691355,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nickrose\",\"birth_date\":\"1994-05-05\",\"espn_id\":2971728},\"4457\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033310\",\"first_name\":\"JP\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1546831504195,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flynn\",\"depth_chart_position\":null,\"player_id\":\"4457\",\"birth_city\":null,\"fantasy_data_id\":19321,\"years_exp\":3,\"hashtag\":\"#JPFlynn-NFL-FA-60\",\"search_first_name\":\"jp\",\"rotowire_id\":12457,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"JP Flynn\",\"sportradar_id\":\"6c51cb10-bafe-40a2-9a1e-002dda2f88e1\",\"pandascore_id\":null,\"yahoo_id\":30554,\"last_name\":\"Flynn\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jpflynn\",\"birth_date\":\"1993-08-30\",\"espn_id\":17727},\"4455\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033308\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606501503914,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"breida\",\"depth_chart_position\":\"RB\",\"player_id\":\"4455\",\"birth_city\":null,\"fantasy_data_id\":19319,\"years_exp\":3,\"hashtag\":\"#MattBreida-NFL-MIA-22\",\"search_first_name\":\"matt\",\"rotowire_id\":12289,\"rotoworld_id\":12678,\"active\":true,\"search_rank\":91,\"age\":25,\"full_name\":\"Matt Breida\",\"sportradar_id\":\"6249d2c0-75dc-4586-943b-1c103a9eb419\",\"pandascore_id\":null,\"yahoo_id\":30552,\"last_name\":\"Breida\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":\"Nature Coast Technical (FL)\",\"depth_chart_order\":2,\"stats_id\":750097,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mattbreida\",\"birth_date\":\"1995-02-28\",\"espn_id\":3049916},\"5376\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034415\",\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605150308370,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cichy\",\"depth_chart_position\":null,\"player_id\":\"5376\",\"birth_city\":null,\"fantasy_data_id\":20046,\"years_exp\":2,\"hashtag\":\"#JackCichy-NFL-TB-48\",\"search_first_name\":\"jack\",\"rotowire_id\":12528,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1404,\"age\":25,\"full_name\":\"Jack Cichy\",\"sportradar_id\":\"9a4fd6b9-9ddc-4161-ab9a-3013a792c70d\",\"pandascore_id\":null,\"yahoo_id\":31172,\"last_name\":\"Cichy\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Hill Murray (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jackcichy\",\"birth_date\":\"1995-05-05\",\"espn_id\":3045259},\"6111\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035100\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599589848794,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"browning\",\"depth_chart_position\":\"QB\",\"player_id\":\"6111\",\"birth_city\":null,\"fantasy_data_id\":21046,\"years_exp\":1,\"hashtag\":\"#JakeBrowning-NFL-MIN-3\",\"search_first_name\":\"jake\",\"rotowire_id\":13504,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1646,\"age\":24,\"full_name\":\"Jake Browning\",\"sportradar_id\":\"f2f29019-7306-4b1c-a9d8-e9f802cb06e0\",\"pandascore_id\":null,\"yahoo_id\":32138,\"last_name\":\"Browning\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Folsom (CA)\",\"depth_chart_order\":3,\"stats_id\":865844,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakebrowning\",\"birth_date\":\"1996-04-11\",\"espn_id\":3886812},\"7119\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599703250630,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"SS\",\"player_id\":\"7119\",\"birth_city\":null,\"fantasy_data_id\":22133,\"years_exp\":0,\"hashtag\":\"#KennyRobinson-NFL-CAR-27\",\"search_first_name\":\"kenny\",\"rotowire_id\":14787,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1928,\"age\":21,\"full_name\":\"Kenny Robinson\",\"sportradar_id\":\"0d226e62-3a43-4a9f-a985-05214182146f\",\"pandascore_id\":null,\"yahoo_id\":32822,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Imani Christian (PA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kennyrobinson\",\"birth_date\":\"1999-01-08\",\"espn_id\":4241889},\"2655\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032081\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1585008633963,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dzubnar\",\"depth_chart_position\":\"LILB\",\"player_id\":\"2655\",\"birth_city\":null,\"fantasy_data_id\":17123,\"years_exp\":5,\"hashtag\":\"#NickDzubnar-NFL-TEN-49\",\"search_first_name\":\"nick\",\"rotowire_id\":10684,\"rotoworld_id\":null,\"active\":true,\"search_rank\":921,\"age\":29,\"full_name\":\"Nick Dzubnar\",\"sportradar_id\":\"b0b804c6-b75b-4497-8f47-86ce924f862a\",\"pandascore_id\":null,\"yahoo_id\":28679,\"last_name\":\"Dzubnar\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Cal Poly\",\"high_school\":\"Mission Viejo (CA)\",\"depth_chart_order\":2,\"stats_id\":557820,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickdzubnar\",\"birth_date\":\"1991-08-15\",\"espn_id\":2518789},\"6510\":{\"position\":\"DT\",\"injury_notes\":\"Dalton is expected to land on Injured Reserve and miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\" 00-0035179\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598823960123,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dalton\",\"depth_chart_position\":null,\"player_id\":\"6510\",\"birth_city\":null,\"fantasy_data_id\":21507,\"years_exp\":1,\"hashtag\":\"#JalenDalton-NFL-NO-77\",\"search_first_name\":\"jalen\",\"rotowire_id\":14164,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jalen Dalton\",\"sportradar_id\":\"3df436ea-5825-4ef5-b33f-d221d8f5992e\",\"pandascore_id\":null,\"yahoo_id\":32374,\"last_name\":\"Dalton\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"West Forsyth (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jalendalton\",\"birth_date\":\"1997-08-04\",\"espn_id\":3895834},\"6197\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035727\",\"first_name\":\"Durval\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"queirozneto\",\"depth_chart_position\":null,\"player_id\":\"6197\",\"birth_city\":null,\"fantasy_data_id\":21098,\"years_exp\":1,\"hashtag\":\"#DurvalQueirozNeto-NFL-MIA-69\",\"search_first_name\":\"durval\",\"rotowire_id\":13932,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Durval Queiroz Neto\",\"sportradar_id\":\"890deaca-e542-4565-95f7-b0bacc9c46ba\",\"pandascore_id\":null,\"yahoo_id\":31823,\"last_name\":\"Queiroz Neto\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"durvalqueirozneto\",\"birth_date\":\"1992-08-27\",\"espn_id\":4421391},\"6289\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035696\",\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shelley\",\"depth_chart_position\":\"CB\",\"player_id\":\"6289\",\"birth_city\":null,\"fantasy_data_id\":21122,\"years_exp\":1,\"hashtag\":\"#DukeShelley-NFL-CHI-20\",\"search_first_name\":\"duke\",\"rotowire_id\":13986,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1668,\"age\":24,\"full_name\":\"Duke Shelley\",\"sportradar_id\":\"a7450b47-b784-490b-8edd-b5502f16366f\",\"pandascore_id\":null,\"yahoo_id\":32037,\"last_name\":\"Shelley\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Tucker (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'8\\\"\",\"search_full_name\":\"dukeshelley\",\"birth_date\":\"1996-10-08\",\"espn_id\":3916126},\"3286\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032775\",\"first_name\":\"Demarcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606236353191,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3286\",\"birth_city\":null,\"fantasy_data_id\":18047,\"years_exp\":4,\"hashtag\":\"#DemarcusRobinson-NFL-KC-11\",\"search_first_name\":\"demarcus\",\"rotowire_id\":11163,\"rotoworld_id\":11438,\"active\":true,\"search_rank\":248,\"age\":26,\"full_name\":\"Demarcus Robinson\",\"sportradar_id\":\"46b16198-116f-4913-85db-2bc21462bd66\",\"pandascore_id\":null,\"yahoo_id\":29360,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Peach County (GA)\",\"depth_chart_order\":2,\"stats_id\":727279,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"demarcusrobinson\",\"birth_date\":\"1994-09-21\",\"espn_id\":3043116},\"6906\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603570256333,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gandygolden\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6906\",\"birth_city\":null,\"fantasy_data_id\":21742,\"years_exp\":0,\"hashtag\":\"#AntonioGandyGolden-NFL-WAS-10\",\"search_first_name\":\"antonio\",\"rotowire_id\":14568,\"rotoworld_id\":null,\"active\":true,\"search_rank\":217,\"age\":22,\"full_name\":\"Antonio Gandy-Golden\",\"sportradar_id\":\"7bb0744a-c93f-401b-9091-2a34072a40c2\",\"pandascore_id\":null,\"yahoo_id\":32812,\"last_name\":\"Gandy-Golden\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":\"Paulding County (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"antoniogandygolden\",\"birth_date\":\"1998-04-11\",\"espn_id\":4029893},\"2537\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031962\",\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1511814603642,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alford\",\"depth_chart_position\":null,\"player_id\":\"2537\",\"birth_city\":null,\"fantasy_data_id\":16997,\"years_exp\":5,\"hashtag\":\"#MarioAlford-NFL-FA-15\",\"search_first_name\":\"mario\",\"rotowire_id\":10226,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mario Alford\",\"sportradar_id\":\"7ac67432-0811-432b-a425-e1abf1859475\",\"pandascore_id\":null,\"yahoo_id\":28626,\"last_name\":\"Alford\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Greenville (GA)\",\"depth_chart_order\":null,\"stats_id\":748114,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marioalford\",\"birth_date\":\"1992-02-25\",\"espn_id\":3052686},\"1016\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"delapuente\",\"depth_chart_position\":null,\"player_id\":\"1016\",\"birth_city\":null,\"fantasy_data_id\":13662,\"years_exp\":12,\"hashtag\":\"#BrianDeLaPuente-NFL-FA-60\",\"search_first_name\":\"brian\",\"rotowire_id\":7263,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brian De La Puente\",\"sportradar_id\":\"5d88da46-b21f-4af6-ae0d-4f7f6c569530\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"De La Puente\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"San Clemente (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'3\\\"\",\"search_full_name\":\"briandelapuente\",\"birth_date\":\"1985-05-13\",\"espn_id\":11692},\"6328\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035499\",\"first_name\":\"Kyron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1588821054839,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"6328\",\"birth_city\":null,\"fantasy_data_id\":21234,\"years_exp\":1,\"hashtag\":\"#KyronBrown-NFL-NYJ-35\",\"search_first_name\":\"kyron\",\"rotowire_id\":14223,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1700,\"age\":24,\"full_name\":\"Kyron Brown\",\"sportradar_id\":\"cf93a57e-129e-4e81-8d40-d8772ee0403c\",\"pandascore_id\":null,\"yahoo_id\":32522,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":\"Boynton Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kyronbrown\",\"birth_date\":\"1996-05-26\",\"espn_id\":3125705},\"5808\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034897\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jessop\",\"depth_chart_position\":null,\"player_id\":\"5808\",\"birth_city\":null,\"fantasy_data_id\":20704,\"years_exp\":2,\"hashtag\":\"#ConnorJessop-NFL-FA-8\",\"search_first_name\":\"connor\",\"rotowire_id\":13404,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Connor Jessop\",\"sportradar_id\":\"d5008b72-1433-4239-b06c-14c5b33415b0\",\"pandascore_id\":null,\"yahoo_id\":31804,\"last_name\":\"Jessop\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691652,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"connorjessop\",\"birth_date\":\"1993-12-27\",\"espn_id\":2979695},\"386\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lloyd\",\"depth_chart_position\":null,\"player_id\":\"386\",\"birth_city\":null,\"fantasy_data_id\":8694,\"years_exp\":11,\"hashtag\":\"#BrandonLloyd-NFL-FA-84\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Brandon Lloyd\",\"sportradar_id\":\"aff54abb-40bc-4a14-8569-62d25a12fa0d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lloyd\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonlloyd\",\"birth_date\":\"1981-07-05\",\"espn_id\":4582},\"4918\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033189\",\"first_name\":\"Brock\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"4918\",\"birth_city\":null,\"fantasy_data_id\":18836,\"years_exp\":3,\"hashtag\":\"#BrockMiller-NFL-FA-1\",\"search_first_name\":\"brock\",\"rotowire_id\":11727,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brock Miller\",\"sportradar_id\":\"c9593a7a-1b6d-4112-aabe-2c47f53e6f13\",\"pandascore_id\":null,\"yahoo_id\":30101,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brockmiller\",\"birth_date\":null,\"espn_id\":2471491},\"6546\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bigelow\",\"depth_chart_position\":null,\"player_id\":\"6546\",\"birth_city\":null,\"fantasy_data_id\":21423,\"years_exp\":1,\"hashtag\":\"#KennyBigelow-NFL-FA-76\",\"search_first_name\":\"kenny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kenny Bigelow\",\"sportradar_id\":\"05e5f95e-0ad6-46f5-bbf4-a45d06c20b25\",\"pandascore_id\":null,\"yahoo_id\":32389,\"last_name\":\"Bigelow\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kennybigelow\",\"birth_date\":\"1995-03-31\",\"espn_id\":3043226},\"4330\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033266\",\"first_name\":\"JoJo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601312421271,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"natson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4330\",\"birth_city\":null,\"fantasy_data_id\":19184,\"years_exp\":3,\"hashtag\":\"#JoJoNatson-NFL-CLE-19\",\"search_first_name\":\"jojo\",\"rotowire_id\":12359,\"rotoworld_id\":12660,\"active\":true,\"search_rank\":549,\"age\":26,\"full_name\":\"JoJo Natson\",\"sportradar_id\":\"2d52ede5-1c65-4f18-a8ac-9306192ef625\",\"pandascore_id\":null,\"yahoo_id\":30531,\"last_name\":\"Natson\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":\"Boyd Anderson (FL)\",\"depth_chart_order\":3,\"stats_id\":693276,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"153\",\"height\":\"5'7\\\"\",\"search_full_name\":\"jojonatson\",\"birth_date\":\"1994-02-01\",\"espn_id\":2971830},\"659\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peerman\",\"depth_chart_position\":null,\"player_id\":\"659\",\"birth_city\":null,\"fantasy_data_id\":11737,\"years_exp\":11,\"hashtag\":\"#CedricPeerman-NFL-FA-30\",\"search_first_name\":\"cedric\",\"rotowire_id\":6014,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Cedric Peerman\",\"sportradar_id\":\"1a316ec7-47cc-4cc4-b624-bbbf276da7b9\",\"pandascore_id\":null,\"yahoo_id\":9449,\"last_name\":\"Peerman\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"William Campbell (VA)\",\"depth_chart_order\":null,\"stats_id\":267905,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cedricpeerman\",\"birth_date\":\"1986-10-10\",\"espn_id\":12519},\"2207\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":null,\"player_id\":\"2207\",\"birth_city\":null,\"fantasy_data_id\":16581,\"years_exp\":5,\"hashtag\":\"#RonaldPowell-NFL-FA-59\",\"search_first_name\":\"ronald\",\"rotowire_id\":9348,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ronald Powell\",\"sportradar_id\":\"b32fbcd6-2934-47f7-aa83-9f6024b62221\",\"pandascore_id\":null,\"yahoo_id\":27697,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ronaldpowell\",\"birth_date\":\"1991-05-14\",\"espn_id\":16887},\"4204\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033841\",\"first_name\":\"Blair\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602525026773,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4204\",\"birth_city\":null,\"fantasy_data_id\":19050,\"years_exp\":3,\"hashtag\":\"#BlairBrown-NFL-FA-53\",\"search_first_name\":\"blair\",\"rotowire_id\":11962,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Blair Brown\",\"sportradar_id\":\"900c4073-411b-4ef0-9188-fc4188ffe588\",\"pandascore_id\":null,\"yahoo_id\":30261,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"5'11\\\"\",\"search_full_name\":\"blairbrown\",\"birth_date\":\"1994-05-27\",\"espn_id\":2980639},\"5042\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034363\",\"first_name\":\"Deadrin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603557055345,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"senat\",\"depth_chart_position\":\"LDT\",\"player_id\":\"5042\",\"birth_city\":null,\"fantasy_data_id\":19899,\"years_exp\":2,\"hashtag\":\"#DeadrinSenat-NFL-ATL-94\",\"search_first_name\":\"deadrin\",\"rotowire_id\":12754,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1331,\"age\":26,\"full_name\":\"Deadrin Senat\",\"sportradar_id\":\"6524f633-b8dd-439d-82df-cd4f9f07ad29\",\"pandascore_id\":null,\"yahoo_id\":31060,\"last_name\":\"Senat\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Immokalee (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deadrinsenat\",\"birth_date\":\"1994-07-22\",\"espn_id\":3051376},\"6034\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034998\",\"first_name\":\"Donnie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599194455229,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"6034\",\"birth_city\":null,\"fantasy_data_id\":20856,\"years_exp\":1,\"hashtag\":\"#DonnieLewis-NFL-CIN-37\",\"search_first_name\":\"donnie\",\"rotowire_id\":13780,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1567,\"age\":24,\"full_name\":\"Donnie Lewis\",\"sportradar_id\":\"750877e5-ccdd-4072-9e1c-8d957e45b561\",\"pandascore_id\":null,\"yahoo_id\":32053,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Central (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"donnielewis\",\"birth_date\":\"1996-07-21\",\"espn_id\":3126245},\"5065\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034763\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1534189819709,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":\"LT\",\"player_id\":\"5065\",\"birth_city\":null,\"fantasy_data_id\":19888,\"years_exp\":2,\"hashtag\":\"#BrandonParker-NFL-LV-75\",\"search_first_name\":\"brandon\",\"rotowire_id\":12852,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Parker\",\"sportradar_id\":\"47e64968-acea-454d-a95f-107a90960aab\",\"pandascore_id\":null,\"yahoo_id\":31035,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"North Carolina A&T\",\"high_school\":\"A.L. Brown (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'8\\\"\",\"search_full_name\":\"brandonparker\",\"birth_date\":\"1995-10-21\",\"espn_id\":3072292},\"2299\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fogg\",\"depth_chart_position\":null,\"player_id\":\"2299\",\"birth_city\":null,\"fantasy_data_id\":16747,\"years_exp\":1,\"hashtag\":\"#KevinFogg-NFL-FA-37\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kevin Fogg\",\"sportradar_id\":\"6dedddf6-9d67-4d74-bd63-6929b7c18d88\",\"pandascore_id\":null,\"yahoo_id\":28308,\"last_name\":\"Fogg\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kevinfogg\",\"birth_date\":\"1991-08-31\",\"espn_id\":17491},\"1844\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031156\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1564589419946,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ott\",\"depth_chart_position\":null,\"player_id\":\"1844\",\"birth_city\":null,\"fantasy_data_id\":16051,\"years_exp\":6,\"hashtag\":\"#TylerOtt-NFL-SEA-69\",\"search_first_name\":\"tyler\",\"rotowire_id\":10155,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tyler Ott\",\"sportradar_id\":\"c7e51d4d-18d6-442b-850d-040411225b14\",\"pandascore_id\":null,\"yahoo_id\":28221,\"last_name\":\"Ott\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"Jenks (OK)\",\"depth_chart_order\":null,\"stats_id\":553024,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerott\",\"birth_date\":\"1992-02-28\",\"espn_id\":17378},\"3365\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"landes\",\"depth_chart_position\":null,\"player_id\":\"3365\",\"birth_city\":null,\"fantasy_data_id\":18126,\"years_exp\":1,\"hashtag\":\"#JimmyLandes-NFL-FA-42\",\"search_first_name\":\"jimmy\",\"rotowire_id\":11100,\"rotoworld_id\":11494,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jimmy Landes\",\"sportradar_id\":\"0d5ff7a9-b7b5-40d4-affb-8f7cdd9cc786\",\"pandascore_id\":null,\"yahoo_id\":29444,\"last_name\":\"Landes\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jimmylandes\",\"birth_date\":\"1992-08-13\",\"espn_id\":2578774},\"137\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lofton\",\"depth_chart_position\":null,\"player_id\":\"137\",\"birth_city\":null,\"fantasy_data_id\":3785,\"years_exp\":12,\"hashtag\":\"#CurtisLofton-NFL-FA-50\",\"search_first_name\":\"curtis\",\"rotowire_id\":5590,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Curtis Lofton\",\"sportradar_id\":\"ede216dd-e562-4804-83db-f29392691105\",\"pandascore_id\":null,\"yahoo_id\":8814,\"last_name\":\"Lofton\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Kingfisher (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'0\\\"\",\"search_full_name\":\"curtislofton\",\"birth_date\":\"1986-06-09\",\"espn_id\":11271},\"1498\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030420\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1560461461537,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"amerson\",\"depth_chart_position\":null,\"player_id\":\"1498\",\"birth_city\":null,\"fantasy_data_id\":15096,\"years_exp\":7,\"hashtag\":\"#DavidAmerson-NFL-FA-38\",\"search_first_name\":\"david\",\"rotowire_id\":8643,\"rotoworld_id\":8449,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"David Amerson\",\"sportradar_id\":\"2ba5bdad-0b7c-4637-89a3-5b7b34d215b0\",\"pandascore_id\":null,\"yahoo_id\":26674,\"last_name\":\"Amerson\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Dudley (NC)\",\"depth_chart_order\":null,\"stats_id\":557329,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidamerson\",\"birth_date\":\"1991-12-08\",\"espn_id\":15820},\"4425\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033391\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"4425\",\"birth_city\":null,\"fantasy_data_id\":19285,\"years_exp\":3,\"hashtag\":\"#JasonKing-NFL-FA-65\",\"search_first_name\":\"jason\",\"rotowire_id\":12927,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jason King\",\"sportradar_id\":\"82d57e35-193d-4f1f-ae40-f73b4c4c15c0\",\"pandascore_id\":null,\"yahoo_id\":30665,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jasonking\",\"birth_date\":\"1993-11-18\",\"espn_id\":2977770},\"6152\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035530\",\"first_name\":\"Khari\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606338902931,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"willis\",\"depth_chart_position\":\"SS\",\"player_id\":\"6152\",\"birth_city\":null,\"fantasy_data_id\":20991,\"years_exp\":1,\"hashtag\":\"#KhariWillis-NFL-IND-37\",\"search_first_name\":\"khari\",\"rotowire_id\":13760,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1624,\"age\":24,\"full_name\":\"Khari Willis\",\"sportradar_id\":\"26421b57-c32f-45d3-abcf-c23defaf4f2e\",\"pandascore_id\":null,\"yahoo_id\":31941,\"last_name\":\"Willis\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Lumen Christi Catholic (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"khariwillis\",\"birth_date\":\"1996-05-07\",\"espn_id\":3929835},\"3836\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032929\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1564270205464,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cowser\",\"depth_chart_position\":null,\"player_id\":\"3836\",\"birth_city\":null,\"fantasy_data_id\":18656,\"years_exp\":4,\"hashtag\":\"#JamesCowser-NFL-FA-49\",\"search_first_name\":\"james\",\"rotowire_id\":10983,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"James Cowser\",\"sportradar_id\":\"3935a558-5680-4a4f-9a7a-a067210a2a42\",\"pandascore_id\":null,\"yahoo_id\":29955,\"last_name\":\"Cowser\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamescowser\",\"birth_date\":\"1990-09-13\",\"espn_id\":2471470},\"3804\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peterson\",\"depth_chart_position\":null,\"player_id\":\"3804\",\"birth_city\":null,\"fantasy_data_id\":18618,\"years_exp\":0,\"hashtag\":\"#DarrinPeterson-NFL-FA-15\",\"search_first_name\":\"darrin\",\"rotowire_id\":11354,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Darrin Peterson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29923,\"last_name\":\"Peterson\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"darrinpeterson\",\"birth_date\":\"1994-07-14\",\"espn_id\":2968269},\"7100\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1600201538550,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7100\",\"birth_city\":null,\"fantasy_data_id\":22128,\"years_exp\":0,\"hashtag\":\"#DerrickDillon-NFL-NYG-6\",\"search_first_name\":\"derrick\",\"rotowire_id\":14803,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrick Dillon\",\"sportradar_id\":\"25ed33f9-7abb-421b-91c0-46fb7f581a76\",\"pandascore_id\":null,\"yahoo_id\":33038,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Pine (LA)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"derrickdillon\",\"birth_date\":\"1995-10-28\",\"espn_id\":3843469},\"5158\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034473\",\"first_name\":\"Dennis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603668632304,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gardeck\",\"depth_chart_position\":\"SLB\",\"player_id\":\"5158\",\"birth_city\":null,\"fantasy_data_id\":20085,\"years_exp\":2,\"hashtag\":\"#DennisGardeck-NFL-ARI-45\",\"search_first_name\":\"dennis\",\"rotowire_id\":13210,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1413,\"age\":26,\"full_name\":\"Dennis Gardeck\",\"sportradar_id\":\"48700b7b-210c-4ced-9c57-3e21162e7752\",\"pandascore_id\":null,\"yahoo_id\":31299,\"last_name\":\"Gardeck\",\"metadata\":null,\"college\":\"Sioux Falls\",\"high_school\":\"Crystal Lake South (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dennisgardeck\",\"birth_date\":\"1994-08-09\",\"espn_id\":4334300},\"3350\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1573001421159,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"3350\",\"birth_city\":null,\"fantasy_data_id\":18111,\"years_exp\":3,\"hashtag\":\"#CoryJames-NFL-FA-57\",\"search_first_name\":\"cory\",\"rotowire_id\":11229,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cory James\",\"sportradar_id\":\"f9afa35e-b162-4b87-a50b-34759f522b88\",\"pandascore_id\":null,\"yahoo_id\":29428,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":590953,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coryjames\",\"birth_date\":\"1993-05-22\",\"espn_id\":2575663},\"4262\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033299\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1576549227637,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4262\",\"birth_city\":null,\"fantasy_data_id\":19108,\"years_exp\":3,\"hashtag\":\"#DerrickJones-NFL-FA-31\",\"search_first_name\":\"derrick\",\"rotowire_id\":12210,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrick Jones\",\"sportradar_id\":\"a3012bb8-118f-41f9-a010-e264499ff750\",\"pandascore_id\":null,\"yahoo_id\":30316,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749189,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'2\\\"\",\"search_full_name\":\"derrickjones\",\"birth_date\":\"1994-12-04\",\"espn_id\":3051880},\"6113\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035225\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brumfield\",\"depth_chart_position\":null,\"player_id\":\"6113\",\"birth_city\":null,\"fantasy_data_id\":21047,\"years_exp\":1,\"hashtag\":\"#GarrettBrumfield-NFL-FA-68\",\"search_first_name\":\"garrett\",\"rotowire_id\":14196,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Garrett Brumfield\",\"sportradar_id\":\"21b89b42-8e13-4450-a5ff-a080c80a5400\",\"pandascore_id\":null,\"yahoo_id\":32167,\"last_name\":\"Brumfield\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrettbrumfield\",\"birth_date\":\"1996-06-23\",\"espn_id\":3115391},\"1350\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meeks\",\"depth_chart_position\":null,\"player_id\":\"1350\",\"birth_city\":null,\"fantasy_data_id\":14869,\"years_exp\":7,\"hashtag\":\"#JonathanMeeks-NFL-FA-36\",\"search_first_name\":\"jonathan\",\"rotowire_id\":8946,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jonathan Meeks\",\"sportradar_id\":\"c3028465-9dce-4e8f-9f1b-2da73bce2d14\",\"pandascore_id\":null,\"yahoo_id\":26766,\"last_name\":\"Meeks\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Rock Hill (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonathanmeeks\",\"birth_date\":\"1989-11-08\",\"espn_id\":15956},\"6654\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035522\",\"first_name\":\"Jojo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tillery\",\"depth_chart_position\":null,\"player_id\":\"6654\",\"birth_city\":null,\"fantasy_data_id\":21546,\"years_exp\":1,\"hashtag\":\"#JojoTillery-NFL-FA-47\",\"search_first_name\":\"jojo\",\"rotowire_id\":14207,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jojo Tillery\",\"sportradar_id\":\"991678cd-6d07-45d0-98b1-3d40e5725c29\",\"pandascore_id\":null,\"yahoo_id\":32430,\"last_name\":\"Tillery\",\"metadata\":null,\"college\":\"Wofford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jojotillery\",\"birth_date\":\"1997-06-22\",\"espn_id\":3912991},\"7514\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pinckney\",\"depth_chart_position\":null,\"player_id\":\"7514\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#MichaelPinckney-NFL-NE-0\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":22,\"full_name\":\"Michael Pinckney\",\"sportradar_id\":\"a377423e-416b-4a5d-b183-9f37645e447f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pinckney\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Miami\",\"high_school\":\"Raines (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelpinckney\",\"birth_date\":\"1998-05-28\",\"espn_id\":null},\"3946\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033176\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1546402515566,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ceresna\",\"depth_chart_position\":null,\"player_id\":\"3946\",\"birth_city\":null,\"fantasy_data_id\":18779,\"years_exp\":4,\"hashtag\":\"#JakeCeresna-NFL-FA-61\",\"search_first_name\":\"jake\",\"rotowire_id\":11669,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jake Ceresna\",\"sportradar_id\":\"10f3023b-d446-4e46-991b-4d2cc9aa0f60\",\"pandascore_id\":null,\"yahoo_id\":30076,\"last_name\":\"Ceresna\",\"metadata\":null,\"college\":\"Cortland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jakeceresna\",\"birth_date\":\"1995-07-21\",\"espn_id\":4043720},\"5425\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034106\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"diarse\",\"depth_chart_position\":null,\"player_id\":\"5425\",\"birth_city\":null,\"fantasy_data_id\":20524,\"years_exp\":2,\"hashtag\":\"#JohnDiarse-NFL-FA-9\",\"search_first_name\":\"john\",\"rotowire_id\":13097,\"rotoworld_id\":13560,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"John Diarse\",\"sportradar_id\":\"c3810dbe-73d5-4c83-ad0d-043275f5f910\",\"pandascore_id\":null,\"yahoo_id\":31376,\"last_name\":\"Diarse\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":727740,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johndiarse\",\"birth_date\":\"1994-12-10\",\"espn_id\":3042741},\"2142\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rajion\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":null,\"player_id\":\"2142\",\"birth_city\":null,\"fantasy_data_id\":16485,\"years_exp\":1,\"hashtag\":\"#RajionNeal-NFL-FA-43\",\"search_first_name\":\"rajion\",\"rotowire_id\":9527,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rajion Neal\",\"sportradar_id\":\"5f0c1287-c7cf-4427-99ca-179fd0f1b948\",\"pandascore_id\":null,\"yahoo_id\":28084,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542837,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rajionneal\",\"birth_date\":\"1992-03-28\",\"espn_id\":17221},\"5785\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034870\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1571082642904,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"5785\",\"birth_city\":null,\"fantasy_data_id\":20686,\"years_exp\":2,\"hashtag\":\"#JamesButler-NFL-FA-36\",\"search_first_name\":\"james\",\"rotowire_id\":13379,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"James Butler\",\"sportradar_id\":\"e528d5ca-0033-42f7-b4ff-509fa84b3046\",\"pandascore_id\":null,\"yahoo_id\":31781,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":821573,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jamesbutler\",\"birth_date\":\"1995-02-19\",\"espn_id\":3124608},\"1615\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":null,\"player_id\":\"1615\",\"birth_city\":null,\"fantasy_data_id\":15298,\"years_exp\":2,\"hashtag\":\"#ColinKelly-NFL-FA-0\",\"search_first_name\":\"colin\",\"rotowire_id\":10799,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Colin Kelly\",\"sportradar_id\":\"c5a35c0f-8536-40b1-8717-db4256c626f0\",\"pandascore_id\":null,\"yahoo_id\":27176,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"colinkelly\",\"birth_date\":\"1989-12-29\",\"espn_id\":null},\"6584\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035557\",\"first_name\":\"Deyon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1577043961089,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sizer\",\"depth_chart_position\":null,\"player_id\":\"6584\",\"birth_city\":null,\"fantasy_data_id\":21559,\"years_exp\":1,\"hashtag\":\"#DeyonSizer-NFL-DEN-91\",\"search_first_name\":\"deyon\",\"rotowire_id\":14287,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Deyon Sizer\",\"sportradar_id\":\"a1329bf2-4f70-48db-9785-3cd29fc7b56f\",\"pandascore_id\":null,\"yahoo_id\":32578,\"last_name\":\"Sizer\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Colorado State-Pueblo\",\"high_school\":\"Eaglecrest (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"deyonsizer\",\"birth_date\":\"1996-08-16\",\"espn_id\":3145343},\"2792\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031754\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1533919521550,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"2792\",\"birth_city\":null,\"fantasy_data_id\":17260,\"years_exp\":5,\"hashtag\":\"#TimScott-NFL-FA-45\",\"search_first_name\":\"tim\",\"rotowire_id\":10750,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tim Scott\",\"sportradar_id\":\"6ba5ea17-2790-448e-9fb8-2d0d05ca955c\",\"pandascore_id\":null,\"yahoo_id\":29021,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"timscott\",\"birth_date\":\"1993-01-25\",\"espn_id\":2577110},\"3653\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3653\",\"birth_city\":null,\"fantasy_data_id\":18446,\"years_exp\":7,\"hashtag\":\"#BrandonWilliams-NFL-FA-85\",\"search_first_name\":\"brandon\",\"rotowire_id\":11349,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Brandon Williams\",\"sportradar_id\":\"b6cca4b9-a1f4-45f1-a042-259da4d2d7db\",\"pandascore_id\":null,\"yahoo_id\":29901,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Eisenhower (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonwilliams\",\"birth_date\":\"1987-10-12\",\"espn_id\":2184059},\"3055\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"myers\",\"depth_chart_position\":null,\"player_id\":\"3055\",\"birth_city\":null,\"fantasy_data_id\":17777,\"years_exp\":5,\"hashtag\":\"#RobertMyers-NFL-FA-62\",\"search_first_name\":\"robert\",\"rotowire_id\":10473,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Robert Myers\",\"sportradar_id\":\"d3e2034f-26fb-4ec3-bdbc-793aa12452ee\",\"pandascore_id\":null,\"yahoo_id\":28564,\"last_name\":\"Myers\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"LaVergne (TN)\",\"depth_chart_order\":null,\"stats_id\":562702,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'5\\\"\",\"search_full_name\":\"robertmyers\",\"birth_date\":\"1991-12-26\",\"espn_id\":null},\"2339\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032217\",\"first_name\":\"Donovan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606182316453,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"LT\",\"player_id\":\"2339\",\"birth_city\":null,\"fantasy_data_id\":16795,\"years_exp\":5,\"hashtag\":\"#DonovanSmith-NFL-TB-76\",\"search_first_name\":\"donovan\",\"rotowire_id\":10271,\"rotoworld_id\":10463,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Donovan Smith\",\"sportradar_id\":\"f552cc18-aaf5-48ef-87f1-4791a101e553\",\"pandascore_id\":null,\"yahoo_id\":28422,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Owings Mills (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"338\",\"height\":\"6'6\\\"\",\"search_full_name\":\"donovansmith\",\"birth_date\":\"1993-06-23\",\"espn_id\":2582147},\"3173\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roger\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goodell\",\"depth_chart_position\":null,\"player_id\":\"3173\",\"birth_city\":null,\"fantasy_data_id\":17934,\"years_exp\":0,\"hashtag\":\"#RogerGoodell-NFL-FA-0\",\"search_first_name\":\"roger\",\"rotowire_id\":null,\"rotoworld_id\":8369,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Roger Goodell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Goodell\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rogergoodell\",\"birth_date\":null,\"espn_id\":null},\"3102\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"BJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lowery\",\"depth_chart_position\":null,\"player_id\":\"3102\",\"birth_city\":null,\"fantasy_data_id\":17853,\"years_exp\":1,\"hashtag\":\"#BJLowery-NFL-FA-30\",\"search_first_name\":\"bj\",\"rotowire_id\":10779,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"BJ Lowery\",\"sportradar_id\":\"23c040d7-d37c-4abf-bbf5-16c69e542663\",\"pandascore_id\":null,\"yahoo_id\":29218,\"last_name\":\"Lowery\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bjlowery\",\"birth_date\":\"1991-08-31\",\"espn_id\":2511701},\"7432\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"7432\",\"birth_city\":null,\"fantasy_data_id\":21941,\"years_exp\":0,\"hashtag\":\"#ChrisMiller-NFL-TEN-38\",\"search_first_name\":\"chris\",\"rotowire_id\":14692,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1856,\"age\":22,\"full_name\":\"Chris Miller\",\"sportradar_id\":\"2d969b4e-4da9-4bf6-abd7-02c5e607c080\",\"pandascore_id\":null,\"yahoo_id\":33287,\"last_name\":\"Miller\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Baylor\",\"high_school\":\"Lone Star (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrismiller\",\"birth_date\":\"1997-10-06\",\"espn_id\":4035402},\"3949\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"3949\",\"birth_city\":null,\"fantasy_data_id\":18782,\"years_exp\":0,\"hashtag\":\"#AlexRoss-NFL-FA-0\",\"search_first_name\":\"alex\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Alex Ross\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"alexross\",\"birth_date\":null,\"espn_id\":2565757},\"5364\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034338\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frazier\",\"depth_chart_position\":null,\"player_id\":\"5364\",\"birth_city\":null,\"fantasy_data_id\":20076,\"years_exp\":2,\"hashtag\":\"#JoshuaFrazier-NFL-FA-62\",\"search_first_name\":\"joshua\",\"rotowire_id\":12908,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joshua Frazier\",\"sportradar_id\":\"1d5c2aa1-3c96-4cea-9589-723d3cc9cd57\",\"pandascore_id\":null,\"yahoo_id\":31217,\"last_name\":\"Frazier\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshuafrazier\",\"birth_date\":\"1995-11-06\",\"espn_id\":3126350},\"3570\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"3570\",\"birth_city\":null,\"fantasy_data_id\":18345,\"years_exp\":0,\"hashtag\":\"#BrandonRoss-NFL-FA-46\",\"search_first_name\":\"brandon\",\"rotowire_id\":11211,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Ross\",\"sportradar_id\":\"ed6692e9-bc77-42fd-bc66-a167e4c44d77\",\"pandascore_id\":null,\"yahoo_id\":29544,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brandonross\",\"birth_date\":\"1992-11-09\",\"espn_id\":2577089},\"7063\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shea\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1594685134844,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"patterson\",\"depth_chart_position\":null,\"player_id\":\"7063\",\"birth_city\":null,\"fantasy_data_id\":21824,\"years_exp\":0,\"hashtag\":\"#SheaPatterson-NFL-FA-0\",\"search_first_name\":\"shea\",\"rotowire_id\":14469,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Shea Patterson\",\"sportradar_id\":\"11088e21-e119-4c5b-ba8e-6acce9a7cd3e\",\"pandascore_id\":null,\"yahoo_id\":33246,\"last_name\":\"Patterson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sheapatterson\",\"birth_date\":\"1997-01-17\",\"espn_id\":null},\"3740\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"3740\",\"birth_city\":null,\"fantasy_data_id\":18552,\"years_exp\":0,\"hashtag\":\"#TreJones-NFL-FA-45\",\"search_first_name\":\"tre\",\"rotowire_id\":11464,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tre Jones\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Mount Union\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'10\\\"\",\"search_full_name\":\"trejones\",\"birth_date\":null,\"espn_id\":3084848},\"4890\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1524869704181,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"turk\",\"depth_chart_position\":null,\"player_id\":\"4890\",\"birth_city\":null,\"fantasy_data_id\":19788,\"years_exp\":1,\"hashtag\":\"#BenTurk-NFL-NYJ-0\",\"search_first_name\":\"ben\",\"rotowire_id\":12762,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ben Turk\",\"sportradar_id\":\"40c7c35c-1393-420b-be10-127d850daee1\",\"pandascore_id\":null,\"yahoo_id\":30960,\"last_name\":\"Turk\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"benturk\",\"birth_date\":null,\"espn_id\":null},\"784\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027547\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1578078024720,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sherels\",\"depth_chart_position\":null,\"player_id\":\"784\",\"birth_city\":null,\"fantasy_data_id\":12681,\"years_exp\":10,\"hashtag\":\"#MarcusSherels-NFL-FA-35\",\"search_first_name\":\"marcus\",\"rotowire_id\":7236,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Marcus Sherels\",\"sportradar_id\":\"4f799675-2b27-4437-9acc-bc4e0c73ef0f\",\"pandascore_id\":null,\"yahoo_id\":24685,\"last_name\":\"Sherels\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"John Marshall (MN)\",\"depth_chart_order\":null,\"stats_id\":334435,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marcussherels\",\"birth_date\":\"1987-09-30\",\"espn_id\":13843},\"6657\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035600\",\"first_name\":\"Freedom\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605752444013,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"akinmoladun\",\"depth_chart_position\":null,\"player_id\":\"6657\",\"birth_city\":null,\"fantasy_data_id\":21584,\"years_exp\":1,\"hashtag\":\"#FreedomAkinmoladun-NFL-CIN-92\",\"search_first_name\":\"freedom\",\"rotowire_id\":14294,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1765,\"age\":24,\"full_name\":\"Freedom Akinmoladun\",\"sportradar_id\":\"594c3651-1a2f-453e-a39d-2c84a377f2b5\",\"pandascore_id\":null,\"yahoo_id\":32601,\"last_name\":\"Akinmoladun\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Grandview (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'3\\\"\",\"search_full_name\":\"freedomakinmoladun\",\"birth_date\":\"1996-02-11\",\"espn_id\":3116082},\"196\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leodis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mckelvin\",\"depth_chart_position\":null,\"player_id\":\"196\",\"birth_city\":null,\"fantasy_data_id\":5035,\"years_exp\":12,\"hashtag\":\"#LeodisMcKelvin-NFL-FA-21\",\"search_first_name\":\"leodis\",\"rotowire_id\":5750,\"rotoworld_id\":4682,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Leodis McKelvin\",\"sportradar_id\":\"d2d25b26-b748-41c5-a94f-6e25d5d0f9eb\",\"pandascore_id\":null,\"yahoo_id\":8788,\"last_name\":\"McKelvin\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Ware County HS (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"leodismckelvin\",\"birth_date\":\"1985-09-01\",\"espn_id\":11245},\"5183\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034204\",\"first_name\":\"Olasunkanmi\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577909734480,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adeniyi\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"5183\",\"birth_city\":null,\"fantasy_data_id\":20180,\"years_exp\":2,\"hashtag\":\"#OlasunkanmiAdeniyi-NFL-PIT-92\",\"search_first_name\":\"olasunkanmi\",\"rotowire_id\":12574,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1431,\"age\":23,\"full_name\":\"Olasunkanmi Adeniyi\",\"sportradar_id\":\"cc67f4a1-99e9-48a9-84f4-245d7425ba6f\",\"pandascore_id\":null,\"yahoo_id\":31484,\"last_name\":\"Adeniyi\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Toledo\",\"high_school\":\"George Bush (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'1\\\"\",\"search_full_name\":\"olasunkanmiadeniyi\",\"birth_date\":\"1997-09-12\",\"espn_id\":3126081},\"7324\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jessie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604806210897,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lemonier\",\"depth_chart_position\":\"DE/OB\",\"player_id\":\"7324\",\"birth_city\":null,\"fantasy_data_id\":22316,\"years_exp\":0,\"hashtag\":\"#JessieLemonier-NFL-LAC-90\",\"search_first_name\":\"jessie\",\"rotowire_id\":15083,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1977,\"age\":23,\"full_name\":\"Jessie Lemonier\",\"sportradar_id\":\"ba760d2d-a35a-4f9c-912d-05217aff53ab\",\"pandascore_id\":null,\"yahoo_id\":32985,\"last_name\":\"Lemonier\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":\"Hialeah (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jessielemonier\",\"birth_date\":\"1997-01-31\",\"espn_id\":4365493},\"4764\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marty\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hurney\",\"depth_chart_position\":null,\"player_id\":\"4764\",\"birth_city\":null,\"fantasy_data_id\":19683,\"years_exp\":0,\"hashtag\":\"#MartyHurney-NFL-FA-0\",\"search_first_name\":\"marty\",\"rotowire_id\":null,\"rotoworld_id\":12989,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marty Hurney\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hurney\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"martyhurney\",\"birth_date\":null,\"espn_id\":null},\"92\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"92\",\"birth_city\":null,\"fantasy_data_id\":2429,\"years_exp\":17,\"hashtag\":\"#AndreJohnson-NFL-FA-81\",\"search_first_name\":\"andre\",\"rotowire_id\":3028,\"rotoworld_id\":1575,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Andre Johnson\",\"sportradar_id\":\"848b34eb-1ca8-435c-a805-957aa71d4883\",\"pandascore_id\":null,\"yahoo_id\":6339,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miami Senior (FL)\",\"depth_chart_order\":null,\"stats_id\":184505,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andrejohnson\",\"birth_date\":\"1981-07-11\",\"espn_id\":4461},\"3787\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lars\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"koht\",\"depth_chart_position\":\"LDE\",\"player_id\":\"3787\",\"birth_city\":null,\"fantasy_data_id\":18601,\"years_exp\":0,\"hashtag\":\"#LarsKoht-NFL-FA-91\",\"search_first_name\":\"lars\",\"rotowire_id\":11627,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lars Koht\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29817,\"last_name\":\"Koht\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'5\\\"\",\"search_full_name\":\"larskoht\",\"birth_date\":\"1993-08-16\",\"espn_id\":2589334},\"1200\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028957\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1549316148771,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"1200\",\"birth_city\":null,\"fantasy_data_id\":14404,\"years_exp\":8,\"hashtag\":\"#AustinDavis-NFL-FA-12\",\"search_first_name\":\"austin\",\"rotowire_id\":8499,\"rotoworld_id\":8069,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Austin Davis\",\"sportradar_id\":\"fa8cfe11-018a-4d4c-9588-c86cab0415c0\",\"pandascore_id\":null,\"yahoo_id\":26346,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"West Lauderdale (MS)\",\"depth_chart_order\":null,\"stats_id\":400943,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"austindavis\",\"birth_date\":\"1989-06-02\",\"espn_id\":15187},\"3461\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032747\",\"first_name\":\"Russell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1546556736028,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hansbrough\",\"depth_chart_position\":null,\"player_id\":\"3461\",\"birth_city\":null,\"fantasy_data_id\":18225,\"years_exp\":4,\"hashtag\":\"#RussellHansbrough-NFL-FA-22\",\"search_first_name\":\"russell\",\"rotowire_id\":11410,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Russell Hansbrough\",\"sportradar_id\":\"2f260f4a-e42d-4456-a361-24e6e5a0de23\",\"pandascore_id\":null,\"yahoo_id\":29575,\"last_name\":\"Hansbrough\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":689907,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'8\\\"\",\"search_full_name\":\"russellhansbrough\",\"birth_date\":\"1993-11-19\",\"espn_id\":2971435},\"5800\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034890\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1566829820700,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stockton\",\"depth_chart_position\":\"RB\",\"player_id\":\"5800\",\"birth_city\":null,\"fantasy_data_id\":20697,\"years_exp\":2,\"hashtag\":\"#JustinStockton-NFL-FA-25\",\"search_first_name\":\"justin\",\"rotowire_id\":13395,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Stockton\",\"sportradar_id\":\"40e3d913-a28a-4e51-8618-70ac40382dc6\",\"pandascore_id\":null,\"yahoo_id\":31795,\"last_name\":\"Stockton\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":839039,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"justinstockton\",\"birth_date\":\"1995-07-06\",\"espn_id\":3139485},\"1597\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":null,\"player_id\":\"1597\",\"birth_city\":null,\"fantasy_data_id\":15257,\"years_exp\":3,\"hashtag\":\"#TyPowell-NFL-FA-57\",\"search_first_name\":\"ty\",\"rotowire_id\":8868,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ty Powell\",\"sportradar_id\":\"8e66a2b2-739f-4ab5-af4b-30d5138b54a1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Harding - AR\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'2\\\"\",\"search_full_name\":\"typowell\",\"birth_date\":\"1988-04-27\",\"espn_id\":16036},\"2178\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031383\",\"first_name\":\"Dezmen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1515468002151,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"southward\",\"depth_chart_position\":null,\"player_id\":\"2178\",\"birth_city\":null,\"fantasy_data_id\":16542,\"years_exp\":6,\"hashtag\":\"#DezmenSouthward-NFL-FA-37\",\"search_first_name\":\"dezmen\",\"rotowire_id\":9316,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dezmen Southward\",\"sportradar_id\":\"3f9d4b4d-2c3d-417e-a95b-714520b309be\",\"pandascore_id\":null,\"yahoo_id\":27596,\"last_name\":\"Southward\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":500678,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dezmensouthward\",\"birth_date\":\"1990-10-01\",\"espn_id\":16747},\"1967\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Seth\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lobato\",\"depth_chart_position\":null,\"player_id\":\"1967\",\"birth_city\":null,\"fantasy_data_id\":16228,\"years_exp\":1,\"hashtag\":\"#SethLobato-NFL-FA-4\",\"search_first_name\":\"seth\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Seth Lobato\",\"sportradar_id\":\"60715039-37cb-498d-97de-3828467eea5c\",\"pandascore_id\":null,\"yahoo_id\":27906,\"last_name\":\"Lobato\",\"metadata\":null,\"college\":\"Northern Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":500573,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sethlobato\",\"birth_date\":\"1990-12-05\",\"espn_id\":17074},\"143\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carlson\",\"depth_chart_position\":null,\"player_id\":\"143\",\"birth_city\":null,\"fantasy_data_id\":3878,\"years_exp\":7,\"hashtag\":\"#JohnCarlson-NFL-FA-89\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"John Carlson\",\"sportradar_id\":\"8ceab66f-c5eb-4d5a-970f-8210e3e20f7f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Carlson\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johncarlson\",\"birth_date\":\"1984-05-12\",\"espn_id\":11272},\"5596\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034329\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reaves\",\"depth_chart_position\":null,\"player_id\":\"5596\",\"birth_city\":null,\"fantasy_data_id\":20594,\"years_exp\":2,\"hashtag\":\"#MalikReaves-NFL-FA-38\",\"search_first_name\":\"malik\",\"rotowire_id\":12707,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malik Reaves\",\"sportradar_id\":\"3e310944-48c8-4d57-8e44-2a76e789980f\",\"pandascore_id\":null,\"yahoo_id\":31524,\"last_name\":\"Reaves\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'11\\\"\",\"search_full_name\":\"malikreaves\",\"birth_date\":\"1995-12-15\",\"espn_id\":3120863},\"6203\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035725\",\"first_name\":\"Valentine\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1574455216616,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":\"RB\",\"player_id\":\"6203\",\"birth_city\":null,\"fantasy_data_id\":21101,\"years_exp\":1,\"hashtag\":\"#ValentineHolmes-NFL-FA-39\",\"search_first_name\":\"valentine\",\"rotowire_id\":13936,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Valentine Holmes\",\"sportradar_id\":\"9559901c-5e13-4d23-bd11-d9eec372aabf\",\"pandascore_id\":null,\"yahoo_id\":31825,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":1164505,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"valentineholmes\",\"birth_date\":\"1995-07-04\",\"espn_id\":4421390},\"4371\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033347\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596205516318,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"tupou\",\"depth_chart_position\":null,\"player_id\":\"4371\",\"birth_city\":null,\"fantasy_data_id\":19228,\"years_exp\":3,\"hashtag\":\"#JoshTupou-NFL-CIN-91\",\"search_first_name\":\"josh\",\"rotowire_id\":12183,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1239,\"age\":26,\"full_name\":\"Josh Tupou\",\"sportradar_id\":\"1ad3e535-2b5c-48a8-82f0-c7a933d250f0\",\"pandascore_id\":null,\"yahoo_id\":30586,\"last_name\":\"Tupou\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Buena Park (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshtupou\",\"birth_date\":\"1994-05-02\",\"espn_id\":2979632},\"2498\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032069\",\"first_name\":\"Derron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554486319217,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2498\",\"birth_city\":null,\"fantasy_data_id\":16957,\"years_exp\":5,\"hashtag\":\"#DerronSmith-NFL-FA-37\",\"search_first_name\":\"derron\",\"rotowire_id\":10386,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Derron Smith\",\"sportradar_id\":\"04917392-c076-4f86-b3f2-c20350b0efb2\",\"pandascore_id\":null,\"yahoo_id\":28585,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Banning (CA)\",\"depth_chart_order\":null,\"stats_id\":562372,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"derronsmith\",\"birth_date\":\"1992-02-04\",\"espn_id\":2517248},\"4659\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nelson\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"4659\",\"birth_city\":null,\"fantasy_data_id\":19558,\"years_exp\":2,\"hashtag\":\"#NelsonAdams-NFL-FA-62\",\"search_first_name\":\"nelson\",\"rotowire_id\":12366,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nelson Adams\",\"sportradar_id\":\"067e9e8d-6122-4346-a819-bc5be588af97\",\"pandascore_id\":null,\"yahoo_id\":30383,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nelsonadams\",\"birth_date\":\"1994-02-16\",\"espn_id\":2971402},\"2011\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Juwan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"2011\",\"birth_city\":null,\"fantasy_data_id\":16287,\"years_exp\":6,\"hashtag\":\"#JuwanThompson-NFL-FA-40\",\"search_first_name\":\"juwan\",\"rotowire_id\":9837,\"rotoworld_id\":9831,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Juwan Thompson\",\"sportradar_id\":\"97f387a6-76fe-4ac3-b1db-ae4dc74d7ffa\",\"pandascore_id\":null,\"yahoo_id\":27832,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Woodward Academy (GA)\",\"depth_chart_order\":null,\"stats_id\":556180,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"juwanthompson\",\"birth_date\":\"1992-05-13\",\"espn_id\":17045},\"2084\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031241\",\"first_name\":\"Devon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605133207300,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kennard\",\"depth_chart_position\":\"OLB\",\"player_id\":\"2084\",\"birth_city\":null,\"fantasy_data_id\":16397,\"years_exp\":6,\"hashtag\":\"#DevonKennard-NFL-ARI-42\",\"search_first_name\":\"devon\",\"rotowire_id\":9377,\"rotoworld_id\":9682,\"active\":true,\"search_rank\":817,\"age\":29,\"full_name\":\"Devon Kennard\",\"sportradar_id\":\"036131ed-3862-4f06-8379-084d3b2352d5\",\"pandascore_id\":null,\"yahoo_id\":27702,\"last_name\":\"Kennard\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Desert Vista (AZ)\",\"depth_chart_order\":1,\"stats_id\":510152,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'3\\\"\",\"search_full_name\":\"devonkennard\",\"birth_date\":\"1991-06-24\",\"espn_id\":16820},\"4502\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033502\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532200801571,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"4502\",\"birth_city\":null,\"fantasy_data_id\":19374,\"years_exp\":3,\"hashtag\":\"#CameronLee-NFL-FA-61\",\"search_first_name\":\"cameron\",\"rotowire_id\":11803,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cameron Lee\",\"sportradar_id\":\"fe2712f8-45df-49b7-a871-d68b7006a912\",\"pandascore_id\":null,\"yahoo_id\":30414,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cameronlee\",\"birth_date\":\"1993-12-28\",\"espn_id\":3047195},\"4665\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"4665\",\"birth_city\":null,\"fantasy_data_id\":19564,\"years_exp\":1,\"hashtag\":\"#EliJenkins-NFL-LAC-5\",\"search_first_name\":\"eli\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Eli Jenkins\",\"sportradar_id\":\"fa958bf2-a299-4b4f-8e69-ae47a389b921\",\"pandascore_id\":null,\"yahoo_id\":30425,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":700808,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"elijenkins\",\"birth_date\":\"1994-08-07\",\"espn_id\":2983314},\"4504\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinsonwoodgett\",\"depth_chart_position\":null,\"player_id\":\"4504\",\"birth_city\":null,\"fantasy_data_id\":19376,\"years_exp\":2,\"hashtag\":\"#JohnRobinsonWoodgett-NFL-FA-42\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"John Robinson-Woodgett\",\"sportradar_id\":\"fdc94755-aca2-4368-b286-575e7f6c3487\",\"pandascore_id\":null,\"yahoo_id\":30416,\"last_name\":\"Robinson-Woodgett\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":703309,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnrobinsonwoodgett\",\"birth_date\":\"1993-08-01\",\"espn_id\":2982839},\"380\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1512750001181,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":null,\"player_id\":\"380\",\"birth_city\":null,\"fantasy_data_id\":8649,\"years_exp\":11,\"hashtag\":\"#RashadJennings-NFL-FA-23\",\"search_first_name\":\"rashad\",\"rotowire_id\":6007,\"rotoworld_id\":5273,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Rashad Jennings\",\"sportradar_id\":\"8d0e85c6-a77b-4e2c-97da-3ce6dbe34d34\",\"pandascore_id\":null,\"yahoo_id\":9514,\"last_name\":\"Jennings\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":\"Lynchburg (VA)\",\"depth_chart_order\":null,\"stats_id\":269058,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rashadjennings\",\"birth_date\":\"1985-03-26\",\"espn_id\":12503},\"1166\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029604\",\"first_name\":\"Kirk\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606340101915,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cousins\",\"depth_chart_position\":\"QB\",\"player_id\":\"1166\",\"birth_city\":null,\"fantasy_data_id\":14252,\"years_exp\":8,\"hashtag\":\"#KirkCousins-NFL-MIN-8\",\"search_first_name\":\"kirk\",\"rotowire_id\":8057,\"rotoworld_id\":7486,\"active\":true,\"search_rank\":159,\"age\":32,\"full_name\":\"Kirk Cousins\",\"sportradar_id\":\"bbd0942c-6f77-4f83-a6d0-66ec6548019e\",\"pandascore_id\":null,\"yahoo_id\":25812,\"last_name\":\"Cousins\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Holland Christian (MI)\",\"depth_chart_order\":1,\"stats_id\":403308,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kirkcousins\",\"birth_date\":\"1988-08-19\",\"espn_id\":14880},\"6651\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035330\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577557809708,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pittman\",\"depth_chart_position\":null,\"player_id\":\"6651\",\"birth_city\":null,\"fantasy_data_id\":21543,\"years_exp\":1,\"hashtag\":\"#AnthonyPittman-NFL-DET-57\",\"search_first_name\":\"anthony\",\"rotowire_id\":14211,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1758,\"age\":24,\"full_name\":\"Anthony Pittman\",\"sportradar_id\":\"23df1eb7-f589-4e49-bb31-0b4ce983fe32\",\"pandascore_id\":null,\"yahoo_id\":32457,\"last_name\":\"Pittman\",\"metadata\":null,\"college\":\"Wayne State, Mich.\",\"high_school\":\"Birmingham Groves (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"anthonypittman\",\"birth_date\":\"1996-11-24\",\"espn_id\":4423367},\"3475\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keyarris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garrett\",\"depth_chart_position\":null,\"player_id\":\"3475\",\"birth_city\":null,\"fantasy_data_id\":18240,\"years_exp\":4,\"hashtag\":\"#KeyarrisGarrett-NFL-FA-0\",\"search_first_name\":\"keyarris\",\"rotowire_id\":10992,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Keyarris Garrett\",\"sportradar_id\":\"30aec6eb-398e-4ce2-b267-f7e3ec3450b3\",\"pandascore_id\":null,\"yahoo_id\":29502,\"last_name\":\"Garrett\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607180,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keyarrisgarrett\",\"birth_date\":\"1992-09-26\",\"espn_id\":2575381},\"1792\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kadron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boone\",\"depth_chart_position\":null,\"player_id\":\"1792\",\"birth_city\":null,\"fantasy_data_id\":15964,\"years_exp\":1,\"hashtag\":\"#KadronBoone-NFL-FA-83\",\"search_first_name\":\"kadron\",\"rotowire_id\":9497,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kadron Boone\",\"sportradar_id\":\"cd845ec0-b874-4505-bad5-e1b268c4d7e0\",\"pandascore_id\":null,\"yahoo_id\":27788,\"last_name\":\"Boone\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":540507,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kadronboone\",\"birth_date\":\"1991-09-13\",\"espn_id\":16970},\"7105\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ramiz\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1597188312918,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ahmed\",\"depth_chart_position\":null,\"player_id\":\"7105\",\"birth_city\":null,\"fantasy_data_id\":22130,\"years_exp\":0,\"hashtag\":\"#RamizAhmed-NFL-FA-0\",\"search_first_name\":\"ramiz\",\"rotowire_id\":14812,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ramiz Ahmed\",\"sportradar_id\":\"b6549c8a-b837-415a-ac52-f46beea0cc39\",\"pandascore_id\":null,\"yahoo_id\":32670,\"last_name\":\"Ahmed\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ramizahmed\",\"birth_date\":\"1995-07-27\",\"espn_id\":null},\"1095\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029529\",\"first_name\":\"Coty\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584994832740,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sensabaugh\",\"depth_chart_position\":null,\"player_id\":\"1095\",\"birth_city\":null,\"fantasy_data_id\":13949,\"years_exp\":8,\"hashtag\":\"#CotySensabaugh-NFL-FA-37\",\"search_first_name\":\"coty\",\"rotowire_id\":8320,\"rotoworld_id\":7572,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Coty Sensabaugh\",\"sportradar_id\":\"a2015dbb-fd0b-46fc-ad19-eb387605f244\",\"pandascore_id\":null,\"yahoo_id\":25825,\"last_name\":\"Sensabaugh\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Dobyns-Bennett (TN)\",\"depth_chart_order\":null,\"stats_id\":401730,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cotysensabaugh\",\"birth_date\":\"1988-11-15\",\"espn_id\":14998},\"4439\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033435\",\"first_name\":\"Breon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604806811065,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"borders\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4439\",\"birth_city\":null,\"fantasy_data_id\":19300,\"years_exp\":3,\"hashtag\":\"#BreonBorders-NFL-TEN-39\",\"search_first_name\":\"breon\",\"rotowire_id\":12097,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1251,\"age\":25,\"full_name\":\"Breon Borders\",\"sportradar_id\":\"d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2\",\"pandascore_id\":null,\"yahoo_id\":30623,\"last_name\":\"Borders\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Duke\",\"high_school\":\"Statesville (NC)\",\"depth_chart_order\":3,\"stats_id\":745761,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"breonborders\",\"birth_date\":\"1995-07-22\",\"espn_id\":3048663},\"2294\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Horace\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"2294\",\"birth_city\":null,\"fantasy_data_id\":16733,\"years_exp\":1,\"hashtag\":\"#HoraceMiller-NFL-FA-47\",\"search_first_name\":\"horace\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Horace Miller\",\"sportradar_id\":\"b9ebba49-8e38-49d6-bcf4-1109ca84af2d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"UTEP\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"horacemiller\",\"birth_date\":\"1991-11-11\",\"espn_id\":17458},\"6905\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606317361163,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"peart\",\"depth_chart_position\":null,\"player_id\":\"6905\",\"birth_city\":null,\"fantasy_data_id\":22035,\"years_exp\":0,\"hashtag\":\"#MattPeart-NFL-NYG-74\",\"search_first_name\":\"matt\",\"rotowire_id\":14676,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Matt Peart\",\"sportradar_id\":\"ba5805bd-c67e-47d8-8d47-c8440a268cd4\",\"pandascore_id\":null,\"yahoo_id\":32769,\"last_name\":\"Peart\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Governor's Academy (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattpeart\",\"birth_date\":\"1997-06-11\",\"espn_id\":3921936},\"2088\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1521227701488,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2088\",\"birth_city\":null,\"fantasy_data_id\":16402,\"years_exp\":6,\"hashtag\":\"#AndreWilliams-NFL-FA-44\",\"search_first_name\":\"andre\",\"rotowire_id\":9520,\"rotoworld_id\":9407,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Andre Williams\",\"sportradar_id\":\"f70e835c-89b5-4da2-9bc8-ed9cdcdb2ac1\",\"pandascore_id\":null,\"yahoo_id\":27641,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Parkland (PA)\",\"depth_chart_order\":null,\"stats_id\":553277,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andrewilliams\",\"birth_date\":\"1992-08-28\",\"espn_id\":16889},\"1181\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029248\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1591326615158,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"kuechly\",\"depth_chart_position\":null,\"player_id\":\"1181\",\"birth_city\":null,\"fantasy_data_id\":14338,\"years_exp\":8,\"hashtag\":\"#LukeKuechly-NFL-CAR-59\",\"search_first_name\":\"luke\",\"rotowire_id\":8198,\"rotoworld_id\":7451,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Luke Kuechly\",\"sportradar_id\":\"40403404-4624-4bd0-b11d-ec8299c48a42\",\"pandascore_id\":null,\"yahoo_id\":25719,\"last_name\":\"Kuechly\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Xavier (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lukekuechly\",\"birth_date\":\"1991-04-20\",\"espn_id\":14938},\"795\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027941\",\"first_name\":\"Marcell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1582667735102,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dareus\",\"depth_chart_position\":\"DT\",\"player_id\":\"795\",\"birth_city\":null,\"fantasy_data_id\":12725,\"years_exp\":9,\"hashtag\":\"#MarcellDareus-NFL-FA-99\",\"search_first_name\":\"marcell\",\"rotowire_id\":7462,\"rotoworld_id\":6472,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Marcell Dareus\",\"sportradar_id\":\"f44b4942-1de1-41d7-a8f5-c44552e7c336\",\"pandascore_id\":null,\"yahoo_id\":24790,\"last_name\":\"Dareus\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Huffman (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marcelldareus\",\"birth_date\":\"1990-03-13\",\"espn_id\":13992},\"5648\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"howell\",\"depth_chart_position\":null,\"player_id\":\"5648\",\"birth_city\":null,\"fantasy_data_id\":20610,\"years_exp\":0,\"hashtag\":\"#TylerHowell-NFL-NYG-64\",\"search_first_name\":\"tyler\",\"rotowire_id\":13277,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tyler Howell\",\"sportradar_id\":\"86b23d77-a8f5-4ed6-9074-efcea2771e7c\",\"pandascore_id\":null,\"yahoo_id\":31556,\"last_name\":\"Howell\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'8\\\"\",\"search_full_name\":\"tylerhowell\",\"birth_date\":null,\"espn_id\":4035114},\"37\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DL\"],\"news_updated\":1534961113737,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"37\",\"birth_city\":null,\"fantasy_data_id\":1061,\"years_exp\":13,\"hashtag\":\"#CharlesJohnson-NFL-FA-95\",\"search_first_name\":\"charles\",\"rotowire_id\":5200,\"rotoworld_id\":4245,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Charles Johnson\",\"sportradar_id\":\"f4baa4a3-8548-4cc1-bba8-e5e8d5d4656e\",\"pandascore_id\":null,\"yahoo_id\":8337,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Hawkinsville (GA)\",\"depth_chart_order\":null,\"stats_id\":263156,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'2\\\"\",\"search_full_name\":\"charlesjohnson\",\"birth_date\":\"1986-07-10\",\"espn_id\":10527},\"2691\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chuka\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ndulue\",\"depth_chart_position\":null,\"player_id\":\"2691\",\"birth_city\":null,\"fantasy_data_id\":17159,\"years_exp\":1,\"hashtag\":\"#ChukaNdulue-NFL-FA-70\",\"search_first_name\":\"chuka\",\"rotowire_id\":10768,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chuka Ndulue\",\"sportradar_id\":\"db4839c6-014d-4f3b-bd9c-542aa9eb4526\",\"pandascore_id\":null,\"yahoo_id\":28724,\"last_name\":\"Ndulue\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chukandulue\",\"birth_date\":\"1992-03-25\",\"espn_id\":2514227},\"4343\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"4343\",\"birth_city\":null,\"fantasy_data_id\":19199,\"years_exp\":2,\"hashtag\":\"#KennyAllen-NFL-FA-3\",\"search_first_name\":\"kenny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kenny Allen\",\"sportradar_id\":\"16d51a37-fd47-423e-888f-84673aed93de\",\"pandascore_id\":null,\"yahoo_id\":30520,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kennyallen\",\"birth_date\":\"1994-07-08\",\"espn_id\":3045226},\"6153\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034995\",\"first_name\":\"Dexter\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605137707469,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"6153\",\"birth_city\":null,\"fantasy_data_id\":20984,\"years_exp\":1,\"hashtag\":\"#DexterWilliams-NFL-GB-22\",\"search_first_name\":\"dexter\",\"rotowire_id\":13670,\"rotoworld_id\":14175,\"active\":true,\"search_rank\":539,\"age\":23,\"full_name\":\"Dexter Williams\",\"sportradar_id\":\"a2e0f742-e608-4e29-99cd-e7cd765afba1\",\"pandascore_id\":null,\"yahoo_id\":32026,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"West Orange (FL)\",\"depth_chart_order\":6,\"stats_id\":884610,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dexterwilliams\",\"birth_date\":\"1997-01-06\",\"espn_id\":3932449},\"1121\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Omar\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bolden\",\"depth_chart_position\":null,\"player_id\":\"1121\",\"birth_city\":null,\"fantasy_data_id\":14041,\"years_exp\":8,\"hashtag\":\"#OmarBolden-NFL-FA-31\",\"search_first_name\":\"omar\",\"rotowire_id\":8283,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Omar Bolden\",\"sportradar_id\":\"428258ce-f7ac-4e8b-a665-485beb03aa73\",\"pandascore_id\":null,\"yahoo_id\":25811,\"last_name\":\"Bolden\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Colony (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"omarbolden\",\"birth_date\":\"1988-12-20\",\"espn_id\":14997},\"7490\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"londonii\",\"depth_chart_position\":null,\"player_id\":\"7490\",\"birth_city\":null,\"fantasy_data_id\":22464,\"years_exp\":0,\"hashtag\":\"#BryanLondonII-NFL-FA-0\",\"search_first_name\":\"bryan\",\"rotowire_id\":14984,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Bryan London II\",\"sportradar_id\":\"3ca756ed-13b1-4ef5-8026-ab938667c15e\",\"pandascore_id\":null,\"yahoo_id\":33255,\"last_name\":\"London II\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bryanlondonii\",\"birth_date\":\"1997-03-17\",\"espn_id\":4040538},\"1218\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleming\",\"depth_chart_position\":null,\"player_id\":\"1218\",\"birth_city\":null,\"fantasy_data_id\":14477,\"years_exp\":8,\"hashtag\":\"#JamellFleming-NFL-FA-30\",\"search_first_name\":\"jamell\",\"rotowire_id\":8303,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jamell Fleming\",\"sportradar_id\":\"349a994b-4b6d-42e6-a2fe-bdb3359b0a31\",\"pandascore_id\":null,\"yahoo_id\":25790,\"last_name\":\"Fleming\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Seguin (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jamellfleming\",\"birth_date\":\"1989-05-05\",\"espn_id\":14955},\"1137\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Juron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"criner\",\"depth_chart_position\":null,\"player_id\":\"1137\",\"birth_city\":null,\"fantasy_data_id\":14097,\"years_exp\":2,\"hashtag\":\"#JuronCriner-NFL-FA-84\",\"search_first_name\":\"juron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Juron Criner\",\"sportradar_id\":\"fd3ad5d6-d24d-48f9-ba9b-dddbfefbda3b\",\"pandascore_id\":null,\"yahoo_id\":25878,\"last_name\":\"Criner\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":449275,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"juroncriner\",\"birth_date\":\"1989-12-12\",\"espn_id\":15044},\"7126\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605744343663,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"herron\",\"depth_chart_position\":null,\"player_id\":\"7126\",\"birth_city\":null,\"fantasy_data_id\":21950,\"years_exp\":0,\"hashtag\":\"#JustinHerron-NFL-NE-75\",\"search_first_name\":\"justin\",\"rotowire_id\":14554,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Herron\",\"sportradar_id\":\"a756f0c5-c0c3-4d95-9a77-4fe1ef9baf93\",\"pandascore_id\":null,\"yahoo_id\":32865,\"last_name\":\"Herron\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wake Forest\",\"high_school\":\"Bullis (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justinherron\",\"birth_date\":\"1995-11-27\",\"espn_id\":3124112},\"5394\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034078\",\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1568809518685,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"5394\",\"birth_city\":null,\"fantasy_data_id\":20470,\"years_exp\":2,\"hashtag\":\"#TerrellWilliams-NFL-FA-38\",\"search_first_name\":\"terrell\",\"rotowire_id\":13394,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Terrell Williams\",\"sportradar_id\":\"b91dbdd2-b7c4-4ad1-95a9-c675c30b4b57\",\"pandascore_id\":null,\"yahoo_id\":31333,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'4\\\"\",\"search_full_name\":\"terrellwilliams\",\"birth_date\":\"1996-06-29\",\"espn_id\":4039283},\"2762\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Diaheem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watkins\",\"depth_chart_position\":null,\"player_id\":\"2762\",\"birth_city\":null,\"fantasy_data_id\":17230,\"years_exp\":0,\"hashtag\":\"#DiaheemWatkins-NFL-FA-45\",\"search_first_name\":\"diaheem\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Diaheem Watkins\",\"sportradar_id\":\"a3236057-ac62-4aad-8fc9-ac88a0707668\",\"pandascore_id\":null,\"yahoo_id\":29185,\"last_name\":\"Watkins\",\"metadata\":null,\"college\":\"UAB\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'4\\\"\",\"search_full_name\":\"diaheemwatkins\",\"birth_date\":\"1993-04-24\",\"espn_id\":2580894},\"1578\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030503\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606059616577,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"okafor\",\"depth_chart_position\":\"RDE\",\"player_id\":\"1578\",\"birth_city\":null,\"fantasy_data_id\":15228,\"years_exp\":7,\"hashtag\":\"#AlexOkafor-NFL-KC-57\",\"search_first_name\":\"alex\",\"rotowire_id\":8656,\"rotoworld_id\":8428,\"active\":true,\"search_rank\":749,\"age\":29,\"full_name\":\"Alex Okafor\",\"sportradar_id\":\"b200f413-296d-49f3-9ef2-f60e21c2f5fd\",\"pandascore_id\":null,\"yahoo_id\":26726,\"last_name\":\"Okafor\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Pflugerville (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexokafor\",\"birth_date\":\"1991-02-08\",\"espn_id\":15976},\"3984\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"symmank\",\"depth_chart_position\":null,\"player_id\":\"3984\",\"birth_city\":null,\"fantasy_data_id\":18819,\"years_exp\":3,\"hashtag\":\"#TaylorSymmank-NFL-FA-3\",\"search_first_name\":\"taylor\",\"rotowire_id\":11731,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Taylor Symmank\",\"sportradar_id\":\"9b20189d-fe96-4e68-9065-c2d1e3425bf0\",\"pandascore_id\":null,\"yahoo_id\":30092,\"last_name\":\"Symmank\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'3\\\"\",\"search_full_name\":\"taylorsymmank\",\"birth_date\":\"1992-10-02\",\"espn_id\":2983232},\"5251\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1587848745360,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"5251\",\"birth_city\":null,\"fantasy_data_id\":20255,\"years_exp\":2,\"hashtag\":\"#TylerDavis-NFL-FA-9\",\"search_first_name\":\"tyler\",\"rotowire_id\":13228,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyler Davis\",\"sportradar_id\":\"2e83f0e5-3099-40fa-a9aa-30e893f23d92\",\"pandascore_id\":null,\"yahoo_id\":31606,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tylerdavis\",\"birth_date\":\"1994-09-29\",\"espn_id\":3791111},\"3716\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032628\",\"first_name\":\"Kentrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602111928987,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brice\",\"depth_chart_position\":null,\"player_id\":\"3716\",\"birth_city\":null,\"fantasy_data_id\":18524,\"years_exp\":4,\"hashtag\":\"#KentrellBrice-NFL-ARI-44\",\"search_first_name\":\"kentrell\",\"rotowire_id\":11204,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1088,\"age\":26,\"full_name\":\"Kentrell Brice\",\"sportradar_id\":\"64d8dddf-b3fe-4146-8d08-36e9c0b6eede\",\"pandascore_id\":null,\"yahoo_id\":29720,\"last_name\":\"Brice\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Ruston (LA)\",\"depth_chart_order\":null,\"stats_id\":693056,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kentrellbrice\",\"birth_date\":\"1994-08-11\",\"espn_id\":2971881},\"4048\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mudge\",\"depth_chart_position\":null,\"player_id\":\"4048\",\"birth_city\":null,\"fantasy_data_id\":18892,\"years_exp\":2,\"hashtag\":\"#JordanMudge-NFL-FA-61\",\"search_first_name\":\"jordan\",\"rotowire_id\":12190,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jordan Mudge\",\"sportradar_id\":\"35fdfe8f-49bf-4112-a17e-31de3d5cff6f\",\"pandascore_id\":null,\"yahoo_id\":30107,\"last_name\":\"Mudge\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanmudge\",\"birth_date\":\"1989-08-08\",\"espn_id\":2512134},\"3470\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1514352001701,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcroberts\",\"depth_chart_position\":null,\"player_id\":\"3470\",\"birth_city\":null,\"fantasy_data_id\":18234,\"years_exp\":4,\"hashtag\":\"#PaulMcRoberts-NFL-FA-0\",\"search_first_name\":\"paul\",\"rotowire_id\":11010,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Paul McRoberts\",\"sportradar_id\":\"1d635ebd-ae99-4182-add2-366129435d94\",\"pandascore_id\":null,\"yahoo_id\":29730,\"last_name\":\"McRoberts\",\"metadata\":null,\"college\":\"Southeast Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692018,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"paulmcroberts\",\"birth_date\":\"1992-11-15\",\"espn_id\":2975817},\"262\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathis\",\"depth_chart_position\":null,\"player_id\":\"262\",\"birth_city\":null,\"fantasy_data_id\":6515,\"years_exp\":15,\"hashtag\":\"#EvanMathis-NFL-FA-69\",\"search_first_name\":\"evan\",\"rotowire_id\":4535,\"rotoworld_id\":3216,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Evan Mathis\",\"sportradar_id\":\"3d0f5d99-b488-42b1-b3a3-71778304fc47\",\"pandascore_id\":null,\"yahoo_id\":7255,\"last_name\":\"Mathis\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Homewood (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"evanmathis\",\"birth_date\":\"1981-11-01\",\"espn_id\":8493},\"6779\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"6779\",\"birth_city\":null,\"fantasy_data_id\":17596,\"years_exp\":0,\"hashtag\":\"#JordanHarris-NFL-LAR-0\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jordan Harris\",\"sportradar_id\":\"a8c43042-d738-44f8-94ad-c8cb0f2b7be2\",\"pandascore_id\":null,\"yahoo_id\":28275,\"last_name\":\"Harris\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553855,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jordanharris\",\"birth_date\":null,\"espn_id\":null},\"3644\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032740\",\"first_name\":\"Lawrence\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"DL\"],\"news_updated\":1536436501934,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"3644\",\"birth_city\":null,\"fantasy_data_id\":18435,\"years_exp\":4,\"hashtag\":\"#LawrenceThomas-NFL-FA-44\",\"search_first_name\":\"lawrence\",\"rotowire_id\":10956,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Lawrence Thomas\",\"sportradar_id\":\"c7dc96df-0837-4681-bcc5-9663a3f1315f\",\"pandascore_id\":null,\"yahoo_id\":29805,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606122,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"281\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lawrencethomas\",\"birth_date\":\"1993-04-16\",\"espn_id\":2576280},\"115\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cullen\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"loeffler\",\"depth_chart_position\":null,\"player_id\":\"115\",\"birth_city\":null,\"fantasy_data_id\":3201,\"years_exp\":12,\"hashtag\":\"#CullenLoeffler-NFL-FA-46\",\"search_first_name\":\"cullen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Cullen Loeffler\",\"sportradar_id\":\"d4cc9b04-788a-4ab1-bcc9-787ec0368661\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Loeffler\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cullenloeffler\",\"birth_date\":\"1981-01-27\",\"espn_id\":6044},\"3860\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adeyemi\",\"depth_chart_position\":\"LDE\",\"player_id\":\"3860\",\"birth_city\":null,\"fantasy_data_id\":18681,\"years_exp\":0,\"hashtag\":\"#KentonAdeyemi-NFL-FA-97\",\"search_first_name\":\"kenton\",\"rotowire_id\":11645,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kenton Adeyemi\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29986,\"last_name\":\"Adeyemi\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kentonadeyemi\",\"birth_date\":\"1992-01-13\",\"espn_id\":2576600},\"1833\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030874\",\"first_name\":\"Damien\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596058809646,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"1833\",\"birth_city\":null,\"fantasy_data_id\":16031,\"years_exp\":6,\"hashtag\":\"#DamienWilliams-NFL-KC-26\",\"search_first_name\":\"damien\",\"rotowire_id\":9644,\"rotoworld_id\":9570,\"active\":true,\"search_rank\":138,\"age\":28,\"full_name\":\"Damien Williams\",\"sportradar_id\":\"90908a56-901b-466d-8689-943075da96fe\",\"pandascore_id\":null,\"yahoo_id\":28115,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Mira Mesa (CA)\",\"depth_chart_order\":6,\"stats_id\":691283,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damienwilliams\",\"birth_date\":\"1992-04-03\",\"espn_id\":17359},\"1404\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030556\",\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535830216887,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcfadden\",\"depth_chart_position\":null,\"player_id\":\"1404\",\"birth_city\":null,\"fantasy_data_id\":14948,\"years_exp\":7,\"hashtag\":\"#LeonMcFadden-NFL-FA-29\",\"search_first_name\":\"leon\",\"rotowire_id\":8649,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Leon McFadden\",\"sportradar_id\":\"e2ef7b61-cf9d-47ab-927a-77759412ceb1\",\"pandascore_id\":null,\"yahoo_id\":26691,\"last_name\":\"McFadden\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"St. John Bosco (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"leonmcfadden\",\"birth_date\":\"1990-10-26\",\"espn_id\":15854},\"3763\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032578\",\"first_name\":\"Woodrow\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602954956040,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"3763\",\"birth_city\":null,\"fantasy_data_id\":18575,\"years_exp\":4,\"hashtag\":\"#WoodrowHamilton-NFL-CAR-78\",\"search_first_name\":\"woodrow\",\"rotowire_id\":11355,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1096,\"age\":27,\"full_name\":\"Woodrow Hamilton\",\"sportradar_id\":\"b3beb95a-c1e7-4d03-b61a-097199528816\",\"pandascore_id\":null,\"yahoo_id\":29873,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Raleigh (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"woodrowhamilton\",\"birth_date\":\"1992-12-20\",\"espn_id\":2577392},\"2323\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032165\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603037707407,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2323\",\"birth_city\":null,\"fantasy_data_id\":16779,\"years_exp\":5,\"hashtag\":\"#MarcusPeters-NFL-BAL-24\",\"search_first_name\":\"marcus\",\"rotowire_id\":10407,\"rotoworld_id\":10418,\"active\":true,\"search_rank\":855,\"age\":27,\"full_name\":\"Marcus Peters\",\"sportradar_id\":\"402f063b-4703-4729-b6ea-3a9d45a314c7\",\"pandascore_id\":null,\"yahoo_id\":28406,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"McClymonds (CA)\",\"depth_chart_order\":1,\"stats_id\":608013,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcuspeters\",\"birth_date\":\"1993-01-09\",\"espn_id\":2578378},\"1495\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1507393800830,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nassib\",\"depth_chart_position\":null,\"player_id\":\"1495\",\"birth_city\":null,\"fantasy_data_id\":15093,\"years_exp\":7,\"hashtag\":\"#RyanNassib-NFL-FA-4\",\"search_first_name\":\"ryan\",\"rotowire_id\":8746,\"rotoworld_id\":8370,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ryan Nassib\",\"sportradar_id\":\"cb6e47f1-ace7-44c7-893e-1d6d37fc46bd\",\"pandascore_id\":null,\"yahoo_id\":26733,\"last_name\":\"Nassib\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Malvern Prep (PA)\",\"depth_chart_order\":null,\"stats_id\":465591,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryannassib\",\"birth_date\":\"1990-03-10\",\"espn_id\":15891},\"6443\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1576788908187,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dungey\",\"depth_chart_position\":\"QB\",\"player_id\":\"6443\",\"birth_city\":null,\"fantasy_data_id\":21467,\"years_exp\":1,\"hashtag\":\"#EricDungey-NFL-FA-2\",\"search_first_name\":\"eric\",\"rotowire_id\":13835,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Eric Dungey\",\"sportradar_id\":\"3796cfdb-d6c9-4687-a803-23f2d5bcb54c\",\"pandascore_id\":null,\"yahoo_id\":32235,\"last_name\":\"Dungey\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":883672,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ericdungey\",\"birth_date\":\"1996-06-12\",\"espn_id\":3916447},\"7420\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599676207297,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hokit\",\"depth_chart_position\":\"RB\",\"player_id\":\"7420\",\"birth_city\":null,\"fantasy_data_id\":22400,\"years_exp\":0,\"hashtag\":\"#JoshHokit-NFL-SF-40\",\"search_first_name\":\"josh\",\"rotowire_id\":14988,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Hokit\",\"sportradar_id\":\"7a52585c-03ce-4b03-91cc-742399b8399a\",\"pandascore_id\":null,\"yahoo_id\":33200,\"last_name\":\"Hokit\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Clovis (CA)\",\"depth_chart_order\":8,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshhokit\",\"birth_date\":\"1997-11-12\",\"espn_id\":4049391},\"1531\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sharrif\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1519249501138,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"floyd\",\"depth_chart_position\":null,\"player_id\":\"1531\",\"birth_city\":null,\"fantasy_data_id\":15146,\"years_exp\":7,\"hashtag\":\"#SharrifFloyd-NFL-FA-73\",\"search_first_name\":\"sharrif\",\"rotowire_id\":8673,\"rotoworld_id\":8430,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sharrif Floyd\",\"sportradar_id\":\"877fd653-7aae-42b2-a0b6-341396039da3\",\"pandascore_id\":null,\"yahoo_id\":26646,\"last_name\":\"Floyd\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Washington (PA)\",\"depth_chart_order\":null,\"stats_id\":557186,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sharriffloyd\",\"birth_date\":\"1991-05-28\",\"espn_id\":15791},\"3960\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bill\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1582695929542,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"obrien\",\"depth_chart_position\":null,\"player_id\":\"3960\",\"birth_city\":null,\"fantasy_data_id\":18793,\"years_exp\":0,\"hashtag\":\"#BillOBrien-NFL-FA-0\",\"search_first_name\":\"bill\",\"rotowire_id\":null,\"rotoworld_id\":9277,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bill O'Brien\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"O'Brien\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"billobrien\",\"birth_date\":null,\"espn_id\":null},\"4582\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hollins\",\"depth_chart_position\":null,\"player_id\":\"4582\",\"birth_city\":null,\"fantasy_data_id\":19469,\"years_exp\":2,\"hashtag\":\"#DeonHollins-NFL-FA-69\",\"search_first_name\":\"deon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Deon Hollins\",\"sportradar_id\":\"8c1f96fe-c02b-46d2-9326-c084df5f02b9\",\"pandascore_id\":null,\"yahoo_id\":30816,\"last_name\":\"Hollins\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deonhollins\",\"birth_date\":\"1994-11-05\",\"espn_id\":3047555},\"78\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ahmad\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bradshaw\",\"depth_chart_position\":null,\"player_id\":\"78\",\"birth_city\":null,\"fantasy_data_id\":2220,\"years_exp\":13,\"hashtag\":\"#AhmadBradshaw-NFL-FA-44\",\"search_first_name\":\"ahmad\",\"rotowire_id\":5267,\"rotoworld_id\":4305,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Ahmad Bradshaw\",\"sportradar_id\":\"8f22eb36-5282-407a-b6f9-f9b62e5f7318\",\"pandascore_id\":null,\"yahoo_id\":8504,\"last_name\":\"Bradshaw\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Graham (VA)\",\"depth_chart_order\":null,\"stats_id\":267892,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ahmadbradshaw\",\"birth_date\":\"1986-03-19\",\"espn_id\":10693},\"3686\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sommers\",\"depth_chart_position\":null,\"player_id\":\"3686\",\"birth_city\":null,\"fantasy_data_id\":18486,\"years_exp\":0,\"hashtag\":\"#JoeSommers-NFL-FA-40\",\"search_first_name\":\"joe\",\"rotowire_id\":11357,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joe Sommers\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29921,\"last_name\":\"Sommers\",\"metadata\":null,\"college\":\"Wisconsin-Oshkosh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joesommers\",\"birth_date\":\"1993-03-03\",\"espn_id\":3150065},\"4257\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033977\",\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1557441909495,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tocho\",\"depth_chart_position\":null,\"player_id\":\"4257\",\"birth_city\":null,\"fantasy_data_id\":19103,\"years_exp\":3,\"hashtag\":\"#JackTocho-NFL-FA-28\",\"search_first_name\":\"jack\",\"rotowire_id\":12034,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jack Tocho\",\"sportradar_id\":\"fcc9d16f-4591-4ba2-9720-9fa187b9d9d5\",\"pandascore_id\":null,\"yahoo_id\":30358,\"last_name\":\"Tocho\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742381,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jacktocho\",\"birth_date\":\"1995-11-02\",\"espn_id\":3051737},\"5452\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034116\",\"first_name\":\"J.T.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603641006432,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":\"SS\",\"player_id\":\"5452\",\"birth_city\":null,\"fantasy_data_id\":20559,\"years_exp\":2,\"hashtag\":\"#JTGray-NFL-NO-48\",\"search_first_name\":\"jt\",\"rotowire_id\":13106,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1490,\"age\":24,\"full_name\":\"J.T. Gray\",\"sportradar_id\":\"e0248ecc-27b4-4368-bf97-47a73cb41ec2\",\"pandascore_id\":null,\"yahoo_id\":31411,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Clarksdale (MS)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jtgray\",\"birth_date\":\"1996-01-18\",\"espn_id\":3115481},\"6926\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brycen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600618806288,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hopkins\",\"depth_chart_position\":\"TE\",\"player_id\":\"6926\",\"birth_city\":null,\"fantasy_data_id\":21678,\"years_exp\":0,\"hashtag\":\"#BrycenHopkins-NFL-LAR-88\",\"search_first_name\":\"brycen\",\"rotowire_id\":14586,\"rotoworld_id\":null,\"active\":true,\"search_rank\":451,\"age\":23,\"full_name\":\"Brycen Hopkins\",\"sportradar_id\":\"39cb1520-dda8-4167-95c4-4947c8383bc4\",\"pandascore_id\":null,\"yahoo_id\":32806,\"last_name\":\"Hopkins\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Ensworth (TN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brycenhopkins\",\"birth_date\":\"1997-03-27\",\"espn_id\":3918003},\"1299\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"1299\",\"birth_city\":null,\"fantasy_data_id\":14768,\"years_exp\":9,\"hashtag\":\"#KyleMiller-NFL-FA-86\",\"search_first_name\":\"kyle\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kyle Miller\",\"sportradar_id\":\"d90415e0-9846-4c6e-99d5-4291dda7905f\",\"pandascore_id\":null,\"yahoo_id\":25125,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Mount Union\",\"high_school\":\"Elida (OH)\",\"depth_chart_order\":null,\"stats_id\":580896,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kylemiller\",\"birth_date\":\"1988-04-18\",\"espn_id\":14289},\"6550\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035152\",\"first_name\":\"Dino\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":\"LT\",\"player_id\":\"6550\",\"birth_city\":null,\"fantasy_data_id\":21375,\"years_exp\":1,\"hashtag\":\"#DinoBoyd-NFL-FA-0\",\"search_first_name\":\"dino\",\"rotowire_id\":14178,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dino Boyd\",\"sportradar_id\":\"fdc21b70-71d4-4b68-ac29-8470f9a95ab2\",\"pandascore_id\":null,\"yahoo_id\":32353,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dinoboyd\",\"birth_date\":\"1996-09-02\",\"espn_id\":3137842},\"1982\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031259\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599351058114,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"colvin\",\"depth_chart_position\":null,\"player_id\":\"1982\",\"birth_city\":null,\"fantasy_data_id\":16249,\"years_exp\":6,\"hashtag\":\"#AaronColvin-NFL-WAS-34\",\"search_first_name\":\"aaron\",\"rotowire_id\":9337,\"rotoworld_id\":9348,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Aaron Colvin\",\"sportradar_id\":\"76c630cf-0fd3-4210-a73d-9347da9d9d66\",\"pandascore_id\":null,\"yahoo_id\":27642,\"last_name\":\"Colvin\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Owasso (OK)\",\"depth_chart_order\":null,\"stats_id\":542873,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"aaroncolvin\",\"birth_date\":\"1991-10-02\",\"espn_id\":16900},\"572\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Physically Unable to Perform\",\"injury_body_part\":null,\"search_last_name\":\"stuckey\",\"depth_chart_position\":null,\"player_id\":\"572\",\"birth_city\":null,\"fantasy_data_id\":11263,\"years_exp\":10,\"hashtag\":\"#DarrellStuckey-NFL-FA-25\",\"search_first_name\":\"darrell\",\"rotowire_id\":6655,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Darrell Stuckey\",\"sportradar_id\":\"1b2e9ee4-d9d1-4059-9a88-dd75e97d3b27\",\"pandascore_id\":null,\"yahoo_id\":24085,\"last_name\":\"Stuckey\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Washington (KS)\",\"depth_chart_order\":null,\"stats_id\":302824,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darrellstuckey\",\"birth_date\":\"1987-06-16\",\"espn_id\":13465},\"904\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028009\",\"first_name\":\"DeMarco\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1531555201562,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":null,\"player_id\":\"904\",\"birth_city\":null,\"fantasy_data_id\":13124,\"years_exp\":9,\"hashtag\":\"#DeMarcoMurray-NFL-FA-29\",\"search_first_name\":\"demarco\",\"rotowire_id\":7359,\"rotoworld_id\":6585,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"DeMarco Murray\",\"sportradar_id\":\"478ae115-d220-424e-af45-56137f163d3a\",\"pandascore_id\":null,\"yahoo_id\":24858,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Bishop Gorman (NV)\",\"depth_chart_order\":null,\"stats_id\":333272,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"demarcomurray\",\"birth_date\":\"1988-02-12\",\"espn_id\":14005},\"7505\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradwell\",\"depth_chart_position\":\"RB\",\"player_id\":\"7505\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#DariusBradwell-NFL-LAC-34\",\"search_first_name\":\"darius\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":23,\"full_name\":\"Darius Bradwell\",\"sportradar_id\":\"06f3e98d-7d73-4007-b673-4a74ed72bda3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bradwell\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Godby (FL)\",\"depth_chart_order\":8,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dariusbradwell\",\"birth_date\":\"1997-05-15\",\"espn_id\":null},\"5448\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034088\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600384517457,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"CB\",\"player_id\":\"5448\",\"birth_city\":null,\"fantasy_data_id\":20300,\"years_exp\":2,\"hashtag\":\"#RobertJackson-NFL-CLE-34\",\"search_first_name\":\"robert\",\"rotowire_id\":13411,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1448,\"age\":26,\"full_name\":\"Robert Jackson\",\"sportradar_id\":\"d962a98d-cbba-47e0-ad20-dedc094a1822\",\"pandascore_id\":null,\"yahoo_id\":31370,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"Lehigh Senior (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robertjackson\",\"birth_date\":\"1993-12-08\",\"espn_id\":4036898},\"6141\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035262\",\"first_name\":\"Drue\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603322441646,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"tranquill\",\"depth_chart_position\":null,\"player_id\":\"6141\",\"birth_city\":null,\"fantasy_data_id\":20968,\"years_exp\":1,\"hashtag\":\"#DrueTranquill-NFL-LAC-49\",\"search_first_name\":\"drue\",\"rotowire_id\":13814,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1611,\"age\":25,\"full_name\":\"Drue Tranquill\",\"sportradar_id\":\"d468dfe5-8ad2-4c8b-b7ba-0962316a2156\",\"pandascore_id\":null,\"yahoo_id\":31962,\"last_name\":\"Tranquill\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Carroll (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"druetranquill\",\"birth_date\":\"1995-08-15\",\"espn_id\":3129310},\"661\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"661\",\"birth_city\":null,\"fantasy_data_id\":11751,\"years_exp\":15,\"hashtag\":\"#AlexSmith-NFL-FA-83\",\"search_first_name\":\"alex\",\"rotowire_id\":4431,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Alex Smith\",\"sportradar_id\":\"55a668a4-8ce1-464b-a686-47eac2e9b9a5\",\"pandascore_id\":null,\"yahoo_id\":7247,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Mullen (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexsmith\",\"birth_date\":\"1982-05-22\",\"espn_id\":8485},\"5888\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035270\",\"first_name\":\"Amani\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606407658088,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"oruwariye\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5888\",\"birth_city\":null,\"fantasy_data_id\":20903,\"years_exp\":1,\"hashtag\":\"#AmaniOruwariye-NFL-DET-24\",\"search_first_name\":\"amani\",\"rotowire_id\":13744,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1586,\"age\":24,\"full_name\":\"Amani Oruwariye\",\"sportradar_id\":\"3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568\",\"pandascore_id\":null,\"yahoo_id\":31978,\"last_name\":\"Oruwariye\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Tampa Gaither (FL)\",\"depth_chart_order\":1,\"stats_id\":836167,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"amanioruwariye\",\"birth_date\":\"1996-02-09\",\"espn_id\":3116175},\"4350\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033374\",\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596413122285,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ortiz\",\"depth_chart_position\":\"RB\",\"player_id\":\"4350\",\"birth_city\":null,\"fantasy_data_id\":19206,\"years_exp\":3,\"hashtag\":\"#RickyOrtiz-NFL-FA-0\",\"search_first_name\":\"ricky\",\"rotowire_id\":12118,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1234,\"age\":26,\"full_name\":\"Ricky Ortiz\",\"sportradar_id\":\"f0b08802-f6f8-4dba-b53e-e26eb75a32e7\",\"pandascore_id\":null,\"yahoo_id\":30517,\"last_name\":\"Ortiz\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":17,\"stats_id\":695140,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rickyortiz\",\"birth_date\":\"1994-04-15\",\"espn_id\":2978244},\"2582\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stoudt\",\"depth_chart_position\":null,\"player_id\":\"2582\",\"birth_city\":null,\"fantasy_data_id\":17047,\"years_exp\":0,\"hashtag\":\"#ColeStoudt-NFL-FA-0\",\"search_first_name\":\"cole\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cole Stoudt\",\"sportradar_id\":\"cb028dd0-78a3-4499-be5d-aec4c3ed86b4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Stoudt\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":593527,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"colestoudt\",\"birth_date\":\"1992-05-12\",\"espn_id\":null},\"6903\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lloyd\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587939896002,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cushenberry\",\"depth_chart_position\":\"C\",\"player_id\":\"6903\",\"birth_city\":null,\"fantasy_data_id\":21997,\"years_exp\":0,\"hashtag\":\"#LloydCushenberry-NFL-DEN-79\",\"search_first_name\":\"lloyd\",\"rotowire_id\":14515,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Lloyd Cushenberry\",\"sportradar_id\":\"8753f2f2-16df-41c8-b25d-c93ada64d78c\",\"pandascore_id\":null,\"yahoo_id\":32753,\"last_name\":\"Cushenberry\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Louisiana State\",\"high_school\":\"Dutchtown (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lloydcushenberry\",\"birth_date\":\"1997-11-22\",\"espn_id\":4035448},\"7084\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606315260830,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"luton\",\"depth_chart_position\":\"QB\",\"player_id\":\"7084\",\"birth_city\":null,\"fantasy_data_id\":21814,\"years_exp\":0,\"hashtag\":\"#JakeLuton-NFL-JAX-6\",\"search_first_name\":\"jake\",\"rotowire_id\":14562,\"rotoworld_id\":null,\"active\":true,\"search_rank\":508,\"age\":24,\"full_name\":\"Jake Luton\",\"sportradar_id\":\"c81ae6df-f87f-4197-b68f-a460321b48b4\",\"pandascore_id\":null,\"yahoo_id\":32859,\"last_name\":\"Luton\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Marysville-Pilchuck (WA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jakeluton\",\"birth_date\":\"1996-04-11\",\"espn_id\":3124900},\"761\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stpierre\",\"depth_chart_position\":null,\"player_id\":\"761\",\"birth_city\":null,\"fantasy_data_id\":12498,\"years_exp\":8,\"hashtag\":\"#BrianStPierre-NFL-FA-6\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Brian St Pierre\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"St Pierre\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brianstpierre\",\"birth_date\":\"1979-11-28\",\"espn_id\":null},\"6039\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035537\",\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606509627302,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6039\",\"birth_city\":null,\"fantasy_data_id\":20837,\"years_exp\":1,\"hashtag\":\"#TyJohnson-NFL-NYJ-25\",\"search_first_name\":\"ty\",\"rotowire_id\":13587,\"rotoworld_id\":14262,\"active\":true,\"search_rank\":252,\"age\":23,\"full_name\":\"Ty Johnson\",\"sportradar_id\":\"96e6687b-2b89-4dd9-98df-6e7507cd82cf\",\"pandascore_id\":null,\"yahoo_id\":32018,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Fort Hill (MD)\",\"depth_chart_order\":2,\"stats_id\":877784,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tyjohnson\",\"birth_date\":\"1997-09-17\",\"espn_id\":3915411},\"79\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030132\",\"first_name\":\"Stefan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1566690956117,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"charles\",\"depth_chart_position\":null,\"player_id\":\"79\",\"birth_city\":null,\"fantasy_data_id\":2232,\"years_exp\":7,\"hashtag\":\"#StefanCharles-NFL-FA-66\",\"search_first_name\":\"stefan\",\"rotowire_id\":9193,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Stefan Charles\",\"sportradar_id\":\"50fd6da3-9fb3-45cf-83e8-5797f1f16308\",\"pandascore_id\":null,\"yahoo_id\":27298,\"last_name\":\"Charles\",\"metadata\":null,\"college\":\"Regina, Can.\",\"high_school\":\"Eastdale Collegiate and Vocational Institute (ON)\",\"depth_chart_order\":null,\"stats_id\":733939,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stefancharles\",\"birth_date\":\"1988-06-09\",\"espn_id\":16568},\"116\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clady\",\"depth_chart_position\":null,\"player_id\":\"116\",\"birth_city\":null,\"fantasy_data_id\":3209,\"years_exp\":11,\"hashtag\":\"#RyanClady-NFL-FA-78\",\"search_first_name\":\"ryan\",\"rotowire_id\":5583,\"rotoworld_id\":4616,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ryan Clady\",\"sportradar_id\":\"c80dc191-dcf3-4adc-a9da-57bc70f75ae6\",\"pandascore_id\":null,\"yahoo_id\":8789,\"last_name\":\"Clady\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ryanclady\",\"birth_date\":\"1986-09-06\",\"espn_id\":11246},\"2232\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031399\",\"first_name\":\"Demetrius\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544580637075,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rhaney\",\"depth_chart_position\":null,\"player_id\":\"2232\",\"birth_city\":null,\"fantasy_data_id\":16629,\"years_exp\":6,\"hashtag\":\"#DemetriusRhaney-NFL-FA-59\",\"search_first_name\":\"demetrius\",\"rotowire_id\":9789,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Demetrius Rhaney\",\"sportradar_id\":\"766bff49-4d79-4e44-a53c-ba9f8714b7f6\",\"pandascore_id\":null,\"yahoo_id\":27778,\"last_name\":\"Rhaney\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"Stranahan (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"demetriusrhaney\",\"birth_date\":\"1992-06-22\",\"espn_id\":16954},\"93\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D'Qwell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"93\",\"birth_city\":null,\"fantasy_data_id\":2503,\"years_exp\":14,\"hashtag\":\"#DQwellJackson-NFL-FA-52\",\"search_first_name\":\"dqwell\",\"rotowire_id\":4933,\"rotoworld_id\":3669,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"D'Qwell Jackson\",\"sportradar_id\":\"dda51bc4-eeac-4585-99b0-384b42c25af2\",\"pandascore_id\":null,\"yahoo_id\":7783,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Seminole (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dqwelljackson\",\"birth_date\":\"1983-09-26\",\"espn_id\":9620},\"5833\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1548804904981,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oconnell\",\"depth_chart_position\":null,\"player_id\":\"5833\",\"birth_city\":null,\"fantasy_data_id\":9672,\"years_exp\":0,\"hashtag\":\"#KevinOConnell-NFL-FA-8\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":4710,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Kevin O'Connell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"O'Connell\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kevinoconnell\",\"birth_date\":\"1985-05-25\",\"espn_id\":null},\"2361\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Senquez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1527109801446,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"golson\",\"depth_chart_position\":null,\"player_id\":\"2361\",\"birth_city\":null,\"fantasy_data_id\":16817,\"years_exp\":4,\"hashtag\":\"#SenquezGolson-NFL-FA-40\",\"search_first_name\":\"senquez\",\"rotowire_id\":10413,\"rotoworld_id\":10479,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Senquez Golson\",\"sportradar_id\":\"5519045c-6923-4ca9-8486-66c35de06614\",\"pandascore_id\":null,\"yahoo_id\":28444,\"last_name\":\"Golson\",\"metadata\":null,\"college\":\"Ole Miss\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607341,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'8\\\"\",\"search_full_name\":\"senquezgolson\",\"birth_date\":\"1993-07-07\",\"espn_id\":2577390},\"3064\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lott\",\"depth_chart_position\":null,\"player_id\":\"3064\",\"birth_city\":null,\"fantasy_data_id\":17802,\"years_exp\":4,\"hashtag\":\"#DerrickLott-NFL-FA-70\",\"search_first_name\":\"derrick\",\"rotowire_id\":10334,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Derrick Lott\",\"sportradar_id\":\"1971508c-f417-4d97-b8b6-4bf6fc4154b1\",\"pandascore_id\":null,\"yahoo_id\":29053,\"last_name\":\"Lott\",\"metadata\":null,\"college\":\"Tennessee-Chattanooga\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'4\\\"\",\"search_full_name\":\"derricklott\",\"birth_date\":\"1990-06-18\",\"espn_id\":2468807},\"113\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jahri\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1523031301567,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"113\",\"birth_city\":null,\"fantasy_data_id\":3144,\"years_exp\":14,\"hashtag\":\"#JahriEvans-NFL-FA-73\",\"search_first_name\":\"jahri\",\"rotowire_id\":6303,\"rotoworld_id\":3933,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Jahri Evans\",\"sportradar_id\":\"a59206be-6b68-4aa9-9fdd-424aa16b90ea\",\"pandascore_id\":null,\"yahoo_id\":7857,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Bloomsburg\",\"high_school\":\"Frankford (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jahrievans\",\"birth_date\":\"1983-08-22\",\"espn_id\":9694},\"6065\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035672\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602540052917,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barton\",\"depth_chart_position\":\"MLB\",\"player_id\":\"6065\",\"birth_city\":null,\"fantasy_data_id\":21025,\"years_exp\":1,\"hashtag\":\"#CodyBarton-NFL-SEA-57\",\"search_first_name\":\"cody\",\"rotowire_id\":13733,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1639,\"age\":24,\"full_name\":\"Cody Barton\",\"sportradar_id\":\"577dfac0-3f0b-45ee-afff-c851c6aebb1e\",\"pandascore_id\":null,\"yahoo_id\":31920,\"last_name\":\"Barton\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Brighton (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'2\\\"\",\"search_full_name\":\"codybarton\",\"birth_date\":\"1996-11-13\",\"espn_id\":3926229},\"4466\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Noble\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nwachukwu\",\"depth_chart_position\":null,\"player_id\":\"4466\",\"birth_city\":null,\"fantasy_data_id\":19332,\"years_exp\":2,\"hashtag\":\"#NobleNwachukwu-NFL-FA-67\",\"search_first_name\":\"noble\",\"rotowire_id\":11931,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Noble Nwachukwu\",\"sportradar_id\":\"11712bc8-4f9f-45e7-8396-4c8742238ae9\",\"pandascore_id\":null,\"yahoo_id\":30565,\"last_name\":\"Nwachukwu\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'1\\\"\",\"search_full_name\":\"noblenwachukwu\",\"birth_date\":\"1994-11-30\",\"espn_id\":2976647},\"1249\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manning\",\"depth_chart_position\":null,\"player_id\":\"1249\",\"birth_city\":null,\"fantasy_data_id\":14608,\"years_exp\":2,\"hashtag\":\"#TerrellManning-NFL-FA-59\",\"search_first_name\":\"terrell\",\"rotowire_id\":8187,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Terrell Manning\",\"sportradar_id\":\"af3e930f-1b06-4820-a523-edced9ff512e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manning\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terrellmanning\",\"birth_date\":\"1990-04-16\",\"espn_id\":15110},\"5617\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034651\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1535838931042,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnard\",\"depth_chart_position\":null,\"player_id\":\"5617\",\"birth_city\":null,\"fantasy_data_id\":20386,\"years_exp\":2,\"hashtag\":\"#AustinBarnard-NFL-FA-3\",\"search_first_name\":\"austin\",\"rotowire_id\":13292,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Barnard\",\"sportradar_id\":\"b07a20bb-da2a-4440-a295-44352d350cd6\",\"pandascore_id\":null,\"yahoo_id\":31628,\"last_name\":\"Barnard\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austinbarnard\",\"birth_date\":\"1995-06-22\",\"espn_id\":3051938},\"1782\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"folkerts\",\"depth_chart_position\":null,\"player_id\":\"1782\",\"birth_city\":null,\"fantasy_data_id\":15884,\"years_exp\":8,\"hashtag\":\"#BrianFolkerts-NFL-FA-64\",\"search_first_name\":\"brian\",\"rotowire_id\":9078,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brian Folkerts\",\"sportradar_id\":\"220fbd2e-10a8-4757-a6f4-6aab0327846a\",\"pandascore_id\":null,\"yahoo_id\":26031,\"last_name\":\"Folkerts\",\"metadata\":null,\"college\":\"Washburn\",\"high_school\":\"Hazelwood Central (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brianfolkerts\",\"birth_date\":\"1990-01-30\",\"espn_id\":15447},\"4432\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vereen\",\"depth_chart_position\":null,\"player_id\":\"4432\",\"birth_city\":null,\"fantasy_data_id\":19292,\"years_exp\":2,\"hashtag\":\"#CoreyVereen-NFL-FA-59\",\"search_first_name\":\"corey\",\"rotowire_id\":12086,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Corey Vereen\",\"sportradar_id\":\"ea647a34-54e7-4b60-91fb-9be338527890\",\"pandascore_id\":null,\"yahoo_id\":30674,\"last_name\":\"Vereen\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'2\\\"\",\"search_full_name\":\"coreyvereen\",\"birth_date\":\"1995-06-15\",\"espn_id\":3044733},\"6914\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"6914\",\"birth_city\":null,\"fantasy_data_id\":21877,\"years_exp\":0,\"hashtag\":\"#TrevonHill-NFL-FA-0\",\"search_first_name\":\"trevon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Trevon Hill\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trevonhill\",\"birth_date\":null,\"espn_id\":null},\"6139\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035671\",\"first_name\":\"Jace\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606156514930,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sternberger\",\"depth_chart_position\":\"TE\",\"player_id\":\"6139\",\"birth_city\":null,\"fantasy_data_id\":20952,\"years_exp\":1,\"hashtag\":\"#JaceSternberger-NFL-GB-87\",\"search_first_name\":\"jace\",\"rotowire_id\":13495,\"rotoworld_id\":null,\"active\":true,\"search_rank\":311,\"age\":24,\"full_name\":\"Jace Sternberger\",\"sportradar_id\":\"f808794b-3135-4f75-b46a-ba90bf6b8502\",\"pandascore_id\":null,\"yahoo_id\":31907,\"last_name\":\"Sternberger\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Kingfisher (OK)\",\"depth_chart_order\":2,\"stats_id\":877598,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jacesternberger\",\"birth_date\":\"1996-06-26\",\"espn_id\":3917962},\"1534\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1526508301312,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mauti\",\"depth_chart_position\":null,\"player_id\":\"1534\",\"birth_city\":null,\"fantasy_data_id\":15149,\"years_exp\":7,\"hashtag\":\"#MichaelMauti-NFL-FA-56\",\"search_first_name\":\"michael\",\"rotowire_id\":8870,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Michael Mauti\",\"sportradar_id\":\"f33ad1a5-3346-45f9-9ff1-e91f9818ed6f\",\"pandascore_id\":null,\"yahoo_id\":26836,\"last_name\":\"Mauti\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Mandeville (LA)\",\"depth_chart_order\":null,\"stats_id\":448030,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaelmauti\",\"birth_date\":\"1990-01-19\",\"espn_id\":15903},\"6985\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dezmon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1600016158047,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patmon\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6985\",\"birth_city\":null,\"fantasy_data_id\":21959,\"years_exp\":0,\"hashtag\":\"#DezmonPatmon-NFL-IND-85\",\"search_first_name\":\"dezmon\",\"rotowire_id\":14643,\"rotoworld_id\":null,\"active\":true,\"search_rank\":346,\"age\":22,\"full_name\":\"Dezmon Patmon\",\"sportradar_id\":\"be29caf2-9942-4e21-939a-a29407555c56\",\"pandascore_id\":null,\"yahoo_id\":32882,\"last_name\":\"Patmon\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Patrick Henry (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dezmonpatmon\",\"birth_date\":\"1998-08-06\",\"espn_id\":4054085},\"2410\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031941\",\"first_name\":\"Jamison\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606581332660,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crowder\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2410\",\"birth_city\":null,\"fantasy_data_id\":16866,\"years_exp\":5,\"hashtag\":\"#JamisonCrowder-NFL-NYJ-82\",\"search_first_name\":\"jamison\",\"rotowire_id\":10224,\"rotoworld_id\":10373,\"active\":true,\"search_rank\":132,\"age\":27,\"full_name\":\"Jamison Crowder\",\"sportradar_id\":\"8002dd5e-a75a-4d72-9a8c-0f4dbc80d459\",\"pandascore_id\":null,\"yahoo_id\":28493,\"last_name\":\"Crowder\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Monroe (NC)\",\"depth_chart_order\":1,\"stats_id\":599649,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jamisoncrowder\",\"birth_date\":\"1993-06-17\",\"espn_id\":2576716},\"1863\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"1863\",\"birth_city\":null,\"fantasy_data_id\":16075,\"years_exp\":1,\"hashtag\":\"#ZachThompson-NFL-FA-92\",\"search_first_name\":\"zach\",\"rotowire_id\":10072,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zach Thompson\",\"sportradar_id\":\"587afb77-2866-46c0-a483-687488e1dabf\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zachthompson\",\"birth_date\":\"1991-01-18\",\"espn_id\":17093},\"7251\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jovante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601419246307,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moffatt\",\"depth_chart_position\":\"FS\",\"player_id\":\"7251\",\"birth_city\":null,\"fantasy_data_id\":22251,\"years_exp\":0,\"hashtag\":\"#JovanteMoffatt-NFL-CLE-35\",\"search_first_name\":\"jovante\",\"rotowire_id\":15062,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jovante Moffatt\",\"sportradar_id\":\"bea5ccd6-b05b-43f8-975f-396399349a42\",\"pandascore_id\":null,\"yahoo_id\":33310,\"last_name\":\"Moffatt\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Union City (TN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jovantemoffatt\",\"birth_date\":\"1996-12-25\",\"espn_id\":3914450},\"5778\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034866\",\"first_name\":\"Zay\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"5778\",\"birth_city\":null,\"fantasy_data_id\":20119,\"years_exp\":2,\"hashtag\":\"#ZayHenderson-NFL-FA-71\",\"search_first_name\":\"zay\",\"rotowire_id\":12974,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Zay Henderson\",\"sportradar_id\":\"3245841a-b113-4e4f-a994-449d25d1db98\",\"pandascore_id\":null,\"yahoo_id\":31774,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zayhenderson\",\"birth_date\":\"1994-12-06\",\"espn_id\":3115307},\"4117\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033920\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606263353660,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rivers\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4117\",\"birth_city\":null,\"fantasy_data_id\":18963,\"years_exp\":3,\"hashtag\":\"#DerekRivers-NFL-LAR-95\",\"search_first_name\":\"derek\",\"rotowire_id\":11938,\"rotoworld_id\":12233,\"active\":true,\"search_rank\":1155,\"age\":26,\"full_name\":\"Derek Rivers\",\"sportradar_id\":\"7d1d8954-3836-4bbc-9d70-cd85e57c7c69\",\"pandascore_id\":null,\"yahoo_id\":30196,\"last_name\":\"Rivers\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Youngstown State\",\"high_school\":\"Kinston (NC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"derekrivers\",\"birth_date\":\"1994-05-09\",\"espn_id\":3049268},\"3749\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kache\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1513725301619,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palacio\",\"depth_chart_position\":null,\"player_id\":\"3749\",\"birth_city\":null,\"fantasy_data_id\":18561,\"years_exp\":3,\"hashtag\":\"#KachePalacio-NFL-FA-49\",\"search_first_name\":\"kache\",\"rotowire_id\":11641,\"rotoworld_id\":11862,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kache Palacio\",\"sportradar_id\":\"fdd19b79-5d89-42e3-89d0-804cf37858a1\",\"pandascore_id\":null,\"yahoo_id\":29736,\"last_name\":\"Palacio\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kachepalacio\",\"birth_date\":\"1994-01-30\",\"espn_id\":2978349},\"1630\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"eubanks\",\"depth_chart_position\":null,\"player_id\":\"1630\",\"birth_city\":null,\"fantasy_data_id\":15343,\"years_exp\":7,\"hashtag\":\"#DariusEubanks-NFL-FA-49\",\"search_first_name\":\"darius\",\"rotowire_id\":9191,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Darius Eubanks\",\"sportradar_id\":\"63776ed2-0880-4335-bbc2-dbcb8326b79f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Eubanks\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dariuseubanks\",\"birth_date\":\"1991-07-12\",\"espn_id\":16062},\"87\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"87\",\"birth_city\":null,\"fantasy_data_id\":2350,\"years_exp\":8,\"hashtag\":\"#JeffKing-NFL-FA-87\",\"search_first_name\":\"jeff\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jeff King\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeffking\",\"birth_date\":\"1983-02-19\",\"espn_id\":null},\"1649\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kovacs\",\"depth_chart_position\":null,\"player_id\":\"1649\",\"birth_city\":null,\"fantasy_data_id\":15392,\"years_exp\":7,\"hashtag\":\"#JordanKovacs-NFL-FA-42\",\"search_first_name\":\"jordan\",\"rotowire_id\":8894,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jordan Kovacs\",\"sportradar_id\":\"d6f89ef1-41a2-4066-91e0-7ed9882a81fd\",\"pandascore_id\":null,\"yahoo_id\":27248,\"last_name\":\"Kovacs\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Clay (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jordankovacs\",\"birth_date\":\"1990-06-12\",\"espn_id\":16363},\"1903\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031228\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599490503017,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gabriel\",\"depth_chart_position\":null,\"player_id\":\"1903\",\"birth_city\":null,\"fantasy_data_id\":16129,\"years_exp\":6,\"hashtag\":\"#TaylorGabriel-NFL-FA-18\",\"search_first_name\":\"taylor\",\"rotowire_id\":9864,\"rotoworld_id\":10162,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Taylor Gabriel\",\"sportradar_id\":\"4b3677f5-712e-43f2-b7bb-51ac6f291b86\",\"pandascore_id\":null,\"yahoo_id\":28234,\"last_name\":\"Gabriel\",\"metadata\":null,\"college\":\"Abilene Christian\",\"high_school\":\"John Horn (TX)\",\"depth_chart_order\":null,\"stats_id\":752062,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"167\",\"height\":\"5'7\\\"\",\"search_full_name\":\"taylorgabriel\",\"birth_date\":\"1991-02-17\",\"espn_id\":17437},\"466\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027001\",\"first_name\":\"Vontae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1537134902518,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"466\",\"birth_city\":null,\"fantasy_data_id\":9664,\"years_exp\":11,\"hashtag\":\"#VontaeDavis-NFL-FA-22\",\"search_first_name\":\"vontae\",\"rotowire_id\":5984,\"rotoworld_id\":5089,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Vontae Davis\",\"sportradar_id\":\"1e3967fb-21cc-43b8-9f36-1c2e3b280cec\",\"pandascore_id\":null,\"yahoo_id\":9289,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Dunbar (DC)\",\"depth_chart_order\":null,\"stats_id\":333364,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"vontaedavis\",\"birth_date\":\"1988-05-27\",\"espn_id\":12424},\"3741\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shakiel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"randolph\",\"depth_chart_position\":null,\"player_id\":\"3741\",\"birth_city\":null,\"fantasy_data_id\":18553,\"years_exp\":1,\"hashtag\":\"#ShakielRandolph-NFL-FA-46\",\"search_first_name\":\"shakiel\",\"rotowire_id\":11465,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Shakiel Randolph\",\"sportradar_id\":\"f89dff68-4234-4a1a-8335-f92a37adb784\",\"pandascore_id\":null,\"yahoo_id\":29884,\"last_name\":\"Randolph\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shakielrandolph\",\"birth_date\":\"1994-02-14\",\"espn_id\":2980475},\"222\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"222\",\"birth_city\":null,\"fantasy_data_id\":5537,\"years_exp\":8,\"hashtag\":\"#JoshMorgan-NFL-FA-19\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Josh Morgan\",\"sportradar_id\":\"ad83d795-455f-4f3e-bdad-bf4fa7b6eabc\",\"pandascore_id\":null,\"yahoo_id\":8951,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":246647,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshmorgan\",\"birth_date\":\"1985-06-20\",\"espn_id\":11408},\"5806\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034899\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1597760414248,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wolford\",\"depth_chart_position\":\"QB\",\"player_id\":\"5806\",\"birth_city\":null,\"fantasy_data_id\":20703,\"years_exp\":2,\"hashtag\":\"#JohnWolford-NFL-LAR-9\",\"search_first_name\":\"john\",\"rotowire_id\":13403,\"rotoworld_id\":null,\"active\":true,\"search_rank\":394,\"age\":25,\"full_name\":\"John Wolford\",\"sportradar_id\":\"2ab1b694-1013-4661-85d4-55415d3b147f\",\"pandascore_id\":null,\"yahoo_id\":31803,\"last_name\":\"Wolford\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Bishop Kenny (FL)\",\"depth_chart_order\":2,\"stats_id\":836347,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnwolford\",\"birth_date\":\"1995-10-16\",\"espn_id\":3124092},\"4930\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Franko\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"house\",\"depth_chart_position\":null,\"player_id\":\"4930\",\"birth_city\":null,\"fantasy_data_id\":19432,\"years_exp\":1,\"hashtag\":\"#FrankoHouse-NFL-CHI-0\",\"search_first_name\":\"franko\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Franko House\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30721,\"last_name\":\"House\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'6\\\"\",\"search_full_name\":\"frankohouse\",\"birth_date\":\"1994-09-19\",\"espn_id\":null},\"2900\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrence\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"franks\",\"depth_chart_position\":null,\"player_id\":\"2900\",\"birth_city\":null,\"fantasy_data_id\":17368,\"years_exp\":null,\"hashtag\":\"#TerrenceFranks-NFL-FA-0\",\"search_first_name\":\"terrence\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Terrence Franks\",\"sportradar_id\":\"4f59a5f2-fd54-4b15-8c36-8839b9546a10\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Franks\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":562993,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"terrencefranks\",\"birth_date\":null,\"espn_id\":null},\"3209\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032972\",\"first_name\":\"Devontae\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606139712414,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"booker\",\"depth_chart_position\":\"RB\",\"player_id\":\"3209\",\"birth_city\":null,\"fantasy_data_id\":17970,\"years_exp\":4,\"hashtag\":\"#DevontaeBooker-NFL-LV-23\",\"search_first_name\":\"devontae\",\"rotowire_id\":10913,\"rotoworld_id\":11270,\"active\":true,\"search_rank\":275,\"age\":28,\"full_name\":\"Devontae Booker\",\"sportradar_id\":\"cd705357-f282-4cbf-8f11-391618d981c3\",\"pandascore_id\":null,\"yahoo_id\":29370,\"last_name\":\"Booker\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Grant Union (CA)\",\"depth_chart_order\":2,\"stats_id\":733248,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"5'11\\\"\",\"search_full_name\":\"devontaebooker\",\"birth_date\":\"1992-05-27\",\"espn_id\":3122866},\"2535\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031961\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601502911374,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"nzeocha\",\"depth_chart_position\":null,\"player_id\":\"2535\",\"birth_city\":null,\"fantasy_data_id\":16995,\"years_exp\":5,\"hashtag\":\"#MarkNzeocha-NFL-SF-53\",\"search_first_name\":\"mark\",\"rotowire_id\":10385,\"rotoworld_id\":null,\"active\":true,\"search_rank\":908,\"age\":30,\"full_name\":\"Mark Nzeocha\",\"sportradar_id\":\"6f1bc007-d446-48f2-a6e5-58c5e53df94f\",\"pandascore_id\":null,\"yahoo_id\":28624,\"last_name\":\"Nzeocha\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Ansbach (DEU)\",\"depth_chart_order\":null,\"stats_id\":592426,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marknzeocha\",\"birth_date\":\"1990-01-19\",\"espn_id\":2576030},\"7415\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602120629519,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":null,\"player_id\":\"7415\",\"birth_city\":null,\"fantasy_data_id\":22396,\"years_exp\":0,\"hashtag\":\"#JohnHouston-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":14987,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1999,\"age\":23,\"full_name\":\"John Houston\",\"sportradar_id\":\"a9333ffb-017e-4bf3-9897-db400dbe62dd\",\"pandascore_id\":null,\"yahoo_id\":32933,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnhouston\",\"birth_date\":\"1997-06-25\",\"espn_id\":null},\"4699\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"snead\",\"depth_chart_position\":null,\"player_id\":\"4699\",\"birth_city\":null,\"fantasy_data_id\":19602,\"years_exp\":2,\"hashtag\":\"#KevinSnead-NFL-FA-84\",\"search_first_name\":\"kevin\",\"rotowire_id\":12251,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kevin Snead\",\"sportradar_id\":\"d00d7ae6-c42a-4d93-9acb-4da8239d4266\",\"pandascore_id\":null,\"yahoo_id\":30830,\"last_name\":\"Snead\",\"metadata\":null,\"college\":\"Carson-Newman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1051158,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kevinsnead\",\"birth_date\":\"1991-11-22\",\"espn_id\":3949031},\"6764\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1589224514959,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moncrief\",\"depth_chart_position\":null,\"player_id\":\"6764\",\"birth_city\":null,\"fantasy_data_id\":21709,\"years_exp\":0,\"hashtag\":\"#DerrickMoncrief-NFL-LAR-47\",\"search_first_name\":\"derrick\",\"rotowire_id\":14497,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Derrick Moncrief\",\"sportradar_id\":\"34de33c5-fc2c-4818-aa03-294e28cbcfa8\",\"pandascore_id\":null,\"yahoo_id\":32665,\"last_name\":\"Moncrief\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Prattville (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"derrickmoncrief\",\"birth_date\":\"1993-06-25\",\"espn_id\":3115317},\"4821\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamari\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"staples\",\"depth_chart_position\":null,\"player_id\":\"4821\",\"birth_city\":null,\"fantasy_data_id\":19392,\"years_exp\":2,\"hashtag\":\"#JamariStaples-NFL-FA-6\",\"search_first_name\":\"jamari\",\"rotowire_id\":11878,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jamari Staples\",\"sportradar_id\":\"36bc6bae-69ce-4850-81d9-7def9cbf12b5\",\"pandascore_id\":null,\"yahoo_id\":30704,\"last_name\":\"Staples\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":750823,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamaristaples\",\"birth_date\":\"1994-09-10\",\"espn_id\":3060040},\"928\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028002\",\"first_name\":\"Randall\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606344303326,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cobb\",\"depth_chart_position\":\"RWR\",\"player_id\":\"928\",\"birth_city\":null,\"fantasy_data_id\":13227,\"years_exp\":9,\"hashtag\":\"#RandallCobb-NFL-HOU-18\",\"search_first_name\":\"randall\",\"rotowire_id\":7256,\"rotoworld_id\":6497,\"active\":true,\"search_rank\":185,\"age\":30,\"full_name\":\"Randall Cobb\",\"sportradar_id\":\"3283f152-d373-43b3-b88f-f6f261c48e81\",\"pandascore_id\":null,\"yahoo_id\":24851,\"last_name\":\"Cobb\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Alcoa (TN)\",\"depth_chart_order\":2,\"stats_id\":465949,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"randallcobb\",\"birth_date\":\"1990-08-22\",\"espn_id\":14053},\"7313\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Liam\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccullough\",\"depth_chart_position\":null,\"player_id\":\"7313\",\"birth_city\":null,\"fantasy_data_id\":22306,\"years_exp\":0,\"hashtag\":\"#LiamMcCullough-NFL-FA-0\",\"search_first_name\":\"liam\",\"rotowire_id\":14797,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Liam McCullough\",\"sportradar_id\":\"313aafe1-9b5a-4565-a713-2f2b230f95be\",\"pandascore_id\":null,\"yahoo_id\":33317,\"last_name\":\"McCullough\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'2\\\"\",\"search_full_name\":\"liammccullough\",\"birth_date\":\"1997-06-05\",\"espn_id\":3915528},\"4873\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kris\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richard\",\"depth_chart_position\":null,\"player_id\":\"4873\",\"birth_city\":null,\"fantasy_data_id\":19774,\"years_exp\":0,\"hashtag\":\"#KrisRichard-NFL-FA-0\",\"search_first_name\":\"kris\",\"rotowire_id\":null,\"rotoworld_id\":541,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kris Richard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Richard\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"krisrichard\",\"birth_date\":null,\"espn_id\":null},\"983\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028177\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584636332851,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"person\",\"depth_chart_position\":\"RG\",\"player_id\":\"983\",\"birth_city\":null,\"fantasy_data_id\":13448,\"years_exp\":9,\"hashtag\":\"#MikePerson-NFL-FA-68\",\"search_first_name\":\"mike\",\"rotowire_id\":7615,\"rotoworld_id\":6743,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Mike Person\",\"sportradar_id\":\"675fff00-6821-499a-b30d-04fc54468eaa\",\"pandascore_id\":null,\"yahoo_id\":25026,\"last_name\":\"Person\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":\"Dawson County (MT)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikeperson\",\"birth_date\":\"1988-05-17\",\"espn_id\":14070},\"3105\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"guenther\",\"depth_chart_position\":null,\"player_id\":\"3105\",\"birth_city\":null,\"fantasy_data_id\":17856,\"years_exp\":0,\"hashtag\":\"#PaulGuenther-NFL-FA-0\",\"search_first_name\":\"paul\",\"rotowire_id\":null,\"rotoworld_id\":9336,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Paul Guenther\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Guenther\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"paulguenther\",\"birth_date\":null,\"espn_id\":null},\"6286\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034996\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602115229186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"6286\",\"birth_city\":null,\"fantasy_data_id\":21137,\"years_exp\":1,\"hashtag\":\"#TimHarris-NFL-SF-35\",\"search_first_name\":\"tim\",\"rotowire_id\":13692,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1679,\"age\":25,\"full_name\":\"Tim Harris\",\"sportradar_id\":\"e289cb0a-2447-458a-a47b-5f843c0edd3c\",\"pandascore_id\":null,\"yahoo_id\":32030,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Varina (VA)\",\"depth_chart_order\":null,\"stats_id\":745844,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'2\\\"\",\"search_full_name\":\"timharris\",\"birth_date\":\"1995-07-31\",\"espn_id\":3048681},\"24\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026143\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606353602661,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":\"QB\",\"player_id\":\"24\",\"birth_city\":null,\"fantasy_data_id\":732,\"years_exp\":12,\"hashtag\":\"#MattRyan-NFL-ATL-2\",\"search_first_name\":\"matt\",\"rotowire_id\":5610,\"rotoworld_id\":4637,\"active\":true,\"search_rank\":82,\"age\":35,\"full_name\":\"Matt Ryan\",\"sportradar_id\":\"7e648a0b-fdc8-4661-a587-5826f2cac11b\",\"pandascore_id\":null,\"yahoo_id\":8780,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Penn (PA)\",\"depth_chart_order\":1,\"stats_id\":216263,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mattryan\",\"birth_date\":\"1985-05-17\",\"espn_id\":11237},\"4849\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Armagedon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"draughn\",\"depth_chart_position\":null,\"player_id\":\"4849\",\"birth_city\":null,\"fantasy_data_id\":19750,\"years_exp\":2,\"hashtag\":\"#ArmagedonDraughn-NFL-FA-36\",\"search_first_name\":\"armagedon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Armagedon Draughn\",\"sportradar_id\":\"1f84e511-78ef-4536-8463-37e1ecc00e18\",\"pandascore_id\":null,\"yahoo_id\":30953,\"last_name\":\"Draughn\",\"metadata\":null,\"college\":\"Albany State (GA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'4\\\"\",\"search_full_name\":\"armagedondraughn\",\"birth_date\":\"1994-04-06\",\"espn_id\":4257567},\"225\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023298\",\"first_name\":\"L.P.\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1584549322598,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ladouceur\",\"depth_chart_position\":null,\"player_id\":\"225\",\"birth_city\":null,\"fantasy_data_id\":5668,\"years_exp\":15,\"hashtag\":\"#LPLaDouceur-NFL-DAL-91\",\"search_first_name\":\"lp\",\"rotowire_id\":7095,\"rotoworld_id\":3515,\"active\":true,\"search_rank\":9999999,\"age\":39,\"full_name\":\"L.P. LaDouceur\",\"sportradar_id\":\"58ac0e67-b0c1-4a2d-b89d-ccf3296c787f\",\"pandascore_id\":null,\"yahoo_id\":7512,\"last_name\":\"LaDouceur\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Notre Dame (CAN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lpladouceur\",\"birth_date\":\"1981-03-13\",\"espn_id\":9349},\"1126\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029682\",\"first_name\":\"Brock\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1571264455252,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"osweiler\",\"depth_chart_position\":null,\"player_id\":\"1126\",\"birth_city\":null,\"fantasy_data_id\":14053,\"years_exp\":8,\"hashtag\":\"#BrockOsweiler-NFL-FA-8\",\"search_first_name\":\"brock\",\"rotowire_id\":8033,\"rotoworld_id\":7450,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brock Osweiler\",\"sportradar_id\":\"0847010c-9a77-4f0b-9d63-c8b4b224d263\",\"pandascore_id\":null,\"yahoo_id\":25767,\"last_name\":\"Osweiler\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Flathead (MT)\",\"depth_chart_order\":null,\"stats_id\":496553,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brockosweiler\",\"birth_date\":\"1990-11-22\",\"espn_id\":14879},\"6537\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035335\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"6537\",\"birth_city\":null,\"fantasy_data_id\":21265,\"years_exp\":1,\"hashtag\":\"#RyanAnderson-NFL-FA-60\",\"search_first_name\":\"ryan\",\"rotowire_id\":14278,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Anderson\",\"sportradar_id\":\"b997cb23-f1a0-43c8-a684-7941e38afa8e\",\"pandascore_id\":null,\"yahoo_id\":32431,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryananderson\",\"birth_date\":\"1994-12-30\",\"espn_id\":3124111},\"4345\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033368\",\"first_name\":\"Bam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1553052630102,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bradley\",\"depth_chart_position\":null,\"player_id\":\"4345\",\"birth_city\":null,\"fantasy_data_id\":19201,\"years_exp\":3,\"hashtag\":\"#BamBradley-NFL-FA-0\",\"search_first_name\":\"bam\",\"rotowire_id\":12427,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bam Bradley\",\"sportradar_id\":\"5a7fd0e3-5b63-4ebd-b8f9-02f3dafe0d45\",\"pandascore_id\":null,\"yahoo_id\":30514,\"last_name\":\"Bradley\",\"metadata\":null,\"college\":\"PIttsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bambradley\",\"birth_date\":\"1994-06-26\",\"espn_id\":2970256},\"2561\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boone\",\"depth_chart_position\":null,\"player_id\":\"2561\",\"birth_city\":null,\"fantasy_data_id\":17024,\"years_exp\":0,\"hashtag\":\"#AnthonyBoone-NFL-FA-16\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Boone\",\"sportradar_id\":\"4d3db596-07a4-451d-84b9-3592e3990155\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Boone\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556167,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'0\\\"\",\"search_full_name\":\"anthonyboone\",\"birth_date\":\"1991-10-29\",\"espn_id\":null},\"2485\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032115\",\"first_name\":\"Kaelin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1538529303804,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"clay\",\"depth_chart_position\":null,\"player_id\":\"2485\",\"birth_city\":null,\"fantasy_data_id\":16944,\"years_exp\":5,\"hashtag\":\"#KaelinClay-NFL-FA-15\",\"search_first_name\":\"kaelin\",\"rotowire_id\":10241,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kaelin Clay\",\"sportradar_id\":\"c5f35a06-791b-43e1-befc-df0c54b3b486\",\"pandascore_id\":null,\"yahoo_id\":28572,\"last_name\":\"Clay\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Long Beach (CA) Poly\",\"depth_chart_order\":null,\"stats_id\":557215,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kaelinclay\",\"birth_date\":\"1992-01-03\",\"espn_id\":2516957},\"2185\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031118\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535064670793,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2185\",\"birth_city\":null,\"fantasy_data_id\":16553,\"years_exp\":6,\"hashtag\":\"#CoreyBrown-NFL-FA-5\",\"search_first_name\":\"corey\",\"rotowire_id\":9486,\"rotoworld_id\":9917,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Corey Brown\",\"sportradar_id\":\"52e1f731-0038-4ecc-82b1-b0073de9c9f6\",\"pandascore_id\":null,\"yahoo_id\":27938,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Cardinal O'Hara (PA)\",\"depth_chart_order\":null,\"stats_id\":568316,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"coreybrown\",\"birth_date\":\"1991-12-16\",\"espn_id\":17399},\"4288\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033529\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602431716886,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roullier\",\"depth_chart_position\":\"C\",\"player_id\":\"4288\",\"birth_city\":null,\"fantasy_data_id\":19134,\"years_exp\":3,\"hashtag\":\"#ChaseRoullier-NFL-WAS-73\",\"search_first_name\":\"chase\",\"rotowire_id\":11816,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Chase Roullier\",\"sportradar_id\":\"fb69c7cd-75b1-4431-8648-daec4817974a\",\"pandascore_id\":null,\"yahoo_id\":30312,\"last_name\":\"Roullier\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Burnsville (MN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chaseroullier\",\"birth_date\":\"1993-08-23\",\"espn_id\":2976182},\"1115\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029050\",\"first_name\":\"Antwon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blake\",\"depth_chart_position\":null,\"player_id\":\"1115\",\"birth_city\":null,\"fantasy_data_id\":14020,\"years_exp\":8,\"hashtag\":\"#AntwonBlake-NFL-FA-47\",\"search_first_name\":\"antwon\",\"rotowire_id\":8440,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Antwon Blake\",\"sportradar_id\":\"b2e66f2f-5b53-4e72-bbd6-83c948f3b7de\",\"pandascore_id\":null,\"yahoo_id\":26082,\"last_name\":\"Blake\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Marshall (TX)\",\"depth_chart_order\":null,\"stats_id\":467447,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'9\\\"\",\"search_full_name\":\"antwonblake\",\"birth_date\":\"1990-08-09\",\"espn_id\":15350},\"1050\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thigpen\",\"depth_chart_position\":null,\"player_id\":\"1050\",\"birth_city\":null,\"fantasy_data_id\":13800,\"years_exp\":11,\"hashtag\":\"#MarcusThigpen-NFL-FA-11\",\"search_first_name\":\"marcus\",\"rotowire_id\":8468,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Marcus Thigpen\",\"sportradar_id\":\"08d772b0-b87e-4345-b66a-ab13b3da262a\",\"pandascore_id\":null,\"yahoo_id\":25694,\"last_name\":\"Thigpen\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Mumford (MI)\",\"depth_chart_order\":null,\"stats_id\":264913,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marcusthigpen\",\"birth_date\":\"1986-05-15\",\"espn_id\":12524},\"5624\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034509\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1566592535885,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":\"RB\",\"player_id\":\"5624\",\"birth_city\":null,\"fantasy_data_id\":20598,\"years_exp\":2,\"hashtag\":\"#KeithFord-NFL-FA-27\",\"search_first_name\":\"keith\",\"rotowire_id\":12894,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Keith Ford\",\"sportradar_id\":\"63a42b17-bb3e-4e68-970f-aa2fffee4d10\",\"pandascore_id\":null,\"yahoo_id\":31595,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":747985,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keithford\",\"birth_date\":\"1994-04-18\",\"espn_id\":3052662},\"2845\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"westbrook\",\"depth_chart_position\":null,\"player_id\":\"2845\",\"birth_city\":null,\"fantasy_data_id\":17313,\"years_exp\":5,\"hashtag\":\"#TevinWestbrook-NFL-FA-81\",\"search_first_name\":\"tevin\",\"rotowire_id\":10728,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tevin Westbrook\",\"sportradar_id\":\"fdf517f9-c4e9-48ac-af54-1be3d60ee648\",\"pandascore_id\":null,\"yahoo_id\":29118,\"last_name\":\"Westbrook\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"North Broward Prep (FL)\",\"depth_chart_order\":null,\"stats_id\":607073,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tevinwestbrook\",\"birth_date\":\"1993-01-17\",\"espn_id\":2578588},\"6674\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035558\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1595995505016,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcghin\",\"depth_chart_position\":null,\"player_id\":\"6674\",\"birth_city\":null,\"fantasy_data_id\":21573,\"years_exp\":1,\"hashtag\":\"#GarrettMcGhin-NFL-JAX-63\",\"search_first_name\":\"garrett\",\"rotowire_id\":14272,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Garrett McGhin\",\"sportradar_id\":\"f093ef0b-6f2c-4fb7-8477-71f1eea28ac0\",\"pandascore_id\":null,\"yahoo_id\":32574,\"last_name\":\"McGhin\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Florida State University School (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'6\\\"\",\"search_full_name\":\"garrettmcghin\",\"birth_date\":\"1995-10-13\",\"espn_id\":3126153},\"138\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022924\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606507527817,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roethlisberger\",\"depth_chart_position\":\"QB\",\"player_id\":\"138\",\"birth_city\":null,\"fantasy_data_id\":3807,\"years_exp\":16,\"hashtag\":\"#BenRoethlisberger-NFL-PIT-7\",\"search_first_name\":\"ben\",\"rotowire_id\":3764,\"rotoworld_id\":1181,\"active\":true,\"search_rank\":121,\"age\":38,\"full_name\":\"Ben Roethlisberger\",\"sportradar_id\":\"ea357add-1a41-4a8b-8f34-bbfade7f4d98\",\"pandascore_id\":null,\"yahoo_id\":6770,\"last_name\":\"Roethlisberger\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Miami, O.\",\"high_school\":\"Findlay (OH)\",\"depth_chart_order\":1,\"stats_id\":246061,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"benroethlisberger\",\"birth_date\":\"1982-03-02\",\"espn_id\":5536},\"3214\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033090\",\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606594533500,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henry\",\"depth_chart_position\":\"TE\",\"player_id\":\"3214\",\"birth_city\":null,\"fantasy_data_id\":17975,\"years_exp\":4,\"hashtag\":\"#HunterHenry-NFL-LAC-86\",\"search_first_name\":\"hunter\",\"rotowire_id\":10735,\"rotoworld_id\":11299,\"active\":true,\"search_rank\":88,\"age\":25,\"full_name\":\"Hunter Henry\",\"sportradar_id\":\"705899da-3c20-4bc3-b5d0-2e6e40655131\",\"pandascore_id\":null,\"yahoo_id\":29269,\"last_name\":\"Henry\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Pulaski (AR)\",\"depth_chart_order\":1,\"stats_id\":744425,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hunterhenry\",\"birth_date\":\"1994-12-07\",\"espn_id\":3046439},\"2191\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031121\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567196155795,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lucas\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2191\",\"birth_city\":null,\"fantasy_data_id\":16559,\"years_exp\":6,\"hashtag\":\"#MarcusLucas-NFL-FA-80\",\"search_first_name\":\"marcus\",\"rotowire_id\":9475,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marcus Lucas\",\"sportradar_id\":\"0fb168d1-c720-4e22-9e20-8b6432131548\",\"pandascore_id\":null,\"yahoo_id\":27941,\"last_name\":\"Lucas\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":553236,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marcuslucas\",\"birth_date\":\"1992-03-01\",\"espn_id\":17382},\"5998\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035069\",\"first_name\":\"Clifton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"duck\",\"depth_chart_position\":null,\"player_id\":\"5998\",\"birth_city\":null,\"fantasy_data_id\":21073,\"years_exp\":1,\"hashtag\":\"#CliftonDuck-NFL-FA-38\",\"search_first_name\":\"clifton\",\"rotowire_id\":13503,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Clifton Duck\",\"sportradar_id\":\"21f0649c-8f52-4837-8d63-baa836bbf58f\",\"pandascore_id\":null,\"yahoo_id\":32252,\"last_name\":\"Duck\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'9\\\"\",\"search_full_name\":\"cliftonduck\",\"birth_date\":\"1998-05-03\",\"espn_id\":4036434},\"3777\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032909\",\"first_name\":\"Dillon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"OL\"],\"news_updated\":1565539824374,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gordon\",\"depth_chart_position\":null,\"player_id\":\"3777\",\"birth_city\":null,\"fantasy_data_id\":18590,\"years_exp\":4,\"hashtag\":\"#DillonGordon-NFL-FA-0\",\"search_first_name\":\"dillon\",\"rotowire_id\":11532,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Dillon Gordon\",\"sportradar_id\":\"91555a62-f501-46c4-ba59-20f4a27e8d8d\",\"pandascore_id\":null,\"yahoo_id\":29675,\"last_name\":\"Gordon\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dillongordon\",\"birth_date\":\"1993-09-02\",\"espn_id\":2976546},\"2408\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031568\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1537923302615,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"petty\",\"depth_chart_position\":null,\"player_id\":\"2408\",\"birth_city\":null,\"fantasy_data_id\":16864,\"years_exp\":5,\"hashtag\":\"#BrycePetty-NFL-FA-14\",\"search_first_name\":\"bryce\",\"rotowire_id\":10163,\"rotoworld_id\":10419,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bryce Petty\",\"sportradar_id\":\"609ab653-c3d4-4138-a2d9-c697a34174ad\",\"pandascore_id\":null,\"yahoo_id\":28491,\"last_name\":\"Petty\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Midlothian (TX)\",\"depth_chart_order\":null,\"stats_id\":503511,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brycepetty\",\"birth_date\":\"1991-05-31\",\"espn_id\":2466005},\"6093\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035280\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1566270322577,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"6093\",\"birth_city\":null,\"fantasy_data_id\":21017,\"years_exp\":1,\"hashtag\":\"#JakeBailey-NFL-NE-7\",\"search_first_name\":\"jake\",\"rotowire_id\":13817,\"rotoworld_id\":14255,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jake Bailey\",\"sportradar_id\":\"af1335c6-c262-4488-9352-86ba80754583\",\"pandascore_id\":null,\"yahoo_id\":31995,\"last_name\":\"Bailey\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Stanford\",\"high_school\":\"Santa Fe Christian (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakebailey\",\"birth_date\":\"1997-06-18\",\"espn_id\":3931395},\"6716\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Olive\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sagapolu\",\"depth_chart_position\":\"LDT\",\"player_id\":\"6716\",\"birth_city\":null,\"fantasy_data_id\":21641,\"years_exp\":1,\"hashtag\":\"#OliveSagapolu-NFL-FA-0\",\"search_first_name\":\"olive\",\"rotowire_id\":13948,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1771,\"age\":23,\"full_name\":\"Olive Sagapolu\",\"sportradar_id\":\"106c9a1b-6bc7-4cab-bc52-cb58d5319ede\",\"pandascore_id\":null,\"yahoo_id\":32631,\"last_name\":\"Sagapolu\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'2\\\"\",\"search_full_name\":\"olivesagapolu\",\"birth_date\":\"1997-02-17\",\"espn_id\":3917679},\"1981\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deandre\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1514322602217,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"1981\",\"birth_city\":null,\"fantasy_data_id\":16248,\"years_exp\":6,\"hashtag\":\"#DeandreColeman-NFL-FA-98\",\"search_first_name\":\"deandre\",\"rotowire_id\":9402,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Deandre Coleman\",\"sportradar_id\":\"f14b5193-0f82-4bdb-852d-05af0fb59d5f\",\"pandascore_id\":null,\"yahoo_id\":27870,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Garfield (WA)\",\"depth_chart_order\":null,\"stats_id\":498129,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"deandrecoleman\",\"birth_date\":\"1991-01-27\",\"espn_id\":17128},\"672\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"LCB\",\"player_id\":\"672\",\"birth_city\":null,\"fantasy_data_id\":11855,\"years_exp\":4,\"hashtag\":\"#DonaldWashington-NFL-FA-30\",\"search_first_name\":\"donald\",\"rotowire_id\":11548,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Donald Washington\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":9366,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'1\\\"\",\"search_full_name\":\"donaldwashington\",\"birth_date\":\"1986-07-28\",\"espn_id\":12746},\"2010\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sullen\",\"depth_chart_position\":null,\"player_id\":\"2010\",\"birth_city\":null,\"fantasy_data_id\":16286,\"years_exp\":1,\"hashtag\":\"#JordanSullen-NFL-FA-42\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jordan Sullen\",\"sportradar_id\":\"b14efdf2-c352-4659-9740-b1aed6ecd79e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sullen\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordansullen\",\"birth_date\":\"1990-06-25\",\"espn_id\":17043},\"2913\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gavin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lutman\",\"depth_chart_position\":null,\"player_id\":\"2913\",\"birth_city\":null,\"fantasy_data_id\":17381,\"years_exp\":0,\"hashtag\":\"#GavinLutman-NFL-FA-19\",\"search_first_name\":\"gavin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Gavin Lutman\",\"sportradar_id\":\"68f4fe16-b546-481e-8fc2-b854b8939dfa\",\"pandascore_id\":null,\"yahoo_id\":28841,\"last_name\":\"Lutman\",\"metadata\":null,\"college\":\"Pittsburg State (KS)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":791891,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'4\\\"\",\"search_full_name\":\"gavinlutman\",\"birth_date\":\"1991-03-27\",\"espn_id\":null},\"7031\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lima\",\"depth_chart_position\":null,\"player_id\":\"7031\",\"birth_city\":null,\"fantasy_data_id\":22105,\"years_exp\":0,\"hashtag\":\"#RayLima-NFL-FA-0\",\"search_first_name\":\"ray\",\"rotowire_id\":15028,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ray Lima\",\"sportradar_id\":\"f9e37976-c5dd-44b8-aedb-c69d169b5b73\",\"pandascore_id\":null,\"yahoo_id\":33241,\"last_name\":\"Lima\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"raylima\",\"birth_date\":\"1996-05-27\",\"espn_id\":null},\"1296\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harkey\",\"depth_chart_position\":null,\"player_id\":\"1296\",\"birth_city\":null,\"fantasy_data_id\":14764,\"years_exp\":8,\"hashtag\":\"#CoryHarkey-NFL-FA-46\",\"search_first_name\":\"cory\",\"rotowire_id\":8582,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Cory Harkey\",\"sportradar_id\":\"d19be33b-5177-4cbc-825f-d3061fff6c6e\",\"pandascore_id\":null,\"yahoo_id\":26347,\"last_name\":\"Harkey\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Chino Hills (CA)\",\"depth_chart_order\":null,\"stats_id\":461730,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coryharkey\",\"birth_date\":\"1990-06-17\",\"espn_id\":15226},\"4575\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033663\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565485525630,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"theaker\",\"depth_chart_position\":null,\"player_id\":\"4575\",\"birth_city\":null,\"fantasy_data_id\":19462,\"years_exp\":3,\"hashtag\":\"#NateTheaker-NFL-FA-69\",\"search_first_name\":\"nate\",\"rotowire_id\":11822,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nate Theaker\",\"sportradar_id\":\"c242081f-f312-4e15-8de3-854dfdc2bccf\",\"pandascore_id\":null,\"yahoo_id\":30789,\"last_name\":\"Theaker\",\"metadata\":null,\"college\":\"Wayne State (MI)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"natetheaker\",\"birth_date\":\"1993-10-06\",\"espn_id\":2613168},\"4591\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033675\",\"first_name\":\"Dymonte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1578763520308,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"4591\",\"birth_city\":null,\"fantasy_data_id\":19478,\"years_exp\":3,\"hashtag\":\"#DymonteThomas-NFL-FA-0\",\"search_first_name\":\"dymonte\",\"rotowire_id\":12474,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dymonte Thomas\",\"sportradar_id\":\"7e408bdc-df1a-44bf-878e-8cc790c40a3e\",\"pandascore_id\":null,\"yahoo_id\":30825,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dymontethomas\",\"birth_date\":\"1993-11-30\",\"espn_id\":3045206},\"2438\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031581\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1548778846943,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"glowinski\",\"depth_chart_position\":\"RG\",\"player_id\":\"2438\",\"birth_city\":null,\"fantasy_data_id\":16895,\"years_exp\":5,\"hashtag\":\"#MarkGlowinski-NFL-IND-64\",\"search_first_name\":\"mark\",\"rotowire_id\":10276,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mark Glowinski\",\"sportradar_id\":\"cbbf7b76-cd26-462e-bc18-d80f5109723b\",\"pandascore_id\":null,\"yahoo_id\":28522,\"last_name\":\"Glowinski\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"G.A.R. Memorial (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"markglowinski\",\"birth_date\":\"1992-05-03\",\"espn_id\":2976632},\"3429\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darien\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"3429\",\"birth_city\":null,\"fantasy_data_id\":18193,\"years_exp\":0,\"hashtag\":\"#DarienHarris-NFL-FA-45\",\"search_first_name\":\"darien\",\"rotowire_id\":11376,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darien Harris\",\"sportradar_id\":\"dca52868-6c6d-47cb-baee-65bf35580d24\",\"pandascore_id\":null,\"yahoo_id\":29705,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darienharris\",\"birth_date\":\"1993-03-31\",\"espn_id\":2576266},\"471\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026844\",\"first_name\":\"Garrison\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1571889028135,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sanborn\",\"depth_chart_position\":null,\"player_id\":\"471\",\"birth_city\":null,\"fantasy_data_id\":9700,\"years_exp\":11,\"hashtag\":\"#GarrisonSanborn-NFL-FA-89\",\"search_first_name\":\"garrison\",\"rotowire_id\":6932,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Garrison Sanborn\",\"sportradar_id\":\"94285cbc-7338-4732-b59c-3b1082cd5d83\",\"pandascore_id\":null,\"yahoo_id\":9537,\"last_name\":\"Sanborn\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Jesuit (FL)\",\"depth_chart_order\":null,\"stats_id\":284099,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"garrisonsanborn\",\"birth_date\":\"1985-07-31\",\"espn_id\":13078},\"4008\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manusky\",\"depth_chart_position\":null,\"player_id\":\"4008\",\"birth_city\":null,\"fantasy_data_id\":18847,\"years_exp\":0,\"hashtag\":\"#GregManusky-NFL-FA-0\",\"search_first_name\":\"greg\",\"rotowire_id\":null,\"rotoworld_id\":9490,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Greg Manusky\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manusky\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"gregmanusky\",\"birth_date\":null,\"espn_id\":null},\"4437\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"4437\",\"birth_city\":null,\"fantasy_data_id\":19298,\"years_exp\":2,\"hashtag\":\"#ConnorHarris-NFL-FA-47\",\"search_first_name\":\"connor\",\"rotowire_id\":11973,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Connor Harris\",\"sportradar_id\":\"69486931-25aa-40e0-a294-4a4cd14fa27d\",\"pandascore_id\":null,\"yahoo_id\":30573,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Lindenwood\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"5'11\\\"\",\"search_full_name\":\"connorharris\",\"birth_date\":\"1993-06-22\",\"espn_id\":4081808},\"442\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Geoff\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schwartz\",\"depth_chart_position\":null,\"player_id\":\"442\",\"birth_city\":null,\"fantasy_data_id\":9172,\"years_exp\":12,\"hashtag\":\"#GeoffSchwartz-NFL-FA-74\",\"search_first_name\":\"geoff\",\"rotowire_id\":6417,\"rotoworld_id\":4976,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Geoff Schwartz\",\"sportradar_id\":\"1d2be514-b036-4032-ba35-0f4c0003affc\",\"pandascore_id\":null,\"yahoo_id\":9018,\"last_name\":\"Schwartz\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Palisades Charter (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'6\\\"\",\"search_full_name\":\"geoffschwartz\",\"birth_date\":\"1986-07-11\",\"espn_id\":11475},\"4462\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033317\",\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574982653761,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"magnuson\",\"depth_chart_position\":null,\"player_id\":\"4462\",\"birth_city\":null,\"fantasy_data_id\":19328,\"years_exp\":3,\"hashtag\":\"#ErikMagnuson-NFL-LV-62\",\"search_first_name\":\"erik\",\"rotowire_id\":12436,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Erik Magnuson\",\"sportradar_id\":\"03611d74-221a-4436-913f-d23f95542598\",\"pandascore_id\":null,\"yahoo_id\":30561,\"last_name\":\"Magnuson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"La Costa Canyon (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"erikmagnuson\",\"birth_date\":\"1994-01-05\",\"espn_id\":2977627},\"1160\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029212\",\"first_name\":\"Tahir\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606064118019,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"whitehead\",\"depth_chart_position\":\"MLB\",\"player_id\":\"1160\",\"birth_city\":null,\"fantasy_data_id\":14225,\"years_exp\":8,\"hashtag\":\"#TahirWhitehead-NFL-CAR-52\",\"search_first_name\":\"tahir\",\"rotowire_id\":8341,\"rotoworld_id\":7588,\"active\":true,\"search_rank\":677,\"age\":30,\"full_name\":\"Tahir Whitehead\",\"sportradar_id\":\"70eae82c-30ea-491f-b71c-aa11f47af476\",\"pandascore_id\":null,\"yahoo_id\":25848,\"last_name\":\"Whitehead\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"West Side (NJ)\",\"depth_chart_order\":1,\"stats_id\":469179,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tahirwhitehead\",\"birth_date\":\"1990-04-02\",\"espn_id\":15070},\"5297\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034285\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605565218728,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sieler\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5297\",\"birth_city\":null,\"fantasy_data_id\":20051,\"years_exp\":2,\"hashtag\":\"#ZachSieler-NFL-MIA-92\",\"search_first_name\":\"zach\",\"rotowire_id\":13011,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1406,\"age\":25,\"full_name\":\"Zach Sieler\",\"sportradar_id\":\"c85c0efc-3391-4a8e-b8a4-370b32fd09ce\",\"pandascore_id\":null,\"yahoo_id\":31208,\"last_name\":\"Sieler\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":\"Pinckney (MI)\",\"depth_chart_order\":2,\"stats_id\":1115236,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'6\\\"\",\"search_full_name\":\"zachsieler\",\"birth_date\":\"1995-09-07\",\"espn_id\":3057956},\"5391\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034072\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567192855473,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunbar\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5391\",\"birth_city\":null,\"fantasy_data_id\":20467,\"years_exp\":2,\"hashtag\":\"#StevenDunbar-NFL-FA-13\",\"search_first_name\":\"steven\",\"rotowire_id\":12730,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Steven Dunbar\",\"sportradar_id\":\"d4f6964e-3ec0-4ff6-a233-c56913e7c088\",\"pandascore_id\":null,\"yahoo_id\":31328,\"last_name\":\"Dunbar\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":831247,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stevendunbar\",\"birth_date\":\"1995-12-09\",\"espn_id\":3126197},\"5716\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034690\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532999151868,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"5716\",\"birth_city\":null,\"fantasy_data_id\":20622,\"years_exp\":2,\"hashtag\":\"#BrandonSmith-NFL-FA-77\",\"search_first_name\":\"brandon\",\"rotowire_id\":13332,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Smith\",\"sportradar_id\":\"9a63551b-fc8b-43c3-9f70-1f19835cf8c9\",\"pandascore_id\":null,\"yahoo_id\":31697,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brandonsmith\",\"birth_date\":\"1994-09-12\",\"espn_id\":3040542},\"6700\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcelias\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1564015532496,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sutton\",\"depth_chart_position\":null,\"player_id\":\"6700\",\"birth_city\":null,\"fantasy_data_id\":21614,\"years_exp\":1,\"hashtag\":\"#MarceliasSutton-NFL-SEA-38\",\"search_first_name\":\"marcelias\",\"rotowire_id\":14319,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marcelias Sutton\",\"sportradar_id\":\"a5b32b41-5394-41ab-b5ec-a8a0824b5605\",\"pandascore_id\":null,\"yahoo_id\":32613,\"last_name\":\"Sutton\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":976239,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marceliassutton\",\"birth_date\":null,\"espn_id\":4241403},\"6176\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034986\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598406639568,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6176\",\"birth_city\":null,\"fantasy_data_id\":20944,\"years_exp\":1,\"hashtag\":\"#CameronSmith-NFL-MIN-59\",\"search_first_name\":\"cameron\",\"rotowire_id\":13813,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1601,\"age\":23,\"full_name\":\"Cameron Smith\",\"sportradar_id\":\"14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0\",\"pandascore_id\":null,\"yahoo_id\":31994,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Granite Bay (CA)\",\"depth_chart_order\":null,\"stats_id\":865839,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cameronsmith\",\"birth_date\":\"1997-03-26\",\"espn_id\":3701669},\"4941\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dontre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"4941\",\"birth_city\":null,\"fantasy_data_id\":19704,\"years_exp\":1,\"hashtag\":\"#DontreWilson-NFL-LAC-0\",\"search_first_name\":\"dontre\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dontre Wilson\",\"sportradar_id\":\"50f5bd80-5bd1-46ab-992d-2492ec6c0726\",\"pandascore_id\":null,\"yahoo_id\":30440,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728345,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dontrewilson\",\"birth_date\":null,\"espn_id\":null},\"7060\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587939893690,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bartch\",\"depth_chart_position\":\"RG\",\"player_id\":\"7060\",\"birth_city\":null,\"fantasy_data_id\":22012,\"years_exp\":0,\"hashtag\":\"#BenBartch-NFL-JAX-78\",\"search_first_name\":\"ben\",\"rotowire_id\":14544,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Ben Bartch\",\"sportradar_id\":\"53b64223-ded9-41c1-9d2b-a8c2de8963d0\",\"pandascore_id\":null,\"yahoo_id\":32786,\"last_name\":\"Bartch\",\"metadata\":null,\"college\":\"St. John's, Minn.\",\"high_school\":\"Blanchet Catholic (OR)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"benbartch\",\"birth_date\":\"1998-07-22\",\"espn_id\":4611506},\"3427\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033001\",\"first_name\":\"Trae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1559774152782,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elston\",\"depth_chart_position\":null,\"player_id\":\"3427\",\"birth_city\":null,\"fantasy_data_id\":18191,\"years_exp\":4,\"hashtag\":\"#TraeElston-NFL-FA-36\",\"search_first_name\":\"trae\",\"rotowire_id\":11500,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Trae Elston\",\"sportradar_id\":\"cbe0aa91-829a-4ecb-ba86-01d90135ac05\",\"pandascore_id\":null,\"yahoo_id\":29845,\"last_name\":\"Elston\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"traeelston\",\"birth_date\":\"1994-02-16\",\"espn_id\":2980380},\"734\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027857\",\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606186515193,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"734\",\"birth_city\":null,\"fantasy_data_id\":12308,\"years_exp\":10,\"hashtag\":\"#TrentWilliams-NFL-SF-71\",\"search_first_name\":\"trent\",\"rotowire_id\":6541,\"rotoworld_id\":5761,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Trent Williams\",\"sportradar_id\":\"b070601c-7985-4a1c-b71a-9f72bb5dbc59\",\"pandascore_id\":null,\"yahoo_id\":23979,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Longview (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"trentwilliams\",\"birth_date\":\"1988-07-19\",\"espn_id\":13241},\"4908\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keim\",\"depth_chart_position\":null,\"player_id\":\"4908\",\"birth_city\":null,\"fantasy_data_id\":19810,\"years_exp\":0,\"hashtag\":\"#SteveKeim-NFL-FA-0\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":9517,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Steve Keim\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Keim\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"stevekeim\",\"birth_date\":null,\"espn_id\":null},\"96\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023459\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606341602022,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rodgers\",\"depth_chart_position\":\"QB\",\"player_id\":\"96\",\"birth_city\":null,\"fantasy_data_id\":2593,\"years_exp\":15,\"hashtag\":\"#AaronRodgers-NFL-GB-12\",\"search_first_name\":\"aaron\",\"rotowire_id\":4307,\"rotoworld_id\":3118,\"active\":true,\"search_rank\":87,\"age\":36,\"full_name\":\"Aaron Rodgers\",\"sportradar_id\":\"0ce48193-e2fa-466e-a986-33f751add206\",\"pandascore_id\":null,\"yahoo_id\":7200,\"last_name\":\"Rodgers\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Pleasant Valley (CA)\",\"depth_chart_order\":1,\"stats_id\":213957,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aaronrodgers\",\"birth_date\":\"1983-12-02\",\"espn_id\":8439},\"1507\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030064\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603735537766,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bostic\",\"depth_chart_position\":\"MLB\",\"player_id\":\"1507\",\"birth_city\":null,\"fantasy_data_id\":15113,\"years_exp\":7,\"hashtag\":\"#JonBostic-NFL-WAS-53\",\"search_first_name\":\"jon\",\"rotowire_id\":8696,\"rotoworld_id\":8501,\"active\":true,\"search_rank\":731,\"age\":29,\"full_name\":\"Jon Bostic\",\"sportradar_id\":\"a76abacb-2309-477c-b075-ec05ccf938ae\",\"pandascore_id\":null,\"yahoo_id\":26673,\"last_name\":\"Bostic\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Palm Beach Central (FL)\",\"depth_chart_order\":1,\"stats_id\":495460,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jonbostic\",\"birth_date\":\"1991-05-05\",\"espn_id\":15827},\"2271\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030770\",\"first_name\":\"Brock\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1552606514227,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coyle\",\"depth_chart_position\":null,\"player_id\":\"2271\",\"birth_city\":null,\"fantasy_data_id\":16682,\"years_exp\":6,\"hashtag\":\"#BrockCoyle-NFL-FA-50\",\"search_first_name\":\"brock\",\"rotowire_id\":9946,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brock Coyle\",\"sportradar_id\":\"b1f8c22c-e516-4fdc-9ecd-d2bd1e9a1f36\",\"pandascore_id\":null,\"yahoo_id\":27801,\"last_name\":\"Coyle\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Bozeman (MT)\",\"depth_chart_order\":null,\"stats_id\":518247,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brockcoyle\",\"birth_date\":\"1990-10-12\",\"espn_id\":16983},\"6997\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaquille\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606355704463,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"quarterman\",\"depth_chart_position\":null,\"player_id\":\"6997\",\"birth_city\":null,\"fantasy_data_id\":21974,\"years_exp\":0,\"hashtag\":\"#ShaquilleQuarterman-NFL-JAX-50\",\"search_first_name\":\"shaquille\",\"rotowire_id\":14747,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1860,\"age\":23,\"full_name\":\"Shaquille Quarterman\",\"sportradar_id\":\"dd7218be-5eaa-4d51-94f8-a9f68d2f0af9\",\"pandascore_id\":null,\"yahoo_id\":32810,\"last_name\":\"Quarterman\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Oakleaf (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"shaquillequarterman\",\"birth_date\":\"1997-10-28\",\"espn_id\":4037468},\"5715\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034699\",\"first_name\":\"R.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"prince\",\"depth_chart_position\":null,\"player_id\":\"5715\",\"birth_city\":null,\"fantasy_data_id\":20643,\"years_exp\":2,\"hashtag\":\"#RJPrince-NFL-BAL-61\",\"search_first_name\":\"rj\",\"rotowire_id\":13336,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"R.J. Prince\",\"sportradar_id\":\"47999e1e-b526-4ab5-bd4f-5f5cac53a62a\",\"pandascore_id\":null,\"yahoo_id\":31699,\"last_name\":\"Prince\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Albemarle (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rjprince\",\"birth_date\":\"1995-04-19\",\"espn_id\":3039713},\"5610\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034495\",\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604622909210,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"5610\",\"birth_city\":null,\"fantasy_data_id\":20554,\"years_exp\":2,\"hashtag\":\"#EvanBrown-NFL-CLE-63\",\"search_first_name\":\"evan\",\"rotowire_id\":13272,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Evan Brown\",\"sportradar_id\":\"8fde3481-68c2-43c4-a9d4-de73f0a259e3\",\"pandascore_id\":null,\"yahoo_id\":31547,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Southlake Carroll (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"evanbrown\",\"birth_date\":\"1996-09-16\",\"espn_id\":3128412},\"1964\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031028\",\"first_name\":\"Ulrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571281856836,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"john\",\"depth_chart_position\":null,\"player_id\":\"1964\",\"birth_city\":null,\"fantasy_data_id\":16225,\"years_exp\":6,\"hashtag\":\"#UlrickJohn-NFL-FA-65\",\"search_first_name\":\"ulrick\",\"rotowire_id\":9783,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ulrick John\",\"sportradar_id\":\"433a368a-b67c-4c84-ac59-5addd32bb36a\",\"pandascore_id\":null,\"yahoo_id\":27760,\"last_name\":\"John\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"Bradwell Institute (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ulrickjohn\",\"birth_date\":\"1992-05-20\",\"espn_id\":16894},\"5091\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034274\",\"first_name\":\"Parry\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603241740636,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"nickerson\",\"depth_chart_position\":null,\"player_id\":\"5091\",\"birth_city\":null,\"fantasy_data_id\":19994,\"years_exp\":2,\"hashtag\":\"#ParryNickerson-NFL-GB-35\",\"search_first_name\":\"parry\",\"rotowire_id\":12958,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1385,\"age\":26,\"full_name\":\"Parry Nickerson\",\"sportradar_id\":\"2177026c-2b34-4b88-bc88-50d7c9962064\",\"pandascore_id\":null,\"yahoo_id\":31149,\"last_name\":\"Nickerson\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"West Jefferson (LA)\",\"depth_chart_order\":null,\"stats_id\":729559,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"parrynickerson\",\"birth_date\":\"1994-10-11\",\"espn_id\":3041098},\"1686\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030294\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601413546107,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":\"SS\",\"player_id\":\"1686\",\"birth_city\":null,\"fantasy_data_id\":15516,\"years_exp\":7,\"hashtag\":\"#TonyJefferson-NFL-FA-23\",\"search_first_name\":\"tony\",\"rotowire_id\":8688,\"rotoworld_id\":8653,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tony Jefferson\",\"sportradar_id\":\"7690ab6a-2ae0-4449-abd5-74ec54403f2e\",\"pandascore_id\":null,\"yahoo_id\":27081,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Eastlake (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tonyjefferson\",\"birth_date\":\"1992-01-27\",\"espn_id\":16195},\"6761\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Urban\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meyer\",\"depth_chart_position\":null,\"player_id\":\"6761\",\"birth_city\":null,\"fantasy_data_id\":21706,\"years_exp\":0,\"hashtag\":\"#UrbanMeyer-NFL-FA-0\",\"search_first_name\":\"urban\",\"rotowire_id\":null,\"rotoworld_id\":10322,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Urban Meyer\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Meyer\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"urbanmeyer\",\"birth_date\":null,\"espn_id\":null},\"2121\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031189\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1570493156558,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"2121\",\"birth_city\":null,\"fantasy_data_id\":16456,\"years_exp\":6,\"hashtag\":\"#TJJones-NFL-FA-80\",\"search_first_name\":\"tj\",\"rotowire_id\":9463,\"rotoworld_id\":9419,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"T.J. Jones\",\"sportradar_id\":\"40958157-617f-40b4-91e5-9895f66da29c\",\"pandascore_id\":null,\"yahoo_id\":27717,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Gainesville (GA)\",\"depth_chart_order\":null,\"stats_id\":544025,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tjjones\",\"birth_date\":\"1992-07-19\",\"espn_id\":16880},\"2354\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031936\",\"first_name\":\"Mitch\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606490104048,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"morse\",\"depth_chart_position\":\"C\",\"player_id\":\"2354\",\"birth_city\":null,\"fantasy_data_id\":16810,\"years_exp\":5,\"hashtag\":\"#MitchMorse-NFL-BUF-60\",\"search_first_name\":\"mitch\",\"rotowire_id\":10273,\"rotoworld_id\":10477,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mitch Morse\",\"sportradar_id\":\"49c9f374-118a-4207-8030-dcdaf938dac5\",\"pandascore_id\":null,\"yahoo_id\":28437,\"last_name\":\"Morse\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"St. Michael's Academy (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mitchmorse\",\"birth_date\":\"1992-04-21\",\"espn_id\":2514122},\"4010\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dom\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"capers\",\"depth_chart_position\":null,\"player_id\":\"4010\",\"birth_city\":null,\"fantasy_data_id\":18849,\"years_exp\":0,\"hashtag\":\"#DomCapers-NFL-FA-0\",\"search_first_name\":\"dom\",\"rotowire_id\":null,\"rotoworld_id\":9493,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dom Capers\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Capers\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"domcapers\",\"birth_date\":null,\"espn_id\":null},\"3411\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lomax\",\"depth_chart_position\":null,\"player_id\":\"3411\",\"birth_city\":null,\"fantasy_data_id\":18172,\"years_exp\":0,\"hashtag\":\"#JordanLomax-NFL-FA-37\",\"search_first_name\":\"jordan\",\"rotowire_id\":11115,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jordan Lomax\",\"sportradar_id\":\"0c5f2092-570d-4c28-9d32-efe809406276\",\"pandascore_id\":null,\"yahoo_id\":29725,\"last_name\":\"Lomax\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jordanlomax\",\"birth_date\":\"1993-10-13\",\"espn_id\":2582431},\"6583\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035555\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moon\",\"depth_chart_position\":null,\"player_id\":\"6583\",\"birth_city\":null,\"fantasy_data_id\":21554,\"years_exp\":1,\"hashtag\":\"#JoshuaMoon-NFL-FA-39\",\"search_first_name\":\"joshua\",\"rotowire_id\":14244,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Joshua Moon\",\"sportradar_id\":\"d21096bc-ed34-4b82-9129-a5b08d51a827\",\"pandascore_id\":null,\"yahoo_id\":32567,\"last_name\":\"Moon\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshuamoon\",\"birth_date\":\"1997-05-18\",\"espn_id\":3917203},\"3557\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032769\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604801410710,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LCB\",\"player_id\":\"3557\",\"birth_city\":null,\"fantasy_data_id\":18330,\"years_exp\":4,\"hashtag\":\"#BrandonWilliams-NFL-NYG-28\",\"search_first_name\":\"brandon\",\"rotowire_id\":10901,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1060,\"age\":28,\"full_name\":\"Brandon Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29326,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":653767,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonwilliams\",\"birth_date\":\"1992-09-09\",\"espn_id\":2972286},\"4924\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"terrell\",\"depth_chart_position\":null,\"player_id\":\"4924\",\"birth_city\":null,\"fantasy_data_id\":19211,\"years_exp\":1,\"hashtag\":\"#ZachTerrell-NFL-BAL-0\",\"search_first_name\":\"zach\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Zach Terrell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30509,\"last_name\":\"Terrell\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652366,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zachterrell\",\"birth_date\":\"1993-05-01\",\"espn_id\":null},\"6726\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lawrence\",\"depth_chart_position\":null,\"player_id\":\"6726\",\"birth_city\":null,\"fantasy_data_id\":21649,\"years_exp\":1,\"hashtag\":\"#PatrickLawrence-NFL-FA-69\",\"search_first_name\":\"patrick\",\"rotowire_id\":14338,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Patrick Lawrence\",\"sportradar_id\":\"6ae77aa9-f5aa-404c-97ad-181117ab5596\",\"pandascore_id\":null,\"yahoo_id\":32638,\"last_name\":\"Lawrence\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'6\\\"\",\"search_full_name\":\"patricklawrence\",\"birth_date\":null,\"espn_id\":3128353},\"3009\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533167105503,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hickey\",\"depth_chart_position\":null,\"player_id\":\"3009\",\"birth_city\":null,\"fantasy_data_id\":17551,\"years_exp\":5,\"hashtag\":\"#SeanHickey-NFL-FA-0\",\"search_first_name\":\"sean\",\"rotowire_id\":10845,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Sean Hickey\",\"sportradar_id\":\"12ec45c8-ce72-4640-84d7-ae7ddf39d53b\",\"pandascore_id\":null,\"yahoo_id\":28758,\"last_name\":\"Hickey\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"seanhickey\",\"birth_date\":\"1991-09-29\",\"espn_id\":2515253},\"378\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcafee\",\"depth_chart_position\":null,\"player_id\":\"378\",\"birth_city\":null,\"fantasy_data_id\":8618,\"years_exp\":11,\"hashtag\":\"#PatMcAfee-NFL-FA-1\",\"search_first_name\":\"pat\",\"rotowire_id\":6135,\"rotoworld_id\":5432,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Pat McAfee\",\"sportradar_id\":\"25e04595-13ab-4913-90db-1111db830e84\",\"pandascore_id\":null,\"yahoo_id\":9486,\"last_name\":\"McAfee\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Plum (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"patmcafee\",\"birth_date\":\"1987-05-02\",\"espn_id\":12689},\"2135\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031333\",\"first_name\":\"Ha Ha\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599179453510,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clintondix\",\"depth_chart_position\":\"SS\",\"player_id\":\"2135\",\"birth_city\":null,\"fantasy_data_id\":16473,\"years_exp\":6,\"hashtag\":\"#HaHaClintonDix-NFL-FA-27\",\"search_first_name\":\"haha\",\"rotowire_id\":9288,\"rotoworld_id\":9437,\"active\":true,\"search_rank\":827,\"age\":27,\"full_name\":\"Ha Ha Clinton-Dix\",\"sportradar_id\":\"977e4e40-c596-43c3-a5a9-2141f6590b89\",\"pandascore_id\":null,\"yahoo_id\":27549,\"last_name\":\"Clinton-Dix\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Dr. Phillips (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"hahaclintondix\",\"birth_date\":\"1992-12-21\",\"espn_id\":16735},\"6161\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035546\",\"first_name\":\"LJ\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1557968110365,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"6161\",\"birth_city\":null,\"fantasy_data_id\":20937,\"years_exp\":1,\"hashtag\":\"#LJScott-NFL-CLE-22\",\"search_first_name\":\"lj\",\"rotowire_id\":13443,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"LJ Scott\",\"sportradar_id\":\"ce185a29-d0ff-4519-9133-e01c691ead57\",\"pandascore_id\":null,\"yahoo_id\":32569,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ljscott\",\"birth_date\":\"1996-09-15\",\"espn_id\":3929828},\"6722\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dave\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"deguglielmo\",\"depth_chart_position\":null,\"player_id\":\"6722\",\"birth_city\":null,\"fantasy_data_id\":21645,\"years_exp\":0,\"hashtag\":\"#DaveDeguglielmo-NFL-FA-0\",\"search_first_name\":\"dave\",\"rotowire_id\":null,\"rotoworld_id\":11256,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dave Deguglielmo\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Deguglielmo\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"davedeguglielmo\",\"birth_date\":null,\"espn_id\":null},\"7012\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mykal\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606071619596,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"LB\",\"player_id\":\"7012\",\"birth_city\":null,\"fantasy_data_id\":21989,\"years_exp\":0,\"hashtag\":\"#MykalWalker-NFL-ATL-43\",\"search_first_name\":\"mykal\",\"rotowire_id\":14754,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1870,\"age\":23,\"full_name\":\"Mykal Walker\",\"sportradar_id\":\"86d7dd69-9957-4853-b069-5ad7e35edc64\",\"pandascore_id\":null,\"yahoo_id\":32789,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Vacaville (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mykalwalker\",\"birth_date\":\"1997-08-28\",\"espn_id\":4243009},\"2416\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tre'\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"2416\",\"birth_city\":null,\"fantasy_data_id\":16872,\"years_exp\":5,\"hashtag\":\"#TreJackson-NFL-FA-63\",\"search_first_name\":\"tre\",\"rotowire_id\":10268,\"rotoworld_id\":10501,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tre' Jackson\",\"sportradar_id\":\"d49e554f-4cf8-4166-ab50-324459961f4e\",\"pandascore_id\":null,\"yahoo_id\":28499,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Wayne County\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"trejackson\",\"birth_date\":\"1992-12-14\",\"espn_id\":2576792},\"1238\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028845\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1543968958516,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"1238\",\"birth_city\":null,\"fantasy_data_id\":14567,\"years_exp\":8,\"hashtag\":\"#JoshHarris-NFL-ATL-47\",\"search_first_name\":\"josh\",\"rotowire_id\":8553,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Josh Harris\",\"sportradar_id\":\"8bbd5520-52e9-4187-889f-bd4552622869\",\"pandascore_id\":null,\"yahoo_id\":26168,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Carrollton (GA)\",\"depth_chart_order\":null,\"stats_id\":500656,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshharris\",\"birth_date\":\"1989-04-27\",\"espn_id\":15151},\"7062\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rodrigo\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606153813553,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blankenship\",\"depth_chart_position\":\"K\",\"player_id\":\"7062\",\"birth_city\":null,\"fantasy_data_id\":22112,\"years_exp\":0,\"hashtag\":\"#RodrigoBlankenship-NFL-IND-3\",\"search_first_name\":\"rodrigo\",\"rotowire_id\":14437,\"rotoworld_id\":null,\"active\":true,\"search_rank\":408,\"age\":23,\"full_name\":\"Rodrigo Blankenship\",\"sportradar_id\":\"c8bbff7b-3b6e-413f-8945-24c01bfd84c5\",\"pandascore_id\":null,\"yahoo_id\":33211,\"last_name\":\"Blankenship\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Sprayberry (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rodrigoblankenship\",\"birth_date\":\"1997-01-29\",\"espn_id\":3915165},\"2930\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tukes\",\"depth_chart_position\":null,\"player_id\":\"2930\",\"birth_city\":null,\"fantasy_data_id\":17399,\"years_exp\":0,\"hashtag\":\"#JustinTukes-NFL-FA-82\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Justin Tukes\",\"sportradar_id\":\"8986dbf6-500f-4bd6-bab5-5b00d4f25164\",\"pandascore_id\":null,\"yahoo_id\":28659,\"last_name\":\"Tukes\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591550,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justintukes\",\"birth_date\":null,\"espn_id\":null},\"899\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028660\",\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606154113687,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":\"K\",\"player_id\":\"899\",\"birth_city\":null,\"fantasy_data_id\":13109,\"years_exp\":9,\"hashtag\":\"#DanBailey-NFL-MIN-5\",\"search_first_name\":\"dan\",\"rotowire_id\":7546,\"rotoworld_id\":7144,\"active\":true,\"search_rank\":169,\"age\":32,\"full_name\":\"Dan Bailey\",\"sportradar_id\":\"beb64618-614c-49f7-a3aa-c0c75b7839ea\",\"pandascore_id\":null,\"yahoo_id\":25427,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Southwest Covenant (OK)\",\"depth_chart_order\":1,\"stats_id\":333899,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"danbailey\",\"birth_date\":\"1988-01-26\",\"espn_id\":14322},\"5389\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knott\",\"depth_chart_position\":null,\"player_id\":\"5389\",\"birth_city\":null,\"fantasy_data_id\":20362,\"years_exp\":2,\"hashtag\":\"#AlanKnott-NFL-FA-63\",\"search_first_name\":\"alan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alan Knott\",\"sportradar_id\":\"7b23de39-cbf9-45f7-a331-e809bff2ba53\",\"pandascore_id\":null,\"yahoo_id\":31331,\"last_name\":\"Knott\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alanknott\",\"birth_date\":\"1994-12-16\",\"espn_id\":3048908},\"5090\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034275\",\"first_name\":\"Folorunso\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fatukasi\",\"depth_chart_position\":\"DT\",\"player_id\":\"5090\",\"birth_city\":null,\"fantasy_data_id\":19993,\"years_exp\":2,\"hashtag\":\"#FolorunsoFatukasi-NFL-NYJ-94\",\"search_first_name\":\"folorunso\",\"rotowire_id\":12670,\"rotoworld_id\":13284,\"active\":true,\"search_rank\":1384,\"age\":25,\"full_name\":\"Folorunso Fatukasi\",\"sportradar_id\":\"acc3f3fc-12b7-40b6-b773-b73b2b10cf32\",\"pandascore_id\":null,\"yahoo_id\":31150,\"last_name\":\"Fatukasi\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Beach Channel (NY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"folorunsofatukasi\",\"birth_date\":\"1995-03-04\",\"espn_id\":3045172},\"14\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sidney\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rice\",\"depth_chart_position\":null,\"player_id\":\"14\",\"birth_city\":null,\"fantasy_data_id\":459,\"years_exp\":7,\"hashtag\":\"#SidneyRice-NFL-FA-18\",\"search_first_name\":\"sidney\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Sidney Rice\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rice\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sidneyrice\",\"birth_date\":\"1986-09-01\",\"espn_id\":null},\"4139\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033937\",\"first_name\":\"Amara\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603746038608,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"darboh\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4139\",\"birth_city\":null,\"fantasy_data_id\":18985,\"years_exp\":3,\"hashtag\":\"#AmaraDarboh-NFL-PIT-82\",\"search_first_name\":\"amara\",\"rotowire_id\":11852,\"rotoworld_id\":null,\"active\":true,\"search_rank\":433,\"age\":26,\"full_name\":\"Amara Darboh\",\"sportradar_id\":\"91aac0f7-60ed-4333-8aee-15bd56764464\",\"pandascore_id\":null,\"yahoo_id\":30219,\"last_name\":\"Darboh\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Michigan\",\"high_school\":\"Dowling Catholic (IA)\",\"depth_chart_order\":1,\"stats_id\":696125,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'2\\\"\",\"search_full_name\":\"amaradarboh\",\"birth_date\":\"1994-02-01\",\"espn_id\":2977629},\"6430\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035076\",\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605064503055,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bolton\",\"depth_chart_position\":null,\"player_id\":\"6430\",\"birth_city\":null,\"fantasy_data_id\":21478,\"years_exp\":1,\"hashtag\":\"#CurtisBolton-NFL-HOU-40\",\"search_first_name\":\"curtis\",\"rotowire_id\":14103,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1743,\"age\":24,\"full_name\":\"Curtis Bolton\",\"sportradar_id\":\"dd62d18d-3438-408f-8b53-a68399bd4a04\",\"pandascore_id\":null,\"yahoo_id\":32266,\"last_name\":\"Bolton\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Vista Murrieta (CA)\",\"depth_chart_order\":null,\"stats_id\":820700,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'0\\\"\",\"search_full_name\":\"curtisbolton\",\"birth_date\":\"1995-12-18\",\"espn_id\":3116367},\"1411\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030524\",\"first_name\":\"Landry\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1565908512157,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1411\",\"birth_city\":null,\"fantasy_data_id\":14971,\"years_exp\":7,\"hashtag\":\"#LandryJones-NFL-FA-2\",\"search_first_name\":\"landry\",\"rotowire_id\":8748,\"rotoworld_id\":7446,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Landry Jones\",\"sportradar_id\":\"d4dd3d0b-5023-415d-ad15-94f294c561b1\",\"pandascore_id\":null,\"yahoo_id\":26738,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Artesia (NM)\",\"depth_chart_order\":null,\"stats_id\":447742,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"landryjones\",\"birth_date\":\"1989-04-04\",\"espn_id\":15904},\"4140\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033926\",\"first_name\":\"Shaquill\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606432260179,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4140\",\"birth_city\":null,\"fantasy_data_id\":18986,\"years_exp\":3,\"hashtag\":\"#ShaquillGriffin-NFL-SEA-26\",\"search_first_name\":\"shaquill\",\"rotowire_id\":12015,\"rotoworld_id\":12321,\"active\":true,\"search_rank\":1168,\"age\":25,\"full_name\":\"Shaquill Griffin\",\"sportradar_id\":\"dd7640e6-d81d-4605-b900-451bf40e5bd6\",\"pandascore_id\":null,\"yahoo_id\":30203,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Lakewood (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaquillgriffin\",\"birth_date\":\"1995-07-20\",\"espn_id\":3054026},\"6734\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"costigan\",\"depth_chart_position\":null,\"player_id\":\"6734\",\"birth_city\":null,\"fantasy_data_id\":21656,\"years_exp\":1,\"hashtag\":\"#ThomasCostigan-NFL-FA-73\",\"search_first_name\":\"thomas\",\"rotowire_id\":14343,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Thomas Costigan\",\"sportradar_id\":\"e879e902-59b5-4de3-a751-82c7d73460bb\",\"pandascore_id\":null,\"yahoo_id\":32646,\"last_name\":\"Costigan\",\"metadata\":null,\"college\":\"Bryant\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"thomascostigan\",\"birth_date\":null,\"espn_id\":3910923},\"1539\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029792\",\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600275005411,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"worrilow\",\"depth_chart_position\":null,\"player_id\":\"1539\",\"birth_city\":null,\"fantasy_data_id\":15176,\"years_exp\":7,\"hashtag\":\"#PaulWorrilow-NFL-NYJ-40\",\"search_first_name\":\"paul\",\"rotowire_id\":9044,\"rotoworld_id\":8840,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Paul Worrilow\",\"sportradar_id\":\"fe1eeca3-7ad7-4bc2-9c55-b5662818642c\",\"pandascore_id\":null,\"yahoo_id\":27040,\"last_name\":\"Worrilow\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Concord (DE)\",\"depth_chart_order\":null,\"stats_id\":507354,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"paulworrilow\",\"birth_date\":\"1990-05-01\",\"espn_id\":16243},\"996\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028092\",\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606527929564,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"sherman\",\"depth_chart_position\":null,\"player_id\":\"996\",\"birth_city\":null,\"fantasy_data_id\":13479,\"years_exp\":9,\"hashtag\":\"#RichardSherman-NFL-SF-25\",\"search_first_name\":\"richard\",\"rotowire_id\":7600,\"rotoworld_id\":6660,\"active\":true,\"search_rank\":649,\"age\":32,\"full_name\":\"Richard Sherman\",\"sportradar_id\":\"29ac0dbd-2d1c-40da-88ba-36f0d3856d05\",\"pandascore_id\":null,\"yahoo_id\":24941,\"last_name\":\"Sherman\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Dominguez (CA)\",\"depth_chart_order\":null,\"stats_id\":332735,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"richardsherman\",\"birth_date\":\"1988-03-30\",\"espn_id\":14086},\"4690\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ken\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ekanem\",\"depth_chart_position\":null,\"player_id\":\"4690\",\"birth_city\":null,\"fantasy_data_id\":19592,\"years_exp\":2,\"hashtag\":\"#KenEkanem-NFL-FA-66\",\"search_first_name\":\"ken\",\"rotowire_id\":11913,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ken Ekanem\",\"sportradar_id\":\"89b1ec38-beb4-4d3e-a3d0-f800e6bbdf4e\",\"pandascore_id\":null,\"yahoo_id\":30849,\"last_name\":\"Ekanem\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kenekanem\",\"birth_date\":\"1994-04-08\",\"espn_id\":2970091},\"4838\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"albrecht\",\"depth_chart_position\":null,\"player_id\":\"4838\",\"birth_city\":null,\"fantasy_data_id\":19741,\"years_exp\":0,\"hashtag\":\"#AustinAlbrecht-NFL-TB-72\",\"search_first_name\":\"austin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Albrecht\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30946,\"last_name\":\"Albrecht\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"austinalbrecht\",\"birth_date\":\"1993-05-06\",\"espn_id\":2971823},\"4405\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1523030101292,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kidder\",\"depth_chart_position\":null,\"player_id\":\"4405\",\"birth_city\":null,\"fantasy_data_id\":19265,\"years_exp\":2,\"hashtag\":\"#CalebKidder-NFL-FA-64\",\"search_first_name\":\"caleb\",\"rotowire_id\":12394,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Caleb Kidder\",\"sportradar_id\":\"a5030df2-6769-4ceb-a379-6a3f2674ee5d\",\"pandascore_id\":null,\"yahoo_id\":30434,\"last_name\":\"Kidder\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"calebkidder\",\"birth_date\":\"1994-02-04\",\"espn_id\":2982936},\"4807\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"estes\",\"depth_chart_position\":null,\"player_id\":\"4807\",\"birth_city\":null,\"fantasy_data_id\":19721,\"years_exp\":2,\"hashtag\":\"#MikeEstes-NFL-FA-49\",\"search_first_name\":\"mike\",\"rotowire_id\":12343,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mike Estes\",\"sportradar_id\":\"23be43cc-b33a-4e13-9761-b5f646957dc6\",\"pandascore_id\":null,\"yahoo_id\":30928,\"last_name\":\"Estes\",\"metadata\":null,\"college\":\"Gardner Webb\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":700921,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikeestes\",\"birth_date\":\"1994-01-29\",\"espn_id\":2987239},\"5981\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035667\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gaines\",\"depth_chart_position\":\"NT\",\"player_id\":\"5981\",\"birth_city\":null,\"fantasy_data_id\":20764,\"years_exp\":1,\"hashtag\":\"#GregGaines-NFL-LAR-91\",\"search_first_name\":\"greg\",\"rotowire_id\":13802,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1532,\"age\":24,\"full_name\":\"Greg Gaines\",\"sportradar_id\":\"724c3e97-bd2a-4d48-850e-352829e51708\",\"pandascore_id\":null,\"yahoo_id\":31966,\"last_name\":\"Gaines\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"La Habra (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'1\\\"\",\"search_full_name\":\"greggaines\",\"birth_date\":\"1996-05-06\",\"espn_id\":3127294},\"901\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0027978\",\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1549924802647,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"901\",\"birth_city\":null,\"fantasy_data_id\":13112,\"years_exp\":9,\"hashtag\":\"#BruceCarter-NFL-FA-55\",\"search_first_name\":\"bruce\",\"rotowire_id\":7477,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Bruce Carter\",\"sportradar_id\":\"6fbd5f30-db84-4c38-98ea-69631bdbc53f\",\"pandascore_id\":null,\"yahoo_id\":24827,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Havelock (NC)\",\"depth_chart_order\":null,\"stats_id\":323334,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brucecarter\",\"birth_date\":\"1988-02-19\",\"espn_id\":14026},\"4912\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"4912\",\"birth_city\":null,\"fantasy_data_id\":18871,\"years_exp\":1,\"hashtag\":\"#AJHughes-NFL-PIT-0\",\"search_first_name\":\"aj\",\"rotowire_id\":11748,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"AJ Hughes\",\"sportradar_id\":\"06c0d2b3-078f-46f9-86b7-fa5dfe038b75\",\"pandascore_id\":null,\"yahoo_id\":30090,\"last_name\":\"Hughes\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ajhughes\",\"birth_date\":\"1993-12-07\",\"espn_id\":null},\"7455\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605554719121,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hurst\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7455\",\"birth_city\":null,\"fantasy_data_id\":22433,\"years_exp\":0,\"hashtag\":\"#JohnHurst-NFL-LAC-6\",\"search_first_name\":\"john\",\"rotowire_id\":14877,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"John Hurst\",\"sportradar_id\":\"e4edfc2e-c6f7-42fc-b8b1-8e5282457000\",\"pandascore_id\":null,\"yahoo_id\":33295,\"last_name\":\"Hurst\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":\"Cambridge (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnhurst\",\"birth_date\":\"1996-11-02\",\"espn_id\":4683123},\"3506\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032650\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1542777332034,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"malleck\",\"depth_chart_position\":null,\"player_id\":\"3506\",\"birth_city\":null,\"fantasy_data_id\":18272,\"years_exp\":4,\"hashtag\":\"#RyanMalleck-NFL-FA-82\",\"search_first_name\":\"ryan\",\"rotowire_id\":11124,\"rotoworld_id\":11545,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan Malleck\",\"sportradar_id\":\"0b6d4047-2c3d-4727-8cd9-0ec66178c7a7\",\"pandascore_id\":null,\"yahoo_id\":29857,\"last_name\":\"Malleck\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":601609,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanmalleck\",\"birth_date\":\"1993-07-22\",\"espn_id\":2577892},\"5072\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034809\",\"first_name\":\"Jamil\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544664655028,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"demby\",\"depth_chart_position\":null,\"player_id\":\"5072\",\"birth_city\":null,\"fantasy_data_id\":19984,\"years_exp\":2,\"hashtag\":\"#JamilDemby-NFL-LAR-64\",\"search_first_name\":\"jamil\",\"rotowire_id\":12890,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jamil Demby\",\"sportradar_id\":\"5fb654f3-cc56-42ab-842a-5eb8c3cf8999\",\"pandascore_id\":null,\"yahoo_id\":31162,\"last_name\":\"Demby\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":\"Vineland (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jamildemby\",\"birth_date\":\"1996-06-20\",\"espn_id\":3120552},\"6948\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leki\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605410161978,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fotu\",\"depth_chart_position\":null,\"player_id\":\"6948\",\"birth_city\":null,\"fantasy_data_id\":22083,\"years_exp\":0,\"hashtag\":\"#LekiFotu-NFL-ARI-95\",\"search_first_name\":\"leki\",\"rotowire_id\":14712,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1913,\"age\":22,\"full_name\":\"Leki Fotu\",\"sportradar_id\":\"2040899a-0b04-4de7-900b-f9e6861c6150\",\"pandascore_id\":null,\"yahoo_id\":32784,\"last_name\":\"Fotu\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Herriman (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lekifotu\",\"birth_date\":\"1998-08-23\",\"espn_id\":4035666},\"3337\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032428\",\"first_name\":\"Tyrone\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1554780012285,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":null,\"player_id\":\"3337\",\"birth_city\":null,\"fantasy_data_id\":18098,\"years_exp\":4,\"hashtag\":\"#TyroneHolmes-NFL-FA-50\",\"search_first_name\":\"tyrone\",\"rotowire_id\":11226,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tyrone Holmes\",\"sportradar_id\":\"87daa971-0ff3-4186-b225-81d4661c89b3\",\"pandascore_id\":null,\"yahoo_id\":29415,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":699133,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tyroneholmes\",\"birth_date\":\"1993-09-10\",\"espn_id\":2982949},\"1893\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030781\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605142507886,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hopkins\",\"depth_chart_position\":\"C\",\"player_id\":\"1893\",\"birth_city\":null,\"fantasy_data_id\":16113,\"years_exp\":6,\"hashtag\":\"#TreyHopkins-NFL-CIN-66\",\"search_first_name\":\"trey\",\"rotowire_id\":9961,\"rotoworld_id\":9987,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Trey Hopkins\",\"sportradar_id\":\"78abb68f-453d-4992-901a-a5b1121e680d\",\"pandascore_id\":null,\"yahoo_id\":28023,\"last_name\":\"Hopkins\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"treyhopkins\",\"birth_date\":\"1992-07-06\",\"espn_id\":17172},\"994\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"994\",\"birth_city\":null,\"fantasy_data_id\":13474,\"years_exp\":9,\"hashtag\":\"#MichaelMorgan-NFL-FA-51\",\"search_first_name\":\"michael\",\"rotowire_id\":7814,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Michael Morgan\",\"sportradar_id\":\"c4e604ea-cea1-4cde-bdb0-e95a747db0ee\",\"pandascore_id\":null,\"yahoo_id\":25096,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Skyline (TX)\",\"depth_chart_order\":null,\"stats_id\":322838,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaelmorgan\",\"birth_date\":\"1988-01-16\",\"espn_id\":14292},\"2608\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1577143258219,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wynn\",\"depth_chart_position\":null,\"player_id\":\"2608\",\"birth_city\":null,\"fantasy_data_id\":17076,\"years_exp\":1,\"hashtag\":\"#DylanWynn-NFL-FA-97\",\"search_first_name\":\"dylan\",\"rotowire_id\":10751,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dylan Wynn\",\"sportradar_id\":\"effc197e-e201-4cc5-9de4-4b0fda380a19\",\"pandascore_id\":null,\"yahoo_id\":28869,\"last_name\":\"Wynn\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dylanwynn\",\"birth_date\":\"1993-06-01\",\"espn_id\":2577029},\"4713\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"CJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robbins\",\"depth_chart_position\":null,\"player_id\":\"4713\",\"birth_city\":null,\"fantasy_data_id\":19620,\"years_exp\":2,\"hashtag\":\"#CJRobbins-NFL-FA-76\",\"search_first_name\":\"cj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"CJ Robbins\",\"sportradar_id\":\"888f9af2-776a-41bc-a051-ef914d30ec16\",\"pandascore_id\":null,\"yahoo_id\":30832,\"last_name\":\"Robbins\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cjrobbins\",\"birth_date\":\"1993-07-02\",\"espn_id\":2582099},\"1923\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaquille\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535065207874,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"1923\",\"birth_city\":null,\"fantasy_data_id\":16156,\"years_exp\":6,\"hashtag\":\"#ShaquilleRichardson-NFL-FA-39\",\"search_first_name\":\"shaquille\",\"rotowire_id\":9765,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Shaquille Richardson\",\"sportradar_id\":\"15d6cf0c-687e-4720-8636-8f3e676faa9c\",\"pandascore_id\":null,\"yahoo_id\":27685,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaquillerichardson\",\"birth_date\":\"1992-03-21\",\"espn_id\":16925},\"2948\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cottom\",\"depth_chart_position\":null,\"player_id\":\"2948\",\"birth_city\":null,\"fantasy_data_id\":17419,\"years_exp\":2,\"hashtag\":\"#BrandonCottom-NFL-FA-42\",\"search_first_name\":\"brandon\",\"rotowire_id\":10842,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Cottom\",\"sportradar_id\":\"dd897146-357c-45d4-8124-b742910d868a\",\"pandascore_id\":null,\"yahoo_id\":29110,\"last_name\":\"Cottom\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606492,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandoncottom\",\"birth_date\":\"1992-12-21\",\"espn_id\":2576403},\"2578\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"2578\",\"birth_city\":null,\"fantasy_data_id\":17043,\"years_exp\":0,\"hashtag\":\"#JohnHarris-NFL-FA-80\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"John Harris\",\"sportradar_id\":\"10653398-d1f8-4f13-9b35-6db4937a1e16\",\"pandascore_id\":null,\"yahoo_id\":28652,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555845,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnharris\",\"birth_date\":\"1991-11-11\",\"espn_id\":2514269},\"148\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"caldwell\",\"depth_chart_position\":null,\"player_id\":\"148\",\"birth_city\":null,\"fantasy_data_id\":3989,\"years_exp\":12,\"hashtag\":\"#AndreCaldwell-NFL-FA-17\",\"search_first_name\":\"andre\",\"rotowire_id\":5682,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Andre Caldwell\",\"sportradar_id\":\"fbcbda6b-3c05-4c8e-82f8-e5e851262a07\",\"pandascore_id\":null,\"yahoo_id\":8874,\"last_name\":\"Caldwell\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Thomas Jefferson (FL)\",\"depth_chart_order\":null,\"stats_id\":224994,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andrecaldwell\",\"birth_date\":\"1985-04-15\",\"espn_id\":11331},\"381\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrance\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knighton\",\"depth_chart_position\":null,\"player_id\":\"381\",\"birth_city\":null,\"fantasy_data_id\":8650,\"years_exp\":11,\"hashtag\":\"#TerranceKnighton-NFL-FA-96\",\"search_first_name\":\"terrance\",\"rotowire_id\":6902,\"rotoworld_id\":5320,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Terrance Knighton\",\"sportradar_id\":\"e84b685e-6b52-4214-b264-123ce0672021\",\"pandascore_id\":null,\"yahoo_id\":9336,\"last_name\":\"Knighton\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Windsor (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"354\",\"height\":\"6'3\\\"\",\"search_full_name\":\"terranceknighton\",\"birth_date\":\"1986-07-04\",\"espn_id\":12677},\"1472\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030572\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606264559088,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hayden\",\"depth_chart_position\":null,\"player_id\":\"1472\",\"birth_city\":null,\"fantasy_data_id\":15067,\"years_exp\":7,\"hashtag\":\"#DJHayden-NFL-JAX-25\",\"search_first_name\":\"dj\",\"rotowire_id\":8879,\"rotoworld_id\":8491,\"active\":true,\"search_rank\":726,\"age\":30,\"full_name\":\"D.J. Hayden\",\"sportradar_id\":\"5c4ec28a-5393-4073-a71d-df0dad8858c6\",\"pandascore_id\":null,\"yahoo_id\":26635,\"last_name\":\"Hayden\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Elkins (TX)\",\"depth_chart_order\":null,\"stats_id\":591520,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"djhayden\",\"birth_date\":\"1990-06-27\",\"espn_id\":15794},\"6655\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taj-Amir\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"torres\",\"depth_chart_position\":null,\"player_id\":\"6655\",\"birth_city\":null,\"fantasy_data_id\":21547,\"years_exp\":0,\"hashtag\":\"#TajAmirTorres-NFL-FA-0\",\"search_first_name\":\"tajamir\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Taj-Amir Torres\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Torres\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'8\\\"\",\"search_full_name\":\"tajamirtorres\",\"birth_date\":null,\"espn_id\":null},\"3521\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032714\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535770608261,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"balducci\",\"depth_chart_position\":null,\"player_id\":\"3521\",\"birth_city\":null,\"fantasy_data_id\":18287,\"years_exp\":4,\"hashtag\":\"#AlexBalducci-NFL-FA-60\",\"search_first_name\":\"alex\",\"rotowire_id\":11549,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alex Balducci\",\"sportradar_id\":\"4e31b011-050f-4024-8a7f-bbae9b01b216\",\"pandascore_id\":null,\"yahoo_id\":29762,\"last_name\":\"Balducci\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexbalducci\",\"birth_date\":\"1994-03-01\",\"espn_id\":2971279},\"669\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":null,\"player_id\":\"669\",\"birth_city\":null,\"fantasy_data_id\":11792,\"years_exp\":11,\"hashtag\":\"#ArianFoster-NFL-FA-29\",\"search_first_name\":\"arian\",\"rotowire_id\":6012,\"rotoworld_id\":5469,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Arian Foster\",\"sportradar_id\":\"d89d2aef-c383-4ddf-bed8-3761aed35b10\",\"pandascore_id\":null,\"yahoo_id\":9527,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Valley (NM)\",\"depth_chart_order\":null,\"stats_id\":266729,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'1\\\"\",\"search_full_name\":\"arianfoster\",\"birth_date\":\"1986-08-24\",\"espn_id\":12497},\"2385\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031563\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1545936014851,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"2385\",\"birth_city\":null,\"fantasy_data_id\":16841,\"years_exp\":5,\"hashtag\":\"#AlexCarter-NFL-FA-35\",\"search_first_name\":\"alex\",\"rotowire_id\":10417,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alex Carter\",\"sportradar_id\":\"b381794c-a1e3-4659-9ae6-766d3d943909\",\"pandascore_id\":null,\"yahoo_id\":28468,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690991,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alexcarter\",\"birth_date\":\"1994-10-19\",\"espn_id\":2978256},\"250\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spaeth\",\"depth_chart_position\":null,\"player_id\":\"250\",\"birth_city\":null,\"fantasy_data_id\":6293,\"years_exp\":13,\"hashtag\":\"#MattSpaeth-NFL-FA-89\",\"search_first_name\":\"matt\",\"rotowire_id\":5304,\"rotoworld_id\":4206,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Matt Spaeth\",\"sportradar_id\":\"0a40642d-f976-4077-9494-c627e28571de\",\"pandascore_id\":null,\"yahoo_id\":8331,\"last_name\":\"Spaeth\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"St. Michael-Albertville HS (MN)\",\"depth_chart_order\":null,\"stats_id\":215944,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattspaeth\",\"birth_date\":\"1983-11-24\",\"espn_id\":10521},\"2750\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031763\",\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605746145320,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2750\",\"birth_city\":null,\"fantasy_data_id\":17218,\"years_exp\":5,\"hashtag\":\"#DeAndreCarter-NFL-CHI-14\",\"search_first_name\":\"deandre\",\"rotowire_id\":10234,\"rotoworld_id\":10738,\"active\":true,\"search_rank\":381,\"age\":27,\"full_name\":\"DeAndre Carter\",\"sportradar_id\":\"9ae2584a-40c1-4b30-be34-a9567659eacd\",\"pandascore_id\":null,\"yahoo_id\":28947,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Sacramento State\",\"high_school\":\"Washington (CA)\",\"depth_chart_order\":3,\"stats_id\":612512,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'8\\\"\",\"search_full_name\":\"deandrecarter\",\"birth_date\":\"1993-04-10\",\"espn_id\":2580216},\"5429\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034080\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kolone\",\"depth_chart_position\":null,\"player_id\":\"5429\",\"birth_city\":null,\"fantasy_data_id\":20527,\"years_exp\":2,\"hashtag\":\"#JeremiahKolone-NFL-LAR-61\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":13413,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeremiah Kolone\",\"sportradar_id\":\"ff826814-d167-4337-a9a5-9d0ac09ccd6e\",\"pandascore_id\":null,\"yahoo_id\":31390,\"last_name\":\"Kolone\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Fallbrook Union (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremiahkolone\",\"birth_date\":\"1994-10-23\",\"espn_id\":3043198},\"2020\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031203\",\"first_name\":\"Cairo\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1605589221590,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"santos\",\"depth_chart_position\":\"K\",\"player_id\":\"2020\",\"birth_city\":null,\"fantasy_data_id\":16301,\"years_exp\":6,\"hashtag\":\"#CairoSantos-NFL-CHI-2\",\"search_first_name\":\"cairo\",\"rotowire_id\":9633,\"rotoworld_id\":10155,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Cairo Santos\",\"sportradar_id\":\"d96ff17c-841a-4768-8e08-3a4cfcb7f717\",\"pandascore_id\":null,\"yahoo_id\":28227,\"last_name\":\"Santos\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"St. Joseph's Academy (FL)\",\"depth_chart_order\":1,\"stats_id\":546669,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"160\",\"height\":\"5'8\\\"\",\"search_full_name\":\"cairosantos\",\"birth_date\":\"1991-11-12\",\"espn_id\":17427},\"655\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022084\",\"first_name\":\"Anquan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1521396601125,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boldin\",\"depth_chart_position\":null,\"player_id\":\"655\",\"birth_city\":null,\"fantasy_data_id\":11712,\"years_exp\":17,\"hashtag\":\"#AnquanBoldin-NFL-FA-81\",\"search_first_name\":\"anquan\",\"rotowire_id\":3074,\"rotoworld_id\":2078,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Anquan Boldin\",\"sportradar_id\":\"eb1d1304-1900-4587-ae06-75c77efd85a8\",\"pandascore_id\":null,\"yahoo_id\":6390,\"last_name\":\"Boldin\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Pahokee (FL)\",\"depth_chart_order\":null,\"stats_id\":184556,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anquanboldin\",\"birth_date\":\"1980-10-03\",\"espn_id\":4512},\"2306\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031503\",\"first_name\":\"Jameis\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605886861044,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"winston\",\"depth_chart_position\":\"QB\",\"player_id\":\"2306\",\"birth_city\":null,\"fantasy_data_id\":16762,\"years_exp\":5,\"hashtag\":\"#JameisWinston-NFL-NO-2\",\"search_first_name\":\"jameis\",\"rotowire_id\":10037,\"rotoworld_id\":9376,\"active\":true,\"search_rank\":355,\"age\":26,\"full_name\":\"Jameis Winston\",\"sportradar_id\":\"fb3b36fc-b985-4807-8199-d038d7e62a93\",\"pandascore_id\":null,\"yahoo_id\":28389,\"last_name\":\"Winston\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Hueytown (AL)\",\"depth_chart_order\":2,\"stats_id\":691536,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jameiswinston\",\"birth_date\":\"1994-01-06\",\"espn_id\":2969939},\"3838\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032933\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605747043604,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":\"CB\",\"player_id\":\"3838\",\"birth_city\":null,\"fantasy_data_id\":18658,\"years_exp\":4,\"hashtag\":\"#AntonioHamilton-NFL-KC-20\",\"search_first_name\":\"antonio\",\"rotowire_id\":11518,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1106,\"age\":27,\"full_name\":\"Antonio Hamilton\",\"sportradar_id\":\"9bc107dc-1920-49db-b009-436d1a77955d\",\"pandascore_id\":null,\"yahoo_id\":29957,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Strom Thurmond (SC)\",\"depth_chart_order\":2,\"stats_id\":786655,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"antoniohamilton\",\"birth_date\":\"1993-01-24\",\"espn_id\":3056354},\"3023\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031678\",\"first_name\":\"Damian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1573023318276,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"parms\",\"depth_chart_position\":null,\"player_id\":\"3023\",\"birth_city\":null,\"fantasy_data_id\":17673,\"years_exp\":5,\"hashtag\":\"#DamianParms-NFL-FA-0\",\"search_first_name\":\"damian\",\"rotowire_id\":11188,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Damian Parms\",\"sportradar_id\":\"4a859afc-0cdf-4d0f-b91d-da30e88cf58a\",\"pandascore_id\":null,\"yahoo_id\":28828,\"last_name\":\"Parms\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"damianparms\",\"birth_date\":\"1992-10-28\",\"espn_id\":2572986},\"3347\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032431\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604535028781,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rudock\",\"depth_chart_position\":\"QB\",\"player_id\":\"3347\",\"birth_city\":null,\"fantasy_data_id\":18108,\"years_exp\":4,\"hashtag\":\"#JakeRudock-NFL-MIA-5\",\"search_first_name\":\"jake\",\"rotowire_id\":11228,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1029,\"age\":27,\"full_name\":\"Jake Rudock\",\"sportradar_id\":\"bfd0c6e3-dc98-4280-bd6a-f82902c0f46b\",\"pandascore_id\":null,\"yahoo_id\":29425,\"last_name\":\"Rudock\",\"metadata\":{\"injury_override_regular_2020_1\":\"Active\"},\"college\":\"Michigan\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":5,\"stats_id\":611341,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jakerudock\",\"birth_date\":\"1993-01-21\",\"espn_id\":2582424},\"4738\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colby\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535129405952,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pearson\",\"depth_chart_position\":null,\"player_id\":\"4738\",\"birth_city\":null,\"fantasy_data_id\":19655,\"years_exp\":3,\"hashtag\":\"#ColbyPearson-NFL-FA-84\",\"search_first_name\":\"colby\",\"rotowire_id\":12473,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Colby Pearson\",\"sportradar_id\":\"421eb2de-5261-4d06-bb32-6135161bee71\",\"pandascore_id\":null,\"yahoo_id\":30886,\"last_name\":\"Pearson\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":750726,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"colbypearson\",\"birth_date\":\"1995-01-19\",\"espn_id\":3053805},\"5972\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"autry\",\"depth_chart_position\":null,\"player_id\":\"5972\",\"birth_city\":null,\"fantasy_data_id\":20745,\"years_exp\":0,\"hashtag\":\"#BJAutry-NFL-FA-0\",\"search_first_name\":\"bj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"B.J. Autry\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Autry\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"365\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bjautry\",\"birth_date\":null,\"espn_id\":null},\"318\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026142\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1558229422583,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":null,\"player_id\":\"318\",\"birth_city\":null,\"fantasy_data_id\":7802,\"years_exp\":12,\"hashtag\":\"#ChrisLong-NFL-FA-56\",\"search_first_name\":\"chris\",\"rotowire_id\":5608,\"rotoworld_id\":4707,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Chris Long\",\"sportradar_id\":\"2c9cbc74-9a26-4ccf-9552-c9fa99ef3663\",\"pandascore_id\":null,\"yahoo_id\":8779,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"St. Anne's-Belfield (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrislong\",\"birth_date\":\"1985-03-28\",\"espn_id\":11236},\"1363\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"buchanan\",\"depth_chart_position\":null,\"player_id\":\"1363\",\"birth_city\":null,\"fantasy_data_id\":14884,\"years_exp\":2,\"hashtag\":\"#MichaelBuchanan-NFL-FA-99\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Michael Buchanan\",\"sportradar_id\":\"d796c5e2-7237-4f9e-9933-806babe71556\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Buchanan\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelbuchanan\",\"birth_date\":\"1991-01-24\",\"espn_id\":15959},\"2829\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Al-Hajj\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shabazz\",\"depth_chart_position\":null,\"player_id\":\"2829\",\"birth_city\":null,\"fantasy_data_id\":17297,\"years_exp\":1,\"hashtag\":\"#AlHajjShabazz-NFL-FA-49\",\"search_first_name\":\"alhajj\",\"rotowire_id\":10860,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Al-Hajj Shabazz\",\"sportradar_id\":\"51e263f4-6703-4c77-ad5f-12bf4a465fea\",\"pandascore_id\":null,\"yahoo_id\":28747,\"last_name\":\"Shabazz\",\"metadata\":null,\"college\":\"West Chester\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alhajjshabazz\",\"birth_date\":\"1992-08-02\",\"espn_id\":2515208},\"6255\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035430\",\"first_name\":\"Bradford\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lemmons\",\"depth_chart_position\":null,\"player_id\":\"6255\",\"birth_city\":null,\"fantasy_data_id\":21188,\"years_exp\":1,\"hashtag\":\"#BradfordLemmons-NFL-FA-45\",\"search_first_name\":\"bradford\",\"rotowire_id\":14264,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Bradford Lemmons\",\"sportradar_id\":\"73cdb8ae-7e5b-4025-aee5-6891ed3500a1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lemmons\",\"metadata\":null,\"college\":\"Furman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bradfordlemmons\",\"birth_date\":\"1996-04-19\",\"espn_id\":3110509},\"617\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027882\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601862342557,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"RCB\",\"player_id\":\"617\",\"birth_city\":null,\"fantasy_data_id\":11493,\"years_exp\":10,\"hashtag\":\"#PatrickRobinson-NFL-NO-21\",\"search_first_name\":\"patrick\",\"rotowire_id\":6620,\"rotoworld_id\":5845,\"active\":true,\"search_rank\":614,\"age\":33,\"full_name\":\"Patrick Robinson\",\"sportradar_id\":\"24a847e7-8a4e-4123-967c-bd6145d9c3ec\",\"pandascore_id\":null,\"yahoo_id\":24007,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Gulliver Prep (FL)\",\"depth_chart_order\":2,\"stats_id\":323505,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"patrickrobinson\",\"birth_date\":\"1987-09-07\",\"espn_id\":13238},\"3152\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reid\",\"depth_chart_position\":null,\"player_id\":\"3152\",\"birth_city\":null,\"fantasy_data_id\":17908,\"years_exp\":0,\"hashtag\":\"#AndyReid-NFL-FA-0\",\"search_first_name\":\"andy\",\"rotowire_id\":null,\"rotoworld_id\":8350,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Andy Reid\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Reid\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"andyreid\",\"birth_date\":null,\"espn_id\":null},\"2066\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031402\",\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606528829602,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"RT\",\"player_id\":\"2066\",\"birth_city\":null,\"fantasy_data_id\":16369,\"years_exp\":6,\"hashtag\":\"#ZackMartin-NFL-DAL-70\",\"search_first_name\":\"zack\",\"rotowire_id\":9266,\"rotoworld_id\":9422,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Zack Martin\",\"sportradar_id\":\"5a001d28-b271-410a-8c91-3159a6096258\",\"pandascore_id\":null,\"yahoo_id\":27544,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Bishop Chatard (IN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"zackmartin\",\"birth_date\":\"1990-11-20\",\"espn_id\":16709},\"6123\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035638\",\"first_name\":\"Greedy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602521125348,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"6123\",\"birth_city\":null,\"fantasy_data_id\":20985,\"years_exp\":1,\"hashtag\":\"#GreedyWilliams-NFL-CLE-26\",\"search_first_name\":\"greedy\",\"rotowire_id\":13485,\"rotoworld_id\":13942,\"active\":true,\"search_rank\":1621,\"age\":22,\"full_name\":\"Greedy Williams\",\"sportradar_id\":\"54feeb01-a1d6-4313-b8b5-5663f698b5bd\",\"pandascore_id\":null,\"yahoo_id\":31878,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Calvary Baptist Academy (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'2\\\"\",\"search_full_name\":\"greedywilliams\",\"birth_date\":\"1997-12-03\",\"espn_id\":4035437},\"2000\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031354\",\"first_name\":\"Lamin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barrow\",\"depth_chart_position\":null,\"player_id\":\"2000\",\"birth_city\":null,\"fantasy_data_id\":16272,\"years_exp\":6,\"hashtag\":\"#LaminBarrow-NFL-FA-57\",\"search_first_name\":\"lamin\",\"rotowire_id\":9385,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Lamin Barrow\",\"sportradar_id\":\"61033955-2852-4620-a5ea-cc596a8f4e12\",\"pandascore_id\":null,\"yahoo_id\":27684,\"last_name\":\"Barrow\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"John Ehret (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"laminbarrow\",\"birth_date\":\"1990-11-27\",\"espn_id\":16852},\"1057\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ishmaa'ily\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kitchen\",\"depth_chart_position\":null,\"player_id\":\"1057\",\"birth_city\":null,\"fantasy_data_id\":13843,\"years_exp\":8,\"hashtag\":\"#IshmaailyKitchen-NFL-FA-66\",\"search_first_name\":\"ishmaaily\",\"rotowire_id\":8537,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ishmaa'ily Kitchen\",\"sportradar_id\":\"2843be0c-52cd-438f-aff1-930ba6fc5bb0\",\"pandascore_id\":null,\"yahoo_id\":26449,\"last_name\":\"Kitchen\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Cardinal Mooney (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ishmaailykitchen\",\"birth_date\":\"1988-08-24\",\"espn_id\":15508},\"307\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0019714\",\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1553956841552,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lechler\",\"depth_chart_position\":null,\"player_id\":\"307\",\"birth_city\":null,\"fantasy_data_id\":7606,\"years_exp\":20,\"hashtag\":\"#ShaneLechler-NFL-FA-9\",\"search_first_name\":\"shane\",\"rotowire_id\":7123,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":44,\"full_name\":\"Shane Lechler\",\"sportradar_id\":\"c4b15bec-4adf-444a-bda1-5a07ade70abf\",\"pandascore_id\":null,\"yahoo_id\":5171,\"last_name\":\"Lechler\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"East Bernard (TX)\",\"depth_chart_order\":null,\"stats_id\":25290,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shanelechler\",\"birth_date\":\"1976-08-07\",\"espn_id\":2273},\"4781\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033313\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535991425434,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"golden\",\"depth_chart_position\":\"SS\",\"player_id\":\"4781\",\"birth_city\":null,\"fantasy_data_id\":19324,\"years_exp\":3,\"hashtag\":\"#MalikGolden-NFL-FA-39\",\"search_first_name\":\"malik\",\"rotowire_id\":12135,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Malik Golden\",\"sportradar_id\":\"ec7bdd76-8299-484b-a84b-057474f17af6\",\"pandascore_id\":null,\"yahoo_id\":30557,\"last_name\":\"Golden\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"malikgolden\",\"birth_date\":\"1993-04-27\",\"espn_id\":2979584},\"5113\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034418\",\"first_name\":\"Cedrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606268455199,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5113\",\"birth_city\":null,\"fantasy_data_id\":20013,\"years_exp\":2,\"hashtag\":\"#CedrickWilson-NFL-DAL-11\",\"search_first_name\":\"cedrick\",\"rotowire_id\":12773,\"rotoworld_id\":null,\"active\":true,\"search_rank\":282,\"age\":25,\"full_name\":\"Cedrick Wilson\",\"sportradar_id\":\"a964f59b-af2b-48e1-b64d-c376cc1d8c28\",\"pandascore_id\":null,\"yahoo_id\":31178,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"White Station (TN)\",\"depth_chart_order\":2,\"stats_id\":912061,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cedrickwilson\",\"birth_date\":\"1995-11-20\",\"espn_id\":4036335},\"4646\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033719\",\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567217463278,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4646\",\"birth_city\":null,\"fantasy_data_id\":19541,\"years_exp\":3,\"hashtag\":\"#ShaneSmith-NFL-FA-44\",\"search_first_name\":\"shane\",\"rotowire_id\":12414,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Shane Smith\",\"sportradar_id\":\"7076d60f-8cba-41bf-a3ed-ee28af5e240a\",\"pandascore_id\":null,\"yahoo_id\":30739,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693143,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"shanesmith\",\"birth_date\":\"1993-08-21\",\"espn_id\":2981212},\"5045\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034348\",\"first_name\":\"Courtland\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1600732817811,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"sutton\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5045\",\"birth_city\":null,\"fantasy_data_id\":19800,\"years_exp\":2,\"hashtag\":\"#CourtlandSutton-NFL-DEN-14\",\"search_first_name\":\"courtland\",\"rotowire_id\":12586,\"rotoworld_id\":13129,\"active\":true,\"search_rank\":65,\"age\":25,\"full_name\":\"Courtland Sutton\",\"sportradar_id\":\"b55ae5ba-593f-4560-9cab-14e10698e01d\",\"pandascore_id\":null,\"yahoo_id\":31010,\"last_name\":\"Sutton\",\"metadata\":{\"injury_override_regular_2020_5\":\"IR\"},\"college\":\"Southern Methodist\",\"high_school\":\"Brenham (TX)\",\"depth_chart_order\":3,\"stats_id\":838878,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'4\\\"\",\"search_full_name\":\"courtlandsutton\",\"birth_date\":\"1995-10-10\",\"espn_id\":3128429},\"6785\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606342802939,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okudah\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6785\",\"birth_city\":null,\"fantasy_data_id\":22044,\"years_exp\":0,\"hashtag\":\"#JeffOkudah-NFL-DET-30\",\"search_first_name\":\"jeff\",\"rotowire_id\":14424,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1881,\"age\":21,\"full_name\":\"Jeff Okudah\",\"sportradar_id\":\"790ae305-a3ea-4a98-a13a-31dacadec04e\",\"pandascore_id\":null,\"yahoo_id\":32673,\"last_name\":\"Okudah\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"South Grand Prairie (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeffokudah\",\"birth_date\":\"1999-02-02\",\"espn_id\":4241984},\"3622\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032488\",\"first_name\":\"Mose\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1560380748838,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frazier\",\"depth_chart_position\":null,\"player_id\":\"3622\",\"birth_city\":null,\"fantasy_data_id\":18409,\"years_exp\":4,\"hashtag\":\"#MoseFrazier-NFL-FA-14\",\"search_first_name\":\"mose\",\"rotowire_id\":11387,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mose Frazier\",\"sportradar_id\":\"dd2a688f-343d-4ea7-9508-4640cdbc1b1e\",\"pandascore_id\":null,\"yahoo_id\":29618,\"last_name\":\"Frazier\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":615295,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mosefrazier\",\"birth_date\":\"1993-08-30\",\"espn_id\":2977874},\"1680\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tuggle\",\"depth_chart_position\":null,\"player_id\":\"1680\",\"birth_city\":null,\"fantasy_data_id\":15496,\"years_exp\":7,\"hashtag\":\"#JustinTuggle-NFL-FA-52\",\"search_first_name\":\"justin\",\"rotowire_id\":9043,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Justin Tuggle\",\"sportradar_id\":\"e1e368ee-8941-4e04-9cce-6c3c81822b5c\",\"pandascore_id\":null,\"yahoo_id\":27330,\"last_name\":\"Tuggle\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Northview (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justintuggle\",\"birth_date\":\"1990-01-04\",\"espn_id\":16114},\"4770\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":null,\"player_id\":\"4770\",\"birth_city\":null,\"fantasy_data_id\":19687,\"years_exp\":7,\"hashtag\":\"#TrevorGraham-NFL-FA-87\",\"search_first_name\":\"trevor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Trevor Graham\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"trevorgraham\",\"birth_date\":\"1989-07-27\",\"espn_id\":null},\"98\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"98\",\"birth_city\":null,\"fantasy_data_id\":2640,\"years_exp\":6,\"hashtag\":\"#FredDavis-NFL-FA-83\",\"search_first_name\":\"fred\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Fred Davis\",\"sportradar_id\":\"675c0338-159b-403b-8d62-39356e193519\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":245777,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'3\\\"\",\"search_full_name\":\"freddavis\",\"birth_date\":\"1986-01-15\",\"espn_id\":null},\"247\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Harry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1516122601376,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"douglas\",\"depth_chart_position\":null,\"player_id\":\"247\",\"birth_city\":null,\"fantasy_data_id\":6211,\"years_exp\":12,\"hashtag\":\"#HarryDouglas-NFL-FA-83\",\"search_first_name\":\"harry\",\"rotowire_id\":5699,\"rotoworld_id\":4863,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Harry Douglas\",\"sportradar_id\":\"e4ba7c28-6942-411e-a528-1dc1a8a8ccc7\",\"pandascore_id\":null,\"yahoo_id\":8861,\"last_name\":\"Douglas\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Jonesboro (GA)\",\"depth_chart_order\":null,\"stats_id\":229493,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"harrydouglas\",\"birth_date\":\"1984-09-16\",\"espn_id\":11318},\"1243\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029146\",\"first_name\":\"J.R.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605407461044,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sweezy\",\"depth_chart_position\":\"RG\",\"player_id\":\"1243\",\"birth_city\":null,\"fantasy_data_id\":14585,\"years_exp\":8,\"hashtag\":\"#JRSweezy-NFL-ARI-64\",\"search_first_name\":\"jr\",\"rotowire_id\":8364,\"rotoworld_id\":7666,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"J.R. Sweezy\",\"sportradar_id\":\"be62bf39-c737-416f-a1ea-6b9d61684a62\",\"pandascore_id\":null,\"yahoo_id\":25935,\"last_name\":\"Sweezy\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Mooresville (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jrsweezy\",\"birth_date\":\"1989-04-08\",\"espn_id\":15025},\"5073\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034810\",\"first_name\":\"Sebastian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604327726858,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"josephday\",\"depth_chart_position\":\"NT\",\"player_id\":\"5073\",\"birth_city\":null,\"fantasy_data_id\":19985,\"years_exp\":2,\"hashtag\":\"#SebastianJosephDay-NFL-LAR-69\",\"search_first_name\":\"sebastian\",\"rotowire_id\":12993,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1379,\"age\":25,\"full_name\":\"Sebastian Joseph-Day\",\"sportradar_id\":\"21c60b9f-98f3-4b6f-8911-89aba2622347\",\"pandascore_id\":null,\"yahoo_id\":31165,\"last_name\":\"Joseph-Day\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Stroudsburg (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sebastianjosephday\",\"birth_date\":\"1995-03-21\",\"espn_id\":3047495},\"7127\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaun\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587850842518,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradley\",\"depth_chart_position\":\"MLB\",\"player_id\":\"7127\",\"birth_city\":null,\"fantasy_data_id\":21914,\"years_exp\":0,\"hashtag\":\"#ShaunBradley-NFL-PHI-54\",\"search_first_name\":\"shaun\",\"rotowire_id\":14737,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1835,\"age\":23,\"full_name\":\"Shaun Bradley\",\"sportradar_id\":\"a004c949-7097-4faf-bac9-0edc5b1b2b67\",\"pandascore_id\":null,\"yahoo_id\":32866,\"last_name\":\"Bradley\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Rancocas Valley (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"shaunbradley\",\"birth_date\":\"1997-04-08\",\"espn_id\":4038902},\"5880\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035639\",\"first_name\":\"Parris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601327711336,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5880\",\"birth_city\":null,\"fantasy_data_id\":21005,\"years_exp\":1,\"hashtag\":\"#ParrisCampbell-NFL-IND-15\",\"search_first_name\":\"parris\",\"rotowire_id\":13525,\"rotoworld_id\":14056,\"active\":true,\"search_rank\":165,\"age\":23,\"full_name\":\"Parris Campbell\",\"sportradar_id\":\"db0c3b1c-8d18-435a-864a-cdd696f963b6\",\"pandascore_id\":null,\"yahoo_id\":31891,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Vincent–St. Mary (OH)\",\"depth_chart_order\":3,\"stats_id\":836104,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"parriscampbell\",\"birth_date\":\"1997-07-16\",\"espn_id\":3121410},\"6736\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6736\",\"birth_city\":null,\"fantasy_data_id\":21657,\"years_exp\":11,\"hashtag\":\"#SeanSmith-NFL-FA-21\",\"search_first_name\":\"sean\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Sean Smith\",\"sportradar_id\":\"97125472-443a-4b1f-8ab7-6da50bd314de\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Blair (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"seansmith\",\"birth_date\":\"1987-07-14\",\"espn_id\":null},\"5467\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034875\",\"first_name\":\"Tigie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1546447523300,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sankoh\",\"depth_chart_position\":null,\"player_id\":\"5467\",\"birth_city\":null,\"fantasy_data_id\":20535,\"years_exp\":2,\"hashtag\":\"#TigieSankoh-NFL-FA-33\",\"search_first_name\":\"tigie\",\"rotowire_id\":13305,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tigie Sankoh\",\"sportradar_id\":\"64cd627b-77b5-4502-8612-3fc3fa724426\",\"pandascore_id\":null,\"yahoo_id\":31363,\"last_name\":\"Sankoh\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tigiesankoh\",\"birth_date\":\"1997-11-04\",\"espn_id\":4339173},\"3687\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"3687\",\"birth_city\":null,\"fantasy_data_id\":18487,\"years_exp\":3,\"hashtag\":\"#RyanBrown-NFL-FA-76\",\"search_first_name\":\"ryan\",\"rotowire_id\":11350,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Brown\",\"sportradar_id\":\"9e034ab5-1920-4583-b2ec-95bccac9340e\",\"pandascore_id\":null,\"yahoo_id\":29699,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ryanbrown\",\"birth_date\":\"1994-06-10\",\"espn_id\":2971381},\"2372\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032255\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604710546908,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cann\",\"depth_chart_position\":\"RG\",\"player_id\":\"2372\",\"birth_city\":null,\"fantasy_data_id\":16828,\"years_exp\":5,\"hashtag\":\"#AJCann-NFL-JAX-60\",\"search_first_name\":\"aj\",\"rotowire_id\":10267,\"rotoworld_id\":10466,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"A.J. Cann\",\"sportradar_id\":\"56657521-aabb-4c6b-a6d1-9b809e6495b6\",\"pandascore_id\":null,\"yahoo_id\":28455,\"last_name\":\"Cann\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Bamberg-Ehrhardt (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ajcann\",\"birth_date\":\"1991-10-23\",\"espn_id\":2516325},\"6742\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquis\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":\"RB\",\"player_id\":\"6742\",\"birth_city\":null,\"fantasy_data_id\":21345,\"years_exp\":1,\"hashtag\":\"#MarquisYoung-NFL-FA-40\",\"search_first_name\":\"marquis\",\"rotowire_id\":13672,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marquis Young\",\"sportradar_id\":\"3faaca60-7fef-467f-9d6e-9694b14fc502\",\"pandascore_id\":null,\"yahoo_id\":32652,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":869591,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marquisyoung\",\"birth_date\":null,\"espn_id\":3914324},\"1360\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dallas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"1360\",\"birth_city\":null,\"fantasy_data_id\":14879,\"years_exp\":7,\"hashtag\":\"#DallasThomas-NFL-FA-63\",\"search_first_name\":\"dallas\",\"rotowire_id\":8732,\"rotoworld_id\":8514,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Dallas Thomas\",\"sportradar_id\":\"a8a0f86e-84c0-4a26-9991-f3d83d6bba98\",\"pandascore_id\":null,\"yahoo_id\":26700,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Scotlandville (LA)\",\"depth_chart_order\":null,\"stats_id\":513952,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dallasthomas\",\"birth_date\":\"1989-10-30\",\"espn_id\":15868},\"3918\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"TJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thorpe\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3918\",\"birth_city\":null,\"fantasy_data_id\":18745,\"years_exp\":0,\"hashtag\":\"#TJThorpe-NFL-FA-6\",\"search_first_name\":\"tj\",\"rotowire_id\":11612,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"TJ Thorpe\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30046,\"last_name\":\"Thorpe\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":592504,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tjthorpe\",\"birth_date\":\"1993-05-26\",\"espn_id\":2577114},\"2638\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"2638\",\"birth_city\":null,\"fantasy_data_id\":17106,\"years_exp\":1,\"hashtag\":\"#ReggieBell-NFL-FA-11\",\"search_first_name\":\"reggie\",\"rotowire_id\":10786,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Reggie Bell\",\"sportradar_id\":\"3ed3ecd2-0502-4d6e-b9c6-f2b21072ff24\",\"pandascore_id\":null,\"yahoo_id\":28855,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":561948,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'11\\\"\",\"search_full_name\":\"reggiebell\",\"birth_date\":\"1992-05-06\",\"espn_id\":2520767},\"1252\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pendleton\",\"depth_chart_position\":null,\"player_id\":\"1252\",\"birth_city\":null,\"fantasy_data_id\":14626,\"years_exp\":3,\"hashtag\":\"#JerisPendleton-NFL-FA-61\",\"search_first_name\":\"jeris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jeris Pendleton\",\"sportradar_id\":\"a919a918-1112-40ae-bc2c-ef035fb594ef\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pendleton\",\"metadata\":null,\"college\":\"Ashland - OH\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jerispendleton\",\"birth_date\":\"1983-11-07\",\"espn_id\":15114},\"7471\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598493943704,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reeseii\",\"depth_chart_position\":null,\"player_id\":\"7471\",\"birth_city\":null,\"fantasy_data_id\":22446,\"years_exp\":0,\"hashtag\":\"#DavidReeseII-NFL-FA-0\",\"search_first_name\":\"david\",\"rotowire_id\":14972,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2007,\"age\":22,\"full_name\":\"David Reese II\",\"sportradar_id\":\"b77bfbd3-22c8-4bcb-8fca-3c1cd7fd4709\",\"pandascore_id\":null,\"yahoo_id\":33150,\"last_name\":\"Reese II\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidreeseii\",\"birth_date\":\"1997-12-16\",\"espn_id\":4034956},\"5423\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034571\",\"first_name\":\"Trenton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603470653606,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"RT\",\"player_id\":\"5423\",\"birth_city\":null,\"fantasy_data_id\":20065,\"years_exp\":2,\"hashtag\":\"#TrentonScott-NFL-CAR-73\",\"search_first_name\":\"trenton\",\"rotowire_id\":13059,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Trenton Scott\",\"sportradar_id\":\"de3c68c3-9c11-4c0c-82ef-bc0d536820c2\",\"pandascore_id\":null,\"yahoo_id\":31687,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Grambling\",\"high_school\":\"Lee (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"trentonscott\",\"birth_date\":\"1994-01-25\",\"espn_id\":3123303},\"2284\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2284\",\"birth_city\":null,\"fantasy_data_id\":16712,\"years_exp\":1,\"hashtag\":\"#FredWilliams-NFL-FA-83\",\"search_first_name\":\"fred\",\"rotowire_id\":9898,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Fred Williams\",\"sportradar_id\":\"2e06e63f-9161-4a69-814b-ff4787beec53\",\"pandascore_id\":null,\"yahoo_id\":27502,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"St. Cloud St\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":398486,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"fredwilliams\",\"birth_date\":\"1988-04-15\",\"espn_id\":16683},\"7201\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1595893229566,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vogel\",\"depth_chart_position\":null,\"player_id\":\"7201\",\"birth_city\":null,\"fantasy_data_id\":22203,\"years_exp\":0,\"hashtag\":\"#NickVogel-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":15108,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick Vogel\",\"sportradar_id\":\"b7bd3008-28d0-40c0-85ca-d2748879fda4\",\"pandascore_id\":null,\"yahoo_id\":33009,\"last_name\":\"Vogel\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"nickvogel\",\"birth_date\":\"1995-12-23\",\"espn_id\":null},\"2541\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032212\",\"first_name\":\"Dexter\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1536002800161,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"2541\",\"birth_city\":null,\"fantasy_data_id\":17001,\"years_exp\":5,\"hashtag\":\"#DexterMcDonald-NFL-FA-23\",\"search_first_name\":\"dexter\",\"rotowire_id\":10437,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dexter McDonald\",\"sportradar_id\":\"8796d7af-c72c-4a1e-9665-677afd849a52\",\"pandascore_id\":null,\"yahoo_id\":28630,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Rockhurst (MO)\",\"depth_chart_order\":null,\"stats_id\":555779,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dextermcdonald\",\"birth_date\":\"1991-11-30\",\"espn_id\":2513908},\"1017\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024030\",\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1586628360989,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1017\",\"birth_city\":null,\"fantasy_data_id\":13664,\"years_exp\":14,\"hashtag\":\"#TomJohnson-NFL-FA-96\",\"search_first_name\":\"tom\",\"rotowire_id\":9761,\"rotoworld_id\":6514,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Tom Johnson\",\"sportradar_id\":\"ee305db3-cdaf-4eb3-b950-7146d51eac34\",\"pandascore_id\":null,\"yahoo_id\":24778,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Moss Point (MS)\",\"depth_chart_order\":null,\"stats_id\":248299,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tomjohnson\",\"birth_date\":\"1984-08-30\",\"espn_id\":16695},\"6595\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035577\",\"first_name\":\"Devlin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599519905247,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hodges\",\"depth_chart_position\":\"QB\",\"player_id\":\"6595\",\"birth_city\":null,\"fantasy_data_id\":21562,\"years_exp\":1,\"hashtag\":\"#DevlinHodges-NFL-PIT-6\",\"search_first_name\":\"devlin\",\"rotowire_id\":13566,\"rotoworld_id\":14775,\"active\":true,\"search_rank\":576,\"age\":24,\"full_name\":\"Devlin Hodges\",\"sportradar_id\":\"a577ef90-17c3-4dbf-b6b8-e054f21a778d\",\"pandascore_id\":null,\"yahoo_id\":32581,\"last_name\":\"Hodges\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Samford\",\"high_school\":\"Mortimer-Jordan (AL)\",\"depth_chart_order\":4,\"stats_id\":837040,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"devlinhodges\",\"birth_date\":\"1996-04-12\",\"espn_id\":3127051},\"3146\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Swayze\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"waters\",\"depth_chart_position\":null,\"player_id\":\"3146\",\"birth_city\":null,\"fantasy_data_id\":17901,\"years_exp\":1,\"hashtag\":\"#SwayzeWaters-NFL-FA-6\",\"search_first_name\":\"swayze\",\"rotowire_id\":6248,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Swayze Waters\",\"sportradar_id\":\"78c200b1-fcc6-4263-a4cf-c54d6e7efaba\",\"pandascore_id\":null,\"yahoo_id\":24747,\"last_name\":\"Waters\",\"metadata\":null,\"college\":\"UAB\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":296438,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'11\\\"\",\"search_full_name\":\"swayzewaters\",\"birth_date\":\"1987-05-18\",\"espn_id\":13024},\"1069\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"prater\",\"depth_chart_position\":null,\"player_id\":\"1069\",\"birth_city\":null,\"fantasy_data_id\":13875,\"years_exp\":8,\"hashtag\":\"#ShaunPrater-NFL-FA-39\",\"search_first_name\":\"shaun\",\"rotowire_id\":8334,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Shaun Prater\",\"sportradar_id\":\"1a53e2f1-038c-4558-b031-0928b69d1077\",\"pandascore_id\":null,\"yahoo_id\":25866,\"last_name\":\"Prater\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Central (NE)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"shaunprater\",\"birth_date\":\"1989-10-27\",\"espn_id\":15048},\"2223\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031390\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1542137427757,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":null,\"player_id\":\"2223\",\"birth_city\":null,\"fantasy_data_id\":16609,\"years_exp\":6,\"hashtag\":\"#CharlesSims-NFL-FA-34\",\"search_first_name\":\"charles\",\"rotowire_id\":9519,\"rotoworld_id\":9425,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Charles Sims\",\"sportradar_id\":\"4cb511e9-4d43-413e-998c-2778cc7786fe\",\"pandascore_id\":null,\"yahoo_id\":27597,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Westbury (TX)\",\"depth_chart_order\":null,\"stats_id\":507746,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"charlessims\",\"birth_date\":\"1990-09-19\",\"espn_id\":16749},\"2193\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reaves\",\"depth_chart_position\":null,\"player_id\":\"2193\",\"birth_city\":null,\"fantasy_data_id\":16561,\"years_exp\":2,\"hashtag\":\"#DarrinReaves-NFL-FA-24\",\"search_first_name\":\"darrin\",\"rotowire_id\":9732,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darrin Reaves\",\"sportradar_id\":\"48788b09-274d-4ccd-8b2f-9e35ba952acd\",\"pandascore_id\":null,\"yahoo_id\":27943,\"last_name\":\"Reaves\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609947,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'7\\\"\",\"search_full_name\":\"darrinreaves\",\"birth_date\":\"1993-04-17\",\"espn_id\":17397},\"3540\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033003\",\"first_name\":\"Jamaal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515534301464,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"3540\",\"birth_city\":null,\"fantasy_data_id\":18307,\"years_exp\":4,\"hashtag\":\"#JamaalJones-NFL-FA-11\",\"search_first_name\":\"jamaal\",\"rotowire_id\":11638,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jamaal Jones\",\"sportradar_id\":\"8510cc18-dd3c-45fb-af59-567381b09df1\",\"pandascore_id\":null,\"yahoo_id\":29521,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608008,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jamaaljones\",\"birth_date\":\"1993-01-31\",\"espn_id\":3045565},\"428\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jasper\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brinkley\",\"depth_chart_position\":null,\"player_id\":\"428\",\"birth_city\":null,\"fantasy_data_id\":9070,\"years_exp\":11,\"hashtag\":\"#JasperBrinkley-NFL-FA-53\",\"search_first_name\":\"jasper\",\"rotowire_id\":6085,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jasper Brinkley\",\"sportradar_id\":\"80934497-b8fb-4287-8a81-5c0da30f58df\",\"pandascore_id\":null,\"yahoo_id\":9414,\"last_name\":\"Brinkley\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Thomson (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jasperbrinkley\",\"birth_date\":\"1985-07-12\",\"espn_id\":12451},\"962\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028022\",\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1563896717482,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":\"MLB\",\"player_id\":\"962\",\"birth_city\":null,\"fantasy_data_id\":13358,\"years_exp\":9,\"hashtag\":\"#MasonFoster-NFL-FA-54\",\"search_first_name\":\"mason\",\"rotowire_id\":7478,\"rotoworld_id\":6601,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mason Foster\",\"sportradar_id\":\"f9354bca-514d-4f8d-97b2-5c6ed471edff\",\"pandascore_id\":null,\"yahoo_id\":24871,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Seaside (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"masonfoster\",\"birth_date\":\"1989-03-01\",\"espn_id\":14023},\"652\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwight\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lowery\",\"depth_chart_position\":null,\"player_id\":\"652\",\"birth_city\":null,\"fantasy_data_id\":11700,\"years_exp\":12,\"hashtag\":\"#DwightLowery-NFL-FA-20\",\"search_first_name\":\"dwight\",\"rotowire_id\":6362,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Dwight Lowery\",\"sportradar_id\":\"f47c5503-ed7f-4d09-8bc2-6bcac572e5a9\",\"pandascore_id\":null,\"yahoo_id\":8890,\"last_name\":\"Lowery\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Soquel (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dwightlowery\",\"birth_date\":\"1986-01-23\",\"espn_id\":11347},\"4834\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"4834\",\"birth_city\":null,\"fantasy_data_id\":19737,\"years_exp\":2,\"hashtag\":\"#RodneyButler-NFL-FA-46\",\"search_first_name\":\"rodney\",\"rotowire_id\":12377,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rodney Butler\",\"sportradar_id\":\"c1e6281e-8f7c-4fe1-a1a5-b281a4fefaf9\",\"pandascore_id\":null,\"yahoo_id\":30944,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rodneybutler\",\"birth_date\":null,\"espn_id\":3053997},\"5051\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034356\",\"first_name\":\"Donte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606514128536,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5051\",\"birth_city\":null,\"fantasy_data_id\":19870,\"years_exp\":2,\"hashtag\":\"#DonteJackson-NFL-CAR-26\",\"search_first_name\":\"donte\",\"rotowire_id\":12610,\"rotoworld_id\":13144,\"active\":true,\"search_rank\":1310,\"age\":25,\"full_name\":\"Donte Jackson\",\"sportradar_id\":\"9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f\",\"pandascore_id\":null,\"yahoo_id\":31025,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Riverdale (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dontejackson\",\"birth_date\":\"1995-11-08\",\"espn_id\":3843769},\"5125\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034698\",\"first_name\":\"Damoun\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1549406105396,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"patterson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5125\",\"birth_city\":null,\"fantasy_data_id\":20049,\"years_exp\":2,\"hashtag\":\"#DamounPatterson-NFL-FA-17\",\"search_first_name\":\"damoun\",\"rotowire_id\":13020,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Damoun Patterson\",\"sportradar_id\":\"c8eaac0c-9d03-49f3-9188-ba9e856e3b49\",\"pandascore_id\":null,\"yahoo_id\":31701,\"last_name\":\"Patterson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":822636,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"damounpatterson\",\"birth_date\":\"1994-09-16\",\"espn_id\":3125383},\"1506\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030140\",\"first_name\":\"Tress\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1577469303047,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"way\",\"depth_chart_position\":null,\"player_id\":\"1506\",\"birth_city\":null,\"fantasy_data_id\":15112,\"years_exp\":7,\"hashtag\":\"#TressWay-NFL-WAS-5\",\"search_first_name\":\"tress\",\"rotowire_id\":9832,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tress Way\",\"sportradar_id\":\"55e1ecbd-96c5-456e-833b-9cd3f046f3fc\",\"pandascore_id\":null,\"yahoo_id\":26945,\"last_name\":\"Way\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Union (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tressway\",\"birth_date\":\"1990-04-18\",\"espn_id\":16166},\"3659\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032369\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599871217160,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lanier\",\"depth_chart_position\":null,\"player_id\":\"3659\",\"birth_city\":null,\"fantasy_data_id\":18453,\"years_exp\":4,\"hashtag\":\"#AnthonyLanier-NFL-NO-57\",\"search_first_name\":\"anthony\",\"rotowire_id\":11601,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Anthony Lanier\",\"sportradar_id\":\"a46c1936-c00e-405a-82c8-297ebc2a7535\",\"pandascore_id\":null,\"yahoo_id\":29696,\"last_name\":\"Lanier\",\"metadata\":null,\"college\":\"Alabama A&M\",\"high_school\":\"Jenkins (GA)\",\"depth_chart_order\":null,\"stats_id\":609331,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'6\\\"\",\"search_full_name\":\"anthonylanier\",\"birth_date\":\"1993-05-08\",\"espn_id\":2585962},\"2945\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lee\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":null,\"player_id\":\"2945\",\"birth_city\":null,\"fantasy_data_id\":17416,\"years_exp\":0,\"hashtag\":\"#LeeWard-NFL-FA-46\",\"search_first_name\":\"lee\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lee Ward\",\"sportradar_id\":\"cd77f5d4-b12f-4a6b-9db8-4f93e12d5959\",\"pandascore_id\":null,\"yahoo_id\":29033,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553108,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"leeward\",\"birth_date\":\"1991-11-07\",\"espn_id\":null},\"2311\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031933\",\"first_name\":\"Leonard\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604966430001,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"DT\",\"player_id\":\"2311\",\"birth_city\":null,\"fantasy_data_id\":16767,\"years_exp\":5,\"hashtag\":\"#LeonardWilliams-NFL-NYG-99\",\"search_first_name\":\"leonard\",\"rotowire_id\":10307,\"rotoworld_id\":10428,\"active\":true,\"search_rank\":850,\"age\":26,\"full_name\":\"Leonard Williams\",\"sportradar_id\":\"2b5152aa-cbcc-439c-b72a-ac7577c8422b\",\"pandascore_id\":null,\"yahoo_id\":28394,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Mainland (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'5\\\"\",\"search_full_name\":\"leonardwilliams\",\"birth_date\":\"1994-06-20\",\"espn_id\":2971622},\"2336\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032102\",\"first_name\":\"Stephone\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1575827432471,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anthony\",\"depth_chart_position\":null,\"player_id\":\"2336\",\"birth_city\":null,\"fantasy_data_id\":16792,\"years_exp\":5,\"hashtag\":\"#StephoneAnthony-NFL-ARI-58\",\"search_first_name\":\"stephone\",\"rotowire_id\":10355,\"rotoworld_id\":10455,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Stephone Anthony\",\"sportradar_id\":\"e2a4fca8-0482-442e-93f7-3cef0fb2358d\",\"pandascore_id\":null,\"yahoo_id\":28419,\"last_name\":\"Anthony\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Anson (NC)\",\"depth_chart_order\":null,\"stats_id\":602088,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stephoneanthony\",\"birth_date\":\"1992-07-28\",\"espn_id\":2576482},\"229\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0004091\",\"first_name\":\"Phil\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1564685119184,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dawson\",\"depth_chart_position\":null,\"player_id\":\"229\",\"birth_city\":null,\"fantasy_data_id\":5714,\"years_exp\":22,\"hashtag\":\"#PhilDawson-NFL-FA-4\",\"search_first_name\":\"phil\",\"rotowire_id\":994,\"rotoworld_id\":2631,\"active\":true,\"search_rank\":9999999,\"age\":45,\"full_name\":\"Phil Dawson\",\"sportradar_id\":\"e5247e5f-c4af-4a9b-8c7c-da75ef7fbf8d\",\"pandascore_id\":null,\"yahoo_id\":4269,\"last_name\":\"Dawson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Lake Highlands (TX)\",\"depth_chart_order\":null,\"stats_id\":24388,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"phildawson\",\"birth_date\":\"1975-01-23\",\"espn_id\":1440},\"1885\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031304\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1539129305470,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clarke\",\"depth_chart_position\":null,\"player_id\":\"1885\",\"birth_city\":null,\"fantasy_data_id\":16105,\"years_exp\":6,\"hashtag\":\"#WillClarke-NFL-NO-95\",\"search_first_name\":\"will\",\"rotowire_id\":9411,\"rotoworld_id\":null,\"active\":true,\"search_rank\":779,\"age\":29,\"full_name\":\"Will Clarke\",\"sportradar_id\":\"bbb3b4cf-0ba1-4d45-8650-9f8824d3781d\",\"pandascore_id\":null,\"yahoo_id\":27616,\"last_name\":\"Clarke\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Taylor Allderdice (PA)\",\"depth_chart_order\":null,\"stats_id\":513832,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"willclarke\",\"birth_date\":\"1991-05-04\",\"espn_id\":16758},\"3596\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kivon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cartwright\",\"depth_chart_position\":null,\"player_id\":\"3596\",\"birth_city\":null,\"fantasy_data_id\":18377,\"years_exp\":1,\"hashtag\":\"#KivonCartwright-NFL-FA-86\",\"search_first_name\":\"kivon\",\"rotowire_id\":11479,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kivon Cartwright\",\"sportradar_id\":\"ad883783-5142-4533-9c9c-9b3c374ec585\",\"pandascore_id\":null,\"yahoo_id\":29565,\"last_name\":\"Cartwright\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":541459,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kivoncartwright\",\"birth_date\":\"1992-03-03\",\"espn_id\":2514375},\"5068\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034349\",\"first_name\":\"Kerryon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606428360004,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RB\",\"player_id\":\"5068\",\"birth_city\":null,\"fantasy_data_id\":19822,\"years_exp\":2,\"hashtag\":\"#KerryonJohnson-NFL-DET-33\",\"search_first_name\":\"kerryon\",\"rotowire_id\":12525,\"rotoworld_id\":13156,\"active\":true,\"search_rank\":78,\"age\":23,\"full_name\":\"Kerryon Johnson\",\"sportradar_id\":\"6faa5a10-56b8-4dd0-b8de-0cf1378b6726\",\"pandascore_id\":null,\"yahoo_id\":31013,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Madison Academy (AL)\",\"depth_chart_order\":2,\"stats_id\":880548,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kerryonjohnson\",\"birth_date\":\"1997-06-30\",\"espn_id\":3916925},\"991\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028441\",\"first_name\":\"Jeron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534956615369,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"991\",\"birth_city\":null,\"fantasy_data_id\":13468,\"years_exp\":9,\"hashtag\":\"#JeronJohnson-NFL-FA-29\",\"search_first_name\":\"jeron\",\"rotowire_id\":7530,\"rotoworld_id\":6812,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jeron Johnson\",\"sportradar_id\":\"d58339ad-6ec1-41cd-98d7-964ac47d7225\",\"pandascore_id\":null,\"yahoo_id\":25091,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Dominguez (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jeronjohnson\",\"birth_date\":\"1988-06-12\",\"espn_id\":14274},\"7488\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hubbard\",\"depth_chart_position\":null,\"player_id\":\"7488\",\"birth_city\":null,\"fantasy_data_id\":22462,\"years_exp\":0,\"hashtag\":\"#JonathanHubbard-NFL-MIA-71\",\"search_first_name\":\"jonathan\",\"rotowire_id\":15026,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jonathan Hubbard\",\"sportradar_id\":\"3d861092-3d64-4663-bf91-aa1f15e4e3a6\",\"pandascore_id\":null,\"yahoo_id\":33237,\"last_name\":\"Hubbard\",\"metadata\":null,\"college\":\"Northwestern State, La.\",\"high_school\":\"Kilgore (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonathanhubbard\",\"birth_date\":\"1997-08-17\",\"espn_id\":3929752},\"4046\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033873\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606111510932,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mahomes\",\"depth_chart_position\":\"QB\",\"player_id\":\"4046\",\"birth_city\":null,\"fantasy_data_id\":18890,\"years_exp\":3,\"hashtag\":\"#PatrickMahomes-NFL-KC-15\",\"search_first_name\":\"patrick\",\"rotowire_id\":11839,\"rotoworld_id\":12142,\"active\":true,\"search_rank\":14,\"age\":25,\"full_name\":\"Patrick Mahomes\",\"sportradar_id\":\"11cad59d-90dd-449c-a839-dddaba4fe16c\",\"pandascore_id\":null,\"yahoo_id\":30123,\"last_name\":\"Mahomes\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Whitehouse (TX)\",\"depth_chart_order\":1,\"stats_id\":839031,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"patrickmahomes\",\"birth_date\":\"1995-09-17\",\"espn_id\":3139477},\"3846\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032945\",\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603751739244,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3846\",\"birth_city\":null,\"fantasy_data_id\":18666,\"years_exp\":4,\"hashtag\":\"#DukeWilliams-NFL-BUF-82\",\"search_first_name\":\"duke\",\"rotowire_id\":10945,\"rotoworld_id\":null,\"active\":true,\"search_rank\":319,\"age\":28,\"full_name\":\"Duke Williams\",\"sportradar_id\":\"55482edf-8604-4cf6-9a5c-d1124e22ac83\",\"pandascore_id\":null,\"yahoo_id\":29973,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Reserve (LA) East St. John\",\"depth_chart_order\":3,\"stats_id\":824249,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dukewilliams\",\"birth_date\":\"1992-05-13\",\"espn_id\":3115315},\"1182\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029285\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606233351785,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"norman\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1182\",\"birth_city\":null,\"fantasy_data_id\":14340,\"years_exp\":8,\"hashtag\":\"#JoshNorman-NFL-BUF-29\",\"search_first_name\":\"josh\",\"rotowire_id\":8174,\"rotoworld_id\":7593,\"active\":true,\"search_rank\":680,\"age\":32,\"full_name\":\"Josh Norman\",\"sportradar_id\":\"2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595\",\"pandascore_id\":null,\"yahoo_id\":25853,\"last_name\":\"Norman\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":\"Greenwood (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshnorman\",\"birth_date\":\"1987-12-15\",\"espn_id\":15124},\"565\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moeaki\",\"depth_chart_position\":null,\"player_id\":\"565\",\"birth_city\":null,\"fantasy_data_id\":11221,\"years_exp\":10,\"hashtag\":\"#TonyMoeaki-NFL-FA-49\",\"search_first_name\":\"tony\",\"rotowire_id\":6685,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Tony Moeaki\",\"sportradar_id\":\"26af6a44-e360-4356-9039-3ada7df0443c\",\"pandascore_id\":null,\"yahoo_id\":24068,\"last_name\":\"Moeaki\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Warrenville South (IL)\",\"depth_chart_order\":null,\"stats_id\":285116,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tonymoeaki\",\"birth_date\":\"1987-06-08\",\"espn_id\":13289},\"1950\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031039\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603929629528,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ferentz\",\"depth_chart_position\":\"C\",\"player_id\":\"1950\",\"birth_city\":null,\"fantasy_data_id\":16199,\"years_exp\":6,\"hashtag\":\"#JamesFerentz-NFL-NE-66\",\"search_first_name\":\"james\",\"rotowire_id\":10139,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"James Ferentz\",\"sportradar_id\":\"b57c9d4e-b06b-4281-98d8-1295684c2e55\",\"pandascore_id\":null,\"yahoo_id\":28195,\"last_name\":\"Ferentz\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Iowa\",\"high_school\":\"Iowa City (IA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesferentz\",\"birth_date\":\"1989-06-05\",\"espn_id\":17361},\"6346\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035195\",\"first_name\":\"Yurik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bethune\",\"depth_chart_position\":null,\"player_id\":\"6346\",\"birth_city\":null,\"fantasy_data_id\":21304,\"years_exp\":1,\"hashtag\":\"#YurikBethune-NFL-FA-52\",\"search_first_name\":\"yurik\",\"rotowire_id\":14024,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Yurik Bethune\",\"sportradar_id\":\"e6acf5b3-b599-4519-bff4-557a5a44430b\",\"pandascore_id\":null,\"yahoo_id\":32110,\"last_name\":\"Bethune\",\"metadata\":null,\"college\":\"Alabama A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"yurikbethune\",\"birth_date\":\"1997-04-05\",\"espn_id\":3928743},\"6401\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034927\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1584576325740,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rahming\",\"depth_chart_position\":null,\"player_id\":\"6401\",\"birth_city\":null,\"fantasy_data_id\":21399,\"years_exp\":1,\"hashtag\":\"#TJRahming-NFL-FA-0\",\"search_first_name\":\"tj\",\"rotowire_id\":14054,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"T.J. Rahming\",\"sportradar_id\":\"e0fda33c-b53d-46b2-bfd1-23bfc7086fe6\",\"pandascore_id\":null,\"yahoo_id\":32186,\"last_name\":\"Rahming\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":879988,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tjrahming\",\"birth_date\":\"1997-01-10\",\"espn_id\":3917787},\"2878\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fanor\",\"depth_chart_position\":null,\"player_id\":\"2878\",\"birth_city\":null,\"fantasy_data_id\":17346,\"years_exp\":1,\"hashtag\":\"#JeanFanor-NFL-FA-20\",\"search_first_name\":\"jean\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jean Fanor\",\"sportradar_id\":\"c1daa425-3449-4b99-99c2-2e075e7f98a1\",\"pandascore_id\":null,\"yahoo_id\":26112,\"last_name\":\"Fanor\",\"metadata\":null,\"college\":\"Bethune-Cookman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeanfanor\",\"birth_date\":\"1989-06-17\",\"espn_id\":15523},\"4101\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033913\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606058416303,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wormley\",\"depth_chart_position\":\"DE\",\"player_id\":\"4101\",\"birth_city\":null,\"fantasy_data_id\":18947,\"years_exp\":3,\"hashtag\":\"#ChrisWormley-NFL-PIT-95\",\"search_first_name\":\"chris\",\"rotowire_id\":11955,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1145,\"age\":27,\"full_name\":\"Chris Wormley\",\"sportradar_id\":\"9ea97d0c-6af7-46cd-a69f-b61a649e5a28\",\"pandascore_id\":null,\"yahoo_id\":30187,\"last_name\":\"Wormley\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Michigan\",\"high_school\":\"Whitmer (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chriswormley\",\"birth_date\":\"1993-10-25\",\"espn_id\":2977615},\"708\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027442\",\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1542319561298,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zombo\",\"depth_chart_position\":null,\"player_id\":\"708\",\"birth_city\":null,\"fantasy_data_id\":12195,\"years_exp\":10,\"hashtag\":\"#FrankZombo-NFL-FA-51\",\"search_first_name\":\"frank\",\"rotowire_id\":7021,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Frank Zombo\",\"sportradar_id\":\"7853d82d-7c4b-4275-8ade-f8b96dd89bf5\",\"pandascore_id\":null,\"yahoo_id\":24507,\"last_name\":\"Zombo\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Stevenson (MI)\",\"depth_chart_order\":null,\"stats_id\":287527,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'3\\\"\",\"search_full_name\":\"frankzombo\",\"birth_date\":\"1987-03-05\",\"espn_id\":13779},\"416\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1524851101160,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cutler\",\"depth_chart_position\":null,\"player_id\":\"416\",\"birth_city\":null,\"fantasy_data_id\":8972,\"years_exp\":14,\"hashtag\":\"#JayCutler-NFL-FA-6\",\"search_first_name\":\"jay\",\"rotowire_id\":4783,\"rotoworld_id\":3608,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Jay Cutler\",\"sportradar_id\":\"ecd3bc0f-04dd-4945-9454-3fc4722fa5a8\",\"pandascore_id\":null,\"yahoo_id\":7760,\"last_name\":\"Cutler\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Heritage Hills (IN)\",\"depth_chart_order\":null,\"stats_id\":158918,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jaycutler\",\"birth_date\":\"1983-04-29\",\"espn_id\":9597},\"265\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeAngelo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1526328002040,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"265\",\"birth_city\":null,\"fantasy_data_id\":6681,\"years_exp\":16,\"hashtag\":\"#DeAngeloHall-NFL-FA-23\",\"search_first_name\":\"deangelo\",\"rotowire_id\":3780,\"rotoworld_id\":2773,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"DeAngelo Hall\",\"sportradar_id\":\"5f7dbabc-4a86-45f5-9983-eea57e7ccb38\",\"pandascore_id\":null,\"yahoo_id\":6767,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Deep Creek (VA)\",\"depth_chart_order\":null,\"stats_id\":246058,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"deangelohall\",\"birth_date\":\"1983-11-19\",\"espn_id\":5533},\"6225\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035469\",\"first_name\":\"Kahzin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1576429819099,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6225\",\"birth_city\":null,\"fantasy_data_id\":21147,\"years_exp\":1,\"hashtag\":\"#KahzinDaniels-NFL-FA-0\",\"search_first_name\":\"kahzin\",\"rotowire_id\":13892,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1683,\"age\":24,\"full_name\":\"Kahzin Daniels\",\"sportradar_id\":\"d82636f8-8ec5-4be3-a61a-8b1947a880d3\",\"pandascore_id\":null,\"yahoo_id\":32477,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Charleston (WV)\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kahzindaniels\",\"birth_date\":\"1995-10-26\",\"espn_id\":4411196},\"2826\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031785\",\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603805752723,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2826\",\"birth_city\":null,\"fantasy_data_id\":17294,\"years_exp\":5,\"hashtag\":\"#TroyHill-NFL-LAR-22\",\"search_first_name\":\"troy\",\"rotowire_id\":10423,\"rotoworld_id\":10649,\"active\":true,\"search_rank\":932,\"age\":29,\"full_name\":\"Troy Hill\",\"sportradar_id\":\"5b9acfe7-f166-4a55-85f6-a654799b08dd\",\"pandascore_id\":null,\"yahoo_id\":28972,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"St. Bonaventure (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"troyhill\",\"birth_date\":\"1991-08-29\",\"espn_id\":2525933},\"6622\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035017\",\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1588028463094,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thieneman\",\"depth_chart_position\":null,\"player_id\":\"6622\",\"birth_city\":null,\"fantasy_data_id\":21453,\"years_exp\":1,\"hashtag\":\"#JacobThieneman-NFL-FA-0\",\"search_first_name\":\"jacob\",\"rotowire_id\":14084,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jacob Thieneman\",\"sportradar_id\":\"6077550f-2d44-41b4-956a-44fcb0482bb5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Thieneman\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jacobthieneman\",\"birth_date\":\"1996-02-29\",\"espn_id\":3918008},\"2107\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ego\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"2107\",\"birth_city\":null,\"fantasy_data_id\":16431,\"years_exp\":6,\"hashtag\":\"#EgoFerguson-NFL-FA-67\",\"search_first_name\":\"ego\",\"rotowire_id\":9358,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ego Ferguson\",\"sportradar_id\":\"47584d17-66f5-4e6b-a077-4b8e7234a733\",\"pandascore_id\":null,\"yahoo_id\":27579,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Hargrave Military Academy (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'2\\\"\",\"search_full_name\":\"egoferguson\",\"birth_date\":\"1991-09-22\",\"espn_id\":16778},\"5085\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034403\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597007451226,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sam\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"5085\",\"birth_city\":null,\"fantasy_data_id\":19990,\"years_exp\":2,\"hashtag\":\"#ChristianSam-NFL-FA-0\",\"search_first_name\":\"christian\",\"rotowire_id\":12587,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1382,\"age\":24,\"full_name\":\"Christian Sam\",\"sportradar_id\":\"021fddc1-4ba1-4bcb-9f40-347a0be8866a\",\"pandascore_id\":null,\"yahoo_id\":31147,\"last_name\":\"Sam\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":820618,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christiansam\",\"birth_date\":\"1996-06-07\",\"espn_id\":3128801},\"7405\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605649825447,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jacquet\",\"depth_chart_position\":\"RCB\",\"player_id\":\"7405\",\"birth_city\":null,\"fantasy_data_id\":22389,\"years_exp\":0,\"hashtag\":\"#MichaelJacquet-NFL-PHI-38\",\"search_first_name\":\"michael\",\"rotowire_id\":14875,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Michael Jacquet\",\"sportradar_id\":\"8dde622e-645e-4e89-85b1-a8aca7bdfd7e\",\"pandascore_id\":null,\"yahoo_id\":32964,\"last_name\":\"Jacquet\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Central (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaeljacquet\",\"birth_date\":\"1997-01-29\",\"espn_id\":3917576},\"ATL\":{\"team\":\"ATL\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"ATL\",\"last_name\":\"Falcons\",\"injury_status\":null,\"first_name\":\"Atlanta\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"5676\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034566\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"queiro\",\"depth_chart_position\":null,\"player_id\":\"5676\",\"birth_city\":null,\"fantasy_data_id\":20205,\"years_exp\":2,\"hashtag\":\"#KyleQueiro-NFL-FA-41\",\"search_first_name\":\"kyle\",\"rotowire_id\":13254,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyle Queiro\",\"sportradar_id\":\"3422e0da-2496-4e8c-b716-599b5782a567\",\"pandascore_id\":null,\"yahoo_id\":31292,\"last_name\":\"Queiro\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kylequeiro\",\"birth_date\":\"1994-12-18\",\"espn_id\":3045249},\"7294\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Amari\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"7294\",\"birth_city\":null,\"fantasy_data_id\":22290,\"years_exp\":0,\"hashtag\":\"#AmariHenderson-NFL-JAX-38\",\"search_first_name\":\"amari\",\"rotowire_id\":14955,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1971,\"age\":23,\"full_name\":\"Amari Henderson\",\"sportradar_id\":\"6a43da23-5843-4490-8927-bd6196fe2576\",\"pandascore_id\":null,\"yahoo_id\":33128,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Mallard Creek (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'1\\\"\",\"search_full_name\":\"amarihenderson\",\"birth_date\":\"1997-09-08\",\"espn_id\":3919541},\"2255\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031326\",\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557350729162,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ellington\",\"depth_chart_position\":null,\"player_id\":\"2255\",\"birth_city\":null,\"fantasy_data_id\":16664,\"years_exp\":6,\"hashtag\":\"#BruceEllington-NFL-FA-12\",\"search_first_name\":\"bruce\",\"rotowire_id\":9459,\"rotoworld_id\":9608,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bruce Ellington\",\"sportradar_id\":\"617435c6-4a3f-4689-ab15-44bd93b33615\",\"pandascore_id\":null,\"yahoo_id\":27634,\"last_name\":\"Ellington\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Berkeley (SC)\",\"depth_chart_order\":null,\"stats_id\":604917,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'9\\\"\",\"search_full_name\":\"bruceellington\",\"birth_date\":\"1991-08-22\",\"espn_id\":16946},\"3061\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lou\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1550777449246,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anarumo\",\"depth_chart_position\":null,\"player_id\":\"3061\",\"birth_city\":null,\"fantasy_data_id\":17794,\"years_exp\":0,\"hashtag\":\"#LouAnarumo-NFL-FA-0\",\"search_first_name\":\"lou\",\"rotowire_id\":null,\"rotoworld_id\":11199,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Lou Anarumo\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Anarumo\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"louanarumo\",\"birth_date\":null,\"espn_id\":null},\"3618\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schoettmer\",\"depth_chart_position\":null,\"player_id\":\"3618\",\"birth_city\":null,\"fantasy_data_id\":18405,\"years_exp\":0,\"hashtag\":\"#JeffSchoettmer-NFL-FA-51\",\"search_first_name\":\"jeff\",\"rotowire_id\":11510,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jeff Schoettmer\",\"sportradar_id\":\"0867f8c3-9bdd-469b-87fb-3ecef85e9e01\",\"pandascore_id\":null,\"yahoo_id\":29860,\"last_name\":\"Schoettmer\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeffschoettmer\",\"birth_date\":\"1993-07-08\",\"espn_id\":2586438},\"1709\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029731\",\"first_name\":\"Fozzy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1558657211946,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whittaker\",\"depth_chart_position\":null,\"player_id\":\"1709\",\"birth_city\":null,\"fantasy_data_id\":15616,\"years_exp\":7,\"hashtag\":\"#FozzyWhittaker-NFL-FA-43\",\"search_first_name\":\"fozzy\",\"rotowire_id\":8083,\"rotoworld_id\":8318,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Fozzy Whittaker\",\"sportradar_id\":\"44ac9500-8fd8-4512-a5af-d63bc00aea7f\",\"pandascore_id\":null,\"yahoo_id\":26596,\"last_name\":\"Whittaker\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Pearland (TX)\",\"depth_chart_order\":null,\"stats_id\":381216,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"fozzywhittaker\",\"birth_date\":\"1989-02-02\",\"espn_id\":15755},\"1219\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029638\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567195856174,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"floyd\",\"depth_chart_position\":null,\"player_id\":\"1219\",\"birth_city\":null,\"fantasy_data_id\":14478,\"years_exp\":8,\"hashtag\":\"#MichaelFloyd-NFL-FA-13\",\"search_first_name\":\"michael\",\"rotowire_id\":8054,\"rotoworld_id\":6759,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Michael Floyd\",\"sportradar_id\":\"471dbe81-54c4-4b52-8bd1-4933c9800e1f\",\"pandascore_id\":null,\"yahoo_id\":25723,\"last_name\":\"Floyd\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Cretin-Derham Hall (MN)\",\"depth_chart_order\":null,\"stats_id\":456619,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaelfloyd\",\"birth_date\":\"1989-11-27\",\"espn_id\":14908},\"240\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515992401827,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"240\",\"birth_city\":null,\"fantasy_data_id\":6029,\"years_exp\":13,\"hashtag\":\"#CalvinJohnson-NFL-FA-81\",\"search_first_name\":\"calvin\",\"rotowire_id\":5189,\"rotoworld_id\":4153,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Calvin Johnson\",\"sportradar_id\":\"2c56748d-6e13-495c-bec2-de67a8683fa0\",\"pandascore_id\":null,\"yahoo_id\":8256,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Sandy Creek (GA)\",\"depth_chart_order\":null,\"stats_id\":266919,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'5\\\"\",\"search_full_name\":\"calvinjohnson\",\"birth_date\":\"1985-09-29\",\"espn_id\":10447},\"3047\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cyril\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lemon\",\"depth_chart_position\":\"RG\",\"player_id\":\"3047\",\"birth_city\":null,\"fantasy_data_id\":17761,\"years_exp\":1,\"hashtag\":\"#CyrilLemon-NFL-FA-62\",\"search_first_name\":\"cyril\",\"rotowire_id\":10787,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cyril Lemon\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":28760,\"last_name\":\"Lemon\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cyrillemon\",\"birth_date\":\"1993-01-08\",\"espn_id\":null},\"2472\":{\"position\":\"LB\",\"injury_notes\":\"Mayo will undergo surgery immediately for a torn meniscus and will likely land on Injured Reserve.\",\"birth_country\":null,\"gsis_id\":\"00-0031596\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602882647576,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mayo\",\"depth_chart_position\":\"RILB\",\"player_id\":\"2472\",\"birth_city\":null,\"fantasy_data_id\":16929,\"years_exp\":5,\"hashtag\":\"#DavidMayo-NFL-NYG-55\",\"search_first_name\":\"david\",\"rotowire_id\":10469,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"David Mayo\",\"sportradar_id\":\"677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a\",\"pandascore_id\":null,\"yahoo_id\":28557,\"last_name\":\"Mayo\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":\"Scappoose (OR)\",\"depth_chart_order\":2,\"stats_id\":693395,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidmayo\",\"birth_date\":\"1993-08-18\",\"espn_id\":2972400},\"3601\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032827\",\"first_name\":\"Leonard\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574127644802,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wester\",\"depth_chart_position\":null,\"player_id\":\"3601\",\"birth_city\":null,\"fantasy_data_id\":18386,\"years_exp\":4,\"hashtag\":\"#LeonardWester-NFL-FA-0\",\"search_first_name\":\"leonard\",\"rotowire_id\":11416,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Leonard Wester\",\"sportradar_id\":\"1e4470b2-2710-4c23-b1ee-5dccd31352a9\",\"pandascore_id\":null,\"yahoo_id\":29594,\"last_name\":\"Wester\",\"metadata\":null,\"college\":\"Missouri Western State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"leonardwester\",\"birth_date\":\"1993-01-03\",\"espn_id\":4002060},\"1929\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031112\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1513635302857,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coons\",\"depth_chart_position\":null,\"player_id\":\"1929\",\"birth_city\":null,\"fantasy_data_id\":16164,\"years_exp\":6,\"hashtag\":\"#TravisCoons-NFL-FA-5\",\"search_first_name\":\"travis\",\"rotowire_id\":9816,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Travis Coons\",\"sportradar_id\":\"efb15571-8b8c-4894-8c3f-f595cf7ccf87\",\"pandascore_id\":null,\"yahoo_id\":27958,\"last_name\":\"Coons\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Alta Loma\",\"depth_chart_order\":null,\"stats_id\":695176,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"traviscoons\",\"birth_date\":\"1992-02-06\",\"espn_id\":17130},\"5165\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034531\",\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1567900805991,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flowers\",\"depth_chart_position\":\"QB\",\"player_id\":\"5165\",\"birth_city\":null,\"fantasy_data_id\":20113,\"years_exp\":2,\"hashtag\":\"#QuintonFlowers-NFL-FA-36\",\"search_first_name\":\"quinton\",\"rotowire_id\":12652,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Quinton Flowers\",\"sportradar_id\":\"4c54672f-f0f5-47ff-9d98-33137e3c0773\",\"pandascore_id\":null,\"yahoo_id\":31560,\"last_name\":\"Flowers\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":840742,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'10\\\"\",\"search_full_name\":\"quintonflowers\",\"birth_date\":\"1994-12-02\",\"espn_id\":3139591},\"6129\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035674\",\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1580572822551,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tillery\",\"depth_chart_position\":\"DT\",\"player_id\":\"6129\",\"birth_city\":null,\"fantasy_data_id\":20967,\"years_exp\":1,\"hashtag\":\"#JerryTillery-NFL-LAC-99\",\"search_first_name\":\"jerry\",\"rotowire_id\":13757,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1610,\"age\":24,\"full_name\":\"Jerry Tillery\",\"sportradar_id\":\"9da6119d-b135-4b90-9f9d-7d08ab00b15d\",\"pandascore_id\":null,\"yahoo_id\":31860,\"last_name\":\"Tillery\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Evangel Christian Academy (LA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jerrytillery\",\"birth_date\":\"1996-10-08\",\"espn_id\":3863182},\"210\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025828\",\"first_name\":\"Wesley\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1580786760240,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"woodyard\",\"depth_chart_position\":null,\"player_id\":\"210\",\"birth_city\":null,\"fantasy_data_id\":5334,\"years_exp\":12,\"hashtag\":\"#WesleyWoodyard-NFL-FA-59\",\"search_first_name\":\"wesley\",\"rotowire_id\":5740,\"rotoworld_id\":5036,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Wesley Woodyard\",\"sportradar_id\":\"e9b4a5be-80ed-4e00-9db3-6ee69e32b529\",\"pandascore_id\":null,\"yahoo_id\":9072,\"last_name\":\"Woodyard\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"La Grange (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"wesleywoodyard\",\"birth_date\":\"1986-07-21\",\"espn_id\":11609},\"4550\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hendrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ekpe\",\"depth_chart_position\":null,\"player_id\":\"4550\",\"birth_city\":null,\"fantasy_data_id\":19430,\"years_exp\":2,\"hashtag\":\"#HendrickEkpe-NFL-FA-49\",\"search_first_name\":\"hendrick\",\"rotowire_id\":12392,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Hendrick Ekpe\",\"sportradar_id\":\"d8c05964-2260-48d2-9b5a-d58870169df7\",\"pandascore_id\":null,\"yahoo_id\":30719,\"last_name\":\"Ekpe\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hendrickekpe\",\"birth_date\":\"1995-06-30\",\"espn_id\":3040186},\"2584\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"2584\",\"birth_city\":null,\"fantasy_data_id\":17049,\"years_exp\":1,\"hashtag\":\"#AustinHill-NFL-FA-9\",\"search_first_name\":\"austin\",\"rotowire_id\":10235,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Austin Hill\",\"sportradar_id\":\"47cc8e2e-6dc1-458f-9bbc-5783434516d8\",\"pandascore_id\":null,\"yahoo_id\":28710,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542547,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"austinhill\",\"birth_date\":\"1991-07-17\",\"espn_id\":2516901},\"5827\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034903\",\"first_name\":\"Tevaughn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1575936640318,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5827\",\"birth_city\":null,\"fantasy_data_id\":20721,\"years_exp\":1,\"hashtag\":\"#TevaughnCampbell-NFL-LAC-37\",\"search_first_name\":\"tevaughn\",\"rotowire_id\":13555,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1514,\"age\":27,\"full_name\":\"Tevaughn Campbell\",\"sportradar_id\":\"68b3f7e5-cc33-41e1-833c-8f48cb70bf72\",\"pandascore_id\":null,\"yahoo_id\":31810,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Regina, Can.\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tevaughncampbell\",\"birth_date\":\"1993-06-14\",\"espn_id\":4410136},\"1320\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lumpkin\",\"depth_chart_position\":null,\"player_id\":\"1320\",\"birth_city\":null,\"fantasy_data_id\":14816,\"years_exp\":1,\"hashtag\":\"#RickyLumpkin-NFL-FA-68\",\"search_first_name\":\"ricky\",\"rotowire_id\":7825,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ricky Lumpkin\",\"sportradar_id\":\"cde507c4-848e-4e50-a5a9-c3d42b9c87e4\",\"pandascore_id\":null,\"yahoo_id\":25204,\"last_name\":\"Lumpkin\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rickylumpkin\",\"birth_date\":\"1988-09-07\",\"espn_id\":14282},\"5285\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034073\",\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605568520229,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dwelley\",\"depth_chart_position\":\"TE\",\"player_id\":\"5285\",\"birth_city\":null,\"fantasy_data_id\":20361,\"years_exp\":2,\"hashtag\":\"#RossDwelley-NFL-SF-82\",\"search_first_name\":\"ross\",\"rotowire_id\":13030,\"rotoworld_id\":null,\"active\":true,\"search_rank\":577,\"age\":25,\"full_name\":\"Ross Dwelley\",\"sportradar_id\":\"70473218-5ae3-47b4-86fd-151e68f1e8b9\",\"pandascore_id\":null,\"yahoo_id\":31329,\"last_name\":\"Dwelley\",\"metadata\":null,\"college\":\"San Diego\",\"high_school\":\"Oakridge (CA)\",\"depth_chart_order\":2,\"stats_id\":752665,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rossdwelley\",\"birth_date\":\"1995-01-26\",\"espn_id\":3120303},\"3003\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1510105201110,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"snyder\",\"depth_chart_position\":null,\"player_id\":\"3003\",\"birth_city\":null,\"fantasy_data_id\":17535,\"years_exp\":4,\"hashtag\":\"#KevinSnyder-NFL-FA-45\",\"search_first_name\":\"kevin\",\"rotowire_id\":10669,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kevin Snyder\",\"sportradar_id\":\"f70b7af6-ba7c-41f1-8d1b-3fd8f970b159\",\"pandascore_id\":null,\"yahoo_id\":28883,\"last_name\":\"Snyder\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevinsnyder\",\"birth_date\":\"1992-07-25\",\"espn_id\":2582398},\"1890\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1520634301447,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"france\",\"depth_chart_position\":null,\"player_id\":\"1890\",\"birth_city\":null,\"fantasy_data_id\":16110,\"years_exp\":5,\"hashtag\":\"#DanFrance-NFL-FA-71\",\"search_first_name\":\"dan\",\"rotowire_id\":10049,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dan France\",\"sportradar_id\":\"6753ebce-123c-48aa-92f9-d9e3e164aa10\",\"pandascore_id\":null,\"yahoo_id\":28019,\"last_name\":\"France\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"danfrance\",\"birth_date\":\"1991-04-01\",\"espn_id\":17151},\"790\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":null,\"player_id\":\"790\",\"birth_city\":null,\"fantasy_data_id\":12712,\"years_exp\":5,\"hashtag\":\"#CaseyMatthews-NFL-FA-59\",\"search_first_name\":\"casey\",\"rotowire_id\":7500,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Casey Matthews\",\"sportradar_id\":\"4e6f1b0d-1e8a-4088-9b92-0bf96fe10ffc\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'1\\\"\",\"search_full_name\":\"caseymatthews\",\"birth_date\":\"1989-01-16\",\"espn_id\":14181},\"3132\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dick\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lebeau\",\"depth_chart_position\":null,\"player_id\":\"3132\",\"birth_city\":null,\"fantasy_data_id\":17886,\"years_exp\":0,\"hashtag\":\"#DickLebeau-NFL-FA-0\",\"search_first_name\":\"dick\",\"rotowire_id\":null,\"rotoworld_id\":9489,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dick Lebeau\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lebeau\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dicklebeau\",\"birth_date\":null,\"espn_id\":null},\"2516\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032247\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599276055262,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wichmann\",\"depth_chart_position\":\"RG\",\"player_id\":\"2516\",\"birth_city\":null,\"fantasy_data_id\":16975,\"years_exp\":5,\"hashtag\":\"#CodyWichmann-NFL-FA-78\",\"search_first_name\":\"cody\",\"rotowire_id\":10490,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cody Wichmann\",\"sportradar_id\":\"a044125d-85ff-434e-ac2b-deeecf314d63\",\"pandascore_id\":null,\"yahoo_id\":28603,\"last_name\":\"Wichmann\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Mariposa (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'5\\\"\",\"search_full_name\":\"codywichmann\",\"birth_date\":\"1992-03-02\",\"espn_id\":2517252},\"2774\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shakim\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"2774\",\"birth_city\":null,\"fantasy_data_id\":17242,\"years_exp\":1,\"hashtag\":\"#ShakimPhillips-NFL-FA-19\",\"search_first_name\":\"shakim\",\"rotowire_id\":10838,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Shakim Phillips\",\"sportradar_id\":\"408d7b0a-abf9-4431-842b-a02b23364dc4\",\"pandascore_id\":null,\"yahoo_id\":29105,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553270,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"shakimphillips\",\"birth_date\":\"1992-03-19\",\"espn_id\":2512378},\"5677\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034513\",\"first_name\":\"Mo\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"5677\",\"birth_city\":null,\"fantasy_data_id\":20251,\"years_exp\":2,\"hashtag\":\"#MoPorter-NFL-FA-77\",\"search_first_name\":\"mo\",\"rotowire_id\":13231,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mo Porter\",\"sportradar_id\":\"3a7f48c5-6cda-4793-89a0-2bda1bc55e14\",\"pandascore_id\":null,\"yahoo_id\":31596,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"moporter\",\"birth_date\":\"1995-03-29\",\"espn_id\":3928934},\"1248\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029666\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1561764913391,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leribeus\",\"depth_chart_position\":null,\"player_id\":\"1248\",\"birth_city\":null,\"fantasy_data_id\":14605,\"years_exp\":8,\"hashtag\":\"#JoshLeRibeus-NFL-FA-68\",\"search_first_name\":\"josh\",\"rotowire_id\":8337,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Josh LeRibeus\",\"sportradar_id\":\"e461d721-5ca5-4896-8fe5-12e452a003b3\",\"pandascore_id\":null,\"yahoo_id\":25781,\"last_name\":\"LeRibeus\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Berkner (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshleribeus\",\"birth_date\":\"1989-07-02\",\"espn_id\":14961},\"5970\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035500\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595740507285,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dortch\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5970\",\"birth_city\":null,\"fantasy_data_id\":21071,\"years_exp\":1,\"hashtag\":\"#GregDortch-NFL-FA-0\",\"search_first_name\":\"greg\",\"rotowire_id\":13469,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1657,\"age\":22,\"full_name\":\"Greg Dortch\",\"sportradar_id\":\"4484c7d1-025a-4f26-8e9b-48503afb0c68\",\"pandascore_id\":null,\"yahoo_id\":32523,\"last_name\":\"Dortch\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":910852,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'7\\\"\",\"search_full_name\":\"gregdortch\",\"birth_date\":\"1998-05-29\",\"espn_id\":4037235},\"5224\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taj\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534818323418,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"5224\",\"birth_city\":null,\"fantasy_data_id\":20183,\"years_exp\":2,\"hashtag\":\"#TajWilliams-NFL-FA-16\",\"search_first_name\":\"taj\",\"rotowire_id\":13137,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Taj Williams\",\"sportradar_id\":\"b4a10866-f5e9-48ae-88d4-0d221591c144\",\"pandascore_id\":null,\"yahoo_id\":31465,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":913275,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tajwilliams\",\"birth_date\":\"1993-04-02\",\"espn_id\":4038530},\"2784\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031755\",\"first_name\":\"Jameill\",\"practice_description\":null,\"fantasy_positions\":[\"QB\",\"DB\"],\"news_updated\":1568070635417,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"showers\",\"depth_chart_position\":null,\"player_id\":\"2784\",\"birth_city\":null,\"fantasy_data_id\":17252,\"years_exp\":5,\"hashtag\":\"#JameillShowers-NFL-FA-28\",\"search_first_name\":\"jameill\",\"rotowire_id\":10540,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jameill Showers\",\"sportradar_id\":\"511ec990-f0f6-4432-a10f-2dcbc8efd485\",\"pandascore_id\":null,\"yahoo_id\":29022,\"last_name\":\"Showers\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Shoemaker (TX)\",\"depth_chart_order\":null,\"stats_id\":544033,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jameillshowers\",\"birth_date\":\"1991-09-06\",\"espn_id\":2511832},\"3095\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mularkey\",\"depth_chart_position\":null,\"player_id\":\"3095\",\"birth_city\":null,\"fantasy_data_id\":17845,\"years_exp\":0,\"hashtag\":\"#MikeMularkey-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":9351,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Mularkey\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mularkey\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikemularkey\",\"birth_date\":null,\"espn_id\":null},\"3501\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"striker\",\"depth_chart_position\":null,\"player_id\":\"3501\",\"birth_city\":null,\"fantasy_data_id\":18267,\"years_exp\":0,\"hashtag\":\"#EricStriker-NFL-FA-50\",\"search_first_name\":\"eric\",\"rotowire_id\":11186,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Eric Striker\",\"sportradar_id\":\"8efab3be-c0a8-4ad9-be2f-1b40415888fe\",\"pandascore_id\":null,\"yahoo_id\":29557,\"last_name\":\"Striker\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ericstriker\",\"birth_date\":\"1993-10-01\",\"espn_id\":2976605},\"6773\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scarnecchia\",\"depth_chart_position\":null,\"player_id\":\"6773\",\"birth_city\":null,\"fantasy_data_id\":21857,\"years_exp\":0,\"hashtag\":\"#DanteScarnecchia-NFL-FA-0\",\"search_first_name\":\"dante\",\"rotowire_id\":null,\"rotoworld_id\":11344,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dante Scarnecchia\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Scarnecchia\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dantescarnecchia\",\"birth_date\":null,\"espn_id\":null},\"5742\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034742\",\"first_name\":\"Blaine\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535763089782,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodson\",\"depth_chart_position\":null,\"player_id\":\"5742\",\"birth_city\":null,\"fantasy_data_id\":20651,\"years_exp\":2,\"hashtag\":\"#BlaineWoodson-NFL-FA-68\",\"search_first_name\":\"blaine\",\"rotowire_id\":13345,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Blaine Woodson\",\"sportradar_id\":\"8d276b8b-116f-4705-a6f4-a37b390f279e\",\"pandascore_id\":null,\"yahoo_id\":31738,\"last_name\":\"Woodson\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'1\\\"\",\"search_full_name\":\"blainewoodson\",\"birth_date\":\"1995-10-30\",\"espn_id\":3117912},\"2625\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031978\",\"first_name\":\"Jonathon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mincy\",\"depth_chart_position\":null,\"player_id\":\"2625\",\"birth_city\":null,\"fantasy_data_id\":17093,\"years_exp\":5,\"hashtag\":\"#JonathonMincy-NFL-FA-31\",\"search_first_name\":\"jonathon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jonathon Mincy\",\"sportradar_id\":\"5f06c995-7b1c-4da1-8bce-5ab5f63a901d\",\"pandascore_id\":null,\"yahoo_id\":29027,\"last_name\":\"Mincy\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathonmincy\",\"birth_date\":\"1992-09-05\",\"espn_id\":2516019},\"7024\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604689245118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smithwilliams\",\"depth_chart_position\":\"RDE\",\"player_id\":\"7024\",\"birth_city\":null,\"fantasy_data_id\":21875,\"years_exp\":0,\"hashtag\":\"#JamesSmithWilliams-NFL-WAS-96\",\"search_first_name\":\"james\",\"rotowire_id\":14729,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1803,\"age\":23,\"full_name\":\"James Smith-Williams\",\"sportradar_id\":\"63758554-7225-48de-a553-c43c03419c49\",\"pandascore_id\":null,\"yahoo_id\":32899,\"last_name\":\"Smith-Williams\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Millbrook (NC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamessmithwilliams\",\"birth_date\":\"1997-07-30\",\"espn_id\":3686690},\"2839\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031999\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1584661536117,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"march\",\"depth_chart_position\":\"WLB\",\"player_id\":\"2839\",\"birth_city\":null,\"fantasy_data_id\":17307,\"years_exp\":5,\"hashtag\":\"#JustinMarch-NFL-DAL-59\",\"search_first_name\":\"justin\",\"rotowire_id\":10646,\"rotoworld_id\":null,\"active\":true,\"search_rank\":934,\"age\":27,\"full_name\":\"Justin March\",\"sportradar_id\":\"c008f3d4-7141-4d58-aa63-cb86088b0c0b\",\"pandascore_id\":null,\"yahoo_id\":29098,\"last_name\":\"March\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":\"Danville (IL)\",\"depth_chart_order\":3,\"stats_id\":602943,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justinmarch\",\"birth_date\":\"1993-07-05\",\"espn_id\":2574282},\"75\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026206\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535987767738,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"langford\",\"depth_chart_position\":null,\"player_id\":\"75\",\"birth_city\":null,\"fantasy_data_id\":2158,\"years_exp\":12,\"hashtag\":\"#KendallLangford-NFL-FA-98\",\"search_first_name\":\"kendall\",\"rotowire_id\":5726,\"rotoworld_id\":4862,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Kendall Langford\",\"sportradar_id\":\"53f8b594-314d-4f34-9444-a2b3e7eb0185\",\"pandascore_id\":null,\"yahoo_id\":8843,\"last_name\":\"Langford\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":\"Petersburg (VA)\",\"depth_chart_order\":null,\"stats_id\":277741,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kendalllangford\",\"birth_date\":\"1986-01-27\",\"espn_id\":11300},\"5911\":{\"position\":\"WR\",\"injury_notes\":\"Hurd has a torn ACL and will likely miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\" 00-0034971\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1597946431698,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hurd\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5911\",\"birth_city\":null,\"fantasy_data_id\":20817,\"years_exp\":1,\"hashtag\":\"#JalenHurd-NFL-SF-14\",\"search_first_name\":\"jalen\",\"rotowire_id\":13631,\"rotoworld_id\":14060,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jalen Hurd\",\"sportradar_id\":\"917d4304-d039-42a9-9c43-84e3786f105c\",\"pandascore_id\":null,\"yahoo_id\":31899,\"last_name\":\"Hurd\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Beech (TN)\",\"depth_chart_order\":4,\"stats_id\":820517,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jalenhurd\",\"birth_date\":\"1996-01-23\",\"espn_id\":3115328},\"1370\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"1370\",\"birth_city\":null,\"fantasy_data_id\":14892,\"years_exp\":1,\"hashtag\":\"#WilliamCampbell-NFL-FA-64\",\"search_first_name\":\"william\",\"rotowire_id\":9161,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"William Campbell\",\"sportradar_id\":\"880ead7a-cbae-494e-8f72-3f3d90c71392\",\"pandascore_id\":null,\"yahoo_id\":26801,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'4\\\"\",\"search_full_name\":\"williamcampbell\",\"birth_date\":\"1991-07-06\",\"espn_id\":15969},\"3613\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032511\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567822823526,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zamort\",\"depth_chart_position\":null,\"player_id\":\"3613\",\"birth_city\":null,\"fantasy_data_id\":18400,\"years_exp\":4,\"hashtag\":\"#RonaldZamort-NFL-FA-43\",\"search_first_name\":\"ronald\",\"rotowire_id\":11301,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ronald Zamort\",\"sportradar_id\":\"812c5dd0-4da5-498e-bf8c-4efdd885973a\",\"pandascore_id\":null,\"yahoo_id\":29589,\"last_name\":\"Zamort\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ronaldzamort\",\"birth_date\":\"1991-11-10\",\"espn_id\":2973033},\"4399\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033414\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601217038543,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4399\",\"birth_city\":null,\"fantasy_data_id\":19258,\"years_exp\":3,\"hashtag\":\"#EricSmith-NFL-DAL-67\",\"search_first_name\":\"eric\",\"rotowire_id\":12301,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Eric Smith\",\"sportradar_id\":\"fed820cc-3104-431a-b38c-efa192216035\",\"pandascore_id\":null,\"yahoo_id\":30651,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Columbia (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ericsmith\",\"birth_date\":\"1995-09-02\",\"espn_id\":3048698},\"3308\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032781\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605652225417,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"ioannidis\",\"depth_chart_position\":null,\"player_id\":\"3308\",\"birth_city\":null,\"fantasy_data_id\":18069,\"years_exp\":4,\"hashtag\":\"#MattIoannidis-NFL-WAS-98\",\"search_first_name\":\"matt\",\"rotowire_id\":11063,\"rotoworld_id\":11450,\"active\":true,\"search_rank\":1017,\"age\":26,\"full_name\":\"Matt Ioannidis\",\"sportradar_id\":\"0777efdd-14bf-4561-bbb4-20f926fe115c\",\"pandascore_id\":null,\"yahoo_id\":29386,\"last_name\":\"Ioannidis\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Hunterdon Central (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattioannidis\",\"birth_date\":\"1994-01-11\",\"espn_id\":2976263},\"2526\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Martin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1523392501360,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ifedi\",\"depth_chart_position\":null,\"player_id\":\"2526\",\"birth_city\":null,\"fantasy_data_id\":16986,\"years_exp\":4,\"hashtag\":\"#MartinIfedi-NFL-FA-96\",\"search_first_name\":\"martin\",\"rotowire_id\":10496,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Martin Ifedi\",\"sportradar_id\":\"f374d492-e1de-4896-819d-eef1cb8a4848\",\"pandascore_id\":null,\"yahoo_id\":28615,\"last_name\":\"Ifedi\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"276\",\"height\":\"6'3\\\"\",\"search_full_name\":\"martinifedi\",\"birth_date\":\"1995-06-07\",\"espn_id\":2515577},\"2171\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030737\",\"first_name\":\"Freddie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539882660071,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martino\",\"depth_chart_position\":null,\"player_id\":\"2171\",\"birth_city\":null,\"fantasy_data_id\":16529,\"years_exp\":6,\"hashtag\":\"#FreddieMartino-NFL-FA-16\",\"search_first_name\":\"freddie\",\"rotowire_id\":9854,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Freddie Martino\",\"sportradar_id\":\"88eda217-d9ad-4abb-bcc1-2cbfe2a20b4d\",\"pandascore_id\":null,\"yahoo_id\":28060,\"last_name\":\"Martino\",\"metadata\":null,\"college\":\"North Greenville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":562535,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"freddiemartino\",\"birth_date\":\"1991-09-07\",\"espn_id\":17205},\"3743\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032671\",\"first_name\":\"Morgan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1601904345692,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fox\",\"depth_chart_position\":\"LDE\",\"player_id\":\"3743\",\"birth_city\":null,\"fantasy_data_id\":18555,\"years_exp\":4,\"hashtag\":\"#MorganFox-NFL-LAR-97\",\"search_first_name\":\"morgan\",\"rotowire_id\":11571,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1093,\"age\":26,\"full_name\":\"Morgan Fox\",\"sportradar_id\":\"ed54f1f3-65b8-4b54-8a64-81858ca9f50f\",\"pandascore_id\":null,\"yahoo_id\":29714,\"last_name\":\"Fox\",\"metadata\":null,\"college\":\"Colorado State-Pueblo\",\"high_school\":\"Fountain-Fort Carson (CO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"morganfox\",\"birth_date\":\"1994-09-12\",\"espn_id\":3059620},\"1526\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030576\",\"first_name\":\"Datone\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597279205591,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1526\",\"birth_city\":null,\"fantasy_data_id\":15137,\"years_exp\":7,\"hashtag\":\"#DatoneJones-NFL-LV-95\",\"search_first_name\":\"datone\",\"rotowire_id\":8660,\"rotoworld_id\":8426,\"active\":true,\"search_rank\":734,\"age\":30,\"full_name\":\"Datone Jones\",\"sportradar_id\":\"3258dbca-9194-4fd7-bc2b-8440c73d0d9c\",\"pandascore_id\":null,\"yahoo_id\":26649,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Compton (CA)\",\"depth_chart_order\":null,\"stats_id\":461736,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"datonejones\",\"birth_date\":\"1990-07-24\",\"espn_id\":15798},\"2932\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frohnapfel\",\"depth_chart_position\":null,\"player_id\":\"2932\",\"birth_city\":null,\"fantasy_data_id\":17401,\"years_exp\":null,\"hashtag\":\"#EricFrohnapfel-NFL-FA-0\",\"search_first_name\":\"eric\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eric Frohnapfel\",\"sportradar_id\":\"77baabed-b158-4c63-a42b-e1cc4a32cc5e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Frohnapfel\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609788,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ericfrohnapfel\",\"birth_date\":null,\"espn_id\":null},\"6007\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035268\",\"first_name\":\"Ryquell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1603644907027,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"armstead\",\"depth_chart_position\":\"RB\",\"player_id\":\"6007\",\"birth_city\":null,\"fantasy_data_id\":20743,\"years_exp\":1,\"hashtag\":\"#RyquellArmstead-NFL-JAX-23\",\"search_first_name\":\"ryquell\",\"rotowire_id\":13473,\"rotoworld_id\":14167,\"active\":true,\"search_rank\":118,\"age\":24,\"full_name\":\"Ryquell Armstead\",\"sportradar_id\":\"ce079a73-5884-4184-909a-8feafd4645d9\",\"pandascore_id\":null,\"yahoo_id\":31972,\"last_name\":\"Armstead\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Millville (NJ)\",\"depth_chart_order\":7,\"stats_id\":884791,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ryquellarmstead\",\"birth_date\":\"1996-10-30\",\"espn_id\":3923397},\"2118\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031387\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606270854229,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ebron\",\"depth_chart_position\":\"TE\",\"player_id\":\"2118\",\"birth_city\":null,\"fantasy_data_id\":16451,\"years_exp\":6,\"hashtag\":\"#EricEbron-NFL-PIT-85\",\"search_first_name\":\"eric\",\"rotowire_id\":9210,\"rotoworld_id\":9390,\"active\":true,\"search_rank\":293,\"age\":27,\"full_name\":\"Eric Ebron\",\"sportradar_id\":\"9fbcfae9-dd14-415c-8952-9b1b5dff0dfc\",\"pandascore_id\":null,\"yahoo_id\":27538,\"last_name\":\"Ebron\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"North Carolina\",\"high_school\":\"Smith (NC)\",\"depth_chart_order\":1,\"stats_id\":605752,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ericebron\",\"birth_date\":\"1993-04-10\",\"espn_id\":16732},\"3458\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Avery\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1534296049437,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"3458\",\"birth_city\":null,\"fantasy_data_id\":18222,\"years_exp\":3,\"hashtag\":\"#AveryYoung-NFL-FA-75\",\"search_first_name\":\"avery\",\"rotowire_id\":10888,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Avery Young\",\"sportradar_id\":\"f947c730-862f-4b73-af2c-bd79f9dd3d4c\",\"pandascore_id\":null,\"yahoo_id\":29866,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'5\\\"\",\"search_full_name\":\"averyyoung\",\"birth_date\":\"1992-11-12\",\"espn_id\":2971025},\"4449\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033445\",\"first_name\":\"Nicholas\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1606278356142,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"morrow\",\"depth_chart_position\":\"SLB\",\"player_id\":\"4449\",\"birth_city\":null,\"fantasy_data_id\":19310,\"years_exp\":3,\"hashtag\":\"#NicholasMorrow-NFL-LV-50\",\"search_first_name\":\"nicholas\",\"rotowire_id\":12428,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1253,\"age\":25,\"full_name\":\"Nicholas Morrow\",\"sportradar_id\":\"7c1a8ecd-e3e5-4123-b89f-36e58b99126f\",\"pandascore_id\":null,\"yahoo_id\":30633,\"last_name\":\"Morrow\",\"metadata\":null,\"college\":\"Greenville\",\"high_school\":\"Huntsville (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nicholasmorrow\",\"birth_date\":\"1995-07-10\",\"espn_id\":4232830},\"6542\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035390\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606359304557,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rush\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6542\",\"birth_city\":null,\"fantasy_data_id\":21435,\"years_exp\":1,\"hashtag\":\"#AnthonyRush-NFL-GB-76\",\"search_first_name\":\"anthony\",\"rotowire_id\":14018,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1733,\"age\":24,\"full_name\":\"Anthony Rush\",\"sportradar_id\":\"65a702f3-1e60-46a3-bce9-8b4e3f939888\",\"pandascore_id\":null,\"yahoo_id\":32408,\"last_name\":\"Rush\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Cary (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'5\\\"\",\"search_full_name\":\"anthonyrush\",\"birth_date\":\"1996-09-01\",\"espn_id\":4239817},\"2546\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031628\",\"first_name\":\"Darryl\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604793910365,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":null,\"player_id\":\"2546\",\"birth_city\":null,\"fantasy_data_id\":17006,\"years_exp\":5,\"hashtag\":\"#DarrylRoberts-NFL-DET-29\",\"search_first_name\":\"darryl\",\"rotowire_id\":10427,\"rotoworld_id\":10620,\"active\":true,\"search_rank\":909,\"age\":30,\"full_name\":\"Darryl Roberts\",\"sportradar_id\":\"5ce96781-4dea-4995-a6ae-7e8ba7acfdbc\",\"pandascore_id\":null,\"yahoo_id\":28635,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Lakeland (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darrylroberts\",\"birth_date\":\"1990-11-26\",\"espn_id\":2515490},\"4645\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1512181801784,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schwan\",\"depth_chart_position\":null,\"player_id\":\"4645\",\"birth_city\":null,\"fantasy_data_id\":19540,\"years_exp\":3,\"hashtag\":\"#EvanSchwan-NFL-FA-0\",\"search_first_name\":\"evan\",\"rotowire_id\":12138,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Evan Schwan\",\"sportradar_id\":\"df7467ef-6601-4668-bac7-c7788db3aeae\",\"pandascore_id\":null,\"yahoo_id\":30738,\"last_name\":\"Schwan\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'6\\\"\",\"search_full_name\":\"evanschwan\",\"birth_date\":\"1994-06-28\",\"espn_id\":2979600},\"5733\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034716\",\"first_name\":\"Clayton\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1534800307482,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"5733\",\"birth_city\":null,\"fantasy_data_id\":20635,\"years_exp\":2,\"hashtag\":\"#ClaytonWilson-NFL-FA-86\",\"search_first_name\":\"clayton\",\"rotowire_id\":13322,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Clayton Wilson\",\"sportradar_id\":\"d1037ab1-74a0-450d-8052-eef7f7aaf83e\",\"pandascore_id\":null,\"yahoo_id\":31719,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"NW Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1116618,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"claytonwilson\",\"birth_date\":\"1994-08-01\",\"espn_id\":3957316},\"5299\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034280\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599704744442,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"senat\",\"depth_chart_position\":\"LT\",\"player_id\":\"5299\",\"birth_city\":null,\"fantasy_data_id\":20009,\"years_exp\":2,\"hashtag\":\"#GregSenat-NFL-DAL-64\",\"search_first_name\":\"greg\",\"rotowire_id\":12702,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Greg Senat\",\"sportradar_id\":\"b74ad3e6-b540-4f72-a4e1-3ee6d73c3163\",\"pandascore_id\":null,\"yahoo_id\":31182,\"last_name\":\"Senat\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":\"Elmont (NY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"gregsenat\",\"birth_date\":\"1994-09-08\",\"espn_id\":4034522},\"5697\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534639510426,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"olstad\",\"depth_chart_position\":null,\"player_id\":\"5697\",\"birth_city\":null,\"fantasy_data_id\":20616,\"years_exp\":2,\"hashtag\":\"#ZachOlstad-NFL-FA-48\",\"search_first_name\":\"zach\",\"rotowire_id\":13327,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zach Olstad\",\"sportradar_id\":\"50828eca-6954-47f9-8610-3bf7b7ff5e2b\",\"pandascore_id\":null,\"yahoo_id\":31700,\"last_name\":\"Olstad\",\"metadata\":null,\"college\":\"Winona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1116601,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"5'11\\\"\",\"search_full_name\":\"zacholstad\",\"birth_date\":\"1993-12-06\",\"espn_id\":4339829},\"3235\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1523571001195,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tuerk\",\"depth_chart_position\":null,\"player_id\":\"3235\",\"birth_city\":null,\"fantasy_data_id\":17996,\"years_exp\":4,\"hashtag\":\"#MaxTuerk-NFL-FA-79\",\"search_first_name\":\"max\",\"rotowire_id\":10963,\"rotoworld_id\":11387,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Max Tuerk\",\"sportradar_id\":\"7ff4b3d9-dedf-474a-b097-2bcee7ab7648\",\"pandascore_id\":null,\"yahoo_id\":29300,\"last_name\":\"Tuerk\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"maxtuerk\",\"birth_date\":\"1994-01-27\",\"espn_id\":2971613},\"2348\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031553\",\"first_name\":\"Benardrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602624049575,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mckinney\",\"depth_chart_position\":null,\"player_id\":\"2348\",\"birth_city\":null,\"fantasy_data_id\":16804,\"years_exp\":5,\"hashtag\":\"#BenardrickMcKinney-NFL-HOU-55\",\"search_first_name\":\"benardrick\",\"rotowire_id\":10354,\"rotoworld_id\":10451,\"active\":true,\"search_rank\":867,\"age\":28,\"full_name\":\"Benardrick McKinney\",\"sportradar_id\":\"5aac7b03-3b39-4084-bda5-8423abf28903\",\"pandascore_id\":null,\"yahoo_id\":28431,\"last_name\":\"McKinney\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Rosa Fort (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benardrickmckinney\",\"birth_date\":\"1992-11-19\",\"espn_id\":2577429},\"3632\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"norman\",\"depth_chart_position\":null,\"player_id\":\"3632\",\"birth_city\":null,\"fantasy_data_id\":18420,\"years_exp\":0,\"hashtag\":\"#DwayneNorman-NFL-FA-0\",\"search_first_name\":\"dwayne\",\"rotowire_id\":11696,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dwayne Norman\",\"sportradar_id\":\"1f68d8dd-bcd9-4959-95cc-163541a738c7\",\"pandascore_id\":null,\"yahoo_id\":29628,\"last_name\":\"Norman\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dwaynenorman\",\"birth_date\":\"1993-09-23\",\"espn_id\":2969887},\"2201\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khairi\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fortt\",\"depth_chart_position\":null,\"player_id\":\"2201\",\"birth_city\":null,\"fantasy_data_id\":16572,\"years_exp\":2,\"hashtag\":\"#KhairiFortt-NFL-FA-0\",\"search_first_name\":\"khairi\",\"rotowire_id\":9704,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Khairi Fortt\",\"sportradar_id\":\"a5bceb4d-60c0-4eaf-b5a1-6e5c48bc7057\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fortt\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"khairifortt\",\"birth_date\":\"1992-03-24\",\"espn_id\":16909},\"948\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cliff\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":null,\"player_id\":\"948\",\"birth_city\":null,\"fantasy_data_id\":13292,\"years_exp\":5,\"hashtag\":\"#CliffMatthews-NFL-FA-96\",\"search_first_name\":\"cliff\",\"rotowire_id\":7456,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Cliff Matthews\",\"sportradar_id\":\"b5414a2e-e862-478c-96eb-3fe8f3c643af\",\"pandascore_id\":null,\"yahoo_id\":25017,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cliffmatthews\",\"birth_date\":\"1989-08-05\",\"espn_id\":14182},\"6205\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034918\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1557174324089,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"silvers\",\"depth_chart_position\":null,\"player_id\":\"6205\",\"birth_city\":null,\"fantasy_data_id\":20542,\"years_exp\":1,\"hashtag\":\"#BrandonSilvers-NFL-NYJ-2\",\"search_first_name\":\"brandon\",\"rotowire_id\":12824,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Silvers\",\"sportradar_id\":\"977646e0-0142-4293-aea2-cb36742bfac4\",\"pandascore_id\":null,\"yahoo_id\":31828,\"last_name\":\"Silvers\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":734266,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonsilvers\",\"birth_date\":\"1994-05-09\",\"espn_id\":3042565},\"2776\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tay\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gloverwright\",\"depth_chart_position\":null,\"player_id\":\"2776\",\"birth_city\":null,\"fantasy_data_id\":17244,\"years_exp\":6,\"hashtag\":\"#TayGloverWright-NFL-FA-47\",\"search_first_name\":\"tay\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tay Glover-Wright\",\"sportradar_id\":\"ceaea384-a7cd-4e78-a757-050c84b73ebf\",\"pandascore_id\":null,\"yahoo_id\":28057,\"last_name\":\"Glover-Wright\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Campbell\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"taygloverwright\",\"birth_date\":\"1992-06-28\",\"espn_id\":17158},\"219\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"219\",\"birth_city\":null,\"fantasy_data_id\":5467,\"years_exp\":14,\"hashtag\":\"#MarioWilliams-NFL-FA-94\",\"search_first_name\":\"mario\",\"rotowire_id\":4753,\"rotoworld_id\":3636,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Mario Williams\",\"sportradar_id\":\"3d1041d9-04d3-4942-8b91-467cb757de31\",\"pandascore_id\":null,\"yahoo_id\":7750,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Richlands (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mariowilliams\",\"birth_date\":\"1985-01-31\",\"espn_id\":9587},\"650\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025565\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606526429161,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"folk\",\"depth_chart_position\":\"K\",\"player_id\":\"650\",\"birth_city\":null,\"fantasy_data_id\":11694,\"years_exp\":13,\"hashtag\":\"#NickFolk-NFL-NE-6\",\"search_first_name\":\"nick\",\"rotowire_id\":5365,\"rotoworld_id\":4273,\"active\":true,\"search_rank\":554,\"age\":36,\"full_name\":\"Nick Folk\",\"sportradar_id\":\"b37c621e-1125-4c35-bea0-fcabb1527060\",\"pandascore_id\":null,\"yahoo_id\":8432,\"last_name\":\"Folk\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arizona\",\"high_school\":\"Notre Dame (CA)\",\"depth_chart_order\":1,\"stats_id\":213781,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickfolk\",\"birth_date\":\"1984-11-05\",\"espn_id\":10621},\"5511\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034580\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frey\",\"depth_chart_position\":null,\"player_id\":\"5511\",\"birth_city\":null,\"fantasy_data_id\":20258,\"years_exp\":2,\"hashtag\":\"#ChrisFrey-NFL-FA-50\",\"search_first_name\":\"chris\",\"rotowire_id\":13234,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Frey\",\"sportradar_id\":\"8488c04c-1972-415b-85b9-84829ee09f11\",\"pandascore_id\":null,\"yahoo_id\":31305,\"last_name\":\"Frey\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisfrey\",\"birth_date\":\"1995-06-23\",\"espn_id\":3121376},\"6183\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035272\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604018735751,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vanginkel\",\"depth_chart_position\":\"WLB\",\"player_id\":\"6183\",\"birth_city\":null,\"fantasy_data_id\":20971,\"years_exp\":1,\"hashtag\":\"#AndrewVanGinkel-NFL-MIA-43\",\"search_first_name\":\"andrew\",\"rotowire_id\":13887,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1613,\"age\":25,\"full_name\":\"Andrew Van Ginkel\",\"sportradar_id\":\"7b47d190-168b-44bc-bb91-a688fe28f768\",\"pandascore_id\":null,\"yahoo_id\":31983,\"last_name\":\"Van Ginkel\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Rock Valley (IA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewvanginkel\",\"birth_date\":\"1995-07-01\",\"espn_id\":3133487},\"6063\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035457\",\"first_name\":\"Tyron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606236353195,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6063\",\"birth_city\":null,\"fantasy_data_id\":20838,\"years_exp\":1,\"hashtag\":\"#TyronJohnson-NFL-LAC-83\",\"search_first_name\":\"tyron\",\"rotowire_id\":13615,\"rotoworld_id\":null,\"active\":true,\"search_rank\":530,\"age\":24,\"full_name\":\"Tyron Johnson\",\"sportradar_id\":\"064c4eda-1b10-40ac-a9d2-66caf76a213a\",\"pandascore_id\":null,\"yahoo_id\":32511,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Warren Easton (LA)\",\"depth_chart_order\":2,\"stats_id\":865567,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tyronjohnson\",\"birth_date\":\"1996-01-08\",\"espn_id\":3894912},\"6194\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rick\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spielman\",\"depth_chart_position\":null,\"player_id\":\"6194\",\"birth_city\":null,\"fantasy_data_id\":21095,\"years_exp\":0,\"hashtag\":\"#RickSpielman-NFL-FA-0\",\"search_first_name\":\"rick\",\"rotowire_id\":null,\"rotoworld_id\":9513,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rick Spielman\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Spielman\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rickspielman\",\"birth_date\":null,\"espn_id\":null},\"3104\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"depodesta\",\"depth_chart_position\":null,\"player_id\":\"3104\",\"birth_city\":null,\"fantasy_data_id\":17855,\"years_exp\":0,\"hashtag\":\"#PaulDepodesta-NFL-FA-0\",\"search_first_name\":\"paul\",\"rotowire_id\":null,\"rotoworld_id\":11217,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Paul Depodesta\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Depodesta\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"pauldepodesta\",\"birth_date\":null,\"espn_id\":null},\"160\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1520953801500,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"posluszny\",\"depth_chart_position\":null,\"player_id\":\"160\",\"birth_city\":null,\"fantasy_data_id\":4162,\"years_exp\":13,\"hashtag\":\"#PaulPosluszny-NFL-FA-51\",\"search_first_name\":\"paul\",\"rotowire_id\":5327,\"rotoworld_id\":4175,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Paul Posluszny\",\"sportradar_id\":\"da7b724b-44ae-4ed6-9317-2d355063c4c2\",\"pandascore_id\":null,\"yahoo_id\":8288,\"last_name\":\"Posluszny\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Hopewell (PA)\",\"depth_chart_order\":null,\"stats_id\":242013,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'2\\\"\",\"search_full_name\":\"paulposluszny\",\"birth_date\":\"1984-10-10\",\"espn_id\":10478},\"6833\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605721230010,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6833\",\"birth_city\":null,\"fantasy_data_id\":22076,\"years_exp\":0,\"hashtag\":\"#BryceHall-NFL-NYJ-37\",\"search_first_name\":\"bryce\",\"rotowire_id\":14445,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1907,\"age\":23,\"full_name\":\"Bryce Hall\",\"sportradar_id\":\"e81fcb68-e579-455f-9278-1bc28d5d332b\",\"pandascore_id\":null,\"yahoo_id\":32828,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Bishop McDevitt (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brycehall\",\"birth_date\":\"1997-05-11\",\"espn_id\":null},\"1515\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hepburn\",\"depth_chart_position\":null,\"player_id\":\"1515\",\"birth_city\":null,\"fantasy_data_id\":15124,\"years_exp\":1,\"hashtag\":\"#BrandonHepburn-NFL-FA-48\",\"search_first_name\":\"brandon\",\"rotowire_id\":8954,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Hepburn\",\"sportradar_id\":\"9861965c-14ab-4ec2-aa96-f873805cfff4\",\"pandascore_id\":null,\"yahoo_id\":26868,\"last_name\":\"Hepburn\",\"metadata\":null,\"college\":\"Florida A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonhepburn\",\"birth_date\":\"1989-12-06\",\"espn_id\":16009},\"1548\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030455\",\"first_name\":\"Star\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1595952031933,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"lotulelei\",\"depth_chart_position\":null,\"player_id\":\"1548\",\"birth_city\":null,\"fantasy_data_id\":15188,\"years_exp\":7,\"hashtag\":\"#StarLotulelei-NFL-BUF-98\",\"search_first_name\":\"star\",\"rotowire_id\":8668,\"rotoworld_id\":8431,\"active\":true,\"search_rank\":739,\"age\":30,\"full_name\":\"Star Lotulelei\",\"sportradar_id\":\"2d19098b-f154-4b28-976d-79182af014df\",\"pandascore_id\":null,\"yahoo_id\":26637,\"last_name\":\"Lotulelei\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Bingham (UT)\",\"depth_chart_order\":null,\"stats_id\":543761,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'2\\\"\",\"search_full_name\":\"starlotulelei\",\"birth_date\":\"1989-12-20\",\"espn_id\":15802},\"7423\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeMarkus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"acy\",\"depth_chart_position\":null,\"player_id\":\"7423\",\"birth_city\":null,\"fantasy_data_id\":22403,\"years_exp\":0,\"hashtag\":\"#DeMarkusAcy-NFL-SEA-49\",\"search_first_name\":\"demarkus\",\"rotowire_id\":14890,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"DeMarkus Acy\",\"sportradar_id\":\"84d191f1-ff1f-4413-a139-85868c3ee964\",\"pandascore_id\":null,\"yahoo_id\":33194,\"last_name\":\"Acy\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Wilmer-Hutchins (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"demarkusacy\",\"birth_date\":\"1998-04-29\",\"espn_id\":4035103},\"4164\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033559\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1595893529525,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":\"TE\",\"player_id\":\"4164\",\"birth_city\":null,\"fantasy_data_id\":19010,\"years_exp\":3,\"hashtag\":\"#MichaelRoberts-NFL-FA-0\",\"search_first_name\":\"michael\",\"rotowire_id\":11896,\"rotoworld_id\":12354,\"active\":true,\"search_rank\":1177,\"age\":26,\"full_name\":\"Michael Roberts\",\"sportradar_id\":\"bb9f0c5a-cbc2-43bb-9aa5-77cdc7e77bb6\",\"pandascore_id\":null,\"yahoo_id\":30240,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":10,\"stats_id\":749874,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelroberts\",\"birth_date\":\"1994-05-07\",\"espn_id\":3059945},\"5703\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034715\",\"first_name\":\"Deontez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566829220373,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5703\",\"birth_city\":null,\"fantasy_data_id\":20626,\"years_exp\":2,\"hashtag\":\"#DeontezAlexander-NFL-FA-16\",\"search_first_name\":\"deontez\",\"rotowire_id\":13309,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Deontez Alexander\",\"sportradar_id\":\"7ecb04f9-b8b7-419b-9f73-8a7f55804074\",\"pandascore_id\":null,\"yahoo_id\":31705,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Franklin\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":952047,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deontezalexander\",\"birth_date\":\"1996-07-25\",\"espn_id\":4055563},\"2961\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031852\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603593358312,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"andrews\",\"depth_chart_position\":\"C\",\"player_id\":\"2961\",\"birth_city\":null,\"fantasy_data_id\":17443,\"years_exp\":5,\"hashtag\":\"#DavidAndrews-NFL-NE-60\",\"search_first_name\":\"david\",\"rotowire_id\":10674,\"rotoworld_id\":10966,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"David Andrews\",\"sportradar_id\":\"94560629-fb01-43b5-b9ea-ca8372c18368\",\"pandascore_id\":null,\"yahoo_id\":28983,\"last_name\":\"Andrews\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Georgia\",\"high_school\":\"Wesleyan (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davidandrews\",\"birth_date\":\"1992-07-10\",\"espn_id\":2578529},\"7314\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominik\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1599693360018,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"eberle\",\"depth_chart_position\":\"K\",\"player_id\":\"7314\",\"birth_city\":null,\"fantasy_data_id\":22307,\"years_exp\":0,\"hashtag\":\"#DominikEberle-NFL-LV-5\",\"search_first_name\":\"dominik\",\"rotowire_id\":14903,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dominik Eberle\",\"sportradar_id\":\"2bd96d27-08b2-42b3-ad89-b01442c07fe2\",\"pandascore_id\":null,\"yahoo_id\":33352,\"last_name\":\"Eberle\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Redondo Union (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dominikeberle\",\"birth_date\":\"1996-07-04\",\"espn_id\":3932960},\"354\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027044\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1544979351384,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"354\",\"birth_city\":null,\"fantasy_data_id\":8435,\"years_exp\":11,\"hashtag\":\"#MichaelJohnson-NFL-FA-90\",\"search_first_name\":\"michael\",\"rotowire_id\":6061,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Michael Johnson\",\"sportradar_id\":\"f1769155-163f-40e5-b0a8-61c3ce0fbeac\",\"pandascore_id\":null,\"yahoo_id\":9334,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Dallas County (AL)\",\"depth_chart_order\":null,\"stats_id\":296883,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'7\\\"\",\"search_full_name\":\"michaeljohnson\",\"birth_date\":\"1987-02-07\",\"espn_id\":12436},\"3373\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032958\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1602964256676,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parks\",\"depth_chart_position\":\"S\",\"player_id\":\"3373\",\"birth_city\":null,\"fantasy_data_id\":18134,\"years_exp\":4,\"hashtag\":\"#WillParks-NFL-PHI-28\",\"search_first_name\":\"will\",\"rotowire_id\":11237,\"rotoworld_id\":11504,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Will Parks\",\"sportradar_id\":\"8a214c9b-8c31-48d0-a83a-039ec6ddbd9d\",\"pandascore_id\":null,\"yahoo_id\":29453,\"last_name\":\"Parks\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Germantown (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'1\\\"\",\"search_full_name\":\"willparks\",\"birth_date\":\"1994-07-29\",\"espn_id\":2971248},\"4198\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033572\",\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1606338902931,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"agnew\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4198\",\"birth_city\":null,\"fantasy_data_id\":19044,\"years_exp\":3,\"hashtag\":\"#JamalAgnew-NFL-DET-39\",\"search_first_name\":\"jamal\",\"rotowire_id\":12205,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1191,\"age\":25,\"full_name\":\"Jamal Agnew\",\"sportradar_id\":\"c871b3a8-72c4-425e-a357-2de37e033c8d\",\"pandascore_id\":null,\"yahoo_id\":30278,\"last_name\":\"Agnew\",\"metadata\":null,\"college\":\"San Diego\",\"high_school\":\"Point Loma (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jamalagnew\",\"birth_date\":\"1995-04-03\",\"espn_id\":3061612},\"3631\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032459\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1569994813915,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"neary\",\"depth_chart_position\":\"C\",\"player_id\":\"3631\",\"birth_city\":null,\"fantasy_data_id\":18418,\"years_exp\":4,\"hashtag\":\"#AaronNeary-NFL-CHI-62\",\"search_first_name\":\"aaron\",\"rotowire_id\":11427,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Aaron Neary\",\"sportradar_id\":\"2182217e-7580-4602-babb-c73beee0eb2b\",\"pandascore_id\":null,\"yahoo_id\":29627,\"last_name\":\"Neary\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":\"Hanford (WA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aaronneary\",\"birth_date\":\"1992-11-15\",\"espn_id\":2565338},\"2423\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031943\",\"first_name\":\"Ramik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1576954854618,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"RILB\",\"player_id\":\"2423\",\"birth_city\":null,\"fantasy_data_id\":16879,\"years_exp\":5,\"hashtag\":\"#RamikWilson-NFL-FA-52\",\"search_first_name\":\"ramik\",\"rotowire_id\":10361,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ramik Wilson\",\"sportradar_id\":\"5f727913-cfa9-44e5-89e4-e2a52dc11760\",\"pandascore_id\":null,\"yahoo_id\":28506,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Jefferson (FL)\",\"depth_chart_order\":3,\"stats_id\":607110,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ramikwilson\",\"birth_date\":\"1992-08-19\",\"espn_id\":2578565},\"6770\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606233951960,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"burrow\",\"depth_chart_position\":\"QB\",\"player_id\":\"6770\",\"birth_city\":null,\"fantasy_data_id\":21693,\"years_exp\":0,\"hashtag\":\"#JoeBurrow-NFL-CIN-9\",\"search_first_name\":\"joe\",\"rotowire_id\":14442,\"rotoworld_id\":14863,\"active\":true,\"search_rank\":138,\"age\":23,\"full_name\":\"Joe Burrow\",\"sportradar_id\":\"3023ac10-4e7f-425f-9fc5-2b8e6332c92e\",\"pandascore_id\":null,\"yahoo_id\":32671,\"last_name\":\"Burrow\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Athens (OH)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joeburrow\",\"birth_date\":\"1996-12-10\",\"espn_id\":3915511},\"2003\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030670\",\"first_name\":\"Bennie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603513253073,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fowler\",\"depth_chart_position\":\"SWR\",\"player_id\":\"2003\",\"birth_city\":null,\"fantasy_data_id\":16276,\"years_exp\":6,\"hashtag\":\"#BennieFowler-NFL-NO-16\",\"search_first_name\":\"bennie\",\"rotowire_id\":9353,\"rotoworld_id\":9826,\"active\":true,\"search_rank\":297,\"age\":29,\"full_name\":\"Bennie Fowler\",\"sportradar_id\":\"132721b4-fd32-4795-b214-ab4baaaceb3a\",\"pandascore_id\":null,\"yahoo_id\":27826,\"last_name\":\"Fowler\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Detroit Country Day (MI)\",\"depth_chart_order\":2,\"stats_id\":511509,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"benniefowler\",\"birth_date\":\"1991-06-10\",\"espn_id\":16995},\"239\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cullen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"239\",\"birth_city\":null,\"fantasy_data_id\":5984,\"years_exp\":17,\"hashtag\":\"#CullenJenkins-NFL-FA-73\",\"search_first_name\":\"cullen\",\"rotowire_id\":4368,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Cullen Jenkins\",\"sportradar_id\":\"c03249bc-b6d1-417a-968c-331e4431abc5\",\"pandascore_id\":null,\"yahoo_id\":7069,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Belleville (MI)\",\"depth_chart_order\":null,\"stats_id\":250916,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cullenjenkins\",\"birth_date\":\"1981-01-20\",\"espn_id\":5009},\"6863\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lavert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"6863\",\"birth_city\":null,\"fantasy_data_id\":22066,\"years_exp\":0,\"hashtag\":\"#LavertHill-NFL-KC-39\",\"search_first_name\":\"lavert\",\"rotowire_id\":14614,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1899,\"age\":22,\"full_name\":\"Lavert Hill\",\"sportradar_id\":\"208c5228-2b8d-414c-91a8-57d2fe4803b4\",\"pandascore_id\":null,\"yahoo_id\":32959,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Martin Luther King (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'11\\\"\",\"search_full_name\":\"laverthill\",\"birth_date\":\"1998-10-03\",\"espn_id\":4046538},\"4429\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"4429\",\"birth_city\":null,\"fantasy_data_id\":19289,\"years_exp\":2,\"hashtag\":\"#DwayneThomas-NFL-FA-29\",\"search_first_name\":\"dwayne\",\"rotowire_id\":12126,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dwayne Thomas\",\"sportradar_id\":\"31b3592b-0f90-48e7-a2bf-1d0e47e6606b\",\"pandascore_id\":null,\"yahoo_id\":30671,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dwaynethomas\",\"birth_date\":\"1993-08-22\",\"espn_id\":2976526},\"4546\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"voytek\",\"depth_chart_position\":null,\"player_id\":\"4546\",\"birth_city\":null,\"fantasy_data_id\":19426,\"years_exp\":2,\"hashtag\":\"#ZachVoytek-NFL-FA-68\",\"search_first_name\":\"zach\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Zach Voytek\",\"sportradar_id\":\"569e41d2-b53d-4b91-ab40-240f0ba3017f\",\"pandascore_id\":null,\"yahoo_id\":30606,\"last_name\":\"Voytek\",\"metadata\":null,\"college\":\"New Haven\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zachvoytek\",\"birth_date\":\"1994-07-08\",\"espn_id\":4220626},\"2345\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032218\",\"first_name\":\"Dorial\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1545423915118,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greenbeckham\",\"depth_chart_position\":null,\"player_id\":\"2345\",\"birth_city\":null,\"fantasy_data_id\":16801,\"years_exp\":5,\"hashtag\":\"#DorialGreenBeckham-NFL-FA-18\",\"search_first_name\":\"dorial\",\"rotowire_id\":10035,\"rotoworld_id\":10395,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Dorial Green-Beckham\",\"sportradar_id\":\"5a6b3b96-6785-4eb3-99b3-c51a96b9fb4d\",\"pandascore_id\":null,\"yahoo_id\":28428,\"last_name\":\"Green-Beckham\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Hillcrest (MO)\",\"depth_chart_order\":null,\"stats_id\":689897,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dorialgreenbeckham\",\"birth_date\":\"1993-04-12\",\"espn_id\":2971433},\"6159\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606192850000,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"weber\",\"depth_chart_position\":\"RB\",\"player_id\":\"6159\",\"birth_city\":null,\"fantasy_data_id\":20976,\"years_exp\":1,\"hashtag\":\"#MikeWeber-NFL-GB-38\",\"search_first_name\":\"mike\",\"rotowire_id\":13456,\"rotoworld_id\":14281,\"active\":true,\"search_rank\":1616,\"age\":23,\"full_name\":\"Mike Weber\",\"sportradar_id\":\"3f454d05-40b8-45a8-b195-ff2565b6c79e\",\"pandascore_id\":null,\"yahoo_id\":32050,\"last_name\":\"Weber\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Cass Tech (MI)\",\"depth_chart_order\":4,\"stats_id\":878778,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikeweber\",\"birth_date\":\"1997-08-25\",\"espn_id\":3915536},\"658\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023482\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1600442440156,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nugent\",\"depth_chart_position\":\"K\",\"player_id\":\"658\",\"birth_city\":null,\"fantasy_data_id\":11735,\"years_exp\":15,\"hashtag\":\"#MikeNugent-NFL-ARI-2\",\"search_first_name\":\"mike\",\"rotowire_id\":4441,\"rotoworld_id\":3160,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Mike Nugent\",\"sportradar_id\":\"e017e12b-07a7-4a35-b837-2faa9ffe3ce8\",\"pandascore_id\":null,\"yahoo_id\":7223,\"last_name\":\"Nugent\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Centerville (OH)\",\"depth_chart_order\":2,\"stats_id\":160391,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikenugent\",\"birth_date\":\"1982-03-02\",\"espn_id\":8461},\"7429\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597611913457,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":null,\"player_id\":\"7429\",\"birth_city\":null,\"fantasy_data_id\":22409,\"years_exp\":0,\"hashtag\":\"#MarcusWebb-NFL-FA-0\",\"search_first_name\":\"marcus\",\"rotowire_id\":15059,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Marcus Webb\",\"sportradar_id\":\"6ef80c9c-640a-4b0c-8333-98d0696b2d0a\",\"pandascore_id\":null,\"yahoo_id\":33290,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marcuswebb\",\"birth_date\":\"1997-09-04\",\"espn_id\":4039919},\"558\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027690\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535399709420,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"decker\",\"depth_chart_position\":null,\"player_id\":\"558\",\"birth_city\":null,\"fantasy_data_id\":11182,\"years_exp\":10,\"hashtag\":\"#EricDecker-NFL-FA-81\",\"search_first_name\":\"eric\",\"rotowire_id\":6505,\"rotoworld_id\":5819,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Eric Decker\",\"sportradar_id\":\"f35de60c-6841-4f8a-835e-02ba528be416\",\"pandascore_id\":null,\"yahoo_id\":24062,\"last_name\":\"Decker\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Rocori (MN)\",\"depth_chart_order\":null,\"stats_id\":298955,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ericdecker\",\"birth_date\":\"1987-03-15\",\"espn_id\":13271},\"3948\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"opoku\",\"depth_chart_position\":null,\"player_id\":\"3948\",\"birth_city\":null,\"fantasy_data_id\":18781,\"years_exp\":0,\"hashtag\":\"#AndrewOpoku-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":11674,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Andrew Opoku\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30077,\"last_name\":\"Opoku\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":541395,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewopoku\",\"birth_date\":\"1990-11-11\",\"espn_id\":2513048},\"1346\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030068\",\"first_name\":\"Marquise\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595960730062,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"goodwin\",\"depth_chart_position\":\"SWR\",\"player_id\":\"1346\",\"birth_city\":null,\"fantasy_data_id\":14865,\"years_exp\":7,\"hashtag\":\"#MarquiseGoodwin-NFL-PHI-13\",\"search_first_name\":\"marquise\",\"rotowire_id\":8807,\"rotoworld_id\":8461,\"active\":true,\"search_rank\":708,\"age\":30,\"full_name\":\"Marquise Goodwin\",\"sportradar_id\":\"bf52ff53-35a6-4696-ac6d-3fa952dc2c87\",\"pandascore_id\":null,\"yahoo_id\":26701,\"last_name\":\"Goodwin\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Rowlett (TX)\",\"depth_chart_order\":3,\"stats_id\":507478,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marquisegoodwin\",\"birth_date\":\"1990-11-19\",\"espn_id\":15839},\"2724\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031856\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1597194613516,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"2724\",\"birth_city\":null,\"fantasy_data_id\":17192,\"years_exp\":5,\"hashtag\":\"#BrandonKing-NFL-NE-36\",\"search_first_name\":\"brandon\",\"rotowire_id\":12194,\"rotoworld_id\":null,\"active\":true,\"search_rank\":928,\"age\":27,\"full_name\":\"Brandon King\",\"sportradar_id\":\"d5ed27ed-e5f3-4d4a-a8af-79887c1881a0\",\"pandascore_id\":null,\"yahoo_id\":28987,\"last_name\":\"King\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Auburn\",\"high_school\":\"Thompson (AL)\",\"depth_chart_order\":null,\"stats_id\":746886,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonking\",\"birth_date\":\"1993-06-08\",\"espn_id\":3051905},\"5977\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035313\",\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606192552014,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"godwin\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5977\",\"birth_city\":null,\"fantasy_data_id\":20775,\"years_exp\":1,\"hashtag\":\"#TerryGodwin-NFL-JAX-14\",\"search_first_name\":\"terry\",\"rotowire_id\":13619,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1539,\"age\":24,\"full_name\":\"Terry Godwin\",\"sportradar_id\":\"fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3\",\"pandascore_id\":null,\"yahoo_id\":32069,\"last_name\":\"Godwin\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Callaway (GA)\",\"depth_chart_order\":2,\"stats_id\":879072,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"terrygodwin\",\"birth_date\":\"1996-10-23\",\"espn_id\":3915174},\"2767\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jawon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chisholm\",\"depth_chart_position\":null,\"player_id\":\"2767\",\"birth_city\":null,\"fantasy_data_id\":17235,\"years_exp\":0,\"hashtag\":\"#JawonChisholm-NFL-FA-49\",\"search_first_name\":\"jawon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jawon Chisholm\",\"sportradar_id\":\"6afad985-2776-415a-b8ef-adb325f6f52a\",\"pandascore_id\":null,\"yahoo_id\":29172,\"last_name\":\"Chisholm\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":564412,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jawonchisholm\",\"birth_date\":\"1991-09-19\",\"espn_id\":3922022},\"4962\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034845\",\"first_name\":\"Sony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606063816643,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"michel\",\"depth_chart_position\":\"RB\",\"player_id\":\"4962\",\"birth_city\":null,\"fantasy_data_id\":19828,\"years_exp\":2,\"hashtag\":\"#SonyMichel-NFL-NE-26\",\"search_first_name\":\"sony\",\"rotowire_id\":12880,\"rotoworld_id\":13134,\"active\":true,\"search_rank\":85,\"age\":25,\"full_name\":\"Sony Michel\",\"sportradar_id\":\"1376da0d-0448-4a37-bd99-842c4580eeda\",\"pandascore_id\":null,\"yahoo_id\":31001,\"last_name\":\"Michel\",\"metadata\":{\"injury_override_regular_2020_5\":\"IR\"},\"college\":\"Georgia\",\"high_school\":\"American Heritage (FL)\",\"depth_chart_order\":3,\"stats_id\":823041,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sonymichel\",\"birth_date\":\"1995-02-17\",\"espn_id\":3128721},\"2018\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gottschalk\",\"depth_chart_position\":null,\"player_id\":\"2018\",\"birth_city\":null,\"fantasy_data_id\":16298,\"years_exp\":2,\"hashtag\":\"#BenGottschalk-NFL-FA-72\",\"search_first_name\":\"ben\",\"rotowire_id\":10171,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ben Gottschalk\",\"sportradar_id\":\"f7221a99-8596-4609-a136-f1c86c805e78\",\"pandascore_id\":null,\"yahoo_id\":28226,\"last_name\":\"Gottschalk\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bengottschalk\",\"birth_date\":\"1992-02-15\",\"espn_id\":17424},\"624\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eugene\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":null,\"player_id\":\"624\",\"birth_city\":null,\"fantasy_data_id\":11547,\"years_exp\":10,\"hashtag\":\"#EugeneSims-NFL-FA-97\",\"search_first_name\":\"eugene\",\"rotowire_id\":6763,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Eugene Sims\",\"sportradar_id\":\"5cf13fe1-ed32-4bf8-8d84-be874c2cd770\",\"pandascore_id\":null,\"yahoo_id\":24165,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"Mize (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'6\\\"\",\"search_full_name\":\"eugenesims\",\"birth_date\":\"1986-03-18\",\"espn_id\":13457},\"711\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leger\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1509496501427,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"douzable\",\"depth_chart_position\":null,\"player_id\":\"711\",\"birth_city\":null,\"fantasy_data_id\":12207,\"years_exp\":12,\"hashtag\":\"#LegerDouzable-NFL-FA-92\",\"search_first_name\":\"leger\",\"rotowire_id\":7053,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Leger Douzable\",\"sportradar_id\":\"f9fd70c0-a2ee-41da-aa51-1c426c058fa5\",\"pandascore_id\":null,\"yahoo_id\":9110,\"last_name\":\"Douzable\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Braulio Alonso (FL)\",\"depth_chart_order\":null,\"stats_id\":248230,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'4\\\"\",\"search_full_name\":\"legerdouzable\",\"birth_date\":\"1986-05-31\",\"espn_id\":11920},\"838\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027959\",\"first_name\":\"Phil\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1552530964296,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"838\",\"birth_city\":null,\"fantasy_data_id\":12885,\"years_exp\":9,\"hashtag\":\"#PhilTaylor-NFL-FA-99\",\"search_first_name\":\"phil\",\"rotowire_id\":7466,\"rotoworld_id\":6537,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Phil Taylor\",\"sportradar_id\":\"29eb7ecf-3967-4bc4-812f-9ffa947b34ff\",\"pandascore_id\":null,\"yahoo_id\":24808,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":356375,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'3\\\"\",\"search_full_name\":\"philtaylor\",\"birth_date\":\"1988-04-07\",\"espn_id\":13968},\"4434\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brisly\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1523925001661,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"estime\",\"depth_chart_position\":null,\"player_id\":\"4434\",\"birth_city\":null,\"fantasy_data_id\":19295,\"years_exp\":2,\"hashtag\":\"#BrislyEstime-NFL-FA-3\",\"search_first_name\":\"brisly\",\"rotowire_id\":12234,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brisly Estime\",\"sportradar_id\":\"1c2868ba-265d-4768-a0c0-3205f80b07bd\",\"pandascore_id\":null,\"yahoo_id\":30570,\"last_name\":\"Estime\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":739812,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brislyestime\",\"birth_date\":null,\"espn_id\":3039738},\"736\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joique\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"736\",\"birth_city\":null,\"fantasy_data_id\":12323,\"years_exp\":10,\"hashtag\":\"#JoiqueBell-NFL-FA-44\",\"search_first_name\":\"joique\",\"rotowire_id\":6489,\"rotoworld_id\":5986,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Joique Bell\",\"sportradar_id\":\"be9c9570-0c2f-4ea8-bcd4-cf298b7f14a8\",\"pandascore_id\":null,\"yahoo_id\":24262,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Wayne State, Mich.\",\"high_school\":\"Benton Harbor (MI)\",\"depth_chart_order\":null,\"stats_id\":511354,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joiquebell\",\"birth_date\":\"1986-08-04\",\"espn_id\":13536},\"1821\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031315\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536716402786,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hazel\",\"depth_chart_position\":null,\"player_id\":\"1821\",\"birth_city\":null,\"fantasy_data_id\":16012,\"years_exp\":6,\"hashtag\":\"#MattHazel-NFL-FA-83\",\"search_first_name\":\"matt\",\"rotowire_id\":9634,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Hazel\",\"sportradar_id\":\"eeb75eda-de43-401e-979b-2fbcc060c33c\",\"pandascore_id\":null,\"yahoo_id\":27718,\"last_name\":\"Hazel\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":\"North Augusta (SC)\",\"depth_chart_order\":null,\"stats_id\":557279,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"matthazel\",\"birth_date\":\"1992-01-23\",\"espn_id\":16870},\"TEN\":{\"team\":\"TEN\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"TEN\",\"last_name\":\"Titans\",\"injury_status\":null,\"first_name\":\"Tennessee\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"2554\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031632\",\"first_name\":\"Denzelle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603590657956,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"good\",\"depth_chart_position\":\"LG\",\"player_id\":\"2554\",\"birth_city\":null,\"fantasy_data_id\":17014,\"years_exp\":5,\"hashtag\":\"#DenzelleGood-NFL-LV-71\",\"search_first_name\":\"denzelle\",\"rotowire_id\":10512,\"rotoworld_id\":10626,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Denzelle Good\",\"sportradar_id\":\"9294afec-7804-41ba-b948-51a213705abb\",\"pandascore_id\":null,\"yahoo_id\":28643,\"last_name\":\"Good\",\"metadata\":null,\"college\":\"Mars Hill\",\"high_school\":\"Gaffney (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'5\\\"\",\"search_full_name\":\"denzellegood\",\"birth_date\":\"1991-03-08\",\"espn_id\":2985235},\"6739\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1601590503236,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nizialek\",\"depth_chart_position\":null,\"player_id\":\"6739\",\"birth_city\":null,\"fantasy_data_id\":21660,\"years_exp\":1,\"hashtag\":\"#CameronNizialek-NFL-ATL-6\",\"search_first_name\":\"cameron\",\"rotowire_id\":14348,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cameron Nizialek\",\"sportradar_id\":\"ee894f69-ff62-4f60-a5fb-5307fce1de73\",\"pandascore_id\":null,\"yahoo_id\":32650,\"last_name\":\"Nizialek\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Freedom (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cameronnizialek\",\"birth_date\":\"1995-03-10\",\"espn_id\":3072765},\"7387\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693362225,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"7387\",\"birth_city\":null,\"fantasy_data_id\":22373,\"years_exp\":0,\"hashtag\":\"#GeorgeCampbell-NFL-FA-0\",\"search_first_name\":\"george\",\"rotowire_id\":14944,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"George Campbell\",\"sportradar_id\":\"6cbc1162-39e7-439f-bdc0-f06775f50e6a\",\"pandascore_id\":null,\"yahoo_id\":33330,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'4\\\"\",\"search_full_name\":\"georgecampbell\",\"birth_date\":\"1996-10-12\",\"espn_id\":3692942},\"1838\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shamiel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gary\",\"depth_chart_position\":null,\"player_id\":\"1838\",\"birth_city\":null,\"fantasy_data_id\":16042,\"years_exp\":6,\"hashtag\":\"#ShamielGary-NFL-FA-37\",\"search_first_name\":\"shamiel\",\"rotowire_id\":10059,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Shamiel Gary\",\"sportradar_id\":\"bb65d12a-998a-4b34-a09c-1678b688d0b7\",\"pandascore_id\":null,\"yahoo_id\":27998,\"last_name\":\"Gary\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Washington\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shamielgary\",\"birth_date\":\"1990-05-31\",\"espn_id\":17154},\"2275\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031175\",\"first_name\":\"Cassius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605226214224,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marsh\",\"depth_chart_position\":null,\"player_id\":\"2275\",\"birth_city\":null,\"fantasy_data_id\":16688,\"years_exp\":6,\"hashtag\":\"#CassiusMarsh-NFL-IND-55\",\"search_first_name\":\"cassius\",\"rotowire_id\":9414,\"rotoworld_id\":9654,\"active\":true,\"search_rank\":845,\"age\":28,\"full_name\":\"Cassius Marsh\",\"sportradar_id\":\"a18446e0-c116-4d12-83d7-6b12c5fb983f\",\"pandascore_id\":null,\"yahoo_id\":27636,\"last_name\":\"Marsh\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Oaks Christian (CA)\",\"depth_chart_order\":null,\"stats_id\":553124,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cassiusmarsh\",\"birth_date\":\"1992-07-07\",\"espn_id\":16873},\"3395\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534210254069,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccalister\",\"depth_chart_position\":null,\"player_id\":\"3395\",\"birth_city\":null,\"fantasy_data_id\":18156,\"years_exp\":3,\"hashtag\":\"#AlexMcCalister-NFL-FA-59\",\"search_first_name\":\"alex\",\"rotowire_id\":11131,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alex McCalister\",\"sportradar_id\":\"9205c0c0-acb2-4414-b859-9f0315b7c7b2\",\"pandascore_id\":null,\"yahoo_id\":29474,\"last_name\":\"McCalister\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'6\\\"\",\"search_full_name\":\"alexmccalister\",\"birth_date\":\"1993-10-17\",\"espn_id\":2980111},\"4378\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"4378\",\"birth_city\":null,\"fantasy_data_id\":19235,\"years_exp\":2,\"hashtag\":\"#ThomasEvans-NFL-FA-60\",\"search_first_name\":\"thomas\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Thomas Evans\",\"sportradar_id\":\"0616620b-298e-4fc1-81f9-f8bedd0a272e\",\"pandascore_id\":null,\"yahoo_id\":30611,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"thomasevans\",\"birth_date\":\"1994-05-09\",\"espn_id\":2969030},\"5347\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034367\",\"first_name\":\"Nyheim\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606501503918,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hines\",\"depth_chart_position\":\"RB\",\"player_id\":\"5347\",\"birth_city\":null,\"fantasy_data_id\":19912,\"years_exp\":2,\"hashtag\":\"#NyheimHines-NFL-IND-21\",\"search_first_name\":\"nyheim\",\"rotowire_id\":12630,\"rotoworld_id\":13209,\"active\":true,\"search_rank\":182,\"age\":24,\"full_name\":\"Nyheim Hines\",\"sportradar_id\":\"ed5bcd2c-6335-4c0b-93b7-2116684a9b02\",\"pandascore_id\":null,\"yahoo_id\":31074,\"last_name\":\"Hines\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Garner (NC)\",\"depth_chart_order\":2,\"stats_id\":880146,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'9\\\"\",\"search_full_name\":\"nyheimhines\",\"birth_date\":\"1996-11-12\",\"espn_id\":3916430},\"6441\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035027\",\"first_name\":\"Jegs\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596408318517,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jegede\",\"depth_chart_position\":null,\"player_id\":\"6441\",\"birth_city\":null,\"fantasy_data_id\":21485,\"years_exp\":1,\"hashtag\":\"#JegsJegede-NFL-FA-0\",\"search_first_name\":\"jegs\",\"rotowire_id\":14095,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jegs Jegede\",\"sportradar_id\":\"4ce9600e-ee43-4b0a-becc-c8de646ff451\",\"pandascore_id\":null,\"yahoo_id\":32296,\"last_name\":\"Jegede\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jegsjegede\",\"birth_date\":\"1994-05-24\",\"espn_id\":4408860},\"6701\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035653\",\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564705565765,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trevillion\",\"depth_chart_position\":null,\"player_id\":\"6701\",\"birth_city\":null,\"fantasy_data_id\":21621,\"years_exp\":1,\"hashtag\":\"#FredTrevillion-NFL-FA-3\",\"search_first_name\":\"fred\",\"rotowire_id\":13920,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Fred Trevillion\",\"sportradar_id\":\"1309d5ee-0a38-4883-98cd-7533e4f3a195\",\"pandascore_id\":null,\"yahoo_id\":32614,\"last_name\":\"Trevillion\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":840699,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"fredtrevillion\",\"birth_date\":\"1994-10-13\",\"espn_id\":3139923},\"5931\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blace\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"5931\",\"birth_city\":null,\"fantasy_data_id\":21043,\"years_exp\":0,\"hashtag\":\"#BlaceBrown-NFL-FA-0\",\"search_first_name\":\"blace\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Blace Brown\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"blacebrown\",\"birth_date\":null,\"espn_id\":null},\"2106\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031076\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603927829429,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fales\",\"depth_chart_position\":\"QB\",\"player_id\":\"2106\",\"birth_city\":null,\"fantasy_data_id\":16430,\"years_exp\":6,\"hashtag\":\"#DavidFales-NFL-NYJ-3\",\"search_first_name\":\"david\",\"rotowire_id\":9318,\"rotoworld_id\":null,\"active\":true,\"search_rank\":583,\"age\":30,\"full_name\":\"David Fales\",\"sportradar_id\":\"eab69ec2-9cba-4783-8260-cf99121ed2c8\",\"pandascore_id\":null,\"yahoo_id\":27711,\"last_name\":\"Fales\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Palma (CA)\",\"depth_chart_order\":1,\"stats_id\":512431,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidfales\",\"birth_date\":\"1990-10-04\",\"espn_id\":16821},\"3272\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032399\",\"first_name\":\"Miles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603932629916,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"killebrew\",\"depth_chart_position\":\"FS\",\"player_id\":\"3272\",\"birth_city\":null,\"fantasy_data_id\":18033,\"years_exp\":4,\"hashtag\":\"#MilesKillebrew-NFL-DET-35\",\"search_first_name\":\"miles\",\"rotowire_id\":11091,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1001,\"age\":27,\"full_name\":\"Miles Killebrew\",\"sportradar_id\":\"4419b655-867f-436b-8233-6d45f4dfef77\",\"pandascore_id\":null,\"yahoo_id\":29345,\"last_name\":\"Killebrew\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":\"Foothill (NV)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mileskillebrew\",\"birth_date\":\"1993-05-10\",\"espn_id\":2575164},\"1066\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029215\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603466152759,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"iloka\",\"depth_chart_position\":null,\"player_id\":\"1066\",\"birth_city\":null,\"fantasy_data_id\":13868,\"years_exp\":8,\"hashtag\":\"#GeorgeIloka-NFL-MIN-43\",\"search_first_name\":\"george\",\"rotowire_id\":8335,\"rotoworld_id\":7502,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"George Iloka\",\"sportradar_id\":\"2b9494e4-953a-4aac-afe7-edd2d7be27da\",\"pandascore_id\":null,\"yahoo_id\":25877,\"last_name\":\"Iloka\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Kempner (TX)\",\"depth_chart_order\":null,\"stats_id\":449634,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"georgeiloka\",\"birth_date\":\"1990-03-31\",\"espn_id\":15085},\"6415\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035364\",\"first_name\":\"Donnell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1588107619412,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":null,\"player_id\":\"6415\",\"birth_city\":null,\"fantasy_data_id\":21155,\"years_exp\":1,\"hashtag\":\"#DonnellGreene-NFL-FA-0\",\"search_first_name\":\"donnell\",\"rotowire_id\":13858,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Donnell Greene\",\"sportradar_id\":\"1247fbf3-500a-42e2-a323-7a3d4a006984\",\"pandascore_id\":null,\"yahoo_id\":32090,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'5\\\"\",\"search_full_name\":\"donnellgreene\",\"birth_date\":\"1995-11-09\",\"espn_id\":4034773},\"4622\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033681\",\"first_name\":\"Keelan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606520128725,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4622\",\"birth_city\":null,\"fantasy_data_id\":19514,\"years_exp\":3,\"hashtag\":\"#KeelanCole-NFL-JAX-84\",\"search_first_name\":\"keelan\",\"rotowire_id\":12388,\"rotoworld_id\":12539,\"active\":true,\"search_rank\":233,\"age\":27,\"full_name\":\"Keelan Cole\",\"sportradar_id\":\"a8c96abf-a911-47a0-ac16-dd51a8782b5e\",\"pandascore_id\":null,\"yahoo_id\":30396,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"Kentucky Wesleyan\",\"high_school\":\"Central (KY)\",\"depth_chart_order\":1,\"stats_id\":791008,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keelancole\",\"birth_date\":\"1993-04-20\",\"espn_id\":3071572},\"3572\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bonnet\",\"depth_chart_position\":null,\"player_id\":\"3572\",\"birth_city\":null,\"fantasy_data_id\":18347,\"years_exp\":1,\"hashtag\":\"#AndrewBonnet-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":11726,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andrew Bonnet\",\"sportradar_id\":\"e69160cd-25eb-44ce-aeb5-e19a9a095943\",\"pandascore_id\":null,\"yahoo_id\":29499,\"last_name\":\"Bonnet\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andrewbonnet\",\"birth_date\":\"1992-12-27\",\"espn_id\":2573098},\"5281\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"5281\",\"birth_city\":null,\"fantasy_data_id\":20350,\"years_exp\":0,\"hashtag\":\"#TroyWilliams-NFL-FA-3\",\"search_first_name\":\"troy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Troy Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"troywilliams\",\"birth_date\":null,\"espn_id\":3045292},\"3446\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032727\",\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598406039803,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"heath\",\"depth_chart_position\":null,\"player_id\":\"3446\",\"birth_city\":null,\"fantasy_data_id\":18210,\"years_exp\":4,\"hashtag\":\"#JoelHeath-NFL-DEN-95\",\"search_first_name\":\"joel\",\"rotowire_id\":11055,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joel Heath\",\"sportradar_id\":\"30f9ff1e-e66c-40b4-b6a0-46186de3b932\",\"pandascore_id\":null,\"yahoo_id\":29794,\"last_name\":\"Heath\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan State\",\"high_school\":\"Mount Healthy (OH)\",\"depth_chart_order\":null,\"stats_id\":606108,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joelheath\",\"birth_date\":\"1993-06-18\",\"espn_id\":2576267},\"7516\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1604781309346,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"niswander\",\"depth_chart_position\":null,\"player_id\":\"7516\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#HunterNiswander-NFL-DAL-1\",\"search_first_name\":\"hunter\",\"rotowire_id\":15206,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":null,\"full_name\":\"Hunter Niswander\",\"sportradar_id\":\"48efc038-96b7-4c63-a33c-41f6abe6d3de\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Niswander\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Woodridge (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hunterniswander\",\"birth_date\":null,\"espn_id\":null},\"4214\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033573\",\"first_name\":\"Shelton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605913803423,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gibson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4214\",\"birth_city\":null,\"fantasy_data_id\":19060,\"years_exp\":3,\"hashtag\":\"#SheltonGibson-NFL-CAR-84\",\"search_first_name\":\"shelton\",\"rotowire_id\":11721,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1200,\"age\":26,\"full_name\":\"Shelton Gibson\",\"sportradar_id\":\"c58e6a2c-2206-4d42-b368-fe6f0ecb1262\",\"pandascore_id\":null,\"yahoo_id\":30279,\"last_name\":\"Gibson\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Cleveland Heights (OH)\",\"depth_chart_order\":10,\"stats_id\":739691,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sheltongibson\",\"birth_date\":\"1994-03-20\",\"espn_id\":3042417},\"5645\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034445\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599939625492,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gates\",\"depth_chart_position\":\"C\",\"player_id\":\"5645\",\"birth_city\":null,\"fantasy_data_id\":20337,\"years_exp\":2,\"hashtag\":\"#NickGates-NFL-NYG-65\",\"search_first_name\":\"nick\",\"rotowire_id\":12502,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nick Gates\",\"sportradar_id\":\"8fcc6939-9e67-44bf-b9c9-effaeaf2bae0\",\"pandascore_id\":null,\"yahoo_id\":31554,\"last_name\":\"Gates\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Bishop Gorman (NV)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nickgates\",\"birth_date\":\"1995-11-27\",\"espn_id\":3116096},\"2706\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2706\",\"birth_city\":null,\"fantasy_data_id\":17174,\"years_exp\":5,\"hashtag\":\"#TerryWilliams-NFL-FA-79\",\"search_first_name\":\"terry\",\"rotowire_id\":10616,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Terry Williams\",\"sportradar_id\":\"53a4bc25-b2d0-4492-8c8d-e51e192ff1b5\",\"pandascore_id\":null,\"yahoo_id\":29049,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Grayson\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'1\\\"\",\"search_full_name\":\"terrywilliams\",\"birth_date\":\"1992-04-15\",\"espn_id\":2511658},\"3671\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":\"C\",\"player_id\":\"3671\",\"birth_city\":null,\"fantasy_data_id\":18471,\"years_exp\":0,\"hashtag\":\"#JakeReed-NFL-FA-69\",\"search_first_name\":\"jake\",\"rotowire_id\":11348,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jake Reed\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29657,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jakereed\",\"birth_date\":\"1992-08-26\",\"espn_id\":null},\"2538\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gerod\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holliman\",\"depth_chart_position\":null,\"player_id\":\"2538\",\"birth_city\":null,\"fantasy_data_id\":16998,\"years_exp\":0,\"hashtag\":\"#GerodHolliman-NFL-FA-28\",\"search_first_name\":\"gerod\",\"rotowire_id\":10394,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Gerod Holliman\",\"sportradar_id\":\"c5ff1f50-abc4-4106-826a-98649d194e2d\",\"pandascore_id\":null,\"yahoo_id\":28627,\"last_name\":\"Holliman\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gerodholliman\",\"birth_date\":\"1994-05-06\",\"espn_id\":2970179},\"1277\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029696\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewisharris\",\"depth_chart_position\":null,\"player_id\":\"1277\",\"birth_city\":null,\"fantasy_data_id\":14721,\"years_exp\":8,\"hashtag\":\"#ChrisLewisHarris-NFL-FA-39\",\"search_first_name\":\"chris\",\"rotowire_id\":8566,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Chris Lewis-Harris\",\"sportradar_id\":\"08b0d908-ad25-4b05-8b44-8c60eabb76a8\",\"pandascore_id\":null,\"yahoo_id\":26571,\"last_name\":\"Lewis-Harris\",\"metadata\":null,\"college\":\"Chattanooga\",\"high_school\":\"Campbell (GA)\",\"depth_chart_order\":null,\"stats_id\":387763,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'10\\\"\",\"search_full_name\":\"chrislewisharris\",\"birth_date\":\"1989-02-11\",\"espn_id\":15713},\"2254\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Asante\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1521223501847,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cleveland\",\"depth_chart_position\":null,\"player_id\":\"2254\",\"birth_city\":null,\"fantasy_data_id\":16663,\"years_exp\":6,\"hashtag\":\"#AsanteCleveland-NFL-FA-45\",\"search_first_name\":\"asante\",\"rotowire_id\":9991,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Asante Cleveland\",\"sportradar_id\":\"7038b15b-254b-4792-a51b-c8566d26501f\",\"pandascore_id\":null,\"yahoo_id\":28147,\"last_name\":\"Cleveland\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Christian Brothers (CA)\",\"depth_chart_order\":null,\"stats_id\":556207,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"asantecleveland\",\"birth_date\":\"1992-03-21\",\"espn_id\":17125},\"5709\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034737\",\"first_name\":\"Luis\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1567292406757,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perez\",\"depth_chart_position\":\"QB\",\"player_id\":\"5709\",\"birth_city\":null,\"fantasy_data_id\":20507,\"years_exp\":2,\"hashtag\":\"#LuisPerez-NFL-FA-9\",\"search_first_name\":\"luis\",\"rotowire_id\":13078,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Luis Perez\",\"sportradar_id\":\"90395591-32e3-42e8-962f-1f82f7cd6e75\",\"pandascore_id\":null,\"yahoo_id\":31734,\"last_name\":\"Perez\",\"metadata\":null,\"college\":\"Texas A&M-Commerce\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":895714,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'2\\\"\",\"search_full_name\":\"luisperez\",\"birth_date\":\"1994-08-26\",\"espn_id\":4290778},\"4229\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033798\",\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599702643741,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schreck\",\"depth_chart_position\":\"TE\",\"player_id\":\"4229\",\"birth_city\":null,\"fantasy_data_id\":19075,\"years_exp\":3,\"hashtag\":\"#MasonSchreck-NFL-CIN-86\",\"search_first_name\":\"mason\",\"rotowire_id\":12224,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1209,\"age\":27,\"full_name\":\"Mason Schreck\",\"sportradar_id\":\"ca6c7b35-6ae1-4ba7-ae98-1f26174e407d\",\"pandascore_id\":null,\"yahoo_id\":30364,\"last_name\":\"Schreck\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Medina (OH)\",\"depth_chart_order\":3,\"stats_id\":694088,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'5\\\"\",\"search_full_name\":\"masonschreck\",\"birth_date\":\"1993-11-04\",\"espn_id\":2972331},\"4476\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033430\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602381309878,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mabin\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4476\",\"birth_city\":null,\"fantasy_data_id\":19344,\"years_exp\":3,\"hashtag\":\"#GregMabin-NFL-JAX-38\",\"search_first_name\":\"greg\",\"rotowire_id\":12406,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1256,\"age\":26,\"full_name\":\"Greg Mabin\",\"sportradar_id\":\"593d31fd-212e-47a5-b3cc-0793cf075a98\",\"pandascore_id\":null,\"yahoo_id\":30477,\"last_name\":\"Mabin\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Iowa\",\"high_school\":\"Calvary Christian Academy (FL)\",\"depth_chart_order\":3,\"stats_id\":691797,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"gregmabin\",\"birth_date\":\"1994-06-25\",\"espn_id\":2979515},\"7234\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693362216,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ffrench\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7234\",\"birth_city\":null,\"fantasy_data_id\":22235,\"years_exp\":0,\"hashtag\":\"#MauriceFfrench-NFL-KC-89\",\"search_first_name\":\"maurice\",\"rotowire_id\":14943,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Maurice Ffrench\",\"sportradar_id\":\"7c9e5221-50be-4c58-89f9-aa61cf67ed25\",\"pandascore_id\":null,\"yahoo_id\":32944,\"last_name\":\"Ffrench\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"New Brunswick (NJ)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mauriceffrench\",\"birth_date\":\"1998-01-01\",\"espn_id\":4036055},\"4188\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033512\",\"first_name\":\"Damontae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602109828541,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"kazee\",\"depth_chart_position\":null,\"player_id\":\"4188\",\"birth_city\":null,\"fantasy_data_id\":19034,\"years_exp\":3,\"hashtag\":\"#DamontaeKazee-NFL-ATL-27\",\"search_first_name\":\"damontae\",\"rotowire_id\":12019,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1188,\"age\":27,\"full_name\":\"Damontae Kazee\",\"sportradar_id\":\"f9c86838-11e5-4582-a03e-c15e02b2013c\",\"pandascore_id\":null,\"yahoo_id\":30262,\"last_name\":\"Kazee\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Cajon (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damontaekazee\",\"birth_date\":\"1993-06-05\",\"espn_id\":2976099},\"4898\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schneider\",\"depth_chart_position\":null,\"player_id\":\"4898\",\"birth_city\":null,\"fantasy_data_id\":19795,\"years_exp\":0,\"hashtag\":\"#ChrisSchneider-NFL-CLE-67\",\"search_first_name\":\"chris\",\"rotowire_id\":12903,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Chris Schneider\",\"sportradar_id\":\"bc672876-7d12-4277-a149-88d20bb4668f\",\"pandascore_id\":null,\"yahoo_id\":30965,\"last_name\":\"Schneider\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrisschneider\",\"birth_date\":null,\"espn_id\":3050009},\"6134\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035128\",\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1595812824072,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"willis\",\"depth_chart_position\":\"NT\",\"player_id\":\"6134\",\"birth_city\":null,\"fantasy_data_id\":20992,\"years_exp\":1,\"hashtag\":\"#GeraldWillis-NFL-FA-0\",\"search_first_name\":\"gerald\",\"rotowire_id\":13747,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1625,\"age\":25,\"full_name\":\"Gerald Willis\",\"sportradar_id\":\"f042a554-0303-4cbb-8ca3-b56281664b7f\",\"pandascore_id\":null,\"yahoo_id\":32308,\"last_name\":\"Willis\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"geraldwillis\",\"birth_date\":\"1995-08-23\",\"espn_id\":3115258},\"71\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"avant\",\"depth_chart_position\":null,\"player_id\":\"71\",\"birth_city\":null,\"fantasy_data_id\":1986,\"years_exp\":14,\"hashtag\":\"#JasonAvant-NFL-FA-81\",\"search_first_name\":\"jason\",\"rotowire_id\":4823,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Jason Avant\",\"sportradar_id\":\"931650e1-49dd-4d38-a5e7-d45a11529d00\",\"pandascore_id\":null,\"yahoo_id\":7858,\"last_name\":\"Avant\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Carver (IL)\",\"depth_chart_order\":null,\"stats_id\":215489,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jasonavant\",\"birth_date\":\"1983-04-20\",\"espn_id\":9695},\"2054\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"underwood\",\"depth_chart_position\":null,\"player_id\":\"2054\",\"birth_city\":null,\"fantasy_data_id\":16352,\"years_exp\":1,\"hashtag\":\"#ColtonUnderwood-NFL-FA-87\",\"search_first_name\":\"colton\",\"rotowire_id\":10103,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Colton Underwood\",\"sportradar_id\":\"80dd76ab-42f0-4440-8db5-e6f3e4f18f0c\",\"pandascore_id\":null,\"yahoo_id\":27858,\"last_name\":\"Underwood\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"coltonunderwood\",\"birth_date\":\"1992-01-26\",\"espn_id\":17047},\"4156\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033287\",\"first_name\":\"Nico\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564689019665,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"siragusa\",\"depth_chart_position\":null,\"player_id\":\"4156\",\"birth_city\":null,\"fantasy_data_id\":19002,\"years_exp\":3,\"hashtag\":\"#NicoSiragusa-NFL-FA-66\",\"search_first_name\":\"nico\",\"rotowire_id\":11819,\"rotoworld_id\":12279,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nico Siragusa\",\"sportradar_id\":\"6b01960b-1a92-4aec-a262-db57ca85c22b\",\"pandascore_id\":null,\"yahoo_id\":30235,\"last_name\":\"Siragusa\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nicosiragusa\",\"birth_date\":\"1994-05-10\",\"espn_id\":2976113},\"6195\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034915\",\"first_name\":\"Damon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566082237614,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sheehyguiseppi\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6195\",\"birth_city\":null,\"fantasy_data_id\":21096,\"years_exp\":1,\"hashtag\":\"#DamonSheehyGuiseppi-NFL-FA-15\",\"search_first_name\":\"damon\",\"rotowire_id\":13929,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Damon Sheehy-Guiseppi\",\"sportradar_id\":\"66d4dece-9484-4970-b97a-5d26eec3c9d1\",\"pandascore_id\":null,\"yahoo_id\":31821,\"last_name\":\"Sheehy-Guiseppi\",\"metadata\":null,\"college\":\"-\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":1164241,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damonsheehyguiseppi\",\"birth_date\":\"1995-02-15\",\"espn_id\":4420843},\"4242\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033301\",\"first_name\":\"Kofi\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576025747366,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"amichia\",\"depth_chart_position\":\"LG\",\"player_id\":\"4242\",\"birth_city\":null,\"fantasy_data_id\":19088,\"years_exp\":3,\"hashtag\":\"#KofiAmichia-NFL-FA-0\",\"search_first_name\":\"kofi\",\"rotowire_id\":12212,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kofi Amichia\",\"sportradar_id\":\"9cdc17a0-1cd2-43b5-948a-579a993a30fc\",\"pandascore_id\":null,\"yahoo_id\":30325,\"last_name\":\"Amichia\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kofiamichia\",\"birth_date\":\"1994-07-29\",\"espn_id\":2980036},\"4768\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1536116407908,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zaruba\",\"depth_chart_position\":null,\"player_id\":\"4768\",\"birth_city\":null,\"fantasy_data_id\":19686,\"years_exp\":3,\"hashtag\":\"#AdamZaruba-NFL-FA-80\",\"search_first_name\":\"adam\",\"rotowire_id\":12306,\"rotoworld_id\":12993,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Adam Zaruba\",\"sportradar_id\":\"1f8b148f-fbc2-4a1f-a9b1-51c355664710\",\"pandascore_id\":null,\"yahoo_id\":30908,\"last_name\":\"Zaruba\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":926817,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"adamzaruba\",\"birth_date\":\"1991-03-31\",\"espn_id\":4242607},\"7337\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Easop\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693357478,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"winstonjr\",\"depth_chart_position\":null,\"player_id\":\"7337\",\"birth_city\":null,\"fantasy_data_id\":21724,\"years_exp\":0,\"hashtag\":\"#EasopWinstonJr-NFL-FA-0\",\"search_first_name\":\"easop\",\"rotowire_id\":14817,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Easop Winston Jr.\",\"sportradar_id\":\"495dfd2f-adc6-4ea0-a830-0513db2c1477\",\"pandascore_id\":null,\"yahoo_id\":33299,\"last_name\":\"Winston Jr.\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"easopwinstonjr\",\"birth_date\":\"1996-12-10\",\"espn_id\":4245174},\"5837\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Redford\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1557100507499,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"5837\",\"birth_city\":null,\"fantasy_data_id\":20727,\"years_exp\":0,\"hashtag\":\"#RedfordJones-NFL-FA-6\",\"search_first_name\":\"redford\",\"rotowire_id\":13827,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Redford Jones\",\"sportradar_id\":\"b893faf2-b13f-4177-b62e-1d2e1e7ba087\",\"pandascore_id\":null,\"yahoo_id\":31812,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":824434,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"redfordjones\",\"birth_date\":\"1994-07-25\",\"espn_id\":3060823},\"4124\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033783\",\"first_name\":\"Ahkello\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602442218500,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"witherspoon\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4124\",\"birth_city\":null,\"fantasy_data_id\":18970,\"years_exp\":3,\"hashtag\":\"#AhkelloWitherspoon-NFL-SF-23\",\"search_first_name\":\"ahkello\",\"rotowire_id\":12038,\"rotoworld_id\":12304,\"active\":true,\"search_rank\":1158,\"age\":25,\"full_name\":\"Ahkello Witherspoon\",\"sportradar_id\":\"a80f1b08-3977-48b6-97e0-5991ca26bfae\",\"pandascore_id\":null,\"yahoo_id\":30179,\"last_name\":\"Witherspoon\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Christian Brothers (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ahkellowitherspoon\",\"birth_date\":\"1995-03-21\",\"espn_id\":3122630},\"5797\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1563581419918,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":null,\"player_id\":\"5797\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":1,\"hashtag\":\"#DuplicatePlayer-NFL-DEN-45\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":31792,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'2\\\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":\"1991-12-24\",\"espn_id\":null},\"6284\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034993\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605918603859,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"epps\",\"depth_chart_position\":\"SS\",\"player_id\":\"6284\",\"birth_city\":null,\"fantasy_data_id\":21133,\"years_exp\":1,\"hashtag\":\"#MarcusEpps-NFL-PHI-22\",\"search_first_name\":\"marcus\",\"rotowire_id\":13985,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1676,\"age\":24,\"full_name\":\"Marcus Epps\",\"sportradar_id\":\"4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b\",\"pandascore_id\":null,\"yahoo_id\":32023,\"last_name\":\"Epps\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Edison (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcusepps\",\"birth_date\":\"1996-01-27\",\"espn_id\":3139368},\"1939\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"1939\",\"birth_city\":null,\"fantasy_data_id\":16181,\"years_exp\":5,\"hashtag\":\"#DerelWalker-NFL-FA-87\",\"search_first_name\":\"derel\",\"rotowire_id\":11705,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Derel Walker\",\"sportradar_id\":\"73c5d36b-190f-4026-98b3-5605035ba084\",\"pandascore_id\":null,\"yahoo_id\":27951,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653763,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"derelwalker\",\"birth_date\":\"1991-06-29\",\"espn_id\":17275},\"6663\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Micah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1558564864001,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"6663\",\"birth_city\":null,\"fantasy_data_id\":21387,\"years_exp\":1,\"hashtag\":\"#MicahWright-NFL-NO-10\",\"search_first_name\":\"micah\",\"rotowire_id\":14300,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Micah Wright\",\"sportradar_id\":\"58bf55ae-9dee-4875-8e21-b26e274ba22d\",\"pandascore_id\":null,\"yahoo_id\":32599,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830341,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"micahwright\",\"birth_date\":null,\"espn_id\":3120558},\"4658\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033734\",\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"DL\",\"DB\"],\"news_updated\":1605470712692,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perry\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4658\",\"birth_city\":null,\"fantasy_data_id\":19557,\"years_exp\":3,\"hashtag\":\"#JamalPerry-NFL-MIA-33\",\"search_first_name\":\"jamal\",\"rotowire_id\":12930,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jamal Perry\",\"sportradar_id\":\"8d56094a-7aaa-45fd-bfb1-348f2a994d99\",\"pandascore_id\":null,\"yahoo_id\":30716,\"last_name\":\"Perry\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jamalperry\",\"birth_date\":\"1994-10-23\",\"espn_id\":3892777},\"5548\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532652601533,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marks\",\"depth_chart_position\":null,\"player_id\":\"5548\",\"birth_city\":null,\"fantasy_data_id\":20496,\"years_exp\":1,\"hashtag\":\"#ElijahMarks-NFL-KC-85\",\"search_first_name\":\"elijah\",\"rotowire_id\":13171,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1052,\"age\":null,\"full_name\":\"Elijah Marks\",\"sportradar_id\":\"91bb9bd8-633c-4c6d-9dc6-e13d889162d9\",\"pandascore_id\":null,\"yahoo_id\":31492,\"last_name\":\"Marks\",\"metadata\":null,\"college\":\"Northern Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":838626,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"elijahmarks\",\"birth_date\":null,\"espn_id\":3119490},\"1026\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"1026\",\"birth_city\":null,\"fantasy_data_id\":13719,\"years_exp\":8,\"hashtag\":\"#BryceBrown-NFL-FA-36\",\"search_first_name\":\"bryce\",\"rotowire_id\":8053,\"rotoworld_id\":7670,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bryce Brown\",\"sportradar_id\":\"0fe335a8-e061-4d48-9c3e-e5736fcd5a40\",\"pandascore_id\":null,\"yahoo_id\":25939,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Wichita East (KS)\",\"depth_chart_order\":null,\"stats_id\":501881,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brycebrown\",\"birth_date\":\"1991-05-14\",\"espn_id\":15092},\"3719\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flores\",\"depth_chart_position\":null,\"player_id\":\"3719\",\"birth_city\":null,\"fantasy_data_id\":18527,\"years_exp\":1,\"hashtag\":\"#JacobFlores-NFL-FA-53\",\"search_first_name\":\"jacob\",\"rotowire_id\":11444,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jacob Flores\",\"sportradar_id\":\"71d5dea4-0459-4355-adc5-a9519295d837\",\"pandascore_id\":null,\"yahoo_id\":29726,\"last_name\":\"Flores\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacobflores\",\"birth_date\":\"1993-11-25\",\"espn_id\":null},\"780\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"780\",\"birth_city\":null,\"fantasy_data_id\":12636,\"years_exp\":11,\"hashtag\":\"#TonyCarter-NFL-FA-37\",\"search_first_name\":\"tony\",\"rotowire_id\":7235,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Tony Carter\",\"sportradar_id\":\"1e436b1f-6706-45be-b1b6-ce2969df48fe\",\"pandascore_id\":null,\"yahoo_id\":9608,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Mandarin (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"tonycarter\",\"birth_date\":\"1986-05-24\",\"espn_id\":12771},\"6979\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damar\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamlin\",\"depth_chart_position\":null,\"player_id\":\"6979\",\"birth_city\":null,\"fantasy_data_id\":22097,\"years_exp\":0,\"hashtag\":\"#DamarHamlin-NFL-FA-0\",\"search_first_name\":\"damar\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Damar Hamlin\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hamlin\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"damarhamlin\",\"birth_date\":null,\"espn_id\":null},\"2282\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031332\",\"first_name\":\"Fitzgerald\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535991737585,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toussaint\",\"depth_chart_position\":null,\"player_id\":\"2282\",\"birth_city\":null,\"fantasy_data_id\":16699,\"years_exp\":6,\"hashtag\":\"#FitzgeraldToussaint-NFL-FA-33\",\"search_first_name\":\"fitzgerald\",\"rotowire_id\":9841,\"rotoworld_id\":10209,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Fitzgerald Toussaint\",\"sportradar_id\":\"0e166068-5f25-488e-9115-4d1146de184a\",\"pandascore_id\":null,\"yahoo_id\":28283,\"last_name\":\"Toussaint\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Liberty (OH)\",\"depth_chart_order\":null,\"stats_id\":511496,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'9\\\"\",\"search_full_name\":\"fitzgeraldtoussaint\",\"birth_date\":\"1990-05-04\",\"espn_id\":17465},\"4716\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033863\",\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603330842163,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"skipper\",\"depth_chart_position\":null,\"player_id\":\"4716\",\"birth_city\":null,\"fantasy_data_id\":19624,\"years_exp\":3,\"hashtag\":\"#DanSkipper-NFL-DET-70\",\"search_first_name\":\"dan\",\"rotowire_id\":11820,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dan Skipper\",\"sportradar_id\":\"8106a0d3-1cc9-4038-8c1b-9c7886a6bcba\",\"pandascore_id\":null,\"yahoo_id\":30870,\"last_name\":\"Skipper\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Ralston Valley (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'9\\\"\",\"search_full_name\":\"danskipper\",\"birth_date\":\"1994-09-20\",\"espn_id\":3046435},\"1048\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029615\",\"first_name\":\"Lamar\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605659126436,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"RB\",\"player_id\":\"1048\",\"birth_city\":null,\"fantasy_data_id\":13791,\"years_exp\":8,\"hashtag\":\"#LamarMiller-NFL-CHI-25\",\"search_first_name\":\"lamar\",\"rotowire_id\":8008,\"rotoworld_id\":7408,\"active\":true,\"search_rank\":661,\"age\":29,\"full_name\":\"Lamar Miller\",\"sportradar_id\":\"a212c5d8-67f8-48b9-99be-2c121ee56366\",\"pandascore_id\":null,\"yahoo_id\":25807,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Killian (FL)\",\"depth_chart_order\":2,\"stats_id\":508924,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'10\\\"\",\"search_full_name\":\"lamarmiller\",\"birth_date\":\"1991-04-25\",\"espn_id\":14886},\"1327\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029010\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597273804720,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leary\",\"depth_chart_position\":null,\"player_id\":\"1327\",\"birth_city\":null,\"fantasy_data_id\":14826,\"years_exp\":8,\"hashtag\":\"#RonaldLeary-NFL-FA-65\",\"search_first_name\":\"ronald\",\"rotowire_id\":8248,\"rotoworld_id\":7804,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ronald Leary\",\"sportradar_id\":\"1d127c62-d7f3-4fe5-b30d-9b7a9cef6637\",\"pandascore_id\":null,\"yahoo_id\":26070,\"last_name\":\"Leary\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Southern Lab (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ronaldleary\",\"birth_date\":\"1989-04-29\",\"espn_id\":15276},\"3122\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ken\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zampese\",\"depth_chart_position\":null,\"player_id\":\"3122\",\"birth_city\":null,\"fantasy_data_id\":17876,\"years_exp\":0,\"hashtag\":\"#KenZampese-NFL-FA-0\",\"search_first_name\":\"ken\",\"rotowire_id\":null,\"rotoworld_id\":11237,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ken Zampese\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Zampese\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kenzampese\",\"birth_date\":null,\"espn_id\":null},\"3721\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032635\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600264803301,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hawkins\",\"depth_chart_position\":null,\"player_id\":\"3721\",\"birth_city\":null,\"fantasy_data_id\":18529,\"years_exp\":4,\"hashtag\":\"#JoshHawkins-NFL-CAR-29\",\"search_first_name\":\"josh\",\"rotowire_id\":11446,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josh Hawkins\",\"sportradar_id\":\"2f01f1dc-8e8c-4d74-95d9-1b36b42257fb\",\"pandascore_id\":null,\"yahoo_id\":29729,\"last_name\":\"Hawkins\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Glenn (NC)\",\"depth_chart_order\":null,\"stats_id\":609734,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshhawkins\",\"birth_date\":\"1993-01-23\",\"espn_id\":2575523},\"5277\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034319\",\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599522604820,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"yelder\",\"depth_chart_position\":\"TE\",\"player_id\":\"5277\",\"birth_city\":null,\"fantasy_data_id\":20332,\"years_exp\":2,\"hashtag\":\"#DeonYelder-NFL-KC-82\",\"search_first_name\":\"deon\",\"rotowire_id\":13022,\"rotoworld_id\":null,\"active\":true,\"search_rank\":505,\"age\":25,\"full_name\":\"Deon Yelder\",\"sportradar_id\":\"cad43704-4231-4a72-b616-c66642103452\",\"pandascore_id\":null,\"yahoo_id\":31519,\"last_name\":\"Yelder\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Southern (KY)\",\"depth_chart_order\":4,\"stats_id\":750702,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"deonyelder\",\"birth_date\":\"1995-03-06\",\"espn_id\":3059766},\"7130\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cassh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605058562115,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"maluia\",\"depth_chart_position\":null,\"player_id\":\"7130\",\"birth_city\":null,\"fantasy_data_id\":22137,\"years_exp\":0,\"hashtag\":\"#CasshMaluia-NFL-NE-46\",\"search_first_name\":\"cassh\",\"rotowire_id\":14826,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1930,\"age\":22,\"full_name\":\"Cassh Maluia\",\"sportradar_id\":\"43d50dbb-38cf-4713-a667-15f4692d8c20\",\"pandascore_id\":null,\"yahoo_id\":32874,\"last_name\":\"Maluia\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wyoming\",\"high_school\":\"Paramount (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'0\\\"\",\"search_full_name\":\"casshmaluia\",\"birth_date\":\"1998-10-03\",\"espn_id\":4048736},\"4779\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bra'lon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cherry\",\"depth_chart_position\":null,\"player_id\":\"4779\",\"birth_city\":null,\"fantasy_data_id\":19609,\"years_exp\":2,\"hashtag\":\"#BralonCherry-NFL-FA-88\",\"search_first_name\":\"bralon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bra'lon Cherry\",\"sportradar_id\":\"4f2ceb0b-4b7c-4873-83b0-6cbf190d07c5\",\"pandascore_id\":null,\"yahoo_id\":30746,\"last_name\":\"Cherry\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728173,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"braloncherry\",\"birth_date\":null,\"espn_id\":3051708},\"2508\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Amarlo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herrera\",\"depth_chart_position\":null,\"player_id\":\"2508\",\"birth_city\":null,\"fantasy_data_id\":16967,\"years_exp\":5,\"hashtag\":\"#AmarloHerrera-NFL-FA-56\",\"search_first_name\":\"amarlo\",\"rotowire_id\":10372,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Amarlo Herrera\",\"sportradar_id\":\"faf5f854-73af-4ab9-8f19-95ea75431d45\",\"pandascore_id\":null,\"yahoo_id\":28595,\"last_name\":\"Herrera\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"North Clayton\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'1\\\"\",\"search_full_name\":\"amarloherrera\",\"birth_date\":\"1991-09-20\",\"espn_id\":2578542},\"7308\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693359928,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bowers\",\"depth_chart_position\":\"TE\",\"player_id\":\"7308\",\"birth_city\":null,\"fantasy_data_id\":21719,\"years_exp\":0,\"hashtag\":\"#NickBowers-NFL-LV-49\",\"search_first_name\":\"nick\",\"rotowire_id\":14869,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick Bowers\",\"sportradar_id\":\"bd30c0ca-196e-4f7d-b37d-d4d52dd40b62\",\"pandascore_id\":null,\"yahoo_id\":33315,\"last_name\":\"Bowers\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Kittanning (PA)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickbowers\",\"birth_date\":\"1996-05-26\",\"espn_id\":3929633},\"7010\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1588037104212,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"throckmorton\",\"depth_chart_position\":null,\"player_id\":\"7010\",\"birth_city\":null,\"fantasy_data_id\":22043,\"years_exp\":0,\"hashtag\":\"#CalvinThrockmorton-NFL-NO-66\",\"search_first_name\":\"calvin\",\"rotowire_id\":14543,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Calvin Throckmorton\",\"sportradar_id\":\"4bc2be9f-9001-4395-a097-d3c89140a83b\",\"pandascore_id\":null,\"yahoo_id\":33120,\"last_name\":\"Throckmorton\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Newport (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"calvinthrockmorton\",\"birth_date\":\"1996-08-16\",\"espn_id\":3915147},\"1131\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029688\",\"first_name\":\"Dontari\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603932329921,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"poe\",\"depth_chart_position\":\"LDT\",\"player_id\":\"1131\",\"birth_city\":null,\"fantasy_data_id\":14081,\"years_exp\":8,\"hashtag\":\"#DontariPoe-NFL-DAL-95\",\"search_first_name\":\"dontari\",\"rotowire_id\":8153,\"rotoworld_id\":7422,\"active\":true,\"search_rank\":672,\"age\":30,\"full_name\":\"Dontari Poe\",\"sportradar_id\":\"9fdc477a-af02-4345-baca-cf026fbc645a\",\"pandascore_id\":null,\"yahoo_id\":25721,\"last_name\":\"Poe\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Wooddale (TN)\",\"depth_chart_order\":1,\"stats_id\":502833,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"346\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dontaripoe\",\"birth_date\":\"1990-08-18\",\"espn_id\":14939},\"2341\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032209\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605470112496,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"yeldon\",\"depth_chart_position\":\"RB\",\"player_id\":\"2341\",\"birth_city\":null,\"fantasy_data_id\":16797,\"years_exp\":5,\"hashtag\":\"#TJYeldon-NFL-BUF-22\",\"search_first_name\":\"tj\",\"rotowire_id\":10056,\"rotoworld_id\":10311,\"active\":true,\"search_rank\":322,\"age\":27,\"full_name\":\"T.J. Yeldon\",\"sportradar_id\":\"d28afbc1-16c0-4012-b24a-1bd99817e8a9\",\"pandascore_id\":null,\"yahoo_id\":28424,\"last_name\":\"Yeldon\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Daphne (AL)\",\"depth_chart_order\":3,\"stats_id\":651103,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tjyeldon\",\"birth_date\":\"1993-10-02\",\"espn_id\":2976516},\"5510\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034581\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544112629577,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hearn\",\"depth_chart_position\":\"LG\",\"player_id\":\"5510\",\"birth_city\":null,\"fantasy_data_id\":20257,\"years_exp\":2,\"hashtag\":\"#TaylorHearn-NFL-FA-62\",\"search_first_name\":\"taylor\",\"rotowire_id\":12577,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Taylor Hearn\",\"sportradar_id\":\"b25967e0-9a90-4b59-bf85-168581e0da04\",\"pandascore_id\":null,\"yahoo_id\":31309,\"last_name\":\"Hearn\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"taylorhearn\",\"birth_date\":\"1996-01-11\",\"espn_id\":3122851},\"6861\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coe\",\"depth_chart_position\":null,\"player_id\":\"6861\",\"birth_city\":null,\"fantasy_data_id\":21878,\"years_exp\":0,\"hashtag\":\"#NickCoe-NFL-MIA-97\",\"search_first_name\":\"nick\",\"rotowire_id\":14398,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nick Coe\",\"sportradar_id\":\"67d2e7dd-e937-49d5-bf37-0efed947609f\",\"pandascore_id\":null,\"yahoo_id\":33320,\"last_name\":\"Coe\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Asheboro (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nickcoe\",\"birth_date\":\"1997-08-12\",\"espn_id\":4047458},\"6910\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606275655824,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"6910\",\"birth_city\":null,\"fantasy_data_id\":21882,\"years_exp\":0,\"hashtag\":\"#DarrellTaylor-NFL-SEA-58\",\"search_first_name\":\"darrell\",\"rotowire_id\":14649,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1808,\"age\":23,\"full_name\":\"Darrell Taylor\",\"sportradar_id\":\"5670f3dd-822d-4d13-a6c9-f981354441fc\",\"pandascore_id\":null,\"yahoo_id\":32718,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Hopewell (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"darrelltaylor\",\"birth_date\":\"1997-03-24\",\"espn_id\":3915396},\"4530\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mclaughlin\",\"depth_chart_position\":null,\"player_id\":\"4530\",\"birth_city\":null,\"fantasy_data_id\":19408,\"years_exp\":2,\"hashtag\":\"#JonathanMcLaughlin-NFL-FA-60\",\"search_first_name\":\"jonathan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jonathan McLaughlin\",\"sportradar_id\":\"32a88be7-8b0a-48a8-9a8d-8f46a97490c7\",\"pandascore_id\":null,\"yahoo_id\":30492,\"last_name\":\"McLaughlin\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"289\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonathanmclaughlin\",\"birth_date\":\"1993-10-27\",\"espn_id\":3045460},\"4240\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033582\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1571712316996,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ledbetter\",\"depth_chart_position\":null,\"player_id\":\"4240\",\"birth_city\":null,\"fantasy_data_id\":19086,\"years_exp\":3,\"hashtag\":\"#JeremiahLedbetter-NFL-TB-95\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":11927,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1214,\"age\":26,\"full_name\":\"Jeremiah Ledbetter\",\"sportradar_id\":\"02c7bde8-3715-462e-a268-95b3f2e19311\",\"pandascore_id\":null,\"yahoo_id\":30317,\"last_name\":\"Ledbetter\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Gainesville (GA)\",\"depth_chart_order\":null,\"stats_id\":867393,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremiahledbetter\",\"birth_date\":\"1994-05-29\",\"espn_id\":3892689},\"3598\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032753\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"LS\",\"LB\"],\"news_updated\":1560285358665,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rhodes\",\"depth_chart_position\":null,\"player_id\":\"3598\",\"birth_city\":null,\"fantasy_data_id\":18381,\"years_exp\":4,\"hashtag\":\"#LukeRhodes-NFL-IND-46\",\"search_first_name\":\"luke\",\"rotowire_id\":11414,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Luke Rhodes\",\"sportradar_id\":\"8da0fe32-1758-44ed-9acf-21b3721cbd0d\",\"pandascore_id\":null,\"yahoo_id\":29588,\"last_name\":\"Rhodes\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Hollidaysburg Area (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lukerhodes\",\"birth_date\":\"1992-12-02\",\"espn_id\":2566045},\"4374\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033350\",\"first_name\":\"Donatello\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535833508461,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4374\",\"birth_city\":null,\"fantasy_data_id\":19231,\"years_exp\":3,\"hashtag\":\"#DonatelloBrown-NFL-FA-44\",\"search_first_name\":\"donatello\",\"rotowire_id\":12453,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Donatello Brown\",\"sportradar_id\":\"0d91f918-0ad1-42c7-9eff-adecc72ca442\",\"pandascore_id\":null,\"yahoo_id\":30607,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"donatellobrown\",\"birth_date\":\"1991-05-15\",\"espn_id\":4218143},\"6869\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606129511600,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"trautman\",\"depth_chart_position\":\"TE\",\"player_id\":\"6869\",\"birth_city\":null,\"fantasy_data_id\":21786,\"years_exp\":0,\"hashtag\":\"#AdamTrautman-NFL-NO-82\",\"search_first_name\":\"adam\",\"rotowire_id\":14541,\"rotoworld_id\":null,\"active\":true,\"search_rank\":435,\"age\":23,\"full_name\":\"Adam Trautman\",\"sportradar_id\":\"4e14183b-f974-4745-9d7f-8f5eb2a92a7d\",\"pandascore_id\":null,\"yahoo_id\":32775,\"last_name\":\"Trautman\",\"metadata\":null,\"college\":\"Dayton\",\"high_school\":\"Elk Rapids (MI)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'6\\\"\",\"search_full_name\":\"adamtrautman\",\"birth_date\":\"1997-02-05\",\"espn_id\":3911853},\"910\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hynoski\",\"depth_chart_position\":null,\"player_id\":\"910\",\"birth_city\":null,\"fantasy_data_id\":13141,\"years_exp\":5,\"hashtag\":\"#HenryHynoski-NFL-FA-45\",\"search_first_name\":\"henry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Henry Hynoski\",\"sportradar_id\":\"d3ed4b39-7858-405d-b021-348bd57832dd\",\"pandascore_id\":null,\"yahoo_id\":25505,\"last_name\":\"Hynoski\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":397940,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'0\\\"\",\"search_full_name\":\"henryhynoski\",\"birth_date\":\"1988-12-30\",\"espn_id\":2268575},\"7145\":{\"position\":\"DE\",\"injury_notes\":\"Cornell was injured during practice and the injury is considered pretty severe.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jashon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597981234688,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cornell\",\"depth_chart_position\":null,\"player_id\":\"7145\",\"birth_city\":null,\"fantasy_data_id\":22147,\"years_exp\":0,\"hashtag\":\"#JashonCornell-NFL-DET-96\",\"search_first_name\":\"jashon\",\"rotowire_id\":14833,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jashon Cornell\",\"sportradar_id\":\"564fdf8b-c21e-4889-b371-e8ca079ae9b7\",\"pandascore_id\":null,\"yahoo_id\":32905,\"last_name\":\"Cornell\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Cretin-Derham Hall (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jashoncornell\",\"birth_date\":\"1996-12-30\",\"espn_id\":3873928},\"3814\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ishaq\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1518741601732,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3814\",\"birth_city\":null,\"fantasy_data_id\":18630,\"years_exp\":3,\"hashtag\":\"#IshaqWilliams-NFL-FA-97\",\"search_first_name\":\"ishaq\",\"rotowire_id\":11592,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ishaq Williams\",\"sportradar_id\":\"de7d86e0-e696-4aa2-bc5d-e0961b4fcf36\",\"pandascore_id\":null,\"yahoo_id\":29935,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ishaqwilliams\",\"birth_date\":\"1993-02-22\",\"espn_id\":2576049},\"635\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027869\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605565519807,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"iupati\",\"depth_chart_position\":\"LG\",\"player_id\":\"635\",\"birth_city\":null,\"fantasy_data_id\":11585,\"years_exp\":10,\"hashtag\":\"#MikeIupati-NFL-SEA-70\",\"search_first_name\":\"mike\",\"rotowire_id\":6553,\"rotoworld_id\":5763,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Mike Iupati\",\"sportradar_id\":\"46664226-53c3-4ef9-9aeb-f708e3e8269f\",\"pandascore_id\":null,\"yahoo_id\":23992,\"last_name\":\"Iupati\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Western (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mikeiupati\",\"birth_date\":\"1987-05-12\",\"espn_id\":13246},\"7348\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dayan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lake\",\"depth_chart_position\":null,\"player_id\":\"7348\",\"birth_city\":null,\"fantasy_data_id\":22336,\"years_exp\":0,\"hashtag\":\"#DayanLake-NFL-FA-0\",\"search_first_name\":\"dayan\",\"rotowire_id\":15088,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dayan Lake\",\"sportradar_id\":\"65a08ef1-9b9e-4863-bfa0-38d70472ba4b\",\"pandascore_id\":null,\"yahoo_id\":33264,\"last_name\":\"Lake\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dayanlake\",\"birth_date\":\"1997-08-01\",\"espn_id\":3932348},\"3908\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"3908\",\"birth_city\":null,\"fantasy_data_id\":18734,\"years_exp\":3,\"hashtag\":\"#EricWallace-NFL-FA-46\",\"search_first_name\":\"eric\",\"rotowire_id\":11609,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Eric Wallace\",\"sportradar_id\":\"5c7196a1-f1bc-4ff7-9f2c-be1e7e24895f\",\"pandascore_id\":null,\"yahoo_id\":30037,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Seattle University\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":398069,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ericwallace\",\"birth_date\":\"1988-12-13\",\"espn_id\":2326150},\"212\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023173\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1549752007322,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"denney\",\"depth_chart_position\":null,\"player_id\":\"212\",\"birth_city\":null,\"fantasy_data_id\":5377,\"years_exp\":15,\"hashtag\":\"#JohnDenney-NFL-FA-92\",\"search_first_name\":\"john\",\"rotowire_id\":6999,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":41,\"full_name\":\"John Denney\",\"sportradar_id\":\"ca1aab05-e07b-437e-84c6-2bdb47433782\",\"pandascore_id\":null,\"yahoo_id\":7467,\"last_name\":\"Denney\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Horizon (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johndenney\",\"birth_date\":\"1978-12-13\",\"espn_id\":9287},\"3828\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032922\",\"first_name\":\"Marwin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565488527021,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"3828\",\"birth_city\":null,\"fantasy_data_id\":18647,\"years_exp\":4,\"hashtag\":\"#MarwinEvans-NFL-FA-41\",\"search_first_name\":\"marwin\",\"rotowire_id\":11443,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marwin Evans\",\"sportradar_id\":\"444c9f9a-b6e1-4be1-ba68-bf18781f8c89\",\"pandascore_id\":null,\"yahoo_id\":29952,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746304,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marwinevans\",\"birth_date\":\"1993-04-10\",\"espn_id\":3053027},\"5826\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034905\",\"first_name\":\"Jameer\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thurman\",\"depth_chart_position\":null,\"player_id\":\"5826\",\"birth_city\":null,\"fantasy_data_id\":20720,\"years_exp\":1,\"hashtag\":\"#JameerThurman-NFL-FA-53\",\"search_first_name\":\"jameer\",\"rotowire_id\":13554,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jameer Thurman\",\"sportradar_id\":\"43b6dba8-0299-4f5d-9094-e061be3e8fe8\",\"pandascore_id\":null,\"yahoo_id\":31811,\"last_name\":\"Thurman\",\"metadata\":null,\"college\":\"Indiana State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jameerthurman\",\"birth_date\":\"1995-01-20\",\"espn_id\":3047235},\"4909\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duce\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"staley\",\"depth_chart_position\":null,\"player_id\":\"4909\",\"birth_city\":null,\"fantasy_data_id\":5696,\"years_exp\":0,\"hashtag\":\"#DuceStaley-NFL-FA-22\",\"search_first_name\":\"duce\",\"rotowire_id\":null,\"rotoworld_id\":688,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Duce Staley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Staley\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ducestaley\",\"birth_date\":null,\"espn_id\":null},\"1522\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030119\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"barrington\",\"depth_chart_position\":null,\"player_id\":\"1522\",\"birth_city\":null,\"fantasy_data_id\":15132,\"years_exp\":7,\"hashtag\":\"#SamBarrington-NFL-FA-49\",\"search_first_name\":\"sam\",\"rotowire_id\":8957,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sam Barrington\",\"sportradar_id\":\"aad60db9-4a23-44d5-a738-46443e99ea77\",\"pandascore_id\":null,\"yahoo_id\":26855,\"last_name\":\"Barrington\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Terry Parker (FL)\",\"depth_chart_order\":null,\"stats_id\":504277,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sambarrington\",\"birth_date\":\"1990-10-05\",\"espn_id\":15954},\"4291\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"averill\",\"depth_chart_position\":null,\"player_id\":\"4291\",\"birth_city\":null,\"fantasy_data_id\":19137,\"years_exp\":2,\"hashtag\":\"#TravisAverill-NFL-FA-62\",\"search_first_name\":\"travis\",\"rotowire_id\":12517,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Travis Averill\",\"sportradar_id\":\"c32c7bdc-829b-441d-a50e-b516b8436778\",\"pandascore_id\":null,\"yahoo_id\":30445,\"last_name\":\"Averill\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'3\\\"\",\"search_full_name\":\"travisaverill\",\"birth_date\":\"1993-12-21\",\"espn_id\":2972891},\"1417\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zaviar\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gooden\",\"depth_chart_position\":null,\"player_id\":\"1417\",\"birth_city\":null,\"fantasy_data_id\":14977,\"years_exp\":6,\"hashtag\":\"#ZaviarGooden-NFL-FA-52\",\"search_first_name\":\"zaviar\",\"rotowire_id\":8719,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zaviar Gooden\",\"sportradar_id\":\"3e284a1c-2f6f-468e-a694-8a3c0797a919\",\"pandascore_id\":null,\"yahoo_id\":26720,\"last_name\":\"Gooden\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":463406,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zaviargooden\",\"birth_date\":\"1990-01-01\",\"espn_id\":15838},\"2742\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"2742\",\"birth_city\":null,\"fantasy_data_id\":17210,\"years_exp\":5,\"hashtag\":\"#NickMarshall-NFL-FA-30\",\"search_first_name\":\"nick\",\"rotowire_id\":10428,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Nick Marshall\",\"sportradar_id\":\"3a5ab878-4702-49e1-ba17-daa4c4a381c9\",\"pandascore_id\":null,\"yahoo_id\":28849,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Wilcox County\",\"depth_chart_order\":null,\"stats_id\":607091,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickmarshall\",\"birth_date\":\"1992-06-30\",\"espn_id\":3051898},\"2860\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031904\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606595434304,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"callahan\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2860\",\"birth_city\":null,\"fantasy_data_id\":17328,\"years_exp\":5,\"hashtag\":\"#BryceCallahan-NFL-DEN-29\",\"search_first_name\":\"bryce\",\"rotowire_id\":10429,\"rotoworld_id\":10728,\"active\":true,\"search_rank\":935,\"age\":29,\"full_name\":\"Bryce Callahan\",\"sportradar_id\":\"8a7fa9bc-f589-4458-9a58-8ac3432a3df9\",\"pandascore_id\":null,\"yahoo_id\":28705,\"last_name\":\"Callahan\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Rice\",\"high_school\":\"Cy Woods High School (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brycecallahan\",\"birth_date\":\"1991-10-23\",\"espn_id\":2515641},\"6238\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035034\",\"first_name\":\"Tyree\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567191654559,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mayfield\",\"depth_chart_position\":null,\"player_id\":\"6238\",\"birth_city\":null,\"fantasy_data_id\":21168,\"years_exp\":1,\"hashtag\":\"#TyreeMayfield-NFL-FA-48\",\"search_first_name\":\"tyree\",\"rotowire_id\":14071,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tyree Mayfield\",\"sportradar_id\":\"cb95c9be-53e4-453e-8363-6533ebd018e8\",\"pandascore_id\":null,\"yahoo_id\":32324,\"last_name\":\"Mayfield\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823880,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tyreemayfield\",\"birth_date\":\"1995-10-23\",\"espn_id\":3125414},\"370\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"370\",\"birth_city\":null,\"fantasy_data_id\":8564,\"years_exp\":15,\"hashtag\":\"#NateWashington-NFL-FA-84\",\"search_first_name\":\"nate\",\"rotowire_id\":4648,\"rotoworld_id\":3446,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Nate Washington\",\"sportradar_id\":\"1899df56-d4be-44cf-97be-6d3b484d45ac\",\"pandascore_id\":null,\"yahoo_id\":7492,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Tiffin\",\"high_school\":\"Jesup W. Scott (OH)\",\"depth_chart_order\":null,\"stats_id\":222428,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'1\\\"\",\"search_full_name\":\"natewashington\",\"birth_date\":\"1983-08-28\",\"espn_id\":9307},\"4095\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1573709103610,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdowell\",\"depth_chart_position\":null,\"player_id\":\"4095\",\"birth_city\":null,\"fantasy_data_id\":18941,\"years_exp\":3,\"hashtag\":\"#MalikMcDowell-NFL-FA-94\",\"search_first_name\":\"malik\",\"rotowire_id\":11689,\"rotoworld_id\":12231,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malik McDowell\",\"sportradar_id\":\"3d78f1f8-958d-4eb4-a238-442aa9f22333\",\"pandascore_id\":null,\"yahoo_id\":30148,\"last_name\":\"McDowell\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":838233,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'6\\\"\",\"search_full_name\":\"malikmcdowell\",\"birth_date\":\"1996-06-20\",\"espn_id\":3134681},\"876\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bair\",\"depth_chart_position\":null,\"player_id\":\"876\",\"birth_city\":null,\"fantasy_data_id\":13030,\"years_exp\":9,\"hashtag\":\"#BrandonBair-NFL-FA-93\",\"search_first_name\":\"brandon\",\"rotowire_id\":7706,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brandon Bair\",\"sportradar_id\":\"302ecd1e-0208-4533-a34a-820b83c51f88\",\"pandascore_id\":null,\"yahoo_id\":25258,\"last_name\":\"Bair\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"South Fremont (ID)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brandonbair\",\"birth_date\":\"1984-11-24\",\"espn_id\":14361},\"5062\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034785\",\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601826037960,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":\"C\",\"player_id\":\"5062\",\"birth_city\":null,\"fantasy_data_id\":19898,\"years_exp\":2,\"hashtag\":\"#MasonCole-NFL-ARI-52\",\"search_first_name\":\"mason\",\"rotowire_id\":12795,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Mason Cole\",\"sportradar_id\":\"53d25371-e3ce-4030-8d0a-82def5cdc600\",\"pandascore_id\":null,\"yahoo_id\":31067,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"East Lake (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'5\\\"\",\"search_full_name\":\"masoncole\",\"birth_date\":\"1996-03-28\",\"espn_id\":3115972},\"2800\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hull\",\"depth_chart_position\":null,\"player_id\":\"2800\",\"birth_city\":null,\"fantasy_data_id\":17268,\"years_exp\":0,\"hashtag\":\"#MarioHull-NFL-FA-3\",\"search_first_name\":\"mario\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mario Hull\",\"sportradar_id\":\"b5745416-c048-4f01-8280-c2f2f31652cc\",\"pandascore_id\":null,\"yahoo_id\":29154,\"last_name\":\"Hull\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":550958,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mariohull\",\"birth_date\":\"1992-08-29\",\"espn_id\":2515652},\"5471\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034123\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1564842656881,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"5471\",\"birth_city\":null,\"fantasy_data_id\":20349,\"years_exp\":2,\"hashtag\":\"#TreyJohnson-NFL-FA-39\",\"search_first_name\":\"trey\",\"rotowire_id\":13371,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trey Johnson\",\"sportradar_id\":\"40002ab5-a6c3-4ab5-84ac-6502c8f3e904\",\"pandascore_id\":null,\"yahoo_id\":31418,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'11\\\"\",\"search_full_name\":\"treyjohnson\",\"birth_date\":\"1994-09-27\",\"espn_id\":3052013},\"4135\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033935\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606130411504,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hendrickson\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4135\",\"birth_city\":null,\"fantasy_data_id\":18981,\"years_exp\":3,\"hashtag\":\"#TreyHendrickson-NFL-NO-91\",\"search_first_name\":\"trey\",\"rotowire_id\":11919,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1165,\"age\":25,\"full_name\":\"Trey Hendrickson\",\"sportradar_id\":\"41d217b9-ec7b-4d72-8a0a-5f0e3a16b693\",\"pandascore_id\":null,\"yahoo_id\":30216,\"last_name\":\"Hendrickson\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Apopka (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"treyhendrickson\",\"birth_date\":\"1994-12-05\",\"espn_id\":3052743},\"4638\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033711\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1529976901671,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"banks\",\"depth_chart_position\":null,\"player_id\":\"4638\",\"birth_city\":null,\"fantasy_data_id\":19533,\"years_exp\":3,\"hashtag\":\"#JoshBanks-NFL-FA-64\",\"search_first_name\":\"josh\",\"rotowire_id\":12413,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Josh Banks\",\"sportradar_id\":\"035a2da8-8e69-48d3-9752-0fc042f545df\",\"pandascore_id\":null,\"yahoo_id\":30730,\"last_name\":\"Banks\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshbanks\",\"birth_date\":\"1994-06-13\",\"espn_id\":2970137},\"5020\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034800\",\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1578375039750,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"DT\",\"player_id\":\"5020\",\"birth_city\":null,\"fantasy_data_id\":19885,\"years_exp\":2,\"hashtag\":\"#BJHill-NFL-NYG-95\",\"search_first_name\":\"bj\",\"rotowire_id\":12815,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1322,\"age\":25,\"full_name\":\"B.J. Hill\",\"sportradar_id\":\"5c24d0c5-076c-4db5-9bd0-e67f7c42ad50\",\"pandascore_id\":null,\"yahoo_id\":31039,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"West Stanly (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bjhill\",\"birth_date\":\"1995-04-20\",\"espn_id\":3116748},\"1575\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030287\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567369537188,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ellington\",\"depth_chart_position\":null,\"player_id\":\"1575\",\"birth_city\":null,\"fantasy_data_id\":15224,\"years_exp\":7,\"hashtag\":\"#AndreEllington-NFL-FA-32\",\"search_first_name\":\"andre\",\"rotowire_id\":8757,\"rotoworld_id\":8388,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Andre Ellington\",\"sportradar_id\":\"1ce7bca8-68f0-47ba-9484-5baf57dd75e8\",\"pandascore_id\":null,\"yahoo_id\":26810,\"last_name\":\"Ellington\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Berkeley (SC)\",\"depth_chart_order\":null,\"stats_id\":463495,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'9\\\"\",\"search_full_name\":\"andreellington\",\"birth_date\":\"1989-02-03\",\"espn_id\":15893},\"3950\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":null,\"player_id\":\"3950\",\"birth_city\":null,\"fantasy_data_id\":18783,\"years_exp\":3,\"hashtag\":\"#JoePowell-NFL-FA-43\",\"search_first_name\":\"joe\",\"rotowire_id\":11676,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joe Powell\",\"sportradar_id\":\"2f7dcf00-b651-4747-8acd-9419ed61138e\",\"pandascore_id\":null,\"yahoo_id\":30078,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Globe Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joepowell\",\"birth_date\":\"1994-02-25\",\"espn_id\":4006388},\"2880\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"laskey\",\"depth_chart_position\":null,\"player_id\":\"2880\",\"birth_city\":null,\"fantasy_data_id\":17348,\"years_exp\":5,\"hashtag\":\"#ZachLaskey-NFL-FA-45\",\"search_first_name\":\"zach\",\"rotowire_id\":10789,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Zach Laskey\",\"sportradar_id\":\"bdd80c98-096d-46e8-8826-9a90ad7e11ef\",\"pandascore_id\":null,\"yahoo_id\":28997,\"last_name\":\"Laskey\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":599676,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zachlaskey\",\"birth_date\":\"1992-07-08\",\"espn_id\":2576901},\"5502\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034230\",\"first_name\":\"Mychealon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"5502\",\"birth_city\":null,\"fantasy_data_id\":20410,\"years_exp\":2,\"hashtag\":\"#MychealonThomas-NFL-FA-66\",\"search_first_name\":\"mychealon\",\"rotowire_id\":13155,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mychealon Thomas\",\"sportradar_id\":\"61dd98e9-3edc-4892-b20e-b0d74a25da5e\",\"pandascore_id\":null,\"yahoo_id\":31449,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mychealonthomas\",\"birth_date\":\"1994-10-02\",\"espn_id\":4043157},\"7045\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606236353189,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelley\",\"depth_chart_position\":\"RB\",\"player_id\":\"7045\",\"birth_city\":null,\"fantasy_data_id\":21776,\"years_exp\":0,\"hashtag\":\"#JoshuaKelley-NFL-LAC-27\",\"search_first_name\":\"joshua\",\"rotowire_id\":14494,\"rotoworld_id\":null,\"active\":true,\"search_rank\":153,\"age\":23,\"full_name\":\"Joshua Kelley\",\"sportradar_id\":\"62542e04-3c44-4b75-8165-be674c8be75f\",\"pandascore_id\":null,\"yahoo_id\":32782,\"last_name\":\"Kelley\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Eastside (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshuakelley\",\"birth_date\":\"1997-11-20\",\"espn_id\":3910544},\"7504\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"De'Jon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"7504\",\"birth_city\":null,\"fantasy_data_id\":21991,\"years_exp\":0,\"hashtag\":\"#DeJonHarris-NFL-GB-59\",\"search_first_name\":\"dejon\",\"rotowire_id\":14553,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1871,\"age\":23,\"full_name\":\"De'Jon Harris\",\"sportradar_id\":\"8ca83e4e-d3a5-4dcb-a917-e58e36b77721\",\"pandascore_id\":null,\"yahoo_id\":33321,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"John Ehret (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dejonharris\",\"birth_date\":\"1997-11-01\",\"espn_id\":4035577},\"5730\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034692\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1571891728611,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"myers\",\"depth_chart_position\":null,\"player_id\":\"5730\",\"birth_city\":null,\"fantasy_data_id\":20614,\"years_exp\":2,\"hashtag\":\"#MarkMyers-NFL-FA-32\",\"search_first_name\":\"mark\",\"rotowire_id\":13205,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mark Myers\",\"sportradar_id\":\"d00ac1d2-dd0d-4362-bfb3-29c9f29d2671\",\"pandascore_id\":null,\"yahoo_id\":31690,\"last_name\":\"Myers\",\"metadata\":null,\"college\":\"Southeastern (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"markmyers\",\"birth_date\":\"1994-09-05\",\"espn_id\":4339831},\"2850\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"2850\",\"birth_city\":null,\"fantasy_data_id\":17318,\"years_exp\":5,\"hashtag\":\"#BobbyRichardson-NFL-FA-73\",\"search_first_name\":\"bobby\",\"rotowire_id\":10320,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Bobby Richardson\",\"sportradar_id\":\"c6c8743b-3e46-4477-ae6e-399435bc0918\",\"pandascore_id\":null,\"yahoo_id\":28763,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Plant\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bobbyrichardson\",\"birth_date\":\"1992-11-20\",\"espn_id\":2578316},\"4027\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"saleh\",\"depth_chart_position\":null,\"player_id\":\"4027\",\"birth_city\":null,\"fantasy_data_id\":18869,\"years_exp\":0,\"hashtag\":\"#RobertSaleh-NFL-FA-0\",\"search_first_name\":\"robert\",\"rotowire_id\":null,\"rotoworld_id\":12170,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Robert Saleh\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Saleh\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"robertsaleh\",\"birth_date\":null,\"espn_id\":null},\"1724\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0030187\",\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567260905522,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"1724\",\"birth_city\":null,\"fantasy_data_id\":15659,\"years_exp\":7,\"hashtag\":\"#RashadRoss-NFL-FA-19\",\"search_first_name\":\"rashad\",\"rotowire_id\":9759,\"rotoworld_id\":9080,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Rashad Ross\",\"sportradar_id\":\"a55c773c-1ce6-4d0f-a800-768575d74121\",\"pandascore_id\":null,\"yahoo_id\":27305,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Vallejo (CA)\",\"depth_chart_order\":null,\"stats_id\":598945,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rashadross\",\"birth_date\":\"1990-02-02\",\"espn_id\":16566},\"332\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jairus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"byrd\",\"depth_chart_position\":null,\"player_id\":\"332\",\"birth_city\":null,\"fantasy_data_id\":8281,\"years_exp\":11,\"hashtag\":\"#JairusByrd-NFL-FA-31\",\"search_first_name\":\"jairus\",\"rotowire_id\":5976,\"rotoworld_id\":5307,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jairus Byrd\",\"sportradar_id\":\"92018cf6-b194-44a9-bf07-0e20861bc6b8\",\"pandascore_id\":null,\"yahoo_id\":9306,\"last_name\":\"Byrd\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Clayton (MO)\",\"depth_chart_order\":null,\"stats_id\":296058,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jairusbyrd\",\"birth_date\":\"1986-10-07\",\"espn_id\":12613},\"6353\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035617\",\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602516025687,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reeder\",\"depth_chart_position\":\"RILB\",\"player_id\":\"6353\",\"birth_city\":null,\"fantasy_data_id\":21332,\"years_exp\":1,\"hashtag\":\"#TroyReeder-NFL-LAR-51\",\"search_first_name\":\"troy\",\"rotowire_id\":14013,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1716,\"age\":26,\"full_name\":\"Troy Reeder\",\"sportradar_id\":\"d0412c6f-ac97-420c-a9e2-1ca587c480b2\",\"pandascore_id\":null,\"yahoo_id\":32135,\"last_name\":\"Reeder\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Salesianum (DE)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"troyreeder\",\"birth_date\":\"1994-09-13\",\"espn_id\":3116177},\"5273\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kamryn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1525721101055,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pettway\",\"depth_chart_position\":null,\"player_id\":\"5273\",\"birth_city\":null,\"fantasy_data_id\":20326,\"years_exp\":1,\"hashtag\":\"#KamrynPettway-NFL-MIN-36\",\"search_first_name\":\"kamryn\",\"rotowire_id\":12556,\"rotoworld_id\":null,\"active\":true,\"search_rank\":964,\"age\":null,\"full_name\":\"Kamryn Pettway\",\"sportradar_id\":\"7ef17350-e889-4498-b29c-df004ee204fa\",\"pandascore_id\":null,\"yahoo_id\":31238,\"last_name\":\"Pettway\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835180,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kamrynpettway\",\"birth_date\":null,\"espn_id\":3121597},\"4823\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keevan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lucas\",\"depth_chart_position\":null,\"player_id\":\"4823\",\"birth_city\":null,\"fantasy_data_id\":19729,\"years_exp\":2,\"hashtag\":\"#KeevanLucas-NFL-FA-81\",\"search_first_name\":\"keevan\",\"rotowire_id\":11864,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Keevan Lucas\",\"sportradar_id\":\"35143cd8-ea28-4682-ae1e-b83f3ce6edb1\",\"pandascore_id\":null,\"yahoo_id\":30936,\"last_name\":\"Lucas\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":729586,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"keevanlucas\",\"birth_date\":\"1995-04-10\",\"espn_id\":3052797},\"1598\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seymour\",\"depth_chart_position\":null,\"player_id\":\"1598\",\"birth_city\":null,\"fantasy_data_id\":15258,\"years_exp\":7,\"hashtag\":\"#RyanSeymour-NFL-FA-62\",\"search_first_name\":\"ryan\",\"rotowire_id\":9222,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ryan Seymour\",\"sportradar_id\":\"a73d78ff-3bc7-4e65-a8e5-b81ed642d37d\",\"pandascore_id\":null,\"yahoo_id\":26843,\"last_name\":\"Seymour\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Camden County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanseymour\",\"birth_date\":\"1990-02-07\",\"espn_id\":15898},\"149\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zackary\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowman\",\"depth_chart_position\":null,\"player_id\":\"149\",\"birth_city\":null,\"fantasy_data_id\":4000,\"years_exp\":12,\"hashtag\":\"#ZackaryBowman-NFL-FA-30\",\"search_first_name\":\"zackary\",\"rotowire_id\":6229,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Zackary Bowman\",\"sportradar_id\":\"73513c4e-03b6-4ad6-922d-11943e406479\",\"pandascore_id\":null,\"yahoo_id\":8908,\"last_name\":\"Bowman\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Batesburg-Leesville (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zackarybowman\",\"birth_date\":\"1984-11-18\",\"espn_id\":11365},\"4731\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bacci\",\"depth_chart_position\":null,\"player_id\":\"4731\",\"birth_city\":null,\"fantasy_data_id\":19642,\"years_exp\":3,\"hashtag\":\"#JoeBacci-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":12264,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joe Bacci\",\"sportradar_id\":\"7558eb5e-252f-4994-9e66-ab3ae440b3c0\",\"pandascore_id\":null,\"yahoo_id\":30877,\"last_name\":\"Bacci\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694097,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joebacci\",\"birth_date\":\"1994-04-25\",\"espn_id\":2972498},\"1311\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029191\",\"first_name\":\"DeShawn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577572211208,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shead\",\"depth_chart_position\":null,\"player_id\":\"1311\",\"birth_city\":null,\"fantasy_data_id\":14793,\"years_exp\":8,\"hashtag\":\"#DeShawnShead-NFL-FA-35\",\"search_first_name\":\"deshawn\",\"rotowire_id\":8596,\"rotoworld_id\":7730,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"DeShawn Shead\",\"sportradar_id\":\"588022c3-f9c6-4f30-b4ea-a264f99fc997\",\"pandascore_id\":null,\"yahoo_id\":25994,\"last_name\":\"Shead\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":\"Highland (CA)\",\"depth_chart_order\":null,\"stats_id\":389514,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deshawnshead\",\"birth_date\":\"1989-06-28\",\"espn_id\":15419},\"5980\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035311\",\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606505126377,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gaskin\",\"depth_chart_position\":\"RB\",\"player_id\":\"5980\",\"birth_city\":null,\"fantasy_data_id\":20768,\"years_exp\":1,\"hashtag\":\"#MylesGaskin-NFL-MIA-37\",\"search_first_name\":\"myles\",\"rotowire_id\":13505,\"rotoworld_id\":14044,\"active\":true,\"search_rank\":287,\"age\":23,\"full_name\":\"Myles Gaskin\",\"sportradar_id\":\"cad49098-1523-4e52-9f50-caa3423e1bb6\",\"pandascore_id\":null,\"yahoo_id\":32066,\"last_name\":\"Gaskin\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Seattle O'Dea (WA)\",\"depth_chart_order\":1,\"stats_id\":865895,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mylesgaskin\",\"birth_date\":\"1997-02-15\",\"espn_id\":3886818},\"5161\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034490\",\"first_name\":\"Ezekiel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1604866519797,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":\"LILB\",\"player_id\":\"5161\",\"birth_city\":null,\"fantasy_data_id\":20088,\"years_exp\":2,\"hashtag\":\"#EzekielTurner-NFL-ARI-47\",\"search_first_name\":\"ezekiel\",\"rotowire_id\":13222,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1415,\"age\":24,\"full_name\":\"Ezekiel Turner\",\"sportradar_id\":\"83849bc5-0b6c-4c76-b622-9c7042758e97\",\"pandascore_id\":null,\"yahoo_id\":31324,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Glen Burnie (MD)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ezekielturner\",\"birth_date\":\"1996-06-09\",\"espn_id\":3894901},\"5107\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034331\",\"first_name\":\"Jaylen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606179916465,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"samuels\",\"depth_chart_position\":\"RB\",\"player_id\":\"5107\",\"birth_city\":null,\"fantasy_data_id\":19996,\"years_exp\":2,\"hashtag\":\"#JaylenSamuels-NFL-PIT-38\",\"search_first_name\":\"jaylen\",\"rotowire_id\":12779,\"rotoworld_id\":13189,\"active\":true,\"search_rank\":265,\"age\":24,\"full_name\":\"Jaylen Samuels\",\"sportradar_id\":\"fd4241f9-ab42-4dba-a701-455b896eca28\",\"pandascore_id\":null,\"yahoo_id\":31135,\"last_name\":\"Samuels\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"North Carolina State\",\"high_school\":\"Mallard Creek (NC)\",\"depth_chart_order\":4,\"stats_id\":832232,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaylensamuels\",\"birth_date\":\"1996-07-20\",\"espn_id\":3116721},\"480\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dannell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1517782502098,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ellerbe\",\"depth_chart_position\":null,\"player_id\":\"480\",\"birth_city\":null,\"fantasy_data_id\":9793,\"years_exp\":11,\"hashtag\":\"#DannellEllerbe-NFL-FA-57\",\"search_first_name\":\"dannell\",\"rotowire_id\":6084,\"rotoworld_id\":5542,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Dannell Ellerbe\",\"sportradar_id\":\"ef0eb4eb-da05-4fc2-998e-811b6307b27f\",\"pandascore_id\":null,\"yahoo_id\":9601,\"last_name\":\"Ellerbe\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Richmond (NC)\",\"depth_chart_order\":null,\"stats_id\":263152,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dannellellerbe\",\"birth_date\":\"1985-11-29\",\"espn_id\":13103},\"2399\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032200\",\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606527329613,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"montgomery\",\"depth_chart_position\":\"RB\",\"player_id\":\"2399\",\"birth_city\":null,\"fantasy_data_id\":16855,\"years_exp\":5,\"hashtag\":\"#TyMontgomery-NFL-NO-88\",\"search_first_name\":\"ty\",\"rotowire_id\":10216,\"rotoworld_id\":10413,\"active\":true,\"search_rank\":236,\"age\":27,\"full_name\":\"Ty Montgomery\",\"sportradar_id\":\"0c39e276-7a5b-448f-a696-532506f1035a\",\"pandascore_id\":null,\"yahoo_id\":28482,\"last_name\":\"Montgomery\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"St. Mark's (TX)\",\"depth_chart_order\":5,\"stats_id\":598969,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tymontgomery\",\"birth_date\":\"1993-01-22\",\"espn_id\":2577134},\"4342\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033366\",\"first_name\":\"Quincy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1597613413367,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"adeboyejo\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4342\",\"birth_city\":null,\"fantasy_data_id\":19198,\"years_exp\":3,\"hashtag\":\"#QuincyAdeboyejo-NFL-NE-19\",\"search_first_name\":\"quincy\",\"rotowire_id\":11845,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Quincy Adeboyejo\",\"sportradar_id\":\"5f5fd1a9-1085-404b-a978-426a8895fb83\",\"pandascore_id\":null,\"yahoo_id\":30512,\"last_name\":\"Adeboyejo\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Mississippi\",\"high_school\":\"Cedar Hill (TX)\",\"depth_chart_order\":4,\"stats_id\":749174,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"quincyadeboyejo\",\"birth_date\":\"1995-05-26\",\"espn_id\":3051869},\"5233\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034169\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603636805570,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"baugh\",\"depth_chart_position\":\"TE\",\"player_id\":\"5233\",\"birth_city\":null,\"fantasy_data_id\":20174,\"years_exp\":2,\"hashtag\":\"#MarcusBaugh-NFL-WAS-85\",\"search_first_name\":\"marcus\",\"rotowire_id\":12901,\"rotoworld_id\":null,\"active\":true,\"search_rank\":545,\"age\":25,\"full_name\":\"Marcus Baugh\",\"sportradar_id\":\"14683736-9d8f-4e99-86c4-a778d343569c\",\"pandascore_id\":null,\"yahoo_id\":31478,\"last_name\":\"Baugh\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"John W. North (CA)\",\"depth_chart_order\":4,\"stats_id\":728328,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marcusbaugh\",\"birth_date\":\"1994-12-09\",\"espn_id\":3051387},\"2950\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tabb\",\"depth_chart_position\":null,\"player_id\":\"2950\",\"birth_city\":null,\"fantasy_data_id\":17422,\"years_exp\":2,\"hashtag\":\"#JackTabb-NFL-FA-80\",\"search_first_name\":\"jack\",\"rotowire_id\":10670,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jack Tabb\",\"sportradar_id\":\"cde8e668-cee1-4e1d-9a32-ce1a93b41a85\",\"pandascore_id\":null,\"yahoo_id\":28766,\"last_name\":\"Tabb\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605766,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacktabb\",\"birth_date\":\"1992-07-29\",\"espn_id\":null},\"5419\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034543\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durant\",\"depth_chart_position\":null,\"player_id\":\"5419\",\"birth_city\":null,\"fantasy_data_id\":20207,\"years_exp\":2,\"hashtag\":\"#ChrisDurant-NFL-FA-61\",\"search_first_name\":\"chris\",\"rotowire_id\":13046,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Durant\",\"sportradar_id\":\"66a249cc-3ba5-4b1b-bc6d-b292f7f8fc51\",\"pandascore_id\":null,\"yahoo_id\":31674,\"last_name\":\"Durant\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisdurant\",\"birth_date\":\"1995-12-19\",\"espn_id\":3052021},\"5187\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034517\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughesjr\",\"depth_chart_position\":null,\"player_id\":\"5187\",\"birth_city\":null,\"fantasy_data_id\":20147,\"years_exp\":2,\"hashtag\":\"#MikeHughesJr-NFL-FA-97\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Mike Hughes Jr.\",\"sportradar_id\":\"e430f1a2-3546-4691-8dd3-37c6262db83d\",\"pandascore_id\":null,\"yahoo_id\":31263,\"last_name\":\"Hughes Jr.\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mikehughesjr\",\"birth_date\":\"1996-04-03\",\"espn_id\":3125323},\"6363\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035374\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599690042684,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6363\",\"birth_city\":null,\"fantasy_data_id\":21254,\"years_exp\":1,\"hashtag\":\"#MichaelWalker-NFL-JAX-13\",\"search_first_name\":\"michael\",\"rotowire_id\":14005,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1705,\"age\":23,\"full_name\":\"Michael Walker\",\"sportradar_id\":\"019f8019-2a29-4131-b6fb-ea32568c1fc8\",\"pandascore_id\":null,\"yahoo_id\":32101,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Naples (FL)\",\"depth_chart_order\":13,\"stats_id\":883432,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michaelwalker\",\"birth_date\":\"1996-10-29\",\"espn_id\":3915296},\"586\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kafka\",\"depth_chart_position\":null,\"player_id\":\"586\",\"birth_city\":null,\"fantasy_data_id\":11323,\"years_exp\":4,\"hashtag\":\"#MikeKafka-NFL-FA-3\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":5855,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mike Kafka\",\"sportradar_id\":\"853c2e4e-7363-4f00-93dd-a9f514407225\",\"pandascore_id\":null,\"yahoo_id\":24097,\"last_name\":\"Kafka\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":285059,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikekafka\",\"birth_date\":\"1987-07-25\",\"espn_id\":13397},\"3639\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032876\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3639\",\"birth_city\":null,\"fantasy_data_id\":18428,\"years_exp\":3,\"hashtag\":\"#JordanWilliams-NFL-FA-81\",\"search_first_name\":\"jordan\",\"rotowire_id\":11077,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Williams\",\"sportradar_id\":\"27139851-5153-4243-8508-45230bdadbcd\",\"pandascore_id\":null,\"yahoo_id\":900000,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652431,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanwilliams\",\"birth_date\":\"1994-05-09\",\"espn_id\":null},\"5798\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034888\",\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carrington\",\"depth_chart_position\":null,\"player_id\":\"5798\",\"birth_city\":null,\"fantasy_data_id\":20695,\"years_exp\":2,\"hashtag\":\"#DarrenCarrington-NFL-FA-16\",\"search_first_name\":\"darren\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darren Carrington\",\"sportradar_id\":\"136fe3dd-4291-4a41-89e1-09058ec16313\",\"pandascore_id\":null,\"yahoo_id\":900375,\"last_name\":\"Carrington\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740706,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darrencarrington\",\"birth_date\":\"1994-10-11\",\"espn_id\":3052098},\"1171\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keenan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535039414319,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1171\",\"birth_city\":null,\"fantasy_data_id\":14271,\"years_exp\":8,\"hashtag\":\"#KeenanRobinson-NFL-FA-48\",\"search_first_name\":\"keenan\",\"rotowire_id\":8186,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Keenan Robinson\",\"sportradar_id\":\"af1648a4-2df1-40ef-b9fe-081d6961a416\",\"pandascore_id\":null,\"yahoo_id\":25829,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Plano East Senior (TX)\",\"depth_chart_order\":null,\"stats_id\":399513,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keenanrobinson\",\"birth_date\":\"1989-07-07\",\"espn_id\":15017},\"5762\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1533517805735,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"5762\",\"birth_city\":null,\"fantasy_data_id\":20670,\"years_exp\":1,\"hashtag\":\"#JoshSmith-NFL-NO-87\",\"search_first_name\":\"josh\",\"rotowire_id\":13365,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1137,\"age\":null,\"full_name\":\"Josh Smith\",\"sportradar_id\":\"595ed8a9-5533-4bd0-8f3c-a4c3e9a021f8\",\"pandascore_id\":null,\"yahoo_id\":31760,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741284,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshsmith\",\"birth_date\":null,\"espn_id\":3044726},\"5748\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034769\",\"first_name\":\"DeMarquis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597374636167,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gates\",\"depth_chart_position\":null,\"player_id\":\"5748\",\"birth_city\":null,\"fantasy_data_id\":20657,\"years_exp\":2,\"hashtag\":\"#DeMarquisGates-NFL-FA-0\",\"search_first_name\":\"demarquis\",\"rotowire_id\":13942,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1504,\"age\":24,\"full_name\":\"DeMarquis Gates\",\"sportradar_id\":\"8b91b834-6eae-4a18-8fc6-9c99caafa615\",\"pandascore_id\":null,\"yahoo_id\":31744,\"last_name\":\"Gates\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"demarquisgates\",\"birth_date\":\"1996-03-07\",\"espn_id\":3128747},\"1729\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029629\",\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1571107544563,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stupar\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1729\",\"birth_city\":null,\"fantasy_data_id\":15669,\"years_exp\":8,\"hashtag\":\"#NathanStupar-NFL-FA-45\",\"search_first_name\":\"nathan\",\"rotowire_id\":8313,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Nathan Stupar\",\"sportradar_id\":\"a41304be-54fb-4448-bf94-9bf6334a880a\",\"pandascore_id\":null,\"yahoo_id\":25940,\"last_name\":\"Stupar\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"State College Area (PA)\",\"depth_chart_order\":2,\"stats_id\":406180,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nathanstupar\",\"birth_date\":\"1988-03-14\",\"espn_id\":15040},\"2006\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031349\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1577033760187,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"paradis\",\"depth_chart_position\":\"C\",\"player_id\":\"2006\",\"birth_city\":null,\"fantasy_data_id\":16281,\"years_exp\":6,\"hashtag\":\"#MattParadis-NFL-CAR-61\",\"search_first_name\":\"matt\",\"rotowire_id\":9694,\"rotoworld_id\":9698,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Matt Paradis\",\"sportradar_id\":\"b35211e2-a35f-41e1-b32b-3b31b70330b7\",\"pandascore_id\":null,\"yahoo_id\":27735,\"last_name\":\"Paradis\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Council (ID)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattparadis\",\"birth_date\":\"1989-10-12\",\"espn_id\":16847},\"1391\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hawkinson\",\"depth_chart_position\":null,\"player_id\":\"1391\",\"birth_city\":null,\"fantasy_data_id\":14921,\"years_exp\":7,\"hashtag\":\"#TannerHawkinson-NFL-FA-79\",\"search_first_name\":\"tanner\",\"rotowire_id\":9076,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tanner Hawkinson\",\"sportradar_id\":\"20b3705b-5cc4-4759-9315-d4230b4a7872\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hawkinson\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"McPherson (KS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tannerhawkinson\",\"birth_date\":\"1990-05-14\",\"espn_id\":15919},\"758\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shayne\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":null,\"player_id\":\"758\",\"birth_city\":null,\"fantasy_data_id\":12489,\"years_exp\":20,\"hashtag\":\"#ShayneGraham-NFL-FA-17\",\"search_first_name\":\"shayne\",\"rotowire_id\":2448,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":42,\"full_name\":\"Shayne Graham\",\"sportradar_id\":\"21324436-47e6-4e7e-9f57-6e343cf5aa07\",\"pandascore_id\":null,\"yahoo_id\":5854,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Pulaski HS (VA)\",\"depth_chart_order\":null,\"stats_id\":75699,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaynegraham\",\"birth_date\":\"1977-12-09\",\"espn_id\":3504},\"2733\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kasey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"closs\",\"depth_chart_position\":null,\"player_id\":\"2733\",\"birth_city\":null,\"fantasy_data_id\":17201,\"years_exp\":0,\"hashtag\":\"#KaseyCloss-NFL-FA-3\",\"search_first_name\":\"kasey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kasey Closs\",\"sportradar_id\":\"8ab58fde-81ce-49fe-adad-b0d8449f7739\",\"pandascore_id\":null,\"yahoo_id\":29030,\"last_name\":\"Closs\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":656642,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kaseycloss\",\"birth_date\":\"1992-04-07\",\"espn_id\":2967895},\"3680\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032573\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606530929871,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"onwuasor\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"3680\",\"birth_city\":null,\"fantasy_data_id\":18480,\"years_exp\":4,\"hashtag\":\"#PatrickOnwuasor-NFL-NYJ-51\",\"search_first_name\":\"patrick\",\"rotowire_id\":11311,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Patrick Onwuasor\",\"sportradar_id\":\"a5111f5d-0b0c-4745-874c-672904200c32\",\"pandascore_id\":null,\"yahoo_id\":29758,\"last_name\":\"Onwuasor\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":\"Inglewood (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"patrickonwuasor\",\"birth_date\":\"1992-08-22\",\"espn_id\":2576761},\"6318\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035396\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1569357943677,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ellis\",\"depth_chart_position\":\"RB\",\"player_id\":\"6318\",\"birth_city\":null,\"fantasy_data_id\":21221,\"years_exp\":1,\"hashtag\":\"#JordanEllis-NFL-FA-31\",\"search_first_name\":\"jordan\",\"rotowire_id\":13500,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jordan Ellis\",\"sportradar_id\":\"2e194e2d-74ff-4a70-9bef-724779bcea15\",\"pandascore_id\":null,\"yahoo_id\":32466,\"last_name\":\"Ellis\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":836253,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jordanellis\",\"birth_date\":\"1996-03-22\",\"espn_id\":3124022},\"7121\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1599432360860,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rohrwasser\",\"depth_chart_position\":\"K\",\"player_id\":\"7121\",\"birth_city\":null,\"fantasy_data_id\":22134,\"years_exp\":0,\"hashtag\":\"#JustinRohrwasser-NFL-NE-5\",\"search_first_name\":\"justin\",\"rotowire_id\":14822,\"rotoworld_id\":null,\"active\":true,\"search_rank\":574,\"age\":23,\"full_name\":\"Justin Rohrwasser\",\"sportradar_id\":\"f8788fca-16b2-4214-b0a4-1bacff5e9fcd\",\"pandascore_id\":null,\"yahoo_id\":32829,\"last_name\":\"Rohrwasser\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Marshall\",\"high_school\":\"Clifton Park (NY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinrohrwasser\",\"birth_date\":\"1996-12-07\",\"espn_id\":3913295},\"6321\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035135\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605225613921,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6321\",\"birth_city\":null,\"fantasy_data_id\":21225,\"years_exp\":1,\"hashtag\":\"#TimWard-NFL-KC-90\",\"search_first_name\":\"tim\",\"rotowire_id\":14153,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tim Ward\",\"sportradar_id\":\"70ce9a98-8dbf-4e16-a20d-f3cfb76e70d7\",\"pandascore_id\":null,\"yahoo_id\":32351,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"High Point Central (NC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"timward\",\"birth_date\":\"1997-08-11\",\"espn_id\":3914553},\"5268\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034557\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1568415332281,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"TE\",\"player_id\":\"5268\",\"birth_city\":null,\"fantasy_data_id\":20311,\"years_exp\":2,\"hashtag\":\"#BenJohnson-NFL-FA-41\",\"search_first_name\":\"ben\",\"rotowire_id\":13054,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ben Johnson\",\"sportradar_id\":\"31a408da-0c38-4046-8419-3ecfdd6d37f2\",\"pandascore_id\":null,\"yahoo_id\":31682,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":739632,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"benjohnson\",\"birth_date\":\"1994-07-28\",\"espn_id\":3039970},\"5795\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034884\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"canady\",\"depth_chart_position\":null,\"player_id\":\"5795\",\"birth_city\":null,\"fantasy_data_id\":20692,\"years_exp\":2,\"hashtag\":\"#BryceCanady-NFL-FA-34\",\"search_first_name\":\"bryce\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bryce Canady\",\"sportradar_id\":\"11ed92b3-c1d1-46e9-87d9-387fd3280e4f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Canady\",\"metadata\":null,\"college\":\"Florida Intl\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brycecanady\",\"birth_date\":null,\"espn_id\":4037345},\"4433\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033453\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535771213570,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"4433\",\"birth_city\":null,\"fantasy_data_id\":19294,\"years_exp\":3,\"hashtag\":\"#XavierColeman-NFL-FA-36\",\"search_first_name\":\"xavier\",\"rotowire_id\":12233,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Xavier Coleman\",\"sportradar_id\":\"695d16fa-1c4e-4ce4-9d2c-0e117b4fa577\",\"pandascore_id\":null,\"yahoo_id\":30569,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"xaviercoleman\",\"birth_date\":\"1995-01-13\",\"espn_id\":3045642},\"7263\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wirtel\",\"depth_chart_position\":null,\"player_id\":\"7263\",\"birth_city\":null,\"fantasy_data_id\":22013,\"years_exp\":0,\"hashtag\":\"#StevenWirtel-NFL-DET-49\",\"search_first_name\":\"steven\",\"rotowire_id\":14611,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Steven Wirtel\",\"sportradar_id\":\"3b676675-0ed6-4892-bd6e-e03cd92596f2\",\"pandascore_id\":null,\"yahoo_id\":33193,\"last_name\":\"Wirtel\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Mount Carmel (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"stevenwirtel\",\"birth_date\":\"1997-10-03\",\"espn_id\":4035542},\"1281\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"presley\",\"depth_chart_position\":null,\"player_id\":\"1281\",\"birth_city\":null,\"fantasy_data_id\":14728,\"years_exp\":1,\"hashtag\":\"#DeAndrePresley-NFL-FA-10\",\"search_first_name\":\"deandre\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"DeAndre Presley\",\"sportradar_id\":\"73f9119c-2c21-4e23-9fb1-f96d33864654\",\"pandascore_id\":null,\"yahoo_id\":26200,\"last_name\":\"Presley\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"deandrepresley\",\"birth_date\":\"1990-01-10\",\"espn_id\":15629},\"4787\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"westerkamp\",\"depth_chart_position\":null,\"player_id\":\"4787\",\"birth_city\":null,\"fantasy_data_id\":19698,\"years_exp\":2,\"hashtag\":\"#JordanWesterkamp-NFL-FA-1\",\"search_first_name\":\"jordan\",\"rotowire_id\":12320,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Westerkamp\",\"sportradar_id\":\"e7db6483-9f69-4574-aed9-a36f1329d9e5\",\"pandascore_id\":null,\"yahoo_id\":30914,\"last_name\":\"Westerkamp\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651878,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordanwesterkamp\",\"birth_date\":\"1994-06-23\",\"espn_id\":2974334},\"6235\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035507\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603937730274,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"6235\",\"birth_city\":null,\"fantasy_data_id\":21165,\"years_exp\":1,\"hashtag\":\"#KylePhillips-NFL-NYJ-98\",\"search_first_name\":\"kyle\",\"rotowire_id\":13708,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1687,\"age\":23,\"full_name\":\"Kyle Phillips\",\"sportradar_id\":\"4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00\",\"pandascore_id\":null,\"yahoo_id\":32530,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Hillsboro (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylephillips\",\"birth_date\":\"1997-05-05\",\"espn_id\":3886528},\"1001\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clutts\",\"depth_chart_position\":null,\"player_id\":\"1001\",\"birth_city\":null,\"fantasy_data_id\":13527,\"years_exp\":9,\"hashtag\":\"#TylerClutts-NFL-FA-44\",\"search_first_name\":\"tyler\",\"rotowire_id\":7298,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Tyler Clutts\",\"sportradar_id\":\"cb96a5c5-d178-43c0-b0df-a78c71818060\",\"pandascore_id\":null,\"yahoo_id\":24769,\"last_name\":\"Clutts\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Clovis (CA)\",\"depth_chart_order\":null,\"stats_id\":226579,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylerclutts\",\"birth_date\":\"1984-11-09\",\"espn_id\":13945},\"1257\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1257\",\"birth_city\":null,\"fantasy_data_id\":14643,\"years_exp\":8,\"hashtag\":\"#JonathanMartin-NFL-FA-71\",\"search_first_name\":\"jonathan\",\"rotowire_id\":null,\"rotoworld_id\":7434,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jonathan Martin\",\"sportradar_id\":\"c4886b28-cb8b-468d-aaff-b0b2ce9aeffa\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonathanmartin\",\"birth_date\":\"1989-08-19\",\"espn_id\":14975},\"5881\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035677\",\"first_name\":\"Nasir\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605628223651,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adderley\",\"depth_chart_position\":\"SS\",\"player_id\":\"5881\",\"birth_city\":null,\"fantasy_data_id\":20733,\"years_exp\":1,\"hashtag\":\"#NasirAdderley-NFL-LAC-24\",\"search_first_name\":\"nasir\",\"rotowire_id\":13668,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1518,\"age\":23,\"full_name\":\"Nasir Adderley\",\"sportradar_id\":\"279be739-bfd5-47aa-8302-fc58bcba37d5\",\"pandascore_id\":null,\"yahoo_id\":31892,\"last_name\":\"Adderley\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Great Valley (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nasiradderley\",\"birth_date\":\"1997-05-31\",\"espn_id\":3912028},\"3647\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lathan\",\"depth_chart_position\":null,\"player_id\":\"3647\",\"birth_city\":null,\"fantasy_data_id\":18438,\"years_exp\":0,\"hashtag\":\"#TerrellLathan-NFL-FA-72\",\"search_first_name\":\"terrell\",\"rotowire_id\":11399,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Terrell Lathan\",\"sportradar_id\":\"b30aba7b-c965-471b-8dcd-8537a4ee5584\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lathan\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'3\\\"\",\"search_full_name\":\"terrelllathan\",\"birth_date\":null,\"espn_id\":null},\"2212\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030833\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"2212\",\"birth_city\":null,\"fantasy_data_id\":16590,\"years_exp\":6,\"hashtag\":\"#JoshAllen-NFL-FA-66\",\"search_first_name\":\"josh\",\"rotowire_id\":10011,\"rotoworld_id\":13045,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Allen\",\"sportradar_id\":\"7206bfcb-ae42-4220-b738-158d3e2bb0fe\",\"pandascore_id\":null,\"yahoo_id\":28032,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Louisiana-Monroe\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshallen\",\"birth_date\":\"1991-12-30\",\"espn_id\":17102},\"4285\":{\"position\":\"WR\",\"injury_notes\":\"Davis does not have a timetable for return.\",\"birth_country\":null,\"gsis_id\":\"00-0033530\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603835754900,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4285\",\"birth_city\":null,\"fantasy_data_id\":19131,\"years_exp\":3,\"hashtag\":\"#RobertDavis-NFL-LV-14\",\"search_first_name\":\"robert\",\"rotowire_id\":11853,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1230,\"age\":25,\"full_name\":\"Robert Davis\",\"sportradar_id\":\"d0879c68-6387-4edc-b55b-07e128546ae7\",\"pandascore_id\":null,\"yahoo_id\":30322,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"Northside (GA)\",\"depth_chart_order\":3,\"stats_id\":744112,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"robertdavis\",\"birth_date\":\"1995-04-02\",\"espn_id\":3042373},\"6588\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035544\",\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599621313754,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kennedy\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6588\",\"birth_city\":null,\"fantasy_data_id\":21556,\"years_exp\":1,\"hashtag\":\"#TomKennedy-NFL-DET-85\",\"search_first_name\":\"tom\",\"rotowire_id\":14246,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1761,\"age\":24,\"full_name\":\"Tom Kennedy\",\"sportradar_id\":\"dc51b38c-dc82-44ee-a88b-764d681ce58a\",\"pandascore_id\":null,\"yahoo_id\":32561,\"last_name\":\"Kennedy\",\"metadata\":null,\"college\":\"Bryant\",\"high_school\":\"Farmingdale (NY)\",\"depth_chart_order\":4,\"stats_id\":837087,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tomkennedy\",\"birth_date\":\"1996-07-29\",\"espn_id\":3126997},\"4526\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033604\",\"first_name\":\"Krishawn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599602125629,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hogan\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4526\",\"birth_city\":null,\"fantasy_data_id\":19403,\"years_exp\":3,\"hashtag\":\"#KrishawnHogan-NFL-IND-81\",\"search_first_name\":\"krishawn\",\"rotowire_id\":11860,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1259,\"age\":25,\"full_name\":\"Krishawn Hogan\",\"sportradar_id\":\"a2368d42-9e6b-4268-883a-f23ef7ef5638\",\"pandascore_id\":null,\"yahoo_id\":30487,\"last_name\":\"Hogan\",\"metadata\":null,\"college\":\"Marian, Ind.\",\"high_school\":\"Warren Central (IN)\",\"depth_chart_order\":11,\"stats_id\":1050070,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'3\\\"\",\"search_full_name\":\"krishawnhogan\",\"birth_date\":\"1995-05-12\",\"espn_id\":4198679},\"6554\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035035\",\"first_name\":\"Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606266655038,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"poindexter\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6554\",\"birth_city\":null,\"fantasy_data_id\":21496,\"years_exp\":1,\"hashtag\":\"#ShawnPoindexter-NFL-SF-1\",\"search_first_name\":\"shawn\",\"rotowire_id\":13588,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Shawn Poindexter\",\"sportradar_id\":\"0e3160c0-d5ad-44c7-8c28-b31c1f6a7e03\",\"pandascore_id\":null,\"yahoo_id\":32325,\"last_name\":\"Poindexter\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Centennial (AZ)\",\"depth_chart_order\":4,\"stats_id\":933532,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'5\\\"\",\"search_full_name\":\"shawnpoindexter\",\"birth_date\":\"1995-12-13\",\"espn_id\":4039604},\"2079\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031070\",\"first_name\":\"Nat\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1552352127546,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"berhe\",\"depth_chart_position\":null,\"player_id\":\"2079\",\"birth_city\":null,\"fantasy_data_id\":16390,\"years_exp\":6,\"hashtag\":\"#NatBerhe-NFL-FA-31\",\"search_first_name\":\"nat\",\"rotowire_id\":9313,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Nat Berhe\",\"sportradar_id\":\"aa80f701-cce8-4136-b0cb-965fb8c90519\",\"pandascore_id\":null,\"yahoo_id\":27680,\"last_name\":\"Berhe\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":512382,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'10\\\"\",\"search_full_name\":\"natberhe\",\"birth_date\":\"1991-07-06\",\"espn_id\":16850},\"1986\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Storm\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1986\",\"birth_city\":null,\"fantasy_data_id\":16255,\"years_exp\":5,\"hashtag\":\"#StormJohnson-NFL-FA-27\",\"search_first_name\":\"storm\",\"rotowire_id\":9531,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Storm Johnson\",\"sportradar_id\":\"c971da6b-77f4-41d0-bca7-e8035efaf49a\",\"pandascore_id\":null,\"yahoo_id\":27750,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":540998,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"stormjohnson\",\"birth_date\":\"1992-07-10\",\"espn_id\":16884},\"2897\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stingily\",\"depth_chart_position\":null,\"player_id\":\"2897\",\"birth_city\":null,\"fantasy_data_id\":17365,\"years_exp\":1,\"hashtag\":\"#CameronStingily-NFL-FA-30\",\"search_first_name\":\"cameron\",\"rotowire_id\":11546,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cameron Stingily\",\"sportradar_id\":\"bc9c88ad-a39a-406d-8a53-7e3b7a91ce0c\",\"pandascore_id\":null,\"yahoo_id\":29042,\"last_name\":\"Stingily\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557467,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cameronstingily\",\"birth_date\":\"1991-10-05\",\"espn_id\":2513377},\"1338\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030533\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1587877852069,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barkley\",\"depth_chart_position\":\"QB\",\"player_id\":\"1338\",\"birth_city\":null,\"fantasy_data_id\":14855,\"years_exp\":7,\"hashtag\":\"#MattBarkley-NFL-BUF-5\",\"search_first_name\":\"matt\",\"rotowire_id\":8004,\"rotoworld_id\":7421,\"active\":true,\"search_rank\":491,\"age\":30,\"full_name\":\"Matt Barkley\",\"sportradar_id\":\"da7cb0cc-543e-47d5-b29a-2ba2b341bd14\",\"pandascore_id\":null,\"yahoo_id\":26721,\"last_name\":\"Barkley\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Mater Dei (CA)\",\"depth_chart_order\":2,\"stats_id\":494493,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mattbarkley\",\"birth_date\":\"1990-09-08\",\"espn_id\":15948},\"5856\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035238\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606495203442,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":\"LG\",\"player_id\":\"5856\",\"birth_city\":null,\"fantasy_data_id\":20760,\"years_exp\":1,\"hashtag\":\"#CodyFord-NFL-BUF-70\",\"search_first_name\":\"cody\",\"rotowire_id\":13498,\"rotoworld_id\":14083,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Cody Ford\",\"sportradar_id\":\"74a588d5-22b6-42da-8d59-c79d4f7634d2\",\"pandascore_id\":null,\"yahoo_id\":31870,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Pineville (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'3\\\"\",\"search_full_name\":\"codyford\",\"birth_date\":\"1996-12-28\",\"espn_id\":3707061},\"2074\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"street\",\"depth_chart_position\":null,\"player_id\":\"2074\",\"birth_city\":null,\"fantasy_data_id\":16381,\"years_exp\":6,\"hashtag\":\"#DevinStreet-NFL-FA-18\",\"search_first_name\":\"devin\",\"rotowire_id\":9464,\"rotoworld_id\":9557,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Devin Street\",\"sportradar_id\":\"0774d0d6-3e8a-41fb-b087-90c21502d312\",\"pandascore_id\":null,\"yahoo_id\":27674,\"last_name\":\"Street\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Liberty (PA)\",\"depth_chart_order\":null,\"stats_id\":511852,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"devinstreet\",\"birth_date\":\"1991-03-30\",\"espn_id\":16815},\"5868\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035694\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596397818818,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"little\",\"depth_chart_position\":\"LT\",\"player_id\":\"5868\",\"birth_city\":null,\"fantasy_data_id\":20858,\"years_exp\":1,\"hashtag\":\"#GregLittle-NFL-CAR-74\",\"search_first_name\":\"greg\",\"rotowire_id\":13448,\"rotoworld_id\":14070,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Greg Little\",\"sportradar_id\":\"d0ca076f-a25d-436b-837e-07dde16be635\",\"pandascore_id\":null,\"yahoo_id\":31869,\"last_name\":\"Little\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Allen (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"greglittle\",\"birth_date\":\"1997-11-04\",\"espn_id\":4047661},\"6460\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035109\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1595794816784,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herdman\",\"depth_chart_position\":\"RTE\",\"player_id\":\"6460\",\"birth_city\":null,\"fantasy_data_id\":21481,\"years_exp\":1,\"hashtag\":\"#ColeHerdman-NFL-FA-0\",\"search_first_name\":\"cole\",\"rotowire_id\":14119,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cole Herdman\",\"sportradar_id\":\"e9620a37-f9cf-4081-ab2a-75d16af640b7\",\"pandascore_id\":null,\"yahoo_id\":32313,\"last_name\":\"Herdman\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":830938,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coleherdman\",\"birth_date\":\"1995-06-27\",\"espn_id\":3116195},\"834\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dockery\",\"depth_chart_position\":null,\"player_id\":\"834\",\"birth_city\":null,\"fantasy_data_id\":12864,\"years_exp\":5,\"hashtag\":\"#JamesDockery-NFL-FA-31\",\"search_first_name\":\"james\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"James Dockery\",\"sportradar_id\":\"1e53e25b-9b85-41c6-b6c1-7cc129a35de1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dockery\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesdockery\",\"birth_date\":\"1988-11-09\",\"espn_id\":14733},\"3725\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kuder\",\"depth_chart_position\":null,\"player_id\":\"3725\",\"birth_city\":null,\"fantasy_data_id\":18533,\"years_exp\":0,\"hashtag\":\"#TylerKuder-NFL-FA-90\",\"search_first_name\":\"tyler\",\"rotowire_id\":11451,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyler Kuder\",\"sportradar_id\":\"9a6b35a4-877c-4f01-9122-a48e65a2843d\",\"pandascore_id\":null,\"yahoo_id\":29735,\"last_name\":\"Kuder\",\"metadata\":null,\"college\":\"Idaho State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerkuder\",\"birth_date\":\"1992-06-03\",\"espn_id\":null},\"4234\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033591\",\"first_name\":\"Noah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603213558266,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4234\",\"birth_city\":null,\"fantasy_data_id\":19080,\"years_exp\":3,\"hashtag\":\"#NoahBrown-NFL-DAL-85\",\"search_first_name\":\"noah\",\"rotowire_id\":11849,\"rotoworld_id\":null,\"active\":true,\"search_rank\":317,\"age\":24,\"full_name\":\"Noah Brown\",\"sportradar_id\":\"36f62824-1cdb-4e9e-8a11-55df97e562b9\",\"pandascore_id\":null,\"yahoo_id\":30352,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Pope John XXIII (NJ)\",\"depth_chart_order\":2,\"stats_id\":836103,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"noahbrown\",\"birth_date\":\"1996-01-06\",\"espn_id\":3121409},\"176\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026281\",\"first_name\":\"Gary\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1519346401303,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnidge\",\"depth_chart_position\":null,\"player_id\":\"176\",\"birth_city\":null,\"fantasy_data_id\":4577,\"years_exp\":12,\"hashtag\":\"#GaryBarnidge-NFL-FA-82\",\"search_first_name\":\"gary\",\"rotowire_id\":5783,\"rotoworld_id\":4894,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Gary Barnidge\",\"sportradar_id\":\"c5da1132-2198-4ad0-af83-89642b424574\",\"pandascore_id\":null,\"yahoo_id\":8907,\"last_name\":\"Barnidge\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Middleburg (FL)\",\"depth_chart_order\":null,\"stats_id\":273753,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"garybarnidge\",\"birth_date\":\"1985-09-22\",\"espn_id\":11364},\"1510\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030046\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600831823653,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mills\",\"depth_chart_position\":null,\"player_id\":\"1510\",\"birth_city\":null,\"fantasy_data_id\":15116,\"years_exp\":7,\"hashtag\":\"#JordanMills-NFL-DAL-68\",\"search_first_name\":\"jordan\",\"rotowire_id\":8826,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jordan Mills\",\"sportradar_id\":\"cf881df8-d5a0-4736-be01-eb72767366b0\",\"pandascore_id\":null,\"yahoo_id\":26786,\"last_name\":\"Mills\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Assumption (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jordanmills\",\"birth_date\":\"1990-12-24\",\"espn_id\":16004},\"4581\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033678\",\"first_name\":\"Jerrol\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535907628478,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garciawilliams\",\"depth_chart_position\":\"RILB\",\"player_id\":\"4581\",\"birth_city\":null,\"fantasy_data_id\":19468,\"years_exp\":3,\"hashtag\":\"#JerrolGarciaWilliams-NFL-FA-41\",\"search_first_name\":\"jerrol\",\"rotowire_id\":12448,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jerrol Garcia-Williams\",\"sportradar_id\":\"7b7bf4a7-4600-4540-b675-c3e4c7f163e9\",\"pandascore_id\":null,\"yahoo_id\":30815,\"last_name\":\"Garcia-Williams\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jerrolgarciawilliams\",\"birth_date\":\"1993-12-24\",\"espn_id\":2980586},\"6170\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"6170\",\"birth_city\":null,\"fantasy_data_id\":21003,\"years_exp\":1,\"hashtag\":\"#DarrellWilliams-NFL-FA-59\",\"search_first_name\":\"darrell\",\"rotowire_id\":14289,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Darrell Williams\",\"sportradar_id\":\"4980358d-6dd1-48b5-b524-cfca456777ec\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darrellwilliams\",\"birth_date\":null,\"espn_id\":3916937},\"2974\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"De'Ante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"saunders\",\"depth_chart_position\":null,\"player_id\":\"2974\",\"birth_city\":null,\"fantasy_data_id\":17469,\"years_exp\":5,\"hashtag\":\"#DeAnteSaunders-NFL-FA-40\",\"search_first_name\":\"deante\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"De'Ante Saunders\",\"sportradar_id\":\"9841acf5-4cc4-46a5-8d11-2da05c7fa261\",\"pandascore_id\":null,\"yahoo_id\":29005,\"last_name\":\"Saunders\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"Deland High School\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"deantesaunders\",\"birth_date\":\"1992-09-19\",\"espn_id\":2574637},\"5607\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ja'von\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rollandjones\",\"depth_chart_position\":null,\"player_id\":\"5607\",\"birth_city\":null,\"fantasy_data_id\":20266,\"years_exp\":2,\"hashtag\":\"#JavonRollandJones-NFL-FA-56\",\"search_first_name\":\"javon\",\"rotowire_id\":12705,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ja'von Rolland-Jones\",\"sportradar_id\":\"e4b7f01e-10f1-415d-8bf1-e8b6eab04ca1\",\"pandascore_id\":null,\"yahoo_id\":31565,\"last_name\":\"Rolland-Jones\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'2\\\"\",\"search_full_name\":\"javonrollandjones\",\"birth_date\":\"1994-11-13\",\"espn_id\":3042354},\"6662\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035572\",\"first_name\":\"Parker\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603227639245,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hesse\",\"depth_chart_position\":\"TE\",\"player_id\":\"6662\",\"birth_city\":null,\"fantasy_data_id\":21569,\"years_exp\":1,\"hashtag\":\"#ParkerHesse-NFL-TEN-83\",\"search_first_name\":\"parker\",\"rotowire_id\":14295,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Parker Hesse\",\"sportradar_id\":\"5aab93f1-bc81-4d83-b105-d579a14eb349\",\"pandascore_id\":null,\"yahoo_id\":32588,\"last_name\":\"Hesse\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Waukon (IA)\",\"depth_chart_order\":5,\"stats_id\":846264,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'3\\\"\",\"search_full_name\":\"parkerhesse\",\"birth_date\":\"1995-05-26\",\"espn_id\":3144991},\"3658\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032375\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1571439020252,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kerridge\",\"depth_chart_position\":null,\"player_id\":\"3658\",\"birth_city\":null,\"fantasy_data_id\":18452,\"years_exp\":4,\"hashtag\":\"#JoeKerridge-NFL-FA-49\",\"search_first_name\":\"joe\",\"rotowire_id\":11266,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joe Kerridge\",\"sportradar_id\":\"0cae9da5-bdbb-4d19-b360-578b0a1c37bf\",\"pandascore_id\":null,\"yahoo_id\":29695,\"last_name\":\"Kerridge\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606086,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joekerridge\",\"birth_date\":\"1992-09-17\",\"espn_id\":2576236},\"2247\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Walter\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1516218601613,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":null,\"player_id\":\"2247\",\"birth_city\":null,\"fantasy_data_id\":16651,\"years_exp\":6,\"hashtag\":\"#WalterPowell-NFL-FA-19\",\"search_first_name\":\"walter\",\"rotowire_id\":9607,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Walter Powell\",\"sportradar_id\":\"68b04e3f-d746-4569-8636-27557fdfea5f\",\"pandascore_id\":null,\"yahoo_id\":27724,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Murray State\",\"high_school\":\"Hazelwood East (MO)\",\"depth_chart_order\":null,\"stats_id\":555500,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"walterpowell\",\"birth_date\":\"1991-11-23\",\"espn_id\":16871},\"3942\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"steuck\",\"depth_chart_position\":null,\"player_id\":\"3942\",\"birth_city\":null,\"fantasy_data_id\":18775,\"years_exp\":0,\"hashtag\":\"#KyleSteuck-NFL-FA-77\",\"search_first_name\":\"kyle\",\"rotowire_id\":11668,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Steuck\",\"sportradar_id\":\"15340efd-f855-46db-9782-a5c7f8a35aac\",\"pandascore_id\":null,\"yahoo_id\":30072,\"last_name\":\"Steuck\",\"metadata\":null,\"college\":\"Northern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylesteuck\",\"birth_date\":\"1992-07-13\",\"espn_id\":null},\"725\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clint\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gresham\",\"depth_chart_position\":null,\"player_id\":\"725\",\"birth_city\":null,\"fantasy_data_id\":12275,\"years_exp\":10,\"hashtag\":\"#ClintGresham-NFL-FA-49\",\"search_first_name\":\"clint\",\"rotowire_id\":7134,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Clint Gresham\",\"sportradar_id\":\"7b763521-85a1-4d1a-8eec-852a2e83d551\",\"pandascore_id\":null,\"yahoo_id\":24394,\"last_name\":\"Gresham\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Ray (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"clintgresham\",\"birth_date\":\"1986-08-24\",\"espn_id\":13573},\"3058\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"philbin\",\"depth_chart_position\":null,\"player_id\":\"3058\",\"birth_city\":null,\"fantasy_data_id\":17789,\"years_exp\":0,\"hashtag\":\"#JoePhilbin-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":8351,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Philbin\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Philbin\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joephilbin\",\"birth_date\":null,\"espn_id\":null},\"6604\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035063\",\"first_name\":\"Mathieu\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"betts\",\"depth_chart_position\":null,\"player_id\":\"6604\",\"birth_city\":null,\"fantasy_data_id\":21431,\"years_exp\":1,\"hashtag\":\"#MathieuBetts-NFL-FA-92\",\"search_first_name\":\"mathieu\",\"rotowire_id\":13567,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mathieu Betts\",\"sportradar_id\":\"13141af5-6bef-4f49-98ce-5305f0187bef\",\"pandascore_id\":null,\"yahoo_id\":32248,\"last_name\":\"Betts\",\"metadata\":null,\"college\":\"Laval (Canada)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mathieubetts\",\"birth_date\":\"1995-03-22\",\"espn_id\":4411188},\"3422\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032692\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1546446023153,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"friend\",\"depth_chart_position\":null,\"player_id\":\"3422\",\"birth_city\":null,\"fantasy_data_id\":18186,\"years_exp\":4,\"hashtag\":\"#KyleFriend-NFL-FA-79\",\"search_first_name\":\"kyle\",\"rotowire_id\":11455,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Friend\",\"sportradar_id\":\"93eb4e28-a809-4192-82dc-783ab472323d\",\"pandascore_id\":null,\"yahoo_id\":29788,\"last_name\":\"Friend\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kylefriend\",\"birth_date\":\"1994-04-03\",\"espn_id\":2976257},\"5905\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035650\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597152925648,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"layne\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5905\",\"birth_city\":null,\"fantasy_data_id\":20853,\"years_exp\":1,\"hashtag\":\"#JustinLayne-NFL-PIT-31\",\"search_first_name\":\"justin\",\"rotowire_id\":13455,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1566,\"age\":22,\"full_name\":\"Justin Layne\",\"sportradar_id\":\"4fce55c1-1afb-4667-9115-0e239b72285b\",\"pandascore_id\":null,\"yahoo_id\":31915,\"last_name\":\"Layne\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Michigan State\",\"high_school\":\"Benedictine (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinlayne\",\"birth_date\":\"1998-01-12\",\"espn_id\":4046719},\"4141\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033931\",\"first_name\":\"Delano\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603317940555,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"4141\",\"birth_city\":null,\"fantasy_data_id\":18987,\"years_exp\":3,\"hashtag\":\"#DelanoHill-NFL-SEA-42\",\"search_first_name\":\"delano\",\"rotowire_id\":11992,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1169,\"age\":25,\"full_name\":\"Delano Hill\",\"sportradar_id\":\"d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2\",\"pandascore_id\":null,\"yahoo_id\":30208,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Cass Tech (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'1\\\"\",\"search_full_name\":\"delanohill\",\"birth_date\":\"1995-11-26\",\"espn_id\":3045214},\"3550\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032525\",\"first_name\":\"Jarrod\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606195250723,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"SS\",\"player_id\":\"3550\",\"birth_city\":null,\"fantasy_data_id\":18321,\"years_exp\":4,\"hashtag\":\"#JarrodWilson-NFL-JAX-26\",\"search_first_name\":\"jarrod\",\"rotowire_id\":11483,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1063,\"age\":26,\"full_name\":\"Jarrod Wilson\",\"sportradar_id\":\"0a4980fc-0ffc-45b4-a2a9-f9d38334618f\",\"pandascore_id\":null,\"yahoo_id\":29514,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Buchtel (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jarrodwilson\",\"birth_date\":\"1994-02-09\",\"espn_id\":2970661},\"2152\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031237\",\"first_name\":\"Teddy\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606521327909,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bridgewater\",\"depth_chart_position\":\"QB\",\"player_id\":\"2152\",\"birth_city\":null,\"fantasy_data_id\":16497,\"years_exp\":6,\"hashtag\":\"#TeddyBridgewater-NFL-CAR-5\",\"search_first_name\":\"teddy\",\"rotowire_id\":9245,\"rotoworld_id\":9274,\"active\":true,\"search_rank\":196,\"age\":28,\"full_name\":\"Teddy Bridgewater\",\"sportradar_id\":\"d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7\",\"pandascore_id\":null,\"yahoo_id\":27560,\"last_name\":\"Bridgewater\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Miami Northwestern (FL)\",\"depth_chart_order\":1,\"stats_id\":592195,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"teddybridgewater\",\"birth_date\":\"1992-11-10\",\"espn_id\":16728},\"4615\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dayon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pratt\",\"depth_chart_position\":null,\"player_id\":\"4615\",\"birth_city\":null,\"fantasy_data_id\":19506,\"years_exp\":2,\"hashtag\":\"#DayonPratt-NFL-FA-58\",\"search_first_name\":\"dayon\",\"rotowire_id\":12311,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dayon Pratt\",\"sportradar_id\":\"01ab00bb-69d1-48ea-a511-4281ca872b46\",\"pandascore_id\":null,\"yahoo_id\":30805,\"last_name\":\"Pratt\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dayonpratt\",\"birth_date\":\"1993-04-23\",\"espn_id\":2971997},\"2996\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stokes\",\"depth_chart_position\":null,\"player_id\":\"2996\",\"birth_city\":null,\"fantasy_data_id\":17523,\"years_exp\":0,\"hashtag\":\"#LoganStokes-NFL-FA-46\",\"search_first_name\":\"logan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Logan Stokes\",\"sportradar_id\":\"354dd3eb-d459-4fc2-9e8c-3ca921749fd3\",\"pandascore_id\":null,\"yahoo_id\":29151,\"last_name\":\"Stokes\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":727739,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"loganstokes\",\"birth_date\":null,\"espn_id\":null},\"407\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1510692302200,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beatty\",\"depth_chart_position\":null,\"player_id\":\"407\",\"birth_city\":null,\"fantasy_data_id\":8863,\"years_exp\":11,\"hashtag\":\"#WillBeatty-NFL-FA-66\",\"search_first_name\":\"will\",\"rotowire_id\":6108,\"rotoworld_id\":5271,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Will Beatty\",\"sportradar_id\":\"ab4ae658-8c63-4af9-b6a8-0741bcbae5a9\",\"pandascore_id\":null,\"yahoo_id\":9324,\"last_name\":\"Beatty\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'6\\\"\",\"search_full_name\":\"willbeatty\",\"birth_date\":\"1985-03-02\",\"espn_id\":12610},\"1722\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029164\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606090236648,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"remmers\",\"depth_chart_position\":\"RT\",\"player_id\":\"1722\",\"birth_city\":null,\"fantasy_data_id\":15647,\"years_exp\":8,\"hashtag\":\"#MikeRemmers-NFL-KC-75\",\"search_first_name\":\"mike\",\"rotowire_id\":9180,\"rotoworld_id\":7720,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mike Remmers\",\"sportradar_id\":\"776e4a24-08d7-46f4-a713-d384cd567f21\",\"pandascore_id\":null,\"yahoo_id\":25983,\"last_name\":\"Remmers\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Jesuit (OR)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mikeremmers\",\"birth_date\":\"1989-04-11\",\"espn_id\":15422},\"6483\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035111\",\"first_name\":\"Markus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1564620046632,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"6483\",\"birth_city\":null,\"fantasy_data_id\":21488,\"years_exp\":1,\"hashtag\":\"#MarkusJones-NFL-FA-59\",\"search_first_name\":\"markus\",\"rotowire_id\":13771,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Markus Jones\",\"sportradar_id\":\"9fb02841-5372-49f8-b621-958d5bb4b189\",\"pandascore_id\":null,\"yahoo_id\":32316,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"-\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"markusjones\",\"birth_date\":\"1996-01-10\",\"espn_id\":4390082},\"980\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1574016347203,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kaepernick\",\"depth_chart_position\":null,\"player_id\":\"980\",\"birth_city\":null,\"fantasy_data_id\":13443,\"years_exp\":9,\"hashtag\":\"#ColinKaepernick-NFL-FA-7\",\"search_first_name\":\"colin\",\"rotowire_id\":7353,\"rotoworld_id\":6530,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Colin Kaepernick\",\"sportradar_id\":\"068b70bc-9558-4e99-b729-754fd28937ed\",\"pandascore_id\":null,\"yahoo_id\":24823,\"last_name\":\"Kaepernick\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Pitman (CA)\",\"depth_chart_order\":null,\"stats_id\":323273,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"colinkaepernick\",\"birth_date\":\"1987-11-03\",\"espn_id\":14001},\"4004\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"briggs\",\"depth_chart_position\":null,\"player_id\":\"4004\",\"birth_city\":null,\"fantasy_data_id\":18843,\"years_exp\":2,\"hashtag\":\"#ChrisBriggs-NFL-FA-5\",\"search_first_name\":\"chris\",\"rotowire_id\":12285,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Briggs\",\"sportradar_id\":\"03bcace6-8cf0-43cd-b6b0-21f9ec17e4a9\",\"pandascore_id\":null,\"yahoo_id\":30102,\"last_name\":\"Briggs\",\"metadata\":null,\"college\":\"SE Lousiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":602781,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrisbriggs\",\"birth_date\":\"1992-11-09\",\"espn_id\":2575435},\"3153\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Amy\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adamsstrunk\",\"depth_chart_position\":null,\"player_id\":\"3153\",\"birth_city\":null,\"fantasy_data_id\":17909,\"years_exp\":null,\"hashtag\":\"#AmyAdamsStrunk-NFL-FA-0\",\"search_first_name\":\"amy\",\"rotowire_id\":null,\"rotoworld_id\":11348,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Amy Adams-Strunk\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Adams-Strunk\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"amyadamsstrunk\",\"birth_date\":null,\"espn_id\":null},\"12\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025446\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1573965927234,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kalil\",\"depth_chart_position\":null,\"player_id\":\"12\",\"birth_city\":null,\"fantasy_data_id\":423,\"years_exp\":13,\"hashtag\":\"#RyanKalil-NFL-FA-55\",\"search_first_name\":\"ryan\",\"rotowire_id\":5294,\"rotoworld_id\":4189,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Ryan Kalil\",\"sportradar_id\":\"d503e3cf-861d-4b06-8de8-f66b1b72a3bf\",\"pandascore_id\":null,\"yahoo_id\":8313,\"last_name\":\"Kalil\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Servite (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryankalil\",\"birth_date\":\"1985-03-29\",\"espn_id\":10503},\"3182\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033096\",\"first_name\":\"Shaq\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603047308354,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawson\",\"depth_chart_position\":\"WLB\",\"player_id\":\"3182\",\"birth_city\":null,\"fantasy_data_id\":17943,\"years_exp\":4,\"hashtag\":\"#ShaqLawson-NFL-MIA-90\",\"search_first_name\":\"shaq\",\"rotowire_id\":11106,\"rotoworld_id\":11306,\"active\":true,\"search_rank\":956,\"age\":26,\"full_name\":\"Shaq Lawson\",\"sportradar_id\":\"89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3\",\"pandascore_id\":null,\"yahoo_id\":29253,\"last_name\":\"Lawson\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Central Daniel (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shaqlawson\",\"birth_date\":\"1994-06-17\",\"espn_id\":2977679},\"309\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tracy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1578175530960,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"309\",\"birth_city\":null,\"fantasy_data_id\":7634,\"years_exp\":12,\"hashtag\":\"#TracyPorter-NFL-FA-21\",\"search_first_name\":\"tracy\",\"rotowire_id\":5753,\"rotoworld_id\":4858,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Tracy Porter\",\"sportradar_id\":\"4e157ec2-d7de-410c-bfe4-754ed47541d4\",\"pandascore_id\":null,\"yahoo_id\":8817,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Port Allen (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tracyporter\",\"birth_date\":\"1986-08-11\",\"espn_id\":11274},\"2488\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spencer\",\"depth_chart_position\":null,\"player_id\":\"2488\",\"birth_city\":null,\"fantasy_data_id\":16947,\"years_exp\":5,\"hashtag\":\"#EvanSpencer-NFL-FA-85\",\"search_first_name\":\"evan\",\"rotowire_id\":10233,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Evan Spencer\",\"sportradar_id\":\"2d60cffb-4b25-44c1-b430-9ea56c1a2cf3\",\"pandascore_id\":null,\"yahoo_id\":28575,\"last_name\":\"Spencer\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Vernon Hills\",\"depth_chart_order\":null,\"stats_id\":606486,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"evanspencer\",\"birth_date\":\"1993-05-26\",\"espn_id\":2576396},\"815\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028292\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"LB\"],\"news_updated\":1599515404144,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bellore\",\"depth_chart_position\":\"RB\",\"player_id\":\"815\",\"birth_city\":null,\"fantasy_data_id\":12787,\"years_exp\":9,\"hashtag\":\"#NickBellore-NFL-SEA-44\",\"search_first_name\":\"nick\",\"rotowire_id\":7504,\"rotoworld_id\":null,\"active\":true,\"search_rank\":521,\"age\":31,\"full_name\":\"Nick Bellore\",\"sportradar_id\":\"eeb9e3f4-e378-44ca-94b6-a724011ad710\",\"pandascore_id\":null,\"yahoo_id\":25295,\"last_name\":\"Bellore\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Whitefish Bay (WI)\",\"depth_chart_order\":6,\"stats_id\":382555,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickbellore\",\"birth_date\":\"1989-05-12\",\"espn_id\":14471},\"5014\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034803\",\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605405660976,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"noteboom\",\"depth_chart_position\":\"LT\",\"player_id\":\"5014\",\"birth_city\":null,\"fantasy_data_id\":19895,\"years_exp\":2,\"hashtag\":\"#JosephNoteboom-NFL-LAR-70\",\"search_first_name\":\"joseph\",\"rotowire_id\":12848,\"rotoworld_id\":13210,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joseph Noteboom\",\"sportradar_id\":\"d24f72af-88e3-46d0-b132-1fe77e5c893b\",\"pandascore_id\":null,\"yahoo_id\":31059,\"last_name\":\"Noteboom\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Plano (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"josephnoteboom\",\"birth_date\":\"1995-06-19\",\"espn_id\":3040008},\"5112\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034432\",\"first_name\":\"Bo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606263354940,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scarbrough\",\"depth_chart_position\":\"RB\",\"player_id\":\"5112\",\"birth_city\":null,\"fantasy_data_id\":20012,\"years_exp\":2,\"hashtag\":\"#BoScarbrough-NFL-SEA-40\",\"search_first_name\":\"bo\",\"rotowire_id\":12617,\"rotoworld_id\":13217,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bo Scarbrough\",\"sportradar_id\":\"5df36deb-d147-42e9-9059-11cb86d35b43\",\"pandascore_id\":null,\"yahoo_id\":31206,\"last_name\":\"Scarbrough\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Tuscaloosa County (AL)\",\"depth_chart_order\":8,\"stats_id\":835814,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"boscarbrough\",\"birth_date\":\"1994-09-29\",\"espn_id\":3126367},\"7151\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1587854746192,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williamson\",\"depth_chart_position\":null,\"player_id\":\"7151\",\"birth_city\":null,\"fantasy_data_id\":22153,\"years_exp\":0,\"hashtag\":\"#ChrisWilliamson-NFL-NYG-31\",\"search_first_name\":\"chris\",\"rotowire_id\":14836,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1940,\"age\":23,\"full_name\":\"Chris Williamson\",\"sportradar_id\":\"25396df1-3597-468c-b1d7-ce40edb0f7f2\",\"pandascore_id\":null,\"yahoo_id\":32917,\"last_name\":\"Williamson\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Gainesville (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chriswilliamson\",\"birth_date\":\"1997-05-19\",\"espn_id\":3915122},\"4959\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034067\",\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daly\",\"depth_chart_position\":null,\"player_id\":\"4959\",\"birth_city\":null,\"fantasy_data_id\":19826,\"years_exp\":2,\"hashtag\":\"#ScottDaly-NFL-FA-47\",\"search_first_name\":\"scott\",\"rotowire_id\":12983,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Scott Daly\",\"sportradar_id\":\"6bbb8551-be80-4eae-a1a5-9f877f917a05\",\"pandascore_id\":null,\"yahoo_id\":30970,\"last_name\":\"Daly\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"scottdaly\",\"birth_date\":\"1994-02-07\",\"espn_id\":2980138},\"5416\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034545\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606350003570,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"facyson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5416\",\"birth_city\":null,\"fantasy_data_id\":20434,\"years_exp\":2,\"hashtag\":\"#BrandonFacyson-NFL-LAC-28\",\"search_first_name\":\"brandon\",\"rotowire_id\":12669,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1472,\"age\":26,\"full_name\":\"Brandon Facyson\",\"sportradar_id\":\"e11ce848-c797-460b-bb46-6b9ceae48542\",\"pandascore_id\":null,\"yahoo_id\":31676,\"last_name\":\"Facyson\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Northgate (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonfacyson\",\"birth_date\":\"1994-09-08\",\"espn_id\":3045458},\"6454\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tate\",\"depth_chart_position\":null,\"player_id\":\"6454\",\"birth_city\":null,\"fantasy_data_id\":21474,\"years_exp\":1,\"hashtag\":\"#TrevonTate-NFL-CLE-72\",\"search_first_name\":\"trevon\",\"rotowire_id\":13884,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Trevon Tate\",\"sportradar_id\":\"f6ee6a50-24d4-4401-9924-c788aa8cf34f\",\"pandascore_id\":null,\"yahoo_id\":32289,\"last_name\":\"Tate\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trevontate\",\"birth_date\":null,\"espn_id\":3126225},\"2915\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pontius\",\"depth_chart_position\":null,\"player_id\":\"2915\",\"birth_city\":null,\"fantasy_data_id\":17383,\"years_exp\":null,\"hashtag\":\"#TaylorPontius-NFL-FA-0\",\"search_first_name\":\"taylor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Taylor Pontius\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pontius\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":564825,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"taylorpontius\",\"birth_date\":null,\"espn_id\":null},\"2576\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fajardo\",\"depth_chart_position\":null,\"player_id\":\"2576\",\"birth_city\":null,\"fantasy_data_id\":17041,\"years_exp\":0,\"hashtag\":\"#CodyFajardo-NFL-FA-8\",\"search_first_name\":\"cody\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cody Fajardo\",\"sportradar_id\":\"1e2cb733-dd43-40da-90a8-dbfee6fde584\",\"pandascore_id\":null,\"yahoo_id\":28961,\"last_name\":\"Fajardo\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557390,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"codyfajardo\",\"birth_date\":\"1992-03-29\",\"espn_id\":2512115},\"4125\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033911\",\"first_name\":\"Taywan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602091527359,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4125\",\"birth_city\":null,\"fantasy_data_id\":18971,\"years_exp\":3,\"hashtag\":\"#TaywanTaylor-NFL-CLE-10\",\"search_first_name\":\"taywan\",\"rotowire_id\":11880,\"rotoworld_id\":12203,\"active\":true,\"search_rank\":528,\"age\":25,\"full_name\":\"Taywan Taylor\",\"sportradar_id\":\"29972cbe-2912-49df-916b-200eead9a218\",\"pandascore_id\":null,\"yahoo_id\":30185,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Pleasure Ridge Park (KY)\",\"depth_chart_order\":2,\"stats_id\":750698,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"taywantaylor\",\"birth_date\":\"1995-03-02\",\"espn_id\":3059760},\"5033\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034781\",\"first_name\":\"Dorian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601334611884,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"odaniel\",\"depth_chart_position\":\"LB\",\"player_id\":\"5033\",\"birth_city\":null,\"fantasy_data_id\":19905,\"years_exp\":2,\"hashtag\":\"#DorianODaniel-NFL-KC-44\",\"search_first_name\":\"dorian\",\"rotowire_id\":12847,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1336,\"age\":26,\"full_name\":\"Dorian O'Daniel\",\"sportradar_id\":\"aafe4b32-1a8f-4691-9702-3141c14ff5c8\",\"pandascore_id\":null,\"yahoo_id\":31070,\"last_name\":\"O'Daniel\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Our Lady of Good Counsel (MD)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dorianodaniel\",\"birth_date\":\"1994-09-04\",\"espn_id\":3045132},\"2832\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hackett\",\"depth_chart_position\":null,\"player_id\":\"2832\",\"birth_city\":null,\"fantasy_data_id\":17300,\"years_exp\":1,\"hashtag\":\"#ChrisHackett-NFL-FA-36\",\"search_first_name\":\"chris\",\"rotowire_id\":10763,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Hackett\",\"sportradar_id\":\"d50dbc26-4e9f-45b2-bde2-16e8fbdff54c\",\"pandascore_id\":null,\"yahoo_id\":28786,\"last_name\":\"Hackett\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrishackett\",\"birth_date\":\"1993-08-03\",\"espn_id\":2575911},\"3997\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leslie\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frazier\",\"depth_chart_position\":null,\"player_id\":\"3997\",\"birth_city\":null,\"fantasy_data_id\":18834,\"years_exp\":0,\"hashtag\":\"#LeslieFrazier-NFL-FA-0\",\"search_first_name\":\"leslie\",\"rotowire_id\":null,\"rotoworld_id\":8352,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Leslie Frazier\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Frazier\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"lesliefrazier\",\"birth_date\":null,\"espn_id\":null},\"42\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024306\",\"first_name\":\"Frostee\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1540428303395,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rucker\",\"depth_chart_position\":null,\"player_id\":\"42\",\"birth_city\":null,\"fantasy_data_id\":1214,\"years_exp\":14,\"hashtag\":\"#FrosteeRucker-NFL-FA-98\",\"search_first_name\":\"frostee\",\"rotowire_id\":5030,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Frostee Rucker\",\"sportradar_id\":\"36648f14-5fe5-40f3-ade1-ef53c8f93bdf\",\"pandascore_id\":null,\"yahoo_id\":7840,\"last_name\":\"Rucker\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Tustin (CA)\",\"depth_chart_order\":null,\"stats_id\":157135,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'3\\\"\",\"search_full_name\":\"frosteerucker\",\"birth_date\":\"1983-09-14\",\"espn_id\":9677},\"2720\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031491\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1545692168389,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":null,\"player_id\":\"2720\",\"birth_city\":null,\"fantasy_data_id\":17188,\"years_exp\":5,\"hashtag\":\"#BrianPeters-NFL-FA-52\",\"search_first_name\":\"brian\",\"rotowire_id\":10153,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Brian Peters\",\"sportradar_id\":\"91fc931a-acff-46d1-8233-182ce9635740\",\"pandascore_id\":null,\"yahoo_id\":28377,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Central (OH)\",\"depth_chart_order\":null,\"stats_id\":399891,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brianpeters\",\"birth_date\":\"1988-10-31\",\"espn_id\":2265764},\"4122\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033910\",\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"feeney\",\"depth_chart_position\":\"C\",\"player_id\":\"4122\",\"birth_city\":null,\"fantasy_data_id\":18968,\"years_exp\":3,\"hashtag\":\"#DanFeeney-NFL-LAC-66\",\"search_first_name\":\"dan\",\"rotowire_id\":11793,\"rotoworld_id\":12257,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dan Feeney\",\"sportradar_id\":\"92c2dfb2-6929-4192-94cb-9ae6845dd2f6\",\"pandascore_id\":null,\"yahoo_id\":30184,\"last_name\":\"Feeney\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Sandburg (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danfeeney\",\"birth_date\":\"1994-05-29\",\"espn_id\":2979482},\"3207\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033066\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596560710384,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"billings\",\"depth_chart_position\":null,\"player_id\":\"3207\",\"birth_city\":null,\"fantasy_data_id\":17968,\"years_exp\":4,\"hashtag\":\"#AndrewBillings-NFL-CLE-99\",\"search_first_name\":\"andrew\",\"rotowire_id\":10907,\"rotoworld_id\":11276,\"active\":true,\"search_rank\":968,\"age\":25,\"full_name\":\"Andrew Billings\",\"sportradar_id\":\"67760ee1-c969-488f-b449-b8c37e7e32bb\",\"pandascore_id\":null,\"yahoo_id\":29356,\"last_name\":\"Billings\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Waco (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andrewbillings\",\"birth_date\":\"1995-03-06\",\"espn_id\":3051775},\"7303\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"7303\",\"birth_city\":null,\"fantasy_data_id\":22297,\"years_exp\":0,\"hashtag\":\"#BryanWright-NFL-FA-0\",\"search_first_name\":\"bryan\",\"rotowire_id\":15078,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bryan Wright\",\"sportradar_id\":\"b6867f5e-2166-40b3-928c-cd5a98a10dc0\",\"pandascore_id\":null,\"yahoo_id\":32954,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bryanwright\",\"birth_date\":null,\"espn_id\":null},\"3971\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1577812829092,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gailey\",\"depth_chart_position\":null,\"player_id\":\"3971\",\"birth_city\":null,\"fantasy_data_id\":18805,\"years_exp\":0,\"hashtag\":\"#ChanGailey-NFL-FA-0\",\"search_first_name\":\"chan\",\"rotowire_id\":null,\"rotoworld_id\":10315,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Chan Gailey\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gailey\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"changailey\",\"birth_date\":null,\"espn_id\":null},\"194\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wayne\",\"depth_chart_position\":null,\"player_id\":\"194\",\"birth_city\":null,\"fantasy_data_id\":5002,\"years_exp\":14,\"hashtag\":\"#ReggieWayne-NFL-FA-87\",\"search_first_name\":\"reggie\",\"rotowire_id\":null,\"rotoworld_id\":1496,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Reggie Wayne\",\"sportradar_id\":\"94fc7e6c-8c37-4713-abef-68154ac41d06\",\"pandascore_id\":null,\"yahoo_id\":5477,\"last_name\":\"Wayne\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":25596,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"reggiewayne\",\"birth_date\":\"1978-11-17\",\"espn_id\":2578},\"2338\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032262\",\"first_name\":\"Landon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603828554368,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"2338\",\"birth_city\":null,\"fantasy_data_id\":16794,\"years_exp\":5,\"hashtag\":\"#LandonCollins-NFL-WAS-26\",\"search_first_name\":\"landon\",\"rotowire_id\":10057,\"rotoworld_id\":10372,\"active\":true,\"search_rank\":861,\"age\":26,\"full_name\":\"Landon Collins\",\"sportradar_id\":\"a9c41c5b-0dcf-40cc-a76c-644307f2f2df\",\"pandascore_id\":null,\"yahoo_id\":28421,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Dutchtown (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'0\\\"\",\"search_full_name\":\"landoncollins\",\"birth_date\":\"1994-01-10\",\"espn_id\":2979841},\"3117\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"3117\",\"birth_city\":null,\"fantasy_data_id\":17870,\"years_exp\":0,\"hashtag\":\"#MarkDavis-NFL-FA-0\",\"search_first_name\":\"mark\",\"rotowire_id\":null,\"rotoworld_id\":9464,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mark Davis\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"markdavis\",\"birth_date\":null,\"espn_id\":null},\"36\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hasselbeck\",\"depth_chart_position\":null,\"player_id\":\"36\",\"birth_city\":null,\"fantasy_data_id\":1034,\"years_exp\":22,\"hashtag\":\"#MattHasselbeck-NFL-FA-8\",\"search_first_name\":\"matt\",\"rotowire_id\":949,\"rotoworld_id\":519,\"active\":false,\"search_rank\":9999999,\"age\":44,\"full_name\":\"Matt Hasselbeck\",\"sportradar_id\":\"7d8eba61-208d-4d91-86cd-704ad05cb7f4\",\"pandascore_id\":null,\"yahoo_id\":4416,\"last_name\":\"Hasselbeck\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Xaverian Brothers (MA)\",\"depth_chart_order\":null,\"stats_id\":24535,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"matthasselbeck\",\"birth_date\":\"1975-09-25\",\"espn_id\":1575},\"1702\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030273\",\"first_name\":\"Lane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600830623741,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"1702\",\"birth_city\":null,\"fantasy_data_id\":15583,\"years_exp\":7,\"hashtag\":\"#LaneTaylor-NFL-GB-65\",\"search_first_name\":\"lane\",\"rotowire_id\":9104,\"rotoworld_id\":9127,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Lane Taylor\",\"sportradar_id\":\"f9ec0e39-86d2-4f99-84d6-b4e7bb387d8b\",\"pandascore_id\":null,\"yahoo_id\":27360,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Martin (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lanetaylor\",\"birth_date\":\"1989-11-22\",\"espn_id\":16549},\"775\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025944\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1602549352071,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hauschka\",\"depth_chart_position\":\"K\",\"player_id\":\"775\",\"birth_city\":null,\"fantasy_data_id\":12594,\"years_exp\":12,\"hashtag\":\"#StephenHauschka-NFL-JAX-3\",\"search_first_name\":\"stephen\",\"rotowire_id\":5935,\"rotoworld_id\":5030,\"active\":true,\"search_rank\":624,\"age\":35,\"full_name\":\"Stephen Hauschka\",\"sportradar_id\":\"40cda44b-2ee3-4ad1-834e-995e30db84d4\",\"pandascore_id\":null,\"yahoo_id\":9066,\"last_name\":\"Hauschka\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Needham (MA)\",\"depth_chart_order\":3,\"stats_id\":406186,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"stephenhauschka\",\"birth_date\":\"1985-06-29\",\"espn_id\":11923},\"5265\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034574\",\"first_name\":\"Nic\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1535987767364,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shimonek\",\"depth_chart_position\":null,\"player_id\":\"5265\",\"birth_city\":null,\"fantasy_data_id\":20308,\"years_exp\":2,\"hashtag\":\"#NicShimonek-NFL-FA-2\",\"search_first_name\":\"nic\",\"rotowire_id\":12700,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nic Shimonek\",\"sportradar_id\":\"7bf77a00-7fd4-47c9-8806-4122e3846eae\",\"pandascore_id\":null,\"yahoo_id\":31688,\"last_name\":\"Shimonek\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740734,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nicshimonek\",\"birth_date\":\"1994-08-22\",\"espn_id\":3040134},\"16\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rice\",\"depth_chart_position\":null,\"player_id\":\"16\",\"birth_city\":null,\"fantasy_data_id\":547,\"years_exp\":6,\"hashtag\":\"#RayRice-NFL-FA-27\",\"search_first_name\":\"ray\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ray Rice\",\"sportradar_id\":\"712617bb-3379-46e9-86c6-af1c098e0a72\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rice\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'8\\\"\",\"search_full_name\":\"rayrice\",\"birth_date\":\"1987-01-22\",\"espn_id\":null},\"5965\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035703\",\"first_name\":\"Miles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606261854632,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boykin\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5965\",\"birth_city\":null,\"fantasy_data_id\":21037,\"years_exp\":1,\"hashtag\":\"#MilesBoykin-NFL-BAL-80\",\"search_first_name\":\"miles\",\"rotowire_id\":13553,\"rotoworld_id\":14013,\"active\":true,\"search_rank\":201,\"age\":24,\"full_name\":\"Miles Boykin\",\"sportradar_id\":\"d1ed6f8c-1611-4695-8b48-5adce0de50dd\",\"pandascore_id\":null,\"yahoo_id\":31925,\"last_name\":\"Boykin\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Providence Catholic (IL)\",\"depth_chart_order\":1,\"stats_id\":884553,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"milesboykin\",\"birth_date\":\"1996-10-12\",\"espn_id\":3932423},\"6841\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587786336419,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":\"LDT\",\"player_id\":\"6841\",\"birth_city\":null,\"fantasy_data_id\":22059,\"years_exp\":0,\"hashtag\":\"#JordanElliott-NFL-CLE-90\",\"search_first_name\":\"jordan\",\"rotowire_id\":14353,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1894,\"age\":23,\"full_name\":\"Jordan Elliott\",\"sportradar_id\":\"445efcfc-1646-4823-89f7-8b6005266d13\",\"pandascore_id\":null,\"yahoo_id\":32758,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Westside (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanelliott\",\"birth_date\":\"1997-11-23\",\"espn_id\":4039052},\"800\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1517417102499,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"800\",\"birth_city\":null,\"fantasy_data_id\":12747,\"years_exp\":9,\"hashtag\":\"#AaronWilliams-NFL-FA-23\",\"search_first_name\":\"aaron\",\"rotowire_id\":7523,\"rotoworld_id\":6444,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Aaron Williams\",\"sportradar_id\":\"becd2875-f4c1-45a5-8676-f6fb25b30fe9\",\"pandascore_id\":null,\"yahoo_id\":24821,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"McNeil (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'0\\\"\",\"search_full_name\":\"aaronwilliams\",\"birth_date\":\"1990-04-23\",\"espn_id\":14045},\"3275\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033079\",\"first_name\":\"Ricardo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599005133854,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"louis\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3275\",\"birth_city\":null,\"fantasy_data_id\":18036,\"years_exp\":4,\"hashtag\":\"#RicardoLouis-NFL-FA-0\",\"search_first_name\":\"ricardo\",\"rotowire_id\":11000,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1003,\"age\":26,\"full_name\":\"Ricardo Louis\",\"sportradar_id\":\"b3cac48b-ecf9-4bf9-963f-a10aeca6a350\",\"pandascore_id\":null,\"yahoo_id\":29348,\"last_name\":\"Louis\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":693980,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ricardolouis\",\"birth_date\":\"1994-03-23\",\"espn_id\":2971023},\"6809\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606175415420,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"diggs\",\"depth_chart_position\":null,\"player_id\":\"6809\",\"birth_city\":null,\"fantasy_data_id\":22051,\"years_exp\":0,\"hashtag\":\"#TrevonDiggs-NFL-DAL-27\",\"search_first_name\":\"trevon\",\"rotowire_id\":14389,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1886,\"age\":22,\"full_name\":\"Trevon Diggs\",\"sportradar_id\":\"02753dc9-52ac-4ed1-8086-7894d35a3bd1\",\"pandascore_id\":null,\"yahoo_id\":32721,\"last_name\":\"Diggs\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Avalon School (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trevondiggs\",\"birth_date\":\"1998-09-20\",\"espn_id\":4040966},\"963\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028042\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606261854628,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stocker\",\"depth_chart_position\":\"TE\",\"player_id\":\"963\",\"birth_city\":null,\"fantasy_data_id\":13370,\"years_exp\":9,\"hashtag\":\"#LukeStocker-NFL-ATL-88\",\"search_first_name\":\"luke\",\"rotowire_id\":7413,\"rotoworld_id\":null,\"active\":true,\"search_rank\":448,\"age\":32,\"full_name\":\"Luke Stocker\",\"sportradar_id\":\"5b712aed-201c-43dd-b978-b7b6ef91178e\",\"pandascore_id\":null,\"yahoo_id\":24891,\"last_name\":\"Stocker\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Madison Southern (KY)\",\"depth_chart_order\":3,\"stats_id\":334186,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lukestocker\",\"birth_date\":\"1988-07-17\",\"espn_id\":14099},\"497\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025825\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1606274455650,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"kern\",\"depth_chart_position\":null,\"player_id\":\"497\",\"birth_city\":null,\"fantasy_data_id\":10067,\"years_exp\":12,\"hashtag\":\"#BrettKern-NFL-TEN-6\",\"search_first_name\":\"brett\",\"rotowire_id\":6315,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Brett Kern\",\"sportradar_id\":\"9aec0e35-cef7-4093-8de6-49868ca8644b\",\"pandascore_id\":null,\"yahoo_id\":9070,\"last_name\":\"Kern\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Toledo\",\"high_school\":\"Grand Island (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brettkern\",\"birth_date\":\"1986-02-17\",\"espn_id\":11555},\"6313\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":null,\"player_id\":\"6313\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#DuplicatePlayer-NFL-FA-0\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":\"1997-03-17\",\"espn_id\":null},\"4960\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034874\",\"first_name\":\"Roquan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605586821518,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"LILB\",\"player_id\":\"4960\",\"birth_city\":null,\"fantasy_data_id\":19827,\"years_exp\":2,\"hashtag\":\"#RoquanSmith-NFL-CHI-58\",\"search_first_name\":\"roquan\",\"rotowire_id\":12644,\"rotoworld_id\":13113,\"active\":true,\"search_rank\":1289,\"age\":23,\"full_name\":\"Roquan Smith\",\"sportradar_id\":\"3291c582-9377-4bc2-8ee5-61d887873797\",\"pandascore_id\":null,\"yahoo_id\":30978,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Macon County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"roquansmith\",\"birth_date\":\"1997-04-08\",\"espn_id\":3915189},\"4286\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033532\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596517208084,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"harveyclemons\",\"depth_chart_position\":null,\"player_id\":\"4286\",\"birth_city\":null,\"fantasy_data_id\":19132,\"years_exp\":3,\"hashtag\":\"#JoshHarveyClemons-NFL-WAS-40\",\"search_first_name\":\"josh\",\"rotowire_id\":11991,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1231,\"age\":26,\"full_name\":\"Josh Harvey-Clemons\",\"sportradar_id\":\"bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4\",\"pandascore_id\":null,\"yahoo_id\":30343,\"last_name\":\"Harvey-Clemons\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Lowndes (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshharveyclemons\",\"birth_date\":\"1994-02-20\",\"espn_id\":2977645},\"2478\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1559328311964,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mumphery\",\"depth_chart_position\":null,\"player_id\":\"2478\",\"birth_city\":null,\"fantasy_data_id\":16935,\"years_exp\":5,\"hashtag\":\"#KeithMumphery-NFL-FA-12\",\"search_first_name\":\"keith\",\"rotowire_id\":10472,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Keith Mumphery\",\"sportradar_id\":\"6058b133-b81e-4122-af63-de0a73773daf\",\"pandascore_id\":null,\"yahoo_id\":28563,\"last_name\":\"Mumphery\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Dooly County (GA)\",\"depth_chart_order\":null,\"stats_id\":557363,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"keithmumphery\",\"birth_date\":\"1992-06-05\",\"espn_id\":2515420},\"4\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roddy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"4\",\"birth_city\":null,\"fantasy_data_id\":204,\"years_exp\":15,\"hashtag\":\"#RoddyWhite-NFL-FA-84\",\"search_first_name\":\"roddy\",\"rotowire_id\":4350,\"rotoworld_id\":3161,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Roddy White\",\"sportradar_id\":\"51e470b5-73ea-49b2-ae83-c26256a30812\",\"pandascore_id\":null,\"yahoo_id\":7203,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"James Island (SC)\",\"depth_chart_order\":null,\"stats_id\":166675,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"roddywhite\",\"birth_date\":\"1981-11-02\",\"espn_id\":8442},\"6247\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035432\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604368839510,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6247\",\"birth_city\":null,\"fantasy_data_id\":21178,\"years_exp\":1,\"hashtag\":\"#JasonMoore-NFL-LAC-11\",\"search_first_name\":\"jason\",\"rotowire_id\":13999,\"rotoworld_id\":null,\"active\":true,\"search_rank\":345,\"age\":25,\"full_name\":\"Jason Moore\",\"sportradar_id\":\"8346e196-ce56-4cfd-8438-f3c39131b327\",\"pandascore_id\":null,\"yahoo_id\":32547,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Findlay\",\"high_school\":\"Oberlin (OH)\",\"depth_chart_order\":2,\"stats_id\":1166990,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jasonmoore\",\"birth_date\":\"1995-06-23\",\"espn_id\":4069806},\"5740\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chucky\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"5740\",\"birth_city\":null,\"fantasy_data_id\":20510,\"years_exp\":0,\"hashtag\":\"#ChuckyWilliams-NFL-LAR-39\",\"search_first_name\":\"chucky\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chucky Williams\",\"sportradar_id\":\"061721c5-6a5f-4343-9c47-3ce3d28c69e6\",\"pandascore_id\":null,\"yahoo_id\":31737,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chuckywilliams\",\"birth_date\":\"1995-03-18\",\"espn_id\":3116645},\"6316\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035354\",\"first_name\":\"Juwan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foggie\",\"depth_chart_position\":null,\"player_id\":\"6316\",\"birth_city\":null,\"fantasy_data_id\":21219,\"years_exp\":1,\"hashtag\":\"#JuwanFoggie-NFL-FA-48\",\"search_first_name\":\"juwan\",\"rotowire_id\":14252,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Juwan Foggie\",\"sportradar_id\":\"4cad5078-de06-4449-b629-a954b92c51e2\",\"pandascore_id\":null,\"yahoo_id\":32413,\"last_name\":\"Foggie\",\"metadata\":null,\"college\":\"North Carolina-Charlotte\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'1\\\"\",\"search_full_name\":\"juwanfoggie\",\"birth_date\":\"1995-11-02\",\"espn_id\":3120075},\"2735\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031729\",\"first_name\":\"Thurston\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1550700639433,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"armbrister\",\"depth_chart_position\":null,\"player_id\":\"2735\",\"birth_city\":null,\"fantasy_data_id\":17203,\"years_exp\":5,\"hashtag\":\"#ThurstonArmbrister-NFL-FA-58\",\"search_first_name\":\"thurston\",\"rotowire_id\":10677,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Thurston Armbrister\",\"sportradar_id\":\"d1ac1143-9b14-41b7-be88-6b094592a3dd\",\"pandascore_id\":null,\"yahoo_id\":28845,\"last_name\":\"Armbrister\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Hollywood Hills (FL)\",\"depth_chart_order\":null,\"stats_id\":608950,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"thurstonarmbrister\",\"birth_date\":\"1992-12-25\",\"espn_id\":2579598},\"4368\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033344\",\"first_name\":\"Hardy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601343012622,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nickerson\",\"depth_chart_position\":\"MLB\",\"player_id\":\"4368\",\"birth_city\":null,\"fantasy_data_id\":19225,\"years_exp\":3,\"hashtag\":\"#HardyNickerson-NFL-MIN-47\",\"search_first_name\":\"hardy\",\"rotowire_id\":11979,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1238,\"age\":26,\"full_name\":\"Hardy Nickerson\",\"sportradar_id\":\"2c33ff53-6c16-46b5-a3b0-20db70fe430a\",\"pandascore_id\":null,\"yahoo_id\":30583,\"last_name\":\"Nickerson\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Bishop O'Dowd (CA)\",\"depth_chart_order\":2,\"stats_id\":690975,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"hardynickerson\",\"birth_date\":\"1994-01-05\",\"espn_id\":2978211},\"2773\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":null,\"player_id\":\"2773\",\"birth_city\":null,\"fantasy_data_id\":17241,\"years_exp\":5,\"hashtag\":\"#TylerMurphy-NFL-FA-16\",\"search_first_name\":\"tyler\",\"rotowire_id\":10516,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tyler Murphy\",\"sportradar_id\":\"d00d0c9c-3220-4e3f-949a-ea3d61b517c8\",\"pandascore_id\":null,\"yahoo_id\":28666,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Wethersfield\",\"depth_chart_order\":null,\"stats_id\":557190,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylermurphy\",\"birth_date\":\"1992-01-12\",\"espn_id\":2516059},\"2661\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brock\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hekking\",\"depth_chart_position\":null,\"player_id\":\"2661\",\"birth_city\":null,\"fantasy_data_id\":17129,\"years_exp\":1,\"hashtag\":\"#BrockHekking-NFL-FA-59\",\"search_first_name\":\"brock\",\"rotowire_id\":10662,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brock Hekking\",\"sportradar_id\":\"c08d65f6-2aef-4181-b39c-adee1be8e711\",\"pandascore_id\":null,\"yahoo_id\":28683,\"last_name\":\"Hekking\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brockhekking\",\"birth_date\":\"1991-10-06\",\"espn_id\":2512124},\"4563\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcnamara\",\"depth_chart_position\":null,\"player_id\":\"4563\",\"birth_city\":null,\"fantasy_data_id\":19447,\"years_exp\":2,\"hashtag\":\"#TaylorMcNamara-NFL-FA-89\",\"search_first_name\":\"taylor\",\"rotowire_id\":12103,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Taylor McNamara\",\"sportradar_id\":\"d68d5e23-f5bc-4325-ab63-c1592bed774e\",\"pandascore_id\":null,\"yahoo_id\":30547,\"last_name\":\"McNamara\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651540,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"taylormcnamara\",\"birth_date\":\"1994-08-12\",\"espn_id\":2976620},\"3549\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pearce\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"slater\",\"depth_chart_position\":null,\"player_id\":\"3549\",\"birth_city\":null,\"fantasy_data_id\":18319,\"years_exp\":0,\"hashtag\":\"#PearceSlater-NFL-FA-63\",\"search_first_name\":\"pearce\",\"rotowire_id\":11177,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Pearce Slater\",\"sportradar_id\":\"8792ad31-cf32-4b16-b1d4-bce4838e4b07\",\"pandascore_id\":null,\"yahoo_id\":29513,\"last_name\":\"Slater\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'7\\\"\",\"search_full_name\":\"pearceslater\",\"birth_date\":\"1993-10-01\",\"espn_id\":null},\"5378\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034163\",\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605546318283,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"SLB\",\"player_id\":\"5378\",\"birth_city\":null,\"fantasy_data_id\":19999,\"years_exp\":2,\"hashtag\":\"#JacobMartin-NFL-HOU-54\",\"search_first_name\":\"jacob\",\"rotowire_id\":12990,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1387,\"age\":24,\"full_name\":\"Jacob Martin\",\"sportradar_id\":\"b7337487-017c-42f4-b500-6802a35efbfc\",\"pandascore_id\":null,\"yahoo_id\":31156,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Cherokee Trail (CO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jacobmartin\",\"birth_date\":\"1995-12-11\",\"espn_id\":3138764},\"3968\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Norv\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":null,\"player_id\":\"3968\",\"birth_city\":null,\"fantasy_data_id\":18802,\"years_exp\":0,\"hashtag\":\"#NorvTurner-NFL-FA-0\",\"search_first_name\":\"norv\",\"rotowire_id\":null,\"rotoworld_id\":9333,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Norv Turner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Turner\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"norvturner\",\"birth_date\":null,\"espn_id\":null},\"6029\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035003\",\"first_name\":\"Jackson\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599705944118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barton\",\"depth_chart_position\":\"LT\",\"player_id\":\"6029\",\"birth_city\":null,\"fantasy_data_id\":21026,\"years_exp\":1,\"hashtag\":\"#JacksonBarton-NFL-NYG-72\",\"search_first_name\":\"jackson\",\"rotowire_id\":13721,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jackson Barton\",\"sportradar_id\":\"adb1984e-17b1-4efc-9af9-94cec5835c91\",\"pandascore_id\":null,\"yahoo_id\":32072,\"last_name\":\"Barton\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Brighton (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jacksonbarton\",\"birth_date\":\"1995-08-08\",\"espn_id\":3122865},\"3995\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"downing\",\"depth_chart_position\":null,\"player_id\":\"3995\",\"birth_city\":null,\"fantasy_data_id\":18832,\"years_exp\":0,\"hashtag\":\"#ToddDowning-NFL-FA-0\",\"search_first_name\":\"todd\",\"rotowire_id\":null,\"rotoworld_id\":12152,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Todd Downing\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Downing\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"todddowning\",\"birth_date\":null,\"espn_id\":null},\"5850\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035700\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606523728033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":\"RB\",\"player_id\":\"5850\",\"birth_city\":null,\"fantasy_data_id\":20824,\"years_exp\":1,\"hashtag\":\"#JoshJacobs-NFL-LV-28\",\"search_first_name\":\"josh\",\"rotowire_id\":13582,\"rotoworld_id\":14026,\"active\":true,\"search_rank\":8,\"age\":22,\"full_name\":\"Josh Jacobs\",\"sportradar_id\":\"61694ab9-b099-408e-b48d-6a643dd069ec\",\"pandascore_id\":null,\"yahoo_id\":31856,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"McLain (OK)\",\"depth_chart_order\":1,\"stats_id\":944416,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshjacobs\",\"birth_date\":\"1998-02-11\",\"espn_id\":4047365},\"2295\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2295\",\"birth_city\":null,\"fantasy_data_id\":16734,\"years_exp\":6,\"hashtag\":\"#KevinSmith-NFL-FA-17\",\"search_first_name\":\"kevin\",\"rotowire_id\":10167,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kevin Smith\",\"sportradar_id\":\"2092561a-fc19-4c9a-9695-2f5a537717be\",\"pandascore_id\":null,\"yahoo_id\":28118,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557899,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kevinsmith\",\"birth_date\":\"1991-12-21\",\"espn_id\":17257},\"2196\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030801\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1533504008912,\"status\":\"Physically Unable to Perform\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"2196\",\"birth_city\":null,\"fantasy_data_id\":16567,\"years_exp\":6,\"hashtag\":\"#BrandonColeman-NFL-FA-16\",\"search_first_name\":\"brandon\",\"rotowire_id\":9223,\"rotoworld_id\":9412,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Coleman\",\"sportradar_id\":\"07169571-5184-43ea-aa36-9a283b276b94\",\"pandascore_id\":null,\"yahoo_id\":27921,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Bishop McNamara (MD)\",\"depth_chart_order\":null,\"stats_id\":556468,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brandoncoleman\",\"birth_date\":\"1992-06-22\",\"espn_id\":17127},\"2464\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Neiron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ball\",\"depth_chart_position\":null,\"player_id\":\"2464\",\"birth_city\":null,\"fantasy_data_id\":16921,\"years_exp\":5,\"hashtag\":\"#NeironBall-NFL-FA-58\",\"search_first_name\":\"neiron\",\"rotowire_id\":10464,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Neiron Ball\",\"sportradar_id\":\"35e1453d-1bbf-433b-8319-45dde3c6cc1f\",\"pandascore_id\":null,\"yahoo_id\":28549,\"last_name\":\"Ball\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Jackson (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"neironball\",\"birth_date\":\"1992-08-20\",\"espn_id\":2516039},\"5026\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034765\",\"first_name\":\"Tre'Quan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605921302962,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5026\",\"birth_city\":null,\"fantasy_data_id\":19897,\"years_exp\":2,\"hashtag\":\"#TreQuanSmith-NFL-NO-10\",\"search_first_name\":\"trequan\",\"rotowire_id\":12567,\"rotoworld_id\":13196,\"active\":true,\"search_rank\":220,\"age\":24,\"full_name\":\"Tre'Quan Smith\",\"sportradar_id\":\"c65b8d70-ac93-4782-996a-ef96fd11047c\",\"pandascore_id\":null,\"yahoo_id\":31061,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Village Academy (FL)\",\"depth_chart_order\":1,\"stats_id\":838415,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trequansmith\",\"birth_date\":\"1996-01-07\",\"espn_id\":3128451},\"752\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"O'Brien\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schofield\",\"depth_chart_position\":null,\"player_id\":\"752\",\"birth_city\":null,\"fantasy_data_id\":12433,\"years_exp\":10,\"hashtag\":\"#OBrienSchofield-NFL-FA-54\",\"search_first_name\":\"obrien\",\"rotowire_id\":6688,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"O'Brien Schofield\",\"sportradar_id\":\"35fc0549-83d9-4baa-b80b-724e4ea93eb8\",\"pandascore_id\":null,\"yahoo_id\":24106,\"last_name\":\"Schofield\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"North Chicago Community (IL)\",\"depth_chart_order\":null,\"stats_id\":300570,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"obrienschofield\",\"birth_date\":\"1987-04-03\",\"espn_id\":13449},\"4663\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033699\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606506027247,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ekeler\",\"depth_chart_position\":\"RB\",\"player_id\":\"4663\",\"birth_city\":null,\"fantasy_data_id\":19562,\"years_exp\":3,\"hashtag\":\"#AustinEkeler-NFL-LAC-30\",\"search_first_name\":\"austin\",\"rotowire_id\":12401,\"rotoworld_id\":12563,\"active\":true,\"search_rank\":16,\"age\":25,\"full_name\":\"Austin Ekeler\",\"sportradar_id\":\"e5b8c439-a48a-4f83-b63b-1a4d30e04cd3\",\"pandascore_id\":null,\"yahoo_id\":30423,\"last_name\":\"Ekeler\",\"metadata\":null,\"college\":\"Western State, Colo.\",\"high_school\":\"Eaton (CO)\",\"depth_chart_order\":1,\"stats_id\":790004,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"austinekeler\",\"birth_date\":\"1995-05-17\",\"espn_id\":3068267},\"6252\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035434\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596411018922,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peace\",\"depth_chart_position\":null,\"player_id\":\"6252\",\"birth_city\":null,\"fantasy_data_id\":21185,\"years_exp\":1,\"hashtag\":\"#ChrisPeace-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":13643,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Peace\",\"sportradar_id\":\"a3dca1fa-69cf-4468-b95b-63c8d532dc5f\",\"pandascore_id\":null,\"yahoo_id\":32549,\"last_name\":\"Peace\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrispeace\",\"birth_date\":\"1996-02-08\",\"espn_id\":3124030},\"1479\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030279\",\"first_name\":\"Keenan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606591533237,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1479\",\"birth_city\":null,\"fantasy_data_id\":15076,\"years_exp\":7,\"hashtag\":\"#KeenanAllen-NFL-LAC-13\",\"search_first_name\":\"keenan\",\"rotowire_id\":8627,\"rotoworld_id\":8379,\"active\":true,\"search_rank\":63,\"age\":28,\"full_name\":\"Keenan Allen\",\"sportradar_id\":\"5f424505-f29f-433c-b3f2-1a143a04a010\",\"pandascore_id\":null,\"yahoo_id\":26699,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Northern Guilford (NC)\",\"depth_chart_order\":1,\"stats_id\":557210,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'2\\\"\",\"search_full_name\":\"keenanallen\",\"birth_date\":\"1992-04-27\",\"espn_id\":15818},\"3768\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1524528601325,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powe\",\"depth_chart_position\":null,\"player_id\":\"3768\",\"birth_city\":null,\"fantasy_data_id\":18581,\"years_exp\":3,\"hashtag\":\"#DariusPowe-NFL-FA-80\",\"search_first_name\":\"darius\",\"rotowire_id\":11201,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darius Powe\",\"sportradar_id\":\"3ddd54b6-defd-4952-ad7d-489ddcf0d5ba\",\"pandascore_id\":null,\"yahoo_id\":29868,\"last_name\":\"Powe\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690979,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dariuspowe\",\"birth_date\":\"1994-03-15\",\"espn_id\":2978216},\"1541\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malliciah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goodman\",\"depth_chart_position\":null,\"player_id\":\"1541\",\"birth_city\":null,\"fantasy_data_id\":15178,\"years_exp\":7,\"hashtag\":\"#MalliciahGoodman-NFL-FA-99\",\"search_first_name\":\"malliciah\",\"rotowire_id\":8662,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Malliciah Goodman\",\"sportradar_id\":\"3885de37-f491-48a5-9e6a-ad9f83d8f8cb\",\"pandascore_id\":null,\"yahoo_id\":26750,\"last_name\":\"Goodman\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"West Florence (SC)\",\"depth_chart_order\":null,\"stats_id\":495645,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"276\",\"height\":\"6'4\\\"\",\"search_full_name\":\"malliciahgoodman\",\"birth_date\":\"1990-01-04\",\"espn_id\":15957},\"6240\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ron'quavion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tarver\",\"depth_chart_position\":null,\"player_id\":\"6240\",\"birth_city\":null,\"fantasy_data_id\":21171,\"years_exp\":0,\"hashtag\":\"#RonquavionTarver-NFL-FA-0\",\"search_first_name\":\"ronquavion\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ron'quavion Tarver\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tarver\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ronquaviontarver\",\"birth_date\":null,\"espn_id\":4048681},\"3660\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Valdez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"showers\",\"depth_chart_position\":null,\"player_id\":\"3660\",\"birth_city\":null,\"fantasy_data_id\":18454,\"years_exp\":3,\"hashtag\":\"#ValdezShowers-NFL-FA-5\",\"search_first_name\":\"valdez\",\"rotowire_id\":11267,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Valdez Showers\",\"sportradar_id\":\"b1ab528d-ab16-40cf-9d73-b286cc54bac3\",\"pandascore_id\":null,\"yahoo_id\":29697,\"last_name\":\"Showers\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607064,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"valdezshowers\",\"birth_date\":\"1993-06-28\",\"espn_id\":2578583},\"1616\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030160\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567286706303,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1616\",\"birth_city\":null,\"fantasy_data_id\":15301,\"years_exp\":7,\"hashtag\":\"#JoshMartin-NFL-FA-54\",\"search_first_name\":\"josh\",\"rotowire_id\":9110,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Martin\",\"sportradar_id\":\"f41be233-94ee-4d66-bb7b-aabb9a9509e8\",\"pandascore_id\":null,\"yahoo_id\":27179,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Columbia\",\"high_school\":\"Cherokee Trail (CO)\",\"depth_chart_order\":null,\"stats_id\":500943,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshmartin\",\"birth_date\":\"1991-11-07\",\"espn_id\":16268},\"1291\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029479\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1545265810627,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lamur\",\"depth_chart_position\":null,\"player_id\":\"1291\",\"birth_city\":null,\"fantasy_data_id\":14750,\"years_exp\":8,\"hashtag\":\"#EmmanuelLamur-NFL-FA-57\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":8578,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Emmanuel Lamur\",\"sportradar_id\":\"3f6b7426-8fc2-44c8-9cba-9d6234e9d43d\",\"pandascore_id\":null,\"yahoo_id\":26475,\"last_name\":\"Lamur\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"King's Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":509206,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"emmanuellamur\",\"birth_date\":\"1989-06-08\",\"espn_id\":15640},\"3428\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mehdi\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abdesmad\",\"depth_chart_position\":null,\"player_id\":\"3428\",\"birth_city\":null,\"fantasy_data_id\":18192,\"years_exp\":3,\"hashtag\":\"#MehdiAbdesmad-NFL-FA-78\",\"search_first_name\":\"mehdi\",\"rotowire_id\":10877,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mehdi Abdesmad\",\"sportradar_id\":\"76191175-cc24-4b0c-8d97-24b8088bb5b7\",\"pandascore_id\":null,\"yahoo_id\":29940,\"last_name\":\"Abdesmad\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605372,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mehdiabdesmad\",\"birth_date\":\"1991-09-28\",\"espn_id\":2576467},\"1704\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"1704\",\"birth_city\":null,\"fantasy_data_id\":15596,\"years_exp\":9,\"hashtag\":\"#ChaseReynolds-NFL-FA-34\",\"search_first_name\":\"chase\",\"rotowire_id\":7948,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Chase Reynolds\",\"sportradar_id\":\"f963be41-d1a9-4410-8e8d-c21dcbaae24b\",\"pandascore_id\":null,\"yahoo_id\":25650,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Drummond (MT)\",\"depth_chart_order\":null,\"stats_id\":332798,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chasereynolds\",\"birth_date\":\"1987-10-22\",\"espn_id\":14820},\"7003\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damien\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601827838267,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"RG\",\"player_id\":\"7003\",\"birth_city\":null,\"fantasy_data_id\":22028,\"years_exp\":0,\"hashtag\":\"#DamienLewis-NFL-SEA-68\",\"search_first_name\":\"damien\",\"rotowire_id\":14670,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Damien Lewis\",\"sportradar_id\":\"475aa381-25d7-4d6e-a6ce-bc7601f4b034\",\"pandascore_id\":null,\"yahoo_id\":32739,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Canton (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'3\\\"\",\"search_full_name\":\"damienlewis\",\"birth_date\":\"1997-03-21\",\"espn_id\":4362647},\"4604\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033598\",\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604361330537,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ankou\",\"depth_chart_position\":\"RDT\",\"player_id\":\"4604\",\"birth_city\":null,\"fantasy_data_id\":19493,\"years_exp\":3,\"hashtag\":\"#EliAnkou-NFL-DAL-95\",\"search_first_name\":\"eli\",\"rotowire_id\":12358,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1267,\"age\":26,\"full_name\":\"Eli Ankou\",\"sportradar_id\":\"32b5fb32-1fcf-4955-9621-669c246a9fd3\",\"pandascore_id\":null,\"yahoo_id\":30792,\"last_name\":\"Ankou\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Red Lion Christian Academy (DE)\",\"depth_chart_order\":2,\"stats_id\":707361,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eliankou\",\"birth_date\":\"1994-06-08\",\"espn_id\":3008150},\"3345\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033047\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606422059474,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LCB\",\"player_id\":\"3345\",\"birth_city\":null,\"fantasy_data_id\":18106,\"years_exp\":4,\"hashtag\":\"#AnthonyBrown-NFL-DAL-30\",\"search_first_name\":\"anthony\",\"rotowire_id\":10921,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1028,\"age\":26,\"full_name\":\"Anthony Brown\",\"sportradar_id\":\"6445ca00-93b4-46d8-8ac6-451ae70a75f5\",\"pandascore_id\":null,\"yahoo_id\":29423,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Hillsborough (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonybrown\",\"birth_date\":\"1993-12-15\",\"espn_id\":2977756},\"4189\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033576\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606014309842,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"saubert\",\"depth_chart_position\":\"TE\",\"player_id\":\"4189\",\"birth_city\":null,\"fantasy_data_id\":19035,\"years_exp\":3,\"hashtag\":\"#EricSaubert-NFL-JAX-85\",\"search_first_name\":\"eric\",\"rotowire_id\":11897,\"rotoworld_id\":null,\"active\":true,\"search_rank\":561,\"age\":26,\"full_name\":\"Eric Saubert\",\"sportradar_id\":\"582dc00e-e7ec-4ca7-bff0-f7b1d604017b\",\"pandascore_id\":null,\"yahoo_id\":30287,\"last_name\":\"Saubert\",\"metadata\":null,\"college\":\"Drake\",\"high_school\":\"Hoffman Estates (IL)\",\"depth_chart_order\":5,\"stats_id\":694931,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ericsaubert\",\"birth_date\":\"1994-05-01\",\"espn_id\":2975863},\"2362\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032242\",\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576974056031,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"havenstein\",\"depth_chart_position\":\"RT\",\"player_id\":\"2362\",\"birth_city\":null,\"fantasy_data_id\":16818,\"years_exp\":5,\"hashtag\":\"#RobHavenstein-NFL-LAR-79\",\"search_first_name\":\"rob\",\"rotowire_id\":10270,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Rob Havenstein\",\"sportradar_id\":\"ec810fdb-ae6f-49ad-9538-31d1e6dfa578\",\"pandascore_id\":null,\"yahoo_id\":28445,\"last_name\":\"Havenstein\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Linganore (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'8\\\"\",\"search_full_name\":\"robhavenstein\",\"birth_date\":\"1992-05-13\",\"espn_id\":2515613},\"3016\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031512\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1572881708589,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"whitehead\",\"depth_chart_position\":\"SS\",\"player_id\":\"3016\",\"birth_city\":null,\"fantasy_data_id\":17565,\"years_exp\":5,\"hashtag\":\"#JermaineWhitehead-NFL-FA-35\",\"search_first_name\":\"jermaine\",\"rotowire_id\":10723,\"rotoworld_id\":10872,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jermaine Whitehead\",\"sportradar_id\":\"779bef9f-4c2c-409f-9079-784e03645eea\",\"pandascore_id\":null,\"yahoo_id\":28801,\"last_name\":\"Whitehead\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Amanda Elzy (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jermainewhitehead\",\"birth_date\":\"1993-03-12\",\"espn_id\":2574557},\"621\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027854\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1541468123746,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradford\",\"depth_chart_position\":null,\"player_id\":\"621\",\"birth_city\":null,\"fantasy_data_id\":11527,\"years_exp\":10,\"hashtag\":\"#SamBradford-NFL-FA-9\",\"search_first_name\":\"sam\",\"rotowire_id\":6452,\"rotoworld_id\":5161,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Sam Bradford\",\"sportradar_id\":\"cc3640b0-7560-431f-84ab-599e9dc8cac6\",\"pandascore_id\":null,\"yahoo_id\":23976,\"last_name\":\"Bradford\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Putnam City North (OK)\",\"depth_chart_order\":null,\"stats_id\":333276,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sambradford\",\"birth_date\":\"1987-11-08\",\"espn_id\":13197},\"2663\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gordon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"2663\",\"birth_city\":null,\"fantasy_data_id\":17131,\"years_exp\":0,\"hashtag\":\"#GordonHill-NFL-FA-41\",\"search_first_name\":\"gordon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Gordon Hill\",\"sportradar_id\":\"d12a81d5-32c2-4c93-9b40-78f1d61eba3c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"5'11\\\"\",\"search_full_name\":\"gordonhill\",\"birth_date\":\"1993-02-25\",\"espn_id\":2570378},\"4541\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033620\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564617046140,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reilly\",\"depth_chart_position\":null,\"player_id\":\"4541\",\"birth_city\":null,\"fantasy_data_id\":19420,\"years_exp\":3,\"hashtag\":\"#BrandonReilly-NFL-FA-83\",\"search_first_name\":\"brandon\",\"rotowire_id\":12395,\"rotoworld_id\":12713,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Reilly\",\"sportradar_id\":\"158a971d-dc66-4427-a3d4-a1ef2de37be6\",\"pandascore_id\":null,\"yahoo_id\":30598,\"last_name\":\"Reilly\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651709,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonreilly\",\"birth_date\":\"1993-09-24\",\"espn_id\":2974328},\"4636\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033762\",\"first_name\":\"Lenard\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535389509313,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tillery\",\"depth_chart_position\":null,\"player_id\":\"4636\",\"birth_city\":null,\"fantasy_data_id\":19531,\"years_exp\":3,\"hashtag\":\"#LenardTillery-NFL-FA-41\",\"search_first_name\":\"lenard\",\"rotowire_id\":12419,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lenard Tillery\",\"sportradar_id\":\"4c0b108c-e50b-4fee-a123-49c7e7c705d7\",\"pandascore_id\":null,\"yahoo_id\":30873,\"last_name\":\"Tillery\",\"metadata\":null,\"college\":\"Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":699401,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'9\\\"\",\"search_full_name\":\"lenardtillery\",\"birth_date\":\"1993-12-19\",\"espn_id\":2974712},\"1268\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532631901575,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"1268\",\"birth_city\":null,\"fantasy_data_id\":14706,\"years_exp\":8,\"hashtag\":\"#BryceHarris-NFL-FA-79\",\"search_first_name\":\"bryce\",\"rotowire_id\":8530,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Bryce Harris\",\"sportradar_id\":\"e6a5db0e-375b-4e6e-8fd7-46023c088242\",\"pandascore_id\":null,\"yahoo_id\":26166,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Tulare Union (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"bryceharris\",\"birth_date\":\"1989-01-16\",\"espn_id\":15145},\"4573\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033661\",\"first_name\":\"Lewis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1510156500944,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":null,\"player_id\":\"4573\",\"birth_city\":null,\"fantasy_data_id\":19460,\"years_exp\":3,\"hashtag\":\"#LewisNeal-NFL-FA-66\",\"search_first_name\":\"lewis\",\"rotowire_id\":12124,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lewis Neal\",\"sportradar_id\":\"61a5aa8b-1f47-4bfc-ac91-eae7f6679ad6\",\"pandascore_id\":null,\"yahoo_id\":30787,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":727755,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lewisneal\",\"birth_date\":\"1995-05-17\",\"espn_id\":3042744},\"2164\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"watts\",\"depth_chart_position\":null,\"player_id\":\"2164\",\"birth_city\":null,\"fantasy_data_id\":16516,\"years_exp\":6,\"hashtag\":\"#BrandonWatts-NFL-FA-58\",\"search_first_name\":\"brandon\",\"rotowire_id\":9778,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brandon Watts\",\"sportradar_id\":\"3025b803-408b-4882-bdbb-8739811601b7\",\"pandascore_id\":null,\"yahoo_id\":27751,\"last_name\":\"Watts\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Washington County (GA)\",\"depth_chart_order\":null,\"stats_id\":498816,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonwatts\",\"birth_date\":\"1991-01-21\",\"espn_id\":16818},\"3919\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1578093925258,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zimmer\",\"depth_chart_position\":null,\"player_id\":\"3919\",\"birth_city\":null,\"fantasy_data_id\":18746,\"years_exp\":0,\"hashtag\":\"#MikeZimmer-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":9294,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Zimmer\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Zimmer\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":501148,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikezimmer\",\"birth_date\":null,\"espn_id\":null},\"384\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bruton\",\"depth_chart_position\":null,\"player_id\":\"384\",\"birth_city\":null,\"fantasy_data_id\":8675,\"years_exp\":11,\"hashtag\":\"#DavidBruton-NFL-FA-30\",\"search_first_name\":\"david\",\"rotowire_id\":6098,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"David Bruton\",\"sportradar_id\":\"c3a7ec5c-db82-44ae-ab74-b5220448375a\",\"pandascore_id\":null,\"yahoo_id\":9378,\"last_name\":\"Bruton\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Miamisburg (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidbruton\",\"birth_date\":\"1987-07-23\",\"espn_id\":12638},\"2857\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hudson\",\"depth_chart_position\":null,\"player_id\":\"2857\",\"birth_city\":null,\"fantasy_data_id\":17325,\"years_exp\":0,\"hashtag\":\"#AndrewHudson-NFL-FA-54\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andrew Hudson\",\"sportradar_id\":\"204854ce-d0ae-4576-8728-920e56f7f326\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hudson\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andrewhudson\",\"birth_date\":\"1992-06-01\",\"espn_id\":2509486},\"7343\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"renner\",\"depth_chart_position\":null,\"player_id\":\"7343\",\"birth_city\":null,\"fantasy_data_id\":22331,\"years_exp\":0,\"hashtag\":\"#SamRenner-NFL-FA-0\",\"search_first_name\":\"sam\",\"rotowire_id\":15049,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Sam Renner\",\"sportradar_id\":\"c70cee71-fc9a-49a5-b51b-df5cabdf0794\",\"pandascore_id\":null,\"yahoo_id\":33260,\"last_name\":\"Renner\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"samrenner\",\"birth_date\":\"1997-02-24\",\"espn_id\":null},\"5070\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034271\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566314156436,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lasley\",\"depth_chart_position\":null,\"player_id\":\"5070\",\"birth_city\":null,\"fantasy_data_id\":19959,\"years_exp\":2,\"hashtag\":\"#JordanLasley-NFL-FA-18\",\"search_first_name\":\"jordan\",\"rotowire_id\":12543,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jordan Lasley\",\"sportradar_id\":\"be898c2b-4780-4c33-a54b-e93ab2822bec\",\"pandascore_id\":null,\"yahoo_id\":31132,\"last_name\":\"Lasley\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":840787,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanlasley\",\"birth_date\":\"1996-11-13\",\"espn_id\":3134302},\"4256\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033969\",\"first_name\":\"Ifeadi\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606515028110,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"odenigbo\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4256\",\"birth_city\":null,\"fantasy_data_id\":19102,\"years_exp\":3,\"hashtag\":\"#IfeadiOdenigbo-NFL-MIN-95\",\"search_first_name\":\"ifeadi\",\"rotowire_id\":11932,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1220,\"age\":26,\"full_name\":\"Ifeadi Odenigbo\",\"sportradar_id\":\"eb2c9e63-3a33-441e-aa95-462eaf97a371\",\"pandascore_id\":null,\"yahoo_id\":30333,\"last_name\":\"Odenigbo\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Centerville (OH)\",\"depth_chart_order\":1,\"stats_id\":691842,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ifeadiodenigbo\",\"birth_date\":\"1994-04-08\",\"espn_id\":2974353},\"1602\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jesse\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1602\",\"birth_city\":null,\"fantasy_data_id\":15262,\"years_exp\":3,\"hashtag\":\"#JesseWilliams-NFL-FA-90\",\"search_first_name\":\"jesse\",\"rotowire_id\":8671,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jesse Williams\",\"sportradar_id\":\"1a7d9526-76d9-4267-b083-c919560ee4b5\",\"pandascore_id\":null,\"yahoo_id\":26760,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jessewilliams\",\"birth_date\":\"1990-11-02\",\"espn_id\":16029},\"6678\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simmonsjr\",\"depth_chart_position\":null,\"player_id\":\"6678\",\"birth_city\":null,\"fantasy_data_id\":21577,\"years_exp\":0,\"hashtag\":\"#DavidSimmonsJr-NFL-FA-1\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"David Simmons Jr.\",\"sportradar_id\":\"b8b8f376-56f2-475c-8434-720b5836edf8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Simmons Jr.\",\"metadata\":null,\"college\":\"North Park\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidsimmonsjr\",\"birth_date\":null,\"espn_id\":null},\"6573\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"horton\",\"depth_chart_position\":null,\"player_id\":\"6573\",\"birth_city\":null,\"fantasy_data_id\":21264,\"years_exp\":0,\"hashtag\":\"#TylerHorton-NFL-FA-14\",\"search_first_name\":\"tyler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tyler Horton\",\"sportradar_id\":\"95a7554d-e983-4e98-963a-8c766d33d9df\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Horton\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tylerhorton\",\"birth_date\":null,\"espn_id\":null},\"966\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pettis\",\"depth_chart_position\":null,\"player_id\":\"966\",\"birth_city\":null,\"fantasy_data_id\":13391,\"years_exp\":5,\"hashtag\":\"#AustinPettis-NFL-FA-18\",\"search_first_name\":\"austin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Austin Pettis\",\"sportradar_id\":\"b87b2286-c3e7-46f1-a3b6-abd89aced3c6\",\"pandascore_id\":null,\"yahoo_id\":24865,\"last_name\":\"Pettis\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":381810,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austinpettis\",\"birth_date\":\"1988-05-07\",\"espn_id\":14035},\"444\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026990\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605548718509,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":\"SS\",\"player_id\":\"444\",\"birth_city\":null,\"fantasy_data_id\":9196,\"years_exp\":11,\"hashtag\":\"#MalcolmJenkins-NFL-NO-27\",\"search_first_name\":\"malcolm\",\"rotowire_id\":6086,\"rotoworld_id\":5217,\"active\":true,\"search_rank\":596,\"age\":32,\"full_name\":\"Malcolm Jenkins\",\"sportradar_id\":\"0a4c5237-08a4-41d5-873d-18f70c025149\",\"pandascore_id\":null,\"yahoo_id\":9278,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Piscataway (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"malcolmjenkins\",\"birth_date\":\"1987-12-20\",\"espn_id\":12426},\"5181\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034468\",\"first_name\":\"Chandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605462311471,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sullivan\",\"depth_chart_position\":\"NB\",\"player_id\":\"5181\",\"birth_city\":null,\"fantasy_data_id\":20178,\"years_exp\":2,\"hashtag\":\"#ChandonSullivan-NFL-GB-39\",\"search_first_name\":\"chandon\",\"rotowire_id\":12832,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1430,\"age\":24,\"full_name\":\"Chandon Sullivan\",\"sportradar_id\":\"e669f022-4065-4ef7-b850-a90e8b2367c0\",\"pandascore_id\":null,\"yahoo_id\":31589,\"last_name\":\"Sullivan\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"Winder-Barrow (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chandonsullivan\",\"birth_date\":\"1996-08-07\",\"espn_id\":3124849},\"5652\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535507445407,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"park\",\"depth_chart_position\":null,\"player_id\":\"5652\",\"birth_city\":null,\"fantasy_data_id\":20401,\"years_exp\":2,\"hashtag\":\"#IanPark-NFL-FA-66\",\"search_first_name\":\"ian\",\"rotowire_id\":13026,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ian Park\",\"sportradar_id\":\"27b99c21-18f4-4567-bdca-d2779f90f8a9\",\"pandascore_id\":null,\"yahoo_id\":31580,\"last_name\":\"Park\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ianpark\",\"birth_date\":\"1993-12-06\",\"espn_id\":2974358},\"3244\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033122\",\"first_name\":\"Shilique\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605403260577,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"calhoun\",\"depth_chart_position\":null,\"player_id\":\"3244\",\"birth_city\":null,\"fantasy_data_id\":18005,\"years_exp\":4,\"hashtag\":\"#ShiliqueCalhoun-NFL-NE-90\",\"search_first_name\":\"shilique\",\"rotowire_id\":10933,\"rotoworld_id\":null,\"active\":true,\"search_rank\":990,\"age\":28,\"full_name\":\"Shilique Calhoun\",\"sportradar_id\":\"12645147-c0fa-4aff-a395-496f8b9fb275\",\"pandascore_id\":null,\"yahoo_id\":29309,\"last_name\":\"Calhoun\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan State\",\"high_school\":\"Middletown (NJ)\",\"depth_chart_order\":null,\"stats_id\":606099,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"shiliquecalhoun\",\"birth_date\":\"1992-03-20\",\"espn_id\":2576257},\"6933\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Raequan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"6933\",\"birth_city\":null,\"fantasy_data_id\":21895,\"years_exp\":0,\"hashtag\":\"#RaequanWilliams-NFL-PHI-61\",\"search_first_name\":\"raequan\",\"rotowire_id\":14722,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1819,\"age\":23,\"full_name\":\"Raequan Williams\",\"sportradar_id\":\"96d75855-2d83-4e13-b395-846d6aaaadec\",\"pandascore_id\":null,\"yahoo_id\":32973,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"DePaul College Prep (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"raequanwilliams\",\"birth_date\":\"1997-02-14\",\"espn_id\":3929834},\"323\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0026213\",\"first_name\":\"Jamaal\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1556823305394,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"charles\",\"depth_chart_position\":null,\"player_id\":\"323\",\"birth_city\":null,\"fantasy_data_id\":7969,\"years_exp\":12,\"hashtag\":\"#JamaalCharles-NFL-FA-31\",\"search_first_name\":\"jamaal\",\"rotowire_id\":5663,\"rotoworld_id\":4617,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jamaal Charles\",\"sportradar_id\":\"aca06a5e-0e3a-4285-a025-199f8fa0376f\",\"pandascore_id\":null,\"yahoo_id\":8850,\"last_name\":\"Charles\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Memorial (TX)\",\"depth_chart_order\":null,\"stats_id\":300346,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jamaalcharles\",\"birth_date\":\"1986-12-27\",\"espn_id\":11307},\"6409\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034929\",\"first_name\":\"Quinn\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"6409\",\"birth_city\":null,\"fantasy_data_id\":21406,\"years_exp\":1,\"hashtag\":\"#QuinnBailey-NFL-DEN-75\",\"search_first_name\":\"quinn\",\"rotowire_id\":14065,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Quinn Bailey\",\"sportradar_id\":\"16423bd0-6239-454c-9ec8-f90477de17b1\",\"pandascore_id\":null,\"yahoo_id\":32188,\"last_name\":\"Bailey\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arizona State\",\"high_school\":\"Higley (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'6\\\"\",\"search_full_name\":\"quinnbailey\",\"birth_date\":\"1995-10-18\",\"espn_id\":3128773},\"5105\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"5105\",\"birth_city\":null,\"fantasy_data_id\":19958,\"years_exp\":0,\"hashtag\":\"#ChrisCampbell-NFL-NO-29\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chris Campbell\",\"sportradar_id\":\"6eae8044-47a4-4cd8-9c4e-6539afdf3837\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chriscampbell\",\"birth_date\":\"1995-11-27\",\"espn_id\":3116159},\"186\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeMarcus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ware\",\"depth_chart_position\":null,\"player_id\":\"186\",\"birth_city\":null,\"fantasy_data_id\":4877,\"years_exp\":15,\"hashtag\":\"#DeMarcusWare-NFL-FA-94\",\"search_first_name\":\"demarcus\",\"rotowire_id\":4474,\"rotoworld_id\":3170,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"DeMarcus Ware\",\"sportradar_id\":\"f5fa509a-fc67-4c74-be9f-cb9cc8815a6f\",\"pandascore_id\":null,\"yahoo_id\":7187,\"last_name\":\"Ware\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Auburn (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"demarcusware\",\"birth_date\":\"1982-07-31\",\"espn_id\":8426},\"5490\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jashon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robertson\",\"depth_chart_position\":null,\"player_id\":\"5490\",\"birth_city\":null,\"fantasy_data_id\":20200,\"years_exp\":0,\"hashtag\":\"#JashonRobertson-NFL-DAL-64\",\"search_first_name\":\"jashon\",\"rotowire_id\":13255,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Jashon Robertson\",\"sportradar_id\":\"2b72cd67-0354-46fa-8974-1758b48be387\",\"pandascore_id\":null,\"yahoo_id\":31284,\"last_name\":\"Robertson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jashonrobertson\",\"birth_date\":\"1996-03-21\",\"espn_id\":3115356},\"106\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jo-Lonn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunbar\",\"depth_chart_position\":null,\"player_id\":\"106\",\"birth_city\":null,\"fantasy_data_id\":2779,\"years_exp\":12,\"hashtag\":\"#JoLonnDunbar-NFL-FA-54\",\"search_first_name\":\"jolonn\",\"rotowire_id\":5746,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jo-Lonn Dunbar\",\"sportradar_id\":\"569c6923-6d97-4104-87c6-b99cc8212154\",\"pandascore_id\":null,\"yahoo_id\":9111,\"last_name\":\"Dunbar\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Corcoran (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jolonndunbar\",\"birth_date\":\"1985-03-13\",\"espn_id\":11693},\"1036\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"forston\",\"depth_chart_position\":null,\"player_id\":\"1036\",\"birth_city\":null,\"fantasy_data_id\":13745,\"years_exp\":2,\"hashtag\":\"#MarcusForston-NFL-FA-98\",\"search_first_name\":\"marcus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marcus Forston\",\"sportradar_id\":\"8da17a8e-45d5-463e-b8d5-1c5a03e02a23\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Forston\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marcusforston\",\"birth_date\":\"1989-09-28\",\"espn_id\":15473},\"5375\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034374\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606284656566,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"whitehead\",\"depth_chart_position\":\"FS\",\"player_id\":\"5375\",\"birth_city\":null,\"fantasy_data_id\":19954,\"years_exp\":2,\"hashtag\":\"#JordanWhitehead-NFL-TB-33\",\"search_first_name\":\"jordan\",\"rotowire_id\":12641,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1365,\"age\":23,\"full_name\":\"Jordan Whitehead\",\"sportradar_id\":\"4deb42ec-bece-4b00-b697-3caeff8c1997\",\"pandascore_id\":null,\"yahoo_id\":31087,\"last_name\":\"Whitehead\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Central Valley (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jordanwhitehead\",\"birth_date\":\"1997-03-18\",\"espn_id\":3895798},\"7481\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604963729110,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harrell\",\"depth_chart_position\":\"TE\",\"player_id\":\"7481\",\"birth_city\":null,\"fantasy_data_id\":22456,\"years_exp\":0,\"hashtag\":\"#ChaseHarrell-NFL-SF-83\",\"search_first_name\":\"chase\",\"rotowire_id\":14767,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chase Harrell\",\"sportradar_id\":\"31815cf3-6f59-439c-9a10-8548151da1f8\",\"pandascore_id\":null,\"yahoo_id\":33198,\"last_name\":\"Harrell\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Hargrave (TX)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chaseharrell\",\"birth_date\":\"1996-05-16\",\"espn_id\":3880416},\"1902\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031331\",\"first_name\":\"Pierre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606585533688,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"desir\",\"depth_chart_position\":\"LCB\",\"player_id\":\"1902\",\"birth_city\":null,\"fantasy_data_id\":16128,\"years_exp\":6,\"hashtag\":\"#PierreDesir-NFL-NYJ-35\",\"search_first_name\":\"pierre\",\"rotowire_id\":9367,\"rotoworld_id\":9357,\"active\":true,\"search_rank\":783,\"age\":30,\"full_name\":\"Pierre Desir\",\"sportradar_id\":\"f8f7a845-ae30-404c-8800-66bd643b6d2d\",\"pandascore_id\":null,\"yahoo_id\":27655,\"last_name\":\"Desir\",\"metadata\":null,\"college\":\"Lindenwood\",\"high_school\":\"Francis Howell Central (MO)\",\"depth_chart_order\":1,\"stats_id\":473659,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"pierredesir\",\"birth_date\":\"1990-09-08\",\"espn_id\":16948},\"3331\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032895\",\"first_name\":\"Jatavis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597004151035,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"3331\",\"birth_city\":null,\"fantasy_data_id\":18092,\"years_exp\":4,\"hashtag\":\"#JatavisBrown-NFL-PHI-53\",\"search_first_name\":\"jatavis\",\"rotowire_id\":11225,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1023,\"age\":26,\"full_name\":\"Jatavis Brown\",\"sportradar_id\":\"5a0c79a3-fd9e-4914-b3e1-27aae59d86fe\",\"pandascore_id\":null,\"yahoo_id\":29409,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":\"Glades Central (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jatavisbrown\",\"birth_date\":\"1994-02-18\",\"espn_id\":2971929},\"778\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"RJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stanford\",\"depth_chart_position\":null,\"player_id\":\"778\",\"birth_city\":null,\"fantasy_data_id\":12611,\"years_exp\":4,\"hashtag\":\"#RJStanford-NFL-FA-41\",\"search_first_name\":\"rj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"RJ Stanford\",\"sportradar_id\":\"2f526bf9-67bd-423d-8a5e-f8cbd5db1096\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Stanford\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rjstanford\",\"birth_date\":\"1988-05-06\",\"espn_id\":13463},\"3119\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1548370524240,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spagnuolo\",\"depth_chart_position\":null,\"player_id\":\"3119\",\"birth_city\":null,\"fantasy_data_id\":17873,\"years_exp\":0,\"hashtag\":\"#SteveSpagnuolo-NFL-FA-0\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":10323,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Steve Spagnuolo\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Spagnuolo\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"stevespagnuolo\",\"birth_date\":null,\"espn_id\":null},\"5127\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034577\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605561619355,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"QB\",\"player_id\":\"5127\",\"birth_city\":null,\"fantasy_data_id\":20053,\"years_exp\":2,\"hashtag\":\"#KyleAllen-NFL-WAS-8\",\"search_first_name\":\"kyle\",\"rotowire_id\":12623,\"rotoworld_id\":13495,\"active\":true,\"search_rank\":397,\"age\":24,\"full_name\":\"Kyle Allen\",\"sportradar_id\":\"d2023f5b-f73b-43ad-a816-f10dadfdfaed\",\"pandascore_id\":null,\"yahoo_id\":31301,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Desert Mountain (AZ)\",\"depth_chart_order\":3,\"stats_id\":822350,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kyleallen\",\"birth_date\":\"1996-03-08\",\"espn_id\":3115293},\"3822\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3822\",\"birth_city\":null,\"fantasy_data_id\":18639,\"years_exp\":0,\"hashtag\":\"#KelbyJohnson-NFL-FA-67\",\"search_first_name\":\"kelby\",\"rotowire_id\":11412,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kelby Johnson\",\"sportradar_id\":\"8c7238d8-d5e6-40c1-baf5-511e102d3766\",\"pandascore_id\":null,\"yahoo_id\":29928,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'7\\\"\",\"search_full_name\":\"kelbyjohnson\",\"birth_date\":\"1993-03-14\",\"espn_id\":null},\"5167\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1534989618360,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sturm\",\"depth_chart_position\":null,\"player_id\":\"5167\",\"birth_city\":null,\"fantasy_data_id\":20121,\"years_exp\":2,\"hashtag\":\"#DaltonSturm-NFL-FA-1\",\"search_first_name\":\"dalton\",\"rotowire_id\":13071,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dalton Sturm\",\"sportradar_id\":\"d02e1954-cac4-481f-b88a-6153840471cc\",\"pandascore_id\":null,\"yahoo_id\":31279,\"last_name\":\"Sturm\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835486,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daltonsturm\",\"birth_date\":\"1995-09-15\",\"espn_id\":3124037},\"4968\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034673\",\"first_name\":\"Tremaine\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605055261603,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edmunds\",\"depth_chart_position\":\"MLB\",\"player_id\":\"4968\",\"birth_city\":null,\"fantasy_data_id\":19836,\"years_exp\":2,\"hashtag\":\"#TremaineEdmunds-NFL-BUF-49\",\"search_first_name\":\"tremaine\",\"rotowire_id\":12612,\"rotoworld_id\":13121,\"active\":true,\"search_rank\":1295,\"age\":22,\"full_name\":\"Tremaine Edmunds\",\"sportradar_id\":\"88976fed-0ffd-40a8-98ea-0c6c55010000\",\"pandascore_id\":null,\"yahoo_id\":30986,\"last_name\":\"Edmunds\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Dan River (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tremaineedmunds\",\"birth_date\":\"1998-05-02\",\"espn_id\":3929950},\"822\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"doss\",\"depth_chart_position\":null,\"player_id\":\"822\",\"birth_city\":null,\"fantasy_data_id\":12816,\"years_exp\":5,\"hashtag\":\"#TandonDoss-NFL-FA-17\",\"search_first_name\":\"tandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tandon Doss\",\"sportradar_id\":\"36e8d27f-0dae-42a9-9d57-f34fbd325a6f\",\"pandascore_id\":null,\"yahoo_id\":24910,\"last_name\":\"Doss\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":463844,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tandondoss\",\"birth_date\":\"1989-09-22\",\"espn_id\":14190},\"3452\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnstone\",\"depth_chart_position\":null,\"player_id\":\"3452\",\"birth_city\":null,\"fantasy_data_id\":18216,\"years_exp\":0,\"hashtag\":\"#TylerJohnstone-NFL-FA-70\",\"search_first_name\":\"tyler\",\"rotowire_id\":11073,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyler Johnstone\",\"sportradar_id\":\"05d61ac1-b552-4628-b267-211cd1db9aee\",\"pandascore_id\":null,\"yahoo_id\":29520,\"last_name\":\"Johnstone\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tylerjohnstone\",\"birth_date\":\"1992-09-29\",\"espn_id\":null},\"6174\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035004\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602978657881,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slayton\",\"depth_chart_position\":null,\"player_id\":\"6174\",\"birth_city\":null,\"fantasy_data_id\":20942,\"years_exp\":1,\"hashtag\":\"#ChrisSlayton-NFL-ATL-79\",\"search_first_name\":\"chris\",\"rotowire_id\":13707,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1600,\"age\":24,\"full_name\":\"Chris Slayton\",\"sportradar_id\":\"f413306f-0134-467d-82d0-df73f5f7bbe5\",\"pandascore_id\":null,\"yahoo_id\":32077,\"last_name\":\"Slayton\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Crete-Monee (IL)\",\"depth_chart_order\":null,\"stats_id\":836233,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisslayton\",\"birth_date\":\"1996-08-01\",\"espn_id\":3124015},\"3937\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jesse\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schmitt\",\"depth_chart_position\":null,\"player_id\":\"3937\",\"birth_city\":null,\"fantasy_data_id\":18770,\"years_exp\":1,\"hashtag\":\"#JesseSchmitt-NFL-FA-46\",\"search_first_name\":\"jesse\",\"rotowire_id\":11655,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jesse Schmitt\",\"sportradar_id\":\"5fc7a4c8-da5b-43d1-be2e-c62c37090bfc\",\"pandascore_id\":null,\"yahoo_id\":30064,\"last_name\":\"Schmitt\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jesseschmitt\",\"birth_date\":\"1992-08-25\",\"espn_id\":2511678},\"4445\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033441\",\"first_name\":\"Keon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588719302802,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hatcher\",\"depth_chart_position\":null,\"player_id\":\"4445\",\"birth_city\":null,\"fantasy_data_id\":19306,\"years_exp\":3,\"hashtag\":\"#KeonHatcher-NFL-FA-0\",\"search_first_name\":\"keon\",\"rotowire_id\":11858,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Keon Hatcher\",\"sportradar_id\":\"2f7650ef-1dcf-40f2-8ce5-f2090b6bc325\",\"pandascore_id\":null,\"yahoo_id\":30629,\"last_name\":\"Hatcher\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693822,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keonhatcher\",\"birth_date\":\"1994-09-11\",\"espn_id\":2980061},\"816\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ellis\",\"depth_chart_position\":null,\"player_id\":\"816\",\"birth_city\":null,\"fantasy_data_id\":12792,\"years_exp\":9,\"hashtag\":\"#KenrickEllis-NFL-FA-72\",\"search_first_name\":\"kenrick\",\"rotowire_id\":7471,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kenrick Ellis\",\"sportradar_id\":\"a8ec0a86-f1aa-46a5-a723-adf7ee2d5598\",\"pandascore_id\":null,\"yahoo_id\":24881,\"last_name\":\"Ellis\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":\"Leonard (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"346\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kenrickellis\",\"birth_date\":\"1987-12-10\",\"espn_id\":14057},\"7195\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daka\",\"depth_chart_position\":null,\"player_id\":\"7195\",\"birth_city\":null,\"fantasy_data_id\":22197,\"years_exp\":0,\"hashtag\":\"#JohnDaka-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":15047,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"John Daka\",\"sportradar_id\":\"3df59064-f94f-41f2-83d0-bad6f07abf07\",\"pandascore_id\":null,\"yahoo_id\":32995,\"last_name\":\"Daka\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johndaka\",\"birth_date\":\"1997-12-02\",\"espn_id\":4028749},\"6744\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033733\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606346702329,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6744\",\"birth_city\":null,\"fantasy_data_id\":19705,\"years_exp\":3,\"hashtag\":\"#GregWard-NFL-PHI-84\",\"search_first_name\":\"greg\",\"rotowire_id\":11883,\"rotoworld_id\":12815,\"active\":true,\"search_rank\":234,\"age\":25,\"full_name\":\"Greg Ward\",\"sportradar_id\":\"0832c8ad-0872-446f-ad6e-0e309e8443d1\",\"pandascore_id\":null,\"yahoo_id\":30715,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"John Tyler (TX)\",\"depth_chart_order\":1,\"stats_id\":741292,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"gregward\",\"birth_date\":\"1995-07-12\",\"espn_id\":3040035},\"3297\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032778\",\"first_name\":\"Tajae\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602107129699,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sharpe\",\"depth_chart_position\":\"SWR\",\"player_id\":\"3297\",\"birth_city\":null,\"fantasy_data_id\":18058,\"years_exp\":4,\"hashtag\":\"#TajaeSharpe-NFL-MIN-11\",\"search_first_name\":\"tajae\",\"rotowire_id\":11003,\"rotoworld_id\":11325,\"active\":true,\"search_rank\":267,\"age\":25,\"full_name\":\"Tajae Sharpe\",\"sportradar_id\":\"b4e5a9af-6d00-4d51-9bb9-c7d5f69898df\",\"pandascore_id\":null,\"yahoo_id\":29374,\"last_name\":\"Sharpe\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":\"Piscataway (NJ)\",\"depth_chart_order\":2,\"stats_id\":703270,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tajaesharpe\",\"birth_date\":\"1994-12-23\",\"espn_id\":2982828},\"5764\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034821\",\"first_name\":\"Juante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baldwin\",\"depth_chart_position\":null,\"player_id\":\"5764\",\"birth_city\":null,\"fantasy_data_id\":20671,\"years_exp\":2,\"hashtag\":\"#JuanteBaldwin-NFL-FA-40\",\"search_first_name\":\"juante\",\"rotowire_id\":12873,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Juante Baldwin\",\"sportradar_id\":\"5c6f3e4a-dee5-4aae-a128-14d638293a75\",\"pandascore_id\":null,\"yahoo_id\":31756,\"last_name\":\"Baldwin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"juantebaldwin\",\"birth_date\":\"1994-10-24\",\"espn_id\":4327530},\"1568\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stedman\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1520532601158,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"1568\",\"birth_city\":null,\"fantasy_data_id\":15216,\"years_exp\":7,\"hashtag\":\"#StedmanBailey-NFL-FA-12\",\"search_first_name\":\"stedman\",\"rotowire_id\":8616,\"rotoworld_id\":8380,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Stedman Bailey\",\"sportradar_id\":\"bdf9b438-3ec5-485b-ab9c-bbce34e5e306\",\"pandascore_id\":null,\"yahoo_id\":26715,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Miramar (FL)\",\"depth_chart_order\":null,\"stats_id\":513828,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'10\\\"\",\"search_full_name\":\"stedmanbailey\",\"birth_date\":\"1990-11-11\",\"espn_id\":15822},\"5487\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034550\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campos\",\"depth_chart_position\":null,\"player_id\":\"5487\",\"birth_city\":null,\"fantasy_data_id\":20125,\"years_exp\":2,\"hashtag\":\"#JakeCampos-NFL-FA-63\",\"search_first_name\":\"jake\",\"rotowire_id\":13249,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jake Campos\",\"sportradar_id\":\"11e233cf-0f59-40b1-b59c-f5f3bb06bc7e\",\"pandascore_id\":null,\"yahoo_id\":31285,\"last_name\":\"Campos\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'8\\\"\",\"search_full_name\":\"jakecampos\",\"birth_date\":\"1994-10-18\",\"espn_id\":3039942},\"3525\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1524630001316,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nembot\",\"depth_chart_position\":null,\"player_id\":\"3525\",\"birth_city\":null,\"fantasy_data_id\":18291,\"years_exp\":3,\"hashtag\":\"#StephaneNembot-NFL-FA-67\",\"search_first_name\":\"stephane\",\"rotowire_id\":11144,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Stephane Nembot\",\"sportradar_id\":\"f35c68e0-d1fd-43d4-a00b-8068d2dddda7\",\"pandascore_id\":null,\"yahoo_id\":29755,\"last_name\":\"Nembot\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'7\\\"\",\"search_full_name\":\"stephanenembot\",\"birth_date\":\"1991-12-07\",\"espn_id\":2576943},\"5386\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034479\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1605878760650,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccrane\",\"depth_chart_position\":\"K\",\"player_id\":\"5386\",\"birth_city\":null,\"fantasy_data_id\":20466,\"years_exp\":2,\"hashtag\":\"#MatthewMcCrane-NFL-CLE-3\",\"search_first_name\":\"matthew\",\"rotowire_id\":12712,\"rotoworld_id\":13503,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Matthew McCrane\",\"sportradar_id\":\"bd49c4a4-1314-45e1-bff5-fc67ba41d1dd\",\"pandascore_id\":null,\"yahoo_id\":31310,\"last_name\":\"McCrane\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Brownwood (TX)\",\"depth_chart_order\":2,\"stats_id\":733640,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"165\",\"height\":\"5'10\\\"\",\"search_full_name\":\"matthewmccrane\",\"birth_date\":\"1994-09-08\",\"espn_id\":3052413},\"7166\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598804724793,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"7166\",\"birth_city\":null,\"fantasy_data_id\":22168,\"years_exp\":0,\"hashtag\":\"#TJCarter-NFL-FA-0\",\"search_first_name\":\"tj\",\"rotowire_id\":15098,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1942,\"age\":22,\"full_name\":\"T.J. Carter\",\"sportradar_id\":\"c57e6ac8-b427-4c99-9cd0-763651d53268\",\"pandascore_id\":null,\"yahoo_id\":33074,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"289\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tjcarter\",\"birth_date\":\"1998-09-15\",\"espn_id\":null},\"3545\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032520\",\"first_name\":\"Rashod\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584755111503,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"LT\",\"player_id\":\"3545\",\"birth_city\":null,\"fantasy_data_id\":18315,\"years_exp\":4,\"hashtag\":\"#RashodHill-NFL-MIN-69\",\"search_first_name\":\"rashod\",\"rotowire_id\":11470,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Rashod Hill\",\"sportradar_id\":\"6ca35fe6-900c-4903-aa23-a5ca55ac6a3d\",\"pandascore_id\":null,\"yahoo_id\":29509,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Ed White (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rashodhill\",\"birth_date\":\"1992-01-12\",\"espn_id\":2575446},\"289\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0020531\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606059320233,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brees\",\"depth_chart_position\":\"QB\",\"player_id\":\"289\",\"birth_city\":null,\"fantasy_data_id\":7242,\"years_exp\":19,\"hashtag\":\"#DrewBrees-NFL-NO-9\",\"search_first_name\":\"drew\",\"rotowire_id\":2178,\"rotoworld_id\":591,\"active\":true,\"search_rank\":76,\"age\":41,\"full_name\":\"Drew Brees\",\"sportradar_id\":\"bb5957e6-ce7d-47ab-8036-22191ffc1c44\",\"pandascore_id\":null,\"yahoo_id\":5479,\"last_name\":\"Brees\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Westlake (TX)\",\"depth_chart_order\":3,\"stats_id\":25598,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"drewbrees\",\"birth_date\":\"1979-01-15\",\"espn_id\":2580},\"5413\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034576\",\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tripucka\",\"depth_chart_position\":null,\"player_id\":\"5413\",\"birth_city\":null,\"fantasy_data_id\":20426,\"years_exp\":2,\"hashtag\":\"#ShaneTripucka-NFL-FA-2\",\"search_first_name\":\"shane\",\"rotowire_id\":12695,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shane Tripucka\",\"sportradar_id\":\"80f0f41f-1b81-4552-bcc8-407d96add7c7\",\"pandascore_id\":null,\"yahoo_id\":31689,\"last_name\":\"Tripucka\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shanetripucka\",\"birth_date\":\"1995-04-10\",\"espn_id\":3051820},\"322\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0021547\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1579033230170,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gates\",\"depth_chart_position\":null,\"player_id\":\"322\",\"birth_city\":null,\"fantasy_data_id\":7884,\"years_exp\":17,\"hashtag\":\"#AntonioGates-NFL-FA-85\",\"search_first_name\":\"antonio\",\"rotowire_id\":3172,\"rotoworld_id\":611,\"active\":true,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Antonio Gates\",\"sportradar_id\":\"82da09c2-e542-4f7d-87d9-24dfd8e014de\",\"pandascore_id\":null,\"yahoo_id\":6663,\"last_name\":\"Gates\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Detroit Central (MI)\",\"depth_chart_order\":null,\"stats_id\":234249,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"antoniogates\",\"birth_date\":\"1980-06-18\",\"espn_id\":5362},\"5192\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034596\",\"first_name\":\"Ralph\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596406225220,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":null,\"player_id\":\"5192\",\"birth_city\":null,\"fantasy_data_id\":20166,\"years_exp\":2,\"hashtag\":\"#RalphWebb-NFL-FA-0\",\"search_first_name\":\"ralph\",\"rotowire_id\":12744,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ralph Webb\",\"sportradar_id\":\"e8a4e5aa-f17b-49fe-8b8b-8efac0fc40f4\",\"pandascore_id\":null,\"yahoo_id\":31653,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744665,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ralphwebb\",\"birth_date\":\"1994-11-21\",\"espn_id\":3051762},\"1483\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1483\",\"birth_city\":null,\"fantasy_data_id\":15080,\"years_exp\":7,\"hashtag\":\"#SteveWilliams-NFL-FA-21\",\"search_first_name\":\"steve\",\"rotowire_id\":7725,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Steve Williams\",\"sportradar_id\":\"22411e80-4355-491b-8359-f02e2c3b18d1\",\"pandascore_id\":null,\"yahoo_id\":26768,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Skyline (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"stevewilliams\",\"birth_date\":\"1991-03-07\",\"espn_id\":2468497},\"3386\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033061\",\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567203059278,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"duarte\",\"depth_chart_position\":null,\"player_id\":\"3386\",\"birth_city\":null,\"fantasy_data_id\":18147,\"years_exp\":4,\"hashtag\":\"#ThomasDuarte-NFL-FA-83\",\"search_first_name\":\"thomas\",\"rotowire_id\":10820,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Thomas Duarte\",\"sportradar_id\":\"6b56abc0-6d5a-47f2-84ea-43584ac9b288\",\"pandascore_id\":null,\"yahoo_id\":29465,\"last_name\":\"Duarte\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744676,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'2\\\"\",\"search_full_name\":\"thomasduarte\",\"birth_date\":\"1995-03-30\",\"espn_id\":3047558},\"2698\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Abou\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toure\",\"depth_chart_position\":null,\"player_id\":\"2698\",\"birth_city\":null,\"fantasy_data_id\":17166,\"years_exp\":1,\"hashtag\":\"#AbouToure-NFL-FA-38\",\"search_first_name\":\"abou\",\"rotowire_id\":10562,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Abou Toure\",\"sportradar_id\":\"08952d08-1dca-466f-b328-036013eb5900\",\"pandascore_id\":null,\"yahoo_id\":29088,\"last_name\":\"Toure\",\"metadata\":null,\"college\":\"Tennessee-Martin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693284,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aboutoure\",\"birth_date\":\"1991-02-24\",\"espn_id\":2971811},\"5228\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034126\",\"first_name\":\"J.T.\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1596406225215,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barrett\",\"depth_chart_position\":null,\"player_id\":\"5228\",\"birth_city\":null,\"fantasy_data_id\":20142,\"years_exp\":2,\"hashtag\":\"#JTBarrett-NFL-FA-0\",\"search_first_name\":\"jt\",\"rotowire_id\":12657,\"rotoworld_id\":13372,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"J.T. Barrett\",\"sportradar_id\":\"b6f50b3b-0b8b-4318-be6d-b6677616a3c6\",\"pandascore_id\":null,\"yahoo_id\":31365,\"last_name\":\"Barrett\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728319,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jtbarrett\",\"birth_date\":\"1995-01-23\",\"espn_id\":3040507},\"1979\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031407\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603137318686,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bortles\",\"depth_chart_position\":\"QB\",\"player_id\":\"1979\",\"birth_city\":null,\"fantasy_data_id\":16245,\"years_exp\":6,\"hashtag\":\"#BlakeBortles-NFL-DEN-5\",\"search_first_name\":\"blake\",\"rotowire_id\":9277,\"rotoworld_id\":9320,\"active\":true,\"search_rank\":793,\"age\":28,\"full_name\":\"Blake Bortles\",\"sportradar_id\":\"6723249c-5fb5-4b0a-9373-cb59cdc99ec8\",\"pandascore_id\":null,\"yahoo_id\":27531,\"last_name\":\"Bortles\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Central Florida\",\"high_school\":\"Oviedo (FL)\",\"depth_chart_order\":3,\"stats_id\":562537,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'5\\\"\",\"search_full_name\":\"blakebortles\",\"birth_date\":\"1992-04-28\",\"espn_id\":16724},\"513\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sergio\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"513\",\"birth_city\":null,\"fantasy_data_id\":10968,\"years_exp\":10,\"hashtag\":\"#SergioBrown-NFL-FA-38\",\"search_first_name\":\"sergio\",\"rotowire_id\":6967,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Sergio Brown\",\"sportradar_id\":\"bd0fd245-64ec-45ee-ac8d-b0072239ea63\",\"pandascore_id\":null,\"yahoo_id\":24292,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Proviso East (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sergiobrown\",\"birth_date\":\"1988-05-22\",\"espn_id\":13541},\"2409\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1525133101489,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sample\",\"depth_chart_position\":null,\"player_id\":\"2409\",\"birth_city\":null,\"fantasy_data_id\":16865,\"years_exp\":5,\"hashtag\":\"#JamesSample-NFL-FA-23\",\"search_first_name\":\"james\",\"rotowire_id\":10397,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"James Sample\",\"sportradar_id\":\"8b14dc16-b82c-446b-b246-08c2c592ce9e\",\"pandascore_id\":null,\"yahoo_id\":28492,\"last_name\":\"Sample\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Grant (CA)\",\"depth_chart_order\":null,\"stats_id\":608015,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamessample\",\"birth_date\":\"1992-06-23\",\"espn_id\":2578381},\"6165\":{\"position\":\"WR\",\"injury_notes\":\"Wesley suffered the injury during training camp.\",\"birth_country\":null,\"gsis_id\":\" 00-0035126\",\"first_name\":\"Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598328353529,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"wesley\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6165\",\"birth_city\":null,\"fantasy_data_id\":20979,\"years_exp\":1,\"hashtag\":\"#AntoineWesley-NFL-BAL-84\",\"search_first_name\":\"antoine\",\"rotowire_id\":13447,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Antoine Wesley\",\"sportradar_id\":\"8e43eb21-92e4-4720-8766-c9204259c063\",\"pandascore_id\":null,\"yahoo_id\":32317,\"last_name\":\"Wesley\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Cibolo Steele (TX)\",\"depth_chart_order\":3,\"stats_id\":924946,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'4\\\"\",\"search_full_name\":\"antoinewesley\",\"birth_date\":\"1997-10-22\",\"espn_id\":4043161},\"5779\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034864\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1580262360761,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5779\",\"birth_city\":null,\"fantasy_data_id\":20682,\"years_exp\":2,\"hashtag\":\"#BlakeJackson-NFL-FA-12\",\"search_first_name\":\"blake\",\"rotowire_id\":13407,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Blake Jackson\",\"sportradar_id\":\"0b4213fc-6c2a-477d-b4c0-0983e16aa3fb\",\"pandascore_id\":null,\"yahoo_id\":31775,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Mary Hardin-Baylor\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":692014,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"blakejackson\",\"birth_date\":\"1994-03-07\",\"espn_id\":2975813},\"6539\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034935\",\"first_name\":\"Devontae\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567273204866,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6539\",\"birth_city\":null,\"fantasy_data_id\":21367,\"years_exp\":1,\"hashtag\":\"#DevontaeJackson-NFL-FA-48\",\"search_first_name\":\"devontae\",\"rotowire_id\":14061,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Devontae Jackson\",\"sportradar_id\":\"d2166e46-897f-46e6-9f86-fd98b9f3f3b8\",\"pandascore_id\":null,\"yahoo_id\":32400,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":1166782,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"172\",\"height\":\"5'7\\\"\",\"search_full_name\":\"devontaejackson\",\"birth_date\":\"1995-04-27\",\"espn_id\":4422215},\"3217\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033046\",\"first_name\":\"Jihad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606430760256,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":null,\"player_id\":\"3217\",\"birth_city\":null,\"fantasy_data_id\":17978,\"years_exp\":4,\"hashtag\":\"#JihadWard-NFL-BAL-53\",\"search_first_name\":\"jihad\",\"rotowire_id\":10891,\"rotoworld_id\":11330,\"active\":true,\"search_rank\":972,\"age\":26,\"full_name\":\"Jihad Ward\",\"sportradar_id\":\"852b00dd-fd1c-4edb-809d-912a6472cd07\",\"pandascore_id\":null,\"yahoo_id\":29278,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Globe Tech (NY)\",\"depth_chart_order\":null,\"stats_id\":830687,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jihadward\",\"birth_date\":\"1994-05-11\",\"espn_id\":3115914},\"3780\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oneal\",\"depth_chart_position\":null,\"player_id\":\"3780\",\"birth_city\":null,\"fantasy_data_id\":18593,\"years_exp\":3,\"hashtag\":\"#CedricONeal-NFL-FA-44\",\"search_first_name\":\"cedric\",\"rotowire_id\":11536,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cedric O'Neal\",\"sportradar_id\":\"c5d8c777-2f40-4e80-bf09-c5985aef2de6\",\"pandascore_id\":null,\"yahoo_id\":29681,\"last_name\":\"O'Neal\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":915105,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cedriconeal\",\"birth_date\":\"1994-01-29\",\"espn_id\":3016887},\"3733\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shakeel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rashad\",\"depth_chart_position\":null,\"player_id\":\"3733\",\"birth_city\":null,\"fantasy_data_id\":18544,\"years_exp\":3,\"hashtag\":\"#ShakeelRashad-NFL-FA-42\",\"search_first_name\":\"shakeel\",\"rotowire_id\":11472,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shakeel Rashad\",\"sportradar_id\":\"13e1de67-6076-430d-9524-cab752f7ce44\",\"pandascore_id\":null,\"yahoo_id\":29804,\"last_name\":\"Rashad\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shakeelrashad\",\"birth_date\":\"1994-03-17\",\"espn_id\":2970012},\"81\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"starks\",\"depth_chart_position\":null,\"player_id\":\"81\",\"birth_city\":null,\"fantasy_data_id\":2253,\"years_exp\":16,\"hashtag\":\"#RandyStarks-NFL-FA-94\",\"search_first_name\":\"randy\",\"rotowire_id\":3782,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Randy Starks\",\"sportradar_id\":\"b0600599-7dde-4f86-a9a8-4a94ab54d609\",\"pandascore_id\":null,\"yahoo_id\":6830,\"last_name\":\"Starks\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Westlake HS (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"randystarks\",\"birth_date\":\"1983-12-14\",\"espn_id\":5596},\"209\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"babineaux\",\"depth_chart_position\":null,\"player_id\":\"209\",\"birth_city\":null,\"fantasy_data_id\":5315,\"years_exp\":15,\"hashtag\":\"#JonathanBabineaux-NFL-FA-95\",\"search_first_name\":\"jonathan\",\"rotowire_id\":4484,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Jonathan Babineaux\",\"sportradar_id\":\"691fb762-1b61-420c-8ef6-91e66b2aeecf\",\"pandascore_id\":null,\"yahoo_id\":7235,\"last_name\":\"Babineaux\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Lincoln (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jonathanbabineaux\",\"birth_date\":\"1981-10-12\",\"espn_id\":8473},\"7344\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7344\",\"birth_city\":null,\"fantasy_data_id\":22332,\"years_exp\":0,\"hashtag\":\"#JonahWilliams-NFL-LAR-62\",\"search_first_name\":\"jonah\",\"rotowire_id\":14980,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1983,\"age\":25,\"full_name\":\"Jonah Williams\",\"sportradar_id\":\"d92a275a-a102-4768-965b-60fffe155288\",\"pandascore_id\":null,\"yahoo_id\":33263,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Weber State\",\"high_school\":\"Rocky Mountain (ID)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonahwilliams\",\"birth_date\":\"1995-08-17\",\"espn_id\":4032481},\"26\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roman\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harper\",\"depth_chart_position\":null,\"player_id\":\"26\",\"birth_city\":null,\"fantasy_data_id\":734,\"years_exp\":14,\"hashtag\":\"#RomanHarper-NFL-FA-41\",\"search_first_name\":\"roman\",\"rotowire_id\":4968,\"rotoworld_id\":3697,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Roman Harper\",\"sportradar_id\":\"682a7396-9280-487f-aabf-561d0334bddd\",\"pandascore_id\":null,\"yahoo_id\":7792,\"last_name\":\"Harper\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Prattville (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"romanharper\",\"birth_date\":\"1982-12-11\",\"espn_id\":9629},\"3776\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quentin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gause\",\"depth_chart_position\":null,\"player_id\":\"3776\",\"birth_city\":null,\"fantasy_data_id\":18589,\"years_exp\":3,\"hashtag\":\"#QuentinGause-NFL-FA-49\",\"search_first_name\":\"quentin\",\"rotowire_id\":11531,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Quentin Gause\",\"sportradar_id\":\"a6d63e36-a83b-49a9-8bff-506430e1d799\",\"pandascore_id\":null,\"yahoo_id\":29674,\"last_name\":\"Gause\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"quentingause\",\"birth_date\":\"1992-10-30\",\"espn_id\":2582402},\"3518\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wujciak\",\"depth_chart_position\":null,\"player_id\":\"3518\",\"birth_city\":null,\"fantasy_data_id\":18284,\"years_exp\":3,\"hashtag\":\"#ConnorWujciak-NFL-FA-78\",\"search_first_name\":\"connor\",\"rotowire_id\":10939,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Connor Wujciak\",\"sportradar_id\":\"dfccc0db-1bad-4eed-8a8a-904aa65c6173\",\"pandascore_id\":null,\"yahoo_id\":29688,\"last_name\":\"Wujciak\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'2\\\"\",\"search_full_name\":\"connorwujciak\",\"birth_date\":\"1992-09-24\",\"espn_id\":2576478},\"5689\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034638\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fatu\",\"depth_chart_position\":null,\"player_id\":\"5689\",\"birth_city\":null,\"fantasy_data_id\":20278,\"years_exp\":2,\"hashtag\":\"#JoshFatu-NFL-FA-97\",\"search_first_name\":\"josh\",\"rotowire_id\":13194,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Josh Fatu\",\"sportradar_id\":\"3555b24f-ed5c-41a3-aead-34e7b64d5c4b\",\"pandascore_id\":null,\"yahoo_id\":31633,\"last_name\":\"Fatu\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshfatu\",\"birth_date\":\"1996-03-08\",\"espn_id\":4035707},\"242\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024183\",\"first_name\":\"Brent\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554152118006,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grimes\",\"depth_chart_position\":null,\"player_id\":\"242\",\"birth_city\":null,\"fantasy_data_id\":6078,\"years_exp\":14,\"hashtag\":\"#BrentGrimes-NFL-FA-24\",\"search_first_name\":\"brent\",\"rotowire_id\":5848,\"rotoworld_id\":4562,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Brent Grimes\",\"sportradar_id\":\"7979b613-6dbf-4534-8166-6430433c1ec3\",\"pandascore_id\":null,\"yahoo_id\":8607,\"last_name\":\"Grimes\",\"metadata\":null,\"college\":\"Shippensburg\",\"high_school\":\"Northeast (PA)\",\"depth_chart_order\":null,\"stats_id\":296297,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brentgrimes\",\"birth_date\":\"1983-07-19\",\"espn_id\":10913},\"5100\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034400\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606587033816,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilkins\",\"depth_chart_position\":\"RB\",\"player_id\":\"5100\",\"birth_city\":null,\"fantasy_data_id\":19979,\"years_exp\":2,\"hashtag\":\"#JordanWilkins-NFL-IND-20\",\"search_first_name\":\"jordan\",\"rotowire_id\":12942,\"rotoworld_id\":13276,\"active\":true,\"search_rank\":298,\"age\":26,\"full_name\":\"Jordan Wilkins\",\"sportradar_id\":\"070850a3-7387-4836-b3eb-b1c8f8731aab\",\"pandascore_id\":null,\"yahoo_id\":31139,\"last_name\":\"Wilkins\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"St. Benedict at Auburndale (TN)\",\"depth_chart_order\":3,\"stats_id\":749205,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanwilkins\",\"birth_date\":\"1994-07-18\",\"espn_id\":3051891},\"1834\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031218\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602727828764,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1834\",\"birth_city\":null,\"fantasy_data_id\":16035,\"years_exp\":6,\"hashtag\":\"#MalcolmButler-NFL-TEN-21\",\"search_first_name\":\"malcolm\",\"rotowire_id\":9944,\"rotoworld_id\":10172,\"active\":true,\"search_rank\":773,\"age\":30,\"full_name\":\"Malcolm Butler\",\"sportradar_id\":\"ab49bafe-7023-46ce-9606-9a9823eabee6\",\"pandascore_id\":null,\"yahoo_id\":28244,\"last_name\":\"Butler\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"West Alabama\",\"high_school\":\"Vicksburg (MS)\",\"depth_chart_order\":1,\"stats_id\":704242,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"malcolmbutler\",\"birth_date\":\"1990-03-02\",\"espn_id\":17435},\"1039\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029410\",\"first_name\":\"Tavon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597154725842,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"SS\",\"player_id\":\"1039\",\"birth_city\":null,\"fantasy_data_id\":13753,\"years_exp\":8,\"hashtag\":\"#TavonWilson-NFL-IND-31\",\"search_first_name\":\"tavon\",\"rotowire_id\":8209,\"rotoworld_id\":7537,\"active\":true,\"search_rank\":658,\"age\":30,\"full_name\":\"Tavon Wilson\",\"sportradar_id\":\"cbe81592-1ee2-4bf1-870a-2578c4c8267e\",\"pandascore_id\":null,\"yahoo_id\":25758,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"H.D. Woodson (DC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tavonwilson\",\"birth_date\":\"1990-03-19\",\"espn_id\":14977},\"2545\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032141\",\"first_name\":\"Geoff\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606269955626,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"swaim\",\"depth_chart_position\":\"TE\",\"player_id\":\"2545\",\"birth_city\":null,\"fantasy_data_id\":17005,\"years_exp\":5,\"hashtag\":\"#GeoffSwaim-NFL-TEN-87\",\"search_first_name\":\"geoff\",\"rotowire_id\":10507,\"rotoworld_id\":10617,\"active\":true,\"search_rank\":489,\"age\":27,\"full_name\":\"Geoff Swaim\",\"sportradar_id\":\"d0f9112d-2496-450a-9fc5-d2d01b4d2454\",\"pandascore_id\":null,\"yahoo_id\":28634,\"last_name\":\"Swaim\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Texas\",\"high_school\":\"Pleasant Valley (CA)\",\"depth_chart_order\":3,\"stats_id\":728021,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"geoffswaim\",\"birth_date\":\"1993-09-16\",\"espn_id\":3046704},\"5477\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034518\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunter\",\"depth_chart_position\":null,\"player_id\":\"5477\",\"birth_city\":null,\"fantasy_data_id\":20458,\"years_exp\":2,\"hashtag\":\"#ReggieHunter-NFL-FA-47\",\"search_first_name\":\"reggie\",\"rotowire_id\":13039,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Reggie Hunter\",\"sportradar_id\":\"4916c90c-11e8-44d8-be62-67806f9efcdf\",\"pandascore_id\":null,\"yahoo_id\":31264,\"last_name\":\"Hunter\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"5'11\\\"\",\"search_full_name\":\"reggiehunter\",\"birth_date\":\"1994-01-02\",\"espn_id\":3056831},\"4858\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ken\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nortonjr\",\"depth_chart_position\":null,\"player_id\":\"4858\",\"birth_city\":null,\"fantasy_data_id\":19759,\"years_exp\":0,\"hashtag\":\"#KenNortonJr-NFL-FA-0\",\"search_first_name\":\"ken\",\"rotowire_id\":null,\"rotoworld_id\":10354,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ken Norton Jr.\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Norton Jr.\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kennortonjr\",\"birth_date\":null,\"espn_id\":null},\"4454\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033307\",\"first_name\":\"Kendrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606508726853,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bourne\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4454\",\"birth_city\":null,\"fantasy_data_id\":19318,\"years_exp\":3,\"hashtag\":\"#KendrickBourne-NFL-SF-84\",\"search_first_name\":\"kendrick\",\"rotowire_id\":11847,\"rotoworld_id\":12677,\"active\":true,\"search_rank\":227,\"age\":25,\"full_name\":\"Kendrick Bourne\",\"sportradar_id\":\"5aba3610-ab55-4922-ac46-806ded5eb8bf\",\"pandascore_id\":null,\"yahoo_id\":30551,\"last_name\":\"Bourne\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":\"Milwaukie Arts Academy (WI)\",\"depth_chart_order\":1,\"stats_id\":754412,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kendrickbourne\",\"birth_date\":\"1995-08-04\",\"espn_id\":3045523},\"1421\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030593\",\"first_name\":\"Chance\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1595997305099,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"warmack\",\"depth_chart_position\":null,\"player_id\":\"1421\",\"birth_city\":null,\"fantasy_data_id\":14981,\"years_exp\":7,\"hashtag\":\"#ChanceWarmack-NFL-SEA-65\",\"search_first_name\":\"chance\",\"rotowire_id\":8701,\"rotoworld_id\":8418,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chance Warmack\",\"sportradar_id\":\"cf45fa8d-13e0-4c16-a9eb-301b090ef83a\",\"pandascore_id\":null,\"yahoo_id\":26633,\"last_name\":\"Warmack\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Westlake (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chancewarmack\",\"birth_date\":\"1991-09-14\",\"espn_id\":15814},\"6911\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600031758788,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"FS\",\"player_id\":\"6911\",\"birth_city\":null,\"fantasy_data_id\":21927,\"years_exp\":0,\"hashtag\":\"#BrandonJones-NFL-MIA-29\",\"search_first_name\":\"brandon\",\"rotowire_id\":14696,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1845,\"age\":22,\"full_name\":\"Brandon Jones\",\"sportradar_id\":\"f0c60c6e-513b-40df-9794-d555ed59202f\",\"pandascore_id\":null,\"yahoo_id\":32740,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Nacogdoches (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonjones\",\"birth_date\":\"1998-04-02\",\"espn_id\":4039059},\"5659\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034586\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596291608499,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"atkins\",\"depth_chart_position\":null,\"player_id\":\"5659\",\"birth_city\":null,\"fantasy_data_id\":20330,\"years_exp\":2,\"hashtag\":\"#JohnAtkins-NFL-DET-99\",\"search_first_name\":\"john\",\"rotowire_id\":12910,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1452,\"age\":27,\"full_name\":\"John Atkins\",\"sportradar_id\":\"648bcdd5-7239-41b4-b346-a2424f6c01d3\",\"pandascore_id\":null,\"yahoo_id\":31647,\"last_name\":\"Atkins\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Thomson (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnatkins\",\"birth_date\":\"1992-12-21\",\"espn_id\":3043127},\"2621\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1521174601778,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":null,\"player_id\":\"2621\",\"birth_city\":null,\"fantasy_data_id\":17089,\"years_exp\":5,\"hashtag\":\"#TerronWard-NFL-FA-28\",\"search_first_name\":\"terron\",\"rotowire_id\":10596,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Terron Ward\",\"sportradar_id\":\"003f8716-bc1a-4328-9a98-80ed932eb4e5\",\"pandascore_id\":null,\"yahoo_id\":28832,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"De La Salle HS (CA)\",\"depth_chart_order\":null,\"stats_id\":590686,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'7\\\"\",\"search_full_name\":\"terronward\",\"birth_date\":\"1992-02-15\",\"espn_id\":2577023},\"5865\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035678\",\"first_name\":\"Dre'Mont\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606271456121,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5865\",\"birth_city\":null,\"fantasy_data_id\":20842,\"years_exp\":1,\"hashtag\":\"#DreMontJones-NFL-DEN-93\",\"search_first_name\":\"dremont\",\"rotowire_id\":13451,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1562,\"age\":23,\"full_name\":\"Dre'Mont Jones\",\"sportradar_id\":\"92c8bc67-756d-4e3c-981c-3df010e15e2d\",\"pandascore_id\":null,\"yahoo_id\":31903,\"last_name\":\"Jones\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Ohio State\",\"high_school\":\"St. Ignatius (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"281\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dremontjones\",\"birth_date\":\"1997-01-05\",\"espn_id\":3915525},\"713\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027736\",\"first_name\":\"Kendrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1545071739517,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"713\",\"birth_city\":null,\"fantasy_data_id\":12212,\"years_exp\":10,\"hashtag\":\"#KendrickLewis-NFL-FA-28\",\"search_first_name\":\"kendrick\",\"rotowire_id\":6653,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kendrick Lewis\",\"sportradar_id\":\"07ab211c-4733-4336-b59a-2137f3efe5e8\",\"pandascore_id\":null,\"yahoo_id\":24112,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"O. Perry Walker\",\"depth_chart_order\":null,\"stats_id\":334724,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kendricklewis\",\"birth_date\":\"1988-06-16\",\"espn_id\":13404},\"4539\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033618\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pyke\",\"depth_chart_position\":null,\"player_id\":\"4539\",\"birth_city\":null,\"fantasy_data_id\":19418,\"years_exp\":3,\"hashtag\":\"#GregPyke-NFL-FA-68\",\"search_first_name\":\"greg\",\"rotowire_id\":12148,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Greg Pyke\",\"sportradar_id\":\"324274e2-f7d1-40b8-b5c8-4cf58fda42fd\",\"pandascore_id\":null,\"yahoo_id\":30599,\"last_name\":\"Pyke\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'5\\\"\",\"search_full_name\":\"gregpyke\",\"birth_date\":\"1993-06-04\",\"espn_id\":2977653},\"4549\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033631\",\"first_name\":\"Rashaad\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":1603754139733,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coward\",\"depth_chart_position\":\"RT\",\"player_id\":\"4549\",\"birth_city\":null,\"fantasy_data_id\":19429,\"years_exp\":3,\"hashtag\":\"#RashaadCoward-NFL-CHI-69\",\"search_first_name\":\"rashaad\",\"rotowire_id\":12469,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rashaad Coward\",\"sportradar_id\":\"b4473469-2593-4c7f-8b41-729e1ddb08f6\",\"pandascore_id\":null,\"yahoo_id\":30718,\"last_name\":\"Coward\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"Sheepshead Bay (NY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rashaadcoward\",\"birth_date\":\"1994-11-06\",\"espn_id\":3060134},\"4041\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1579664412472,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gruden\",\"depth_chart_position\":null,\"player_id\":\"4041\",\"birth_city\":null,\"fantasy_data_id\":18884,\"years_exp\":0,\"hashtag\":\"#JayGruden-NFL-FA-0\",\"search_first_name\":\"jay\",\"rotowire_id\":null,\"rotoworld_id\":9295,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jay Gruden\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gruden\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jaygruden\",\"birth_date\":null,\"espn_id\":null},\"5542\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034181\",\"first_name\":\"Naashon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"5542\",\"birth_city\":null,\"fantasy_data_id\":20287,\"years_exp\":2,\"hashtag\":\"#NaashonHughes-NFL-FA-55\",\"search_first_name\":\"naashon\",\"rotowire_id\":13112,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Naashon Hughes\",\"sportradar_id\":\"d6fffab3-1d96-416b-8f9f-fbdff691f33d\",\"pandascore_id\":null,\"yahoo_id\":31434,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"naashonhughes\",\"birth_date\":\"1995-07-15\",\"espn_id\":3046694},\"3584\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leak\",\"depth_chart_position\":null,\"player_id\":\"3584\",\"birth_city\":null,\"fantasy_data_id\":18363,\"years_exp\":3,\"hashtag\":\"#MarcusLeak-NFL-FA-85\",\"search_first_name\":\"marcus\",\"rotowire_id\":11254,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marcus Leak\",\"sportradar_id\":\"6ba2265a-b23d-4384-9795-df464df50b6f\",\"pandascore_id\":null,\"yahoo_id\":29602,\"last_name\":\"Leak\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605445,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marcusleak\",\"birth_date\":\"1992-11-19\",\"espn_id\":2577081},\"1869\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hopkins\",\"depth_chart_position\":null,\"player_id\":\"1869\",\"birth_city\":null,\"fantasy_data_id\":16085,\"years_exp\":1,\"hashtag\":\"#DerrickHopkins-NFL-FA-79\",\"search_first_name\":\"derrick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrick Hopkins\",\"sportradar_id\":\"b8776915-600a-4910-9608-beaf5d575f0e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hopkins\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'0\\\"\",\"search_full_name\":\"derrickhopkins\",\"birth_date\":\"1991-12-16\",\"espn_id\":17171},\"5206\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034626\",\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1606274755756,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"daniel\",\"depth_chart_position\":null,\"player_id\":\"5206\",\"birth_city\":null,\"fantasy_data_id\":20141,\"years_exp\":2,\"hashtag\":\"#TrevorDaniel-NFL-TEN-12\",\"search_first_name\":\"trevor\",\"rotowire_id\":12925,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trevor Daniel\",\"sportradar_id\":\"927dfc54-48f1-4566-a58d-a1351e8ad704\",\"pandascore_id\":null,\"yahoo_id\":31579,\"last_name\":\"Daniel\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Dickson County (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trevordaniel\",\"birth_date\":\"1994-12-08\",\"espn_id\":3044725},\"1300\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kaelin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burnett\",\"depth_chart_position\":null,\"player_id\":\"1300\",\"birth_city\":null,\"fantasy_data_id\":14774,\"years_exp\":4,\"hashtag\":\"#KaelinBurnett-NFL-FA-58\",\"search_first_name\":\"kaelin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kaelin Burnett\",\"sportradar_id\":\"f2519187-33ed-442a-bf46-c312116e961d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Burnett\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kaelinburnett\",\"birth_date\":\"1989-09-06\",\"espn_id\":15324},\"2920\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeret\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2920\",\"birth_city\":null,\"fantasy_data_id\":17388,\"years_exp\":0,\"hashtag\":\"#JeretSmith-NFL-FA-8\",\"search_first_name\":\"jeret\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jeret Smith\",\"sportradar_id\":\"d1a27ba5-f43b-4cd4-8744-097842829626\",\"pandascore_id\":null,\"yahoo_id\":29157,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"McMurry\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":613046,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jeretsmith\",\"birth_date\":\"1993-02-05\",\"espn_id\":null},\"7021\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rico\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604776509071,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dowdle\",\"depth_chart_position\":\"RB\",\"player_id\":\"7021\",\"birth_city\":null,\"fantasy_data_id\":21952,\"years_exp\":0,\"hashtag\":\"#RicoDowdle-NFL-DAL-34\",\"search_first_name\":\"rico\",\"rotowire_id\":14657,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1857,\"age\":22,\"full_name\":\"Rico Dowdle\",\"sportradar_id\":\"bba755a2-63b6-4ac1-b806-0609816135de\",\"pandascore_id\":null,\"yahoo_id\":33100,\"last_name\":\"Dowdle\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"A.C. Reynolds (NC)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ricodowdle\",\"birth_date\":\"1998-06-14\",\"espn_id\":4038815},\"2623\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031680\",\"first_name\":\"Robenson\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1538184302394,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"therezie\",\"depth_chart_position\":null,\"player_id\":\"2623\",\"birth_city\":null,\"fantasy_data_id\":17091,\"years_exp\":5,\"hashtag\":\"#RobensonTherezie-NFL-FA-40\",\"search_first_name\":\"robenson\",\"rotowire_id\":10692,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Robenson Therezie\",\"sportradar_id\":\"e73ef17d-9ef4-4469-bcb2-0841c3c4d27f\",\"pandascore_id\":null,\"yahoo_id\":28830,\"last_name\":\"Therezie\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Jackson (FL)\",\"depth_chart_order\":null,\"stats_id\":593302,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'9\\\"\",\"search_full_name\":\"robensontherezie\",\"birth_date\":\"1991-08-05\",\"espn_id\":2574553},\"6808\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600628107751,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LT\",\"player_id\":\"6808\",\"birth_city\":null,\"fantasy_data_id\":22029,\"years_exp\":0,\"hashtag\":\"#JoshJones-NFL-ARI-79\",\"search_first_name\":\"josh\",\"rotowire_id\":14584,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Jones\",\"sportradar_id\":\"476d6de7-0d10-4f9c-96c9-2bd289052dce\",\"pandascore_id\":null,\"yahoo_id\":32742,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"George Bush (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'7\\\"\",\"search_full_name\":\"joshjones\",\"birth_date\":\"1997-06-22\",\"espn_id\":3914630},\"5628\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034605\",\"first_name\":\"Cavon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1585162538260,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"DT\",\"player_id\":\"5628\",\"birth_city\":null,\"fantasy_data_id\":20110,\"years_exp\":2,\"hashtag\":\"#CavonWalker-NFL-FA-0\",\"search_first_name\":\"cavon\",\"rotowire_id\":13244,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1419,\"age\":26,\"full_name\":\"Cavon Walker\",\"sportradar_id\":\"e34d2f84-e5ec-4818-a54c-94176e515a90\",\"pandascore_id\":null,\"yahoo_id\":31669,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cavonwalker\",\"birth_date\":\"1994-07-04\",\"espn_id\":3053054},\"391\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026968\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606246555394,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"succop\",\"depth_chart_position\":\"K\",\"player_id\":\"391\",\"birth_city\":null,\"fantasy_data_id\":8750,\"years_exp\":11,\"hashtag\":\"#RyanSuccop-NFL-TB-3\",\"search_first_name\":\"ryan\",\"rotowire_id\":6150,\"rotoworld_id\":5461,\"active\":true,\"search_rank\":170,\"age\":34,\"full_name\":\"Ryan Succop\",\"sportradar_id\":\"ecc4f0c1-64e0-46cc-9b58-91c2b215e62a\",\"pandascore_id\":null,\"yahoo_id\":9520,\"last_name\":\"Succop\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Hickory (NC)\",\"depth_chart_order\":1,\"stats_id\":296494,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryansuccop\",\"birth_date\":\"1986-09-19\",\"espn_id\":12731},\"2842\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrae\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kirk\",\"depth_chart_position\":null,\"player_id\":\"2842\",\"birth_city\":null,\"fantasy_data_id\":17310,\"years_exp\":0,\"hashtag\":\"#AndraeKirk-NFL-FA-49\",\"search_first_name\":\"andrae\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Andrae Kirk\",\"sportradar_id\":\"0780bf13-c109-4926-b623-e1aa7a4a3a7a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kirk\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andraekirk\",\"birth_date\":\"1993-08-27\",\"espn_id\":2572965},\"6426\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035623\",\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596228018546,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"brewer\",\"depth_chart_position\":null,\"player_id\":\"6426\",\"birth_city\":null,\"fantasy_data_id\":21330,\"years_exp\":1,\"hashtag\":\"#ChandlerBrewer-NFL-LAR-67\",\"search_first_name\":\"chandler\",\"rotowire_id\":14016,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chandler Brewer\",\"sportradar_id\":\"8ef99bbe-602c-4796-aa04-833f357991ba\",\"pandascore_id\":null,\"yahoo_id\":32126,\"last_name\":\"Brewer\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Florence (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chandlerbrewer\",\"birth_date\":\"1997-06-12\",\"espn_id\":3914440},\"4985\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034750\",\"first_name\":\"Rashaad\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606257654360,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"penny\",\"depth_chart_position\":\"RB\",\"player_id\":\"4985\",\"birth_city\":null,\"fantasy_data_id\":19799,\"years_exp\":2,\"hashtag\":\"#RashaadPenny-NFL-SEA-20\",\"search_first_name\":\"rashaad\",\"rotowire_id\":12830,\"rotoworld_id\":13143,\"active\":true,\"search_rank\":238,\"age\":24,\"full_name\":\"Rashaad Penny\",\"sportradar_id\":\"2b119688-83b5-4d19-acbf-fa2087035fae\",\"pandascore_id\":null,\"yahoo_id\":30997,\"last_name\":\"Penny\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Norwalk (CA)\",\"depth_chart_order\":7,\"stats_id\":840691,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rashaadpenny\",\"birth_date\":\"1996-02-02\",\"espn_id\":3139925},\"4049\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sylve\",\"depth_chart_position\":null,\"player_id\":\"4049\",\"birth_city\":null,\"fantasy_data_id\":18893,\"years_exp\":2,\"hashtag\":\"#BradleySylve-NFL-FA-41\",\"search_first_name\":\"bradley\",\"rotowire_id\":12189,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bradley Sylve\",\"sportradar_id\":\"6b2ca87f-0afd-4cb0-a108-f3954d1fd9c2\",\"pandascore_id\":null,\"yahoo_id\":30108,\"last_name\":\"Sylve\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bradleysylve\",\"birth_date\":\"1993-01-29\",\"espn_id\":2578482},\"271\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"warren\",\"depth_chart_position\":null,\"player_id\":\"271\",\"birth_city\":null,\"fantasy_data_id\":6797,\"years_exp\":15,\"hashtag\":\"#GregWarren-NFL-FA-60\",\"search_first_name\":\"greg\",\"rotowire_id\":9120,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Greg Warren\",\"sportradar_id\":\"80dbdd1a-0738-4c7a-baa7-cbc72040293d\",\"pandascore_id\":null,\"yahoo_id\":7491,\"last_name\":\"Warren\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Southern Wayne (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gregwarren\",\"birth_date\":\"1981-10-18\",\"espn_id\":9306},\"3726\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Peter\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mortell\",\"depth_chart_position\":null,\"player_id\":\"3726\",\"birth_city\":null,\"fantasy_data_id\":18534,\"years_exp\":0,\"hashtag\":\"#PeterMortell-NFL-FA-1\",\"search_first_name\":\"peter\",\"rotowire_id\":11452,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Peter Mortell\",\"sportradar_id\":\"5e4137f7-02d5-4bed-a6c7-965d6fdccb10\",\"pandascore_id\":null,\"yahoo_id\":29737,\"last_name\":\"Mortell\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"petermortell\",\"birth_date\":\"1992-12-29\",\"espn_id\":2576320},\"4459\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525126504002,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilbert\",\"depth_chart_position\":null,\"player_id\":\"4459\",\"birth_city\":null,\"fantasy_data_id\":19323,\"years_exp\":2,\"hashtag\":\"#JimmieGilbert-NFL-FA-47\",\"search_first_name\":\"jimmie\",\"rotowire_id\":12182,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jimmie Gilbert\",\"sportradar_id\":\"8be4e402-997b-47e3-9381-f465cb1cfce3\",\"pandascore_id\":null,\"yahoo_id\":30556,\"last_name\":\"Gilbert\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jimmiegilbert\",\"birth_date\":\"1994-11-09\",\"espn_id\":3052109},\"3032\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lavance\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"3032\",\"birth_city\":null,\"fantasy_data_id\":17719,\"years_exp\":null,\"hashtag\":\"#LavanceTaylor-NFL-FA-0\",\"search_first_name\":\"lavance\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Lavance Taylor\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":864275,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"lavancetaylor\",\"birth_date\":null,\"espn_id\":null},\"151\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lavelle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hawkins\",\"depth_chart_position\":null,\"player_id\":\"151\",\"birth_city\":null,\"fantasy_data_id\":4075,\"years_exp\":7,\"hashtag\":\"#LavelleHawkins-NFL-FA-15\",\"search_first_name\":\"lavelle\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Lavelle Hawkins\",\"sportradar_id\":\"ce1ffa7a-d7f2-43b9-84b2-380d54c64fb9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hawkins\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lavellehawkins\",\"birth_date\":\"1986-07-12\",\"espn_id\":null},\"2861\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacoby\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"glenn\",\"depth_chart_position\":null,\"player_id\":\"2861\",\"birth_city\":null,\"fantasy_data_id\":17329,\"years_exp\":5,\"hashtag\":\"#JacobyGlenn-NFL-FA-26\",\"search_first_name\":\"jacoby\",\"rotowire_id\":10068,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jacoby Glenn\",\"sportradar_id\":\"76823345-f05f-4337-a4fd-f9b173440305\",\"pandascore_id\":null,\"yahoo_id\":28702,\"last_name\":\"Glenn\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Vigor\",\"depth_chart_order\":null,\"stats_id\":693682,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jacobyglenn\",\"birth_date\":\"1993-08-04\",\"espn_id\":2972442},\"3049\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"poole\",\"depth_chart_position\":null,\"player_id\":\"3049\",\"birth_city\":null,\"fantasy_data_id\":17764,\"years_exp\":2,\"hashtag\":\"#TerryPoole-NFL-FA-69\",\"search_first_name\":\"terry\",\"rotowire_id\":10457,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Terry Poole\",\"sportradar_id\":\"a899230a-ae9d-4158-9208-eb3b18a49f8a\",\"pandascore_id\":null,\"yahoo_id\":28518,\"last_name\":\"Poole\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"terrypoole\",\"birth_date\":\"1992-02-27\",\"espn_id\":2976121},\"2550\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032157\",\"first_name\":\"Taurean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535837136116,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nixon\",\"depth_chart_position\":null,\"player_id\":\"2550\",\"birth_city\":null,\"fantasy_data_id\":17010,\"years_exp\":5,\"hashtag\":\"#TaureanNixon-NFL-FA-31\",\"search_first_name\":\"taurean\",\"rotowire_id\":10505,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Taurean Nixon\",\"sportradar_id\":\"4f260130-570b-4a37-9f17-193b6c9cc025\",\"pandascore_id\":null,\"yahoo_id\":28639,\"last_name\":\"Nixon\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"taureannixon\",\"birth_date\":\"1991-02-07\",\"espn_id\":2515587},\"5780\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034865\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534725315258,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reth\",\"depth_chart_position\":null,\"player_id\":\"5780\",\"birth_city\":null,\"fantasy_data_id\":20683,\"years_exp\":2,\"hashtag\":\"#AdamReth-NFL-FA-71\",\"search_first_name\":\"adam\",\"rotowire_id\":13376,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Adam Reth\",\"sportradar_id\":\"6904f89f-c6f3-42fe-add6-54ba80ee04dc\",\"pandascore_id\":null,\"yahoo_id\":31776,\"last_name\":\"Reth\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'4\\\"\",\"search_full_name\":\"adamreth\",\"birth_date\":\"1994-08-06\",\"espn_id\":3049025},\"3092\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sashi\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"3092\",\"birth_city\":null,\"fantasy_data_id\":17842,\"years_exp\":0,\"hashtag\":\"#SashiBrown-NFL-FA-0\",\"search_first_name\":\"sashi\",\"rotowire_id\":null,\"rotoworld_id\":11209,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Sashi Brown\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"sashibrown\",\"birth_date\":null,\"espn_id\":null},\"4584\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyrique\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jarrett\",\"depth_chart_position\":null,\"player_id\":\"4584\",\"birth_city\":null,\"fantasy_data_id\":19471,\"years_exp\":2,\"hashtag\":\"#TyriqueJarrett-NFL-FA-98\",\"search_first_name\":\"tyrique\",\"rotowire_id\":12438,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyrique Jarrett\",\"sportradar_id\":\"e2e9f8a6-9cbc-4acb-9f7f-a62130fa682a\",\"pandascore_id\":null,\"yahoo_id\":30818,\"last_name\":\"Jarrett\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"357\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tyriquejarrett\",\"birth_date\":\"1994-02-16\",\"espn_id\":3045154},\"5520\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034485\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1574772343341,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"owens\",\"depth_chart_position\":null,\"player_id\":\"5520\",\"birth_city\":null,\"fantasy_data_id\":20219,\"years_exp\":2,\"hashtag\":\"#JonathanOwens-NFL-HOU-36\",\"search_first_name\":\"jonathan\",\"rotowire_id\":13218,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jonathan Owens\",\"sportradar_id\":\"411c2af8-64c9-4982-8d72-3ba4c683c0db\",\"pandascore_id\":null,\"yahoo_id\":31318,\"last_name\":\"Owens\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":\"Christian Brothers College\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jonathanowens\",\"birth_date\":\"1995-07-22\",\"espn_id\":4331768},\"2708\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Junior\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sylvestre\",\"depth_chart_position\":null,\"player_id\":\"2708\",\"birth_city\":null,\"fantasy_data_id\":17176,\"years_exp\":4,\"hashtag\":\"#JuniorSylvestre-NFL-FA-49\",\"search_first_name\":\"junior\",\"rotowire_id\":10366,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Junior Sylvestre\",\"sportradar_id\":\"bfa9385e-81ad-4cac-9579-24522cf39fb4\",\"pandascore_id\":null,\"yahoo_id\":28751,\"last_name\":\"Sylvestre\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"juniorsylvestre\",\"birth_date\":\"1991-12-27\",\"espn_id\":2574801},\"3656\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ejiro\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ederaine\",\"depth_chart_position\":null,\"player_id\":\"3656\",\"birth_city\":null,\"fantasy_data_id\":18449,\"years_exp\":0,\"hashtag\":\"#EjiroEderaine-NFL-FA-40\",\"search_first_name\":\"ejiro\",\"rotowire_id\":11390,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ejiro Ederaine\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29691,\"last_name\":\"Ederaine\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ejiroederaine\",\"birth_date\":\"1993-11-18\",\"espn_id\":null},\"339\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hartline\",\"depth_chart_position\":null,\"player_id\":\"339\",\"birth_city\":null,\"fantasy_data_id\":8330,\"years_exp\":11,\"hashtag\":\"#BrianHartline-NFL-FA-83\",\"search_first_name\":\"brian\",\"rotowire_id\":6114,\"rotoworld_id\":5191,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Brian Hartline\",\"sportradar_id\":\"24a6423a-0c3f-4cfb-b25a-fc05c04c9f7f\",\"pandascore_id\":null,\"yahoo_id\":9372,\"last_name\":\"Hartline\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"GlenOak (OH)\",\"depth_chart_order\":null,\"stats_id\":296910,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brianhartline\",\"birth_date\":\"1986-11-22\",\"espn_id\":12568},\"7449\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Parnell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603749638997,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"motley\",\"depth_chart_position\":null,\"player_id\":\"7449\",\"birth_city\":null,\"fantasy_data_id\":22427,\"years_exp\":0,\"hashtag\":\"#ParnellMotley-NFL-SF-49\",\"search_first_name\":\"parnell\",\"rotowire_id\":14599,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2004,\"age\":23,\"full_name\":\"Parnell Motley\",\"sportradar_id\":\"eaacee31-0a3c-4f9d-be85-86490ae16f6b\",\"pandascore_id\":null,\"yahoo_id\":33293,\"last_name\":\"Motley\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"H.D. Woodson (DC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'0\\\"\",\"search_full_name\":\"parnellmotley\",\"birth_date\":\"1997-10-28\",\"espn_id\":4037647},\"5247\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034147\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1533999006812,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marvin\",\"depth_chart_position\":null,\"player_id\":\"5247\",\"birth_city\":null,\"fantasy_data_id\":20238,\"years_exp\":2,\"hashtag\":\"#DavidMarvin-NFL-FA-1\",\"search_first_name\":\"david\",\"rotowire_id\":13093,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Marvin\",\"sportradar_id\":\"33c4aa3f-8f62-48c0-9ebf-d6ad73c6e4e3\",\"pandascore_id\":null,\"yahoo_id\":31361,\"last_name\":\"Marvin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidmarvin\",\"birth_date\":\"1995-04-05\",\"espn_id\":3059104},\"3657\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032371\",\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1565106929571,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelley\",\"depth_chart_position\":null,\"player_id\":\"3657\",\"birth_city\":null,\"fantasy_data_id\":18451,\"years_exp\":4,\"hashtag\":\"#RobKelley-NFL-FA-37\",\"search_first_name\":\"rob\",\"rotowire_id\":11265,\"rotoworld_id\":11834,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rob Kelley\",\"sportradar_id\":\"6a65641c-5ee2-44e3-8a75-7f98887b40ae\",\"pandascore_id\":null,\"yahoo_id\":29694,\"last_name\":\"Kelley\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":602831,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"robkelley\",\"birth_date\":\"1992-10-03\",\"espn_id\":2575408},\"3508\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032877\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henry\",\"depth_chart_position\":null,\"player_id\":\"3508\",\"birth_city\":null,\"fantasy_data_id\":18274,\"years_exp\":4,\"hashtag\":\"#MarcusHenry-NFL-DAL-62\",\"search_first_name\":\"marcus\",\"rotowire_id\":11504,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marcus Henry\",\"sportradar_id\":\"5a1e63b3-6dcc-48f5-927c-0fc141085f32\",\"pandascore_id\":null,\"yahoo_id\":29849,\"last_name\":\"Henry\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Bellevue (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marcushenry\",\"birth_date\":\"1993-02-11\",\"espn_id\":2573307},\"2722\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmay\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mundine\",\"depth_chart_position\":null,\"player_id\":\"2722\",\"birth_city\":null,\"fantasy_data_id\":17190,\"years_exp\":1,\"hashtag\":\"#JimmayMundine-NFL-FA-87\",\"search_first_name\":\"jimmay\",\"rotowire_id\":10578,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jimmay Mundine\",\"sportradar_id\":\"58f1ed75-6d74-4429-9d45-5d8fdb7201f3\",\"pandascore_id\":null,\"yahoo_id\":29150,\"last_name\":\"Mundine\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555781,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jimmaymundine\",\"birth_date\":\"1991-11-12\",\"espn_id\":2513911},\"3108\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032014\",\"first_name\":\"Travell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"3108\",\"birth_city\":null,\"fantasy_data_id\":17860,\"years_exp\":5,\"hashtag\":\"#TravellDixon-NFL-FA-27\",\"search_first_name\":\"travell\",\"rotowire_id\":10795,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Travell Dixon\",\"sportradar_id\":\"d2e89432-b9e3-4beb-a795-f0e9f6756efb\",\"pandascore_id\":null,\"yahoo_id\":29079,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"travelldixon\",\"birth_date\":\"1991-02-17\",\"espn_id\":2976500},\"3469\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032751\",\"first_name\":\"Cassanova\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1578453344101,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mckinzy\",\"depth_chart_position\":null,\"player_id\":\"3469\",\"birth_city\":null,\"fantasy_data_id\":18233,\"years_exp\":4,\"hashtag\":\"#CassanovaMcKinzy-NFL-FA-58\",\"search_first_name\":\"cassanova\",\"rotowire_id\":11135,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cassanova McKinzy\",\"sportradar_id\":\"555ad7d1-ee7a-4679-b24e-0cbee3ca680d\",\"pandascore_id\":null,\"yahoo_id\":29584,\"last_name\":\"McKinzy\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cassanovamckinzy\",\"birth_date\":\"1992-11-17\",\"espn_id\":2971032},\"656\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redding\",\"depth_chart_position\":null,\"player_id\":\"656\",\"birth_city\":null,\"fantasy_data_id\":11722,\"years_exp\":17,\"hashtag\":\"#CoryRedding-NFL-FA-90\",\"search_first_name\":\"cory\",\"rotowire_id\":3413,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Cory Redding\",\"sportradar_id\":\"e0e205f1-065c-4c56-9721-0eab8c54ab9b\",\"pandascore_id\":null,\"yahoo_id\":6402,\"last_name\":\"Redding\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coryredding\",\"birth_date\":\"1980-11-15\",\"espn_id\":4524},\"5289\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034652\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606147513256,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"batson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5289\",\"birth_city\":null,\"fantasy_data_id\":20372,\"years_exp\":2,\"hashtag\":\"#CameronBatson-NFL-TEN-13\",\"search_first_name\":\"cameron\",\"rotowire_id\":13206,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1460,\"age\":24,\"full_name\":\"Cameron Batson\",\"sportradar_id\":\"54c60acc-65ac-4e63-a988-697ee26e862a\",\"pandascore_id\":null,\"yahoo_id\":31623,\"last_name\":\"Batson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Texas Tech\",\"high_school\":\"Millwood (OK)\",\"depth_chart_order\":1,\"stats_id\":839009,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"cameronbatson\",\"birth_date\":\"1995-12-20\",\"espn_id\":3139456},\"2420\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032198\",\"first_name\":\"Ibraheim\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603204257372,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"2420\",\"birth_city\":null,\"fantasy_data_id\":16876,\"years_exp\":5,\"hashtag\":\"#IbraheimCampbell-NFL-IND-33\",\"search_first_name\":\"ibraheim\",\"rotowire_id\":10404,\"rotoworld_id\":10504,\"active\":true,\"search_rank\":889,\"age\":28,\"full_name\":\"Ibraheim Campbell\",\"sportradar_id\":\"294b8433-6560-4117-82e9-79f51d361b0b\",\"pandascore_id\":null,\"yahoo_id\":28503,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Chestnut Hill (PA)\",\"depth_chart_order\":null,\"stats_id\":546171,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ibraheimcampbell\",\"birth_date\":\"1992-05-13\",\"espn_id\":2511090},\"7320\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359848,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schoen\",\"depth_chart_position\":null,\"player_id\":\"7320\",\"birth_city\":null,\"fantasy_data_id\":22312,\"years_exp\":0,\"hashtag\":\"#DaltonSchoen-NFL-FA-0\",\"search_first_name\":\"dalton\",\"rotowire_id\":14850,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dalton Schoen\",\"sportradar_id\":\"67b1e19a-9843-4025-a32e-184f2e0a61ce\",\"pandascore_id\":null,\"yahoo_id\":32990,\"last_name\":\"Schoen\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daltonschoen\",\"birth_date\":\"1996-10-13\",\"espn_id\":3916124},\"4708\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevonn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mabon\",\"depth_chart_position\":null,\"player_id\":\"4708\",\"birth_city\":null,\"fantasy_data_id\":19615,\"years_exp\":2,\"hashtag\":\"#KevonnMabon-NFL-FA-80\",\"search_first_name\":\"kevonn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kevonn Mabon\",\"sportradar_id\":\"474ebff3-e692-4fa5-bb5c-b6e4eb7fb81d\",\"pandascore_id\":null,\"yahoo_id\":30752,\"last_name\":\"Mabon\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652271,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kevonnmabon\",\"birth_date\":\"1993-10-02\",\"espn_id\":2972052},\"5755\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":\"TE\",\"player_id\":\"5755\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":2,\"hashtag\":\"#DuplicatePlayer-NFL-FA-89\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'4\\\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":\"1996-02-23\",\"espn_id\":null},\"2133\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031381\",\"first_name\":\"Davante\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606518927487,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2133\",\"birth_city\":null,\"fantasy_data_id\":16470,\"years_exp\":6,\"hashtag\":\"#DavanteAdams-NFL-GB-17\",\"search_first_name\":\"davante\",\"rotowire_id\":9455,\"rotoworld_id\":9273,\"active\":true,\"search_rank\":15,\"age\":27,\"full_name\":\"Davante Adams\",\"sportradar_id\":\"e7d6ae25-bf15-4660-8b37-c37716551de3\",\"pandascore_id\":null,\"yahoo_id\":27581,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Palo Alto (CA)\",\"depth_chart_order\":1,\"stats_id\":611417,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davanteadams\",\"birth_date\":\"1992-12-24\",\"espn_id\":16800},\"254\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrelle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1531926001189,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"revis\",\"depth_chart_position\":null,\"player_id\":\"254\",\"birth_city\":null,\"fantasy_data_id\":6304,\"years_exp\":13,\"hashtag\":\"#DarrelleRevis-NFL-FA-24\",\"search_first_name\":\"darrelle\",\"rotowire_id\":5207,\"rotoworld_id\":4155,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Darrelle Revis\",\"sportradar_id\":\"2979c3a5-0e4e-489e-82d7-d208e48b828b\",\"pandascore_id\":null,\"yahoo_id\":8268,\"last_name\":\"Revis\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Aliquippa (PA)\",\"depth_chart_order\":null,\"stats_id\":269063,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darrellerevis\",\"birth_date\":\"1985-07-14\",\"espn_id\":10458},\"3380\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032447\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535831708976,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lucien\",\"depth_chart_position\":null,\"player_id\":\"3380\",\"birth_city\":null,\"fantasy_data_id\":18141,\"years_exp\":4,\"hashtag\":\"#DevinLucien-NFL-FA-10\",\"search_first_name\":\"devin\",\"rotowire_id\":11006,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Devin Lucien\",\"sportradar_id\":\"41511ce3-77f8-48c4-8cf9-7029ec7e1bbf\",\"pandascore_id\":null,\"yahoo_id\":29459,\"last_name\":\"Lucien\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605062,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"devinlucien\",\"birth_date\":\"1993-06-26\",\"espn_id\":2577190},\"1081\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James-Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1081\",\"birth_city\":null,\"fantasy_data_id\":13898,\"years_exp\":8,\"hashtag\":\"#JamesMichaelJohnson-NFL-FA-56\",\"search_first_name\":\"jamesmichael\",\"rotowire_id\":8225,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"James-Michael Johnson\",\"sportradar_id\":\"ee0e5c2a-4623-44ee-a46a-d59d348c5f75\",\"pandascore_id\":null,\"yahoo_id\":25830,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Rodriguez (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesmichaeljohnson\",\"birth_date\":\"1989-08-20\",\"espn_id\":15032},\"6866\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603928429862,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6866\",\"birth_city\":null,\"fantasy_data_id\":21758,\"years_exp\":0,\"hashtag\":\"#KJHill-NFL-LAC-84\",\"search_first_name\":\"kj\",\"rotowire_id\":14414,\"rotoworld_id\":null,\"active\":true,\"search_rank\":403,\"age\":23,\"full_name\":\"K.J. Hill\",\"sportradar_id\":\"a42da2a1-42c0-4d45-85f0-ab5c9af37e6f\",\"pandascore_id\":null,\"yahoo_id\":32890,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"North Little Rock (AR)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kjhill\",\"birth_date\":\"1997-09-15\",\"espn_id\":3915522},\"280\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025512\",\"first_name\":\"Jermon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567175151285,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bushrod\",\"depth_chart_position\":null,\"player_id\":\"280\",\"birth_city\":null,\"fantasy_data_id\":7098,\"years_exp\":13,\"hashtag\":\"#JermonBushrod-NFL-FA-74\",\"search_first_name\":\"jermon\",\"rotowire_id\":6327,\"rotoworld_id\":4455,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Jermon Bushrod\",\"sportradar_id\":\"b31b2a6b-1464-4c78-a19c-1f6ae627d519\",\"pandascore_id\":null,\"yahoo_id\":8379,\"last_name\":\"Bushrod\",\"metadata\":null,\"college\":\"Towson\",\"high_school\":\"King George (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jermonbushrod\",\"birth_date\":\"1984-08-19\",\"espn_id\":10568},\"360\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026561\",\"first_name\":\"Ramon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584402008814,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":\"LG\",\"player_id\":\"360\",\"birth_city\":null,\"fantasy_data_id\":8504,\"years_exp\":11,\"hashtag\":\"#RamonFoster-NFL-FA-73\",\"search_first_name\":\"ramon\",\"rotowire_id\":7002,\"rotoworld_id\":5527,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Ramon Foster\",\"sportradar_id\":\"dc99b6a9-4825-40c1-858d-252a4061c289\",\"pandascore_id\":null,\"yahoo_id\":9557,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Ripley (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ramonfoster\",\"birth_date\":\"1986-01-07\",\"espn_id\":12883},\"2758\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brennen\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beyer\",\"depth_chart_position\":null,\"player_id\":\"2758\",\"birth_city\":null,\"fantasy_data_id\":17226,\"years_exp\":5,\"hashtag\":\"#BrennenBeyer-NFL-FA-0\",\"search_first_name\":\"brennen\",\"rotowire_id\":10743,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brennen Beyer\",\"sportradar_id\":\"d7ffadcb-7f9c-4d1f-8fdf-edff99c92a70\",\"pandascore_id\":null,\"yahoo_id\":28946,\"last_name\":\"Beyer\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brennenbeyer\",\"birth_date\":\"1992-11-25\",\"espn_id\":2576253},\"4627\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033688\",\"first_name\":\"Avery\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599191754977,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gennesy\",\"depth_chart_position\":\"RG\",\"player_id\":\"4627\",\"birth_city\":null,\"fantasy_data_id\":19521,\"years_exp\":3,\"hashtag\":\"#AveryGennesy-NFL-FA-0\",\"search_first_name\":\"avery\",\"rotowire_id\":11795,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Avery Gennesy\",\"sportradar_id\":\"21be8393-db2f-4ef0-98a3-5f1b8421dd54\",\"pandascore_id\":null,\"yahoo_id\":30400,\"last_name\":\"Gennesy\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"averygennesy\",\"birth_date\":\"1994-02-06\",\"espn_id\":3115302},\"2459\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031594\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1564530303690,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lippett\",\"depth_chart_position\":null,\"player_id\":\"2459\",\"birth_city\":null,\"fantasy_data_id\":16916,\"years_exp\":5,\"hashtag\":\"#TonyLippett-NFL-FA-39\",\"search_first_name\":\"tony\",\"rotowire_id\":10227,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tony Lippett\",\"sportradar_id\":\"c0cfe76c-0633-4b6b-b282-02ca9911cabd\",\"pandascore_id\":null,\"yahoo_id\":28544,\"last_name\":\"Lippett\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Crockett (MI)\",\"depth_chart_order\":null,\"stats_id\":557362,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tonylippett\",\"birth_date\":\"1992-07-02\",\"espn_id\":2515418},\"2298\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"towns\",\"depth_chart_position\":null,\"player_id\":\"2298\",\"birth_city\":null,\"fantasy_data_id\":16743,\"years_exp\":1,\"hashtag\":\"#JeremyTowns-NFL-FA-79\",\"search_first_name\":\"jeremy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeremy Towns\",\"sportradar_id\":\"4e2ef7b6-b09c-4878-8427-c2606f9db428\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Towns\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremytowns\",\"birth_date\":\"1989-03-09\",\"espn_id\":2324064},\"2812\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Imoan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"claiborne\",\"depth_chart_position\":null,\"player_id\":\"2812\",\"birth_city\":null,\"fantasy_data_id\":17280,\"years_exp\":0,\"hashtag\":\"#ImoanClaiborne-NFL-FA-45\",\"search_first_name\":\"imoan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Imoan Claiborne\",\"sportradar_id\":\"feb9f2f7-337a-4f9a-a17f-bbbf23da6fa4\",\"pandascore_id\":null,\"yahoo_id\":28991,\"last_name\":\"Claiborne\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"imoanclaiborne\",\"birth_date\":\"1992-07-20\",\"espn_id\":2510111},\"7027\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605653125910,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mayden\",\"depth_chart_position\":null,\"player_id\":\"7027\",\"birth_city\":null,\"fantasy_data_id\":22103,\"years_exp\":0,\"hashtag\":\"#JaredMayden-NFL-SF-43\",\"search_first_name\":\"jared\",\"rotowire_id\":14780,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1922,\"age\":22,\"full_name\":\"Jared Mayden\",\"sportradar_id\":\"cec656f2-7a0b-4993-9489-7a0cef088c0f\",\"pandascore_id\":null,\"yahoo_id\":33201,\"last_name\":\"Mayden\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Sachse (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaredmayden\",\"birth_date\":\"1998-06-24\",\"espn_id\":4040975},\"6145\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035625\",\"first_name\":\"Juan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602039036177,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thornhill\",\"depth_chart_position\":\"SS\",\"player_id\":\"6145\",\"birth_city\":null,\"fantasy_data_id\":20965,\"years_exp\":1,\"hashtag\":\"#JuanThornhill-NFL-KC-22\",\"search_first_name\":\"juan\",\"rotowire_id\":13824,\"rotoworld_id\":14079,\"active\":true,\"search_rank\":1608,\"age\":25,\"full_name\":\"Juan Thornhill\",\"sportradar_id\":\"73ec5a10-dd68-448e-938f-25021cbc3004\",\"pandascore_id\":null,\"yahoo_id\":31895,\"last_name\":\"Thornhill\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Altavista (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"juanthornhill\",\"birth_date\":\"1995-10-19\",\"espn_id\":3917909},\"2069\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"patrick\",\"depth_chart_position\":null,\"player_id\":\"2069\",\"birth_city\":null,\"fantasy_data_id\":16373,\"years_exp\":5,\"hashtag\":\"#RonaldPatrick-NFL-FA-62\",\"search_first_name\":\"ronald\",\"rotowire_id\":10612,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ronald Patrick\",\"sportradar_id\":\"c5748df6-0379-495e-8592-0a3df036de28\",\"pandascore_id\":null,\"yahoo_id\":28135,\"last_name\":\"Patrick\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ronaldpatrick\",\"birth_date\":\"1991-11-01\",\"espn_id\":17327},\"6671\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035563\",\"first_name\":\"Jerald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":null,\"player_id\":\"6671\",\"birth_city\":null,\"fantasy_data_id\":21565,\"years_exp\":1,\"hashtag\":\"#JeraldFoster-NFL-FA-63\",\"search_first_name\":\"jerald\",\"rotowire_id\":14302,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jerald Foster\",\"sportradar_id\":\"838e8308-5d0a-43dd-a6c4-27b0d7c879f9\",\"pandascore_id\":null,\"yahoo_id\":32593,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeraldfoster\",\"birth_date\":\"1995-09-14\",\"espn_id\":3116094},\"1932\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031054\",\"first_name\":\"DaQuan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603036507958,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"NT\",\"player_id\":\"1932\",\"birth_city\":null,\"fantasy_data_id\":16171,\"years_exp\":6,\"hashtag\":\"#DaQuanJones-NFL-TEN-90\",\"search_first_name\":\"daquan\",\"rotowire_id\":9393,\"rotoworld_id\":9656,\"active\":true,\"search_rank\":789,\"age\":28,\"full_name\":\"DaQuan Jones\",\"sportradar_id\":\"0d038341-cd66-4651-93c4-e76c6d218135\",\"pandascore_id\":null,\"yahoo_id\":27640,\"last_name\":\"Jones\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Penn State\",\"high_school\":\"Johnson City (NY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'4\\\"\",\"search_full_name\":\"daquanjones\",\"birth_date\":\"1991-12-27\",\"espn_id\":16910},\"481\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oher\",\"depth_chart_position\":null,\"player_id\":\"481\",\"birth_city\":null,\"fantasy_data_id\":9795,\"years_exp\":11,\"hashtag\":\"#MichaelOher-NFL-FA-73\",\"search_first_name\":\"michael\",\"rotowire_id\":6050,\"rotoworld_id\":5182,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Michael Oher\",\"sportradar_id\":\"98a87efc-1bdd-49fd-8dd1-d03d41e6e374\",\"pandascore_id\":null,\"yahoo_id\":9287,\"last_name\":\"Oher\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Briarcrest Christian School (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaeloher\",\"birth_date\":\"1986-05-28\",\"espn_id\":12621},\"556\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0027658\",\"first_name\":\"Zane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1560222947108,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beadles\",\"depth_chart_position\":null,\"player_id\":\"556\",\"birth_city\":null,\"fantasy_data_id\":11178,\"years_exp\":10,\"hashtag\":\"#ZaneBeadles-NFL-FA-69\",\"search_first_name\":\"zane\",\"rotowire_id\":6559,\"rotoworld_id\":5833,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Zane Beadles\",\"sportradar_id\":\"a9217999-fa6d-4474-a176-1cf9013224ea\",\"pandascore_id\":null,\"yahoo_id\":24020,\"last_name\":\"Beadles\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Hillcrest (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"zanebeadles\",\"birth_date\":\"1986-11-19\",\"espn_id\":13261},\"4680\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"4680\",\"birth_city\":null,\"fantasy_data_id\":19581,\"years_exp\":2,\"hashtag\":\"#LarryClark-NFL-FA-17\",\"search_first_name\":\"larry\",\"rotowire_id\":12253,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Larry Clark\",\"sportradar_id\":\"05564bd8-a387-4f43-b60e-b5805e3e1997\",\"pandascore_id\":null,\"yahoo_id\":30835,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Colorado St.-Pueblo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609612,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'3\\\"\",\"search_full_name\":\"larryclark\",\"birth_date\":null,\"espn_id\":2581999},\"7182\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"HInwa\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allieu\",\"depth_chart_position\":null,\"player_id\":\"7182\",\"birth_city\":null,\"fantasy_data_id\":22184,\"years_exp\":0,\"hashtag\":\"#HInwaAllieu-NFL-FA-0\",\"search_first_name\":\"hinwa\",\"rotowire_id\":14994,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1945,\"age\":22,\"full_name\":\"HInwa Allieu\",\"sportradar_id\":\"186f7ec6-3201-49c9-8028-79276e7c2a9f\",\"pandascore_id\":null,\"yahoo_id\":33043,\"last_name\":\"Allieu\",\"metadata\":null,\"college\":\"Nebraska-Kearney\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hinwaallieu\",\"birth_date\":\"1997-12-09\",\"espn_id\":null},\"3936\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lally\",\"depth_chart_position\":null,\"player_id\":\"3936\",\"birth_city\":null,\"fantasy_data_id\":18769,\"years_exp\":0,\"hashtag\":\"#TomLally-NFL-FA-78\",\"search_first_name\":\"tom\",\"rotowire_id\":11658,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tom Lally\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30066,\"last_name\":\"Lally\",\"metadata\":null,\"college\":\"Mount Union\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tomlally\",\"birth_date\":\"1993-10-02\",\"espn_id\":3084893},\"1315\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":null,\"player_id\":\"1315\",\"birth_city\":null,\"fantasy_data_id\":14809,\"years_exp\":4,\"hashtag\":\"#JerryFranklin-NFL-FA-58\",\"search_first_name\":\"jerry\",\"rotowire_id\":8426,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jerry Franklin\",\"sportradar_id\":\"0f964a6a-53e1-4c20-8ac3-3c83c2a24b49\",\"pandascore_id\":null,\"yahoo_id\":25978,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jerryfranklin\",\"birth_date\":\"1988-01-10\",\"espn_id\":15194},\"546\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027684\",\"first_name\":\"Earl\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1581025221372,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":null,\"player_id\":\"546\",\"birth_city\":null,\"fantasy_data_id\":11108,\"years_exp\":10,\"hashtag\":\"#EarlMitchell-NFL-FA-93\",\"search_first_name\":\"earl\",\"rotowire_id\":6683,\"rotoworld_id\":5884,\"active\":true,\"search_rank\":604,\"age\":32,\"full_name\":\"Earl Mitchell\",\"sportradar_id\":\"c9fe00a2-7620-49f3-a744-7d04c5b30560\",\"pandascore_id\":null,\"yahoo_id\":24056,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":null,\"stats_id\":335012,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"earlmitchell\",\"birth_date\":\"1987-09-25\",\"espn_id\":13288},\"2433\":{\"position\":\"G\",\"injury_notes\":\"Feliciano is recovering from surgery and will miss 8-12 weeks.\",\"birth_country\":null,\"gsis_id\":\"00-0032151\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605303654285,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"feliciano\",\"depth_chart_position\":\"LG\",\"player_id\":\"2433\",\"birth_city\":null,\"fantasy_data_id\":16889,\"years_exp\":5,\"hashtag\":\"#JonFeliciano-NFL-BUF-76\",\"search_first_name\":\"jon\",\"rotowire_id\":10456,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jon Feliciano\",\"sportradar_id\":\"392ccaf6-6d81-453f-85e3-7702ac081db3\",\"pandascore_id\":null,\"yahoo_id\":28516,\"last_name\":\"Feliciano\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Western (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonfeliciano\",\"birth_date\":\"1992-02-10\",\"espn_id\":2512577},\"165\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bostick\",\"depth_chart_position\":null,\"player_id\":\"165\",\"birth_city\":null,\"fantasy_data_id\":4276,\"years_exp\":3,\"hashtag\":\"#BrandonBostick-NFL-FA-82\",\"search_first_name\":\"brandon\",\"rotowire_id\":9102,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brandon Bostick\",\"sportradar_id\":\"e804ffee-597a-434f-8e72-7db5893225d6\",\"pandascore_id\":null,\"yahoo_id\":26538,\"last_name\":\"Bostick\",\"metadata\":null,\"college\":\"Newberry - SC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":512804,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonbostick\",\"birth_date\":\"1989-05-03\",\"espn_id\":15688},\"2203\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nic\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":null,\"player_id\":\"2203\",\"birth_city\":null,\"fantasy_data_id\":16576,\"years_exp\":6,\"hashtag\":\"#NicJacobs-NFL-FA-85\",\"search_first_name\":\"nic\",\"rotowire_id\":9639,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Nic Jacobs\",\"sportradar_id\":\"451d7189-7d23-4288-adca-eebfa32f053b\",\"pandascore_id\":null,\"yahoo_id\":27927,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"McNeese State\",\"high_school\":\"Many (LA) \",\"depth_chart_order\":null,\"stats_id\":540517,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nicjacobs\",\"birth_date\":\"1991-10-31\",\"espn_id\":17181},\"7001\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596499806349,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herrien\",\"depth_chart_position\":null,\"player_id\":\"7001\",\"birth_city\":null,\"fantasy_data_id\":21953,\"years_exp\":0,\"hashtag\":\"#BrianHerrien-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":14438,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1858,\"age\":22,\"full_name\":\"Brian Herrien\",\"sportradar_id\":\"af366ded-5eba-4a8d-b9fe-37ace1e173f0\",\"pandascore_id\":null,\"yahoo_id\":33307,\"last_name\":\"Herrien\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brianherrien\",\"birth_date\":\"1998-02-07\",\"espn_id\":null},\"3704\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":\"RT\",\"player_id\":\"3704\",\"birth_city\":null,\"fantasy_data_id\":18510,\"years_exp\":0,\"hashtag\":\"#RyanMack-NFL-FA-61\",\"search_first_name\":\"ryan\",\"rotowire_id\":11372,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Mack\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29895,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanmack\",\"birth_date\":\"1993-05-31\",\"espn_id\":null},\"1185\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029205\",\"first_name\":\"Travaris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1571191251347,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cadet\",\"depth_chart_position\":null,\"player_id\":\"1185\",\"birth_city\":null,\"fantasy_data_id\":14352,\"years_exp\":8,\"hashtag\":\"#TravarisCadet-NFL-FA-38\",\"search_first_name\":\"travaris\",\"rotowire_id\":8454,\"rotoworld_id\":7758,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Travaris Cadet\",\"sportradar_id\":\"b4ce3e07-7848-4da2-a33e-4f04ce540ba5\",\"pandascore_id\":null,\"yahoo_id\":26024,\"last_name\":\"Cadet\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Miami Central (FL)\",\"depth_chart_order\":null,\"stats_id\":400644,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"travariscadet\",\"birth_date\":\"1989-02-01\",\"espn_id\":15457},\"3676\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032566\",\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1585182055199,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coley\",\"depth_chart_position\":\"NT\",\"player_id\":\"3676\",\"birth_city\":null,\"fantasy_data_id\":18476,\"years_exp\":4,\"hashtag\":\"#TrevonColey-NFL-ARI-93\",\"search_first_name\":\"trevon\",\"rotowire_id\":11305,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1082,\"age\":26,\"full_name\":\"Trevon Coley\",\"sportradar_id\":\"8905d02c-c7f7-4a50-901b-6eee71e39cc6\",\"pandascore_id\":null,\"yahoo_id\":29751,\"last_name\":\"Coley\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Miramar (FL)\",\"depth_chart_order\":1,\"stats_id\":695081,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trevoncoley\",\"birth_date\":\"1994-07-13\",\"espn_id\":2982880},\"956\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027966\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606161913329,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"ingram\",\"depth_chart_position\":\"RB\",\"player_id\":\"956\",\"birth_city\":null,\"fantasy_data_id\":13337,\"years_exp\":9,\"hashtag\":\"#MarkIngram-NFL-BAL-21\",\"search_first_name\":\"mark\",\"rotowire_id\":7244,\"rotoworld_id\":6471,\"active\":true,\"search_rank\":35,\"age\":30,\"full_name\":\"Mark Ingram\",\"sportradar_id\":\"f336567d-44a9-4245-8452-1dd485fd70fb\",\"pandascore_id\":null,\"yahoo_id\":24815,\"last_name\":\"Ingram\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Southwestern Academy (MI)\",\"depth_chart_order\":1,\"stats_id\":456613,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'9\\\"\",\"search_full_name\":\"markingram\",\"birth_date\":\"1989-12-21\",\"espn_id\":13981},\"2970\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Floyd\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"raven\",\"depth_chart_position\":null,\"player_id\":\"2970\",\"birth_city\":null,\"fantasy_data_id\":17464,\"years_exp\":1,\"hashtag\":\"#FloydRaven-NFL-FA-41\",\"search_first_name\":\"floyd\",\"rotowire_id\":10778,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Floyd Raven\",\"sportradar_id\":\"c0b50f43-d423-4133-950b-aeb6916ea77e\",\"pandascore_id\":null,\"yahoo_id\":28977,\"last_name\":\"Raven\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"floydraven\",\"birth_date\":\"1992-12-31\",\"espn_id\":2578685},\"171\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"171\",\"birth_city\":null,\"fantasy_data_id\":4484,\"years_exp\":8,\"hashtag\":\"#ZachMiller-NFL-FA-86\",\"search_first_name\":\"zach\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Zach Miller\",\"sportradar_id\":\"09cbfefb-2ef4-4d07-8ac3-fafccc9a2106\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"zachmiller\",\"birth_date\":\"1985-12-11\",\"espn_id\":10482},\"7116\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605408061048,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"dotson\",\"depth_chart_position\":null,\"player_id\":\"7116\",\"birth_city\":null,\"fantasy_data_id\":22132,\"years_exp\":0,\"hashtag\":\"#KevinDotson-NFL-PIT-69\",\"search_first_name\":\"kevin\",\"rotowire_id\":14749,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kevin Dotson\",\"sportradar_id\":\"fb301e65-4c65-4b60-a8ca-d149fcdbcd97\",\"pandascore_id\":null,\"yahoo_id\":32805,\"last_name\":\"Dotson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Plaquemine (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kevindotson\",\"birth_date\":\"1996-09-18\",\"espn_id\":3917599},\"1961\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031152\",\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1573597258959,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"witzmann\",\"depth_chart_position\":null,\"player_id\":\"1961\",\"birth_city\":null,\"fantasy_data_id\":16215,\"years_exp\":6,\"hashtag\":\"#BryanWitzmann-NFL-KC-68\",\"search_first_name\":\"bryan\",\"rotowire_id\":9964,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Bryan Witzmann\",\"sportradar_id\":\"61536454-3173-4ff2-b76f-f0bdf9e59fb8\",\"pandascore_id\":null,\"yahoo_id\":28205,\"last_name\":\"Witzmann\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":\"Somerset (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'7\\\"\",\"search_full_name\":\"bryanwitzmann\",\"birth_date\":\"1990-06-16\",\"espn_id\":17377},\"1502\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030404\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605583820233,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"RB\",\"player_id\":\"1502\",\"birth_city\":null,\"fantasy_data_id\":15102,\"years_exp\":7,\"hashtag\":\"#ChrisThompson-NFL-JAX-34\",\"search_first_name\":\"chris\",\"rotowire_id\":8773,\"rotoworld_id\":8563,\"active\":true,\"search_rank\":140,\"age\":30,\"full_name\":\"Chris Thompson\",\"sportradar_id\":\"0366fd06-19a3-4b69-8448-6bfbfad1250b\",\"pandascore_id\":null,\"yahoo_id\":26777,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Madison County (FL)\",\"depth_chart_order\":6,\"stats_id\":509372,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'8\\\"\",\"search_full_name\":\"christhompson\",\"birth_date\":\"1990-10-20\",\"espn_id\":15966},\"1916\":{\"position\":\"WR\",\"injury_notes\":\"Bryant awaits reinstatement by the NFL after violating the terms of his contidional return.\",\"birth_country\":null,\"gsis_id\":\"00-0031373\",\"first_name\":\"Martavis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595852119981,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"1916\",\"birth_city\":null,\"fantasy_data_id\":16146,\"years_exp\":6,\"hashtag\":\"#MartavisBryant-NFL-FA-12\",\"search_first_name\":\"martavis\",\"rotowire_id\":9456,\"rotoworld_id\":9416,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Martavis Bryant\",\"sportradar_id\":\"e9d4ab78-3572-47ab-b4d3-e04c5af231f3\",\"pandascore_id\":null,\"yahoo_id\":27646,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"T.L. Hanna (SC)\",\"depth_chart_order\":null,\"stats_id\":602091,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":\"Sus\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'4\\\"\",\"search_full_name\":\"martavisbryant\",\"birth_date\":\"1991-12-20\",\"espn_id\":16886},\"3074\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032324\",\"first_name\":\"Cornelius\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1514655901260,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edison\",\"depth_chart_position\":null,\"player_id\":\"3074\",\"birth_city\":null,\"fantasy_data_id\":17821,\"years_exp\":5,\"hashtag\":\"#CorneliusEdison-NFL-FA-67\",\"search_first_name\":\"cornelius\",\"rotowire_id\":10774,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cornelius Edison\",\"sportradar_id\":\"49606a1d-e06e-4cde-8528-f1adca8bd5fa\",\"pandascore_id\":null,\"yahoo_id\":29212,\"last_name\":\"Edison\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'3\\\"\",\"search_full_name\":\"corneliusedison\",\"birth_date\":\"1993-07-10\",\"espn_id\":2565684},\"7475\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Napoleon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693364540,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maxwell\",\"depth_chart_position\":null,\"player_id\":\"7475\",\"birth_city\":null,\"fantasy_data_id\":22450,\"years_exp\":0,\"hashtag\":\"#NapoleonMaxwell-NFL-FA-0\",\"search_first_name\":\"napoleon\",\"rotowire_id\":14981,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Napoleon Maxwell\",\"sportradar_id\":\"32789146-0049-4be1-9b02-a39fe6631b58\",\"pandascore_id\":null,\"yahoo_id\":33177,\"last_name\":\"Maxwell\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"napoleonmaxwell\",\"birth_date\":\"1996-03-27\",\"espn_id\":3128846},\"7413\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604246118435,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"molchon\",\"depth_chart_position\":null,\"player_id\":\"7413\",\"birth_city\":null,\"fantasy_data_id\":22021,\"years_exp\":0,\"hashtag\":\"#JohnMolchon-NFL-TB-75\",\"search_first_name\":\"john\",\"rotowire_id\":14672,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"John Molchon\",\"sportradar_id\":\"f48df73d-5d7f-4b84-868b-7cef4d77a282\",\"pandascore_id\":null,\"yahoo_id\":33275,\"last_name\":\"Molchon\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Faith Lutheran (NV)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johnmolchon\",\"birth_date\":\"1997-02-02\",\"espn_id\":3722375},\"3880\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"MJ\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcfarland\",\"depth_chart_position\":null,\"player_id\":\"3880\",\"birth_city\":null,\"fantasy_data_id\":18702,\"years_exp\":3,\"hashtag\":\"#MJMcFarland-NFL-FA-42\",\"search_first_name\":\"mj\",\"rotowire_id\":11535,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"MJ McFarland\",\"sportradar_id\":\"040aeba2-c0ea-4858-aaf8-75c0453686ce\",\"pandascore_id\":null,\"yahoo_id\":30007,\"last_name\":\"McFarland\",\"metadata\":null,\"college\":\"UTEP\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":590677,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mjmcfarland\",\"birth_date\":\"1992-07-25\",\"espn_id\":2577567},\"7248\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeffery\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whatley\",\"depth_chart_position\":null,\"player_id\":\"7248\",\"birth_city\":null,\"fantasy_data_id\":22248,\"years_exp\":0,\"hashtag\":\"#JefferyWhatley-NFL-FA-0\",\"search_first_name\":\"jeffery\",\"rotowire_id\":14938,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jeffery Whatley\",\"sportradar_id\":\"a5a9bf3f-bfd3-49b4-9bcc-2f641403bfec\",\"pandascore_id\":null,\"yahoo_id\":33313,\"last_name\":\"Whatley\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jefferywhatley\",\"birth_date\":\"1996-06-23\",\"espn_id\":3918649},\"7222\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"7222\",\"birth_city\":null,\"fantasy_data_id\":22224,\"years_exp\":0,\"hashtag\":\"#MylesAdams-NFL-CAR-79\",\"search_first_name\":\"myles\",\"rotowire_id\":14965,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Myles Adams\",\"sportradar_id\":\"e6d6138f-1081-457b-9d89-dc9cd0ab9598\",\"pandascore_id\":null,\"yahoo_id\":33131,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Mansfield Summit (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mylesadams\",\"birth_date\":\"1998-03-09\",\"espn_id\":4039164},\"4901\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"4901\",\"birth_city\":null,\"fantasy_data_id\":157,\"years_exp\":0,\"hashtag\":\"#RayLewis-NFL-FA-52\",\"search_first_name\":\"ray\",\"rotowire_id\":null,\"rotoworld_id\":2246,\"active\":false,\"search_rank\":9999999,\"age\":44,\"full_name\":\"Ray Lewis\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Miami (Fla.)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"raylewis\",\"birth_date\":\"1975-05-15\",\"espn_id\":null},\"2791\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carlif\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"2791\",\"birth_city\":null,\"fantasy_data_id\":17259,\"years_exp\":0,\"hashtag\":\"#CarlifTaylor-NFL-FA-63\",\"search_first_name\":\"carlif\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Carlif Taylor\",\"sportradar_id\":\"537fbaef-f5fd-448f-9477-f61d3eb1023a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Southern Connecticut State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"carliftaylor\",\"birth_date\":\"1991-12-09\",\"espn_id\":2573749},\"5075\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034807\",\"first_name\":\"Ogbonnia\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606341903142,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"okoronkwo\",\"depth_chart_position\":null,\"player_id\":\"5075\",\"birth_city\":null,\"fantasy_data_id\":19987,\"years_exp\":2,\"hashtag\":\"#OgbonniaOkoronkwo-NFL-LAR-45\",\"search_first_name\":\"ogbonnia\",\"rotowire_id\":12788,\"rotoworld_id\":13179,\"active\":true,\"search_rank\":1381,\"age\":25,\"full_name\":\"Ogbonnia Okoronkwo\",\"sportradar_id\":\"eacc232b-701d-4a67-9ce5-61b9b931fd42\",\"pandascore_id\":null,\"yahoo_id\":31130,\"last_name\":\"Okoronkwo\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Alief Taylor (TX)\",\"depth_chart_order\":null,\"stats_id\":747990,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ogbonniaokoronkwo\",\"birth_date\":\"1995-04-24\",\"espn_id\":3052667},\"4682\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"4682\",\"birth_city\":null,\"fantasy_data_id\":19583,\"years_exp\":2,\"hashtag\":\"#RandyAllen-NFL-FA-95\",\"search_first_name\":\"randy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Randy Allen\",\"sportradar_id\":\"cbbbe6a1-79e3-4ee4-9720-a7b447cfff0a\",\"pandascore_id\":null,\"yahoo_id\":30844,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"randyallen\",\"birth_date\":\"1993-08-04\",\"espn_id\":3933340},\"5569\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034311\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606190417386,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stanton\",\"depth_chart_position\":\"RB\",\"player_id\":\"5569\",\"birth_city\":null,\"fantasy_data_id\":20581,\"years_exp\":2,\"hashtag\":\"#JohnnyStanton-NFL-CLE-43\",\"search_first_name\":\"johnny\",\"rotowire_id\":13182,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Johnny Stanton\",\"sportradar_id\":\"85e3651c-cde0-48ed-a5ea-93477a1fe99b\",\"pandascore_id\":null,\"yahoo_id\":31510,\"last_name\":\"Stanton\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"Santa Margarita Catholic (CA)\",\"depth_chart_order\":4,\"stats_id\":728310,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnnystanton\",\"birth_date\":\"1994-09-07\",\"espn_id\":3040499},\"820\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chykie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"820\",\"birth_city\":null,\"fantasy_data_id\":12814,\"years_exp\":5,\"hashtag\":\"#ChykieBrown-NFL-FA-23\",\"search_first_name\":\"chykie\",\"rotowire_id\":7621,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Chykie Brown\",\"sportradar_id\":\"fd4c8de2-7566-4bfc-8ad6-4e22c634b286\",\"pandascore_id\":null,\"yahoo_id\":24951,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chykiebrown\",\"birth_date\":\"1986-12-26\",\"espn_id\":14113},\"3926\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pierson\",\"depth_chart_position\":null,\"player_id\":\"3926\",\"birth_city\":null,\"fantasy_data_id\":18755,\"years_exp\":0,\"hashtag\":\"#MattPierson-NFL-FA-61\",\"search_first_name\":\"matt\",\"rotowire_id\":11635,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Pierson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30068,\"last_name\":\"Pierson\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattpierson\",\"birth_date\":\"1993-02-24\",\"espn_id\":2576982},\"107\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pace\",\"depth_chart_position\":null,\"player_id\":\"107\",\"birth_city\":null,\"fantasy_data_id\":2933,\"years_exp\":17,\"hashtag\":\"#CalvinPace-NFL-FA-97\",\"search_first_name\":\"calvin\",\"rotowire_id\":3046,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Calvin Pace\",\"sportradar_id\":\"7b2f9310-f695-4c64-8c43-3fff3ba244c6\",\"pandascore_id\":null,\"yahoo_id\":6354,\"last_name\":\"Pace\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Lithia Springs (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"calvinpace\",\"birth_date\":\"1980-10-28\",\"espn_id\":4476},\"2081\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dieke\",\"depth_chart_position\":null,\"player_id\":\"2081\",\"birth_city\":null,\"fantasy_data_id\":16392,\"years_exp\":1,\"hashtag\":\"#EmmanuelDieke-NFL-FA-98\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Emmanuel Dieke\",\"sportradar_id\":\"18c8ea3e-76ea-4df2-a4e2-ba37993efac4\",\"pandascore_id\":null,\"yahoo_id\":28164,\"last_name\":\"Dieke\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'6\\\"\",\"search_full_name\":\"emmanueldieke\",\"birth_date\":\"1990-09-23\",\"espn_id\":17303},\"6021\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034961\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1569357642679,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brossette\",\"depth_chart_position\":\"RB\",\"player_id\":\"6021\",\"birth_city\":null,\"fantasy_data_id\":21041,\"years_exp\":1,\"hashtag\":\"#NickBrossette-NFL-FA-36\",\"search_first_name\":\"nick\",\"rotowire_id\":13524,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick Brossette\",\"sportradar_id\":\"86d0d3b3-5400-4fc8-943e-cb0a92d69e77\",\"pandascore_id\":null,\"yahoo_id\":32226,\"last_name\":\"Brossette\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":865555,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nickbrossette\",\"birth_date\":\"1996-03-02\",\"espn_id\":3843406},\"2678\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"drew\",\"depth_chart_position\":null,\"player_id\":\"2678\",\"birth_city\":null,\"fantasy_data_id\":17146,\"years_exp\":0,\"hashtag\":\"#RayDrew-NFL-FA-65\",\"search_first_name\":\"ray\",\"rotowire_id\":10344,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ray Drew\",\"sportradar_id\":\"ec53c2b3-55d1-471f-b270-8b77451273ad\",\"pandascore_id\":null,\"yahoo_id\":28906,\"last_name\":\"Drew\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"raydrew\",\"birth_date\":\"1992-09-24\",\"espn_id\":2578539},\"4717\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033853\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535038807833,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4717\",\"birth_city\":null,\"fantasy_data_id\":19625,\"years_exp\":3,\"hashtag\":\"#BryceJones-NFL-FA-44\",\"search_first_name\":\"bryce\",\"rotowire_id\":12259,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bryce Jones\",\"sportradar_id\":\"3e5858a5-d0b8-44ba-94f0-e341b1139676\",\"pandascore_id\":null,\"yahoo_id\":30859,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"172\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brycejones\",\"birth_date\":\"1994-08-20\",\"espn_id\":2969856},\"2641\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"suite\",\"depth_chart_position\":null,\"player_id\":\"2641\",\"birth_city\":null,\"fantasy_data_id\":17109,\"years_exp\":0,\"hashtag\":\"#BrianSuite-NFL-FA-45\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brian Suite\",\"sportradar_id\":\"1391fe15-0b42-47e5-a3e2-720c0b6bdb9b\",\"pandascore_id\":null,\"yahoo_id\":28884,\"last_name\":\"Suite\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"briansuite\",\"birth_date\":\"1992-04-21\",\"espn_id\":2517374},\"968\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"salas\",\"depth_chart_position\":null,\"player_id\":\"968\",\"birth_city\":null,\"fantasy_data_id\":13394,\"years_exp\":9,\"hashtag\":\"#GregSalas-NFL-FA-11\",\"search_first_name\":\"greg\",\"rotowire_id\":7388,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Greg Salas\",\"sportradar_id\":\"c7b0121b-e87d-40b9-9fda-b0f014eb4643\",\"pandascore_id\":null,\"yahoo_id\":24899,\"last_name\":\"Salas\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Chino (CA)\",\"depth_chart_order\":null,\"stats_id\":323854,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"gregsalas\",\"birth_date\":\"1988-08-25\",\"espn_id\":14106},\"5539\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034258\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605645925405,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"willies\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5539\",\"birth_city\":null,\"fantasy_data_id\":20477,\"years_exp\":2,\"hashtag\":\"#DerrickWillies-NFL-CLE-84\",\"search_first_name\":\"derrick\",\"rotowire_id\":13138,\"rotoworld_id\":13642,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Derrick Willies\",\"sportradar_id\":\"bdeddbb2-2b56-4b46-915b-19eb71fbbe45\",\"pandascore_id\":null,\"yahoo_id\":31462,\"last_name\":\"Willies\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Rock Island (IL)\",\"depth_chart_order\":3,\"stats_id\":740743,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'4\\\"\",\"search_full_name\":\"derrickwillies\",\"birth_date\":\"1994-10-17\",\"espn_id\":3040137},\"6411\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035205\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vasey\",\"depth_chart_position\":null,\"player_id\":\"6411\",\"birth_city\":null,\"fantasy_data_id\":21308,\"years_exp\":1,\"hashtag\":\"#KyleVasey-NFL-FA-48\",\"search_first_name\":\"kyle\",\"rotowire_id\":14030,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kyle Vasey\",\"sportradar_id\":\"7d8a8d31-8628-4a56-934d-ada35fe98e8c\",\"pandascore_id\":null,\"yahoo_id\":32121,\"last_name\":\"Vasey\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylevasey\",\"birth_date\":\"1996-04-20\",\"espn_id\":3144792},\"6790\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D'Andre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606407657472,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swift\",\"depth_chart_position\":\"RB\",\"player_id\":\"6790\",\"birth_city\":null,\"fantasy_data_id\":21684,\"years_exp\":0,\"hashtag\":\"#DAndreSwift-NFL-DET-32\",\"search_first_name\":\"dandre\",\"rotowire_id\":14394,\"rotoworld_id\":null,\"active\":true,\"search_rank\":60,\"age\":21,\"full_name\":\"D'Andre Swift\",\"sportradar_id\":\"cc4b5f58-a11c-4450-a1df-617ad88336e4\",\"pandascore_id\":null,\"yahoo_id\":32705,\"last_name\":\"Swift\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"St. Joseph's Prep (PA)\",\"depth_chart_order\":7,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dandreswift\",\"birth_date\":\"1999-01-14\",\"espn_id\":4259545},\"1777\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030216\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606344903214,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"TE\",\"player_id\":\"1777\",\"birth_city\":null,\"fantasy_data_id\":15866,\"years_exp\":7,\"hashtag\":\"#JoshHill-NFL-NO-89\",\"search_first_name\":\"josh\",\"rotowire_id\":9071,\"rotoworld_id\":8764,\"active\":true,\"search_rank\":472,\"age\":30,\"full_name\":\"Josh Hill\",\"sportradar_id\":\"687cdc33-bd0d-4b70-adb3-33f97dc26a3c\",\"pandascore_id\":null,\"yahoo_id\":26950,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Idaho State\",\"high_school\":\"Blackfoot (ID)\",\"depth_chart_order\":2,\"stats_id\":469509,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshhill\",\"birth_date\":\"1990-05-21\",\"espn_id\":16143},\"5172\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034190\",\"first_name\":\"Alvin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1574205650621,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"5172\",\"birth_city\":null,\"fantasy_data_id\":20197,\"years_exp\":2,\"hashtag\":\"#AlvinJones-NFL-FA-58\",\"search_first_name\":\"alvin\",\"rotowire_id\":13125,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alvin Jones\",\"sportradar_id\":\"7a41d4ff-5634-4b1d-843e-820e9b2a6049\",\"pandascore_id\":null,\"yahoo_id\":31245,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alvinjones\",\"birth_date\":\"1994-12-02\",\"espn_id\":3051458},\"772\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026672\",\"first_name\":\"Ramon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1542220841875,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"humber\",\"depth_chart_position\":null,\"player_id\":\"772\",\"birth_city\":null,\"fantasy_data_id\":12562,\"years_exp\":11,\"hashtag\":\"#RamonHumber-NFL-FA-50\",\"search_first_name\":\"ramon\",\"rotowire_id\":6283,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ramon Humber\",\"sportradar_id\":\"8bc1b144-ce6d-4889-a1e1-e7cc394756e6\",\"pandascore_id\":null,\"yahoo_id\":9543,\"last_name\":\"Humber\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Champlin Park (MN)\",\"depth_chart_order\":null,\"stats_id\":316286,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ramonhumber\",\"birth_date\":\"1987-08-10\",\"espn_id\":12988},\"6342\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035460\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566253808494,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"louis\",\"depth_chart_position\":null,\"player_id\":\"6342\",\"birth_city\":null,\"fantasy_data_id\":21259,\"years_exp\":1,\"hashtag\":\"#StephenLouis-NFL-FA-12\",\"search_first_name\":\"stephen\",\"rotowire_id\":13996,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Stephen Louis\",\"sportradar_id\":\"4fb2b89d-56ab-4044-bc99-ff8b1f0e0bd5\",\"pandascore_id\":null,\"yahoo_id\":32513,\"last_name\":\"Louis\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820882,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stephenlouis\",\"birth_date\":\"1995-09-07\",\"espn_id\":3116745},\"1817\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031325\",\"first_name\":\"Sammy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606520127582,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watkins\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1817\",\"birth_city\":null,\"fantasy_data_id\":16003,\"years_exp\":6,\"hashtag\":\"#SammyWatkins-NFL-KC-14\",\"search_first_name\":\"sammy\",\"rotowire_id\":9249,\"rotoworld_id\":9388,\"active\":true,\"search_rank\":129,\"age\":27,\"full_name\":\"Sammy Watkins\",\"sportradar_id\":\"7d80b51f-1462-442e-aa7f-8c320a62deed\",\"pandascore_id\":null,\"yahoo_id\":27532,\"last_name\":\"Watkins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Fort Myers South (FL)\",\"depth_chart_order\":1,\"stats_id\":602118,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sammywatkins\",\"birth_date\":\"1993-06-14\",\"espn_id\":16725},\"2137\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533941719090,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fullington\",\"depth_chart_position\":null,\"player_id\":\"2137\",\"birth_city\":null,\"fantasy_data_id\":16476,\"years_exp\":6,\"hashtag\":\"#JohnFullington-NFL-FA-77\",\"search_first_name\":\"john\",\"rotowire_id\":10045,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"John Fullington\",\"sportradar_id\":\"3e2ce3c7-98a2-4d9c-a442-64fe46baea7a\",\"pandascore_id\":null,\"yahoo_id\":28165,\"last_name\":\"Fullington\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johnfullington\",\"birth_date\":\"1991-05-30\",\"espn_id\":17330},\"3913\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hale\",\"depth_chart_position\":\"LG\",\"player_id\":\"3913\",\"birth_city\":null,\"fantasy_data_id\":18739,\"years_exp\":0,\"hashtag\":\"#JoelHale-NFL-FA-60\",\"search_first_name\":\"joel\",\"rotowire_id\":11614,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joel Hale\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30041,\"last_name\":\"Hale\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joelhale\",\"birth_date\":\"1992-06-08\",\"espn_id\":null},\"1134\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029699\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1556139644960,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bergstrom\",\"depth_chart_position\":null,\"player_id\":\"1134\",\"birth_city\":null,\"fantasy_data_id\":14088,\"years_exp\":8,\"hashtag\":\"#TonyBergstrom-NFL-SF-62\",\"search_first_name\":\"tony\",\"rotowire_id\":8310,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Tony Bergstrom\",\"sportradar_id\":\"294acd0c-63a9-429e-afaa-2bfeb00d7988\",\"pandascore_id\":null,\"yahoo_id\":25805,\"last_name\":\"Bergstrom\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Skyline (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tonybergstrom\",\"birth_date\":\"1986-08-06\",\"espn_id\":14976},\"5504\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034134\",\"first_name\":\"Mackendy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cheridor\",\"depth_chart_position\":null,\"player_id\":\"5504\",\"birth_city\":null,\"fantasy_data_id\":20232,\"years_exp\":2,\"hashtag\":\"#MackendyCheridor-NFL-FA-96\",\"search_first_name\":\"mackendy\",\"rotowire_id\":13089,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mackendy Cheridor\",\"sportradar_id\":\"7f4d9680-0577-4195-9168-2fb90bb18e9c\",\"pandascore_id\":null,\"yahoo_id\":31353,\"last_name\":\"Cheridor\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mackendycheridor\",\"birth_date\":\"1994-09-20\",\"espn_id\":3042381},\"2980\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031782\",\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1571673012200,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":null,\"player_id\":\"2980\",\"birth_city\":null,\"fantasy_data_id\":17480,\"years_exp\":5,\"hashtag\":\"#EliRogers-NFL-FA-17\",\"search_first_name\":\"eli\",\"rotowire_id\":10654,\"rotoworld_id\":10753,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Eli Rogers\",\"sportradar_id\":\"bb818cdc-cc6e-4e57-90bd-5a9d5f23f48e\",\"pandascore_id\":null,\"yahoo_id\":28669,\"last_name\":\"Rogers\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606667,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'10\\\"\",\"search_full_name\":\"elirogers\",\"birth_date\":\"1992-12-23\",\"espn_id\":2576643},\"4856\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bob\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcnair\",\"depth_chart_position\":null,\"player_id\":\"4856\",\"birth_city\":null,\"fantasy_data_id\":19756,\"years_exp\":0,\"hashtag\":\"#BobMcNair-NFL-FA-0\",\"search_first_name\":\"bob\",\"rotowire_id\":null,\"rotoworld_id\":9453,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bob McNair\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McNair\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"bobmcnair\",\"birth_date\":null,\"espn_id\":null},\"3138\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"underwood\",\"depth_chart_position\":null,\"player_id\":\"3138\",\"birth_city\":null,\"fantasy_data_id\":17892,\"years_exp\":null,\"hashtag\":\"#SteveUnderwood-NFL-FA-0\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":11243,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Steve Underwood\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Underwood\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"steveunderwood\",\"birth_date\":null,\"espn_id\":null},\"3807\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tindal\",\"depth_chart_position\":\"RCB\",\"player_id\":\"3807\",\"birth_city\":null,\"fantasy_data_id\":18622,\"years_exp\":0,\"hashtag\":\"#CoreyTindal-NFL-FA-35\",\"search_first_name\":\"corey\",\"rotowire_id\":11381,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Corey Tindal\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29910,\"last_name\":\"Tindal\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"coreytindal\",\"birth_date\":\"1991-10-12\",\"espn_id\":3059866},\"2903\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carden\",\"depth_chart_position\":null,\"player_id\":\"2903\",\"birth_city\":null,\"fantasy_data_id\":17371,\"years_exp\":0,\"hashtag\":\"#ShaneCarden-NFL-FA-15\",\"search_first_name\":\"shane\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shane Carden\",\"sportradar_id\":\"be150d73-b833-46ea-ac6e-77e46d6d6c08\",\"pandascore_id\":null,\"yahoo_id\":28704,\"last_name\":\"Carden\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":550813,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shanecarden\",\"birth_date\":\"1991-11-06\",\"espn_id\":null},\"893\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027988\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1576698302391,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilchrist\",\"depth_chart_position\":null,\"player_id\":\"893\",\"birth_city\":null,\"fantasy_data_id\":13085,\"years_exp\":9,\"hashtag\":\"#MarcusGilchrist-NFL-BAL-33\",\"search_first_name\":\"marcus\",\"rotowire_id\":7527,\"rotoworld_id\":6615,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Marcus Gilchrist\",\"sportradar_id\":\"80cd039e-08e5-48ef-935d-ac46db36460d\",\"pandascore_id\":null,\"yahoo_id\":24837,\"last_name\":\"Gilchrist\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"T. Wingate Andrews (NC)\",\"depth_chart_order\":null,\"stats_id\":401728,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marcusgilchrist\",\"birth_date\":\"1988-12-08\",\"espn_id\":14018},\"2046\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2046\",\"birth_city\":null,\"fantasy_data_id\":16338,\"years_exp\":6,\"hashtag\":\"#ChrisDavis-NFL-FA-43\",\"search_first_name\":\"chris\",\"rotowire_id\":9338,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chris Davis\",\"sportradar_id\":\"d77e2ccd-d900-4a4a-8b0c-46b5d0eee907\",\"pandascore_id\":null,\"yahoo_id\":27847,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Woodlawn (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrisdavis\",\"birth_date\":\"1990-11-04\",\"espn_id\":16987},\"3036\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031788\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1595984403999,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lengel\",\"depth_chart_position\":\"TE\",\"player_id\":\"3036\",\"birth_city\":null,\"fantasy_data_id\":17741,\"years_exp\":5,\"hashtag\":\"#MattLengel-NFL-FA-0\",\"search_first_name\":\"matt\",\"rotowire_id\":10558,\"rotoworld_id\":null,\"active\":true,\"search_rank\":942,\"age\":29,\"full_name\":\"Matt Lengel\",\"sportradar_id\":\"4d747b73-bcc6-46d2-a2d7-ec1d0c8135a2\",\"pandascore_id\":null,\"yahoo_id\":28975,\"last_name\":\"Lengel\",\"metadata\":null,\"college\":\"Eastern Kentucky\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":504496,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattlengel\",\"birth_date\":\"1990-12-27\",\"espn_id\":2470916},\"5650\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034467\",\"first_name\":\"Dominick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534816806132,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":null,\"player_id\":\"5650\",\"birth_city\":null,\"fantasy_data_id\":20612,\"years_exp\":2,\"hashtag\":\"#DominickSanders-NFL-FA-33\",\"search_first_name\":\"dominick\",\"rotowire_id\":12912,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dominick Sanders\",\"sportradar_id\":\"7428dd41-d736-4141-991d-b7a74b61aeda\",\"pandascore_id\":null,\"yahoo_id\":31587,\"last_name\":\"Sanders\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dominicksanders\",\"birth_date\":null,\"espn_id\":3128706},\"7498\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rex\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sunahara\",\"depth_chart_position\":null,\"player_id\":\"7498\",\"birth_city\":null,\"fantasy_data_id\":22472,\"years_exp\":0,\"hashtag\":\"#RexSunahara-NFL-MIA-0\",\"search_first_name\":\"rex\",\"rotowire_id\":15170,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rex Sunahara\",\"sportradar_id\":\"1f3d0803-dad7-42dd-b149-da0c65f5a87e\",\"pandascore_id\":null,\"yahoo_id\":33361,\"last_name\":\"Sunahara\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Bay (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rexsunahara\",\"birth_date\":null,\"espn_id\":null},\"2530\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"iosefa\",\"depth_chart_position\":null,\"player_id\":\"2530\",\"birth_city\":null,\"fantasy_data_id\":16990,\"years_exp\":5,\"hashtag\":\"#JoeyIosefa-NFL-FA-47\",\"search_first_name\":\"joey\",\"rotowire_id\":10479,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Joey Iosefa\",\"sportradar_id\":\"66e35780-b140-44f7-ad2f-72fa76ea2a7e\",\"pandascore_id\":null,\"yahoo_id\":28619,\"last_name\":\"Iosefa\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Fagaitua\",\"depth_chart_order\":null,\"stats_id\":544696,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joeyiosefa\",\"birth_date\":\"1991-06-19\",\"espn_id\":2517262},\"1651\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tristan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okpalaugo\",\"depth_chart_position\":null,\"player_id\":\"1651\",\"birth_city\":null,\"fantasy_data_id\":15396,\"years_exp\":1,\"hashtag\":\"#TristanOkpalaugo-NFL-FA-58\",\"search_first_name\":\"tristan\",\"rotowire_id\":8742,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tristan Okpalaugo\",\"sportradar_id\":\"2e82dec6-641d-4ef6-be24-950c53e25663\",\"pandascore_id\":null,\"yahoo_id\":27252,\"last_name\":\"Okpalaugo\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tristanokpalaugo\",\"birth_date\":\"1989-10-10\",\"espn_id\":16410},\"2566\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"varga\",\"depth_chart_position\":null,\"player_id\":\"2566\",\"birth_city\":null,\"fantasy_data_id\":17030,\"years_exp\":5,\"hashtag\":\"#TylerVarga-NFL-FA-38\",\"search_first_name\":\"tyler\",\"rotowire_id\":10192,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyler Varga\",\"sportradar_id\":\"822a3193-b9b8-4073-a691-9f35f6e0abdb\",\"pandascore_id\":null,\"yahoo_id\":28752,\"last_name\":\"Varga\",\"metadata\":null,\"college\":\"Yale\",\"high_school\":\"Cameron Heights\",\"depth_chart_order\":null,\"stats_id\":683250,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tylervarga\",\"birth_date\":\"1993-09-24\",\"espn_id\":2969294},\"1284\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lance\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1520632201229,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunbar\",\"depth_chart_position\":null,\"player_id\":\"1284\",\"birth_city\":null,\"fantasy_data_id\":14731,\"years_exp\":8,\"hashtag\":\"#LanceDunbar-NFL-FA-25\",\"search_first_name\":\"lance\",\"rotowire_id\":8086,\"rotoworld_id\":7798,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Lance Dunbar\",\"sportradar_id\":\"9f0f0495-b5b8-45c2-866b-02d9f96087f7\",\"pandascore_id\":null,\"yahoo_id\":26064,\"last_name\":\"Dunbar\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Haltom (TX)\",\"depth_chart_order\":null,\"stats_id\":468901,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'8\\\"\",\"search_full_name\":\"lancedunbar\",\"birth_date\":\"1990-01-25\",\"espn_id\":15369},\"5016\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034835\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601169007824,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":\"LB\",\"player_id\":\"5016\",\"birth_city\":null,\"fantasy_data_id\":19872,\"years_exp\":2,\"hashtag\":\"#MalikJefferson-NFL-LAC-46\",\"search_first_name\":\"malik\",\"rotowire_id\":12506,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1312,\"age\":24,\"full_name\":\"Malik Jefferson\",\"sportradar_id\":\"c3e579cc-6693-47c4-91a9-b688935ae048\",\"pandascore_id\":null,\"yahoo_id\":31048,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Poteet (TX)\",\"depth_chart_order\":1,\"stats_id\":867820,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malikjefferson\",\"birth_date\":\"1996-11-15\",\"espn_id\":3821576},\"282\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1520371804313,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"branch\",\"depth_chart_position\":null,\"player_id\":\"282\",\"birth_city\":null,\"fantasy_data_id\":7169,\"years_exp\":13,\"hashtag\":\"#AlanBranch-NFL-FA-97\",\"search_first_name\":\"alan\",\"rotowire_id\":5196,\"rotoworld_id\":4157,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Alan Branch\",\"sportradar_id\":\"eb02d9d3-87a1-4e50-9809-094946c73c46\",\"pandascore_id\":null,\"yahoo_id\":8287,\"last_name\":\"Branch\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Cibola (NM)\",\"depth_chart_order\":null,\"stats_id\":264843,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'6\\\"\",\"search_full_name\":\"alanbranch\",\"birth_date\":\"1984-12-29\",\"espn_id\":10477},\"6131\":{\"position\":\"LB\",\"injury_notes\":\"Wilson was injured in practice and a timetable for his return is uncertain.\",\"birth_country\":null,\"gsis_id\":\" 00-0035144\",\"first_name\":\"Mack\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606063817409,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"WLB\",\"player_id\":\"6131\",\"birth_city\":null,\"fantasy_data_id\":20994,\"years_exp\":1,\"hashtag\":\"#MackWilson-NFL-CLE-51\",\"search_first_name\":\"mack\",\"rotowire_id\":13609,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1626,\"age\":22,\"full_name\":\"Mack Wilson\",\"sportradar_id\":\"0790a8d6-5316-4204-91a6-8508ca48973b\",\"pandascore_id\":null,\"yahoo_id\":31987,\"last_name\":\"Wilson\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Alabama\",\"high_school\":\"Carver (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mackwilson\",\"birth_date\":\"1998-02-14\",\"espn_id\":4040983},\"4896\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1548183048021,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"callahan\",\"depth_chart_position\":null,\"player_id\":\"4896\",\"birth_city\":null,\"fantasy_data_id\":19794,\"years_exp\":0,\"hashtag\":\"#BrianCallahan-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":13074,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brian Callahan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Callahan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"briancallahan\",\"birth_date\":null,\"espn_id\":null},\"2719\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031799\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600113362349,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"FS\",\"player_id\":\"2719\",\"birth_city\":null,\"fantasy_data_id\":17187,\"years_exp\":5,\"hashtag\":\"#AnthonyHarris-NFL-MIN-41\",\"search_first_name\":\"anthony\",\"rotowire_id\":10389,\"rotoworld_id\":10629,\"active\":true,\"search_rank\":927,\"age\":29,\"full_name\":\"Anthony Harris\",\"sportradar_id\":\"a7413fb5-8d05-457f-a97f-504bee73a910\",\"pandascore_id\":null,\"yahoo_id\":28838,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Lloyd C. Bird (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonyharris\",\"birth_date\":\"1991-10-09\",\"espn_id\":2577814},\"387\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Knowshon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moreno\",\"depth_chart_position\":null,\"player_id\":\"387\",\"birth_city\":null,\"fantasy_data_id\":8699,\"years_exp\":6,\"hashtag\":\"#KnowshonMoreno-NFL-FA-28\",\"search_first_name\":\"knowshon\",\"rotowire_id\":null,\"rotoworld_id\":5163,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Knowshon Moreno\",\"sportradar_id\":\"d7ed32dc-b05b-4a90-b29c-7fcb4527d2c5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Moreno\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"knowshonmoreno\",\"birth_date\":\"1987-07-16\",\"espn_id\":12516},\"582\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"582\",\"birth_city\":null,\"fantasy_data_id\":11313,\"years_exp\":10,\"hashtag\":\"#RileyCooper-NFL-FA-14\",\"search_first_name\":\"riley\",\"rotowire_id\":6508,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Riley Cooper\",\"sportradar_id\":\"384dbb20-9765-4cfb-9384-8c062e14d47f\",\"pandascore_id\":null,\"yahoo_id\":24135,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Central Catholic (FL)\",\"depth_chart_order\":null,\"stats_id\":329772,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rileycooper\",\"birth_date\":\"1987-09-09\",\"espn_id\":13225},\"4824\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mitchel\",\"depth_chart_position\":null,\"player_id\":\"4824\",\"birth_city\":null,\"fantasy_data_id\":16942,\"years_exp\":0,\"hashtag\":\"#TevinMitchel-NFL-FA-37\",\"search_first_name\":\"tevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tevin Mitchel\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mitchel\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604741,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tevinmitchel\",\"birth_date\":\"1992-08-03\",\"espn_id\":2574530},\"3592\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032749\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567575624572,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3592\",\"birth_city\":null,\"fantasy_data_id\":18372,\"years_exp\":4,\"hashtag\":\"#IsaiahJohnson-NFL-FA-39\",\"search_first_name\":\"isaiah\",\"rotowire_id\":10708,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Isaiah Johnson\",\"sportradar_id\":\"d37758ce-9e3c-4e3c-bb7b-b8eaf1c58541\",\"pandascore_id\":null,\"yahoo_id\":29577,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605944,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"isaiahjohnson\",\"birth_date\":\"1992-10-14\",\"espn_id\":2570484},\"2962\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dorazio\",\"depth_chart_position\":null,\"player_id\":\"2962\",\"birth_city\":null,\"fantasy_data_id\":17444,\"years_exp\":0,\"hashtag\":\"#ZachDOrazio-NFL-FA-83\",\"search_first_name\":\"zach\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Zach D'Orazio\",\"sportradar_id\":\"b63144f8-2b0f-458c-91da-f974989c9a51\",\"pandascore_id\":null,\"yahoo_id\":29137,\"last_name\":\"D'Orazio\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":602932,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zachdorazio\",\"birth_date\":null,\"espn_id\":2574271},\"2754\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2754\",\"birth_city\":null,\"fantasy_data_id\":17222,\"years_exp\":0,\"hashtag\":\"#MikeJohnson-NFL-FA-84\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mike Johnson\",\"sportradar_id\":\"0fd9b49e-3023-4218-910d-a9e259631803\",\"pandascore_id\":null,\"yahoo_id\":29177,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608969,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikejohnson\",\"birth_date\":\"1991-09-10\",\"espn_id\":2574603},\"7077\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1587939836262,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bobenmoyer\",\"depth_chart_position\":null,\"player_id\":\"7077\",\"birth_city\":null,\"fantasy_data_id\":21364,\"years_exp\":0,\"hashtag\":\"#JacobBobenmoyer-NFL-DEN-46\",\"search_first_name\":\"jacob\",\"rotowire_id\":13699,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jacob Bobenmoyer\",\"sportradar_id\":\"04d09b84-6c99-4d99-a1f0-c30d3360ab52\",\"pandascore_id\":null,\"yahoo_id\":32666,\"last_name\":\"Bobenmoyer\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Northern Colorado\",\"high_school\":\"Cheyenne East (WY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jacobbobenmoyer\",\"birth_date\":\"1997-05-28\",\"espn_id\":3925443},\"6101\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peavy\",\"depth_chart_position\":null,\"player_id\":\"6101\",\"birth_city\":null,\"fantasy_data_id\":21082,\"years_exp\":0,\"hashtag\":\"#BrianPeavy-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brian Peavy\",\"sportradar_id\":\"f8669286-a701-4347-a419-633a37ba3757\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Peavy\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'8\\\"\",\"search_full_name\":\"brianpeavy\",\"birth_date\":null,\"espn_id\":null},\"5597\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034697\",\"first_name\":\"Brogan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1557850830183,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roback\",\"depth_chart_position\":null,\"player_id\":\"5597\",\"birth_city\":null,\"fantasy_data_id\":20595,\"years_exp\":2,\"hashtag\":\"#BroganRoback-NFL-FA-6\",\"search_first_name\":\"brogan\",\"rotowire_id\":13183,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brogan Roback\",\"sportradar_id\":\"c9d1cbdb-96b7-4264-9469-042f42591346\",\"pandascore_id\":null,\"yahoo_id\":31695,\"last_name\":\"Roback\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744039,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'3\\\"\",\"search_full_name\":\"broganroback\",\"birth_date\":\"1994-08-24\",\"espn_id\":3059773},\"750\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026307\",\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1536461702747,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"walden\",\"depth_chart_position\":null,\"player_id\":\"750\",\"birth_city\":null,\"fantasy_data_id\":12424,\"years_exp\":12,\"hashtag\":\"#ErikWalden-NFL-FA-56\",\"search_first_name\":\"erik\",\"rotowire_id\":5811,\"rotoworld_id\":4912,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Erik Walden\",\"sportradar_id\":\"171deb91-d41b-43d6-b531-9d4cf7fa2bb4\",\"pandascore_id\":null,\"yahoo_id\":8944,\"last_name\":\"Walden\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Dublin (GA)\",\"depth_chart_order\":null,\"stats_id\":227529,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"erikwalden\",\"birth_date\":\"1985-08-21\",\"espn_id\":11401},\"358\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026982\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596083112611,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"358\",\"birth_city\":null,\"fantasy_data_id\":8459,\"years_exp\":11,\"hashtag\":\"#AndreSmith-NFL-BAL-76\",\"search_first_name\":\"andre\",\"rotowire_id\":5992,\"rotoworld_id\":5099,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Andre Smith\",\"sportradar_id\":\"17a056be-39c0-4913-bacf-1663f3ac4a56\",\"pandascore_id\":null,\"yahoo_id\":9270,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Huffman (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andresmith\",\"birth_date\":\"1987-01-25\",\"espn_id\":12622},\"191\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Philip\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wheeler\",\"depth_chart_position\":null,\"player_id\":\"191\",\"birth_city\":null,\"fantasy_data_id\":4959,\"years_exp\":12,\"hashtag\":\"#PhilipWheeler-NFL-FA-57\",\"search_first_name\":\"philip\",\"rotowire_id\":5734,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Philip Wheeler\",\"sportradar_id\":\"2869f710-b3d8-4acd-a901-d844dcf62845\",\"pandascore_id\":null,\"yahoo_id\":8870,\"last_name\":\"Wheeler\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Shaw (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"philipwheeler\",\"birth_date\":\"1984-12-12\",\"espn_id\":11327},\"3661\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3661\",\"birth_city\":null,\"fantasy_data_id\":18459,\"years_exp\":1,\"hashtag\":\"#CoryJohnson-NFL-FA-60\",\"search_first_name\":\"cory\",\"rotowire_id\":11304,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cory Johnson\",\"sportradar_id\":\"34828cc7-77f0-4e1c-a5f0-5d61dec0cbac\",\"pandascore_id\":null,\"yahoo_id\":29645,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'2\\\"\",\"search_full_name\":\"coryjohnson\",\"birth_date\":\"1992-04-10\",\"espn_id\":3115434},\"2609\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"RJ\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"archer\",\"depth_chart_position\":null,\"player_id\":\"2609\",\"birth_city\":null,\"fantasy_data_id\":17077,\"years_exp\":1,\"hashtag\":\"#RJArcher-NFL-FA-6\",\"search_first_name\":\"rj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"RJ Archer\",\"sportradar_id\":\"508a1f6e-0731-471b-ba78-0ac9e2328757\",\"pandascore_id\":null,\"yahoo_id\":24539,\"last_name\":\"Archer\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":288460,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rjarcher\",\"birth_date\":\"1987-08-05\",\"espn_id\":13309},\"5962\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035287\",\"first_name\":\"KeeSean\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603763140610,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5962\",\"birth_city\":null,\"fantasy_data_id\":20835,\"years_exp\":1,\"hashtag\":\"#KeeSeanJohnson-NFL-ARI-19\",\"search_first_name\":\"keesean\",\"rotowire_id\":13628,\"rotoworld_id\":14195,\"active\":true,\"search_rank\":300,\"age\":24,\"full_name\":\"KeeSean Johnson\",\"sportradar_id\":\"7e8f4076-25e1-41e5-8e71-f70397a3729d\",\"pandascore_id\":null,\"yahoo_id\":32006,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Palo Alto (CA)\",\"depth_chart_order\":2,\"stats_id\":838443,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keeseanjohnson\",\"birth_date\":\"1996-10-09\",\"espn_id\":3124537},\"6219\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035145\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1600384217066,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"seibert\",\"depth_chart_position\":\"K\",\"player_id\":\"6219\",\"birth_city\":null,\"fantasy_data_id\":21114,\"years_exp\":1,\"hashtag\":\"#AustinSeibert-NFL-CIN-3\",\"search_first_name\":\"austin\",\"rotowire_id\":13812,\"rotoworld_id\":null,\"active\":true,\"search_rank\":391,\"age\":24,\"full_name\":\"Austin Seibert\",\"sportradar_id\":\"bd1f047a-978f-4643-b55f-f4d3b0719a4e\",\"pandascore_id\":null,\"yahoo_id\":32002,\"last_name\":\"Seibert\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Belleville West (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'9\\\"\",\"search_full_name\":\"austinseibert\",\"birth_date\":\"1996-11-15\",\"espn_id\":3821683},\"7322\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunlop\",\"depth_chart_position\":null,\"player_id\":\"7322\",\"birth_city\":null,\"fantasy_data_id\":22314,\"years_exp\":0,\"hashtag\":\"#JoshDunlop-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":15016,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Dunlop\",\"sportradar_id\":\"3fedf053-bd45-4c37-b9c9-2e0d60e2a0bd\",\"pandascore_id\":null,\"yahoo_id\":32979,\"last_name\":\"Dunlop\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'7\\\"\",\"search_full_name\":\"joshdunlop\",\"birth_date\":\"1997-04-10\",\"espn_id\":4245209},\"5463\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034200\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1588028163271,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"5463\",\"birth_city\":null,\"fantasy_data_id\":20561,\"years_exp\":2,\"hashtag\":\"#MarkThompson-NFL-FA-0\",\"search_first_name\":\"mark\",\"rotowire_id\":13108,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mark Thompson\",\"sportradar_id\":\"9ceb92c0-25d4-4e05-848f-1ddce1774410\",\"pandascore_id\":null,\"yahoo_id\":31423,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":910402,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"markthompson\",\"birth_date\":\"1994-12-09\",\"espn_id\":4057659},\"1936\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031113\",\"first_name\":\"Williams\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"poehls\",\"depth_chart_position\":null,\"player_id\":\"1936\",\"birth_city\":null,\"fantasy_data_id\":16176,\"years_exp\":6,\"hashtag\":\"#WilliamsPoehls-NFL-FA-75\",\"search_first_name\":\"williams\",\"rotowire_id\":10097,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Williams Poehls\",\"sportradar_id\":\"a2fbe350-af20-459a-b8b5-3c9a0bab06fe\",\"pandascore_id\":null,\"yahoo_id\":28217,\"last_name\":\"Poehls\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"334\",\"height\":\"6'8\\\"\",\"search_full_name\":\"williamspoehls\",\"birth_date\":\"1991-11-27\",\"espn_id\":17390},\"1700\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030196\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605719729925,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"heath\",\"depth_chart_position\":\"SS\",\"player_id\":\"1700\",\"birth_city\":null,\"fantasy_data_id\":15576,\"years_exp\":7,\"hashtag\":\"#JeffHeath-NFL-LV-38\",\"search_first_name\":\"jeff\",\"rotowire_id\":9064,\"rotoworld_id\":null,\"active\":true,\"search_rank\":765,\"age\":29,\"full_name\":\"Jeff Heath\",\"sportradar_id\":\"30a193de-13a3-4e22-a1a5-ce240f498280\",\"pandascore_id\":null,\"yahoo_id\":27345,\"last_name\":\"Heath\",\"metadata\":null,\"college\":\"Saginaw Valley State\",\"high_school\":\"Lake Orion (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeffheath\",\"birth_date\":\"1991-05-14\",\"espn_id\":16473},\"1855\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaquelle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"1855\",\"birth_city\":null,\"fantasy_data_id\":16064,\"years_exp\":3,\"hashtag\":\"#ShaquelleEvans-NFL-FA-0\",\"search_first_name\":\"shaquelle\",\"rotowire_id\":9473,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Shaquelle Evans\",\"sportradar_id\":\"73972c5e-0ee9-4147-b0da-d0fd0f78f2f9\",\"pandascore_id\":null,\"yahoo_id\":27643,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":508969,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"shaquelleevans\",\"birth_date\":\"1991-03-07\",\"espn_id\":16811},\"5121\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034419\",\"first_name\":\"Braxton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606101610095,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"berrios\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5121\",\"birth_city\":null,\"fantasy_data_id\":20038,\"years_exp\":2,\"hashtag\":\"#BraxtonBerrios-NFL-NYJ-10\",\"search_first_name\":\"braxton\",\"rotowire_id\":12771,\"rotoworld_id\":13308,\"active\":true,\"search_rank\":323,\"age\":25,\"full_name\":\"Braxton Berrios\",\"sportradar_id\":\"18f0bd30-1432-4fae-9cb4-c212bad6d0bb\",\"pandascore_id\":null,\"yahoo_id\":31180,\"last_name\":\"Berrios\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Leesville Road (NC)\",\"depth_chart_order\":2,\"stats_id\":820866,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"braxtonberrios\",\"birth_date\":\"1995-10-06\",\"espn_id\":3123075},\"2809\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Montell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garner\",\"depth_chart_position\":null,\"player_id\":\"2809\",\"birth_city\":null,\"fantasy_data_id\":17277,\"years_exp\":1,\"hashtag\":\"#MontellGarner-NFL-FA-40\",\"search_first_name\":\"montell\",\"rotowire_id\":10859,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Montell Garner\",\"sportradar_id\":\"923d0350-3152-4eec-8a5f-36256e7fbcd5\",\"pandascore_id\":null,\"yahoo_id\":28994,\"last_name\":\"Garner\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"montellgarner\",\"birth_date\":\"1993-02-12\",\"espn_id\":3045312},\"6729\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ajene\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"6729\",\"birth_city\":null,\"fantasy_data_id\":21443,\"years_exp\":1,\"hashtag\":\"#AjeneHarris-NFL-FA-33\",\"search_first_name\":\"ajene\",\"rotowire_id\":14341,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ajene Harris\",\"sportradar_id\":\"16748026-ba77-46f1-a661-8ba0fd56d069\",\"pandascore_id\":null,\"yahoo_id\":32641,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ajeneharris\",\"birth_date\":\"1996-06-01\",\"espn_id\":3120353},\"2559\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031968\",\"first_name\":\"E.J.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1511635202455,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bibbs\",\"depth_chart_position\":null,\"player_id\":\"2559\",\"birth_city\":null,\"fantasy_data_id\":17021,\"years_exp\":5,\"hashtag\":\"#EJBibbs-NFL-FA-45\",\"search_first_name\":\"ej\",\"rotowire_id\":10554,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"E.J. Bibbs\",\"sportradar_id\":\"7b5052ff-f939-4284-afcf-677ac31dc5ad\",\"pandascore_id\":null,\"yahoo_id\":29034,\"last_name\":\"Bibbs\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Bogan\",\"depth_chart_order\":null,\"stats_id\":733427,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ejbibbs\",\"birth_date\":\"1991-08-28\",\"espn_id\":3039924},\"6516\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035065\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1569029732704,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blackmar\",\"depth_chart_position\":null,\"player_id\":\"6516\",\"birth_city\":null,\"fantasy_data_id\":21433,\"years_exp\":1,\"hashtag\":\"#BlakeBlackmar-NFL-FA-63\",\"search_first_name\":\"blake\",\"rotowire_id\":14149,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Blake Blackmar\",\"sportradar_id\":\"f1ea77e8-6e8c-454c-b508-f06e5676a0bc\",\"pandascore_id\":null,\"yahoo_id\":32249,\"last_name\":\"Blackmar\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'5\\\"\",\"search_full_name\":\"blakeblackmar\",\"birth_date\":\"1995-08-03\",\"espn_id\":3128346},\"7120\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1587842441603,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gipson\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"7120\",\"birth_city\":null,\"fantasy_data_id\":21890,\"years_exp\":0,\"hashtag\":\"#TrevisGipson-NFL-CHI-99\",\"search_first_name\":\"trevis\",\"rotowire_id\":14680,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1816,\"age\":23,\"full_name\":\"Trevis Gipson\",\"sportradar_id\":\"2814f1e7-dca6-4bd9-80a9-9af480d10546\",\"pandascore_id\":null,\"yahoo_id\":32825,\"last_name\":\"Gipson\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":\"Cedar Hill (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'4\\\"\",\"search_full_name\":\"trevisgipson\",\"birth_date\":\"1997-06-13\",\"espn_id\":3917016},\"LAR\":{\"team\":\"LAR\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"LAR\",\"last_name\":\"Rams\",\"injury_status\":null,\"first_name\":\"Los Angeles\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"3710\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032553\",\"first_name\":\"Jace\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1537326003925,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"billingsley\",\"depth_chart_position\":null,\"player_id\":\"3710\",\"birth_city\":null,\"fantasy_data_id\":18516,\"years_exp\":4,\"hashtag\":\"#JaceBillingsley-NFL-FA-16\",\"search_first_name\":\"jace\",\"rotowire_id\":11330,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jace Billingsley\",\"sportradar_id\":\"ca72ac3c-9b47-498d-9be1-8d53c8295758\",\"pandascore_id\":null,\"yahoo_id\":29772,\"last_name\":\"Billingsley\",\"metadata\":null,\"college\":\"Eastern Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":753089,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jacebillingsley\",\"birth_date\":\"1993-05-17\",\"espn_id\":3060950},\"3951\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"berger\",\"depth_chart_position\":null,\"player_id\":\"3951\",\"birth_city\":null,\"fantasy_data_id\":18784,\"years_exp\":0,\"hashtag\":\"#JustinBerger-NFL-FA-8\",\"search_first_name\":\"justin\",\"rotowire_id\":11678,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Justin Berger\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30079,\"last_name\":\"Berger\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinberger\",\"birth_date\":\"1991-11-22\",\"espn_id\":null},\"1978\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"1978\",\"birth_city\":null,\"fantasy_data_id\":16242,\"years_exp\":6,\"hashtag\":\"#TonyWashington-NFL-FA-17\",\"search_first_name\":\"tony\",\"rotowire_id\":10115,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tony Washington\",\"sportradar_id\":\"a8c1f913-dfa3-4616-a11f-2b56f93c47cc\",\"pandascore_id\":null,\"yahoo_id\":27918,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"T.W. Andrews (NC)\",\"depth_chart_order\":null,\"stats_id\":504371,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tonywashington\",\"birth_date\":\"1990-10-18\",\"espn_id\":17048},\"5989\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035247\",\"first_name\":\"Trysten\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603145720244,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"5989\",\"birth_city\":null,\"fantasy_data_id\":20803,\"years_exp\":1,\"hashtag\":\"#TrystenHill-NFL-DAL-72\",\"search_first_name\":\"trysten\",\"rotowire_id\":13514,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1550,\"age\":22,\"full_name\":\"Trysten Hill\",\"sportradar_id\":\"c6c5ae5d-59c6-437d-9768-34e377fddcec\",\"pandascore_id\":null,\"yahoo_id\":31890,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Suwannee (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trystenhill\",\"birth_date\":\"1998-03-25\",\"espn_id\":4042141},\"1571\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgee\",\"depth_chart_position\":null,\"player_id\":\"1571\",\"birth_city\":null,\"fantasy_data_id\":15219,\"years_exp\":7,\"hashtag\":\"#BrandonMcGee-NFL-FA-42\",\"search_first_name\":\"brandon\",\"rotowire_id\":8973,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brandon McGee\",\"sportradar_id\":\"244c313a-5a45-4d95-9817-bd9fef8889e7\",\"pandascore_id\":null,\"yahoo_id\":26772,\"last_name\":\"McGee\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Plantation (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandonmcgee\",\"birth_date\":\"1990-12-11\",\"espn_id\":15949},\"2633\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031531\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1580253960019,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2633\",\"birth_city\":null,\"fantasy_data_id\":17101,\"years_exp\":5,\"hashtag\":\"#TreyWilliams-NFL-FA-34\",\"search_first_name\":\"trey\",\"rotowire_id\":10191,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Trey Williams\",\"sportradar_id\":\"b1e1f2ed-e978-4fe2-8a4f-81c25e722bdb\",\"pandascore_id\":null,\"yahoo_id\":28865,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Dekaney (TX)\",\"depth_chart_order\":null,\"stats_id\":690774,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'7\\\"\",\"search_full_name\":\"treywilliams\",\"birth_date\":\"1992-12-11\",\"espn_id\":2972282},\"4329\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"muller\",\"depth_chart_position\":null,\"player_id\":\"4329\",\"birth_city\":null,\"fantasy_data_id\":19183,\"years_exp\":0,\"hashtag\":\"#ChrisMuller-NFL-DEN-62\",\"search_first_name\":\"chris\",\"rotowire_id\":12279,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chris Muller\",\"sportradar_id\":\"66d4f0d2-76db-4b27-90d6-565bb635abb4\",\"pandascore_id\":null,\"yahoo_id\":30530,\"last_name\":\"Muller\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chrismuller\",\"birth_date\":\"1993-10-29\",\"espn_id\":2982821},\"5257\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034177\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599585948683,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boyle\",\"depth_chart_position\":\"QB\",\"player_id\":\"5257\",\"birth_city\":null,\"fantasy_data_id\":20283,\"years_exp\":2,\"hashtag\":\"#TimBoyle-NFL-GB-8\",\"search_first_name\":\"tim\",\"rotowire_id\":13109,\"rotoworld_id\":null,\"active\":true,\"search_rank\":587,\"age\":26,\"full_name\":\"Tim Boyle\",\"sportradar_id\":\"d897b70f-29d9-477e-a72a-c9bfbadb70d3\",\"pandascore_id\":null,\"yahoo_id\":31431,\"last_name\":\"Boyle\",\"metadata\":null,\"college\":\"Eastern Kentucky\",\"high_school\":\"Xavier (CT)\",\"depth_chart_order\":2,\"stats_id\":741447,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'4\\\"\",\"search_full_name\":\"timboyle\",\"birth_date\":\"1994-10-03\",\"espn_id\":3045169},\"3242\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033118\",\"first_name\":\"Kenyan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606504204478,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"drake\",\"depth_chart_position\":\"RB\",\"player_id\":\"3242\",\"birth_city\":null,\"fantasy_data_id\":18003,\"years_exp\":4,\"hashtag\":\"#KenyanDrake-NFL-ARI-41\",\"search_first_name\":\"kenyan\",\"rotowire_id\":11002,\"rotoworld_id\":11263,\"active\":true,\"search_rank\":15,\"age\":26,\"full_name\":\"Kenyan Drake\",\"sportradar_id\":\"a0b93053-d349-4dd1-a840-24577102699b\",\"pandascore_id\":null,\"yahoo_id\":29307,\"last_name\":\"Drake\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Hillgrove (GA)\",\"depth_chart_order\":1,\"stats_id\":694588,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kenyandrake\",\"birth_date\":\"1994-01-26\",\"espn_id\":2979843},\"5727\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034723\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605410161978,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thurman\",\"depth_chart_position\":null,\"player_id\":\"5727\",\"birth_city\":null,\"fantasy_data_id\":20637,\"years_exp\":2,\"hashtag\":\"#NickThurman-NFL-NE-92\",\"search_first_name\":\"nick\",\"rotowire_id\":13320,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1501,\"age\":25,\"full_name\":\"Nick Thurman\",\"sportradar_id\":\"ded1a577-51cc-4f13-8b79-4f4c09655f44\",\"pandascore_id\":null,\"yahoo_id\":31726,\"last_name\":\"Thurman\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Houston\",\"high_school\":\"Lake Highlands (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickthurman\",\"birth_date\":\"1995-06-12\",\"espn_id\":3040031},\"979\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028128\",\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584402309858,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"FS\",\"player_id\":\"979\",\"birth_city\":null,\"fantasy_data_id\":13442,\"years_exp\":9,\"hashtag\":\"#ColinJones-NFL-FA-42\",\"search_first_name\":\"colin\",\"rotowire_id\":7542,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Colin Jones\",\"sportradar_id\":\"fc506583-7edf-4e40-8047-83f60bea67a2\",\"pandascore_id\":null,\"yahoo_id\":24977,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Bridgeport (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"colinjones\",\"birth_date\":\"1987-10-27\",\"espn_id\":14117},\"2051\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tenny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535066410234,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palepoi\",\"depth_chart_position\":null,\"player_id\":\"2051\",\"birth_city\":null,\"fantasy_data_id\":16346,\"years_exp\":6,\"hashtag\":\"#TennyPalepoi-NFL-FA-91\",\"search_first_name\":\"tenny\",\"rotowire_id\":9647,\"rotoworld_id\":9743,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tenny Palepoi\",\"sportradar_id\":\"e63a066c-48f4-462f-ab71-c642f1e083b6\",\"pandascore_id\":null,\"yahoo_id\":27853,\"last_name\":\"Palepoi\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652030,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tennypalepoi\",\"birth_date\":\"1990-12-19\",\"espn_id\":17024},\"7189\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Delrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"abrams\",\"depth_chart_position\":null,\"player_id\":\"7189\",\"birth_city\":null,\"fantasy_data_id\":22191,\"years_exp\":0,\"hashtag\":\"#DelrickAbrams-NFL-ATL-42\",\"search_first_name\":\"delrick\",\"rotowire_id\":14993,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Delrick Abrams\",\"sportradar_id\":\"2899f9bf-018a-4c91-8fe8-c42a5b6c12c4\",\"pandascore_id\":null,\"yahoo_id\":33042,\"last_name\":\"Abrams\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Varnado (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'3\\\"\",\"search_full_name\":\"delrickabrams\",\"birth_date\":\"1997-04-06\",\"espn_id\":4360643},\"5717\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034689\",\"first_name\":\"Manase\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1536257101907,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hungalu\",\"depth_chart_position\":null,\"player_id\":\"5717\",\"birth_city\":null,\"fantasy_data_id\":20623,\"years_exp\":2,\"hashtag\":\"#ManaseHungalu-NFL-FA-40\",\"search_first_name\":\"manase\",\"rotowire_id\":13202,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Manase Hungalu\",\"sportradar_id\":\"4a1e3f81-112e-4357-b3a4-a7cb7349bd1a\",\"pandascore_id\":null,\"yahoo_id\":31696,\"last_name\":\"Hungalu\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"manasehungalu\",\"birth_date\":\"1995-01-04\",\"espn_id\":3056487},\"390\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyson\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"390\",\"birth_city\":null,\"fantasy_data_id\":8739,\"years_exp\":11,\"hashtag\":\"#TysonJackson-NFL-FA-94\",\"search_first_name\":\"tyson\",\"rotowire_id\":6057,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Tyson Jackson\",\"sportradar_id\":\"97bc1bb9-a043-4226-95ad-26f3f0338206\",\"pandascore_id\":null,\"yahoo_id\":9267,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"West St. John (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tysonjackson\",\"birth_date\":\"1986-06-06\",\"espn_id\":12435},\"4133\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033927\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606278956400,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"FS\",\"player_id\":\"4133\",\"birth_city\":null,\"fantasy_data_id\":18979,\"years_exp\":3,\"hashtag\":\"#JohnJohnson-NFL-LAR-43\",\"search_first_name\":\"john\",\"rotowire_id\":11997,\"rotoworld_id\":12303,\"active\":true,\"search_rank\":1163,\"age\":24,\"full_name\":\"John Johnson\",\"sportradar_id\":\"8c824157-eb33-4378-bf19-6c738a186ceb\",\"pandascore_id\":null,\"yahoo_id\":30204,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Northwestern (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnjohnson\",\"birth_date\":\"1995-12-19\",\"espn_id\":3046292},\"5254\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1553119812550,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5254\",\"birth_city\":null,\"fantasy_data_id\":20273,\"years_exp\":2,\"hashtag\":\"#JimmyWilliams-NFL-FA-85\",\"search_first_name\":\"jimmy\",\"rotowire_id\":13095,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jimmy Williams\",\"sportradar_id\":\"dfcdc8a4-3e87-4ebf-88be-df271f2810fc\",\"pandascore_id\":null,\"yahoo_id\":31383,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":749626,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jimmywilliams\",\"birth_date\":\"1995-02-24\",\"espn_id\":3059733},\"4323\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033258\",\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606526729448,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":\"TE\",\"player_id\":\"4323\",\"birth_city\":null,\"fantasy_data_id\":19176,\"years_exp\":3,\"hashtag\":\"#DarrellDaniels-NFL-ARI-81\",\"search_first_name\":\"darrell\",\"rotowire_id\":11890,\"rotoworld_id\":null,\"active\":true,\"search_rank\":579,\"age\":26,\"full_name\":\"Darrell Daniels\",\"sportradar_id\":\"7574eb56-a34a-419e-9682-c4788cfe2019\",\"pandascore_id\":null,\"yahoo_id\":30523,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Freedom (CA)\",\"depth_chart_order\":4,\"stats_id\":747895,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'3\\\"\",\"search_full_name\":\"darrelldaniels\",\"birth_date\":\"1994-11-22\",\"espn_id\":3052166},\"2771\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":null,\"player_id\":\"2771\",\"birth_city\":null,\"fantasy_data_id\":17239,\"years_exp\":0,\"hashtag\":\"#JimmieHunt-NFL-FA-82\",\"search_first_name\":\"jimmie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jimmie Hunt\",\"sportradar_id\":\"efe5047c-a438-4b28-8778-df24f1cb67bd\",\"pandascore_id\":null,\"yahoo_id\":28929,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553234,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jimmiehunt\",\"birth_date\":\"1990-09-04\",\"espn_id\":2514119},\"1309\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrion\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weems\",\"depth_chart_position\":null,\"player_id\":\"1309\",\"birth_city\":null,\"fantasy_data_id\":14790,\"years_exp\":8,\"hashtag\":\"#DarrionWeems-NFL-FA-77\",\"search_first_name\":\"darrion\",\"rotowire_id\":8595,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Darrion Weems\",\"sportradar_id\":\"2768da89-2265-4e20-aafc-0261fca287bc\",\"pandascore_id\":null,\"yahoo_id\":26313,\"last_name\":\"Weems\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Taft (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"darrionweems\",\"birth_date\":\"1988-09-11\",\"espn_id\":15332},\"200\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024221\",\"first_name\":\"Vernon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1580678429304,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"200\",\"birth_city\":null,\"fantasy_data_id\":5084,\"years_exp\":14,\"hashtag\":\"#VernonDavis-NFL-FA-85\",\"search_first_name\":\"vernon\",\"rotowire_id\":4732,\"rotoworld_id\":3638,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Vernon Davis\",\"sportradar_id\":\"0a95e792-6455-4927-9539-f95fa7f41fbb\",\"pandascore_id\":null,\"yahoo_id\":7755,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Dunbar (DC)\",\"depth_chart_order\":null,\"stats_id\":215595,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vernondavis\",\"birth_date\":\"1984-01-31\",\"espn_id\":9592},\"4745\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daquan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":null,\"player_id\":\"4745\",\"birth_city\":null,\"fantasy_data_id\":19663,\"years_exp\":2,\"hashtag\":\"#DaquanHolmes-NFL-FA-38\",\"search_first_name\":\"daquan\",\"rotowire_id\":12281,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Daquan Holmes\",\"sportradar_id\":\"8a32fe5a-7a1d-4b02-b156-569dab6dc221\",\"pandascore_id\":null,\"yahoo_id\":30895,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"American International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"daquanholmes\",\"birth_date\":\"1994-10-30\",\"espn_id\":3145559},\"2455\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarvis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harrison\",\"depth_chart_position\":null,\"player_id\":\"2455\",\"birth_city\":null,\"fantasy_data_id\":16912,\"years_exp\":5,\"hashtag\":\"#JarvisHarrison-NFL-FA-60\",\"search_first_name\":\"jarvis\",\"rotowire_id\":10266,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jarvis Harrison\",\"sportradar_id\":\"39362bc1-f3d0-43a1-9a20-067d63b81429\",\"pandascore_id\":null,\"yahoo_id\":28540,\"last_name\":\"Harrison\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Navasota (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jarvisharrison\",\"birth_date\":\"1991-12-25\",\"espn_id\":2511809},\"266\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026283\",\"first_name\":\"Orlando\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1571697314798,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scandrick\",\"depth_chart_position\":\"RCB\",\"player_id\":\"266\",\"birth_city\":null,\"fantasy_data_id\":6687,\"years_exp\":12,\"hashtag\":\"#OrlandoScandrick-NFL-FA-38\",\"search_first_name\":\"orlando\",\"rotowire_id\":5810,\"rotoworld_id\":4814,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Orlando Scandrick\",\"sportradar_id\":\"85a051d3-3f76-411d-a59e-82d04a971c3a\",\"pandascore_id\":null,\"yahoo_id\":8909,\"last_name\":\"Scandrick\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":300477,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'10\\\"\",\"search_full_name\":\"orlandoscandrick\",\"birth_date\":\"1987-02-10\",\"espn_id\":11366},\"6308\":{\"position\":\"TE\",\"injury_notes\":\"Bunting was injured during practice at training camp.\",\"birth_country\":null,\"gsis_id\":\" 00-0035067\",\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599007533931,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bunting\",\"depth_chart_position\":null,\"player_id\":\"6308\",\"birth_city\":null,\"fantasy_data_id\":21208,\"years_exp\":1,\"hashtag\":\"#IanBunting-NFL-FA-0\",\"search_first_name\":\"ian\",\"rotowire_id\":14132,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ian Bunting\",\"sportradar_id\":\"38b32cb2-42a0-44ce-87ae-bf16c338b3af\",\"pandascore_id\":null,\"yahoo_id\":32250,\"last_name\":\"Bunting\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830692,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'7\\\"\",\"search_full_name\":\"ianbunting\",\"birth_date\":\"1996-02-10\",\"espn_id\":3115981},\"1588\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moody\",\"depth_chart_position\":null,\"player_id\":\"1588\",\"birth_city\":null,\"fantasy_data_id\":15240,\"years_exp\":7,\"hashtag\":\"#NickMoody-NFL-FA-55\",\"search_first_name\":\"nick\",\"rotowire_id\":8945,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Nick Moody\",\"sportradar_id\":\"672d1cf7-7c1a-44ac-b120-2621ce0006f8\",\"pandascore_id\":null,\"yahoo_id\":26803,\"last_name\":\"Moody\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Roman Catholic (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickmoody\",\"birth_date\":\"1990-01-29\",\"espn_id\":15933},\"2343\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031935\",\"first_name\":\"Preston\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603640706703,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"2343\",\"birth_city\":null,\"fantasy_data_id\":16799,\"years_exp\":5,\"hashtag\":\"#PrestonSmith-NFL-GB-91\",\"search_first_name\":\"preston\",\"rotowire_id\":10316,\"rotoworld_id\":10458,\"active\":true,\"search_rank\":864,\"age\":28,\"full_name\":\"Preston Smith\",\"sportradar_id\":\"ede260be-5ae6-4a06-887b-e4a130932705\",\"pandascore_id\":null,\"yahoo_id\":28426,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"prestonsmith\",\"birth_date\":\"1992-11-17\",\"espn_id\":2577446},\"2627\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031676\",\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1525196401388,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mbu\",\"depth_chart_position\":null,\"player_id\":\"2627\",\"birth_city\":null,\"fantasy_data_id\":17095,\"years_exp\":5,\"hashtag\":\"#JoeyMbu-NFL-FA-94\",\"search_first_name\":\"joey\",\"rotowire_id\":10720,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joey Mbu\",\"sportradar_id\":\"c280300e-a61d-4a19-aa95-ab100d5759e7\",\"pandascore_id\":null,\"yahoo_id\":28826,\"last_name\":\"Mbu\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Foster (TX)\",\"depth_chart_order\":null,\"stats_id\":609756,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joeymbu\",\"birth_date\":\"1993-03-28\",\"espn_id\":2575583},\"4557\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Freddie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stevenson\",\"depth_chart_position\":null,\"player_id\":\"4557\",\"birth_city\":null,\"fantasy_data_id\":19439,\"years_exp\":2,\"hashtag\":\"#FreddieStevenson-NFL-FA-43\",\"search_first_name\":\"freddie\",\"rotowire_id\":11774,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Freddie Stevenson\",\"sportradar_id\":\"086bebfe-45d7-4c8b-878f-c3fbc84996c5\",\"pandascore_id\":null,\"yahoo_id\":30728,\"last_name\":\"Stevenson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733698,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'0\\\"\",\"search_full_name\":\"freddiestevenson\",\"birth_date\":\"1995-04-12\",\"espn_id\":3045375},\"7450\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nasir\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596250220323,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":null,\"player_id\":\"7450\",\"birth_city\":null,\"fantasy_data_id\":22428,\"years_exp\":0,\"hashtag\":\"#NasirPlayer-NFL-FA-0\",\"search_first_name\":\"nasir\",\"rotowire_id\":14918,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nasir Player\",\"sportradar_id\":\"13ef89d6-2e3d-4b8d-9a67-d984394e38b7\",\"pandascore_id\":null,\"yahoo_id\":33276,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"East Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nasirplayer\",\"birth_date\":\"1997-03-29\",\"espn_id\":null},\"3266\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032770\",\"first_name\":\"Tavon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605028512934,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"3266\",\"birth_city\":null,\"fantasy_data_id\":18027,\"years_exp\":4,\"hashtag\":\"#TavonYoung-NFL-BAL-25\",\"search_first_name\":\"tavon\",\"rotowire_id\":10889,\"rotoworld_id\":11426,\"active\":true,\"search_rank\":998,\"age\":26,\"full_name\":\"Tavon Young\",\"sportradar_id\":\"1880777d-9908-4a32-a492-264b4fec967d\",\"pandascore_id\":null,\"yahoo_id\":29338,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Potomac (MD)\",\"depth_chart_order\":null,\"stats_id\":692390,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"tavonyoung\",\"birth_date\":\"1994-03-14\",\"espn_id\":2976244},\"6787\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jedrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600385117320,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wills\",\"depth_chart_position\":\"LT\",\"player_id\":\"6787\",\"birth_city\":null,\"fantasy_data_id\":22024,\"years_exp\":0,\"hashtag\":\"#JedrickWills-NFL-CLE-71\",\"search_first_name\":\"jedrick\",\"rotowire_id\":14456,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Jedrick Wills\",\"sportradar_id\":\"543deccb-0e8d-42ac-b213-dfd458fc0602\",\"pandascore_id\":null,\"yahoo_id\":32680,\"last_name\":\"Wills\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Lafayette (KY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jedrickwills\",\"birth_date\":\"1999-05-17\",\"espn_id\":4241482},\"4982\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034843\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604086839484,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"4982\",\"birth_city\":null,\"fantasy_data_id\":19847,\"years_exp\":2,\"hashtag\":\"#MikeHughes-NFL-MIN-21\",\"search_first_name\":\"mike\",\"rotowire_id\":12590,\"rotoworld_id\":13131,\"active\":true,\"search_rank\":1301,\"age\":23,\"full_name\":\"Mike Hughes\",\"sportradar_id\":\"1f181c47-ad84-4758-a295-4c4f5c56120f\",\"pandascore_id\":null,\"yahoo_id\":31000,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"New Bern (NC)\",\"depth_chart_order\":null,\"stats_id\":866055,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikehughes\",\"birth_date\":\"1997-02-11\",\"espn_id\":3895841},\"6708\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035682\",\"first_name\":\"Kalani\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vakameilalo\",\"depth_chart_position\":null,\"player_id\":\"6708\",\"birth_city\":null,\"fantasy_data_id\":21626,\"years_exp\":1,\"hashtag\":\"#KalaniVakameilalo-NFL-FA-78\",\"search_first_name\":\"kalani\",\"rotowire_id\":14324,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kalani Vakameilalo\",\"sportradar_id\":\"d79d84b3-cef7-44b9-8202-ba92d4d32641\",\"pandascore_id\":null,\"yahoo_id\":32619,\"last_name\":\"Vakameilalo\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kalanivakameilalo\",\"birth_date\":\"1996-04-30\",\"espn_id\":3127341},\"5475\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034128\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"OL\"],\"news_updated\":1596333312440,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wozniak\",\"depth_chart_position\":null,\"player_id\":\"5475\",\"birth_city\":null,\"fantasy_data_id\":20440,\"years_exp\":2,\"hashtag\":\"#NateWozniak-NFL-NYG-68\",\"search_first_name\":\"nate\",\"rotowire_id\":13739,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nate Wozniak\",\"sportradar_id\":\"e69d4c5b-930b-481b-a81f-aea5c22ff3ae\",\"pandascore_id\":null,\"yahoo_id\":31416,\"last_name\":\"Wozniak\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Center Grove (IN)\",\"depth_chart_order\":null,\"stats_id\":728269,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'10\\\"\",\"search_full_name\":\"natewozniak\",\"birth_date\":\"1994-08-30\",\"espn_id\":3040210},\"3685\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032666\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kling\",\"depth_chart_position\":null,\"player_id\":\"3685\",\"birth_city\":null,\"fantasy_data_id\":18485,\"years_exp\":4,\"hashtag\":\"#JohnKling-NFL-FA-63\",\"search_first_name\":\"john\",\"rotowire_id\":11346,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"John Kling\",\"sportradar_id\":\"998fb46a-9579-479c-be9d-9ad9478b6000\",\"pandascore_id\":null,\"yahoo_id\":29919,\"last_name\":\"Kling\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"johnkling\",\"birth_date\":\"1993-07-09\",\"espn_id\":2574396},\"1264\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029597\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606247753821,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tucker\",\"depth_chart_position\":\"K\",\"player_id\":\"1264\",\"birth_city\":null,\"fantasy_data_id\":14688,\"years_exp\":8,\"hashtag\":\"#JustinTucker-NFL-BAL-9\",\"search_first_name\":\"justin\",\"rotowire_id\":8398,\"rotoworld_id\":8241,\"active\":true,\"search_rank\":144,\"age\":31,\"full_name\":\"Justin Tucker\",\"sportradar_id\":\"20a0bad2-d530-4ff4-a2df-5c0a21a1f5db\",\"pandascore_id\":null,\"yahoo_id\":26534,\"last_name\":\"Tucker\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Westlake (TX)\",\"depth_chart_order\":1,\"stats_id\":448132,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justintucker\",\"birth_date\":\"1989-11-21\",\"espn_id\":15683},\"3143\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1540837803790,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"haley\",\"depth_chart_position\":null,\"player_id\":\"3143\",\"birth_city\":null,\"fantasy_data_id\":17898,\"years_exp\":0,\"hashtag\":\"#ToddHaley-NFL-FA-0\",\"search_first_name\":\"todd\",\"rotowire_id\":null,\"rotoworld_id\":9301,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Todd Haley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Haley\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"toddhaley\",\"birth_date\":null,\"espn_id\":null},\"7255\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596159320432,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marino\",\"depth_chart_position\":null,\"player_id\":\"7255\",\"birth_city\":null,\"fantasy_data_id\":22254,\"years_exp\":0,\"hashtag\":\"#GarrettMarino-NFL-FA-0\",\"search_first_name\":\"garrett\",\"rotowire_id\":14601,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Garrett Marino\",\"sportradar_id\":\"8ab41eba-498b-40ae-a02f-2f004ea369ca\",\"pandascore_id\":null,\"yahoo_id\":33102,\"last_name\":\"Marino\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"garrettmarino\",\"birth_date\":\"1994-08-03\",\"espn_id\":null},\"843\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027969\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604527228257,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"heyward\",\"depth_chart_position\":\"DT\",\"player_id\":\"843\",\"birth_city\":null,\"fantasy_data_id\":12902,\"years_exp\":9,\"hashtag\":\"#CameronHeyward-NFL-PIT-97\",\"search_first_name\":\"cameron\",\"rotowire_id\":7449,\"rotoworld_id\":6510,\"active\":true,\"search_rank\":631,\"age\":31,\"full_name\":\"Cameron Heyward\",\"sportradar_id\":\"9779acc7-ed88-4a16-b78d-230ace9ec3eb\",\"pandascore_id\":null,\"yahoo_id\":24818,\"last_name\":\"Heyward\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Ohio State\",\"high_school\":\"Peachtree Ridge (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronheyward\",\"birth_date\":\"1989-05-06\",\"espn_id\":13977},\"794\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028497\",\"first_name\":\"Kamar\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539960304942,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"aiken\",\"depth_chart_position\":null,\"player_id\":\"794\",\"birth_city\":null,\"fantasy_data_id\":12722,\"years_exp\":9,\"hashtag\":\"#KamarAiken-NFL-FA-81\",\"search_first_name\":\"kamar\",\"rotowire_id\":8000,\"rotoworld_id\":7097,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kamar Aiken\",\"sportradar_id\":\"3058b3c8-0fa3-4bd4-9df9-6a56a7b4af88\",\"pandascore_id\":null,\"yahoo_id\":25379,\"last_name\":\"Aiken\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Chaminade-Madonna (FL)\",\"depth_chart_order\":null,\"stats_id\":400317,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kamaraiken\",\"birth_date\":\"1989-05-30\",\"espn_id\":14583},\"2034\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031367\",\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605470712696,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RG\",\"player_id\":\"2034\",\"birth_city\":null,\"fantasy_data_id\":16320,\"years_exp\":6,\"hashtag\":\"#GabeJackson-NFL-LV-66\",\"search_first_name\":\"gabe\",\"rotowire_id\":9437,\"rotoworld_id\":9645,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Gabe Jackson\",\"sportradar_id\":\"1a1830c2-9717-4af0-82f0-7d7b254764f1\",\"pandascore_id\":null,\"yahoo_id\":27609,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Amite County (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"336\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gabejackson\",\"birth_date\":\"1991-07-12\",\"espn_id\":16753},\"4159\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033786\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600831523886,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"glasgow\",\"depth_chart_position\":null,\"player_id\":\"4159\",\"birth_city\":null,\"fantasy_data_id\":19005,\"years_exp\":3,\"hashtag\":\"#RyanGlasgow-NFL-NO-95\",\"search_first_name\":\"ryan\",\"rotowire_id\":11915,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1174,\"age\":27,\"full_name\":\"Ryan Glasgow\",\"sportradar_id\":\"40d6eeb6-cd53-474d-97f4-a00fed5b4d64\",\"pandascore_id\":null,\"yahoo_id\":30251,\"last_name\":\"Glasgow\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Marmion Academy (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ryanglasgow\",\"birth_date\":\"1993-09-30\",\"espn_id\":2977635},\"4991\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034347\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602716754109,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":null,\"player_id\":\"4991\",\"birth_city\":null,\"fantasy_data_id\":19855,\"years_exp\":2,\"hashtag\":\"#JamesDaniels-NFL-CHI-68\",\"search_first_name\":\"james\",\"rotowire_id\":12565,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"James Daniels\",\"sportradar_id\":\"70d87779-f25f-4dff-8c5d-82b818090c57\",\"pandascore_id\":null,\"yahoo_id\":31009,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Warren G. Harding (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamesdaniels\",\"birth_date\":\"1997-09-13\",\"espn_id\":3894849},\"7279\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeMichael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606171215093,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7279\",\"birth_city\":null,\"fantasy_data_id\":22276,\"years_exp\":0,\"hashtag\":\"#DeMichaelHarris-NFL-IND-12\",\"search_first_name\":\"demichael\",\"rotowire_id\":15020,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"DeMichael Harris\",\"sportradar_id\":\"18a3fb57-3220-4fa3-af42-20e179ec896f\",\"pandascore_id\":null,\"yahoo_id\":33215,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"St. Aloysius (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"demichaelharris\",\"birth_date\":\"1998-07-12\",\"espn_id\":4374496},\"1056\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Asa\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1507677002003,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"1056\",\"birth_city\":null,\"fantasy_data_id\":13841,\"years_exp\":8,\"hashtag\":\"#AsaJackson-NFL-FA-30\",\"search_first_name\":\"asa\",\"rotowire_id\":8327,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Asa Jackson\",\"sportradar_id\":\"5184e11e-cf85-43b3-a027-0a08c03d8545\",\"pandascore_id\":null,\"yahoo_id\":25879,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Cal Poly\",\"high_school\":\"Christian Brothers (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"asajackson\",\"birth_date\":\"1989-12-02\",\"espn_id\":15081},\"4435\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033455\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606146612834,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"firkser\",\"depth_chart_position\":\"TE\",\"player_id\":\"4435\",\"birth_city\":null,\"fantasy_data_id\":19296,\"years_exp\":3,\"hashtag\":\"#AnthonyFirkser-NFL-TEN-86\",\"search_first_name\":\"anthony\",\"rotowire_id\":12235,\"rotoworld_id\":null,\"active\":true,\"search_rank\":392,\"age\":25,\"full_name\":\"Anthony Firkser\",\"sportradar_id\":\"b0719e3d-199b-46e5-a2b4-1091f6fd5c0d\",\"pandascore_id\":null,\"yahoo_id\":30571,\"last_name\":\"Firkser\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Harvard\",\"high_school\":\"Manalapan (NJ)\",\"depth_chart_order\":2,\"stats_id\":767297,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'2\\\"\",\"search_full_name\":\"anthonyfirkser\",\"birth_date\":\"1995-02-19\",\"espn_id\":3049698},\"1446\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"1446\",\"birth_city\":null,\"fantasy_data_id\":15015,\"years_exp\":7,\"hashtag\":\"#JeremyHarris-NFL-FA-37\",\"search_first_name\":\"jeremy\",\"rotowire_id\":8958,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jeremy Harris\",\"sportradar_id\":\"cdf257ea-8992-481b-9ea5-5ab308cafe4c\",\"pandascore_id\":null,\"yahoo_id\":26831,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":\"Dorsey (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeremyharris\",\"birth_date\":\"1991-04-26\",\"espn_id\":16027},\"3805\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032835\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1604952627758,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"K\",\"player_id\":\"3805\",\"birth_city\":null,\"fantasy_data_id\":18619,\"years_exp\":4,\"hashtag\":\"#JonBrown-NFL-JAX-1\",\"search_first_name\":\"jon\",\"rotowire_id\":11738,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1101,\"age\":27,\"full_name\":\"Jon Brown\",\"sportradar_id\":\"1a59e864-5282-4d94-b678-8537d524e181\",\"pandascore_id\":null,\"yahoo_id\":29915,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Clinton (MS)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonbrown\",\"birth_date\":\"1992-12-07\",\"espn_id\":3135726},\"2562\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1525301701306,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crockett\",\"depth_chart_position\":null,\"player_id\":\"2562\",\"birth_city\":null,\"fantasy_data_id\":17026,\"years_exp\":5,\"hashtag\":\"#JohnCrockett-NFL-FA-43\",\"search_first_name\":\"john\",\"rotowire_id\":10193,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"John Crockett\",\"sportradar_id\":\"e269403c-ae69-415d-a606-b5cfb030965b\",\"pandascore_id\":null,\"yahoo_id\":28922,\"last_name\":\"Crockett\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Totino-Grace\",\"depth_chart_order\":null,\"stats_id\":704273,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johncrockett\",\"birth_date\":\"1992-02-16\",\"espn_id\":2986739},\"3273\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032400\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1553370958780,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":null,\"player_id\":\"3273\",\"birth_city\":null,\"fantasy_data_id\":18034,\"years_exp\":4,\"hashtag\":\"#MalcolmMitchell-NFL-FA-19\",\"search_first_name\":\"malcolm\",\"rotowire_id\":10991,\"rotoworld_id\":11312,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Malcolm Mitchell\",\"sportradar_id\":\"c3ed9a9b-3e7d-4533-8224-a0b89adcd9da\",\"pandascore_id\":null,\"yahoo_id\":29346,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607095,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"malcolmmitchell\",\"birth_date\":\"1992-07-20\",\"espn_id\":2578553},\"760\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colt\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1581368753612,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"760\",\"birth_city\":null,\"fantasy_data_id\":12491,\"years_exp\":11,\"hashtag\":\"#ColtAnderson-NFL-FA-33\",\"search_first_name\":\"colt\",\"rotowire_id\":7206,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Colt Anderson\",\"sportradar_id\":\"3c57a63e-cdce-48ab-9dfc-66c6e809697c\",\"pandascore_id\":null,\"yahoo_id\":9596,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Butte (MT)\",\"depth_chart_order\":null,\"stats_id\":293066,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"coltanderson\",\"birth_date\":\"1985-10-25\",\"espn_id\":12757},\"4160\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033859\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602624049575,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"malone\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4160\",\"birth_city\":null,\"fantasy_data_id\":19006,\"years_exp\":3,\"hashtag\":\"#JoshMalone-NFL-NYJ-83\",\"search_first_name\":\"josh\",\"rotowire_id\":11697,\"rotoworld_id\":null,\"active\":true,\"search_rank\":342,\"age\":24,\"full_name\":\"Josh Malone\",\"sportradar_id\":\"c5a8b02c-d380-4f22-a690-b335001de8b7\",\"pandascore_id\":null,\"yahoo_id\":30241,\"last_name\":\"Malone\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Station Camp (TN)\",\"depth_chart_order\":3,\"stats_id\":820522,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshmalone\",\"birth_date\":\"1996-03-21\",\"espn_id\":3115330},\"4667\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charmeachealle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1524630301292,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"4667\",\"birth_city\":null,\"fantasy_data_id\":19566,\"years_exp\":2,\"hashtag\":\"#CharmeachealleMoore-NFL-FA-50\",\"search_first_name\":\"charmeachealle\",\"rotowire_id\":12152,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Charmeachealle Moore\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'0\\\"\",\"search_full_name\":\"charmeacheallemoore\",\"birth_date\":\"1993-01-30\",\"espn_id\":3052414},\"2002\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030671\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1521222901228,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burse\",\"depth_chart_position\":null,\"player_id\":\"2002\",\"birth_city\":null,\"fantasy_data_id\":16274,\"years_exp\":5,\"hashtag\":\"#IsaiahBurse-NFL-FA-89\",\"search_first_name\":\"isaiah\",\"rotowire_id\":9481,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Isaiah Burse\",\"sportradar_id\":\"7440f643-e1ea-454b-b9ef-ef1a5a53fce1\",\"pandascore_id\":null,\"yahoo_id\":27822,\"last_name\":\"Burse\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":562336,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"isaiahburse\",\"birth_date\":\"1991-12-08\",\"espn_id\":16972},\"7173\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599537304837,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccleskey\",\"depth_chart_position\":null,\"player_id\":\"7173\",\"birth_city\":null,\"fantasy_data_id\":22175,\"years_exp\":0,\"hashtag\":\"#JalenMcCleskey-NFL-FA-0\",\"search_first_name\":\"jalen\",\"rotowire_id\":14977,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jalen McCleskey\",\"sportradar_id\":\"b79c04b6-d49f-49ca-a26b-d93769c8a908\",\"pandascore_id\":null,\"yahoo_id\":33063,\"last_name\":\"McCleskey\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"165\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jalenmccleskey\",\"birth_date\":\"1997-08-06\",\"espn_id\":3919609},\"3489\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lumpkin\",\"depth_chart_position\":null,\"player_id\":\"3489\",\"birth_city\":null,\"fantasy_data_id\":18254,\"years_exp\":0,\"hashtag\":\"#KeithLumpkin-NFL-FA-66\",\"search_first_name\":\"keith\",\"rotowire_id\":11677,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Keith Lumpkin\",\"sportradar_id\":\"51f454f8-3c1d-40d6-b65a-8668b7ec6500\",\"pandascore_id\":null,\"yahoo_id\":29555,\"last_name\":\"Lumpkin\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'7\\\"\",\"search_full_name\":\"keithlumpkin\",\"birth_date\":\"1992-01-15\",\"espn_id\":null},\"2654\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaxon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shipley\",\"depth_chart_position\":null,\"player_id\":\"2654\",\"birth_city\":null,\"fantasy_data_id\":17122,\"years_exp\":1,\"hashtag\":\"#JaxonShipley-NFL-FA-16\",\"search_first_name\":\"jaxon\",\"rotowire_id\":10545,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jaxon Shipley\",\"sportradar_id\":\"1f2bb3b0-1e83-41ef-a381-3c2d858e2a7f\",\"pandascore_id\":null,\"yahoo_id\":28812,\"last_name\":\"Shipley\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604725,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaxonshipley\",\"birth_date\":\"1992-07-17\",\"espn_id\":2577578},\"4814\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"De'Quan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hampton\",\"depth_chart_position\":null,\"player_id\":\"4814\",\"birth_city\":null,\"fantasy_data_id\":19724,\"years_exp\":2,\"hashtag\":\"#DeQuanHampton-NFL-FA-88\",\"search_first_name\":\"dequan\",\"rotowire_id\":12102,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"De'Quan Hampton\",\"sportradar_id\":\"c9e777fb-ad87-4304-b7c9-bcc0fdb3b42b\",\"pandascore_id\":null,\"yahoo_id\":30931,\"last_name\":\"Hampton\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":880030,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dequanhampton\",\"birth_date\":null,\"espn_id\":3912558},\"5015\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034834\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605387059496,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hubbard\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5015\",\"birth_city\":null,\"fantasy_data_id\":19871,\"years_exp\":2,\"hashtag\":\"#SamHubbard-NFL-CIN-94\",\"search_first_name\":\"sam\",\"rotowire_id\":12495,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1311,\"age\":25,\"full_name\":\"Sam Hubbard\",\"sportradar_id\":\"17d1f9ee-f65e-4c4d-bf73-a69b2fa17877\",\"pandascore_id\":null,\"yahoo_id\":31047,\"last_name\":\"Hubbard\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Archbishop Moeller (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"samhubbard\",\"birth_date\":\"1995-06-29\",\"espn_id\":3121416},\"5570\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034309\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606170616231,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beebe\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5570\",\"birth_city\":null,\"fantasy_data_id\":20582,\"years_exp\":2,\"hashtag\":\"#ChadBeebe-NFL-MIN-12\",\"search_first_name\":\"chad\",\"rotowire_id\":13164,\"rotoworld_id\":null,\"active\":true,\"search_rank\":377,\"age\":26,\"full_name\":\"Chad Beebe\",\"sportradar_id\":\"50eb4454-71bf-4012-a216-2fc9770ffd86\",\"pandascore_id\":null,\"yahoo_id\":31508,\"last_name\":\"Beebe\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Aurora Christian (IL)\",\"depth_chart_order\":1,\"stats_id\":746577,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"chadbeebe\",\"birth_date\":\"1994-06-01\",\"espn_id\":3047968},\"6180\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"6180\",\"birth_city\":null,\"fantasy_data_id\":21080,\"years_exp\":0,\"hashtag\":\"#DariusWilliams-NFL-FA-20\",\"search_first_name\":\"darius\",\"rotowire_id\":14092,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Darius Williams\",\"sportradar_id\":\"003999e7-4bb2-48a9-a2ec-7eb3b85a7d82\",\"pandascore_id\":null,\"yahoo_id\":32215,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Colorado State-Pueblo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dariuswilliams\",\"birth_date\":null,\"espn_id\":3145366},\"976\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1507593061995,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"culliver\",\"depth_chart_position\":null,\"player_id\":\"976\",\"birth_city\":null,\"fantasy_data_id\":13432,\"years_exp\":9,\"hashtag\":\"#ChrisCulliver-NFL-FA-35\",\"search_first_name\":\"chris\",\"rotowire_id\":7555,\"rotoworld_id\":6624,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Chris Culliver\",\"sportradar_id\":\"0c68f083-c3a0-433f-931e-d8216dc3fcd4\",\"pandascore_id\":null,\"yahoo_id\":24867,\"last_name\":\"Culliver\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Garner (NC)\",\"depth_chart_order\":null,\"stats_id\":406193,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisculliver\",\"birth_date\":\"1988-08-17\",\"espn_id\":14044},\"6257\":{\"position\":\"SS\",\"injury_notes\":\"Teamer will miss four games to start the 2020 season for violating the league's substance-abuse policy.\",\"birth_country\":null,\"gsis_id\":\" 00-0035437\",\"first_name\":\"Roderic\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602034236023,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"teamer\",\"depth_chart_position\":\"SS\",\"player_id\":\"6257\",\"birth_city\":null,\"fantasy_data_id\":21190,\"years_exp\":1,\"hashtag\":\"#RodericTeamer-NFL-FA-0\",\"search_first_name\":\"roderic\",\"rotowire_id\":14267,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1691,\"age\":23,\"full_name\":\"Roderic Teamer\",\"sportradar_id\":\"dba7bc1b-c414-404a-8845-4b0245df64a9\",\"pandascore_id\":null,\"yahoo_id\":32552,\"last_name\":\"Teamer\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rodericteamer\",\"birth_date\":\"1997-05-12\",\"espn_id\":3917058},\"985\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028256\",\"first_name\":\"Sealver\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1533319813876,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"siliga\",\"depth_chart_position\":null,\"player_id\":\"985\",\"birth_city\":null,\"fantasy_data_id\":13451,\"years_exp\":9,\"hashtag\":\"#SealverSiliga-NFL-FA-98\",\"search_first_name\":\"sealver\",\"rotowire_id\":7805,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sealver Siliga\",\"sportradar_id\":\"690fbf24-aab0-40cf-aeb4-7e24d90108a1\",\"pandascore_id\":null,\"yahoo_id\":25225,\"last_name\":\"Siliga\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Copper Hills (UT)\",\"depth_chart_order\":null,\"stats_id\":463411,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sealversiliga\",\"birth_date\":\"1990-04-25\",\"espn_id\":14441},\"2161\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031376\",\"first_name\":\"Jerick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606508426666,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckinnon\",\"depth_chart_position\":\"RB\",\"player_id\":\"2161\",\"birth_city\":null,\"fantasy_data_id\":16510,\"years_exp\":6,\"hashtag\":\"#JerickMcKinnon-NFL-SF-28\",\"search_first_name\":\"jerick\",\"rotowire_id\":9529,\"rotoworld_id\":9651,\"active\":true,\"search_rank\":158,\"age\":28,\"full_name\":\"Jerick McKinnon\",\"sportradar_id\":\"f77479d7-51a5-41f9-8924-69526dd078cd\",\"pandascore_id\":null,\"yahoo_id\":27624,\"last_name\":\"McKinnon\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":\"Sprayberry (GA)\",\"depth_chart_order\":2,\"stats_id\":563824,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jerickmckinnon\",\"birth_date\":\"1992-05-03\",\"espn_id\":16782},\"3295\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032412\",\"first_name\":\"Dean\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603163754323,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lowry\",\"depth_chart_position\":\"LDE\",\"player_id\":\"3295\",\"birth_city\":null,\"fantasy_data_id\":18056,\"years_exp\":4,\"hashtag\":\"#DeanLowry-NFL-GB-94\",\"search_first_name\":\"dean\",\"rotowire_id\":11119,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1012,\"age\":26,\"full_name\":\"Dean Lowry\",\"sportradar_id\":\"0df44cfb-8dab-4fc1-8556-108505a4b428\",\"pandascore_id\":null,\"yahoo_id\":29371,\"last_name\":\"Lowry\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Boylan Catholic (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'6\\\"\",\"search_full_name\":\"deanlowry\",\"birth_date\":\"1994-06-09\",\"espn_id\":2974348},\"7397\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Parker\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693372829,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":null,\"player_id\":\"7397\",\"birth_city\":null,\"fantasy_data_id\":22382,\"years_exp\":0,\"hashtag\":\"#ParkerHouston-NFL-FA-0\",\"search_first_name\":\"parker\",\"rotowire_id\":15105,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Parker Houston\",\"sportradar_id\":\"e4d9a5b4-4cca-48fc-aef3-4dfee12c83e5\",\"pandascore_id\":null,\"yahoo_id\":33080,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"parkerhouston\",\"birth_date\":\"1997-12-06\",\"espn_id\":null},\"6719\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"6719\",\"birth_city\":null,\"fantasy_data_id\":21328,\"years_exp\":0,\"hashtag\":\"#LarryAllen-NFL-FA-62\",\"search_first_name\":\"larry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Larry Allen\",\"sportradar_id\":\"dbb572df-7fb1-4c26-b86e-13a194dfdab8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"\",\"search_full_name\":\"larryallen\",\"birth_date\":null,\"espn_id\":3118835},\"3580\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whigham\",\"depth_chart_position\":null,\"player_id\":\"3580\",\"birth_city\":null,\"fantasy_data_id\":18359,\"years_exp\":0,\"hashtag\":\"#JulianWhigham-NFL-FA-0\",\"search_first_name\":\"julian\",\"rotowire_id\":11672,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Julian Whigham\",\"sportradar_id\":\"33f2bb94-4404-4b29-b215-798a8514c175\",\"pandascore_id\":null,\"yahoo_id\":29558,\"last_name\":\"Whigham\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"julianwhigham\",\"birth_date\":\"1994-08-10\",\"espn_id\":2970411},\"105\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026280\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602020707560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carr\",\"depth_chart_position\":\"LCB\",\"player_id\":\"105\",\"birth_city\":null,\"fantasy_data_id\":2760,\"years_exp\":12,\"hashtag\":\"#BrandonCarr-NFL-DAL-39\",\"search_first_name\":\"brandon\",\"rotowire_id\":5878,\"rotoworld_id\":4893,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Brandon Carr\",\"sportradar_id\":\"23893852-6ef4-48a9-99a0-c51f41670508\",\"pandascore_id\":null,\"yahoo_id\":8906,\"last_name\":\"Carr\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":\"Carman-Ainsworth (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandoncarr\",\"birth_date\":\"1986-05-19\",\"espn_id\":11363},\"2024\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030668\",\"first_name\":\"Charcandrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567288806152,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"west\",\"depth_chart_position\":null,\"player_id\":\"2024\",\"birth_city\":null,\"fantasy_data_id\":16307,\"years_exp\":6,\"hashtag\":\"#CharcandrickWest-NFL-FA-36\",\"search_first_name\":\"charcandrick\",\"rotowire_id\":9891,\"rotoworld_id\":10006,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Charcandrick West\",\"sportradar_id\":\"65f91b8b-6794-4273-bf42-4d00b5973ddd\",\"pandascore_id\":null,\"yahoo_id\":28044,\"last_name\":\"West\",\"metadata\":null,\"college\":\"Abilene Christian\",\"high_school\":\"Springhill (LA)\",\"depth_chart_order\":null,\"stats_id\":752129,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"charcandrickwest\",\"birth_date\":\"1991-06-02\",\"espn_id\":17284},\"6829\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kristian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606263955007,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fulton\",\"depth_chart_position\":null,\"player_id\":\"6829\",\"birth_city\":null,\"fantasy_data_id\":22084,\"years_exp\":0,\"hashtag\":\"#KristianFulton-NFL-TEN-26\",\"search_first_name\":\"kristian\",\"rotowire_id\":14443,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1914,\"age\":22,\"full_name\":\"Kristian Fulton\",\"sportradar_id\":\"c87aaf5b-e1e9-4d18-b0f1-f328b646031d\",\"pandascore_id\":null,\"yahoo_id\":32731,\"last_name\":\"Fulton\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Louisiana State\",\"high_school\":\"Archbishop Rummel (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kristianfulton\",\"birth_date\":\"1998-09-03\",\"espn_id\":4035433},\"6593\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035587\",\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599275155735,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schnell\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6593\",\"birth_city\":null,\"fantasy_data_id\":21434,\"years_exp\":1,\"hashtag\":\"#SpencerSchnell-NFL-FA-0\",\"search_first_name\":\"spencer\",\"rotowire_id\":14243,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1732,\"age\":25,\"full_name\":\"Spencer Schnell\",\"sportradar_id\":\"35b28aeb-b711-4e73-8c85-d3b9dd8cb672\",\"pandascore_id\":null,\"yahoo_id\":32560,\"last_name\":\"Schnell\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":746533,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'8\\\"\",\"search_full_name\":\"spencerschnell\",\"birth_date\":\"1994-12-07\",\"espn_id\":3126075},\"7212\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1597360535903,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nigh\",\"depth_chart_position\":null,\"player_id\":\"7212\",\"birth_city\":null,\"fantasy_data_id\":22215,\"years_exp\":0,\"hashtag\":\"#SpencerNigh-NFL-FA-0\",\"search_first_name\":\"spencer\",\"rotowire_id\":15107,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Spencer Nigh\",\"sportradar_id\":\"227c3bc7-daa7-46a4-92bc-06701bacda11\",\"pandascore_id\":null,\"yahoo_id\":32940,\"last_name\":\"Nigh\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'0\\\"\",\"search_full_name\":\"spencernigh\",\"birth_date\":\"1997-01-18\",\"espn_id\":4035523},\"574\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027902\",\"first_name\":\"Dez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606587335396,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"574\",\"birth_city\":null,\"fantasy_data_id\":11270,\"years_exp\":10,\"hashtag\":\"#DezBryant-NFL-BAL-88\",\"search_first_name\":\"dez\",\"rotowire_id\":6336,\"rotoworld_id\":5558,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Dez Bryant\",\"sportradar_id\":\"b84fb536-9705-45a9-b652-92a33578ac48\",\"pandascore_id\":null,\"yahoo_id\":23999,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Lufkin (TX)\",\"depth_chart_order\":null,\"stats_id\":397499,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dezbryant\",\"birth_date\":\"1988-11-04\",\"espn_id\":13215},\"2810\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trincapasat\",\"depth_chart_position\":null,\"player_id\":\"2810\",\"birth_city\":null,\"fantasy_data_id\":17278,\"years_exp\":5,\"hashtag\":\"#LouisTrincaPasat-NFL-FA-62\",\"search_first_name\":\"louis\",\"rotowire_id\":10337,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Louis Trinca-Pasat\",\"sportradar_id\":\"ab269db5-a86a-4efd-9d52-4c799a420088\",\"pandascore_id\":null,\"yahoo_id\":29003,\"last_name\":\"Trinca-Pasat\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Lane Tech (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'1\\\"\",\"search_full_name\":\"louistrincapasat\",\"birth_date\":\"1991-09-07\",\"espn_id\":2511710},\"1098\":{\"position\":\"G\",\"injury_notes\":\"Brooks suffered the injury during offseason training and will miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\"00-0029679\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599693643016,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"1098\",\"birth_city\":null,\"fantasy_data_id\":13959,\"years_exp\":8,\"hashtag\":\"#BrandonBrooks-NFL-PHI-79\",\"search_first_name\":\"brandon\",\"rotowire_id\":8127,\"rotoworld_id\":7498,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Brandon Brooks\",\"sportradar_id\":\"9fe21c07-823a-47a1-a4dd-0c611c0280c5\",\"pandascore_id\":null,\"yahoo_id\":25786,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Miami, O.\",\"high_school\":\"Riverside (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonbrooks\",\"birth_date\":\"1989-08-19\",\"espn_id\":14962},\"64\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Owen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":null,\"player_id\":\"64\",\"birth_city\":null,\"fantasy_data_id\":1810,\"years_exp\":14,\"hashtag\":\"#OwenDaniels-NFL-FA-81\",\"search_first_name\":\"owen\",\"rotowire_id\":4898,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Owen Daniels\",\"sportradar_id\":\"7e5ce2d0-6487-4a9f-83b6-634886ee78f3\",\"pandascore_id\":null,\"yahoo_id\":7847,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Naperille Central (IL)\",\"depth_chart_order\":null,\"stats_id\":156817,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"owendaniels\",\"birth_date\":\"1982-11-09\",\"espn_id\":9684},\"3751\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032757\",\"first_name\":\"Winston\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606339202572,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rose\",\"depth_chart_position\":null,\"player_id\":\"3751\",\"birth_city\":null,\"fantasy_data_id\":18563,\"years_exp\":4,\"hashtag\":\"#WinstonRose-NFL-CIN-39\",\"search_first_name\":\"winston\",\"rotowire_id\":11278,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Winston Rose\",\"sportradar_id\":\"2cffbed2-3e4f-4051-b5b1-b6b2b7c484f6\",\"pandascore_id\":null,\"yahoo_id\":29741,\"last_name\":\"Rose\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":\"St. Genevieve (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"winstonrose\",\"birth_date\":\"1993-11-29\",\"espn_id\":3042619},\"4995\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034365\",\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606263054857,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"TE\",\"player_id\":\"4995\",\"birth_city\":null,\"fantasy_data_id\":19910,\"years_exp\":2,\"hashtag\":\"#IanThomas-NFL-CAR-80\",\"search_first_name\":\"ian\",\"rotowire_id\":12858,\"rotoworld_id\":13163,\"active\":true,\"search_rank\":321,\"age\":24,\"full_name\":\"Ian Thomas\",\"sportradar_id\":\"ed8a8fd2-df67-45e7-a34f-984afb82f6ea\",\"pandascore_id\":null,\"yahoo_id\":31071,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Digital Harbor (MD)\",\"depth_chart_order\":1,\"stats_id\":943093,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ianthomas\",\"birth_date\":\"1996-06-06\",\"espn_id\":4045305},\"6497\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035174\",\"first_name\":\"Tenny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adewusi\",\"depth_chart_position\":null,\"player_id\":\"6497\",\"birth_city\":null,\"fantasy_data_id\":21509,\"years_exp\":1,\"hashtag\":\"#TennyAdewusi-NFL-FA-35\",\"search_first_name\":\"tenny\",\"rotowire_id\":14159,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tenny Adewusi\",\"sportradar_id\":\"8ed1ce29-8bbb-417b-9766-5de8fdfb4606\",\"pandascore_id\":null,\"yahoo_id\":32379,\"last_name\":\"Adewusi\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tennyadewusi\",\"birth_date\":\"1997-05-13\",\"espn_id\":3912029},\"5132\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034081\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606480203186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5132\",\"birth_city\":null,\"fantasy_data_id\":20067,\"years_exp\":2,\"hashtag\":\"#StevenMitchell-NFL-HOU-11\",\"search_first_name\":\"steven\",\"rotowire_id\":12951,\"rotoworld_id\":null,\"active\":true,\"search_rank\":488,\"age\":26,\"full_name\":\"Steven Mitchell\",\"sportradar_id\":\"775e71fb-96af-4831-af0c-78b2e89897ff\",\"pandascore_id\":null,\"yahoo_id\":31391,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Bishop Alemany (CA)\",\"depth_chart_order\":2,\"stats_id\":739435,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'10\\\"\",\"search_full_name\":\"stevenmitchell\",\"birth_date\":\"1994-05-02\",\"espn_id\":3043225},\"4021\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547237109062,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sarkisian\",\"depth_chart_position\":null,\"player_id\":\"4021\",\"birth_city\":null,\"fantasy_data_id\":18861,\"years_exp\":0,\"hashtag\":\"#SteveSarkisian-NFL-FA-0\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":11223,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Steve Sarkisian\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sarkisian\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"stevesarkisian\",\"birth_date\":null,\"espn_id\":null},\"866\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cecil\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shorts\",\"depth_chart_position\":null,\"player_id\":\"866\",\"birth_city\":null,\"fantasy_data_id\":13002,\"years_exp\":9,\"hashtag\":\"#CecilShorts-NFL-FA-10\",\"search_first_name\":\"cecil\",\"rotowire_id\":7389,\"rotoworld_id\":6602,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Cecil Shorts\",\"sportradar_id\":\"a39de973-a990-49a3-b90c-f1c0c99eca2e\",\"pandascore_id\":null,\"yahoo_id\":24901,\"last_name\":\"Shorts\",\"metadata\":null,\"college\":\"Mount Union\",\"high_school\":\"Collinwood (OH)\",\"depth_chart_order\":null,\"stats_id\":557929,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"cecilshorts\",\"birth_date\":\"1987-12-22\",\"espn_id\":14184},\"7229\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dieter\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"eiselen\",\"depth_chart_position\":null,\"player_id\":\"7229\",\"birth_city\":null,\"fantasy_data_id\":22230,\"years_exp\":0,\"hashtag\":\"#DieterEiselen-NFL-CHI-60\",\"search_first_name\":\"dieter\",\"rotowire_id\":15167,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dieter Eiselen\",\"sportradar_id\":\"1a4b38f7-48f8-43b3-be9a-96671feb1fa6\",\"pandascore_id\":null,\"yahoo_id\":33173,\"last_name\":\"Eiselen\",\"metadata\":null,\"college\":\"Yale\",\"high_school\":\"Choate Rosemary Hall (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dietereiselen\",\"birth_date\":\"1996-06-10\",\"espn_id\":4032052},\"626\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jim\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dray\",\"depth_chart_position\":null,\"player_id\":\"626\",\"birth_city\":null,\"fantasy_data_id\":11555,\"years_exp\":10,\"hashtag\":\"#JimDray-NFL-FA-81\",\"search_first_name\":\"jim\",\"rotowire_id\":6703,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jim Dray\",\"sportradar_id\":\"38fe7db8-76b7-44a5-8308-b67d1f383829\",\"pandascore_id\":null,\"yahoo_id\":24208,\"last_name\":\"Dray\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Bergen (NJ)\",\"depth_chart_order\":null,\"stats_id\":322988,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jimdray\",\"birth_date\":\"1986-12-31\",\"espn_id\":13357},\"5104\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034392\",\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"quessenberry\",\"depth_chart_position\":\"RG\",\"player_id\":\"5104\",\"birth_city\":null,\"fantasy_data_id\":19983,\"years_exp\":2,\"hashtag\":\"#ScottQuessenberry-NFL-LAC-61\",\"search_first_name\":\"scott\",\"rotowire_id\":12797,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Scott Quessenberry\",\"sportradar_id\":\"b04382c6-7138-4dd4-8ad8-3e10ce8403aa\",\"pandascore_id\":null,\"yahoo_id\":31125,\"last_name\":\"Quessenberry\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"La Costa Canyon (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"scottquessenberry\",\"birth_date\":\"1995-03-23\",\"espn_id\":3047572},\"6496\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035171\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hedlund\",\"depth_chart_position\":null,\"player_id\":\"6496\",\"birth_city\":null,\"fantasy_data_id\":21508,\"years_exp\":1,\"hashtag\":\"#ColeHedlund-NFL-FA-9\",\"search_first_name\":\"cole\",\"rotowire_id\":14160,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cole Hedlund\",\"sportradar_id\":\"5e52491c-218a-4e32-b455-0d3aa05b8151\",\"pandascore_id\":null,\"yahoo_id\":32369,\"last_name\":\"Hedlund\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":837903,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"161\",\"height\":\"5'9\\\"\",\"search_full_name\":\"colehedlund\",\"birth_date\":\"1995-03-15\",\"espn_id\":3128692},\"6896\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Amik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601840140353,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robertson\",\"depth_chart_position\":\"NB\",\"player_id\":\"6896\",\"birth_city\":null,\"fantasy_data_id\":22089,\"years_exp\":0,\"hashtag\":\"#AmikRobertson-NFL-LV-21\",\"search_first_name\":\"amik\",\"rotowire_id\":14709,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1919,\"age\":22,\"full_name\":\"Amik Robertson\",\"sportradar_id\":\"23525664-b547-413b-9221-b09091b90edf\",\"pandascore_id\":null,\"yahoo_id\":32809,\"last_name\":\"Robertson\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Thibodaux (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"amikrobertson\",\"birth_date\":\"1998-07-06\",\"espn_id\":4239694},\"4456\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033309\",\"first_name\":\"KD\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1514941501396,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cannon\",\"depth_chart_position\":null,\"player_id\":\"4456\",\"birth_city\":null,\"fantasy_data_id\":19320,\"years_exp\":3,\"hashtag\":\"#KDCannon-NFL-FA-81\",\"search_first_name\":\"kd\",\"rotowire_id\":11693,\"rotoworld_id\":12330,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"KD Cannon\",\"sportradar_id\":\"fbeeeacc-35f1-48c3-9db6-8c09b83c8690\",\"pandascore_id\":null,\"yahoo_id\":30553,\"last_name\":\"Cannon\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":837957,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kdcannon\",\"birth_date\":\"1995-11-05\",\"espn_id\":3128348},\"1058\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029259\",\"first_name\":\"Kelechi\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602977757976,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"osemele\",\"depth_chart_position\":null,\"player_id\":\"1058\",\"birth_city\":null,\"fantasy_data_id\":13848,\"years_exp\":8,\"hashtag\":\"#KelechiOsemele-NFL-KC-70\",\"search_first_name\":\"kelechi\",\"rotowire_id\":8210,\"rotoworld_id\":7504,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kelechi Osemele\",\"sportradar_id\":\"45fe5280-b366-4c8a-8f2e-99fa5a4ff631\",\"pandascore_id\":null,\"yahoo_id\":25770,\"last_name\":\"Osemele\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Langham Creek (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kelechiosemele\",\"birth_date\":\"1989-06-24\",\"espn_id\":14957},\"4451\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033449\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603401948179,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"whitney\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4451\",\"birth_city\":null,\"fantasy_data_id\":19314,\"years_exp\":3,\"hashtag\":\"#IsaacWhitney-NFL-TB-19\",\"search_first_name\":\"isaac\",\"rotowire_id\":12106,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1255,\"age\":26,\"full_name\":\"Isaac Whitney\",\"sportradar_id\":\"1af02026-aef5-4dcb-baa2-9c9c91d22533\",\"pandascore_id\":null,\"yahoo_id\":30637,\"last_name\":\"Whitney\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Southmoore (OK)\",\"depth_chart_order\":11,\"stats_id\":865837,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'2\\\"\",\"search_full_name\":\"isaacwhitney\",\"birth_date\":\"1994-06-22\",\"espn_id\":3894883},\"3642\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032729\",\"first_name\":\"Ufomba\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1586553052688,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kamalu\",\"depth_chart_position\":\"RUSH\",\"player_id\":\"3642\",\"birth_city\":null,\"fantasy_data_id\":18432,\"years_exp\":4,\"hashtag\":\"#UfombaKamalu-NFL-FA-0\",\"search_first_name\":\"ufomba\",\"rotowire_id\":11084,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ufomba Kamalu\",\"sportradar_id\":\"e4b362e0-d43c-4279-b30f-15000dbc0591\",\"pandascore_id\":null,\"yahoo_id\":29797,\"last_name\":\"Kamalu\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":748586,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ufombakamalu\",\"birth_date\":\"1992-11-02\",\"espn_id\":3051940},\"7181\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sailosi\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"latu\",\"depth_chart_position\":null,\"player_id\":\"7181\",\"birth_city\":null,\"fantasy_data_id\":22183,\"years_exp\":0,\"hashtag\":\"#SailosiLatu-NFL-FA-0\",\"search_first_name\":\"sailosi\",\"rotowire_id\":15000,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1944,\"age\":26,\"full_name\":\"Sailosi Latu\",\"sportradar_id\":\"6366239d-bce8-42c0-b318-2b96c6e130ce\",\"pandascore_id\":null,\"yahoo_id\":33062,\"last_name\":\"Latu\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"334\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sailosilatu\",\"birth_date\":\"1993-12-26\",\"espn_id\":4242317},\"4905\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lake\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dawson\",\"depth_chart_position\":null,\"player_id\":\"4905\",\"birth_city\":null,\"fantasy_data_id\":19807,\"years_exp\":0,\"hashtag\":\"#LakeDawson-NFL-FA-0\",\"search_first_name\":\"lake\",\"rotowire_id\":null,\"rotoworld_id\":10350,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Lake Dawson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dawson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"lakedawson\",\"birth_date\":null,\"espn_id\":null},\"6266\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alexander\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598847961208,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"myres\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6266\",\"birth_city\":null,\"fantasy_data_id\":21201,\"years_exp\":1,\"hashtag\":\"#AlexanderMyres-NFL-FA-0\",\"search_first_name\":\"alexander\",\"rotowire_id\":14187,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1693,\"age\":24,\"full_name\":\"Alexander Myres\",\"sportradar_id\":\"d0dcbe53-8c71-4488-b468-785a756ee489\",\"pandascore_id\":null,\"yahoo_id\":32171,\"last_name\":\"Myres\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"alexandermyres\",\"birth_date\":\"1996-04-20\",\"espn_id\":4039292},\"973\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028074\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604535929123,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sherman\",\"depth_chart_position\":\"RB\",\"player_id\":\"973\",\"birth_city\":null,\"fantasy_data_id\":13418,\"years_exp\":9,\"hashtag\":\"#AnthonySherman-NFL-KC-42\",\"search_first_name\":\"anthony\",\"rotowire_id\":7560,\"rotoworld_id\":null,\"active\":true,\"search_rank\":496,\"age\":31,\"full_name\":\"Anthony Sherman\",\"sportradar_id\":\"e033ce15-9fc5-430b-90e2-90dfe52b21c1\",\"pandascore_id\":null,\"yahoo_id\":24923,\"last_name\":\"Sherman\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"North Attleboro (MA)\",\"depth_chart_order\":4,\"stats_id\":400947,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"5'10\\\"\",\"search_full_name\":\"anthonysherman\",\"birth_date\":\"1988-12-11\",\"espn_id\":14135},\"4752\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033994\",\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604368539839,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4752\",\"birth_city\":null,\"fantasy_data_id\":19671,\"years_exp\":3,\"hashtag\":\"#FredBrown-NFL-DEN-19\",\"search_first_name\":\"fred\",\"rotowire_id\":12291,\"rotoworld_id\":null,\"active\":true,\"search_rank\":466,\"age\":26,\"full_name\":\"Fred Brown\",\"sportradar_id\":\"1eaede88-f9fd-497d-93bf-2849948c993c\",\"pandascore_id\":null,\"yahoo_id\":30901,\"last_name\":\"Brown\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Mississippi State\",\"high_school\":\"Jim Hill (MS)\",\"depth_chart_order\":3,\"stats_id\":686800,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"fredbrown\",\"birth_date\":\"1993-12-01\",\"espn_id\":2971397},\"1897\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nikita\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whitlock\",\"depth_chart_position\":null,\"player_id\":\"1897\",\"birth_city\":null,\"fantasy_data_id\":16120,\"years_exp\":6,\"hashtag\":\"#NikitaWhitlock-NFL-FA-49\",\"search_first_name\":\"nikita\",\"rotowire_id\":9846,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Nikita Whitlock\",\"sportradar_id\":\"b49690bb-d3c1-4223-ac2e-797f5ba89a94\",\"pandascore_id\":null,\"yahoo_id\":28030,\"last_name\":\"Whitlock\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Wylie (TX)\",\"depth_chart_order\":null,\"stats_id\":500672,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nikitawhitlock\",\"birth_date\":\"1991-05-16\",\"espn_id\":17288},\"6789\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606512026979,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ruggs\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6789\",\"birth_city\":null,\"fantasy_data_id\":21694,\"years_exp\":0,\"hashtag\":\"#HenryRuggs-NFL-LV-11\",\"search_first_name\":\"henry\",\"rotowire_id\":14473,\"rotoworld_id\":14887,\"active\":true,\"search_rank\":104,\"age\":21,\"full_name\":\"Henry Ruggs\",\"sportradar_id\":\"8a453858-7309-49ae-b8eb-de691847393f\",\"pandascore_id\":null,\"yahoo_id\":32682,\"last_name\":\"Ruggs\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Lee (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"henryruggs\",\"birth_date\":\"1999-01-24\",\"espn_id\":4241475},\"4318\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033253\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565552125040,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"catalina\",\"depth_chart_position\":null,\"player_id\":\"4318\",\"birth_city\":null,\"fantasy_data_id\":19171,\"years_exp\":3,\"hashtag\":\"#TylerCatalina-NFL-FA-63\",\"search_first_name\":\"tyler\",\"rotowire_id\":12145,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tyler Catalina\",\"sportradar_id\":\"dbe09c33-0164-42fa-8eed-e5d3f11377b7\",\"pandascore_id\":null,\"yahoo_id\":30501,\"last_name\":\"Catalina\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tylercatalina\",\"birth_date\":\"1993-01-24\",\"espn_id\":2969004},\"2840\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"penny\",\"depth_chart_position\":null,\"player_id\":\"2840\",\"birth_city\":null,\"fantasy_data_id\":17308,\"years_exp\":0,\"hashtag\":\"#KennethPenny-NFL-FA-45\",\"search_first_name\":\"kenneth\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kenneth Penny\",\"sportradar_id\":\"98f890bc-740e-4bd8-9f1d-00febc8bd993\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Penny\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kennethpenny\",\"birth_date\":\"1991-05-23\",\"espn_id\":2514527},\"4175\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033840\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599539404898,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hansen\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4175\",\"birth_city\":null,\"fantasy_data_id\":19021,\"years_exp\":3,\"hashtag\":\"#ChadHansen-NFL-HOU-17\",\"search_first_name\":\"chad\",\"rotowire_id\":11702,\"rotoworld_id\":null,\"active\":true,\"search_rank\":453,\"age\":25,\"full_name\":\"Chad Hansen\",\"sportradar_id\":\"6335a39b-9cb4-4703-bed9-1835b9fc4791\",\"pandascore_id\":null,\"yahoo_id\":30254,\"last_name\":\"Hansen\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Moorpark (CA)\",\"depth_chart_order\":2,\"stats_id\":788345,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chadhansen\",\"birth_date\":\"1995-01-18\",\"espn_id\":3066074},\"3344\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032430\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1584127525058,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"3344\",\"birth_city\":null,\"fantasy_data_id\":18105,\"years_exp\":4,\"hashtag\":\"#DavidMorgan-NFL-FA-0\",\"search_first_name\":\"david\",\"rotowire_id\":11139,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"David Morgan\",\"sportradar_id\":\"4bff1c89-f4d1-4699-8c85-69bbbbaec5a2\",\"pandascore_id\":null,\"yahoo_id\":29422,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":612030,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davidmorgan\",\"birth_date\":\"1993-05-19\",\"espn_id\":2580052},\"2425\":{\"position\":\"SS\",\"injury_notes\":\"Shaw is suspended indefinitely and will miss the entire 2020 season for betting on NFL games.\",\"birth_country\":null,\"gsis_id\":\"00-0032168\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1575064860115,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shaw\",\"depth_chart_position\":null,\"player_id\":\"2425\",\"birth_city\":null,\"fantasy_data_id\":16881,\"years_exp\":5,\"hashtag\":\"#JoshShaw-NFL-ARI-27\",\"search_first_name\":\"josh\",\"rotowire_id\":10420,\"rotoworld_id\":10465,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Shaw\",\"sportradar_id\":\"1686f2b7-90e8-4d0a-89f8-415310ae2bd8\",\"pandascore_id\":null,\"yahoo_id\":28508,\"last_name\":\"Shaw\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Palmdale (CA)\",\"depth_chart_order\":null,\"stats_id\":542792,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"Sus\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshshaw\",\"birth_date\":\"1992-03-27\",\"espn_id\":2971605},\"5203\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"malone\",\"depth_chart_position\":null,\"player_id\":\"5203\",\"birth_city\":null,\"fantasy_data_id\":20138,\"years_exp\":2,\"hashtag\":\"#KJMalone-NFL-HOU-0\",\"search_first_name\":\"kj\",\"rotowire_id\":12936,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"K.J. Malone\",\"sportradar_id\":\"6b39f9b6-2ea7-41a9-8155-0e12e569817d\",\"pandascore_id\":null,\"yahoo_id\":31584,\"last_name\":\"Malone\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Cedar Creek\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kjmalone\",\"birth_date\":\"1995-05-08\",\"espn_id\":3042735},\"2799\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mylan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hicks\",\"depth_chart_position\":null,\"player_id\":\"2799\",\"birth_city\":null,\"fantasy_data_id\":17267,\"years_exp\":0,\"hashtag\":\"#MylanHicks-NFL-FA-42\",\"search_first_name\":\"mylan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Mylan Hicks\",\"sportradar_id\":\"f299026b-1d2e-4e18-bd5e-b659d884dc2d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hicks\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mylanhicks\",\"birth_date\":\"1993-01-21\",\"espn_id\":2515410},\"3366\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1523569501024,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"3366\",\"birth_city\":null,\"fantasy_data_id\":18127,\"years_exp\":3,\"hashtag\":\"#KelvinTaylor-NFL-FA-38\",\"search_first_name\":\"kelvin\",\"rotowire_id\":10816,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kelvin Taylor\",\"sportradar_id\":\"528600bc-08d1-4078-a8b5-b59d57dfd4c7\",\"pandascore_id\":null,\"yahoo_id\":29445,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":727283,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kelvintaylor\",\"birth_date\":\"1993-09-28\",\"espn_id\":3043120},\"2283\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilder\",\"depth_chart_position\":null,\"player_id\":\"2283\",\"birth_city\":null,\"fantasy_data_id\":16703,\"years_exp\":1,\"hashtag\":\"#JamesWilder-NFL-FA-38\",\"search_first_name\":\"james\",\"rotowire_id\":9286,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"James Wilder\",\"sportradar_id\":\"f539132f-7172-4dd5-b4d9-504aeaf9ec46\",\"pandascore_id\":null,\"yahoo_id\":28031,\"last_name\":\"Wilder\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605425,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jameswilder\",\"birth_date\":\"1992-04-14\",\"espn_id\":17289},\"6334\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035448\",\"first_name\":\"Damarea\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1603404348680,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crockett\",\"depth_chart_position\":\"RB\",\"player_id\":\"6334\",\"birth_city\":null,\"fantasy_data_id\":21240,\"years_exp\":1,\"hashtag\":\"#DamareaCrockett-NFL-DEN-34\",\"search_first_name\":\"damarea\",\"rotowire_id\":13559,\"rotoworld_id\":null,\"active\":true,\"search_rank\":573,\"age\":22,\"full_name\":\"Damarea Crockett\",\"sportradar_id\":\"d4f0aa89-6309-4977-b779-7501eb8c8508\",\"pandascore_id\":null,\"yahoo_id\":32502,\"last_name\":\"Crockett\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Little Rock Christian Academy (AR)\",\"depth_chart_order\":5,\"stats_id\":920072,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damareacrockett\",\"birth_date\":\"1997-12-22\",\"espn_id\":4035102},\"2807\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keshaun\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"malone\",\"depth_chart_position\":null,\"player_id\":\"2807\",\"birth_city\":null,\"fantasy_data_id\":17275,\"years_exp\":0,\"hashtag\":\"#KeshaunMalone-NFL-FA-57\",\"search_first_name\":\"keshaun\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keshaun Malone\",\"sportradar_id\":\"4c0b21df-b445-45f1-a2a8-560734146366\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Malone\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keshaunmalone\",\"birth_date\":\"1992-08-11\",\"espn_id\":3070773},\"2189\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1520305201719,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gaffney\",\"depth_chart_position\":null,\"player_id\":\"2189\",\"birth_city\":null,\"fantasy_data_id\":16557,\"years_exp\":6,\"hashtag\":\"#TylerGaffney-NFL-FA-34\",\"search_first_name\":\"tyler\",\"rotowire_id\":9526,\"rotoworld_id\":9424,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tyler Gaffney\",\"sportradar_id\":\"8d53ef4e-7d88-40c6-a390-78d166330bb0\",\"pandascore_id\":null,\"yahoo_id\":27732,\"last_name\":\"Gaffney\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":503179,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tylergaffney\",\"birth_date\":\"1991-04-20\",\"espn_id\":16838},\"1587\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030470\",\"first_name\":\"Vance\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606429260028,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":\"TE\",\"player_id\":\"1587\",\"birth_city\":null,\"fantasy_data_id\":15239,\"years_exp\":7,\"hashtag\":\"#VanceMcDonald-NFL-PIT-89\",\"search_first_name\":\"vance\",\"rotowire_id\":8785,\"rotoworld_id\":8413,\"active\":true,\"search_rank\":401,\"age\":30,\"full_name\":\"Vance McDonald\",\"sportradar_id\":\"8f24a248-b328-43ec-8677-67600e42a8f7\",\"pandascore_id\":null,\"yahoo_id\":26678,\"last_name\":\"McDonald\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Rice\",\"high_school\":\"East Chambers (TX)\",\"depth_chart_order\":2,\"stats_id\":494969,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vancemcdonald\",\"birth_date\":\"1990-06-13\",\"espn_id\":15853},\"5328\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034278\",\"first_name\":\"Tremon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"DB\"],\"news_updated\":1600827623561,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"CB\",\"player_id\":\"5328\",\"birth_city\":null,\"fantasy_data_id\":20028,\"years_exp\":2,\"hashtag\":\"#TremonSmith-NFL-IND-35\",\"search_first_name\":\"tremon\",\"rotowire_id\":12994,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tremon Smith\",\"sportradar_id\":\"aecd8785-d22b-43b4-bbff-76b7e4319ed6\",\"pandascore_id\":null,\"yahoo_id\":31166,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Central Arkansas\",\"high_school\":\"Saks (AL)\",\"depth_chart_order\":2,\"stats_id\":843049,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tremonsmith\",\"birth_date\":\"1996-07-20\",\"espn_id\":3134448},\"7513\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Manny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patterson\",\"depth_chart_position\":null,\"player_id\":\"7513\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#MannyPatterson-NFL-WAS-0\",\"search_first_name\":\"manny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":null,\"full_name\":\"Manny Patterson\",\"sportradar_id\":\"b5c5f57c-a11f-4f8a-82cd-c095b31319ef\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Patterson\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":\"Mount St. Joseph (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mannypatterson\",\"birth_date\":null,\"espn_id\":null},\"4835\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":null,\"player_id\":\"4835\",\"birth_city\":null,\"fantasy_data_id\":19738,\"years_exp\":2,\"hashtag\":\"#DarriusSims-NFL-FA-47\",\"search_first_name\":\"darrius\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Darrius Sims\",\"sportradar_id\":\"75bc7279-3d6b-4a55-9bcb-ebfeedea0b63\",\"pandascore_id\":null,\"yahoo_id\":30945,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'9\\\"\",\"search_full_name\":\"darriussims\",\"birth_date\":\"1994-10-26\",\"espn_id\":3051759},\"1644\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tuel\",\"depth_chart_position\":null,\"player_id\":\"1644\",\"birth_city\":null,\"fantasy_data_id\":15381,\"years_exp\":2,\"hashtag\":\"#JeffTuel-NFL-FA-9\",\"search_first_name\":\"jeff\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeff Tuel\",\"sportradar_id\":\"a2ceffa6-0ff7-4158-858f-8c01fea175f2\",\"pandascore_id\":null,\"yahoo_id\":27019,\"last_name\":\"Tuel\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":507471,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jefftuel\",\"birth_date\":\"1991-02-12\",\"espn_id\":16237},\"3929\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3929\",\"birth_city\":null,\"fantasy_data_id\":18758,\"years_exp\":0,\"hashtag\":\"#TerryWilliams-NFL-FA-36\",\"search_first_name\":\"terry\",\"rotowire_id\":11636,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Terry Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30056,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Kutztown\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":942653,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'8\\\"\",\"search_full_name\":\"terrywilliams\",\"birth_date\":null,\"espn_id\":4040172},\"5889\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035256\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605121206049,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"love\",\"depth_chart_position\":\"RB\",\"player_id\":\"5889\",\"birth_city\":null,\"fantasy_data_id\":20863,\"years_exp\":1,\"hashtag\":\"#BryceLove-NFL-WAS-35\",\"search_first_name\":\"bryce\",\"rotowire_id\":13458,\"rotoworld_id\":14012,\"active\":true,\"search_rank\":127,\"age\":23,\"full_name\":\"Bryce Love\",\"sportradar_id\":\"6cf9a842-dc3f-408a-887a-97b0b07d4289\",\"pandascore_id\":null,\"yahoo_id\":31944,\"last_name\":\"Love\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Wake Forest (NC)\",\"depth_chart_order\":4,\"stats_id\":884948,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brycelove\",\"birth_date\":\"1997-07-08\",\"espn_id\":3931398},\"5906\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035689\",\"first_name\":\"Dawson\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606497903797,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"knox\",\"depth_chart_position\":\"TE\",\"player_id\":\"5906\",\"birth_city\":null,\"fantasy_data_id\":20850,\"years_exp\":1,\"hashtag\":\"#DawsonKnox-NFL-BUF-88\",\"search_first_name\":\"dawson\",\"rotowire_id\":13466,\"rotoworld_id\":13953,\"active\":true,\"search_rank\":327,\"age\":24,\"full_name\":\"Dawson Knox\",\"sportradar_id\":\"5fb525c5-4e70-4ede-8c49-94ad0cf66b7d\",\"pandascore_id\":null,\"yahoo_id\":31928,\"last_name\":\"Knox\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Brentwood Academy (TN)\",\"depth_chart_order\":1,\"stats_id\":884083,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dawsonknox\",\"birth_date\":\"1996-11-14\",\"espn_id\":3930086},\"6234\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035215\",\"first_name\":\"Deonte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606527329611,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6234\",\"birth_city\":null,\"fantasy_data_id\":21163,\"years_exp\":1,\"hashtag\":\"#DeonteHarris-NFL-NO-11\",\"search_first_name\":\"deonte\",\"rotowire_id\":14191,\"rotoworld_id\":null,\"active\":true,\"search_rank\":352,\"age\":22,\"full_name\":\"Deonte Harris\",\"sportradar_id\":\"8f1147cb-3040-4128-b113-5813816241ec\",\"pandascore_id\":null,\"yahoo_id\":32398,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Assumption\",\"high_school\":\"Archbishop Curley (MD)\",\"depth_chart_order\":2,\"stats_id\":1166545,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'6\\\"\",\"search_full_name\":\"deonteharris\",\"birth_date\":\"1997-12-04\",\"espn_id\":4411193},\"7080\":{\"position\":\"WR\",\"injury_notes\":\"Bayless will require surgery and a timetable for return is unknown.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Omar\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598486143236,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bayless\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7080\",\"birth_city\":null,\"fantasy_data_id\":21963,\"years_exp\":0,\"hashtag\":\"#OmarBayless-NFL-CAR-17\",\"search_first_name\":\"omar\",\"rotowire_id\":14585,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Omar Bayless\",\"sportradar_id\":\"488cf673-fb92-4701-abd0-4641987642ee\",\"pandascore_id\":null,\"yahoo_id\":33132,\"last_name\":\"Bayless\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Laurel (MS)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'3\\\"\",\"search_full_name\":\"omarbayless\",\"birth_date\":\"1996-12-15\",\"espn_id\":3917166},\"1431\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Emmett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1523393701681,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cleary\",\"depth_chart_position\":null,\"player_id\":\"1431\",\"birth_city\":null,\"fantasy_data_id\":14993,\"years_exp\":7,\"hashtag\":\"#EmmettCleary-NFL-FA-77\",\"search_first_name\":\"emmett\",\"rotowire_id\":10140,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Emmett Cleary\",\"sportradar_id\":\"84442efd-d882-4245-a2ff-13a4595119d9\",\"pandascore_id\":null,\"yahoo_id\":27119,\"last_name\":\"Cleary\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Saint Viator (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'7\\\"\",\"search_full_name\":\"emmettcleary\",\"birth_date\":\"1990-04-27\",\"espn_id\":16288},\"2690\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031696\",\"first_name\":\"Zaire\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1523928001882,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"2690\",\"birth_city\":null,\"fantasy_data_id\":17158,\"years_exp\":5,\"hashtag\":\"#ZaireAnderson-NFL-FA-50\",\"search_first_name\":\"zaire\",\"rotowire_id\":10865,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Zaire Anderson\",\"sportradar_id\":\"5286148b-f209-4a92-b3d7-83e4b05acba4\",\"pandascore_id\":null,\"yahoo_id\":28720,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"zaireanderson\",\"birth_date\":\"1992-08-18\",\"espn_id\":2974300},\"2241\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Glenn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carson\",\"depth_chart_position\":null,\"player_id\":\"2241\",\"birth_city\":null,\"fantasy_data_id\":16643,\"years_exp\":2,\"hashtag\":\"#GlennCarson-NFL-FA-39\",\"search_first_name\":\"glenn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Glenn Carson\",\"sportradar_id\":\"0420ad27-af68-4921-a393-d71388d2d940\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Carson\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"glenncarson\",\"birth_date\":\"1990-12-05\",\"espn_id\":17123},\"1047\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029107\",\"first_name\":\"Kelcie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535414726521,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"1047\",\"birth_city\":null,\"fantasy_data_id\":13789,\"years_exp\":8,\"hashtag\":\"#KelcieMcCray-NFL-FA-37\",\"search_first_name\":\"kelcie\",\"rotowire_id\":8476,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kelcie McCray\",\"sportradar_id\":\"22b30e9f-e24b-4fa1-a038-77e8f6d9f2f9\",\"pandascore_id\":null,\"yahoo_id\":26288,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Hardaway (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kelciemccray\",\"birth_date\":\"1988-09-20\",\"espn_id\":15305},\"4990\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034846\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605049261300,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leonard\",\"depth_chart_position\":\"WLB\",\"player_id\":\"4990\",\"birth_city\":null,\"fantasy_data_id\":19852,\"years_exp\":2,\"hashtag\":\"#DariusLeonard-NFL-IND-53\",\"search_first_name\":\"darius\",\"rotowire_id\":12845,\"rotoworld_id\":13193,\"active\":true,\"search_rank\":1303,\"age\":25,\"full_name\":\"Darius Leonard\",\"sportradar_id\":\"f9a138e3-829d-442f-8345-43d1cdbac225\",\"pandascore_id\":null,\"yahoo_id\":31006,\"last_name\":\"Leonard\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Lake View (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dariusleonard\",\"birth_date\":\"1995-07-27\",\"espn_id\":3056362},\"2125\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peacock\",\"depth_chart_position\":null,\"player_id\":\"2125\",\"birth_city\":null,\"fantasy_data_id\":16462,\"years_exp\":1,\"hashtag\":\"#AndrewPeacock-NFL-FA-1\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Andrew Peacock\",\"sportradar_id\":\"404c313b-6788-45ac-8438-99b224988b8f\",\"pandascore_id\":null,\"yahoo_id\":28008,\"last_name\":\"Peacock\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":504365,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"andrewpeacock\",\"birth_date\":\"1991-01-14\",\"espn_id\":17025},\"744\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027247\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"windt\",\"depth_chart_position\":null,\"player_id\":\"744\",\"birth_city\":null,\"fantasy_data_id\":12383,\"years_exp\":10,\"hashtag\":\"#MikeWindt-NFL-FA-47\",\"search_first_name\":\"mike\",\"rotowire_id\":7178,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Mike Windt\",\"sportradar_id\":\"12aea7fe-1548-4426-a47f-76bac18290bb\",\"pandascore_id\":null,\"yahoo_id\":24337,\"last_name\":\"Windt\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Elder (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikewindt\",\"birth_date\":\"1986-05-29\",\"espn_id\":13777},\"5744\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eldridge\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1533507902281,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"massington\",\"depth_chart_position\":null,\"player_id\":\"5744\",\"birth_city\":null,\"fantasy_data_id\":20653,\"years_exp\":1,\"hashtag\":\"#EldridgeMassington-NFL-NO-86\",\"search_first_name\":\"eldridge\",\"rotowire_id\":13346,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1123,\"age\":24,\"full_name\":\"Eldridge Massington\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31740,\"last_name\":\"Massington\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733071,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"eldridgemassington\",\"birth_date\":\"1995-01-26\",\"espn_id\":3047578},\"1997\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030829\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1588639542434,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wells\",\"depth_chart_position\":\"LT\",\"player_id\":\"1997\",\"birth_city\":null,\"fantasy_data_id\":16268,\"years_exp\":6,\"hashtag\":\"#JoshWells-NFL-TB-72\",\"search_first_name\":\"josh\",\"rotowire_id\":9965,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Josh Wells\",\"sportradar_id\":\"cc58971d-d24e-44a3-9f09-1b2289e92577\",\"pandascore_id\":null,\"yahoo_id\":27882,\"last_name\":\"Wells\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Hanover (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joshwells\",\"birth_date\":\"1991-02-14\",\"espn_id\":17283},\"2198\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"2198\",\"birth_city\":null,\"fantasy_data_id\":16569,\"years_exp\":6,\"hashtag\":\"#BrianDixon-NFL-FA-41\",\"search_first_name\":\"brian\",\"rotowire_id\":9950,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brian Dixon\",\"sportradar_id\":\"e77d826e-5e4e-416d-84aa-d18fd38bcc31\",\"pandascore_id\":null,\"yahoo_id\":27922,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Northwest Missouri State\",\"high_school\":\"Coconut Creek (FL)\",\"depth_chart_order\":null,\"stats_id\":794242,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"briandixon\",\"birth_date\":\"1990-04-26\",\"espn_id\":17139},\"5839\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034967\",\"first_name\":\"Rashan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605547818365,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gary\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"5839\",\"birth_city\":null,\"fantasy_data_id\":20767,\"years_exp\":1,\"hashtag\":\"#RashanGary-NFL-GB-52\",\"search_first_name\":\"rashan\",\"rotowire_id\":13651,\"rotoworld_id\":14017,\"active\":true,\"search_rank\":1534,\"age\":22,\"full_name\":\"Rashan Gary\",\"sportradar_id\":\"99847f76-5bf2-4cbe-8573-9a477f7fb472\",\"pandascore_id\":null,\"yahoo_id\":31844,\"last_name\":\"Gary\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Paramus Catholic (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rashangary\",\"birth_date\":\"1997-12-03\",\"espn_id\":4046523},\"1875\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031296\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596306309927,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"mosley\",\"depth_chart_position\":null,\"player_id\":\"1875\",\"birth_city\":null,\"fantasy_data_id\":16093,\"years_exp\":6,\"hashtag\":\"#CJMosley-NFL-NYJ-57\",\"search_first_name\":\"cj\",\"rotowire_id\":9380,\"rotoworld_id\":9631,\"active\":true,\"search_rank\":777,\"age\":28,\"full_name\":\"C.J. Mosley\",\"sportradar_id\":\"bf5f7564-349a-439a-a8a9-4ddb10448a8d\",\"pandascore_id\":null,\"yahoo_id\":27545,\"last_name\":\"Mosley\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Theodore (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cjmosley\",\"birth_date\":\"1992-06-19\",\"espn_id\":16720},\"567\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacoby\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":null,\"player_id\":\"567\",\"birth_city\":null,\"fantasy_data_id\":11230,\"years_exp\":5,\"hashtag\":\"#JacobyFord-NFL-FA-19\",\"search_first_name\":\"jacoby\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jacoby Ford\",\"sportradar_id\":\"6fbc9af8-1917-41b1-9d4c-1ccc73ed92aa\",\"pandascore_id\":null,\"yahoo_id\":24083,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":324145,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jacobyford\",\"birth_date\":\"1987-07-27\",\"espn_id\":13363},\"1063\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Courtney\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1532806832360,\"status\":\"Non Football Injury\",\"injury_body_part\":null,\"search_last_name\":\"upshaw\",\"depth_chart_position\":null,\"player_id\":\"1063\",\"birth_city\":null,\"fantasy_data_id\":13858,\"years_exp\":8,\"hashtag\":\"#CourtneyUpshaw-NFL-FA-91\",\"search_first_name\":\"courtney\",\"rotowire_id\":8182,\"rotoworld_id\":7478,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Courtney Upshaw\",\"sportradar_id\":\"32c32ac4-e25d-434e-a993-fcaa42116805\",\"pandascore_id\":null,\"yahoo_id\":25745,\"last_name\":\"Upshaw\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Eufaula (AL)\",\"depth_chart_order\":null,\"stats_id\":465622,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'2\\\"\",\"search_full_name\":\"courtneyupshaw\",\"birth_date\":\"1989-12-13\",\"espn_id\":14970},\"2715\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gary\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilkins\",\"depth_chart_position\":null,\"player_id\":\"2715\",\"birth_city\":null,\"fantasy_data_id\":17183,\"years_exp\":0,\"hashtag\":\"#GaryWilkins-NFL-FA-54\",\"search_first_name\":\"gary\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Gary Wilkins\",\"sportradar_id\":\"9790a746-b2b3-4883-96bf-cce0f034b753\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wilkins\",\"metadata\":null,\"college\":\"Furman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"garywilkins\",\"birth_date\":\"1992-02-02\",\"espn_id\":2509739},\"1086\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029303\",\"first_name\":\"Billy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603590057874,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"winn\",\"depth_chart_position\":\"NT\",\"player_id\":\"1086\",\"birth_city\":null,\"fantasy_data_id\":13911,\"years_exp\":8,\"hashtag\":\"#BillyWinn-NFL-GB-93\",\"search_first_name\":\"billy\",\"rotowire_id\":8160,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Billy Winn\",\"sportradar_id\":\"408aff57-2b32-41f7-9520-0064ad14af21\",\"pandascore_id\":null,\"yahoo_id\":25915,\"last_name\":\"Winn\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Las Vegas (NV)\",\"depth_chart_order\":2,\"stats_id\":381799,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"billywinn\",\"birth_date\":\"1989-04-15\",\"espn_id\":15021},\"4980\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034674\",\"first_name\":\"Leighton\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606161314343,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vanderesch\",\"depth_chart_position\":\"MLB\",\"player_id\":\"4980\",\"birth_city\":null,\"fantasy_data_id\":19838,\"years_exp\":2,\"hashtag\":\"#LeightonVanderEsch-NFL-DAL-55\",\"search_first_name\":\"leighton\",\"rotowire_id\":12479,\"rotoworld_id\":13118,\"active\":true,\"search_rank\":1296,\"age\":24,\"full_name\":\"Leighton Vander Esch\",\"sportradar_id\":\"b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc\",\"pandascore_id\":null,\"yahoo_id\":30989,\"last_name\":\"Vander Esch\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Salmon River (ID)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'4\\\"\",\"search_full_name\":\"leightonvanderesch\",\"birth_date\":\"1996-02-08\",\"espn_id\":3138677},\"2941\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Milton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2941\",\"birth_city\":null,\"fantasy_data_id\":17412,\"years_exp\":null,\"hashtag\":\"#MiltonWilliams-NFL-FA-0\",\"search_first_name\":\"milton\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Milton Williams\",\"sportradar_id\":\"3d09bdb7-1141-4b17-b34c-2da22309035b\",\"pandascore_id\":null,\"yahoo_id\":28971,\"last_name\":\"Williams\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":610495,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"miltonwilliams\",\"birth_date\":null,\"espn_id\":null},\"3169\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"telesco\",\"depth_chart_position\":null,\"player_id\":\"3169\",\"birth_city\":null,\"fantasy_data_id\":17928,\"years_exp\":0,\"hashtag\":\"#TomTelesco-NFL-FA-0\",\"search_first_name\":\"tom\",\"rotowire_id\":null,\"rotoworld_id\":9506,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tom Telesco\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Telesco\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tomtelesco\",\"birth_date\":null,\"espn_id\":null},\"4162\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033562\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605063302577,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"switzer\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4162\",\"birth_city\":null,\"fantasy_data_id\":19008,\"years_exp\":3,\"hashtag\":\"#RyanSwitzer-NFL-CLE-10\",\"search_first_name\":\"ryan\",\"rotowire_id\":11879,\"rotoworld_id\":12288,\"active\":true,\"search_rank\":1175,\"age\":26,\"full_name\":\"Ryan Switzer\",\"sportradar_id\":\"6259f62d-e16f-4369-a3be-ca02f79f3026\",\"pandascore_id\":null,\"yahoo_id\":30246,\"last_name\":\"Switzer\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"George Washington (WV)\",\"depth_chart_order\":3,\"stats_id\":728168,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'8\\\"\",\"search_full_name\":\"ryanswitzer\",\"birth_date\":\"1994-11-04\",\"espn_id\":3039725},\"1205\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028899\",\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602274803410,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcleod\",\"depth_chart_position\":\"FS\",\"player_id\":\"1205\",\"birth_city\":null,\"fantasy_data_id\":14419,\"years_exp\":8,\"hashtag\":\"#RodneyMcLeod-NFL-PHI-23\",\"search_first_name\":\"rodney\",\"rotowire_id\":8509,\"rotoworld_id\":8079,\"active\":true,\"search_rank\":685,\"age\":30,\"full_name\":\"Rodney McLeod\",\"sportradar_id\":\"b7253ed5-d2c3-4757-8b54-5176fe9f45df\",\"pandascore_id\":null,\"yahoo_id\":26356,\"last_name\":\"McLeod\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rodneymcleod\",\"birth_date\":\"1990-06-23\",\"espn_id\":15222},\"7008\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693360010,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewerke\",\"depth_chart_position\":null,\"player_id\":\"7008\",\"birth_city\":null,\"fantasy_data_id\":21811,\"years_exp\":0,\"hashtag\":\"#BrianLewerke-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":14530,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1786,\"age\":23,\"full_name\":\"Brian Lewerke\",\"sportradar_id\":\"e8b4f505-28b2-4a87-8bf8-87041afab45c\",\"pandascore_id\":null,\"yahoo_id\":33015,\"last_name\":\"Lewerke\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brianlewerke\",\"birth_date\":\"1996-10-24\",\"espn_id\":3929824},\"3923\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Franky\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okafor\",\"depth_chart_position\":null,\"player_id\":\"3923\",\"birth_city\":null,\"fantasy_data_id\":18751,\"years_exp\":0,\"hashtag\":\"#FrankyOkafor-NFL-FA-17\",\"search_first_name\":\"franky\",\"rotowire_id\":11623,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Franky Okafor\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30050,\"last_name\":\"Okafor\",\"metadata\":null,\"college\":\"SE Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":930622,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"frankyokafor\",\"birth_date\":\"1993-07-28\",\"espn_id\":4038380},\"193\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1514318101289,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durant\",\"depth_chart_position\":null,\"player_id\":\"193\",\"birth_city\":null,\"fantasy_data_id\":4992,\"years_exp\":13,\"hashtag\":\"#JustinDurant-NFL-FA-52\",\"search_first_name\":\"justin\",\"rotowire_id\":5329,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Justin Durant\",\"sportradar_id\":\"ec0aad33-17bb-4689-92ab-847a3f28cd5c\",\"pandascore_id\":null,\"yahoo_id\":8302,\"last_name\":\"Durant\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":\"Wilson (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justindurant\",\"birth_date\":\"1985-09-21\",\"espn_id\":10492},\"7227\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Artavis\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605588321730,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pierce\",\"depth_chart_position\":\"RB\",\"player_id\":\"7227\",\"birth_city\":null,\"fantasy_data_id\":21848,\"years_exp\":0,\"hashtag\":\"#ArtavisPierce-NFL-CHI-46\",\"search_first_name\":\"artavis\",\"rotowire_id\":14881,\"rotoworld_id\":null,\"active\":true,\"search_rank\":412,\"age\":24,\"full_name\":\"Artavis Pierce\",\"sportradar_id\":\"a21cba9e-32a9-494b-b2a1-d454b65872b6\",\"pandascore_id\":null,\"yahoo_id\":33179,\"last_name\":\"Pierce\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Auburndale (FL)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"artavispierce\",\"birth_date\":\"1996-05-17\",\"espn_id\":4042808},\"915\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"helu\",\"depth_chart_position\":null,\"player_id\":\"915\",\"birth_city\":null,\"fantasy_data_id\":13163,\"years_exp\":9,\"hashtag\":\"#RoyHelu-NFL-FA-26\",\"search_first_name\":\"roy\",\"rotowire_id\":7366,\"rotoworld_id\":6593,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Roy Helu\",\"sportradar_id\":\"455347a8-81f8-477b-908d-4e22a71723ae\",\"pandascore_id\":null,\"yahoo_id\":24892,\"last_name\":\"Helu\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"San Ramon Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":406177,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"royhelu\",\"birth_date\":\"1988-12-07\",\"espn_id\":14192},\"3517\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032839\",\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1565964940047,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sharp\",\"depth_chart_position\":null,\"player_id\":\"3517\",\"birth_city\":null,\"fantasy_data_id\":18283,\"years_exp\":4,\"hashtag\":\"#HunterSharp-NFL-FA-15\",\"search_first_name\":\"hunter\",\"rotowire_id\":11016,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Hunter Sharp\",\"sportradar_id\":\"77c7d2cf-2cbf-4901-8a42-863720980754\",\"pandascore_id\":null,\"yahoo_id\":29682,\"last_name\":\"Sharp\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":834672,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"huntersharp\",\"birth_date\":\"1994-04-25\",\"espn_id\":3125354},\"6397\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaylen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1557794415533,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"6397\",\"birth_city\":null,\"fantasy_data_id\":21370,\"years_exp\":1,\"hashtag\":\"#JaylenJohnson-NFL-DEN-91\",\"search_first_name\":\"jaylen\",\"rotowire_id\":14064,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jaylen Johnson\",\"sportradar_id\":\"8d36f034-40f1-48e0-9f3a-789d8876327a\",\"pandascore_id\":null,\"yahoo_id\":32194,\"last_name\":\"Johnson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jaylenjohnson\",\"birth_date\":null,\"espn_id\":3127298},\"2332\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032239\",\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602268201491,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2332\",\"birth_city\":null,\"fantasy_data_id\":16788,\"years_exp\":5,\"hashtag\":\"#ByronJones-NFL-MIA-24\",\"search_first_name\":\"byron\",\"rotowire_id\":10412,\"rotoworld_id\":10447,\"active\":true,\"search_rank\":858,\"age\":28,\"full_name\":\"Byron Jones\",\"sportradar_id\":\"64b1bda8-8c0d-4c17-b8a9-6b5ef292c924\",\"pandascore_id\":null,\"yahoo_id\":28415,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"St. Paul Catholic (CT)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"byronjones\",\"birth_date\":\"1992-09-26\",\"espn_id\":2513035},\"1573\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zac\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stacy\",\"depth_chart_position\":null,\"player_id\":\"1573\",\"birth_city\":null,\"fantasy_data_id\":15221,\"years_exp\":7,\"hashtag\":\"#ZacStacy-NFL-FA-30\",\"search_first_name\":\"zac\",\"rotowire_id\":8770,\"rotoworld_id\":8400,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zac Stacy\",\"sportradar_id\":\"0f034359-b69c-4c34-a648-de78e394ddab\",\"pandascore_id\":null,\"yahoo_id\":26783,\"last_name\":\"Stacy\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Bibb County (AL)\",\"depth_chart_order\":null,\"stats_id\":504352,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'9\\\"\",\"search_full_name\":\"zacstacy\",\"birth_date\":\"1991-04-09\",\"espn_id\":15996},\"4197\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033466\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605660926559,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckenzie\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4197\",\"birth_city\":null,\"fantasy_data_id\":19043,\"years_exp\":3,\"hashtag\":\"#IsaiahMcKenzie-NFL-BUF-19\",\"search_first_name\":\"isaiah\",\"rotowire_id\":11866,\"rotoworld_id\":12380,\"active\":true,\"search_rank\":340,\"age\":25,\"full_name\":\"Isaiah McKenzie\",\"sportradar_id\":\"6130be96-edf3-4361-b666-860c4ec46e7d\",\"pandascore_id\":null,\"yahoo_id\":30285,\"last_name\":\"McKenzie\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"American Heritage (FL)\",\"depth_chart_order\":2,\"stats_id\":823040,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'8\\\"\",\"search_full_name\":\"isaiahmckenzie\",\"birth_date\":\"1995-04-09\",\"espn_id\":3128724},\"5340\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034430\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604815512197,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"WLB\",\"player_id\":\"5340\",\"birth_city\":null,\"fantasy_data_id\":20010,\"years_exp\":2,\"hashtag\":\"#AndreSmith-NFL-BUF-59\",\"search_first_name\":\"andre\",\"rotowire_id\":12498,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1392,\"age\":23,\"full_name\":\"Andre Smith\",\"sportradar_id\":\"f72d4897-8dd9-48d4-9da9-90deb4550d4f\",\"pandascore_id\":null,\"yahoo_id\":31204,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Trinity Christian Academy (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andresmith\",\"birth_date\":\"1997-04-20\",\"espn_id\":3895831},\"6795\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604744148726,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blacklock\",\"depth_chart_position\":\"NT\",\"player_id\":\"6795\",\"birth_city\":null,\"fantasy_data_id\":22054,\"years_exp\":0,\"hashtag\":\"#RossBlacklock-NFL-HOU-90\",\"search_first_name\":\"ross\",\"rotowire_id\":14406,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1889,\"age\":22,\"full_name\":\"Ross Blacklock\",\"sportradar_id\":\"7e2046da-1bdb-49b6-abb1-c35e725d84a3\",\"pandascore_id\":null,\"yahoo_id\":32709,\"last_name\":\"Blacklock\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Elkins (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rossblacklock\",\"birth_date\":\"1998-07-09\",\"espn_id\":4038557},\"6879\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quartney\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604147143251,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"6879\",\"birth_city\":null,\"fantasy_data_id\":21761,\"years_exp\":0,\"hashtag\":\"#QuartneyDavis-NFL-FA-0\",\"search_first_name\":\"quartney\",\"rotowire_id\":14461,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Quartney Davis\",\"sportradar_id\":\"5c54defd-6f6d-4884-9fcb-80343d2d72d3\",\"pandascore_id\":null,\"yahoo_id\":33027,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quartneydavis\",\"birth_date\":\"1998-04-07\",\"espn_id\":4035221},\"1337\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1520705101158,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wing\",\"depth_chart_position\":null,\"player_id\":\"1337\",\"birth_city\":null,\"fantasy_data_id\":14854,\"years_exp\":7,\"hashtag\":\"#BradWing-NFL-FA-9\",\"search_first_name\":\"brad\",\"rotowire_id\":9576,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brad Wing\",\"sportradar_id\":\"97d1bb60-84c7-4ef3-8427-c882e8091781\",\"pandascore_id\":null,\"yahoo_id\":27059,\"last_name\":\"Wing\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Parkview Baptist (LA)\",\"depth_chart_order\":null,\"stats_id\":540529,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bradwing\",\"birth_date\":\"1991-01-27\",\"espn_id\":16241},\"5294\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mikah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holder\",\"depth_chart_position\":null,\"player_id\":\"5294\",\"birth_city\":null,\"fantasy_data_id\":20387,\"years_exp\":1,\"hashtag\":\"#MikahHolder-NFL-WAS-84\",\"search_first_name\":\"mikah\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":950,\"age\":23,\"full_name\":\"Mikah Holder\",\"sportradar_id\":\"7126e287-8c89-4204-b565-433eee67db48\",\"pandascore_id\":null,\"yahoo_id\":31401,\"last_name\":\"Holder\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":840678,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mikahholder\",\"birth_date\":\"1996-01-26\",\"espn_id\":3139946},\"6348\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035202\",\"first_name\":\"Del'Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605303954524,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"6348\",\"birth_city\":null,\"fantasy_data_id\":21306,\"years_exp\":1,\"hashtag\":\"#DelShawnPhillips-NFL-BUF-43\",\"search_first_name\":\"delshawn\",\"rotowire_id\":14025,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1712,\"age\":24,\"full_name\":\"Del'Shawn Phillips\",\"sportradar_id\":\"a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9\",\"pandascore_id\":null,\"yahoo_id\":32118,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Cass Tech (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"delshawnphillips\",\"birth_date\":\"1996-10-09\",\"espn_id\":4240528},\"4923\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rushel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shelliii\",\"depth_chart_position\":null,\"player_id\":\"4923\",\"birth_city\":null,\"fantasy_data_id\":19161,\"years_exp\":1,\"hashtag\":\"#RushelShellIII-NFL-PIT-7\",\"search_first_name\":\"rushel\",\"rotowire_id\":12075,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Rushel Shell III\",\"sportradar_id\":\"cf338764-9e5b-488e-888f-2443b0b5fc64\",\"pandascore_id\":null,\"yahoo_id\":30390,\"last_name\":\"Shell III\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rushelshelliii\",\"birth_date\":\"1993-09-07\",\"espn_id\":2970270},\"6144\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035291\",\"first_name\":\"Trayveon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606261554722,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"6144\",\"birth_city\":null,\"fantasy_data_id\":20990,\"years_exp\":1,\"hashtag\":\"#TrayveonWilliams-NFL-CIN-32\",\"search_first_name\":\"trayveon\",\"rotowire_id\":13548,\"rotoworld_id\":14042,\"active\":true,\"search_rank\":372,\"age\":23,\"full_name\":\"Trayveon Williams\",\"sportradar_id\":\"478fcd24-2617-41d5-a900-b272aa6ef515\",\"pandascore_id\":null,\"yahoo_id\":32014,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"C.E. King (TX)\",\"depth_chart_order\":3,\"stats_id\":910605,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'8\\\"\",\"search_full_name\":\"trayveonwilliams\",\"birth_date\":\"1997-10-18\",\"espn_id\":4035222},\"2835\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"lasike\",\"depth_chart_position\":null,\"player_id\":\"2835\",\"birth_city\":null,\"fantasy_data_id\":17303,\"years_exp\":2,\"hashtag\":\"#PaulLasike-NFL-FA-47\",\"search_first_name\":\"paul\",\"rotowire_id\":10595,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Paul Lasike\",\"sportradar_id\":\"8c41a5e8-4979-4b88-a71b-e25be9ee55e5\",\"pandascore_id\":null,\"yahoo_id\":28808,\"last_name\":\"Lasike\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652606,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"5'11\\\"\",\"search_full_name\":\"paullasike\",\"birth_date\":\"1990-06-18\",\"espn_id\":2970515},\"5173\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"keene\",\"depth_chart_position\":null,\"player_id\":\"5173\",\"birth_city\":null,\"fantasy_data_id\":20154,\"years_exp\":1,\"hashtag\":\"#DaltonKeene-NFL-LAR-98\",\"search_first_name\":\"dalton\",\"rotowire_id\":12680,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dalton Keene\",\"sportradar_id\":\"4122df56-465d-474e-af48-4f0467f69ca8\",\"pandascore_id\":null,\"yahoo_id\":31736,\"last_name\":\"Keene\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'3\\\"\",\"search_full_name\":\"daltonkeene\",\"birth_date\":\"1994-04-26\",\"espn_id\":3047191},\"251\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Montell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"owens\",\"depth_chart_position\":null,\"player_id\":\"251\",\"birth_city\":null,\"fantasy_data_id\":6295,\"years_exp\":9,\"hashtag\":\"#MontellOwens-NFL-FA-34\",\"search_first_name\":\"montell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Montell Owens\",\"sportradar_id\":\"fdb9ea3f-04d0-4151-a255-4e087d3467f5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Owens\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'10\\\"\",\"search_full_name\":\"montellowens\",\"birth_date\":\"1984-05-04\",\"espn_id\":10057},\"630\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"630\",\"birth_city\":null,\"fantasy_data_id\":11574,\"years_exp\":10,\"hashtag\":\"#PhillipAdams-NFL-FA-20\",\"search_first_name\":\"phillip\",\"rotowire_id\":6803,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Phillip Adams\",\"sportradar_id\":\"b76d52a9-eefe-4230-b3c2-01ce7c814339\",\"pandascore_id\":null,\"yahoo_id\":24200,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Rock Hill (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"phillipadams\",\"birth_date\":\"1988-07-20\",\"espn_id\":13308},\"6453\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035045\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604448046009,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"montgomery\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6453\",\"birth_city\":null,\"fantasy_data_id\":21473,\"years_exp\":1,\"hashtag\":\"#DJMontgomery-NFL-NYJ-81\",\"search_first_name\":\"dj\",\"rotowire_id\":14129,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"D.J. Montgomery\",\"sportradar_id\":\"021f2c32-0876-4db3-9605-e829f7d449d7\",\"pandascore_id\":null,\"yahoo_id\":32283,\"last_name\":\"Montgomery\",\"metadata\":null,\"college\":\"Austin Peay\",\"high_school\":\"Madison Central (MS)\",\"depth_chart_order\":4,\"stats_id\":1063397,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'1\\\"\",\"search_full_name\":\"djmontgomery\",\"birth_date\":\"1996-11-17\",\"espn_id\":4249030},\"4987\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034345\",\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603036507944,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ragnow\",\"depth_chart_position\":\"C\",\"player_id\":\"4987\",\"birth_city\":null,\"fantasy_data_id\":19845,\"years_exp\":2,\"hashtag\":\"#FrankRagnow-NFL-DET-77\",\"search_first_name\":\"frank\",\"rotowire_id\":12888,\"rotoworld_id\":13116,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Frank Ragnow\",\"sportradar_id\":\"44176cc9-9025-4dec-a790-fbfa57686a6c\",\"pandascore_id\":null,\"yahoo_id\":30990,\"last_name\":\"Ragnow\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Chanhassen (MN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'5\\\"\",\"search_full_name\":\"frankragnow\",\"birth_date\":\"1996-05-17\",\"espn_id\":3128689},\"3668\":{\"position\":\"TE\",\"injury_notes\":\"Perkins timetable for return is unknown.\",\"birth_country\":null,\"gsis_id\":\"00-0032599\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1598484043443,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"perkins\",\"depth_chart_position\":\"TE\",\"player_id\":\"3668\",\"birth_city\":null,\"fantasy_data_id\":18468,\"years_exp\":4,\"hashtag\":\"#JoshuaPerkins-NFL-PHI-81\",\"search_first_name\":\"joshua\",\"rotowire_id\":11317,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joshua Perkins\",\"sportradar_id\":\"9c18801d-bdaa-4036-9663-24280c763bcf\",\"pandascore_id\":null,\"yahoo_id\":29654,\"last_name\":\"Perkins\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Gahr (CA)\",\"depth_chart_order\":5,\"stats_id\":608012,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshuaperkins\",\"birth_date\":\"1993-08-05\",\"espn_id\":2578377},\"6986\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nigel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596675314820,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"warrior\",\"depth_chart_position\":null,\"player_id\":\"6986\",\"birth_city\":null,\"fantasy_data_id\":22098,\"years_exp\":0,\"hashtag\":\"#NigelWarrior-NFL-BAL-39\",\"search_first_name\":\"nigel\",\"rotowire_id\":14675,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Nigel Warrior\",\"sportradar_id\":\"f5fc76fa-4381-4026-b8c0-384cb4dff19b\",\"pandascore_id\":null,\"yahoo_id\":33004,\"last_name\":\"Warrior\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Peachtree Ridge (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nigelwarrior\",\"birth_date\":\"1997-12-14\",\"espn_id\":null},\"4616\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033776\",\"first_name\":\"Gimel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1564933856686,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"president\",\"depth_chart_position\":null,\"player_id\":\"4616\",\"birth_city\":null,\"fantasy_data_id\":19507,\"years_exp\":3,\"hashtag\":\"#GimelPresident-NFL-FA-54\",\"search_first_name\":\"gimel\",\"rotowire_id\":12415,\"rotoworld_id\":12891,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Gimel President\",\"sportradar_id\":\"69abeeed-ad7d-46a8-a1a2-ce0c0a1c3afe\",\"pandascore_id\":null,\"yahoo_id\":30803,\"last_name\":\"President\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693981,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"gimelpresident\",\"birth_date\":\"1994-06-24\",\"espn_id\":2971022},\"860\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Armon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"binns\",\"depth_chart_position\":null,\"player_id\":\"860\",\"birth_city\":null,\"fantasy_data_id\":12978,\"years_exp\":3,\"hashtag\":\"#ArmonBinns-NFL-FA-14\",\"search_first_name\":\"armon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Armon Binns\",\"sportradar_id\":\"f61e4257-bad8-4b5f-b3eb-8962da5f2113\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Binns\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":382259,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"armonbinns\",\"birth_date\":\"1989-09-08\",\"espn_id\":14223},\"PIT\":{\"team\":\"PIT\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"PIT\",\"last_name\":\"Steelers\",\"injury_status\":null,\"first_name\":\"Pittsburgh\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"4145\":{\"position\":\"LB\",\"injury_notes\":\"Biegel is expected to miss the 2020 season due the injury sustained in practice.\",\"birth_country\":null,\"gsis_id\":\"00-0033939\",\"first_name\":\"Vince\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597898430676,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"biegel\",\"depth_chart_position\":null,\"player_id\":\"4145\",\"birth_city\":null,\"fantasy_data_id\":18991,\"years_exp\":3,\"hashtag\":\"#VinceBiegel-NFL-MIA-47\",\"search_first_name\":\"vince\",\"rotowire_id\":11959,\"rotoworld_id\":12261,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Vince Biegel\",\"sportradar_id\":\"28b0d2fd-18d0-442e-a9ec-70b2f8065ff2\",\"pandascore_id\":null,\"yahoo_id\":30221,\"last_name\":\"Biegel\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Lincoln (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vincebiegel\",\"birth_date\":\"1993-07-02\",\"espn_id\":2977798},\"1478\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030579\",\"first_name\":\"Menelik\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1536463204673,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"1478\",\"birth_city\":null,\"fantasy_data_id\":15073,\"years_exp\":7,\"hashtag\":\"#MenelikWatson-NFL-FA-75\",\"search_first_name\":\"menelik\",\"rotowire_id\":8735,\"rotoworld_id\":8416,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Menelik Watson\",\"sportradar_id\":\"e584c525-2f4e-4d29-95c5-1d16138834e5\",\"pandascore_id\":null,\"yahoo_id\":26665,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"menelikwatson\",\"birth_date\":\"1988-12-22\",\"espn_id\":15871},\"3340\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032429\",\"first_name\":\"Jerell\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599335157218,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"TE\",\"player_id\":\"3340\",\"birth_city\":null,\"fantasy_data_id\":18101,\"years_exp\":4,\"hashtag\":\"#JerellAdams-NFL-BAL-47\",\"search_first_name\":\"jerell\",\"rotowire_id\":10876,\"rotoworld_id\":null,\"active\":true,\"search_rank\":526,\"age\":27,\"full_name\":\"Jerell Adams\",\"sportradar_id\":\"47426d59-7af4-4714-8050-a85a0ae70f65\",\"pandascore_id\":null,\"yahoo_id\":29418,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Scott's Branch (SC)\",\"depth_chart_order\":1,\"stats_id\":694014,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jerelladams\",\"birth_date\":\"1992-12-31\",\"espn_id\":2978727},\"5820\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"BenJarvus\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greenellis\",\"depth_chart_position\":null,\"player_id\":\"5820\",\"birth_city\":null,\"fantasy_data_id\":462,\"years_exp\":12,\"hashtag\":\"#BenJarvusGreenEllis-NFL-FA-42\",\"search_first_name\":\"benjarvus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"BenJarvus Green-Ellis\",\"sportradar_id\":\"7f73e63f-6875-4883-9113-baee8fb7bd5c\",\"pandascore_id\":null,\"yahoo_id\":900039,\"last_name\":\"Green-Ellis\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"benjarvusgreenellis\",\"birth_date\":\"1985-07-02\",\"espn_id\":null},\"34\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pierre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"34\",\"birth_city\":null,\"fantasy_data_id\":957,\"years_exp\":13,\"hashtag\":\"#PierreThomas-NFL-FA-39\",\"search_first_name\":\"pierre\",\"rotowire_id\":5517,\"rotoworld_id\":4503,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Pierre Thomas\",\"sportradar_id\":\"e2782d05-3e61-4c4f-93a6-70eed054e5ba\",\"pandascore_id\":null,\"yahoo_id\":8561,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"TF South (IL)\",\"depth_chart_order\":null,\"stats_id\":215734,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"pierrethomas\",\"birth_date\":\"1984-12-18\",\"espn_id\":10713},\"6850\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Harrison\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606137012014,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":\"TE\",\"player_id\":\"6850\",\"birth_city\":null,\"fantasy_data_id\":21783,\"years_exp\":0,\"hashtag\":\"#HarrisonBryant-NFL-CLE-88\",\"search_first_name\":\"harrison\",\"rotowire_id\":14576,\"rotoworld_id\":null,\"active\":true,\"search_rank\":422,\"age\":22,\"full_name\":\"Harrison Bryant\",\"sportradar_id\":\"f58a5899-8b78-46e8-a29a-ba6273b7d872\",\"pandascore_id\":null,\"yahoo_id\":32785,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"John Milledge Academy (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"harrisonbryant\",\"birth_date\":\"1998-04-23\",\"espn_id\":4040774},\"1800\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031299\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1582607735513,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":null,\"player_id\":\"1800\",\"birth_city\":null,\"fantasy_data_id\":15974,\"years_exp\":6,\"hashtag\":\"#JordanMatthews-NFL-SF-81\",\"search_first_name\":\"jordan\",\"rotowire_id\":9273,\"rotoworld_id\":9420,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jordan Matthews\",\"sportradar_id\":\"7b96a836-666b-47b6-a0a7-9dbb0b4c53e8\",\"pandascore_id\":null,\"yahoo_id\":27570,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Madison Academy (AL)\",\"depth_chart_order\":null,\"stats_id\":555648,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanmatthews\",\"birth_date\":\"1992-07-16\",\"espn_id\":16763},\"1340\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030561\",\"first_name\":\"Lane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606528529508,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RT\",\"player_id\":\"1340\",\"birth_city\":null,\"fantasy_data_id\":14857,\"years_exp\":7,\"hashtag\":\"#LaneJohnson-NFL-PHI-65\",\"search_first_name\":\"lane\",\"rotowire_id\":8728,\"rotoworld_id\":8393,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Lane Johnson\",\"sportradar_id\":\"3edf64e6-603b-4437-a3be-53fe030c6f56\",\"pandascore_id\":null,\"yahoo_id\":26627,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Groveton (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'6\\\"\",\"search_full_name\":\"lanejohnson\",\"birth_date\":\"1990-05-08\",\"espn_id\":15797},\"1071\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029632\",\"first_name\":\"Mohamed\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606425659126,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sanu\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1071\",\"birth_city\":null,\"fantasy_data_id\":13878,\"years_exp\":8,\"hashtag\":\"#MohamedSanu-NFL-DET-12\",\"search_first_name\":\"mohamed\",\"rotowire_id\":8026,\"rotoworld_id\":7433,\"active\":true,\"search_rank\":664,\"age\":31,\"full_name\":\"Mohamed Sanu\",\"sportradar_id\":\"1726a359-9444-4761-a1f2-cb35ee6fa60e\",\"pandascore_id\":null,\"yahoo_id\":25793,\"last_name\":\"Sanu\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"South Brunswick (NJ)\",\"depth_chart_order\":2,\"stats_id\":494313,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mohamedsanu\",\"birth_date\":\"1989-08-23\",\"espn_id\":14922},\"1504\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030275\",\"first_name\":\"Demontre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1517874601688,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hurst\",\"depth_chart_position\":null,\"player_id\":\"1504\",\"birth_city\":null,\"fantasy_data_id\":15105,\"years_exp\":7,\"hashtag\":\"#DemontreHurst-NFL-FA-20\",\"search_first_name\":\"demontre\",\"rotowire_id\":9874,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Demontre Hurst\",\"sportradar_id\":\"8076f480-6c59-4aa3-8e19-71a9d5227e4b\",\"pandascore_id\":null,\"yahoo_id\":26939,\"last_name\":\"Hurst\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Lancaster (TX)\",\"depth_chart_order\":null,\"stats_id\":500581,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"demontrehurst\",\"birth_date\":\"1991-03-24\",\"espn_id\":16144},\"3227\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033059\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1576797611888,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"3227\",\"birth_city\":null,\"fantasy_data_id\":17988,\"years_exp\":4,\"hashtag\":\"#TJGreen-NFL-ATL-24\",\"search_first_name\":\"tj\",\"rotowire_id\":11045,\"rotoworld_id\":null,\"active\":true,\"search_rank\":977,\"age\":25,\"full_name\":\"T.J. Green\",\"sportradar_id\":\"486c2ff3-5e42-4bad-9849-2084ad0af423\",\"pandascore_id\":null,\"yahoo_id\":29291,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Sylacauga (AL)\",\"depth_chart_order\":null,\"stats_id\":733745,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tjgreen\",\"birth_date\":\"1995-03-15\",\"espn_id\":3045128},\"3084\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rex\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":null,\"player_id\":\"3084\",\"birth_city\":null,\"fantasy_data_id\":17834,\"years_exp\":0,\"hashtag\":\"#RexRyan-NFL-FA-0\",\"search_first_name\":\"rex\",\"rotowire_id\":null,\"rotoworld_id\":8357,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rex Ryan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rexryan\",\"birth_date\":null,\"espn_id\":null},\"1107\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029697\",\"first_name\":\"Coby\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1529874901586,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleener\",\"depth_chart_position\":null,\"player_id\":\"1107\",\"birth_city\":null,\"fantasy_data_id\":13997,\"years_exp\":8,\"hashtag\":\"#CobyFleener-NFL-FA-82\",\"search_first_name\":\"coby\",\"rotowire_id\":8064,\"rotoworld_id\":7418,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Coby Fleener\",\"sportradar_id\":\"9102665d-a658-4264-81c3-b9810776ddf0\",\"pandascore_id\":null,\"yahoo_id\":25744,\"last_name\":\"Fleener\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Joliet Catholic Academy (IL)\",\"depth_chart_order\":null,\"stats_id\":399848,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'6\\\"\",\"search_full_name\":\"cobyfleener\",\"birth_date\":\"1988-09-20\",\"espn_id\":14900},\"4275\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033583\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1550622011325,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"senior\",\"depth_chart_position\":null,\"player_id\":\"4275\",\"birth_city\":null,\"fantasy_data_id\":19121,\"years_exp\":2,\"hashtag\":\"#JustinSenior-NFL-FA-62\",\"search_first_name\":\"justin\",\"rotowire_id\":11817,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Senior\",\"sportradar_id\":\"367d293e-9fc9-41e4-875f-3f2c1f8565c2\",\"pandascore_id\":null,\"yahoo_id\":30323,\"last_name\":\"Senior\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justinsenior\",\"birth_date\":\"1994-07-08\",\"espn_id\":2971388},\"3437\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lloyd\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carrington\",\"depth_chart_position\":null,\"player_id\":\"3437\",\"birth_city\":null,\"fantasy_data_id\":18201,\"years_exp\":0,\"hashtag\":\"#LloydCarrington-NFL-FA-25\",\"search_first_name\":\"lloyd\",\"rotowire_id\":11385,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lloyd Carrington\",\"sportradar_id\":\"f713a545-3e4b-4a09-9a42-e71498e83186\",\"pandascore_id\":null,\"yahoo_id\":29907,\"last_name\":\"Carrington\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lloydcarrington\",\"birth_date\":\"1993-04-08\",\"espn_id\":2576654},\"6621\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baron\",\"depth_chart_position\":null,\"player_id\":\"6621\",\"birth_city\":null,\"fantasy_data_id\":21429,\"years_exp\":0,\"hashtag\":\"#JohnBaron-NFL-FA-29\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"John Baron\",\"sportradar_id\":\"69a9a9c6-626b-4e96-a11f-21e47b9b9ee1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Baron\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"johnbaron\",\"birth_date\":\"1996-01-25\",\"espn_id\":null},\"3520\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"3520\",\"birth_city\":null,\"fantasy_data_id\":18286,\"years_exp\":0,\"hashtag\":\"#JayLee-NFL-FA-84\",\"search_first_name\":\"jay\",\"rotowire_id\":11252,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jay Lee\",\"sportradar_id\":\"7f35f456-4ac5-4fdf-bbcc-395d0fffb728\",\"pandascore_id\":null,\"yahoo_id\":29780,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jaylee\",\"birth_date\":\"1993-06-29\",\"espn_id\":2577051},\"77\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025503\",\"first_name\":\"Zak\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1596847538580,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"deossie\",\"depth_chart_position\":null,\"player_id\":\"77\",\"birth_city\":null,\"fantasy_data_id\":2194,\"years_exp\":13,\"hashtag\":\"#ZakDeOssie-NFL-FA-51\",\"search_first_name\":\"zak\",\"rotowire_id\":5347,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Zak DeOssie\",\"sportradar_id\":\"c38a3fbc-f9af-4676-b905-4f101a99194d\",\"pandascore_id\":null,\"yahoo_id\":8370,\"last_name\":\"DeOssie\",\"metadata\":null,\"college\":\"Brown\",\"high_school\":\"Phillips Andover Academy (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zakdeossie\",\"birth_date\":\"1984-05-25\",\"espn_id\":10560},\"4383\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033359\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576017346444,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pankey\",\"depth_chart_position\":\"RG\",\"player_id\":\"4383\",\"birth_city\":null,\"fantasy_data_id\":19240,\"years_exp\":3,\"hashtag\":\"#AdamPankey-NFL-MIA-78\",\"search_first_name\":\"adam\",\"rotowire_id\":12073,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Adam Pankey\",\"sportradar_id\":\"478f29fe-7f2e-48a0-b086-b8c509621689\",\"pandascore_id\":null,\"yahoo_id\":30616,\"last_name\":\"Pankey\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Hamilton (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'5\\\"\",\"search_full_name\":\"adampankey\",\"birth_date\":\"1994-02-02\",\"espn_id\":2976649},\"7038\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599248453976,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"RB\",\"player_id\":\"7038\",\"birth_city\":null,\"fantasy_data_id\":21792,\"years_exp\":0,\"hashtag\":\"#DariusAnderson-NFL-IND-40\",\"search_first_name\":\"darius\",\"rotowire_id\":14565,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1784,\"age\":23,\"full_name\":\"Darius Anderson\",\"sportradar_id\":\"9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6\",\"pandascore_id\":null,\"yahoo_id\":33098,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"George Ranch (TX)\",\"depth_chart_order\":7,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dariusanderson\",\"birth_date\":\"1997-09-10\",\"espn_id\":4038533},\"1211\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029587\",\"first_name\":\"Rhett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1583777740563,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ellison\",\"depth_chart_position\":null,\"player_id\":\"1211\",\"birth_city\":null,\"fantasy_data_id\":14445,\"years_exp\":8,\"hashtag\":\"#RhettEllison-NFL-FA-85\",\"search_first_name\":\"rhett\",\"rotowire_id\":8114,\"rotoworld_id\":7580,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Rhett Ellison\",\"sportradar_id\":\"cccc9f16-9508-434f-b7a4-9a29cb0cacf9\",\"pandascore_id\":null,\"yahoo_id\":25838,\"last_name\":\"Ellison\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"St. Francis (CA)\",\"depth_chart_order\":null,\"stats_id\":399295,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rhettellison\",\"birth_date\":\"1988-10-03\",\"espn_id\":15003},\"4158\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033784\",\"first_name\":\"Eddie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606496103889,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"FS\",\"player_id\":\"4158\",\"birth_city\":null,\"fantasy_data_id\":19004,\"years_exp\":3,\"hashtag\":\"#EddieJackson-NFL-CHI-39\",\"search_first_name\":\"eddie\",\"rotowire_id\":11993,\"rotoworld_id\":12297,\"active\":true,\"search_rank\":1173,\"age\":26,\"full_name\":\"Eddie Jackson\",\"sportradar_id\":\"f4c59ced-4d11-4314-a761-ec0883edd3c1\",\"pandascore_id\":null,\"yahoo_id\":30225,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Boyd Anderson (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"eddiejackson\",\"birth_date\":\"1993-12-10\",\"espn_id\":3054847},\"4871\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"munchak\",\"depth_chart_position\":null,\"player_id\":\"4871\",\"birth_city\":null,\"fantasy_data_id\":19772,\"years_exp\":0,\"hashtag\":\"#MikeMunchak-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":8365,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Munchak\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Munchak\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikemunchak\",\"birth_date\":null,\"espn_id\":null},\"3453\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032377\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596496205763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":\"RB\",\"player_id\":\"3453\",\"birth_city\":null,\"fantasy_data_id\":18217,\"years_exp\":4,\"hashtag\":\"#JoshFerguson-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":11005,\"rotoworld_id\":11293,\"active\":true,\"search_rank\":1053,\"age\":27,\"full_name\":\"Josh Ferguson\",\"sportradar_id\":\"1bdc067c-6376-4c35-b9f8-cebbb1ad595f\",\"pandascore_id\":null,\"yahoo_id\":29599,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":14,\"stats_id\":606045,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshferguson\",\"birth_date\":\"1993-05-23\",\"espn_id\":2576165},\"7033\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Debione\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"renfro\",\"depth_chart_position\":null,\"player_id\":\"7033\",\"birth_city\":null,\"fantasy_data_id\":22106,\"years_exp\":0,\"hashtag\":\"#DebioneRenfro-NFL-FA-0\",\"search_first_name\":\"debione\",\"rotowire_id\":14492,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1924,\"age\":21,\"full_name\":\"Debione Renfro\",\"sportradar_id\":\"214a4622-6442-4921-8498-9b1ce8735acb\",\"pandascore_id\":null,\"yahoo_id\":33270,\"last_name\":\"Renfro\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'2\\\"\",\"search_full_name\":\"debionerenfro\",\"birth_date\":\"1999-01-19\",\"espn_id\":4240912},\"335\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1527804901537,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wood\",\"depth_chart_position\":null,\"player_id\":\"335\",\"birth_city\":null,\"fantasy_data_id\":8316,\"years_exp\":11,\"hashtag\":\"#EricWood-NFL-FA-70\",\"search_first_name\":\"eric\",\"rotowire_id\":6101,\"rotoworld_id\":5305,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Eric Wood\",\"sportradar_id\":\"6d6784cf-95b7-421c-aacb-26f58a7def9f\",\"pandascore_id\":null,\"yahoo_id\":9292,\"last_name\":\"Wood\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Elder (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ericwood\",\"birth_date\":\"1986-03-18\",\"espn_id\":12627},\"6877\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587842441605,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ismael\",\"depth_chart_position\":\"C\",\"player_id\":\"6877\",\"birth_city\":null,\"fantasy_data_id\":21945,\"years_exp\":0,\"hashtag\":\"#KeithIsmael-NFL-WAS-60\",\"search_first_name\":\"keith\",\"rotowire_id\":14662,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Keith Ismael\",\"sportradar_id\":\"446f9da4-8ca7-4552-9674-e0391ae2a2d6\",\"pandascore_id\":null,\"yahoo_id\":32826,\"last_name\":\"Ismael\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Sacred Heart Cathedral (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keithismael\",\"birth_date\":\"1998-07-25\",\"espn_id\":4036831},\"3438\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032916\",\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603230339758,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3438\",\"birth_city\":null,\"fantasy_data_id\":18202,\"years_exp\":4,\"hashtag\":\"#TrevorWilliams-NFL-PHI-41\",\"search_first_name\":\"trevor\",\"rotowire_id\":11494,\"rotoworld_id\":11610,\"active\":true,\"search_rank\":1050,\"age\":27,\"full_name\":\"Trevor Williams\",\"sportradar_id\":\"e7f4b773-e944-4b62-a67b-fa0968862a37\",\"pandascore_id\":null,\"yahoo_id\":29534,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Calvert Hall (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"trevorwilliams\",\"birth_date\":\"1993-09-15\",\"espn_id\":2979605},\"3174\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033072\",\"first_name\":\"Leonard\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605654926066,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"floyd\",\"depth_chart_position\":\"SLB\",\"player_id\":\"3174\",\"birth_city\":null,\"fantasy_data_id\":17935,\"years_exp\":4,\"hashtag\":\"#LeonardFloyd-NFL-LAR-54\",\"search_first_name\":\"leonard\",\"rotowire_id\":11034,\"rotoworld_id\":11334,\"active\":true,\"search_rank\":951,\"age\":28,\"full_name\":\"Leonard Floyd\",\"sportradar_id\":\"13c4b449-65e4-4a3e-9152-85e9cbb2b8c6\",\"pandascore_id\":null,\"yahoo_id\":29243,\"last_name\":\"Floyd\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Dodge County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"leonardfloyd\",\"birth_date\":\"1992-09-08\",\"espn_id\":3043136},\"2548\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031630\",\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597010151626,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":\"FS\",\"player_id\":\"2548\",\"birth_city\":null,\"fantasy_data_id\":17008,\"years_exp\":5,\"hashtag\":\"#AkeemKing-NFL-FA-36\",\"search_first_name\":\"akeem\",\"rotowire_id\":10509,\"rotoworld_id\":null,\"active\":true,\"search_rank\":910,\"age\":28,\"full_name\":\"Akeem King\",\"sportradar_id\":\"76392d70-bbcb-429c-82df-853b72a926de\",\"pandascore_id\":null,\"yahoo_id\":28637,\"last_name\":\"King\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Nipomo (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"akeemking\",\"birth_date\":\"1992-08-29\",\"espn_id\":2509574},\"3712\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fuehne\",\"depth_chart_position\":\"TE\",\"player_id\":\"3712\",\"birth_city\":null,\"fantasy_data_id\":18519,\"years_exp\":0,\"hashtag\":\"#AdamFuehne-NFL-FA-86\",\"search_first_name\":\"adam\",\"rotowire_id\":11333,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Adam Fuehne\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29778,\"last_name\":\"Fuehne\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":599207,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'7\\\"\",\"search_full_name\":\"adamfuehne\",\"birth_date\":\"1993-03-23\",\"espn_id\":2566996},\"2714\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031884\",\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1547964018575,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":null,\"player_id\":\"2714\",\"birth_city\":null,\"fantasy_data_id\":17182,\"years_exp\":5,\"hashtag\":\"#GabeHolmes-NFL-FA-47\",\"search_first_name\":\"gabe\",\"rotowire_id\":10560,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Gabe Holmes\",\"sportradar_id\":\"0f0aa0af-8830-47f8-b83b-ba0aab773594\",\"pandascore_id\":null,\"yahoo_id\":28964,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Saint Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":505752,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"gabeholmes\",\"birth_date\":\"1991-03-29\",\"espn_id\":2468368},\"4939\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roderick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"4939\",\"birth_city\":null,\"fantasy_data_id\":19612,\"years_exp\":1,\"hashtag\":\"#RoderickHenderson-NFL-TEN-76\",\"search_first_name\":\"roderick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Roderick Henderson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30749,\"last_name\":\"Henderson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Alabama State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"339\",\"height\":\"6'0\\\"\",\"search_full_name\":\"roderickhenderson\",\"birth_date\":null,\"espn_id\":null},\"1685\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"demens\",\"depth_chart_position\":null,\"player_id\":\"1685\",\"birth_city\":null,\"fantasy_data_id\":15512,\"years_exp\":7,\"hashtag\":\"#KennyDemens-NFL-FA-54\",\"search_first_name\":\"kenny\",\"rotowire_id\":9169,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kenny Demens\",\"sportradar_id\":\"99ea3281-81f8-48d6-a73e-1bb29817b164\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Demens\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Detroit Country Day (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kennydemens\",\"birth_date\":\"1990-02-04\",\"espn_id\":16181},\"919\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028116\",\"first_name\":\"Aldrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567196755092,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"919\",\"birth_city\":null,\"fantasy_data_id\":13171,\"years_exp\":9,\"hashtag\":\"#AldrickRobinson-NFL-FA-8\",\"search_first_name\":\"aldrick\",\"rotowire_id\":7399,\"rotoworld_id\":6685,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Aldrick Robinson\",\"sportradar_id\":\"b030b668-0f41-484f-8e94-9fc576b8af63\",\"pandascore_id\":null,\"yahoo_id\":24965,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":401659,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'10\\\"\",\"search_full_name\":\"aldrickrobinson\",\"birth_date\":\"1988-11-24\",\"espn_id\":14164},\"1814\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031335\",\"first_name\":\"Cyrus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1543953654729,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kouandjio\",\"depth_chart_position\":null,\"player_id\":\"1814\",\"birth_city\":null,\"fantasy_data_id\":15999,\"years_exp\":6,\"hashtag\":\"#CyrusKouandjio-NFL-FA-79\",\"search_first_name\":\"cyrus\",\"rotowire_id\":9287,\"rotoworld_id\":9395,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cyrus Kouandjio\",\"sportradar_id\":\"4c12aa37-07aa-46c9-9890-a5ba23f693fa\",\"pandascore_id\":null,\"yahoo_id\":27572,\"last_name\":\"Kouandjio\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'7\\\"\",\"search_full_name\":\"cyruskouandjio\",\"birth_date\":\"1993-07-21\",\"espn_id\":16796},\"4050\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033215\",\"first_name\":\"Cyril\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605825913843,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grayson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4050\",\"birth_city\":null,\"fantasy_data_id\":18896,\"years_exp\":3,\"hashtag\":\"#CyrilGrayson-NFL-TB-15\",\"search_first_name\":\"cyril\",\"rotowire_id\":12121,\"rotoworld_id\":null,\"active\":true,\"search_rank\":564,\"age\":26,\"full_name\":\"Cyril Grayson\",\"sportradar_id\":\"a138f20f-8a41-4d0e-930a-a16b6cb597b3\",\"pandascore_id\":null,\"yahoo_id\":30111,\"last_name\":\"Grayson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Rummel (LA)\",\"depth_chart_order\":3,\"stats_id\":978117,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"cyrilgrayson\",\"birth_date\":\"1993-12-05\",\"espn_id\":4217370},\"5157\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034477\",\"first_name\":\"Alec\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"5157\",\"birth_city\":null,\"fantasy_data_id\":20084,\"years_exp\":2,\"hashtag\":\"#AlecJames-NFL-FA-75\",\"search_first_name\":\"alec\",\"rotowire_id\":12721,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alec James\",\"sportradar_id\":\"6106a497-f2f9-4ee0-bef6-c6d9c8943d39\",\"pandascore_id\":null,\"yahoo_id\":31307,\"last_name\":\"James\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alecjames\",\"birth_date\":\"1994-09-30\",\"espn_id\":3045268},\"3963\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shahid\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"khan\",\"depth_chart_position\":null,\"player_id\":\"3963\",\"birth_city\":null,\"fantasy_data_id\":18797,\"years_exp\":0,\"hashtag\":\"#ShahidKhan-NFL-FA-0\",\"search_first_name\":\"shahid\",\"rotowire_id\":null,\"rotoworld_id\":9455,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Shahid Khan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Khan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"shahidkhan\",\"birth_date\":null,\"espn_id\":null},\"6860\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602516325918,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davisgaither\",\"depth_chart_position\":\"LB\",\"player_id\":\"6860\",\"birth_city\":null,\"fantasy_data_id\":21999,\"years_exp\":0,\"hashtag\":\"#AkeemDavisGaither-NFL-CIN-59\",\"search_first_name\":\"akeem\",\"rotowire_id\":14661,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1874,\"age\":23,\"full_name\":\"Akeem Davis-Gaither\",\"sportradar_id\":\"d152b2d5-402d-47f4-a6d1-7870e5a32df5\",\"pandascore_id\":null,\"yahoo_id\":32777,\"last_name\":\"Davis-Gaither\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Thomasville (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"akeemdavisgaither\",\"birth_date\":\"1997-09-21\",\"espn_id\":3917142},\"5956\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035295\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596206416378,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"prince\",\"depth_chart_position\":null,\"player_id\":\"5956\",\"birth_city\":null,\"fantasy_data_id\":20917,\"years_exp\":1,\"hashtag\":\"#IsaiahPrince-NFL-CIN-71\",\"search_first_name\":\"isaiah\",\"rotowire_id\":13783,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Isaiah Prince\",\"sportradar_id\":\"897df186-8ae8-4eaa-8a83-90952b47ab55\",\"pandascore_id\":null,\"yahoo_id\":32034,\"last_name\":\"Prince\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Eleanor Roosevelt (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'7\\\"\",\"search_full_name\":\"isaiahprince\",\"birth_date\":\"1997-07-29\",\"espn_id\":3915532},\"4975\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034842\",\"first_name\":\"Taven\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605118205736,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bryan\",\"depth_chart_position\":\"DT\",\"player_id\":\"4975\",\"birth_city\":null,\"fantasy_data_id\":19846,\"years_exp\":2,\"hashtag\":\"#TavenBryan-NFL-JAX-90\",\"search_first_name\":\"taven\",\"rotowire_id\":12470,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1300,\"age\":24,\"full_name\":\"Taven Bryan\",\"sportradar_id\":\"3971d35c-17f6-400e-8970-86bbf92cc744\",\"pandascore_id\":null,\"yahoo_id\":30999,\"last_name\":\"Bryan\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Natrona County (WY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tavenbryan\",\"birth_date\":\"1996-03-11\",\"espn_id\":3115249},\"1376\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arthur\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"1376\",\"birth_city\":null,\"fantasy_data_id\":14898,\"years_exp\":7,\"hashtag\":\"#ArthurBrown-NFL-FA-44\",\"search_first_name\":\"arthur\",\"rotowire_id\":8710,\"rotoworld_id\":8441,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Arthur Brown\",\"sportradar_id\":\"4c10cfa2-be27-401b-976b-881e267c7545\",\"pandascore_id\":null,\"yahoo_id\":26679,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Wichita East (KS)\",\"depth_chart_order\":null,\"stats_id\":447300,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"arthurbrown\",\"birth_date\":\"1990-06-17\",\"espn_id\":15828},\"6082\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034945\",\"first_name\":\"Corbin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":1597635635425,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kaufusi\",\"depth_chart_position\":null,\"player_id\":\"6082\",\"birth_city\":null,\"fantasy_data_id\":20847,\"years_exp\":1,\"hashtag\":\"#CorbinKaufusi-NFL-NYJ-65\",\"search_first_name\":\"corbin\",\"rotowire_id\":13981,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Corbin Kaufusi\",\"sportradar_id\":\"945aa5ab-3fde-4091-b360-66c2da384f2c\",\"pandascore_id\":null,\"yahoo_id\":32214,\"last_name\":\"Kaufusi\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Timpview (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'9\\\"\",\"search_full_name\":\"corbinkaufusi\",\"birth_date\":\"1993-04-12\",\"espn_id\":2970513},\"3670\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ratelle\",\"depth_chart_position\":null,\"player_id\":\"3670\",\"birth_city\":null,\"fantasy_data_id\":18470,\"years_exp\":1,\"hashtag\":\"#WillRatelle-NFL-FA-0\",\"search_first_name\":\"will\",\"rotowire_id\":11324,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Will Ratelle\",\"sportradar_id\":\"909bc01a-f610-42bc-a275-c6c1a0f6b21e\",\"pandascore_id\":null,\"yahoo_id\":29656,\"last_name\":\"Ratelle\",\"metadata\":null,\"college\":\"North Dakota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608880,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"5'10\\\"\",\"search_full_name\":\"willratelle\",\"birth_date\":\"1993-03-01\",\"espn_id\":2570204},\"6844\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603480554797,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"RT\",\"player_id\":\"6844\",\"birth_city\":null,\"fantasy_data_id\":22022,\"years_exp\":0,\"hashtag\":\"#IsaiahWilson-NFL-TEN-79\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14395,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Isaiah Wilson\",\"sportradar_id\":\"34f2abac-446d-4f6e-b857-5ca54918a4bc\",\"pandascore_id\":null,\"yahoo_id\":32699,\"last_name\":\"Wilson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Georgia\",\"high_school\":\"Poly Prep (NY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'7\\\"\",\"search_full_name\":\"isaiahwilson\",\"birth_date\":\"1999-02-12\",\"espn_id\":4259568},\"7434\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kemah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"siverand\",\"depth_chart_position\":null,\"player_id\":\"7434\",\"birth_city\":null,\"fantasy_data_id\":22413,\"years_exp\":0,\"hashtag\":\"#KemahSiverand-NFL-LV-8\",\"search_first_name\":\"kemah\",\"rotowire_id\":14941,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kemah Siverand\",\"sportradar_id\":\"5a90f110-9291-4688-84d5-2730898ba0bb\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Siverand\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Cypress Ridge (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kemahsiverand\",\"birth_date\":\"1996-11-12\",\"espn_id\":null},\"4650\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033735\",\"first_name\":\"Billy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1588110020009,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4650\",\"birth_city\":null,\"fantasy_data_id\":19547,\"years_exp\":3,\"hashtag\":\"#BillyBrown-NFL-FA-0\",\"search_first_name\":\"billy\",\"rotowire_id\":11848,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Billy Brown\",\"sportradar_id\":\"4571c406-9d68-4b0e-9772-9d6069ef17f3\",\"pandascore_id\":null,\"yahoo_id\":30756,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1050875,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'4\\\"\",\"search_full_name\":\"billybrown\",\"birth_date\":\"1993-03-20\",\"espn_id\":3957543},\"1823\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030864\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1536717302171,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1823\",\"birth_city\":null,\"fantasy_data_id\":16017,\"years_exp\":6,\"hashtag\":\"#AnthonyJohnson-NFL-FA-76\",\"search_first_name\":\"anthony\",\"rotowire_id\":9359,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Anthony Johnson\",\"sportradar_id\":\"e12c1ad8-ba0f-422f-849b-c9cabb1ebb97\",\"pandascore_id\":null,\"yahoo_id\":28097,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":945145,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'2\\\"\",\"search_full_name\":\"anthonyjohnson\",\"birth_date\":\"1993-01-24\",\"espn_id\":17184},\"1322\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Saalim\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hakim\",\"depth_chart_position\":null,\"player_id\":\"1322\",\"birth_city\":null,\"fantasy_data_id\":14819,\"years_exp\":8,\"hashtag\":\"#SaalimHakim-NFL-FA-26\",\"search_first_name\":\"saalim\",\"rotowire_id\":8356,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Saalim Hakim\",\"sportradar_id\":\"955964cc-b369-401f-917e-f07bef340e90\",\"pandascore_id\":null,\"yahoo_id\":26066,\"last_name\":\"Hakim\",\"metadata\":null,\"college\":\"Palomar JC\",\"high_school\":\"Palo Verde (NV)\",\"depth_chart_order\":null,\"stats_id\":567286,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"saalimhakim\",\"birth_date\":\"1990-02-01\",\"espn_id\":15397},\"5377\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034729\",\"first_name\":\"Jamarco\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600302948034,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RG\",\"player_id\":\"5377\",\"birth_city\":null,\"fantasy_data_id\":19998,\"years_exp\":2,\"hashtag\":\"#JamarcoJones-NFL-SEA-73\",\"search_first_name\":\"jamarco\",\"rotowire_id\":12938,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jamarco Jones\",\"sportradar_id\":\"7c84bbbd-6bc1-4d3a-8fe9-263b807a08b2\",\"pandascore_id\":null,\"yahoo_id\":31138,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"De La Salle (IL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jamarcojones\",\"birth_date\":\"1996-06-04\",\"espn_id\":3121417},\"1143\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029256\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535739979936,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reyes\",\"depth_chart_position\":null,\"player_id\":\"1143\",\"birth_city\":null,\"fantasy_data_id\":14135,\"years_exp\":8,\"hashtag\":\"#KendallReyes-NFL-FA-91\",\"search_first_name\":\"kendall\",\"rotowire_id\":8159,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kendall Reyes\",\"sportradar_id\":\"8d7729c6-3a84-4769-8c2c-2ed11557be20\",\"pandascore_id\":null,\"yahoo_id\":25759,\"last_name\":\"Reyes\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Nashua North (NH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kendallreyes\",\"birth_date\":\"1989-09-26\",\"espn_id\":14953},\"1093\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029566\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1573065622377,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"ILB\",\"player_id\":\"1093\",\"birth_city\":null,\"fantasy_data_id\":13941,\"years_exp\":8,\"hashtag\":\"#ZachBrown-NFL-FA-52\",\"search_first_name\":\"zach\",\"rotowire_id\":8183,\"rotoworld_id\":7510,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Zach Brown\",\"sportradar_id\":\"e858a1af-ebbe-4413-9903-ecd96d36a09b\",\"pandascore_id\":null,\"yahoo_id\":25762,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Wilde Lake (MD)\",\"depth_chart_order\":3,\"stats_id\":399446,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zachbrown\",\"birth_date\":\"1989-10-23\",\"espn_id\":14973},\"1669\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marquardt\",\"depth_chart_position\":null,\"player_id\":\"1669\",\"birth_city\":null,\"fantasy_data_id\":15464,\"years_exp\":1,\"hashtag\":\"#LukeMarquardt-NFL-FA-76\",\"search_first_name\":\"luke\",\"rotowire_id\":9140,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Luke Marquardt\",\"sportradar_id\":\"2a5b21e2-e2f1-435b-b05f-aa6b3169554d\",\"pandascore_id\":null,\"yahoo_id\":27272,\"last_name\":\"Marquardt\",\"metadata\":null,\"college\":\"Azuza Pacific\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'8\\\"\",\"search_full_name\":\"lukemarquardt\",\"birth_date\":\"1990-03-23\",\"espn_id\":null},\"5190\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535506840672,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"helms\",\"depth_chart_position\":null,\"player_id\":\"5190\",\"birth_city\":null,\"fantasy_data_id\":20168,\"years_exp\":2,\"hashtag\":\"#CoryHelms-NFL-FA-69\",\"search_first_name\":\"cory\",\"rotowire_id\":12676,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cory Helms\",\"sportradar_id\":\"20d3e2ab-37bc-4976-8b5f-2fc6e15fc87e\",\"pandascore_id\":null,\"yahoo_id\":31414,\"last_name\":\"Helms\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coryhelms\",\"birth_date\":\"1994-12-31\",\"espn_id\":3039782},\"32\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1511720101659,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tamme\",\"depth_chart_position\":null,\"player_id\":\"32\",\"birth_city\":null,\"fantasy_data_id\":852,\"years_exp\":12,\"hashtag\":\"#JacobTamme-NFL-FA-83\",\"search_first_name\":\"jacob\",\"rotowire_id\":5780,\"rotoworld_id\":4885,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jacob Tamme\",\"sportradar_id\":\"e89bed19-f222-41b6-9b85-cc6cccddcd5b\",\"pandascore_id\":null,\"yahoo_id\":8916,\"last_name\":\"Tamme\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Boyle Co. (KY)\",\"depth_chart_order\":null,\"stats_id\":225194,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacobtamme\",\"birth_date\":\"1985-03-15\",\"espn_id\":11373},\"2012\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vaughn\",\"depth_chart_position\":null,\"player_id\":\"2012\",\"birth_city\":null,\"fantasy_data_id\":16288,\"years_exp\":1,\"hashtag\":\"#ChaseVaughn-NFL-FA-49\",\"search_first_name\":\"chase\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chase Vaughn\",\"sportradar_id\":\"b360c614-ada9-42fd-831d-6d35062ecae7\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Vaughn\",\"metadata\":null,\"college\":\"Colorado St - Pueblo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chasevaughn\",\"birth_date\":\"1988-09-04\",\"espn_id\":17438},\"646\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Karlos\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1515708301262,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dansby\",\"depth_chart_position\":null,\"player_id\":\"646\",\"birth_city\":null,\"fantasy_data_id\":11658,\"years_exp\":16,\"hashtag\":\"#KarlosDansby-NFL-FA-56\",\"search_first_name\":\"karlos\",\"rotowire_id\":3898,\"rotoworld_id\":2663,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Karlos Dansby\",\"sportradar_id\":\"4b1c6f89-1bcc-4487-b2ff-0d86b3943618\",\"pandascore_id\":null,\"yahoo_id\":6792,\"last_name\":\"Dansby\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Woodlawn (AL)\",\"depth_chart_order\":null,\"stats_id\":246083,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"karlosdansby\",\"birth_date\":\"1981-11-03\",\"espn_id\":5558},\"4567\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033652\",\"first_name\":\"Channing\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1533242706539,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stribling\",\"depth_chart_position\":null,\"player_id\":\"4567\",\"birth_city\":null,\"fantasy_data_id\":19451,\"years_exp\":3,\"hashtag\":\"#ChanningStribling-NFL-FA-42\",\"search_first_name\":\"channing\",\"rotowire_id\":12030,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Channing Stribling\",\"sportradar_id\":\"7e4cc74a-0ae2-422f-ab7e-dc26fc116d92\",\"pandascore_id\":null,\"yahoo_id\":30549,\"last_name\":\"Stribling\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'1\\\"\",\"search_full_name\":\"channingstribling\",\"birth_date\":\"1994-11-21\",\"espn_id\":3045202},\"3250\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033065\",\"first_name\":\"Le'Raven\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584739809750,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":\"RT\",\"player_id\":\"3250\",\"birth_city\":null,\"fantasy_data_id\":18011,\"years_exp\":4,\"hashtag\":\"#LeRavenClark-NFL-IND-62\",\"search_first_name\":\"leraven\",\"rotowire_id\":10974,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Le'Raven Clark\",\"sportradar_id\":\"d71abd0e-7a69-4e28-a2f3-d8d516f3d8a7\",\"pandascore_id\":null,\"yahoo_id\":29316,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Rockdale (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'5\\\"\",\"search_full_name\":\"leravenclark\",\"birth_date\":\"1993-04-22\",\"espn_id\":2577631},\"5693\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034645\",\"first_name\":\"Beau\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nunn\",\"depth_chart_position\":null,\"player_id\":\"5693\",\"birth_city\":null,\"fantasy_data_id\":20485,\"years_exp\":2,\"hashtag\":\"#BeauNunn-NFL-FA-67\",\"search_first_name\":\"beau\",\"rotowire_id\":13199,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Beau Nunn\",\"sportradar_id\":\"76c7bd95-fe1e-49e1-9a8d-b4d3a18e5df4\",\"pandascore_id\":null,\"yahoo_id\":31640,\"last_name\":\"Nunn\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"beaununn\",\"birth_date\":\"1995-06-12\",\"espn_id\":3049589},\"1656\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1520465101685,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vellano\",\"depth_chart_position\":null,\"player_id\":\"1656\",\"birth_city\":null,\"fantasy_data_id\":15418,\"years_exp\":6,\"hashtag\":\"#JoeVellano-NFL-FA-67\",\"search_first_name\":\"joe\",\"rotowire_id\":9087,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Joe Vellano\",\"sportradar_id\":\"4730e619-a3cf-49e3-9b0c-120bc2aa0fca\",\"pandascore_id\":null,\"yahoo_id\":27236,\"last_name\":\"Vellano\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":399551,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joevellano\",\"birth_date\":\"1988-10-30\",\"espn_id\":16421},\"7020\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587939893864,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"SAM\",\"player_id\":\"7020\",\"birth_city\":null,\"fantasy_data_id\":21978,\"years_exp\":0,\"hashtag\":\"#CamBrown-NFL-NYG-47\",\"search_first_name\":\"cam\",\"rotowire_id\":14596,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1862,\"age\":22,\"full_name\":\"Cam Brown\",\"sportradar_id\":\"65533cd0-792b-42cb-808f-18cbac2e51cb\",\"pandascore_id\":null,\"yahoo_id\":32852,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Bullis (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cambrown\",\"birth_date\":\"1998-04-01\",\"espn_id\":4045165},\"6984\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599694544245,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RB\",\"player_id\":\"6984\",\"birth_city\":null,\"fantasy_data_id\":21774,\"years_exp\":0,\"hashtag\":\"#TonyJones-NFL-NO-37\",\"search_first_name\":\"tony\",\"rotowire_id\":14423,\"rotoworld_id\":null,\"active\":true,\"search_rank\":479,\"age\":23,\"full_name\":\"Tony Jones\",\"sportradar_id\":\"83d4c4c3-3c40-49b1-8b86-25d256a0b5ad\",\"pandascore_id\":null,\"yahoo_id\":33114,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tonyjones\",\"birth_date\":\"1997-11-24\",\"espn_id\":4046676},\"3322\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032424\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602539751384,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"reader\",\"depth_chart_position\":null,\"player_id\":\"3322\",\"birth_city\":null,\"fantasy_data_id\":18083,\"years_exp\":4,\"hashtag\":\"#DJReader-NFL-CIN-98\",\"search_first_name\":\"dj\",\"rotowire_id\":11114,\"rotoworld_id\":11459,\"active\":true,\"search_rank\":1021,\"age\":26,\"full_name\":\"D.J. Reader\",\"sportradar_id\":\"42bb4895-bdfb-40e2-8119-f5b06611bf1b\",\"pandascore_id\":null,\"yahoo_id\":29400,\"last_name\":\"Reader\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Grimsley (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"347\",\"height\":\"6'3\\\"\",\"search_full_name\":\"djreader\",\"birth_date\":\"1994-07-01\",\"espn_id\":2977670},\"5027\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034817\",\"first_name\":\"Geron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605795011196,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"christian\",\"depth_chart_position\":null,\"player_id\":\"5027\",\"birth_city\":null,\"fantasy_data_id\":19894,\"years_exp\":2,\"hashtag\":\"#GeronChristian-NFL-WAS-74\",\"search_first_name\":\"geron\",\"rotowire_id\":12575,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Geron Christian\",\"sportradar_id\":\"ac8909fd-d860-4c28-884f-291ff7cd370e\",\"pandascore_id\":null,\"yahoo_id\":31044,\"last_name\":\"Christian\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Trinity Catholic (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"geronchristian\",\"birth_date\":\"1996-09-10\",\"espn_id\":3916414},\"1728\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027282\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603230939827,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"garland\",\"depth_chart_position\":null,\"player_id\":\"1728\",\"birth_city\":null,\"fantasy_data_id\":15666,\"years_exp\":10,\"hashtag\":\"#BenGarland-NFL-SF-63\",\"search_first_name\":\"ben\",\"rotowire_id\":8427,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ben Garland\",\"sportradar_id\":\"a511a53f-8628-465b-b7ef-79c02dcef127\",\"pandascore_id\":null,\"yahoo_id\":24380,\"last_name\":\"Garland\",\"metadata\":null,\"college\":\"Air Force\",\"high_school\":\"Central (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bengarland\",\"birth_date\":\"1988-04-06\",\"espn_id\":13802},\"3597\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032750\",\"first_name\":\"Davonte\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598663151077,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lambert\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3597\",\"birth_city\":null,\"fantasy_data_id\":18380,\"years_exp\":4,\"hashtag\":\"#DavonteLambert-NFL-FA-0\",\"search_first_name\":\"davonte\",\"rotowire_id\":11413,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1071,\"age\":26,\"full_name\":\"Davonte Lambert\",\"sportradar_id\":\"4efb66e4-7038-4b3f-bbb7-521aa3200760\",\"pandascore_id\":null,\"yahoo_id\":29581,\"last_name\":\"Lambert\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davontelambert\",\"birth_date\":\"1994-06-23\",\"espn_id\":3121601},\"238\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dashon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goldson\",\"depth_chart_position\":null,\"player_id\":\"238\",\"birth_city\":null,\"fantasy_data_id\":5940,\"years_exp\":13,\"hashtag\":\"#DashonGoldson-NFL-FA-38\",\"search_first_name\":\"dashon\",\"rotowire_id\":5531,\"rotoworld_id\":4444,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Dashon Goldson\",\"sportradar_id\":\"8fd45946-17e7-4e01-91df-bb866f268309\",\"pandascore_id\":null,\"yahoo_id\":8380,\"last_name\":\"Goldson\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Narbonne (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dashongoldson\",\"birth_date\":\"1984-09-18\",\"espn_id\":10569},\"3823\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carlson\",\"depth_chart_position\":\"LG\",\"player_id\":\"3823\",\"birth_city\":null,\"fantasy_data_id\":18640,\"years_exp\":0,\"hashtag\":\"#SamCarlson-NFL-FA-69\",\"search_first_name\":\"sam\",\"rotowire_id\":11396,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sam Carlson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29942,\"last_name\":\"Carlson\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'4\\\"\",\"search_full_name\":\"samcarlson\",\"birth_date\":\"1993-04-30\",\"espn_id\":2575649},\"1683\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"1683\",\"birth_city\":null,\"fantasy_data_id\":15503,\"years_exp\":7,\"hashtag\":\"#CharlesJames-NFL-FA-34\",\"search_first_name\":\"charles\",\"rotowire_id\":9176,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Charles James\",\"sportradar_id\":\"7c4c868b-425b-4b4d-9ca2-3a33d6793342\",\"pandascore_id\":null,\"yahoo_id\":27320,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Charleston Southern\",\"high_school\":\"Mandarin\",\"depth_chart_order\":null,\"stats_id\":517128,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'9\\\"\",\"search_full_name\":\"charlesjames\",\"birth_date\":\"1990-05-14\",\"espn_id\":16561},\"3750\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"randolph\",\"depth_chart_position\":null,\"player_id\":\"3750\",\"birth_city\":null,\"fantasy_data_id\":18562,\"years_exp\":1,\"hashtag\":\"#BrianRandolph-NFL-FA-43\",\"search_first_name\":\"brian\",\"rotowire_id\":11578,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brian Randolph\",\"sportradar_id\":\"e2f2c002-176f-4912-be1c-cf782db809d6\",\"pandascore_id\":null,\"yahoo_id\":29740,\"last_name\":\"Randolph\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brianrandolph\",\"birth_date\":\"1992-10-20\",\"espn_id\":2577709},\"5329\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034680\",\"first_name\":\"Armani\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1582302334470,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watts\",\"depth_chart_position\":\"FS\",\"player_id\":\"5329\",\"birth_city\":null,\"fantasy_data_id\":19939,\"years_exp\":2,\"hashtag\":\"#ArmaniWatts-NFL-KC-23\",\"search_first_name\":\"armani\",\"rotowire_id\":12781,\"rotoworld_id\":13250,\"active\":true,\"search_rank\":1355,\"age\":24,\"full_name\":\"Armani Watts\",\"sportradar_id\":\"046b6d1f-cc56-486c-8d45-45b3a150b141\",\"pandascore_id\":null,\"yahoo_id\":31094,\"last_name\":\"Watts\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"North Forney (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"armaniwatts\",\"birth_date\":\"1996-03-19\",\"espn_id\":3122136},\"1715\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cooper\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"helfet\",\"depth_chart_position\":null,\"player_id\":\"1715\",\"birth_city\":null,\"fantasy_data_id\":15630,\"years_exp\":8,\"hashtag\":\"#CooperHelfet-NFL-FA-83\",\"search_first_name\":\"cooper\",\"rotowire_id\":9709,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Cooper Helfet\",\"sportradar_id\":\"eb335ec7-719c-4a24-a7b2-c6518d03c022\",\"pandascore_id\":null,\"yahoo_id\":26518,\"last_name\":\"Helfet\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Redwood (CA)\",\"depth_chart_order\":null,\"stats_id\":540681,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cooperhelfet\",\"birth_date\":\"1989-06-02\",\"espn_id\":15670},\"2131\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"webster\",\"depth_chart_position\":null,\"player_id\":\"2131\",\"birth_city\":null,\"fantasy_data_id\":16468,\"years_exp\":5,\"hashtag\":\"#LarryWebster-NFL-FA-78\",\"search_first_name\":\"larry\",\"rotowire_id\":9610,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Larry Webster\",\"sportradar_id\":\"e4092031-ecee-4ac8-a5a4-a5038459554e\",\"pandascore_id\":null,\"yahoo_id\":27664,\"last_name\":\"Webster\",\"metadata\":null,\"college\":\"Bloomsburg\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'6\\\"\",\"search_full_name\":\"larrywebster\",\"birth_date\":\"1990-02-14\",\"espn_id\":16869},\"3985\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vic\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547060142242,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fangio\",\"depth_chart_position\":null,\"player_id\":\"3985\",\"birth_city\":null,\"fantasy_data_id\":18820,\"years_exp\":0,\"hashtag\":\"#VicFangio-NFL-FA-0\",\"search_first_name\":\"vic\",\"rotowire_id\":null,\"rotoworld_id\":9495,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Vic Fangio\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fangio\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"vicfangio\",\"birth_date\":null,\"espn_id\":null},\"189\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flowers\",\"depth_chart_position\":null,\"player_id\":\"189\",\"birth_city\":null,\"fantasy_data_id\":4939,\"years_exp\":12,\"hashtag\":\"#BrandonFlowers-NFL-FA-24\",\"search_first_name\":\"brandon\",\"rotowire_id\":5596,\"rotoworld_id\":4733,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Brandon Flowers\",\"sportradar_id\":\"ea274548-7a78-4d70-a35a-26d55d485676\",\"pandascore_id\":null,\"yahoo_id\":8812,\"last_name\":\"Flowers\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Atlantic Community (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brandonflowers\",\"birth_date\":\"1986-02-18\",\"espn_id\":11269},\"2435\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031580\",\"first_name\":\"Shaquille\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603320340411,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mason\",\"depth_chart_position\":\"RG\",\"player_id\":\"2435\",\"birth_city\":null,\"fantasy_data_id\":16892,\"years_exp\":5,\"hashtag\":\"#ShaquilleMason-NFL-NE-69\",\"search_first_name\":\"shaquille\",\"rotowire_id\":10292,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Shaquille Mason\",\"sportradar_id\":\"a8ac7c7d-301a-4e1e-afd4-04f88cad848e\",\"pandascore_id\":null,\"yahoo_id\":28519,\"last_name\":\"Mason\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Georgia Tech\",\"high_school\":\"Columbia Central (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'1\\\"\",\"search_full_name\":\"shaquillemason\",\"birth_date\":\"1993-08-28\",\"espn_id\":2576917},\"543\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":null,\"player_id\":\"543\",\"birth_city\":null,\"fantasy_data_id\":11101,\"years_exp\":10,\"hashtag\":\"#GarrettGraham-NFL-FA-80\",\"search_first_name\":\"garrett\",\"rotowire_id\":6534,\"rotoworld_id\":5900,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Garrett Graham\",\"sportradar_id\":\"59ae165a-f7ae-4c36-829d-81d031fc3061\",\"pandascore_id\":null,\"yahoo_id\":24093,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Memorial (NJ)\",\"depth_chart_order\":null,\"stats_id\":300561,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrettgraham\",\"birth_date\":\"1986-08-04\",\"espn_id\":13371},\"1011\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026950\",\"first_name\":\"A.Q.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606581332662,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shipley\",\"depth_chart_position\":\"C\",\"player_id\":\"1011\",\"birth_city\":null,\"fantasy_data_id\":13610,\"years_exp\":11,\"hashtag\":\"#AQShipley-NFL-TB-62\",\"search_first_name\":\"aq\",\"rotowire_id\":6215,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"A.Q. Shipley\",\"sportradar_id\":\"f7163bae-d4da-4d38-847e-e0315605b9d0\",\"pandascore_id\":null,\"yahoo_id\":9490,\"last_name\":\"Shipley\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Moon Area (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'1\\\"\",\"search_full_name\":\"aqshipley\",\"birth_date\":\"1986-05-22\",\"espn_id\":12726},\"4338\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lavern\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":null,\"player_id\":\"4338\",\"birth_city\":null,\"fantasy_data_id\":19194,\"years_exp\":2,\"hashtag\":\"#LavernJacobs-NFL-FA-88\",\"search_first_name\":\"lavern\",\"rotowire_id\":12411,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lavern Jacobs\",\"sportradar_id\":\"62eacf46-e0cc-4890-91ef-e990757d0858\",\"pandascore_id\":null,\"yahoo_id\":30505,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651139,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lavernjacobs\",\"birth_date\":\"1993-01-09\",\"espn_id\":2976222},\"3729\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032652\",\"first_name\":\"Herb\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567105238978,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"waters\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3729\",\"birth_city\":null,\"fantasy_data_id\":18539,\"years_exp\":4,\"hashtag\":\"#HerbWaters-NFL-FA-35\",\"search_first_name\":\"herb\",\"rotowire_id\":11567,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Herb Waters\",\"sportradar_id\":\"c70d3c47-a3a9-4f72-abc2-3d022ab9d702\",\"pandascore_id\":null,\"yahoo_id\":29749,\"last_name\":\"Waters\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":691593,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'0\\\"\",\"search_full_name\":\"herbwaters\",\"birth_date\":\"1992-11-10\",\"espn_id\":2969976},\"5466\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034805\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1602432317132,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"franklinmyers\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5466\",\"birth_city\":null,\"fantasy_data_id\":19942,\"years_exp\":2,\"hashtag\":\"#JohnFranklinMyers-NFL-NYJ-91\",\"search_first_name\":\"john\",\"rotowire_id\":12972,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1357,\"age\":24,\"full_name\":\"John Franklin-Myers\",\"sportradar_id\":\"e08d71dd-58d9-4295-bcf8-9a6faf59c333\",\"pandascore_id\":null,\"yahoo_id\":31105,\"last_name\":\"Franklin-Myers\",\"metadata\":null,\"college\":\"Stephen F. Austin\",\"high_school\":\"Greenville (TX)\",\"depth_chart_order\":2,\"stats_id\":835955,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnfranklinmyers\",\"birth_date\":\"1996-09-26\",\"espn_id\":3120464},\"4102\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033904\",\"first_name\":\"Dion\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601667048400,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dawkins\",\"depth_chart_position\":\"LT\",\"player_id\":\"4102\",\"birth_city\":null,\"fantasy_data_id\":18948,\"years_exp\":3,\"hashtag\":\"#DionDawkins-NFL-BUF-73\",\"search_first_name\":\"dion\",\"rotowire_id\":11788,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dion Dawkins\",\"sportradar_id\":\"522a97f7-8cf7-4c50-afe9-1beb6ffadcb2\",\"pandascore_id\":null,\"yahoo_id\":30176,\"last_name\":\"Dawkins\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Rahway (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"diondawkins\",\"birth_date\":\"1994-04-26\",\"espn_id\":3051324},\"3730\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032728\",\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599329157081,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3730\",\"birth_city\":null,\"fantasy_data_id\":18540,\"years_exp\":4,\"hashtag\":\"#TevinJones-NFL-FA-0\",\"search_first_name\":\"tevin\",\"rotowire_id\":11467,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1091,\"age\":27,\"full_name\":\"Tevin Jones\",\"sportradar_id\":\"44d9bb75-f947-406c-b847-6b11684a07c1\",\"pandascore_id\":null,\"yahoo_id\":29795,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":614302,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tevinjones\",\"birth_date\":\"1992-12-26\",\"espn_id\":2586703},\"4417\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033383\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565652342743,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"croston\",\"depth_chart_position\":null,\"player_id\":\"4417\",\"birth_city\":null,\"fantasy_data_id\":19277,\"years_exp\":3,\"hashtag\":\"#ColeCroston-NFL-FA-74\",\"search_first_name\":\"cole\",\"rotowire_id\":12429,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cole Croston\",\"sportradar_id\":\"3a3a9ed8-e941-49cf-bc32-331424d0bd42\",\"pandascore_id\":null,\"yahoo_id\":30657,\"last_name\":\"Croston\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'6\\\"\",\"search_full_name\":\"colecroston\",\"birth_date\":\"1993-12-25\",\"espn_id\":2991684},\"3167\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033052\",\"first_name\":\"Jaylon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606493104208,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"WLB\",\"player_id\":\"3167\",\"birth_city\":null,\"fantasy_data_id\":17926,\"years_exp\":4,\"hashtag\":\"#JaylonSmith-NFL-DAL-54\",\"search_first_name\":\"jaylon\",\"rotowire_id\":10801,\"rotoworld_id\":11327,\"active\":true,\"search_rank\":948,\"age\":25,\"full_name\":\"Jaylon Smith\",\"sportradar_id\":\"0bf6b11f-920a-4ced-9a69-0b4afc5df36f\",\"pandascore_id\":null,\"yahoo_id\":29268,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Bishop Luers (IN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jaylonsmith\",\"birth_date\":\"1995-06-14\",\"espn_id\":3052896},\"7233\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693362208,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baccellia\",\"depth_chart_position\":null,\"player_id\":\"7233\",\"birth_city\":null,\"fantasy_data_id\":22234,\"years_exp\":0,\"hashtag\":\"#AndreBaccellia-NFL-FA-0\",\"search_first_name\":\"andre\",\"rotowire_id\":14942,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Andre Baccellia\",\"sportradar_id\":\"58266b36-fa48-4f51-b41c-909bf82748f3\",\"pandascore_id\":null,\"yahoo_id\":32943,\"last_name\":\"Baccellia\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"andrebaccellia\",\"birth_date\":\"1997-01-07\",\"espn_id\":3886809},\"3101\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"patricia\",\"depth_chart_position\":null,\"player_id\":\"3101\",\"birth_city\":null,\"fantasy_data_id\":17851,\"years_exp\":0,\"hashtag\":\"#MattPatricia-NFL-FA-0\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":9486,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Matt Patricia\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Patricia\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mattpatricia\",\"birth_date\":null,\"espn_id\":null},\"4544\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daikiel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shorts\",\"depth_chart_position\":null,\"player_id\":\"4544\",\"birth_city\":null,\"fantasy_data_id\":19423,\"years_exp\":2,\"hashtag\":\"#DaikielShorts-NFL-FA-16\",\"search_first_name\":\"daikiel\",\"rotowire_id\":12076,\"rotoworld_id\":12717,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Daikiel Shorts\",\"sportradar_id\":\"c112a8f2-2013-4f75-a68c-463f9ef4bdd1\",\"pandascore_id\":null,\"yahoo_id\":30602,\"last_name\":\"Shorts\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728034,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"daikielshorts\",\"birth_date\":\"1994-10-06\",\"espn_id\":3042428},\"1255\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029670\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1606346103560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barron\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1255\",\"birth_city\":null,\"fantasy_data_id\":14635,\"years_exp\":8,\"hashtag\":\"#MarkBarron-NFL-DEN-42\",\"search_first_name\":\"mark\",\"rotowire_id\":8197,\"rotoworld_id\":7497,\"active\":true,\"search_rank\":693,\"age\":31,\"full_name\":\"Mark Barron\",\"sportradar_id\":\"98c7ad4f-8e63-4028-b3ca-84dd37a5ae64\",\"pandascore_id\":null,\"yahoo_id\":25717,\"last_name\":\"Barron\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Alabama\",\"high_school\":\"St. Paul's (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"markbarron\",\"birth_date\":\"1989-10-27\",\"espn_id\":14932},\"3093\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Teryl\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"austin\",\"depth_chart_position\":null,\"player_id\":\"3093\",\"birth_city\":null,\"fantasy_data_id\":17843,\"years_exp\":0,\"hashtag\":\"#TerylAustin-NFL-FA-0\",\"search_first_name\":\"teryl\",\"rotowire_id\":null,\"rotoworld_id\":9328,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Teryl Austin\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Austin\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"terylaustin\",\"birth_date\":null,\"espn_id\":null},\"3269\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032398\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604785209566,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"SWR\",\"player_id\":\"3269\",\"birth_city\":null,\"fantasy_data_id\":18030,\"years_exp\":4,\"hashtag\":\"#ChrisMoore-NFL-BAL-10\",\"search_first_name\":\"chris\",\"rotowire_id\":10994,\"rotoworld_id\":11429,\"active\":true,\"search_rank\":449,\"age\":27,\"full_name\":\"Chris Moore\",\"sportradar_id\":\"0b504d67-639b-4ba8-979a-498a3086257b\",\"pandascore_id\":null,\"yahoo_id\":29341,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Thomas Jefferson (FL)\",\"depth_chart_order\":2,\"stats_id\":606551,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrismoore\",\"birth_date\":\"1993-06-16\",\"espn_id\":2576581},\"2028\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031280\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606507226520,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carr\",\"depth_chart_position\":\"QB\",\"player_id\":\"2028\",\"birth_city\":null,\"fantasy_data_id\":16311,\"years_exp\":6,\"hashtag\":\"#DerekCarr-NFL-LV-4\",\"search_first_name\":\"derek\",\"rotowire_id\":9317,\"rotoworld_id\":9349,\"active\":true,\"search_rank\":189,\"age\":29,\"full_name\":\"Derek Carr\",\"sportradar_id\":\"9f026fc0-4449-4dc5-a226-2e2830619381\",\"pandascore_id\":null,\"yahoo_id\":27564,\"last_name\":\"Carr\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Bakersfield Christian (CA)\",\"depth_chart_order\":1,\"stats_id\":496083,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derekcarr\",\"birth_date\":\"1991-03-28\",\"espn_id\":16757},\"4393\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033403\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1599097838206,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"malveaux\",\"depth_chart_position\":null,\"player_id\":\"4393\",\"birth_city\":null,\"fantasy_data_id\":19252,\"years_exp\":3,\"hashtag\":\"#CameronMalveaux-NFL-CLE-69\",\"search_first_name\":\"cameron\",\"rotowire_id\":12057,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1240,\"age\":26,\"full_name\":\"Cameron Malveaux\",\"sportradar_id\":\"8b44e3b8-81ae-4f02-b598-965872d12816\",\"pandascore_id\":null,\"yahoo_id\":30644,\"last_name\":\"Malveaux\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Hamshire-Fannett (TX)\",\"depth_chart_order\":null,\"stats_id\":652212,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronmalveaux\",\"birth_date\":\"1994-09-22\",\"espn_id\":2981511},\"5021\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034360\",\"first_name\":\"Lorenzo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603146019896,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"5021\",\"birth_city\":null,\"fantasy_data_id\":19886,\"years_exp\":2,\"hashtag\":\"#LorenzoCarter-NFL-NYG-59\",\"search_first_name\":\"lorenzo\",\"rotowire_id\":12921,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1323,\"age\":24,\"full_name\":\"Lorenzo Carter\",\"sportradar_id\":\"074acf5e-748f-4d42-9875-0090f1480bec\",\"pandascore_id\":null,\"yahoo_id\":31036,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lorenzocarter\",\"birth_date\":\"1995-12-10\",\"espn_id\":3128715},\"6897\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jabari\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603936830090,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zuniga\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6897\",\"birth_city\":null,\"fantasy_data_id\":21910,\"years_exp\":0,\"hashtag\":\"#JabariZuniga-NFL-NYJ-92\",\"search_first_name\":\"jabari\",\"rotowire_id\":14734,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jabari Zuniga\",\"sportradar_id\":\"2160ed45-4a2a-4d3b-9da4-d18446dfa292\",\"pandascore_id\":null,\"yahoo_id\":32749,\"last_name\":\"Zuniga\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Sprayberry (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jabarizuniga\",\"birth_date\":\"1997-08-14\",\"espn_id\":3915123},\"4099\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033549\",\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603301739043,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"riley\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"4099\",\"birth_city\":null,\"fantasy_data_id\":18945,\"years_exp\":3,\"hashtag\":\"#DukeRiley-NFL-PHI-50\",\"search_first_name\":\"duke\",\"rotowire_id\":11981,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1143,\"age\":26,\"full_name\":\"Duke Riley\",\"sportradar_id\":\"16661483-3da0-4461-ac44-46fddb386e19\",\"pandascore_id\":null,\"yahoo_id\":30188,\"last_name\":\"Riley\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"John Curtis Christian (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dukeriley\",\"birth_date\":\"1994-08-09\",\"espn_id\":3042725},\"1945\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031136\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606159214139,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boswell\",\"depth_chart_position\":\"K\",\"player_id\":\"1945\",\"birth_city\":null,\"fantasy_data_id\":16191,\"years_exp\":6,\"hashtag\":\"#ChrisBoswell-NFL-PIT-9\",\"search_first_name\":\"chris\",\"rotowire_id\":9646,\"rotoworld_id\":10118,\"active\":true,\"search_rank\":396,\"age\":29,\"full_name\":\"Chris Boswell\",\"sportradar_id\":\"441eb531-1ec8-4f65-9174-78bc6adada63\",\"pandascore_id\":null,\"yahoo_id\":28188,\"last_name\":\"Boswell\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Rice\",\"high_school\":\"Fossil Ridge (TX)\",\"depth_chart_order\":1,\"stats_id\":504436,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisboswell\",\"birth_date\":\"1991-03-16\",\"espn_id\":17372},\"908\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027957\",\"first_name\":\"Prince\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602630049056,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"amukamara\",\"depth_chart_position\":null,\"player_id\":\"908\",\"birth_city\":null,\"fantasy_data_id\":13135,\"years_exp\":9,\"hashtag\":\"#PrinceAmukamara-NFL-ARI-20\",\"search_first_name\":\"prince\",\"rotowire_id\":7509,\"rotoworld_id\":6494,\"active\":true,\"search_rank\":640,\"age\":31,\"full_name\":\"Prince Amukamara\",\"sportradar_id\":\"f1879cfa-4c07-4140-9da0-c7ebe9af2dfd\",\"pandascore_id\":null,\"yahoo_id\":24806,\"last_name\":\"Amukamara\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Apollo (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"princeamukamara\",\"birth_date\":\"1989-06-06\",\"espn_id\":13975},\"3219\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032766\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605571520400,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"spriggs\",\"depth_chart_position\":\"RT\",\"player_id\":\"3219\",\"birth_city\":null,\"fantasy_data_id\":17980,\"years_exp\":4,\"hashtag\":\"#JasonSpriggs-NFL-CHI-78\",\"search_first_name\":\"jason\",\"rotowire_id\":11181,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jason Spriggs\",\"sportradar_id\":\"01dd8219-f1df-4a6e-95b2-27317daca89f\",\"pandascore_id\":null,\"yahoo_id\":29282,\"last_name\":\"Spriggs\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Concord (IN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jasonspriggs\",\"birth_date\":\"1994-05-17\",\"espn_id\":2979499},\"2452\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031590\",\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1577139357921,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ajayi\",\"depth_chart_position\":null,\"player_id\":\"2452\",\"birth_city\":null,\"fantasy_data_id\":16909,\"years_exp\":5,\"hashtag\":\"#JayAjayi-NFL-FA-28\",\"search_first_name\":\"jay\",\"rotowire_id\":10082,\"rotoworld_id\":10361,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jay Ajayi\",\"sportradar_id\":\"bb78a66a-a8ec-4294-8858-c7e5a1d15106\",\"pandascore_id\":null,\"yahoo_id\":28537,\"last_name\":\"Ajayi\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Frisco Liberty (TX)\",\"depth_chart_order\":null,\"stats_id\":590921,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jayajayi\",\"birth_date\":\"1993-06-15\",\"espn_id\":2573300},\"5398\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034137\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535850062877,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"5398\",\"birth_city\":null,\"fantasy_data_id\":20521,\"years_exp\":2,\"hashtag\":\"#JustinCrawford-NFL-FA-32\",\"search_first_name\":\"justin\",\"rotowire_id\":12475,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Crawford\",\"sportradar_id\":\"3dc42923-568b-4e5e-8c97-cb10d8527f7a\",\"pandascore_id\":null,\"yahoo_id\":31338,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":919433,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"justincrawford\",\"birth_date\":\"1995-02-19\",\"espn_id\":4039226},\"3688\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032540\",\"first_name\":\"Tra\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1588001757701,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carson\",\"depth_chart_position\":\"RB\",\"player_id\":\"3688\",\"birth_city\":null,\"fantasy_data_id\":18488,\"years_exp\":4,\"hashtag\":\"#TraCarson-NFL-FA-0\",\"search_first_name\":\"tra\",\"rotowire_id\":10969,\"rotoworld_id\":11359,\"active\":true,\"search_rank\":1084,\"age\":27,\"full_name\":\"Tra Carson\",\"sportradar_id\":\"ba36a4bb-5cc4-4113-9b5d-32bab02ef966\",\"pandascore_id\":null,\"yahoo_id\":29700,\"last_name\":\"Carson\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":15,\"stats_id\":607821,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tracarson\",\"birth_date\":\"1992-10-24\",\"espn_id\":2972283},\"4261\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033520\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567486514210,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"4261\",\"birth_city\":null,\"fantasy_data_id\":19107,\"years_exp\":3,\"hashtag\":\"#JeremyClark-NFL-FA-23\",\"search_first_name\":\"jeremy\",\"rotowire_id\":12241,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeremy Clark\",\"sportradar_id\":\"e055cf84-9602-468a-a960-5240cab53aff\",\"pandascore_id\":null,\"yahoo_id\":30311,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696123,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremyclark\",\"birth_date\":\"1994-06-29\",\"espn_id\":2977613},\"705\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lissemore\",\"depth_chart_position\":null,\"player_id\":\"705\",\"birth_city\":null,\"fantasy_data_id\":12173,\"years_exp\":10,\"hashtag\":\"#SeanLissemore-NFL-FA-98\",\"search_first_name\":\"sean\",\"rotowire_id\":6813,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Sean Lissemore\",\"sportradar_id\":\"70a54b5f-a78f-4e3f-a482-0536ff978571\",\"pandascore_id\":null,\"yahoo_id\":24209,\"last_name\":\"Lissemore\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Dumont (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'3\\\"\",\"search_full_name\":\"seanlissemore\",\"birth_date\":\"1987-09-11\",\"espn_id\":13406},\"2952\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vinopal\",\"depth_chart_position\":null,\"player_id\":\"2952\",\"birth_city\":null,\"fantasy_data_id\":17427,\"years_exp\":1,\"hashtag\":\"#RayVinopal-NFL-FA-39\",\"search_first_name\":\"ray\",\"rotowire_id\":10844,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ray Vinopal\",\"sportradar_id\":\"33002d98-7145-4392-978c-96900297f39e\",\"pandascore_id\":null,\"yahoo_id\":29023,\"last_name\":\"Vinopal\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rayvinopal\",\"birth_date\":\"1991-11-05\",\"espn_id\":2515330},\"2677\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031740\",\"first_name\":\"Neville\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606102211495,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hewitt\",\"depth_chart_position\":\"LILB\",\"player_id\":\"2677\",\"birth_city\":null,\"fantasy_data_id\":17145,\"years_exp\":5,\"hashtag\":\"#NevilleHewitt-NFL-NYJ-46\",\"search_first_name\":\"neville\",\"rotowire_id\":10673,\"rotoworld_id\":null,\"active\":true,\"search_rank\":923,\"age\":27,\"full_name\":\"Neville Hewitt\",\"sportradar_id\":\"fa4ae025-fd66-4752-94fa-63e22ae8abd4\",\"pandascore_id\":null,\"yahoo_id\":28935,\"last_name\":\"Hewitt\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Rockdale County (GA)\",\"depth_chart_order\":1,\"stats_id\":749760,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nevillehewitt\",\"birth_date\":\"1993-04-06\",\"espn_id\":3059880},\"5641\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034537\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1565489121129,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"worley\",\"depth_chart_position\":null,\"player_id\":\"5641\",\"birth_city\":null,\"fantasy_data_id\":20115,\"years_exp\":2,\"hashtag\":\"#ChrisWorley-NFL-FA-52\",\"search_first_name\":\"chris\",\"rotowire_id\":12742,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Worley\",\"sportradar_id\":\"155d6c0a-4ab8-4e58-92c4-5e955eb4ea13\",\"pandascore_id\":null,\"yahoo_id\":31566,\"last_name\":\"Worley\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrisworley\",\"birth_date\":\"1995-09-15\",\"espn_id\":3051412},\"221\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025549\",\"first_name\":\"Brent\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1564440320341,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"celek\",\"depth_chart_position\":null,\"player_id\":\"221\",\"birth_city\":null,\"fantasy_data_id\":5511,\"years_exp\":13,\"hashtag\":\"#BrentCelek-NFL-FA-87\",\"search_first_name\":\"brent\",\"rotowire_id\":5403,\"rotoworld_id\":4269,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brent Celek\",\"sportradar_id\":\"645a8bf9-2079-4df4-904a-3d8f08438b85\",\"pandascore_id\":null,\"yahoo_id\":8416,\"last_name\":\"Celek\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"La Salle (OH)\",\"depth_chart_order\":null,\"stats_id\":229510,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brentcelek\",\"birth_date\":\"1985-01-25\",\"espn_id\":10605},\"1886\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davidson\",\"depth_chart_position\":null,\"player_id\":\"1886\",\"birth_city\":null,\"fantasy_data_id\":16106,\"years_exp\":1,\"hashtag\":\"#JamesDavidson-NFL-FA-48\",\"search_first_name\":\"james\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"James Davidson\",\"sportradar_id\":\"9cea3b7c-8b2b-497c-b89f-a0f56ba56f7f\",\"pandascore_id\":null,\"yahoo_id\":28015,\"last_name\":\"Davidson\",\"metadata\":null,\"college\":\"UTEP\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamesdavidson\",\"birth_date\":\"1990-11-01\",\"espn_id\":16986},\"1520\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1520\",\"birth_city\":null,\"fantasy_data_id\":15129,\"years_exp\":7,\"hashtag\":\"#MichaelWilliams-NFL-FA-85\",\"search_first_name\":\"michael\",\"rotowire_id\":8863,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Michael Williams\",\"sportradar_id\":\"b0368b8c-023f-4d85-ab53-3a5740d6ce99\",\"pandascore_id\":null,\"yahoo_id\":26834,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Pickens County (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'6\\\"\",\"search_full_name\":\"michaelwilliams\",\"birth_date\":\"1990-06-27\",\"espn_id\":15910},\"6999\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Benito\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596990349593,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"NT\",\"player_id\":\"6999\",\"birth_city\":null,\"fantasy_data_id\":21868,\"years_exp\":0,\"hashtag\":\"#BenitoJones-NFL-MIA-95\",\"search_first_name\":\"benito\",\"rotowire_id\":14715,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1797,\"age\":23,\"full_name\":\"Benito Jones\",\"sportradar_id\":\"e9746156-842c-475e-806d-4bcb26032e3b\",\"pandascore_id\":null,\"yahoo_id\":33239,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Wayne County (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'1\\\"\",\"search_full_name\":\"benitojones\",\"birth_date\":\"1997-11-27\",\"espn_id\":4035299},\"4828\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034034\",\"first_name\":\"Rashard\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599601225300,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4828\",\"birth_city\":null,\"fantasy_data_id\":19732,\"years_exp\":3,\"hashtag\":\"#RashardDavis-NFL-FA-0\",\"search_first_name\":\"rashard\",\"rotowire_id\":12367,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1283,\"age\":25,\"full_name\":\"Rashard Davis\",\"sportradar_id\":\"4e87e1a1-8b89-4738-a527-87eb0663c35d\",\"pandascore_id\":null,\"yahoo_id\":30940,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":11,\"stats_id\":750368,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"rasharddavis\",\"birth_date\":\"1995-09-14\",\"espn_id\":3049329},\"681\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026714\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1566591936186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sundberg\",\"depth_chart_position\":null,\"player_id\":\"681\",\"birth_city\":null,\"fantasy_data_id\":11963,\"years_exp\":11,\"hashtag\":\"#NickSundberg-NFL-WAS-57\",\"search_first_name\":\"nick\",\"rotowire_id\":7973,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Nick Sundberg\",\"sportradar_id\":\"155b36fd-7287-4cf5-a065-6adc74fa866a\",\"pandascore_id\":null,\"yahoo_id\":9771,\"last_name\":\"Sundberg\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"North Canyon (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nicksundberg\",\"birth_date\":\"1987-07-29\",\"espn_id\":12904},\"3806\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trip\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thurman\",\"depth_chart_position\":\"RG\",\"player_id\":\"3806\",\"birth_city\":null,\"fantasy_data_id\":18621,\"years_exp\":0,\"hashtag\":\"#TripThurman-NFL-FA-67\",\"search_first_name\":\"trip\",\"rotowire_id\":11380,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trip Thurman\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29911,\"last_name\":\"Thurman\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tripthurman\",\"birth_date\":\"1992-10-20\",\"espn_id\":null},\"3723\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032638\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"3723\",\"birth_city\":null,\"fantasy_data_id\":18531,\"years_exp\":4,\"hashtag\":\"#JoshJames-NFL-FA-61\",\"search_first_name\":\"josh\",\"rotowire_id\":11448,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josh James\",\"sportradar_id\":\"4a52883d-cc37-4593-9ca3-cb9967e4db5f\",\"pandascore_id\":null,\"yahoo_id\":29732,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Carroll, MT\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshjames\",\"birth_date\":\"1993-05-09\",\"espn_id\":2986639},\"325\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029289\",\"first_name\":\"Korey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1543452635827,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"toomer\",\"depth_chart_position\":null,\"player_id\":\"325\",\"birth_city\":null,\"fantasy_data_id\":8003,\"years_exp\":8,\"hashtag\":\"#KoreyToomer-NFL-FA-56\",\"search_first_name\":\"korey\",\"rotowire_id\":8344,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Korey Toomer\",\"sportradar_id\":\"61a9fbd6-4913-4814-b5a7-9c71fbd4cac0\",\"pandascore_id\":null,\"yahoo_id\":25864,\"last_name\":\"Toomer\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Shadow Ridge (NV)\",\"depth_chart_order\":null,\"stats_id\":383433,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"koreytoomer\",\"birth_date\":\"1988-12-09\",\"espn_id\":15112},\"6915\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605472812593,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"LEO\",\"player_id\":\"6915\",\"birth_city\":null,\"fantasy_data_id\":21901,\"years_exp\":0,\"hashtag\":\"#AltonRobinson-NFL-SEA-98\",\"search_first_name\":\"alton\",\"rotowire_id\":14727,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1825,\"age\":22,\"full_name\":\"Alton Robinson\",\"sportradar_id\":\"fc116de9-ceb8-409b-b322-60659c73e943\",\"pandascore_id\":null,\"yahoo_id\":32818,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Judson (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"altonrobinson\",\"birth_date\":\"1998-06-02\",\"espn_id\":4254276},\"6461\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035118\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1604625009209,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"orzech\",\"depth_chart_position\":null,\"player_id\":\"6461\",\"birth_city\":null,\"fantasy_data_id\":21484,\"years_exp\":1,\"hashtag\":\"#MattOrzech-NFL-TEN-44\",\"search_first_name\":\"matt\",\"rotowire_id\":14127,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Orzech\",\"sportradar_id\":\"56b26b71-8f1e-416c-a7e5-62cd67c98f4b\",\"pandascore_id\":null,\"yahoo_id\":32306,\"last_name\":\"Orzech\",\"metadata\":null,\"college\":\"Azusa Pacific\",\"high_school\":\"Paloma Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":1139280,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattorzech\",\"birth_date\":\"1995-04-12\",\"espn_id\":4422336},\"6987\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hakeem\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587843944232,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adeniji\",\"depth_chart_position\":\"LT\",\"player_id\":\"6987\",\"birth_city\":null,\"fantasy_data_id\":22015,\"years_exp\":0,\"hashtag\":\"#HakeemAdeniji-NFL-CIN-77\",\"search_first_name\":\"hakeem\",\"rotowire_id\":14604,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Hakeem Adeniji\",\"sportradar_id\":\"49379bb0-8f09-466b-86fa-62b4c4c73051\",\"pandascore_id\":null,\"yahoo_id\":32850,\"last_name\":\"Adeniji\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Garland (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hakeemadeniji\",\"birth_date\":\"1997-12-08\",\"espn_id\":4046557},\"4801\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Barrett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gouger\",\"depth_chart_position\":null,\"player_id\":\"4801\",\"birth_city\":null,\"fantasy_data_id\":19715,\"years_exp\":2,\"hashtag\":\"#BarrettGouger-NFL-FA-61\",\"search_first_name\":\"barrett\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Barrett Gouger\",\"sportradar_id\":\"5dc61f75-14cc-4ccd-ae5c-dc8dd366de94\",\"pandascore_id\":null,\"yahoo_id\":30920,\"last_name\":\"Gouger\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'4\\\"\",\"search_full_name\":\"barrettgouger\",\"birth_date\":\"1993-09-30\",\"espn_id\":2972347},\"82\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":null,\"player_id\":\"82\",\"birth_city\":null,\"fantasy_data_id\":2254,\"years_exp\":8,\"hashtag\":\"#BrandonJacobs-NFL-FA-34\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brandon Jacobs\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandonjacobs\",\"birth_date\":\"1982-07-06\",\"espn_id\":null},\"3735\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032735\",\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598327153498,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"3735\",\"birth_city\":null,\"fantasy_data_id\":18546,\"years_exp\":4,\"hashtag\":\"#DukeThomas-NFL-FA-0\",\"search_first_name\":\"duke\",\"rotowire_id\":11475,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Duke Thomas\",\"sportradar_id\":\"7e5aaa20-df98-403f-92df-c3cc2ca9907d\",\"pandascore_id\":null,\"yahoo_id\":29808,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dukethomas\",\"birth_date\":\"1994-05-21\",\"espn_id\":2971734},\"745\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025399\",\"first_name\":\"Marshawn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1588660243022,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":\"RB\",\"player_id\":\"745\",\"birth_city\":null,\"fantasy_data_id\":12386,\"years_exp\":13,\"hashtag\":\"#MarshawnLynch-NFL-FA-24\",\"search_first_name\":\"marshawn\",\"rotowire_id\":5202,\"rotoworld_id\":4186,\"active\":true,\"search_rank\":621,\"age\":34,\"full_name\":\"Marshawn Lynch\",\"sportradar_id\":\"82bce0be-9a87-4b6d-a85b-623bf8d1674e\",\"pandascore_id\":null,\"yahoo_id\":8266,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Oakland Technical (CA)\",\"depth_chart_order\":3,\"stats_id\":269221,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marshawnlynch\",\"birth_date\":\"1986-04-22\",\"espn_id\":10456},\"3442\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lamarcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brutus\",\"depth_chart_position\":null,\"player_id\":\"3442\",\"birth_city\":null,\"fantasy_data_id\":18206,\"years_exp\":0,\"hashtag\":\"#LamarcusBrutus-NFL-FA-42\",\"search_first_name\":\"lamarcus\",\"rotowire_id\":10924,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lamarcus Brutus\",\"sportradar_id\":\"bd61fe41-a5d2-47ad-8595-9df632de0d49\",\"pandascore_id\":null,\"yahoo_id\":29941,\"last_name\":\"Brutus\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lamarcusbrutus\",\"birth_date\":\"1993-02-10\",\"espn_id\":2576770},\"4531\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033611\",\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603137917872,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sealsjones\",\"depth_chart_position\":\"TE\",\"player_id\":\"4531\",\"birth_city\":null,\"fantasy_data_id\":19410,\"years_exp\":3,\"hashtag\":\"#RickySealsJones-NFL-KC-83\",\"search_first_name\":\"ricky\",\"rotowire_id\":11876,\"rotoworld_id\":12463,\"active\":true,\"search_rank\":450,\"age\":25,\"full_name\":\"Ricky Seals-Jones\",\"sportradar_id\":\"52735659-a294-4f64-a7f4-3591450834e5\",\"pandascore_id\":null,\"yahoo_id\":30494,\"last_name\":\"Seals-Jones\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Sealy (TX)\",\"depth_chart_order\":3,\"stats_id\":744568,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rickysealsjones\",\"birth_date\":\"1995-03-15\",\"espn_id\":3051806},\"6822\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1602625549784,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fromm\",\"depth_chart_position\":\"QB\",\"player_id\":\"6822\",\"birth_city\":null,\"fantasy_data_id\":21828,\"years_exp\":0,\"hashtag\":\"#JakeFromm-NFL-BUF-10\",\"search_first_name\":\"jake\",\"rotowire_id\":14486,\"rotoworld_id\":null,\"active\":true,\"search_rank\":541,\"age\":22,\"full_name\":\"Jake Fromm\",\"sportradar_id\":\"12ce10f6-7f95-42db-8ed3-36b14933484f\",\"pandascore_id\":null,\"yahoo_id\":32837,\"last_name\":\"Fromm\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Houston County (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakefromm\",\"birth_date\":\"1998-07-30\",\"espn_id\":4240689},\"4825\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Freddie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4825\",\"birth_city\":null,\"fantasy_data_id\":19670,\"years_exp\":0,\"hashtag\":\"#FreddieBrown-NFL-FA-1\",\"search_first_name\":\"freddie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Freddie Brown\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"freddiebrown\",\"birth_date\":\"1986-06-24\",\"espn_id\":12637},\"4272\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033578\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597507209502,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tevi\",\"depth_chart_position\":\"LT\",\"player_id\":\"4272\",\"birth_city\":null,\"fantasy_data_id\":19118,\"years_exp\":3,\"hashtag\":\"#SamTevi-NFL-LAC-69\",\"search_first_name\":\"sam\",\"rotowire_id\":11821,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Sam Tevi\",\"sportradar_id\":\"ec7404cc-ff2c-4afb-aebc-3cde1322d5de\",\"pandascore_id\":null,\"yahoo_id\":30303,\"last_name\":\"Tevi\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Trinity (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"samtevi\",\"birth_date\":\"1994-11-15\",\"espn_id\":3052513},\"5007\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034366\",\"first_name\":\"Keke\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606479903229,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coutee\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5007\",\"birth_city\":null,\"fantasy_data_id\":19937,\"years_exp\":2,\"hashtag\":\"#KekeCoutee-NFL-HOU-16\",\"search_first_name\":\"keke\",\"rotowire_id\":12484,\"rotoworld_id\":13205,\"active\":true,\"search_rank\":263,\"age\":23,\"full_name\":\"Keke Coutee\",\"sportradar_id\":\"40caae08-0389-4c59-b796-d924047f57f9\",\"pandascore_id\":null,\"yahoo_id\":31073,\"last_name\":\"Coutee\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Lufkin (TX)\",\"depth_chart_order\":1,\"stats_id\":882929,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kekecoutee\",\"birth_date\":\"1997-01-14\",\"espn_id\":3915823},\"3483\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rose\",\"depth_chart_position\":null,\"player_id\":\"3483\",\"birth_city\":null,\"fantasy_data_id\":18248,\"years_exp\":0,\"hashtag\":\"#MikeRose-NFL-FA-99\",\"search_first_name\":\"mike\",\"rotowire_id\":11590,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mike Rose\",\"sportradar_id\":\"7cd41e10-dc67-4360-a713-fed7cc200587\",\"pandascore_id\":null,\"yahoo_id\":29869,\"last_name\":\"Rose\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"281\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikerose\",\"birth_date\":\"1992-07-23\",\"espn_id\":2577766},\"3718\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032631\",\"first_name\":\"Makinton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567824628055,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dorleant\",\"depth_chart_position\":null,\"player_id\":\"3718\",\"birth_city\":null,\"fantasy_data_id\":18526,\"years_exp\":4,\"hashtag\":\"#MakintonDorleant-NFL-FA-0\",\"search_first_name\":\"makinton\",\"rotowire_id\":11442,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Makinton Dorleant\",\"sportradar_id\":\"eee79103-9ded-4a79-812b-b9b18da20135\",\"pandascore_id\":null,\"yahoo_id\":29723,\"last_name\":\"Dorleant\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"makintondorleant\",\"birth_date\":\"1992-10-06\",\"espn_id\":2577071},\"3378\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1525728901331,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"doughty\",\"depth_chart_position\":null,\"player_id\":\"3378\",\"birth_city\":null,\"fantasy_data_id\":18139,\"years_exp\":3,\"hashtag\":\"#BrandonDoughty-NFL-FA-6\",\"search_first_name\":\"brandon\",\"rotowire_id\":11024,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Doughty\",\"sportradar_id\":\"0b2fccc4-945f-439d-a6df-9db87fb87398\",\"pandascore_id\":null,\"yahoo_id\":29457,\"last_name\":\"Doughty\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":559347,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandondoughty\",\"birth_date\":\"1991-10-06\",\"espn_id\":2517676},\"4471\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleming\",\"depth_chart_position\":null,\"player_id\":\"4471\",\"birth_city\":null,\"fantasy_data_id\":19339,\"years_exp\":2,\"hashtag\":\"#MauriceFleming-NFL-FA-30\",\"search_first_name\":\"maurice\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Maurice Fleming\",\"sportradar_id\":\"452d7e2c-e9ad-4224-b670-051ebf6468f6\",\"pandascore_id\":null,\"yahoo_id\":30472,\"last_name\":\"Fleming\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mauricefleming\",\"birth_date\":\"1993-12-06\",\"espn_id\":2979525},\"5069\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034404\",\"first_name\":\"Kylie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603668332405,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fitts\",\"depth_chart_position\":\"OLB\",\"player_id\":\"5069\",\"birth_city\":null,\"fantasy_data_id\":19965,\"years_exp\":2,\"hashtag\":\"#KylieFitts-NFL-ARI-49\",\"search_first_name\":\"kylie\",\"rotowire_id\":12823,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1370,\"age\":26,\"full_name\":\"Kylie Fitts\",\"sportradar_id\":\"ec198436-31b1-458e-a47b-9d1cd134300f\",\"pandascore_id\":null,\"yahoo_id\":31151,\"last_name\":\"Fitts\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Redlands East Valley (CA)\",\"depth_chart_order\":2,\"stats_id\":732931,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kyliefitts\",\"birth_date\":\"1994-10-11\",\"espn_id\":3047582},\"6431\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035080\",\"first_name\":\"Nydair\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rouse\",\"depth_chart_position\":null,\"player_id\":\"6431\",\"birth_city\":null,\"fantasy_data_id\":21479,\"years_exp\":1,\"hashtag\":\"#NydairRouse-NFL-FA-41\",\"search_first_name\":\"nydair\",\"rotowire_id\":14107,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nydair Rouse\",\"sportradar_id\":\"a69f9855-327c-4618-bdfd-cd913b31904f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rouse\",\"metadata\":null,\"college\":\"-\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nydairrouse\",\"birth_date\":\"1995-06-13\",\"espn_id\":4405778},\"4795\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Siupeli\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anau\",\"depth_chart_position\":null,\"player_id\":\"4795\",\"birth_city\":null,\"fantasy_data_id\":19702,\"years_exp\":0,\"hashtag\":\"#SiupeliAnau-NFL-FA-60\",\"search_first_name\":\"siupeli\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Siupeli Anau\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Anau\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"siupelianau\",\"birth_date\":null,\"espn_id\":3119465},\"1633\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029901\",\"first_name\":\"Rashaan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596735340284,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"melvin\",\"depth_chart_position\":null,\"player_id\":\"1633\",\"birth_city\":null,\"fantasy_data_id\":15359,\"years_exp\":7,\"hashtag\":\"#RashaanMelvin-NFL-JAX-22\",\"search_first_name\":\"rashaan\",\"rotowire_id\":9135,\"rotoworld_id\":8841,\"active\":true,\"search_rank\":755,\"age\":31,\"full_name\":\"Rashaan Melvin\",\"sportradar_id\":\"20b43016-a174-423d-9551-7f62ababad3c\",\"pandascore_id\":null,\"yahoo_id\":27041,\"last_name\":\"Melvin\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Waukegan (IL)\",\"depth_chart_order\":null,\"stats_id\":468900,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rashaanmelvin\",\"birth_date\":\"1989-10-02\",\"espn_id\":16270},\"2374\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032211\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605852358070,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lockett\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2374\",\"birth_city\":null,\"fantasy_data_id\":16830,\"years_exp\":5,\"hashtag\":\"#TylerLockett-NFL-SEA-16\",\"search_first_name\":\"tyler\",\"rotowire_id\":10161,\"rotoworld_id\":10408,\"active\":true,\"search_rank\":49,\"age\":28,\"full_name\":\"Tyler Lockett\",\"sportradar_id\":\"dffa69ad-331e-4f09-ae38-40a5a4406be6\",\"pandascore_id\":null,\"yahoo_id\":28457,\"last_name\":\"Lockett\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Booker T. Washington (OK)\",\"depth_chart_order\":1,\"stats_id\":605242,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tylerlockett\",\"birth_date\":\"1992-09-28\",\"espn_id\":2577327},\"1605\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Emory\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blake\",\"depth_chart_position\":null,\"player_id\":\"1605\",\"birth_city\":null,\"fantasy_data_id\":15270,\"years_exp\":1,\"hashtag\":\"#EmoryBlake-NFL-FA-16\",\"search_first_name\":\"emory\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Emory Blake\",\"sportradar_id\":\"26decf01-e8c2-423b-8e52-18d1e34f207c\",\"pandascore_id\":null,\"yahoo_id\":27195,\"last_name\":\"Blake\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":508564,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"emoryblake\",\"birth_date\":\"1991-07-18\",\"espn_id\":16300},\"4396\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033407\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515031201931,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"4396\",\"birth_city\":null,\"fantasy_data_id\":19255,\"years_exp\":3,\"hashtag\":\"#DrewMorgan-NFL-FA-81\",\"search_first_name\":\"drew\",\"rotowire_id\":11867,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Drew Morgan\",\"sportradar_id\":\"7e56f066-0225-4b22-ab11-9cb1d6325ee8\",\"pandascore_id\":null,\"yahoo_id\":30647,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744431,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"drewmorgan\",\"birth_date\":\"1994-12-02\",\"espn_id\":3046438},\"3843\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyrie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"3843\",\"birth_city\":null,\"fantasy_data_id\":18663,\"years_exp\":0,\"hashtag\":\"#KyrieWilson-NFL-FA-44\",\"search_first_name\":\"kyrie\",\"rotowire_id\":11526,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyrie Wilson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29965,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kyriewilson\",\"birth_date\":\"1992-11-05\",\"espn_id\":2579164},\"1230\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1522120804177,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lane\",\"depth_chart_position\":null,\"player_id\":\"1230\",\"birth_city\":null,\"fantasy_data_id\":14523,\"years_exp\":8,\"hashtag\":\"#JeremyLane-NFL-FA-20\",\"search_first_name\":\"jeremy\",\"rotowire_id\":8345,\"rotoworld_id\":7617,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jeremy Lane\",\"sportradar_id\":\"88f23fe7-7bbe-4416-a98c-371d1f4d4f70\",\"pandascore_id\":null,\"yahoo_id\":25882,\"last_name\":\"Lane\",\"metadata\":null,\"college\":\"Northwestern State, La.\",\"high_school\":\"Tyler John Tyler (TX)\",\"depth_chart_order\":null,\"stats_id\":461312,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeremylane\",\"birth_date\":\"1990-07-14\",\"espn_id\":15087},\"4022\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4022\",\"birth_city\":null,\"fantasy_data_id\":18862,\"years_exp\":0,\"hashtag\":\"#RichardSmith-NFL-FA-0\",\"search_first_name\":\"richard\",\"rotowire_id\":null,\"rotoworld_id\":10343,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Richard Smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"richardsmith\",\"birth_date\":null,\"espn_id\":null},\"1330\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Junior\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hemingway\",\"depth_chart_position\":null,\"player_id\":\"1330\",\"birth_city\":null,\"fantasy_data_id\":14836,\"years_exp\":3,\"hashtag\":\"#JuniorHemingway-NFL-FA-88\",\"search_first_name\":\"junior\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Junior Hemingway\",\"sportradar_id\":\"569ff94c-e066-4d78-accf-6141a879a621\",\"pandascore_id\":null,\"yahoo_id\":25948,\"last_name\":\"Hemingway\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":406306,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'1\\\"\",\"search_full_name\":\"juniorhemingway\",\"birth_date\":\"1988-12-27\",\"espn_id\":15029},\"829\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027973\",\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606440961221,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dalton\",\"depth_chart_position\":\"QB\",\"player_id\":\"829\",\"birth_city\":null,\"fantasy_data_id\":12841,\"years_exp\":9,\"hashtag\":\"#AndyDalton-NFL-DAL-14\",\"search_first_name\":\"andy\",\"rotowire_id\":7355,\"rotoworld_id\":6493,\"active\":true,\"search_rank\":419,\"age\":33,\"full_name\":\"Andy Dalton\",\"sportradar_id\":\"d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1\",\"pandascore_id\":null,\"yahoo_id\":24822,\"last_name\":\"Dalton\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Katy (TX)\",\"depth_chart_order\":2,\"stats_id\":322858,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andydalton\",\"birth_date\":\"1987-10-29\",\"espn_id\":14012},\"5264\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034292\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":null,\"player_id\":\"5264\",\"birth_city\":null,\"fantasy_data_id\":20306,\"years_exp\":2,\"hashtag\":\"#BlakeMack-NFL-FA-46\",\"search_first_name\":\"blake\",\"rotowire_id\":12713,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Blake Mack\",\"sportradar_id\":\"0337d524-097d-418c-8fde-be44c0cd7b7c\",\"pandascore_id\":null,\"yahoo_id\":31491,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":837316,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"blakemack\",\"birth_date\":\"1996-04-24\",\"espn_id\":3123714},\"46\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1525657501510,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":null,\"player_id\":\"46\",\"birth_city\":null,\"fantasy_data_id\":1286,\"years_exp\":13,\"hashtag\":\"#MichaelGriffin-NFL-FA-22\",\"search_first_name\":\"michael\",\"rotowire_id\":5367,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Michael Griffin\",\"sportradar_id\":\"a7a09040-0fcc-41fe-a1ef-08963913be5f\",\"pandascore_id\":null,\"yahoo_id\":8273,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Bowie (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelgriffin\",\"birth_date\":\"1985-01-04\",\"espn_id\":10463},\"825\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027965\",\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606063217255,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"RCB\",\"player_id\":\"825\",\"birth_city\":null,\"fantasy_data_id\":12829,\"years_exp\":9,\"hashtag\":\"#JimmySmith-NFL-BAL-22\",\"search_first_name\":\"jimmy\",\"rotowire_id\":7511,\"rotoworld_id\":6558,\"active\":true,\"search_rank\":629,\"age\":32,\"full_name\":\"Jimmy Smith\",\"sportradar_id\":\"c3d6c803-1c91-4bd9-956c-7f6c292558c5\",\"pandascore_id\":null,\"yahoo_id\":24814,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Colton (CA)\",\"depth_chart_order\":2,\"stats_id\":332611,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jimmysmith\",\"birth_date\":\"1988-07-26\",\"espn_id\":13963},\"4628\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"horton\",\"depth_chart_position\":null,\"player_id\":\"4628\",\"birth_city\":null,\"fantasy_data_id\":19522,\"years_exp\":2,\"hashtag\":\"#JustinHorton-NFL-FA-49\",\"search_first_name\":\"justin\",\"rotowire_id\":12372,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Horton\",\"sportradar_id\":\"3c8a0977-ff5d-4ee6-a083-eebc791c7815\",\"pandascore_id\":null,\"yahoo_id\":30401,\"last_name\":\"Horton\",\"metadata\":null,\"college\":\"Jacksonville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinhorton\",\"birth_date\":\"1994-02-25\",\"espn_id\":2982778},\"1785\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030615\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"winchester\",\"depth_chart_position\":null,\"player_id\":\"1785\",\"birth_city\":null,\"fantasy_data_id\":15917,\"years_exp\":7,\"hashtag\":\"#JamesWinchester-NFL-KC-41\",\"search_first_name\":\"james\",\"rotowire_id\":10606,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"James Winchester\",\"sportradar_id\":\"996a0607-8046-46c2-97a0-b94ff9f5a1c8\",\"pandascore_id\":null,\"yahoo_id\":27494,\"last_name\":\"Winchester\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Washington (OK)\",\"depth_chart_order\":null,\"stats_id\":472623,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jameswinchester\",\"birth_date\":\"1989-08-06\",\"espn_id\":16665},\"1747\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030419\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1535920815597,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgloin\",\"depth_chart_position\":null,\"player_id\":\"1747\",\"birth_city\":null,\"fantasy_data_id\":15746,\"years_exp\":7,\"hashtag\":\"#MatthewMcGloin-NFL-FA-5\",\"search_first_name\":\"matthew\",\"rotowire_id\":8991,\"rotoworld_id\":9194,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Matthew McGloin\",\"sportradar_id\":\"663b69e5-1fc2-404b-9a3f-f153c650ee89\",\"pandascore_id\":null,\"yahoo_id\":27429,\"last_name\":\"McGloin\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"West Scranton (PA)\",\"depth_chart_order\":null,\"stats_id\":471964,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"matthewmcgloin\",\"birth_date\":\"1989-12-02\",\"espn_id\":16593},\"6685\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035610\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":null,\"player_id\":\"6685\",\"birth_city\":null,\"fantasy_data_id\":21585,\"years_exp\":1,\"hashtag\":\"#JalenGreene-NFL-FA-3\",\"search_first_name\":\"jalen\",\"rotowire_id\":14312,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jalen Greene\",\"sportradar_id\":\"c5320018-f019-42c4-ae85-6c1c58afbace\",\"pandascore_id\":null,\"yahoo_id\":32604,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":822878,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jalengreene\",\"birth_date\":\"1996-06-13\",\"espn_id\":3120349},\"139\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026243\",\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1537922403031,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hayes\",\"depth_chart_position\":null,\"player_id\":\"139\",\"birth_city\":null,\"fantasy_data_id\":3808,\"years_exp\":12,\"hashtag\":\"#WilliamHayes-NFL-FA-95\",\"search_first_name\":\"william\",\"rotowire_id\":5869,\"rotoworld_id\":4872,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"William Hayes\",\"sportradar_id\":\"a2eccf1c-8a74-48c1-8c22-81083df05274\",\"pandascore_id\":null,\"yahoo_id\":8880,\"last_name\":\"Hayes\",\"metadata\":null,\"college\":\"Winston-Salem\",\"high_school\":\"Andrews (NC)\",\"depth_chart_order\":null,\"stats_id\":330171,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'3\\\"\",\"search_full_name\":\"williamhayes\",\"birth_date\":\"1985-05-02\",\"espn_id\":11337},\"2781\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shayon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"2781\",\"birth_city\":null,\"fantasy_data_id\":17249,\"years_exp\":1,\"hashtag\":\"#ShayonGreen-NFL-FA-32\",\"search_first_name\":\"shayon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Shayon Green\",\"sportradar_id\":\"dd5f7aa4-c30a-468d-94bf-205e14c21661\",\"pandascore_id\":null,\"yahoo_id\":28387,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shayongreen\",\"birth_date\":\"1991-07-09\",\"espn_id\":2466953},\"6675\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035561\",\"first_name\":\"Abraham\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"6675\",\"birth_city\":null,\"fantasy_data_id\":21574,\"years_exp\":1,\"hashtag\":\"#AbrahamWallace-NFL-FA-35\",\"search_first_name\":\"abraham\",\"rotowire_id\":14274,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Abraham Wallace\",\"sportradar_id\":\"dd074695-df70-49ab-ab37-504bac11d171\",\"pandascore_id\":null,\"yahoo_id\":32572,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"West Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"abrahamwallace\",\"birth_date\":\"1996-06-09\",\"espn_id\":3115379},\"3257\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033119\",\"first_name\":\"Jacoby\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1600108562386,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brissett\",\"depth_chart_position\":\"QB\",\"player_id\":\"3257\",\"birth_city\":null,\"fantasy_data_id\":18018,\"years_exp\":4,\"hashtag\":\"#JacobyBrissett-NFL-IND-7\",\"search_first_name\":\"jacoby\",\"rotowire_id\":10919,\"rotoworld_id\":11341,\"active\":true,\"search_rank\":446,\"age\":27,\"full_name\":\"Jacoby Brissett\",\"sportradar_id\":\"ad2258ab-67f0-41c2-bcf3-f3ba145187dc\",\"pandascore_id\":null,\"yahoo_id\":29325,\"last_name\":\"Brissett\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"William T. Dwyer (FL)\",\"depth_chart_order\":2,\"stats_id\":607047,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jacobybrissett\",\"birth_date\":\"1992-12-11\",\"espn_id\":2578570},\"7311\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1599407459902,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"7311\",\"birth_city\":null,\"fantasy_data_id\":22303,\"years_exp\":0,\"hashtag\":\"#JavinWhite-NFL-LV-53\",\"search_first_name\":\"javin\",\"rotowire_id\":14902,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1974,\"age\":23,\"full_name\":\"Javin White\",\"sportradar_id\":\"3f95afdc-2140-424b-8250-7d4e273c2efc\",\"pandascore_id\":null,\"yahoo_id\":33318,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"McClymonds (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"javinwhite\",\"birth_date\":\"1997-02-21\",\"espn_id\":3921709},\"4235\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carrell\",\"depth_chart_position\":null,\"player_id\":\"4235\",\"birth_city\":null,\"fantasy_data_id\":19081,\"years_exp\":2,\"hashtag\":\"#JordanCarrell-NFL-FA-69\",\"search_first_name\":\"jordan\",\"rotowire_id\":12181,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Carrell\",\"sportradar_id\":\"b3059c63-ae05-455f-8dfb-8c503b7c4d70\",\"pandascore_id\":null,\"yahoo_id\":30359,\"last_name\":\"Carrell\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":865667,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordancarrell\",\"birth_date\":\"1994-06-30\",\"espn_id\":3895487},\"5436\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034096\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603062310485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moseley\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5436\",\"birth_city\":null,\"fantasy_data_id\":20366,\"years_exp\":2,\"hashtag\":\"#EmmanuelMoseley-NFL-SF-41\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":13422,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1459,\"age\":24,\"full_name\":\"Emmanuel Moseley\",\"sportradar_id\":\"ae6a5f6b-20ac-4b44-9d05-b75634aa1199\",\"pandascore_id\":null,\"yahoo_id\":31386,\"last_name\":\"Moseley\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Dudley (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"emmanuelmoseley\",\"birth_date\":\"1996-03-25\",\"espn_id\":3115337},\"1643\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030023\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604533528957,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dangerfield\",\"depth_chart_position\":\"SS\",\"player_id\":\"1643\",\"birth_city\":null,\"fantasy_data_id\":15380,\"years_exp\":7,\"hashtag\":\"#JordanDangerfield-NFL-PIT-37\",\"search_first_name\":\"jordan\",\"rotowire_id\":9578,\"rotoworld_id\":null,\"active\":true,\"search_rank\":757,\"age\":29,\"full_name\":\"Jordan Dangerfield\",\"sportradar_id\":\"784b55b7-2822-4f38-9daa-a704151d1b35\",\"pandascore_id\":null,\"yahoo_id\":27000,\"last_name\":\"Dangerfield\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Towson\",\"high_school\":\"Royal Palm Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":517800,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordandangerfield\",\"birth_date\":\"1990-12-25\",\"espn_id\":16179},\"6417\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035492\",\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597281905527,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sweet\",\"depth_chart_position\":null,\"player_id\":\"6417\",\"birth_city\":null,\"fantasy_data_id\":21079,\"years_exp\":1,\"hashtag\":\"#WilliamSweet-NFL-DAL-62\",\"search_first_name\":\"william\",\"rotowire_id\":13467,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"William Sweet\",\"sportradar_id\":\"9240e2e7-b6dc-4498-9abd-eb79a1df5462\",\"pandascore_id\":null,\"yahoo_id\":32160,\"last_name\":\"Sweet\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"First Coast (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'6\\\"\",\"search_full_name\":\"williamsweet\",\"birth_date\":\"1997-04-29\",\"espn_id\":3895830},\"5521\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034492\",\"first_name\":\"Brant\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567957513289,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weiss\",\"depth_chart_position\":null,\"player_id\":\"5521\",\"birth_city\":null,\"fantasy_data_id\":20430,\"years_exp\":2,\"hashtag\":\"#BrantWeiss-NFL-FA-0\",\"search_first_name\":\"brant\",\"rotowire_id\":13223,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brant Weiss\",\"sportradar_id\":\"0f8e560c-013d-47ad-8fa0-2a397ab3258e\",\"pandascore_id\":null,\"yahoo_id\":31326,\"last_name\":\"Weiss\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brantweiss\",\"birth_date\":\"1995-06-08\",\"espn_id\":3059941},\"6732\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035736\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vornkahl\",\"depth_chart_position\":\"LT\",\"player_id\":\"6732\",\"birth_city\":null,\"fantasy_data_id\":21654,\"years_exp\":1,\"hashtag\":\"#TravisVornkahl-NFL-FA-0\",\"search_first_name\":\"travis\",\"rotowire_id\":13945,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Travis Vornkahl\",\"sportradar_id\":\"ab9fd2ff-fb48-4d8f-824c-5172fe67d28a\",\"pandascore_id\":null,\"yahoo_id\":32643,\"last_name\":\"Vornkahl\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'5\\\"\",\"search_full_name\":\"travisvornkahl\",\"birth_date\":\"1995-11-05\",\"espn_id\":4421448},\"6117\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dennis\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"6117\",\"birth_city\":null,\"fantasy_data_id\":20719,\"years_exp\":0,\"hashtag\":\"#DennisAllen-NFL-FA-0\",\"search_first_name\":\"dennis\",\"rotowire_id\":null,\"rotoworld_id\":8358,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dennis Allen\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Allen\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dennisallen\",\"birth_date\":null,\"espn_id\":null},\"609\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antone\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"609\",\"birth_city\":null,\"fantasy_data_id\":11439,\"years_exp\":11,\"hashtag\":\"#AntoneSmith-NFL-FA-36\",\"search_first_name\":\"antone\",\"rotowire_id\":6234,\"rotoworld_id\":5643,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Antone Smith\",\"sportradar_id\":\"af883091-fc4e-4fcc-8092-8d12e6bb5609\",\"pandascore_id\":null,\"yahoo_id\":9707,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Pahokee (FL)\",\"depth_chart_order\":null,\"stats_id\":296465,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"antonesmith\",\"birth_date\":\"1985-09-17\",\"espn_id\":13158},\"4165\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033560\",\"first_name\":\"Julien\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1575226212604,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davenport\",\"depth_chart_position\":\"LT\",\"player_id\":\"4165\",\"birth_city\":null,\"fantasy_data_id\":19011,\"years_exp\":3,\"hashtag\":\"#JulienDavenport-NFL-MIA-70\",\"search_first_name\":\"julien\",\"rotowire_id\":11787,\"rotoworld_id\":12324,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Julien Davenport\",\"sportradar_id\":\"473a6858-7c99-4521-982b-fcbaacc00b74\",\"pandascore_id\":null,\"yahoo_id\":30243,\"last_name\":\"Davenport\",\"metadata\":null,\"college\":\"Bucknell\",\"high_school\":\"Paulsboro (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'7\\\"\",\"search_full_name\":\"juliendavenport\",\"birth_date\":\"1995-01-09\",\"espn_id\":3047614},\"5908\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035632\",\"first_name\":\"Amani\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606150813430,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hooker\",\"depth_chart_position\":\"FS\",\"player_id\":\"5908\",\"birth_city\":null,\"fantasy_data_id\":20811,\"years_exp\":1,\"hashtag\":\"#AmaniHooker-NFL-TEN-37\",\"search_first_name\":\"amani\",\"rotowire_id\":13550,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1553,\"age\":22,\"full_name\":\"Amani Hooker\",\"sportradar_id\":\"aac96096-362f-4254-952a-5b3b04472f19\",\"pandascore_id\":null,\"yahoo_id\":31948,\"last_name\":\"Hooker\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Iowa\",\"high_school\":\"Park Center (MN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"amanihooker\",\"birth_date\":\"1998-06-14\",\"espn_id\":4036134},\"3363\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032437\",\"first_name\":\"Kamu\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603932629914,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grugierhill\",\"depth_chart_position\":\"LB\",\"player_id\":\"3363\",\"birth_city\":null,\"fantasy_data_id\":18124,\"years_exp\":4,\"hashtag\":\"#KamuGrugierHill-NFL-MIA-51\",\"search_first_name\":\"kamu\",\"rotowire_id\":11233,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1034,\"age\":26,\"full_name\":\"Kamu Grugier-Hill\",\"sportradar_id\":\"bcbbd7af-5a61-41f2-bae6-1e034755e7ef\",\"pandascore_id\":null,\"yahoo_id\":29442,\"last_name\":\"Grugier-Hill\",\"metadata\":null,\"college\":\"Eastern Illinois\",\"high_school\":\"Kamehameha (HI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kamugrugierhill\",\"birth_date\":\"1994-05-16\",\"espn_id\":3050851},\"7409\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alarcon\",\"depth_chart_position\":null,\"player_id\":\"7409\",\"birth_city\":null,\"fantasy_data_id\":22392,\"years_exp\":0,\"hashtag\":\"#IsaacAlarcon-NFL-DAL-0\",\"search_first_name\":\"isaac\",\"rotowire_id\":14946,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Isaac Alarcon\",\"sportradar_id\":\"5478c682-15ff-4932-97f3-6725c413c2c1\",\"pandascore_id\":null,\"yahoo_id\":33183,\"last_name\":\"Alarcon\",\"metadata\":null,\"college\":\"No College\",\"high_school\":\"UANL (MEX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'7\\\"\",\"search_full_name\":\"isaacalarcon\",\"birth_date\":\"1998-07-27\",\"espn_id\":4686629},\"4851\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"4851\",\"birth_city\":null,\"fantasy_data_id\":19751,\"years_exp\":0,\"hashtag\":\"#StephenRoss-NFL-FA-0\",\"search_first_name\":\"stephen\",\"rotowire_id\":null,\"rotoworld_id\":9457,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Stephen Ross\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ross\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"stephenross\",\"birth_date\":null,\"espn_id\":null},\"4267\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033972\",\"first_name\":\"Jylan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1559255154060,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ware\",\"depth_chart_position\":null,\"player_id\":\"4267\",\"birth_city\":null,\"fantasy_data_id\":19113,\"years_exp\":3,\"hashtag\":\"#JylanWare-NFL-FA-64\",\"search_first_name\":\"jylan\",\"rotowire_id\":12217,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jylan Ware\",\"sportradar_id\":\"e6723038-94ed-468b-aa3a-9c2080dcae81\",\"pandascore_id\":null,\"yahoo_id\":30344,\"last_name\":\"Ware\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jylanware\",\"birth_date\":\"1993-10-16\",\"espn_id\":2981069},\"3772\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julien\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"obioha\",\"depth_chart_position\":null,\"player_id\":\"3772\",\"birth_city\":null,\"fantasy_data_id\":18585,\"years_exp\":1,\"hashtag\":\"#JulienObioha-NFL-FA-65\",\"search_first_name\":\"julien\",\"rotowire_id\":11460,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Julien Obioha\",\"sportradar_id\":\"5dc3279f-a707-44e4-ac8f-885b4e21dc45\",\"pandascore_id\":null,\"yahoo_id\":29800,\"last_name\":\"Obioha\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"julienobioha\",\"birth_date\":\"1994-07-07\",\"espn_id\":null},\"5885\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035652\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606315860802,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"finley\",\"depth_chart_position\":\"QB\",\"player_id\":\"5885\",\"birth_city\":null,\"fantasy_data_id\":20759,\"years_exp\":1,\"hashtag\":\"#RyanFinley-NFL-CIN-5\",\"search_first_name\":\"ryan\",\"rotowire_id\":13750,\"rotoworld_id\":14046,\"active\":true,\"search_rank\":509,\"age\":25,\"full_name\":\"Ryan Finley\",\"sportradar_id\":\"d935df27-5be4-4aab-b117-8ec8e81c2196\",\"pandascore_id\":null,\"yahoo_id\":31936,\"last_name\":\"Finley\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Paradise Valley (AZ)\",\"depth_chart_order\":2,\"stats_id\":728819,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanfinley\",\"birth_date\":\"1994-12-26\",\"espn_id\":3042876},\"2551\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"furman\",\"depth_chart_position\":null,\"player_id\":\"2551\",\"birth_city\":null,\"fantasy_data_id\":17011,\"years_exp\":0,\"hashtag\":\"#JoshFurman-NFL-FA-41\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Josh Furman\",\"sportradar_id\":\"fd9d7cd3-5408-42d8-a1da-acf33df580dd\",\"pandascore_id\":null,\"yahoo_id\":28640,\"last_name\":\"Furman\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshfurman\",\"birth_date\":\"1991-11-01\",\"espn_id\":2515325},\"2645\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032007\",\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605827113881,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dunbar\",\"depth_chart_position\":null,\"player_id\":\"2645\",\"birth_city\":null,\"fantasy_data_id\":17113,\"years_exp\":5,\"hashtag\":\"#QuintonDunbar-NFL-SEA-22\",\"search_first_name\":\"quinton\",\"rotowire_id\":10706,\"rotoworld_id\":11078,\"active\":true,\"search_rank\":919,\"age\":28,\"full_name\":\"Quinton Dunbar\",\"sportradar_id\":\"872bbe18-ea66-415c-b556-6d15bda05b0e\",\"pandascore_id\":null,\"yahoo_id\":29077,\"last_name\":\"Dunbar\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Booker T. Washington (FL)\",\"depth_chart_order\":null,\"stats_id\":557183,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quintondunbar\",\"birth_date\":\"1992-07-22\",\"espn_id\":2516049},\"6470\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herndon\",\"depth_chart_position\":null,\"player_id\":\"6470\",\"birth_city\":null,\"fantasy_data_id\":21470,\"years_exp\":0,\"hashtag\":\"#MikeHerndon-NFL-FA-66\",\"search_first_name\":\"mike\",\"rotowire_id\":14091,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Mike Herndon\",\"sportradar_id\":\"8ed86cb2-74c7-4a60-8e62-b0cf4d147779\",\"pandascore_id\":null,\"yahoo_id\":32213,\"last_name\":\"Herndon\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikeherndon\",\"birth_date\":\"1995-12-12\",\"espn_id\":3123959},\"3223\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032767\",\"first_name\":\"Su'a\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1567187454022,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cravens\",\"depth_chart_position\":null,\"player_id\":\"3223\",\"birth_city\":null,\"fantasy_data_id\":17984,\"years_exp\":4,\"hashtag\":\"#SuaCravens-NFL-FA-21\",\"search_first_name\":\"sua\",\"rotowire_id\":10985,\"rotoworld_id\":11208,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Su'a Cravens\",\"sportradar_id\":\"6aa53b87-fcbf-4edb-b61a-460580f93e5d\",\"pandascore_id\":null,\"yahoo_id\":29286,\"last_name\":\"Cravens\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":727851,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"suacravens\",\"birth_date\":\"1995-07-07\",\"espn_id\":3043215},\"155\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerricho\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cotchery\",\"depth_chart_position\":null,\"player_id\":\"155\",\"birth_city\":null,\"fantasy_data_id\":4104,\"years_exp\":16,\"hashtag\":\"#JerrichoCotchery-NFL-FA-82\",\"search_first_name\":\"jerricho\",\"rotowire_id\":3850,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Jerricho Cotchery\",\"sportradar_id\":\"dc2b3e27-0bc1-4ea7-b80e-f9ef81cab2c9\",\"pandascore_id\":null,\"yahoo_id\":6867,\"last_name\":\"Cotchery\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Phillips (AL)\",\"depth_chart_order\":null,\"stats_id\":246315,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jerrichocotchery\",\"birth_date\":\"1982-06-16\",\"espn_id\":5633},\"951\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028738\",\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544637348491,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"951\",\"birth_city\":null,\"fantasy_data_id\":13310,\"years_exp\":9,\"hashtag\":\"#ByronBell-NFL-FA-74\",\"search_first_name\":\"byron\",\"rotowire_id\":8439,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Byron Bell\",\"sportradar_id\":\"1c1a6937-9267-497e-9386-00562e5fb399\",\"pandascore_id\":null,\"yahoo_id\":25415,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":\"Greenville (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'5\\\"\",\"search_full_name\":\"byronbell\",\"birth_date\":\"1989-01-17\",\"espn_id\":14753},\"1553\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030070\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606437060655,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":\"NT\",\"player_id\":\"1553\",\"birth_city\":null,\"fantasy_data_id\":15194,\"years_exp\":7,\"hashtag\":\"#JohnJenkins-NFL-CHI-90\",\"search_first_name\":\"john\",\"rotowire_id\":8672,\"rotoworld_id\":null,\"active\":true,\"search_rank\":741,\"age\":31,\"full_name\":\"John Jenkins\",\"sportradar_id\":\"60d48e85-931c-45dc-b62f-024503a2e09b\",\"pandascore_id\":null,\"yahoo_id\":26705,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Maloney (CT)\",\"depth_chart_order\":2,\"stats_id\":607087,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnjenkins\",\"birth_date\":\"1989-07-11\",\"espn_id\":15846},\"4056\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033883\",\"first_name\":\"Jabrill\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1605555319018,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peppers\",\"depth_chart_position\":\"SS\",\"player_id\":\"4056\",\"birth_city\":null,\"fantasy_data_id\":18902,\"years_exp\":3,\"hashtag\":\"#JabrillPeppers-NFL-NYG-21\",\"search_first_name\":\"jabrill\",\"rotowire_id\":11714,\"rotoworld_id\":12218,\"active\":true,\"search_rank\":1115,\"age\":25,\"full_name\":\"Jabrill Peppers\",\"sportradar_id\":\"45ef2670-2382-434b-8f26-ba13f044236e\",\"pandascore_id\":null,\"yahoo_id\":30138,\"last_name\":\"Peppers\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Paramus Catholic (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jabrillpeppers\",\"birth_date\":\"1995-10-04\",\"espn_id\":3115962},\"4974\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034858\",\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606163114645,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edmunds\",\"depth_chart_position\":\"SS\",\"player_id\":\"4974\",\"birth_city\":null,\"fantasy_data_id\":19849,\"years_exp\":2,\"hashtag\":\"#TerrellEdmunds-NFL-PIT-34\",\"search_first_name\":\"terrell\",\"rotowire_id\":12613,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1302,\"age\":23,\"full_name\":\"Terrell Edmunds\",\"sportradar_id\":\"e4739abd-d524-4857-85fc-ed4845462817\",\"pandascore_id\":null,\"yahoo_id\":30998,\"last_name\":\"Edmunds\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Virginia Tech\",\"high_school\":\"Dan River (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'1\\\"\",\"search_full_name\":\"terrelledmunds\",\"birth_date\":\"1997-01-20\",\"espn_id\":3124067},\"521\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1510088401253,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cumberland\",\"depth_chart_position\":null,\"player_id\":\"521\",\"birth_city\":null,\"fantasy_data_id\":10992,\"years_exp\":10,\"hashtag\":\"#JeffCumberland-NFL-FA-87\",\"search_first_name\":\"jeff\",\"rotowire_id\":6838,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jeff Cumberland\",\"sportradar_id\":\"406a7386-83b6-4c25-8998-6968073d89c4\",\"pandascore_id\":null,\"yahoo_id\":24303,\"last_name\":\"Cumberland\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Brookhaven (OH)\",\"depth_chart_order\":null,\"stats_id\":333361,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jeffcumberland\",\"birth_date\":\"1987-05-02\",\"espn_id\":13555},\"6433\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035122\",\"first_name\":\"Silas\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"6433\",\"birth_city\":null,\"fantasy_data_id\":21483,\"years_exp\":1,\"hashtag\":\"#SilasStewart-NFL-FA-59\",\"search_first_name\":\"silas\",\"rotowire_id\":14123,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Silas Stewart\",\"sportradar_id\":\"8c56b03a-baa7-4030-ac56-6648fb154bb7\",\"pandascore_id\":null,\"yahoo_id\":32307,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Incarnate Word\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"silasstewart\",\"birth_date\":\"1995-09-28\",\"espn_id\":4266934},\"1927\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ri'Shard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"1927\",\"birth_city\":null,\"fantasy_data_id\":16162,\"years_exp\":1,\"hashtag\":\"#RiShardAnderson-NFL-FA-26\",\"search_first_name\":\"rishard\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ri'Shard Anderson\",\"sportradar_id\":\"6a2fd98a-3a5b-4de6-8f57-f7088fb413a8\",\"pandascore_id\":null,\"yahoo_id\":27954,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rishardanderson\",\"birth_date\":\"1994-05-01\",\"espn_id\":17104},\"2440\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tray\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"2440\",\"birth_city\":null,\"fantasy_data_id\":16897,\"years_exp\":5,\"hashtag\":\"#TrayWalker-NFL-FA-25\",\"search_first_name\":\"tray\",\"rotowire_id\":10435,\"rotoworld_id\":10518,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tray Walker\",\"sportradar_id\":\"c9f0c62e-2f43-4899-a21d-040839fe1bf2\",\"pandascore_id\":null,\"yahoo_id\":28524,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Texas Southern\",\"high_school\":\"Miami Northwestern\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'2\\\"\",\"search_full_name\":\"traywalker\",\"birth_date\":\"1992-08-05\",\"espn_id\":2567992},\"5405\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034610\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1546275044466,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boozer\",\"depth_chart_position\":null,\"player_id\":\"5405\",\"birth_city\":null,\"fantasy_data_id\":20474,\"years_exp\":2,\"hashtag\":\"#ColeBoozer-NFL-FA-64\",\"search_first_name\":\"cole\",\"rotowire_id\":13284,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cole Boozer\",\"sportradar_id\":\"1fc0823d-73ff-4657-9c85-f4527abd6a12\",\"pandascore_id\":null,\"yahoo_id\":31254,\"last_name\":\"Boozer\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"coleboozer\",\"birth_date\":\"1994-03-20\",\"espn_id\":3051330},\"3816\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"browndukes\",\"depth_chart_position\":null,\"player_id\":\"3816\",\"birth_city\":null,\"fantasy_data_id\":18632,\"years_exp\":3,\"hashtag\":\"#BrandonBrownDukes-NFL-FA-38\",\"search_first_name\":\"brandon\",\"rotowire_id\":11542,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brandon Brown-Dukes\",\"sportradar_id\":\"5a1b445b-2a7b-483e-8a3e-b42c4d76e383\",\"pandascore_id\":null,\"yahoo_id\":29903,\"last_name\":\"Brown-Dukes\",\"metadata\":null,\"college\":\"Mercyhurst\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":915350,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'8\\\"\",\"search_full_name\":\"brandonbrowndukes\",\"birth_date\":\"1992-04-29\",\"espn_id\":4012719},\"926\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walters\",\"depth_chart_position\":null,\"player_id\":\"926\",\"birth_city\":null,\"fantasy_data_id\":13208,\"years_exp\":4,\"hashtag\":\"#AnthonyWalters-NFL-FA-37\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Anthony Walters\",\"sportradar_id\":\"b018cbb8-78e3-4532-bed8-15b872d46b9a\",\"pandascore_id\":null,\"yahoo_id\":25086,\"last_name\":\"Walters\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonywalters\",\"birth_date\":\"1988-09-19\",\"espn_id\":14315},\"1433\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029822\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606414558370,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcmanus\",\"depth_chart_position\":\"K\",\"player_id\":\"1433\",\"birth_city\":null,\"fantasy_data_id\":14996,\"years_exp\":7,\"hashtag\":\"#BrandonMcManus-NFL-DEN-8\",\"search_first_name\":\"brandon\",\"rotowire_id\":9948,\"rotoworld_id\":8912,\"active\":true,\"search_rank\":390,\"age\":29,\"full_name\":\"Brandon McManus\",\"sportradar_id\":\"6444feb1-f5a4-4b45-9a45-79308a4445fd\",\"pandascore_id\":null,\"yahoo_id\":27120,\"last_name\":\"McManus\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Temple\",\"high_school\":\"North Penn (PA)\",\"depth_chart_order\":1,\"stats_id\":513098,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonmcmanus\",\"birth_date\":\"1991-07-25\",\"espn_id\":16339},\"4194\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033959\",\"first_name\":\"JJ\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564443618998,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dielman\",\"depth_chart_position\":null,\"player_id\":\"4194\",\"birth_city\":null,\"fantasy_data_id\":19040,\"years_exp\":3,\"hashtag\":\"#JJDielman-NFL-FA-63\",\"search_first_name\":\"jj\",\"rotowire_id\":11789,\"rotoworld_id\":12383,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"JJ Dielman\",\"sportradar_id\":\"a8a5db13-5676-4194-8e2c-c75778366a3b\",\"pandascore_id\":null,\"yahoo_id\":30289,\"last_name\":\"Dielman\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jjdielman\",\"birth_date\":\"1993-12-16\",\"espn_id\":2971635},\"2858\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"BJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"larsen\",\"depth_chart_position\":null,\"player_id\":\"2858\",\"birth_city\":null,\"fantasy_data_id\":17326,\"years_exp\":0,\"hashtag\":\"#BJLarsen-NFL-FA-69\",\"search_first_name\":\"bj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"BJ Larsen\",\"sportradar_id\":\"0eadbe92-3c3a-40cd-9353-034d5b3f76dd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Larsen\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bjlarsen\",\"birth_date\":\"1989-01-31\",\"espn_id\":2517402},\"1750\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028907\",\"first_name\":\"Giorgio\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606264559074,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tavecchio\",\"depth_chart_position\":\"K\",\"player_id\":\"1750\",\"birth_city\":null,\"fantasy_data_id\":15758,\"years_exp\":8,\"hashtag\":\"#GiorgioTavecchio-NFL-TEN-4\",\"search_first_name\":\"giorgio\",\"rotowire_id\":8835,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Giorgio Tavecchio\",\"sportradar_id\":\"be449b4d-799c-4045-8e9e-e8a7fd7c2cc8\",\"pandascore_id\":null,\"yahoo_id\":26264,\"last_name\":\"Tavecchio\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Campolindo (CA)\",\"depth_chart_order\":2,\"stats_id\":474483,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'10\\\"\",\"search_full_name\":\"giorgiotavecchio\",\"birth_date\":\"1990-07-16\",\"espn_id\":15245},\"3933\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"3933\",\"birth_city\":null,\"fantasy_data_id\":18763,\"years_exp\":0,\"hashtag\":\"#MalcolmJackson-NFL-FA-48\",\"search_first_name\":\"malcolm\",\"rotowire_id\":11643,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malcolm Jackson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30060,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Charleston Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'11\\\"\",\"search_full_name\":\"malcolmjackson\",\"birth_date\":\"1994-02-04\",\"espn_id\":2977211},\"5198\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034671\",\"first_name\":\"Damon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1564154754130,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":null,\"player_id\":\"5198\",\"birth_city\":null,\"fantasy_data_id\":20195,\"years_exp\":2,\"hashtag\":\"#DamonWebb-NFL-FA-35\",\"search_first_name\":\"damon\",\"rotowire_id\":12745,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Damon Webb\",\"sportradar_id\":\"7f4b8e34-6a2e-4b60-9df5-732e5ef838be\",\"pandascore_id\":null,\"yahoo_id\":31611,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damonwebb\",\"birth_date\":\"1995-11-12\",\"espn_id\":3121433},\"4721\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shakeir\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":null,\"player_id\":\"4721\",\"birth_city\":null,\"fantasy_data_id\":19630,\"years_exp\":2,\"hashtag\":\"#ShakeirRyan-NFL-FA-17\",\"search_first_name\":\"shakeir\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Shakeir Ryan\",\"sportradar_id\":\"5f58ca51-c55b-46aa-8028-c6acb6c01f3a\",\"pandascore_id\":null,\"yahoo_id\":30867,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":\"Northwestern St. (LA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747298,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"161\",\"height\":\"5'8\\\"\",\"search_full_name\":\"shakeirryan\",\"birth_date\":\"1995-08-11\",\"espn_id\":3050670},\"3797\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032724\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535934943794,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"treggs\",\"depth_chart_position\":null,\"player_id\":\"3797\",\"birth_city\":null,\"fantasy_data_id\":18611,\"years_exp\":4,\"hashtag\":\"#BryceTreggs-NFL-FA-16\",\"search_first_name\":\"bryce\",\"rotowire_id\":11011,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bryce Treggs\",\"sportradar_id\":\"be921e61-4abb-43ff-aa4d-ccf9f9a66d67\",\"pandascore_id\":null,\"yahoo_id\":29775,\"last_name\":\"Treggs\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690981,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brycetreggs\",\"birth_date\":\"1994-04-30\",\"espn_id\":2978219},\"510\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Koa\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"misi\",\"depth_chart_position\":null,\"player_id\":\"510\",\"birth_city\":null,\"fantasy_data_id\":10960,\"years_exp\":10,\"hashtag\":\"#KoaMisi-NFL-FA-55\",\"search_first_name\":\"koa\",\"rotowire_id\":6577,\"rotoworld_id\":5875,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Koa Misi\",\"sportradar_id\":\"0cac1d16-8e3b-4c96-b674-9700a36cf772\",\"pandascore_id\":null,\"yahoo_id\":24015,\"last_name\":\"Misi\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Montgomery (CA)\",\"depth_chart_order\":null,\"stats_id\":383469,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"koamisi\",\"birth_date\":\"1987-01-17\",\"espn_id\":13287},\"6634\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035485\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605055261608,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"6634\",\"birth_city\":null,\"fantasy_data_id\":21414,\"years_exp\":1,\"hashtag\":\"#NateBrooks-NFL-BAL-30\",\"search_first_name\":\"nate\",\"rotowire_id\":13969,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1728,\"age\":24,\"full_name\":\"Nate Brooks\",\"sportradar_id\":\"ea8d0a80-2de3-4715-bcce-710f625ccb6a\",\"pandascore_id\":null,\"yahoo_id\":32472,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Whitehouse (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"natebrooks\",\"birth_date\":\"1996-09-05\",\"espn_id\":3914477},\"4540\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rehkow\",\"depth_chart_position\":null,\"player_id\":\"4540\",\"birth_city\":null,\"fantasy_data_id\":19419,\"years_exp\":2,\"hashtag\":\"#AustinRehkow-NFL-FA-3\",\"search_first_name\":\"austin\",\"rotowire_id\":12496,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Rehkow\",\"sportradar_id\":\"bd1193d4-ec52-46c1-bf6f-74a11f712097\",\"pandascore_id\":null,\"yahoo_id\":30597,\"last_name\":\"Rehkow\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austinrehkow\",\"birth_date\":\"1995-03-17\",\"espn_id\":3060187},\"595\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1519852201661,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"595\",\"birth_city\":null,\"fantasy_data_id\":11384,\"years_exp\":10,\"hashtag\":\"#WillieYoung-NFL-FA-97\",\"search_first_name\":\"willie\",\"rotowire_id\":6790,\"rotoworld_id\":5963,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Willie Young\",\"sportradar_id\":\"bc0d6b06-1416-4c50-a666-5df0aadffe15\",\"pandascore_id\":null,\"yahoo_id\":24189,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Palm Beach Gardens (FL)\",\"depth_chart_order\":null,\"stats_id\":262586,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'4\\\"\",\"search_full_name\":\"willieyoung\",\"birth_date\":\"1985-09-19\",\"espn_id\":13497},\"6229\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035324\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carney\",\"depth_chart_position\":\"WLB\",\"player_id\":\"6229\",\"birth_city\":null,\"fantasy_data_id\":21152,\"years_exp\":1,\"hashtag\":\"#MalikCarney-NFL-FA-0\",\"search_first_name\":\"malik\",\"rotowire_id\":13605,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1684,\"age\":24,\"full_name\":\"Malik Carney\",\"sportradar_id\":\"051dbbdf-1718-4abf-a088-25e551f9a303\",\"pandascore_id\":null,\"yahoo_id\":32451,\"last_name\":\"Carney\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'3\\\"\",\"search_full_name\":\"malikcarney\",\"birth_date\":\"1995-09-21\",\"espn_id\":3116693},\"6692\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035601\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hornjr\",\"depth_chart_position\":null,\"player_id\":\"6692\",\"birth_city\":null,\"fantasy_data_id\":21586,\"years_exp\":1,\"hashtag\":\"#JoeHornJr-NFL-FA-87\",\"search_first_name\":\"joe\",\"rotowire_id\":14309,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joe Horn Jr.\",\"sportradar_id\":\"1e2bbdff-9e08-438f-8506-cafe83066222\",\"pandascore_id\":null,\"yahoo_id\":32605,\"last_name\":\"Horn Jr.\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1167538,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joehornjr\",\"birth_date\":\"1994-09-16\",\"espn_id\":4423402},\"6073\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035490\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567260905523,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pulley\",\"depth_chart_position\":null,\"player_id\":\"6073\",\"birth_city\":null,\"fantasy_data_id\":20918,\"years_exp\":1,\"hashtag\":\"#RyanPulley-NFL-FA-36\",\"search_first_name\":\"ryan\",\"rotowire_id\":13563,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Pulley\",\"sportradar_id\":\"2ded061c-1061-4c92-b417-c6ef04134c8c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pulley\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ryanpulley\",\"birth_date\":\"1995-12-31\",\"espn_id\":3916913},\"2580\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Titus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2580\",\"birth_city\":null,\"fantasy_data_id\":17045,\"years_exp\":4,\"hashtag\":\"#TitusDavis-NFL-FA-2\",\"search_first_name\":\"titus\",\"rotowire_id\":10218,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Titus Davis\",\"sportradar_id\":\"d4d87b69-55b3-4d6a-b9c1-49d9b36c266c\",\"pandascore_id\":null,\"yahoo_id\":28678,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591602,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"titusdavis\",\"birth_date\":\"1993-01-03\",\"espn_id\":2574420},\"5914\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035665\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5914\",\"birth_city\":null,\"fantasy_data_id\":20861,\"years_exp\":1,\"hashtag\":\"#DavidLong-NFL-LAR-25\",\"search_first_name\":\"david\",\"rotowire_id\":13508,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1568,\"age\":22,\"full_name\":\"David Long\",\"sportradar_id\":\"57bda6af-7324-4e96-a207-525501224c41\",\"pandascore_id\":null,\"yahoo_id\":31911,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Loyola (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"davidlong\",\"birth_date\":\"1998-02-06\",\"espn_id\":4046536},\"707\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0025900\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1578762920068,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"707\",\"birth_city\":null,\"fantasy_data_id\":12179,\"years_exp\":12,\"hashtag\":\"#ChrisClark-NFL-FA-77\",\"search_first_name\":\"chris\",\"rotowire_id\":5836,\"rotoworld_id\":5490,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Chris Clark\",\"sportradar_id\":\"65578d87-d998-4de3-8866-90bbdb43faa9\",\"pandascore_id\":null,\"yahoo_id\":9181,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"McDonough (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrisclark\",\"birth_date\":\"1985-10-01\",\"espn_id\":11689},\"6051\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035306\",\"first_name\":\"Darryl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1604853617738,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6051\",\"birth_city\":null,\"fantasy_data_id\":20839,\"years_exp\":1,\"hashtag\":\"#DarrylJohnson-NFL-BUF-92\",\"search_first_name\":\"darryl\",\"rotowire_id\":13989,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1560,\"age\":23,\"full_name\":\"Darryl Johnson\",\"sportradar_id\":\"0e72812f-db64-4eb8-a7e4-41347067b375\",\"pandascore_id\":null,\"yahoo_id\":32057,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"North Carolina A&T\",\"high_school\":\"Camden County (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'6\\\"\",\"search_full_name\":\"darryljohnson\",\"birth_date\":\"1997-04-04\",\"espn_id\":3957672},\"1620\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030312\",\"first_name\":\"Jahleel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604865919635,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"addae\",\"depth_chart_position\":\"SS\",\"player_id\":\"1620\",\"birth_city\":null,\"fantasy_data_id\":15306,\"years_exp\":7,\"hashtag\":\"#JahleelAddae-NFL-LAC-36\",\"search_first_name\":\"jahleel\",\"rotowire_id\":9105,\"rotoworld_id\":8738,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jahleel Addae\",\"sportradar_id\":\"e005ee7b-3fb4-4219-8de3-a9b0302cb2dc\",\"pandascore_id\":null,\"yahoo_id\":26917,\"last_name\":\"Addae\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Riverview (FL)\",\"depth_chart_order\":2,\"stats_id\":466969,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jahleeladdae\",\"birth_date\":\"1990-01-24\",\"espn_id\":16039},\"2734\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"2734\",\"birth_city\":null,\"fantasy_data_id\":17202,\"years_exp\":0,\"hashtag\":\"#ToddThomas-NFL-FA-44\",\"search_first_name\":\"todd\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Todd Thomas\",\"sportradar_id\":\"525dca1a-0ef4-4a56-ace5-d5e03bdcf0a3\",\"pandascore_id\":null,\"yahoo_id\":28852,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"toddthomas\",\"birth_date\":\"1991-04-27\",\"espn_id\":2513154},\"8\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"8\",\"birth_city\":null,\"fantasy_data_id\":322,\"years_exp\":12,\"hashtag\":\"#JasonJones-NFL-FA-73\",\"search_first_name\":\"jason\",\"rotowire_id\":5721,\"rotoworld_id\":4860,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jason Jones\",\"sportradar_id\":\"06809e0e-1a00-4ff0-9f86-8a33d42fcd81\",\"pandascore_id\":null,\"yahoo_id\":8831,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":\"Lathrup (MI)\",\"depth_chart_order\":null,\"stats_id\":271592,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jasonjones\",\"birth_date\":\"1986-05-23\",\"espn_id\":11288},\"6752\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kellyii\",\"depth_chart_position\":null,\"player_id\":\"6752\",\"birth_city\":null,\"fantasy_data_id\":21671,\"years_exp\":0,\"hashtag\":\"#DerrickKellyII-NFL-NO-0\",\"search_first_name\":\"derrick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Derrick Kelly II\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kelly II\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"derrickkellyii\",\"birth_date\":\"1995-08-23\",\"espn_id\":null},\"6921\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604193911573,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"uche\",\"depth_chart_position\":\"LB\",\"player_id\":\"6921\",\"birth_city\":null,\"fantasy_data_id\":21889,\"years_exp\":0,\"hashtag\":\"#JoshUche-NFL-NE-53\",\"search_first_name\":\"josh\",\"rotowire_id\":14477,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1815,\"age\":22,\"full_name\":\"Josh Uche\",\"sportradar_id\":\"8738c2cc-4ac6-4288-922d-ce4590d9af42\",\"pandascore_id\":null,\"yahoo_id\":32730,\"last_name\":\"Uche\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan\",\"high_school\":\"Columbus (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshuche\",\"birth_date\":\"1998-09-18\",\"espn_id\":4046528},\"882\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ausberry\",\"depth_chart_position\":null,\"player_id\":\"882\",\"birth_city\":null,\"fantasy_data_id\":13050,\"years_exp\":5,\"hashtag\":\"#DavidAusberry-NFL-FA-86\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"David Ausberry\",\"sportradar_id\":\"2214528d-0f8a-49bc-afd1-59d88d64f74b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ausberry\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":322824,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davidausberry\",\"birth_date\":\"1987-09-25\",\"espn_id\":14102},\"4829\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034035\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564619447093,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4829\",\"birth_city\":null,\"fantasy_data_id\":19733,\"years_exp\":3,\"hashtag\":\"#DanielWilliams-NFL-FA-6\",\"search_first_name\":\"daniel\",\"rotowire_id\":12374,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Daniel Williams\",\"sportradar_id\":\"2e67a3f9-b3e8-409b-a61f-adc76fb83115\",\"pandascore_id\":null,\"yahoo_id\":30938,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":753865,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"danielwilliams\",\"birth_date\":\"1995-08-06\",\"espn_id\":3060347},\"5115\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034427\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1568317204824,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"5115\",\"birth_city\":null,\"fantasy_data_id\":20016,\"years_exp\":2,\"hashtag\":\"#DavidWilliams-NFL-FA-40\",\"search_first_name\":\"david\",\"rotowire_id\":13005,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Williams\",\"sportradar_id\":\"f9e352ee-a6f6-4b92-8683-1867739d6d94\",\"pandascore_id\":null,\"yahoo_id\":31196,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744612,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidwilliams\",\"birth_date\":\"1994-06-17\",\"espn_id\":3048924},\"1652\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029981\",\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536720002155,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sinkfield\",\"depth_chart_position\":\"SWR\",\"player_id\":\"1652\",\"birth_city\":null,\"fantasy_data_id\":15398,\"years_exp\":7,\"hashtag\":\"#TerrellSinkfield-NFL-FA-24\",\"search_first_name\":\"terrell\",\"rotowire_id\":10853,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Terrell Sinkfield\",\"sportradar_id\":\"db2af70c-d9ae-431c-875a-46a5fef39021\",\"pandascore_id\":null,\"yahoo_id\":27254,\"last_name\":\"Sinkfield\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":516170,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"terrellsinkfield\",\"birth_date\":\"1990-12-10\",\"espn_id\":16414},\"803\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028454\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1522089901249,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"freeny\",\"depth_chart_position\":null,\"player_id\":\"803\",\"birth_city\":null,\"fantasy_data_id\":12753,\"years_exp\":9,\"hashtag\":\"#JonathanFreeny-NFL-FA-55\",\"search_first_name\":\"jonathan\",\"rotowire_id\":7718,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jonathan Freeny\",\"sportradar_id\":\"c3315876-1a17-4c6e-b024-07db4489e016\",\"pandascore_id\":null,\"yahoo_id\":25327,\"last_name\":\"Freeny\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Coconut Creek (FL)\",\"depth_chart_order\":null,\"stats_id\":403264,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jonathanfreeny\",\"birth_date\":\"1989-06-15\",\"espn_id\":14387},\"2192\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031122\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606530029518,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"norwell\",\"depth_chart_position\":\"LG\",\"player_id\":\"2192\",\"birth_city\":null,\"fantasy_data_id\":16560,\"years_exp\":6,\"hashtag\":\"#AndrewNorwell-NFL-JAX-68\",\"search_first_name\":\"andrew\",\"rotowire_id\":9449,\"rotoworld_id\":9919,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Andrew Norwell\",\"sportradar_id\":\"b90a3e2a-66fb-4b1a-a6de-7482fbe2d1b2\",\"pandascore_id\":null,\"yahoo_id\":27942,\"last_name\":\"Norwell\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Anderson (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewnorwell\",\"birth_date\":\"1991-10-25\",\"espn_id\":17388},\"5651\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034470\",\"first_name\":\"Toby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1545274511577,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weathersby\",\"depth_chart_position\":null,\"player_id\":\"5651\",\"birth_city\":null,\"fantasy_data_id\":20417,\"years_exp\":2,\"hashtag\":\"#TobyWeathersby-NFL-FA-72\",\"search_first_name\":\"toby\",\"rotowire_id\":12603,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Toby Weathersby\",\"sportradar_id\":\"3f35f03b-45c8-4bac-a535-b97a0c5022b3\",\"pandascore_id\":null,\"yahoo_id\":31593,\"last_name\":\"Weathersby\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tobyweathersby\",\"birth_date\":\"1996-09-19\",\"espn_id\":3844004},\"5303\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034372\",\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1571353810225,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"iyiegbuniwe\",\"depth_chart_position\":\"RILB\",\"player_id\":\"5303\",\"birth_city\":null,\"fantasy_data_id\":19931,\"years_exp\":2,\"hashtag\":\"#JoelIyiegbuniwe-NFL-CHI-45\",\"search_first_name\":\"joel\",\"rotowire_id\":12640,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1350,\"age\":25,\"full_name\":\"Joel Iyiegbuniwe\",\"sportradar_id\":\"ea59d8de-e3df-4a7b-9778-7d6dc4892fc3\",\"pandascore_id\":null,\"yahoo_id\":31085,\"last_name\":\"Iyiegbuniwe\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"South Warren (KY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joeliyiegbuniwe\",\"birth_date\":\"1995-10-12\",\"espn_id\":3124779},\"2188\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foucault\",\"depth_chart_position\":null,\"player_id\":\"2188\",\"birth_city\":null,\"fantasy_data_id\":16556,\"years_exp\":6,\"hashtag\":\"#DavidFoucault-NFL-FA-63\",\"search_first_name\":\"david\",\"rotowire_id\":9835,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"David Foucault\",\"sportradar_id\":\"e0b9515a-1c73-4eb4-b401-ac162c5ba2ed\",\"pandascore_id\":null,\"yahoo_id\":28230,\"last_name\":\"Foucault\",\"metadata\":null,\"college\":\"Montreal, Can.\",\"high_school\":\"College Edouard-Montpetit\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'8\\\"\",\"search_full_name\":\"davidfoucault\",\"birth_date\":\"1989-02-07\",\"espn_id\":17439},\"697\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"697\",\"birth_city\":null,\"fantasy_data_id\":12136,\"years_exp\":9,\"hashtag\":\"#LeonWashington-NFL-FA-29\",\"search_first_name\":\"leon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Leon Washington\",\"sportradar_id\":\"a78b6faa-0606-445c-901b-b79c1f2771bd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'8\\\"\",\"search_full_name\":\"leonwashington\",\"birth_date\":\"1982-08-29\",\"espn_id\":9703},\"2340\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032265\",\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601840740354,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":\"RDE\",\"player_id\":\"2340\",\"birth_city\":null,\"fantasy_data_id\":16796,\"years_exp\":5,\"hashtag\":\"#MarioEdwards-NFL-CHI-97\",\"search_first_name\":\"mario\",\"rotowire_id\":10450,\"rotoworld_id\":10475,\"active\":true,\"search_rank\":862,\"age\":26,\"full_name\":\"Mario Edwards\",\"sportradar_id\":\"fdfb980b-1493-4698-9b97-f445a8f495da\",\"pandascore_id\":null,\"yahoo_id\":28423,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Billy Ryan (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marioedwards\",\"birth_date\":\"1994-01-25\",\"espn_id\":2969921},\"228\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1523544001398,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"228\",\"birth_city\":null,\"fantasy_data_id\":5701,\"years_exp\":14,\"hashtag\":\"#FredJackson-NFL-FA-22\",\"search_first_name\":\"fred\",\"rotowire_id\":5065,\"rotoworld_id\":4506,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Fred Jackson\",\"sportradar_id\":\"db72d154-5534-4160-b293-d0c4b239a677\",\"pandascore_id\":null,\"yahoo_id\":8063,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Coe\",\"high_school\":\"Lamar (TX)\",\"depth_chart_order\":null,\"stats_id\":331161,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'1\\\"\",\"search_full_name\":\"fredjackson\",\"birth_date\":\"1981-02-20\",\"espn_id\":10195},\"2270\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031282\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587961853073,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"britt\",\"depth_chart_position\":\"C\",\"player_id\":\"2270\",\"birth_city\":null,\"fantasy_data_id\":16681,\"years_exp\":6,\"hashtag\":\"#JustinBritt-NFL-FA-68\",\"search_first_name\":\"justin\",\"rotowire_id\":9427,\"rotoworld_id\":9587,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Justin Britt\",\"sportradar_id\":\"30fedd72-bf59-4a35-9aa9-dd01b1122c09\",\"pandascore_id\":null,\"yahoo_id\":27592,\"last_name\":\"Britt\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Lebanon (MO)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"justinbritt\",\"birth_date\":\"1991-05-29\",\"espn_id\":16742},\"3279\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032403\",\"first_name\":\"Juston\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605379258923,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burris\",\"depth_chart_position\":\"SS\",\"player_id\":\"3279\",\"birth_city\":null,\"fantasy_data_id\":18040,\"years_exp\":4,\"hashtag\":\"#JustonBurris-NFL-CAR-31\",\"search_first_name\":\"juston\",\"rotowire_id\":10929,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1006,\"age\":27,\"full_name\":\"Juston Burris\",\"sportradar_id\":\"5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9\",\"pandascore_id\":null,\"yahoo_id\":29352,\"last_name\":\"Burris\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Broughton (NC)\",\"depth_chart_order\":1,\"stats_id\":600749,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justonburris\",\"birth_date\":\"1993-08-04\",\"espn_id\":2577740},\"3813\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032849\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596156019198,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"roberson\",\"depth_chart_position\":null,\"player_id\":\"3813\",\"birth_city\":null,\"fantasy_data_id\":18629,\"years_exp\":4,\"hashtag\":\"#TreRoberson-NFL-CHI-31\",\"search_first_name\":\"tre\",\"rotowire_id\":11506,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tre Roberson\",\"sportradar_id\":\"7ba5935c-0e54-4ad0-b90e-ff4af7d62b85\",\"pandascore_id\":null,\"yahoo_id\":29925,\"last_name\":\"Roberson\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"Lawrence Central (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"treroberson\",\"birth_date\":\"1992-10-22\",\"espn_id\":2578317},\"2605\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Merrill\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"noel\",\"depth_chart_position\":null,\"player_id\":\"2605\",\"birth_city\":null,\"fantasy_data_id\":17073,\"years_exp\":5,\"hashtag\":\"#MerrillNoel-NFL-FA-46\",\"search_first_name\":\"merrill\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Merrill Noel\",\"sportradar_id\":\"a94ec01e-f58b-4c40-836e-e8254581d9c7\",\"pandascore_id\":null,\"yahoo_id\":28774,\"last_name\":\"Noel\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Pahokee HS (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'10\\\"\",\"search_full_name\":\"merrillnoel\",\"birth_date\":\"1991-09-10\",\"espn_id\":2511529},\"1371\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dee\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"milliner\",\"depth_chart_position\":null,\"player_id\":\"1371\",\"birth_city\":null,\"fantasy_data_id\":14893,\"years_exp\":7,\"hashtag\":\"#DeeMilliner-NFL-FA-27\",\"search_first_name\":\"dee\",\"rotowire_id\":8636,\"rotoworld_id\":8325,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dee Milliner\",\"sportradar_id\":\"f8ae5c0d-42ba-4b30-88b8-728338253770\",\"pandascore_id\":null,\"yahoo_id\":26632,\"last_name\":\"Milliner\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Stanhope Elmore (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deemilliner\",\"birth_date\":\"1991-09-14\",\"espn_id\":15804},\"7353\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"DL\"],\"news_updated\":1599193855149,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sterk\",\"depth_chart_position\":null,\"player_id\":\"7353\",\"birth_city\":null,\"fantasy_data_id\":22341,\"years_exp\":0,\"hashtag\":\"#BryceSterk-NFL-FA-0\",\"search_first_name\":\"bryce\",\"rotowire_id\":15030,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Bryce Sterk\",\"sportradar_id\":\"a56aa157-a449-4550-bf25-59fa6fd2415d\",\"pandascore_id\":null,\"yahoo_id\":33245,\"last_name\":\"Sterk\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brycesterk\",\"birth_date\":\"1996-09-11\",\"espn_id\":3886832},\"3263\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033075\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588722003326,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tapper\",\"depth_chart_position\":null,\"player_id\":\"3263\",\"birth_city\":null,\"fantasy_data_id\":18024,\"years_exp\":4,\"hashtag\":\"#CharlesTapper-NFL-FA-0\",\"search_first_name\":\"charles\",\"rotowire_id\":10954,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Charles Tapper\",\"sportradar_id\":\"9aeb2a34-dbc9-463f-9c94-7161336f37cf\",\"pandascore_id\":null,\"yahoo_id\":29335,\"last_name\":\"Tapper\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"charlestapper\",\"birth_date\":\"1993-05-07\",\"espn_id\":2976623},\"6344\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035368\",\"first_name\":\"Picasso\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598589347653,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"6344\",\"birth_city\":null,\"fantasy_data_id\":21251,\"years_exp\":1,\"hashtag\":\"#PicassoNelson-NFL-TEN-43\",\"search_first_name\":\"picasso\",\"rotowire_id\":14032,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1704,\"age\":24,\"full_name\":\"Picasso Nelson\",\"sportradar_id\":\"cff07c85-137a-4496-8df9-4f96f68f1318\",\"pandascore_id\":null,\"yahoo_id\":32095,\"last_name\":\"Nelson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Southern Mississippi\",\"high_school\":\"Oak Grove (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"picassonelson\",\"birth_date\":\"1996-04-15\",\"espn_id\":3123966},\"5092\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034393\",\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606192250585,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fumagalli\",\"depth_chart_position\":\"TE\",\"player_id\":\"5092\",\"birth_city\":null,\"fantasy_data_id\":19973,\"years_exp\":2,\"hashtag\":\"#TroyFumagalli-NFL-DEN-84\",\"search_first_name\":\"troy\",\"rotowire_id\":12808,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1377,\"age\":25,\"full_name\":\"Troy Fumagalli\",\"sportradar_id\":\"579d92e6-ab4f-43e0-803f-b2d5a54d106a\",\"pandascore_id\":null,\"yahoo_id\":31126,\"last_name\":\"Fumagalli\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Waubonsie Valley (IL)\",\"depth_chart_order\":3,\"stats_id\":742474,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'6\\\"\",\"search_full_name\":\"troyfumagalli\",\"birth_date\":\"1995-02-17\",\"espn_id\":3045264},\"1130\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cyrus\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"1130\",\"birth_city\":null,\"fantasy_data_id\":14070,\"years_exp\":4,\"hashtag\":\"#CyrusGray-NFL-FA-30\",\"search_first_name\":\"cyrus\",\"rotowire_id\":8059,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cyrus Gray\",\"sportradar_id\":\"e75d1c7c-d4df-4d17-82a9-57c97cd63d02\",\"pandascore_id\":null,\"yahoo_id\":25892,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":449183,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cyrusgray\",\"birth_date\":\"1989-11-18\",\"espn_id\":14897},\"1067\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029293\",\"first_name\":\"Marvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606428960158,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1067\",\"birth_city\":null,\"fantasy_data_id\":13870,\"years_exp\":8,\"hashtag\":\"#MarvinJones-NFL-DET-11\",\"search_first_name\":\"marvin\",\"rotowire_id\":8223,\"rotoworld_id\":7503,\"active\":true,\"search_rank\":92,\"age\":30,\"full_name\":\"Marvin Jones\",\"sportradar_id\":\"1a2fbc23-e6db-4d2f-a152-2c774341b7c4\",\"pandascore_id\":null,\"yahoo_id\":25876,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Eitwanda (CA)\",\"depth_chart_order\":1,\"stats_id\":461620,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marvinjones\",\"birth_date\":\"1990-03-12\",\"espn_id\":15072},\"4999\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034381\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1602038136405,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sweat\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4999\",\"birth_city\":null,\"fantasy_data_id\":19918,\"years_exp\":2,\"hashtag\":\"#JoshSweat-NFL-PHI-94\",\"search_first_name\":\"josh\",\"rotowire_id\":12546,\"rotoworld_id\":13132,\"active\":true,\"search_rank\":1340,\"age\":23,\"full_name\":\"Josh Sweat\",\"sportradar_id\":\"66a67b5d-500d-46e8-90c6-e2f127d38190\",\"pandascore_id\":null,\"yahoo_id\":31101,\"last_name\":\"Sweat\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Oscar Smith (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshsweat\",\"birth_date\":\"1997-03-29\",\"espn_id\":3693166},\"686\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaun\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"686\",\"birth_city\":null,\"fantasy_data_id\":11992,\"years_exp\":18,\"hashtag\":\"#ShaunHill-NFL-FA-13\",\"search_first_name\":\"shaun\",\"rotowire_id\":2688,\"rotoworld_id\":1216,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Shaun Hill\",\"sportradar_id\":\"52b14c80-ffc5-4fd6-9a32-d07b261f0841\",\"pandascore_id\":null,\"yahoo_id\":6169,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Parsons (KS)\",\"depth_chart_order\":null,\"stats_id\":171596,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shaunhill\",\"birth_date\":\"1980-01-09\",\"espn_id\":4260},\"1345\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030401\",\"first_name\":\"Kiko\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606172115293,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alonso\",\"depth_chart_position\":null,\"player_id\":\"1345\",\"birth_city\":null,\"fantasy_data_id\":14864,\"years_exp\":7,\"hashtag\":\"#KikoAlonso-NFL-SF-54\",\"search_first_name\":\"kiko\",\"rotowire_id\":8698,\"rotoworld_id\":8445,\"active\":true,\"search_rank\":707,\"age\":30,\"full_name\":\"Kiko Alonso\",\"sportradar_id\":\"1b0234dc-a434-4c31-bb41-6457c068a0fa\",\"pandascore_id\":null,\"yahoo_id\":26669,\"last_name\":\"Alonso\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Los Gatos (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kikoalonso\",\"birth_date\":\"1990-08-14\",\"espn_id\":15819},\"5245\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034146\",\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mangen\",\"depth_chart_position\":null,\"player_id\":\"5245\",\"birth_city\":null,\"fantasy_data_id\":20228,\"years_exp\":2,\"hashtag\":\"#TroyMangen-NFL-FA-80\",\"search_first_name\":\"troy\",\"rotowire_id\":13082,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Troy Mangen\",\"sportradar_id\":\"3d4553a8-00bb-4511-9a33-da8664cb5563\",\"pandascore_id\":null,\"yahoo_id\":31346,\"last_name\":\"Mangen\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744080,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'5\\\"\",\"search_full_name\":\"troymangen\",\"birth_date\":\"1994-07-25\",\"espn_id\":3052991},\"3692\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032549\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606066218968,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"redmond\",\"depth_chart_position\":\"RG\",\"player_id\":\"3692\",\"birth_city\":null,\"fantasy_data_id\":18494,\"years_exp\":4,\"hashtag\":\"#AlexRedmond-NFL-CIN-62\",\"search_first_name\":\"alex\",\"rotowire_id\":11116,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alex Redmond\",\"sportradar_id\":\"133ff990-0b7b-467d-a949-1e1720f96bc9\",\"pandascore_id\":null,\"yahoo_id\":29709,\"last_name\":\"Redmond\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Los Alamitos (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"alexredmond\",\"birth_date\":\"1995-01-18\",\"espn_id\":3047571},\"5723\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034712\",\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598817325478,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunn\",\"depth_chart_position\":null,\"player_id\":\"5723\",\"birth_city\":null,\"fantasy_data_id\":20636,\"years_exp\":2,\"hashtag\":\"#CaseyDunn-NFL-FA-0\",\"search_first_name\":\"casey\",\"rotowire_id\":13339,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Casey Dunn\",\"sportradar_id\":\"bffc773e-0286-4c48-933f-17ccd9c805d6\",\"pandascore_id\":null,\"yahoo_id\":31721,\"last_name\":\"Dunn\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"caseydunn\",\"birth_date\":\"1994-10-11\",\"espn_id\":3057534},\"2664\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cariel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"2664\",\"birth_city\":null,\"fantasy_data_id\":17132,\"years_exp\":5,\"hashtag\":\"#CarielBrooks-NFL-FA-35\",\"search_first_name\":\"cariel\",\"rotowire_id\":10703,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Cariel Brooks\",\"sportradar_id\":\"c546c58e-53eb-43dd-851b-401bb870e388\",\"pandascore_id\":null,\"yahoo_id\":28802,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Adams State\",\"high_school\":\"Miami Carol \",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"carielbrooks\",\"birth_date\":\"1991-04-24\",\"espn_id\":3892576},\"3206\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033125\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606194950362,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schobert\",\"depth_chart_position\":\"MLB\",\"player_id\":\"3206\",\"birth_city\":null,\"fantasy_data_id\":17967,\"years_exp\":4,\"hashtag\":\"#JoeSchobert-NFL-JAX-47\",\"search_first_name\":\"joe\",\"rotowire_id\":10968,\"rotoworld_id\":11425,\"active\":true,\"search_rank\":967,\"age\":27,\"full_name\":\"Joe Schobert\",\"sportradar_id\":\"82a70525-35cd-4389-a5d1-3b0f11f05a28\",\"pandascore_id\":null,\"yahoo_id\":29333,\"last_name\":\"Schobert\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Waukesha West (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joeschobert\",\"birth_date\":\"1993-11-06\",\"espn_id\":2977819},\"6217\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035276\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606075220118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cashman\",\"depth_chart_position\":\"RILB\",\"player_id\":\"6217\",\"birth_city\":null,\"fantasy_data_id\":21118,\"years_exp\":1,\"hashtag\":\"#BlakeCashman-NFL-NYJ-53\",\"search_first_name\":\"blake\",\"rotowire_id\":13846,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1666,\"age\":24,\"full_name\":\"Blake Cashman\",\"sportradar_id\":\"17dfbad4-f4fc-4a65-a085-6cdcefe36879\",\"pandascore_id\":null,\"yahoo_id\":31989,\"last_name\":\"Cashman\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Eden Prairie (MN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"blakecashman\",\"birth_date\":\"1996-05-10\",\"espn_id\":3728281},\"340\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lex\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hilliard\",\"depth_chart_position\":null,\"player_id\":\"340\",\"birth_city\":null,\"fantasy_data_id\":8331,\"years_exp\":5,\"hashtag\":\"#LexHilliard-NFL-FA-36\",\"search_first_name\":\"lex\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Lex Hilliard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hilliard\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lexhilliard\",\"birth_date\":\"1984-07-30\",\"espn_id\":null},\"3882\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033063\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LS\",\"DL\"],\"news_updated\":1596900042260,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wood\",\"depth_chart_position\":null,\"player_id\":\"3882\",\"birth_city\":null,\"fantasy_data_id\":18704,\"years_exp\":4,\"hashtag\":\"#ZachWood-NFL-NO-49\",\"search_first_name\":\"zach\",\"rotowire_id\":11673,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Zach Wood\",\"sportradar_id\":\"94510e36-d0ea-48c5-9c7e-b09b31c5c218\",\"pandascore_id\":null,\"yahoo_id\":30015,\"last_name\":\"Wood\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Rowlett (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"zachwood\",\"birth_date\":\"1993-01-10\",\"espn_id\":2575788},\"4870\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1549131913662,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flores\",\"depth_chart_position\":null,\"player_id\":\"4870\",\"birth_city\":null,\"fantasy_data_id\":19770,\"years_exp\":0,\"hashtag\":\"#BrianFlores-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":13050,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brian Flores\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Flores\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"brianflores\",\"birth_date\":null,\"espn_id\":null},\"1808\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031171\",\"first_name\":\"Preston\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1576104352431,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"1808\",\"birth_city\":null,\"fantasy_data_id\":15986,\"years_exp\":6,\"hashtag\":\"#PrestonBrown-NFL-FA-59\",\"search_first_name\":\"preston\",\"rotowire_id\":9387,\"rotoworld_id\":9590,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Preston Brown\",\"sportradar_id\":\"42a9be0e-66cd-4efc-8150-91950ed97955\",\"pandascore_id\":null,\"yahoo_id\":27601,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Northwest (OH)\",\"depth_chart_order\":null,\"stats_id\":553697,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'1\\\"\",\"search_full_name\":\"prestonbrown\",\"birth_date\":\"1992-10-27\",\"espn_id\":16762},\"6641\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035211\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"soroh\",\"depth_chart_position\":null,\"player_id\":\"6641\",\"birth_city\":null,\"fantasy_data_id\":21522,\"years_exp\":1,\"hashtag\":\"#AndrewSoroh-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":14193,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Andrew Soroh\",\"sportradar_id\":\"3e75960b-f28a-4221-8800-fde346336b0f\",\"pandascore_id\":null,\"yahoo_id\":32397,\"last_name\":\"Soroh\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andrewsoroh\",\"birth_date\":\"1996-02-12\",\"espn_id\":3122710},\"3863\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"licata\",\"depth_chart_position\":null,\"player_id\":\"3863\",\"birth_city\":null,\"fantasy_data_id\":18685,\"years_exp\":0,\"hashtag\":\"#JoeLicata-NFL-FA-8\",\"search_first_name\":\"joe\",\"rotowire_id\":11378,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joe Licata\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29996,\"last_name\":\"Licata\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joelicata\",\"birth_date\":\"1992-11-16\",\"espn_id\":2574378},\"5431\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034100\",\"first_name\":\"Shay\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535839809940,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fields\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5431\",\"birth_city\":null,\"fantasy_data_id\":20528,\"years_exp\":2,\"hashtag\":\"#ShayFields-NFL-FA-16\",\"search_first_name\":\"shay\",\"rotowire_id\":13099,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Shay Fields\",\"sportradar_id\":\"1aa37430-1442-42b6-bb1f-f76f3817c7dc\",\"pandascore_id\":null,\"yahoo_id\":31399,\"last_name\":\"Fields\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":835740,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'10\\\"\",\"search_full_name\":\"shayfields\",\"birth_date\":\"1996-06-22\",\"espn_id\":3122607},\"1591\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alvin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"1591\",\"birth_city\":null,\"fantasy_data_id\":15244,\"years_exp\":7,\"hashtag\":\"#AlvinBailey-NFL-FA-78\",\"search_first_name\":\"alvin\",\"rotowire_id\":8704,\"rotoworld_id\":8690,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Alvin Bailey\",\"sportradar_id\":\"af867ba7-f44e-4c1f-a4b3-61a9b5a7065d\",\"pandascore_id\":null,\"yahoo_id\":26894,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Broken Arrow (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alvinbailey\",\"birth_date\":\"1991-08-26\",\"espn_id\":16044},\"2235\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vandyk\",\"depth_chart_position\":null,\"player_id\":\"2235\",\"birth_city\":null,\"fantasy_data_id\":16635,\"years_exp\":1,\"hashtag\":\"#MitchellVanDyk-NFL-FA-69\",\"search_first_name\":\"mitchell\",\"rotowire_id\":9780,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mitchell VanDyk\",\"sportradar_id\":\"aa2a588f-2efa-40cf-9b51-0330c03d83b5\",\"pandascore_id\":null,\"yahoo_id\":27754,\"last_name\":\"VanDyk\",\"metadata\":null,\"college\":\"Portland St\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'9\\\"\",\"search_full_name\":\"mitchellvandyk\",\"birth_date\":\"1991-01-02\",\"espn_id\":16935},\"2230\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031389\",\"first_name\":\"Lamarcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606061717184,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"joyner\",\"depth_chart_position\":null,\"player_id\":\"2230\",\"birth_city\":null,\"fantasy_data_id\":16625,\"years_exp\":6,\"hashtag\":\"#LamarcusJoyner-NFL-LV-29\",\"search_first_name\":\"lamarcus\",\"rotowire_id\":9327,\"rotoworld_id\":9635,\"active\":true,\"search_rank\":839,\"age\":30,\"full_name\":\"Lamarcus Joyner\",\"sportradar_id\":\"99d9eebd-808f-4573-b39b-b9fef4ce5e98\",\"pandascore_id\":null,\"yahoo_id\":27569,\"last_name\":\"Joyner\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'8\\\"\",\"search_full_name\":\"lamarcusjoyner\",\"birth_date\":\"1990-11-27\",\"espn_id\":16769},\"5261\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034633\",\"first_name\":\"Jester\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599331557124,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weah\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5261\",\"birth_city\":null,\"fantasy_data_id\":20296,\"years_exp\":2,\"hashtag\":\"#JesterWeah-NFL-FA-0\",\"search_first_name\":\"jester\",\"rotowire_id\":12653,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1445,\"age\":25,\"full_name\":\"Jester Weah\",\"sportradar_id\":\"9fd7fab6-1c26-418f-9696-e8dd0208d508\",\"pandascore_id\":null,\"yahoo_id\":31592,\"last_name\":\"Weah\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":12,\"stats_id\":742410,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jesterweah\",\"birth_date\":\"1995-02-07\",\"espn_id\":3045164},\"1119\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nowak\",\"depth_chart_position\":null,\"player_id\":\"1119\",\"birth_city\":null,\"fantasy_data_id\":14033,\"years_exp\":8,\"hashtag\":\"#DrewNowak-NFL-FA-68\",\"search_first_name\":\"drew\",\"rotowire_id\":10710,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Drew Nowak\",\"sportradar_id\":\"33df4b34-a867-4e95-a5e9-6b399eeffb59\",\"pandascore_id\":null,\"yahoo_id\":26090,\"last_name\":\"Nowak\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"De Pere (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'3\\\"\",\"search_full_name\":\"drewnowak\",\"birth_date\":\"1990-03-07\",\"espn_id\":15366},\"258\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ronnie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"258\",\"birth_city\":null,\"fantasy_data_id\":6458,\"years_exp\":9,\"hashtag\":\"#RonnieBrown-NFL-FA-30\",\"search_first_name\":\"ronnie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Ronnie Brown\",\"sportradar_id\":\"b2c89b10-76a0-422e-876a-db6b2968fd76\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ronniebrown\",\"birth_date\":\"1981-12-12\",\"espn_id\":8417},\"7161\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693360002,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leatherbury\",\"depth_chart_position\":null,\"player_id\":\"7161\",\"birth_city\":null,\"fantasy_data_id\":22162,\"years_exp\":0,\"hashtag\":\"#ShaneLeatherbury-NFL-FA-0\",\"search_first_name\":\"shane\",\"rotowire_id\":14893,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Shane Leatherbury\",\"sportradar_id\":\"58f05d39-c84a-4154-912b-f1d54fd08e61\",\"pandascore_id\":null,\"yahoo_id\":33081,\"last_name\":\"Leatherbury\",\"metadata\":null,\"college\":\"Towson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"shaneleatherbury\",\"birth_date\":null,\"espn_id\":null},\"2581\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jahwan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"2581\",\"birth_city\":null,\"fantasy_data_id\":17046,\"years_exp\":0,\"hashtag\":\"#JahwanEdwards-NFL-FA-40\",\"search_first_name\":\"jahwan\",\"rotowire_id\":10199,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jahwan Edwards\",\"sportradar_id\":\"a97cad40-62d3-49ce-9e7f-e3c9662d5681\",\"pandascore_id\":null,\"yahoo_id\":28680,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591565,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jahwanedwards\",\"birth_date\":\"1992-07-27\",\"espn_id\":2577845},\"3709\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032552\",\"first_name\":\"Adairius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1524174601281,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"3709\",\"birth_city\":null,\"fantasy_data_id\":18515,\"years_exp\":3,\"hashtag\":\"#AdairiusBarnes-NFL-FA-38\",\"search_first_name\":\"adairius\",\"rotowire_id\":11328,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Adairius Barnes\",\"sportradar_id\":\"0d50cb7b-d179-41b7-b4bd-acc4c05e2d8a\",\"pandascore_id\":null,\"yahoo_id\":29771,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693055,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'11\\\"\",\"search_full_name\":\"adairiusbarnes\",\"birth_date\":\"1994-04-30\",\"espn_id\":2971880},\"885\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gordon\",\"depth_chart_position\":null,\"player_id\":\"885\",\"birth_city\":null,\"fantasy_data_id\":13059,\"years_exp\":9,\"hashtag\":\"#RichardGordon-NFL-FA-85\",\"search_first_name\":\"richard\",\"rotowire_id\":7561,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Richard Gordon\",\"sportradar_id\":\"0af0c081-9430-4317-99af-57c7432c24fa\",\"pandascore_id\":null,\"yahoo_id\":24968,\"last_name\":\"Gordon\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miami Norland (FL)\",\"depth_chart_order\":null,\"stats_id\":323386,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'4\\\"\",\"search_full_name\":\"richardgordon\",\"birth_date\":\"1987-06-07\",\"espn_id\":14211},\"5512\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034582\",\"first_name\":\"Brendan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544112331423,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mahon\",\"depth_chart_position\":\"LG\",\"player_id\":\"5512\",\"birth_city\":null,\"fantasy_data_id\":20104,\"years_exp\":2,\"hashtag\":\"#BrendanMahon-NFL-FA-63\",\"search_first_name\":\"brendan\",\"rotowire_id\":13235,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brendan Mahon\",\"sportradar_id\":\"a25bf0a9-84a3-49c3-9969-50b046a0fa30\",\"pandascore_id\":null,\"yahoo_id\":31311,\"last_name\":\"Mahon\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brendanmahon\",\"birth_date\":\"1995-01-17\",\"espn_id\":3057991},\"361\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027008\",\"first_name\":\"Ziggy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567217157467,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hood\",\"depth_chart_position\":null,\"player_id\":\"361\",\"birth_city\":null,\"fantasy_data_id\":8507,\"years_exp\":11,\"hashtag\":\"#ZiggyHood-NFL-FA-76\",\"search_first_name\":\"ziggy\",\"rotowire_id\":6067,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ziggy Hood\",\"sportradar_id\":\"5f2a0be9-3420-4aa4-a723-8956a58a8a8a\",\"pandascore_id\":null,\"yahoo_id\":9296,\"last_name\":\"Hood\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Palo Duro (TX)\",\"depth_chart_order\":null,\"stats_id\":300647,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ziggyhood\",\"birth_date\":\"1987-02-16\",\"espn_id\":12442},\"3533\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chestnut\",\"depth_chart_position\":null,\"player_id\":\"3533\",\"birth_city\":null,\"fantasy_data_id\":18300,\"years_exp\":0,\"hashtag\":\"#TerrellChestnut-NFL-FA-40\",\"search_first_name\":\"terrell\",\"rotowire_id\":11622,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Terrell Chestnut\",\"sportradar_id\":\"79b62c35-c30c-4c4e-a266-b270a3e97768\",\"pandascore_id\":null,\"yahoo_id\":29517,\"last_name\":\"Chestnut\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"terrellchestnut\",\"birth_date\":\"1991-12-10\",\"espn_id\":null},\"7356\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyshun\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"render\",\"depth_chart_position\":null,\"player_id\":\"7356\",\"birth_city\":null,\"fantasy_data_id\":22344,\"years_exp\":0,\"hashtag\":\"#TyshunRender-NFL-MIA-64\",\"search_first_name\":\"tyshun\",\"rotowire_id\":15029,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1985,\"age\":23,\"full_name\":\"Tyshun Render\",\"sportradar_id\":\"160934d8-6fac-4a5f-8121-d8bca301d1b4\",\"pandascore_id\":null,\"yahoo_id\":33243,\"last_name\":\"Render\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Westlake (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyshunrender\",\"birth_date\":\"1997-03-28\",\"espn_id\":3914456},\"487\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026502\",\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1547844959601,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jeanfrancois\",\"depth_chart_position\":null,\"player_id\":\"487\",\"birth_city\":null,\"fantasy_data_id\":9828,\"years_exp\":11,\"hashtag\":\"#RickyJeanFrancois-NFL-FA-97\",\"search_first_name\":\"ricky\",\"rotowire_id\":7141,\"rotoworld_id\":5122,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ricky Jean-Francois\",\"sportradar_id\":\"c0e4ed02-82ec-4bde-a1b1-c035dde46402\",\"pandascore_id\":null,\"yahoo_id\":9508,\"last_name\":\"Jean-Francois\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Miami Carol City (FL)\",\"depth_chart_order\":null,\"stats_id\":303880,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rickyjeanfrancois\",\"birth_date\":\"1986-11-23\",\"espn_id\":12443},\"5\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dallas\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"5\",\"birth_city\":null,\"fantasy_data_id\":244,\"years_exp\":11,\"hashtag\":\"#DallasClark-NFL-FA-87\",\"search_first_name\":\"dallas\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Dallas Clark\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dallasclark\",\"birth_date\":\"1979-06-12\",\"espn_id\":null},\"6576\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035503\",\"first_name\":\"Toa\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lobendahn\",\"depth_chart_position\":null,\"player_id\":\"6576\",\"birth_city\":null,\"fantasy_data_id\":21274,\"years_exp\":1,\"hashtag\":\"#ToaLobendahn-NFL-FA-60\",\"search_first_name\":\"toa\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Toa Lobendahn\",\"sportradar_id\":\"ae34c85c-a174-4f6e-b11a-f3b56e3c230f\",\"pandascore_id\":null,\"yahoo_id\":32526,\"last_name\":\"Lobendahn\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"toalobendahn\",\"birth_date\":\"1996-02-14\",\"espn_id\":3120360},\"3803\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032813\",\"first_name\":\"Elijhaa\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1584043515501,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"penny\",\"depth_chart_position\":\"RB\",\"player_id\":\"3803\",\"birth_city\":null,\"fantasy_data_id\":18617,\"years_exp\":4,\"hashtag\":\"#ElijhaaPenny-NFL-NYG-39\",\"search_first_name\":\"elijhaa\",\"rotowire_id\":11297,\"rotoworld_id\":11964,\"active\":true,\"search_rank\":414,\"age\":27,\"full_name\":\"Elijhaa Penny\",\"sportradar_id\":\"6c6a6099-0169-4c9a-b024-0d8f4a795f38\",\"pandascore_id\":null,\"yahoo_id\":29906,\"last_name\":\"Penny\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Norwalk (CA)\",\"depth_chart_order\":4,\"stats_id\":606629,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"elijhaapenny\",\"birth_date\":\"1993-08-17\",\"espn_id\":2575965},\"6540\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035385\",\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599503403763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompkins\",\"depth_chart_position\":null,\"player_id\":\"6540\",\"birth_city\":null,\"fantasy_data_id\":21526,\"years_exp\":1,\"hashtag\":\"#DeAndreThompkins-NFL-FA-0\",\"search_first_name\":\"deandre\",\"rotowire_id\":14023,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"DeAndre Thompkins\",\"sportradar_id\":\"8b66001c-c41f-406a-9583-d8b6848ea6d2\",\"pandascore_id\":null,\"yahoo_id\":32409,\"last_name\":\"Thompkins\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":821298,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deandrethompkins\",\"birth_date\":\"1995-10-01\",\"espn_id\":3116182},\"422\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026784\",\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565628356099,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"422\",\"birth_city\":null,\"fantasy_data_id\":9042,\"years_exp\":11,\"hashtag\":\"#EvanSmith-NFL-FA-62\",\"search_first_name\":\"evan\",\"rotowire_id\":6354,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Evan Smith\",\"sportradar_id\":\"2c80e71d-c173-4c07-aeda-69371e969591\",\"pandascore_id\":null,\"yahoo_id\":9538,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Idaho State\",\"high_school\":\"Salinas (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'2\\\"\",\"search_full_name\":\"evansmith\",\"birth_date\":\"1986-07-19\",\"espn_id\":12972},\"4759\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elway\",\"depth_chart_position\":null,\"player_id\":\"4759\",\"birth_city\":null,\"fantasy_data_id\":19680,\"years_exp\":0,\"hashtag\":\"#JohnElway-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":9386,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Elway\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Elway\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johnelway\",\"birth_date\":null,\"espn_id\":null},\"1789\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030706\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604252419152,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"andrews\",\"depth_chart_position\":\"C\",\"player_id\":\"1789\",\"birth_city\":null,\"fantasy_data_id\":15961,\"years_exp\":6,\"hashtag\":\"#JoshAndrews-NFL-NYJ-68\",\"search_first_name\":\"josh\",\"rotowire_id\":9799,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Josh Andrews\",\"sportradar_id\":\"18fc2ade-5106-491d-9e5f-97926e64459a\",\"pandascore_id\":null,\"yahoo_id\":27785,\"last_name\":\"Andrews\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Colony (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshandrews\",\"birth_date\":\"1991-06-21\",\"espn_id\":16963},\"564\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dexter\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccluster\",\"depth_chart_position\":null,\"player_id\":\"564\",\"birth_city\":null,\"fantasy_data_id\":11220,\"years_exp\":10,\"hashtag\":\"#DexterMcCluster-NFL-FA-33\",\"search_first_name\":\"dexter\",\"rotowire_id\":6480,\"rotoworld_id\":5780,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Dexter McCluster\",\"sportradar_id\":\"54f4146b-cec8-4fba-a00e-eac7e31ac07c\",\"pandascore_id\":null,\"yahoo_id\":24011,\"last_name\":\"McCluster\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Largo (FL)\",\"depth_chart_order\":null,\"stats_id\":334726,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'8\\\"\",\"search_full_name\":\"dextermccluster\",\"birth_date\":\"1988-08-25\",\"espn_id\":13207},\"3010\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manhart\",\"depth_chart_position\":null,\"player_id\":\"3010\",\"birth_city\":null,\"fantasy_data_id\":17554,\"years_exp\":1,\"hashtag\":\"#ColeManhart-NFL-FA-64\",\"search_first_name\":\"cole\",\"rotowire_id\":10864,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cole Manhart\",\"sportradar_id\":\"955378b4-c96a-4ef0-8938-713d6ad3fb9a\",\"pandascore_id\":null,\"yahoo_id\":28653,\"last_name\":\"Manhart\",\"metadata\":null,\"college\":\"Nebraska-Kearney\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'4\\\"\",\"search_full_name\":\"colemanhart\",\"birth_date\":\"1992-09-25\",\"espn_id\":3075143},\"2644\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrance\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"plummer\",\"depth_chart_position\":null,\"player_id\":\"2644\",\"birth_city\":null,\"fantasy_data_id\":17112,\"years_exp\":5,\"hashtag\":\"#TerrancePlummer-NFL-FA-50\",\"search_first_name\":\"terrance\",\"rotowire_id\":10696,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Terrance Plummer\",\"sportradar_id\":\"f989c91d-7389-45d6-8883-dcf46f531cff\",\"pandascore_id\":null,\"yahoo_id\":28863,\"last_name\":\"Plummer\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Orange Park\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"5'11\\\"\",\"search_full_name\":\"terranceplummer\",\"birth_date\":\"1993-06-20\",\"espn_id\":2575025},\"579\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027885\",\"first_name\":\"Linval\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1584555623724,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":\"NT\",\"player_id\":\"579\",\"birth_city\":null,\"fantasy_data_id\":11302,\"years_exp\":10,\"hashtag\":\"#LinvalJoseph-NFL-LAC-95\",\"search_first_name\":\"linval\",\"rotowire_id\":6681,\"rotoworld_id\":5867,\"active\":true,\"search_rank\":608,\"age\":32,\"full_name\":\"Linval Joseph\",\"sportradar_id\":\"6c48b2a7-924e-43ec-bcd9-f1cda06b2332\",\"pandascore_id\":null,\"yahoo_id\":24021,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Santa Fe (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'4\\\"\",\"search_full_name\":\"linvaljoseph\",\"birth_date\":\"1988-10-10\",\"espn_id\":13281},\"1005\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D'Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1005\",\"birth_city\":null,\"fantasy_data_id\":13569,\"years_exp\":10,\"hashtag\":\"#DAnthonySmith-NFL-FA-70\",\"search_first_name\":\"danthony\",\"rotowire_id\":6592,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"D'Anthony Smith\",\"sportradar_id\":\"ae6bc6c0-a1b9-469b-81a8-7a542cb6da04\",\"pandascore_id\":null,\"yahoo_id\":24049,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Pickering (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"danthonysmith\",\"birth_date\":\"1988-06-09\",\"espn_id\":13296},\"2593\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antwan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goodley\",\"depth_chart_position\":null,\"player_id\":\"2593\",\"birth_city\":null,\"fantasy_data_id\":17060,\"years_exp\":4,\"hashtag\":\"#AntwanGoodley-NFL-FA-19\",\"search_first_name\":\"antwan\",\"rotowire_id\":10217,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Antwan Goodley\",\"sportradar_id\":\"e6232fb6-d246-41a8-b6d4-844c8c54cd5d\",\"pandascore_id\":null,\"yahoo_id\":29014,\"last_name\":\"Goodley\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557235,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"antwangoodley\",\"birth_date\":\"1991-09-06\",\"espn_id\":2512996},\"6605\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035479\",\"first_name\":\"Cortrelle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567827024616,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simpson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6605\",\"birth_city\":null,\"fantasy_data_id\":21393,\"years_exp\":1,\"hashtag\":\"#CortrelleSimpson-NFL-FA-14\",\"search_first_name\":\"cortrelle\",\"rotowire_id\":14219,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cortrelle Simpson\",\"sportradar_id\":\"fbefac60-0572-4e90-a1cc-669528059012\",\"pandascore_id\":null,\"yahoo_id\":32487,\"last_name\":\"Simpson\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":884812,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cortrellesimpson\",\"birth_date\":\"1996-08-30\",\"espn_id\":3923415},\"1915\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blanchflower\",\"depth_chart_position\":null,\"player_id\":\"1915\",\"birth_city\":null,\"fantasy_data_id\":16145,\"years_exp\":1,\"hashtag\":\"#RobBlanchflower-NFL-FA-87\",\"search_first_name\":\"rob\",\"rotowire_id\":9558,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rob Blanchflower\",\"sportradar_id\":\"40fff616-dcfc-42a0-a14d-e8e9393d485d\",\"pandascore_id\":null,\"yahoo_id\":27758,\"last_name\":\"Blanchflower\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":518126,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'4\\\"\",\"search_full_name\":\"robblanchflower\",\"birth_date\":\"1990-06-08\",\"espn_id\":16855},\"3372\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033054\",\"first_name\":\"Rico\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1568131856709,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gathers\",\"depth_chart_position\":null,\"player_id\":\"3372\",\"birth_city\":null,\"fantasy_data_id\":18133,\"years_exp\":4,\"hashtag\":\"#RicoGathers-NFL-FA-84\",\"search_first_name\":\"rico\",\"rotowire_id\":11236,\"rotoworld_id\":11501,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rico Gathers\",\"sportradar_id\":\"ec2db5f2-ffec-4ece-9ca9-7a860c4880b6\",\"pandascore_id\":null,\"yahoo_id\":29451,\"last_name\":\"Gathers\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696197,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'8\\\"\",\"search_full_name\":\"ricogathers\",\"birth_date\":\"1994-01-07\",\"espn_id\":2990959},\"6442\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"6442\",\"birth_city\":null,\"fantasy_data_id\":21486,\"years_exp\":1,\"hashtag\":\"#JohnnyRobinson-NFL-FA-68\",\"search_first_name\":\"johnny\",\"rotowire_id\":14097,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Johnny Robinson\",\"sportradar_id\":\"9a580e44-67a3-449c-8986-e6c74ded7548\",\"pandascore_id\":null,\"yahoo_id\":32299,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Charleston Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnnyrobinson\",\"birth_date\":null,\"espn_id\":3933656},\"5578\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034299\",\"first_name\":\"Arrion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596583249975,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"springs\",\"depth_chart_position\":null,\"player_id\":\"5578\",\"birth_city\":null,\"fantasy_data_id\":20431,\"years_exp\":2,\"hashtag\":\"#ArrionSprings-NFL-FA-0\",\"search_first_name\":\"arrion\",\"rotowire_id\":13066,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1471,\"age\":24,\"full_name\":\"Arrion Springs\",\"sportradar_id\":\"4ec41407-aa4d-4193-af06-b9795cb9aecc\",\"pandascore_id\":null,\"yahoo_id\":31498,\"last_name\":\"Springs\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"arrionsprings\",\"birth_date\":\"1995-09-19\",\"espn_id\":3122666},\"5665\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1551745816134,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"andrews\",\"depth_chart_position\":null,\"player_id\":\"5665\",\"birth_city\":null,\"fantasy_data_id\":20602,\"years_exp\":2,\"hashtag\":\"#DarrenAndrews-NFL-FA-16\",\"search_first_name\":\"darren\",\"rotowire_id\":13186,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darren Andrews\",\"sportradar_id\":\"396c3f6d-db27-431e-a3fa-e5a6c12eba7a\",\"pandascore_id\":null,\"yahoo_id\":31646,\"last_name\":\"Andrews\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744671,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'10\\\"\",\"search_full_name\":\"darrenandrews\",\"birth_date\":\"1995-08-05\",\"espn_id\":3047553},\"1564\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029795\",\"first_name\":\"Benny\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1568736911644,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cunningham\",\"depth_chart_position\":null,\"player_id\":\"1564\",\"birth_city\":null,\"fantasy_data_id\":15207,\"years_exp\":7,\"hashtag\":\"#BennyCunningham-NFL-FA-29\",\"search_first_name\":\"benny\",\"rotowire_id\":9062,\"rotoworld_id\":8953,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Benny Cunningham\",\"sportradar_id\":\"06787c1d-f02b-4217-9152-c269e826928a\",\"pandascore_id\":null,\"yahoo_id\":27167,\"last_name\":\"Cunningham\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Goodpasture Christian (TN)\",\"depth_chart_order\":null,\"stats_id\":499493,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bennycunningham\",\"birth_date\":\"1990-07-07\",\"espn_id\":16055},\"3645\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032867\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1537039504075,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marz\",\"depth_chart_position\":\"LT\",\"player_id\":\"3645\",\"birth_city\":null,\"fantasy_data_id\":18436,\"years_exp\":4,\"hashtag\":\"#TylerMarz-NFL-FA-0\",\"search_first_name\":\"tyler\",\"rotowire_id\":11128,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tyler Marz\",\"sportradar_id\":\"18ac09ad-486a-4f94-99d0-2099aa85b746\",\"pandascore_id\":null,\"yahoo_id\":29947,\"last_name\":\"Marz\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"tylermarz\",\"birth_date\":\"1992-09-09\",\"espn_id\":2576443},\"278\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kolb\",\"depth_chart_position\":null,\"player_id\":\"278\",\"birth_city\":null,\"fantasy_data_id\":7034,\"years_exp\":7,\"hashtag\":\"#KevinKolb-NFL-FA-4\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Kevin Kolb\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kolb\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kevinkolb\",\"birth_date\":\"1984-08-24\",\"espn_id\":null},\"6361\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035366\",\"first_name\":\"Raphael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567197955814,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leonard\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6361\",\"birth_city\":null,\"fantasy_data_id\":21252,\"years_exp\":1,\"hashtag\":\"#RaphaelLeonard-NFL-FA-14\",\"search_first_name\":\"raphael\",\"rotowire_id\":14004,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Raphael Leonard\",\"sportradar_id\":\"f33f7018-0ee3-4264-9df3-a88e5d09f181\",\"pandascore_id\":null,\"yahoo_id\":32093,\"last_name\":\"Leonard\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":1058046,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"raphaelleonard\",\"birth_date\":\"1997-05-26\",\"espn_id\":4250570},\"314\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024227\",\"first_name\":\"Haloti\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1552938309001,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ngata\",\"depth_chart_position\":null,\"player_id\":\"314\",\"birth_city\":null,\"fantasy_data_id\":7680,\"years_exp\":14,\"hashtag\":\"#HalotiNgata-NFL-FA-94\",\"search_first_name\":\"haloti\",\"rotowire_id\":4743,\"rotoworld_id\":3599,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Haloti Ngata\",\"sportradar_id\":\"6de52f0c-2a65-42a3-81a0-9c772a588c08\",\"pandascore_id\":null,\"yahoo_id\":7761,\"last_name\":\"Ngata\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Highland (UT)\",\"depth_chart_order\":null,\"stats_id\":213981,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'4\\\"\",\"search_full_name\":\"halotingata\",\"birth_date\":\"1984-01-21\",\"espn_id\":9598},\"6228\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035060\",\"first_name\":\"Adarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pickett\",\"depth_chart_position\":null,\"player_id\":\"6228\",\"birth_city\":null,\"fantasy_data_id\":21150,\"years_exp\":1,\"hashtag\":\"#AdariusPickett-NFL-FA-0\",\"search_first_name\":\"adarius\",\"rotowire_id\":13767,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Adarius Pickett\",\"sportradar_id\":\"7fb0ab39-da56-4f98-bf9a-90661a82dffe\",\"pandascore_id\":null,\"yahoo_id\":32260,\"last_name\":\"Pickett\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"adariuspickett\",\"birth_date\":\"1996-09-05\",\"espn_id\":3117414},\"4289\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ishmael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zamora\",\"depth_chart_position\":null,\"player_id\":\"4289\",\"birth_city\":null,\"fantasy_data_id\":19135,\"years_exp\":2,\"hashtag\":\"#IshmaelZamora-NFL-FA-8\",\"search_first_name\":\"ishmael\",\"rotowire_id\":12237,\"rotoworld_id\":12325,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ishmael Zamora\",\"sportradar_id\":\"7e36e26a-5aab-4672-966c-b67ada87e135\",\"pandascore_id\":null,\"yahoo_id\":30639,\"last_name\":\"Zamora\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":837972,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ishmaelzamora\",\"birth_date\":\"1995-11-26\",\"espn_id\":3128362},\"462\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"favre\",\"depth_chart_position\":null,\"player_id\":\"462\",\"birth_city\":null,\"fantasy_data_id\":9528,\"years_exp\":20,\"hashtag\":\"#BrettFavre-NFL-FA-4\",\"search_first_name\":\"brett\",\"rotowire_id\":null,\"rotoworld_id\":1744,\"active\":false,\"search_rank\":9999999,\"age\":48,\"full_name\":\"Brett Favre\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Favre\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brettfavre\",\"birth_date\":\"1969-10-10\",\"espn_id\":null},\"4956\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dooley\",\"depth_chart_position\":null,\"player_id\":\"4956\",\"birth_city\":null,\"fantasy_data_id\":19820,\"years_exp\":1,\"hashtag\":\"#NickDooley-NFL-MIN-0\",\"search_first_name\":\"nick\",\"rotowire_id\":12976,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nick Dooley\",\"sportradar_id\":\"3a179c49-9e71-4252-96ea-e143f7d5b564\",\"pandascore_id\":null,\"yahoo_id\":30968,\"last_name\":\"Dooley\",\"metadata\":null,\"college\":\"UTEP\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'8\\\"\",\"search_full_name\":\"nickdooley\",\"birth_date\":null,\"espn_id\":null},\"828\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028039\",\"first_name\":\"Clint\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1563319539293,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boling\",\"depth_chart_position\":null,\"player_id\":\"828\",\"birth_city\":null,\"fantasy_data_id\":12838,\"years_exp\":9,\"hashtag\":\"#ClintBoling-NFL-FA-65\",\"search_first_name\":\"clint\",\"rotowire_id\":7440,\"rotoworld_id\":6609,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Clint Boling\",\"sportradar_id\":\"a877e5f6-37c5-4c7c-9f23-9e3a9f9d0d84\",\"pandascore_id\":null,\"yahoo_id\":24888,\"last_name\":\"Boling\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Chattahoochee (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"clintboling\",\"birth_date\":\"1989-05-09\",\"espn_id\":14178},\"1407\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029963\",\"first_name\":\"Christopher\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606411558648,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hubbard\",\"depth_chart_position\":\"RT\",\"player_id\":\"1407\",\"birth_city\":null,\"fantasy_data_id\":14959,\"years_exp\":7,\"hashtag\":\"#ChristopherHubbard-NFL-CLE-74\",\"search_first_name\":\"christopher\",\"rotowire_id\":9575,\"rotoworld_id\":8729,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Christopher Hubbard\",\"sportradar_id\":\"ffa1d197-25af-43a9-ae61-05ab20a0a5be\",\"pandascore_id\":null,\"yahoo_id\":26909,\"last_name\":\"Hubbard\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Carver (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"christopherhubbard\",\"birth_date\":\"1991-04-23\",\"espn_id\":16076},\"6060\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035239\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606279255993,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murphybunting\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6060\",\"birth_city\":null,\"fantasy_data_id\":21050,\"years_exp\":1,\"hashtag\":\"#SeanMurphyBunting-NFL-TB-23\",\"search_first_name\":\"sean\",\"rotowire_id\":13648,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1649,\"age\":23,\"full_name\":\"Sean Murphy-Bunting\",\"sportradar_id\":\"f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d\",\"pandascore_id\":null,\"yahoo_id\":31871,\"last_name\":\"Murphy-Bunting\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Chippewa Valley (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"seanmurphybunting\",\"birth_date\":\"1997-06-19\",\"espn_id\":3932886},\"4043\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"4043\",\"birth_city\":null,\"fantasy_data_id\":18886,\"years_exp\":0,\"hashtag\":\"#BruceAllen-NFL-FA-0\",\"search_first_name\":\"bruce\",\"rotowire_id\":null,\"rotoworld_id\":9509,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bruce Allen\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Allen\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"bruceallen\",\"birth_date\":null,\"espn_id\":null},\"4306\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"4306\",\"birth_city\":null,\"fantasy_data_id\":19154,\"years_exp\":0,\"hashtag\":\"#TaylorReynolds-NFL-ATL-38\",\"search_first_name\":\"taylor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Taylor Reynolds\",\"sportradar_id\":\"a0edbda0-7a76-4c56-af14-14d02fd7a02b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"taylorreynolds\",\"birth_date\":\"1994-02-05\",\"espn_id\":2975377},\"1466\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030506\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606113911022,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelce\",\"depth_chart_position\":\"TE\",\"player_id\":\"1466\",\"birth_city\":null,\"fantasy_data_id\":15048,\"years_exp\":7,\"hashtag\":\"#TravisKelce-NFL-KC-87\",\"search_first_name\":\"travis\",\"rotowire_id\":8783,\"rotoworld_id\":8411,\"active\":true,\"search_rank\":21,\"age\":31,\"full_name\":\"Travis Kelce\",\"sportradar_id\":\"c3859e06-5f23-4302-a71b-04820a899d5f\",\"pandascore_id\":null,\"yahoo_id\":26686,\"last_name\":\"Kelce\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Cleveland Heights (OH)\",\"depth_chart_order\":1,\"stats_id\":448240,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"traviskelce\",\"birth_date\":\"1989-10-05\",\"espn_id\":15847},\"6697\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035635\",\"first_name\":\"Floyd\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6697\",\"birth_city\":null,\"fantasy_data_id\":21599,\"years_exp\":1,\"hashtag\":\"#FloydAllen-NFL-FA-82\",\"search_first_name\":\"floyd\",\"rotowire_id\":14317,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Floyd Allen\",\"sportradar_id\":\"648a7562-8b49-4c2f-8a09-0cc5433f5c8c\",\"pandascore_id\":null,\"yahoo_id\":32610,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":1068178,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'10\\\"\",\"search_full_name\":\"floydallen\",\"birth_date\":\"1996-07-16\",\"espn_id\":3920560},\"1470\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030517\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535738739919,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bass\",\"depth_chart_position\":null,\"player_id\":\"1470\",\"birth_city\":null,\"fantasy_data_id\":15065,\"years_exp\":7,\"hashtag\":\"#DavidBass-NFL-FA-47\",\"search_first_name\":\"david\",\"rotowire_id\":8821,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"David Bass\",\"sportradar_id\":\"67c59603-6e43-4446-9035-6a2ee811ed1b\",\"pandascore_id\":null,\"yahoo_id\":26856,\"last_name\":\"Bass\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":\"University City (MO)\",\"depth_chart_order\":null,\"stats_id\":694818,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davidbass\",\"birth_date\":\"1990-09-11\",\"espn_id\":16025},\"1769\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"1769\",\"birth_city\":null,\"fantasy_data_id\":15822,\"years_exp\":8,\"hashtag\":\"#JeffAdams-NFL-FA-63\",\"search_first_name\":\"jeff\",\"rotowire_id\":9959,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jeff Adams\",\"sportradar_id\":\"9c304340-08d1-4491-98ef-d0eb359a6371\",\"pandascore_id\":null,\"yahoo_id\":26058,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Columbia\",\"high_school\":\"Lyons Township (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jeffadams\",\"birth_date\":\"1989-09-06\",\"espn_id\":15368},\"7055\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sewo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604973930112,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"olonilua\",\"depth_chart_position\":\"RB\",\"player_id\":\"7055\",\"birth_city\":null,\"fantasy_data_id\":21971,\"years_exp\":0,\"hashtag\":\"#SewoOlonilua-NFL-DAL-45\",\"search_first_name\":\"sewo\",\"rotowire_id\":14658,\"rotoworld_id\":null,\"active\":true,\"search_rank\":273,\"age\":23,\"full_name\":\"Sewo Olonilua\",\"sportradar_id\":\"fb48038c-8f33-47a5-abb4-cda19f66c853\",\"pandascore_id\":null,\"yahoo_id\":33099,\"last_name\":\"Olonilua\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Kingwood (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sewoolonilua\",\"birth_date\":\"1997-11-27\",\"espn_id\":4038539},\"4839\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitch\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leidner\",\"depth_chart_position\":null,\"player_id\":\"4839\",\"birth_city\":null,\"fantasy_data_id\":19742,\"years_exp\":2,\"hashtag\":\"#MitchLeidner-NFL-FA-3\",\"search_first_name\":\"mitch\",\"rotowire_id\":11837,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mitch Leidner\",\"sportradar_id\":\"39f8efff-67fb-493b-ad9b-315d6e80aa45\",\"pandascore_id\":null,\"yahoo_id\":30947,\"last_name\":\"Leidner\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mitchleidner\",\"birth_date\":\"1994-01-17\",\"espn_id\":2970710},\"4878\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034052\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604931325647,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zylstra\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4878\",\"birth_city\":null,\"fantasy_data_id\":19779,\"years_exp\":2,\"hashtag\":\"#BrandonZylstra-NFL-CAR-16\",\"search_first_name\":\"brandon\",\"rotowire_id\":12533,\"rotoworld_id\":null,\"active\":true,\"search_rank\":434,\"age\":27,\"full_name\":\"Brandon Zylstra\",\"sportradar_id\":\"3885b40b-c31b-4cd6-a0fd-3d24bede2771\",\"pandascore_id\":null,\"yahoo_id\":30959,\"last_name\":\"Zylstra\",\"metadata\":null,\"college\":\"Concordia, Minn\",\"high_school\":\"New London Spicer (MN)\",\"depth_chart_order\":2,\"stats_id\":916610,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonzylstra\",\"birth_date\":\"1993-03-25\",\"espn_id\":4294520},\"2643\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031844\",\"first_name\":\"Deshazor\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606335602327,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"everett\",\"depth_chart_position\":\"SS\",\"player_id\":\"2643\",\"birth_city\":null,\"fantasy_data_id\":17111,\"years_exp\":5,\"hashtag\":\"#DeshazorEverett-NFL-WAS-22\",\"search_first_name\":\"deshazor\",\"rotowire_id\":10701,\"rotoworld_id\":null,\"active\":true,\"search_rank\":918,\"age\":28,\"full_name\":\"Deshazor Everett\",\"sportradar_id\":\"6e91b25a-4bf4-4a53-a328-69d3e7ef86c1\",\"pandascore_id\":null,\"yahoo_id\":28785,\"last_name\":\"Everett\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"DeRidder (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deshazoreverett\",\"birth_date\":\"1992-02-22\",\"espn_id\":2578692},\"6963\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599619213315,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"RB\",\"player_id\":\"6963\",\"birth_city\":null,\"fantasy_data_id\":21823,\"years_exp\":0,\"hashtag\":\"#PatrickTaylor-NFL-GB-27\",\"search_first_name\":\"patrick\",\"rotowire_id\":14573,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1791,\"age\":22,\"full_name\":\"Patrick Taylor\",\"sportradar_id\":\"ef87e355-8e0c-40ed-a85d-bca4896d4f1e\",\"pandascore_id\":null,\"yahoo_id\":33235,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Atascocita (TX)\",\"depth_chart_order\":7,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'3\\\"\",\"search_full_name\":\"patricktaylor\",\"birth_date\":\"1998-04-29\",\"espn_id\":4039358},\"3849\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wynton\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcmanis\",\"depth_chart_position\":null,\"player_id\":\"3849\",\"birth_city\":null,\"fantasy_data_id\":18670,\"years_exp\":4,\"hashtag\":\"#WyntonMcManis-NFL-FA-0\",\"search_first_name\":\"wynton\",\"rotowire_id\":11554,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Wynton McManis\",\"sportradar_id\":\"b0b9a957-389f-4a08-9a68-177fcb59c50c\",\"pandascore_id\":null,\"yahoo_id\":29976,\"last_name\":\"McManis\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"wyntonmcmanis\",\"birth_date\":\"1994-09-20\",\"espn_id\":2977884},\"2430\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031577\",\"first_name\":\"Javorius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1578066924398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"2430\",\"birth_city\":null,\"fantasy_data_id\":16886,\"years_exp\":5,\"hashtag\":\"#JavoriusAllen-NFL-FA-37\",\"search_first_name\":\"javorius\",\"rotowire_id\":10066,\"rotoworld_id\":10314,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Javorius Allen\",\"sportradar_id\":\"9173225c-4e88-4c87-ad78-41aa0d00a1be\",\"pandascore_id\":null,\"yahoo_id\":28513,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Lincoln (FL)\",\"depth_chart_order\":null,\"stats_id\":598989,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'0\\\"\",\"search_full_name\":\"javoriusallen\",\"birth_date\":\"1991-08-27\",\"espn_id\":2577253},\"2019\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":null,\"player_id\":\"2019\",\"birth_city\":null,\"fantasy_data_id\":16300,\"years_exp\":6,\"hashtag\":\"#AaronMurray-NFL-FA-7\",\"search_first_name\":\"aaron\",\"rotowire_id\":9321,\"rotoworld_id\":9411,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Aaron Murray\",\"sportradar_id\":\"20729a55-0183-46d8-9cf6-67063f184e36\",\"pandascore_id\":null,\"yahoo_id\":27691,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Plant (FL)\",\"depth_chart_order\":null,\"stats_id\":495748,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"aaronmurray\",\"birth_date\":\"1990-11-10\",\"espn_id\":17021},\"6741\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035741\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598218211618,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6741\",\"birth_city\":null,\"fantasy_data_id\":21659,\"years_exp\":1,\"hashtag\":\"#JoshSmith-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":14347,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1772,\"age\":23,\"full_name\":\"Josh Smith\",\"sportradar_id\":\"39e9762a-327a-457f-9361-65c0e10a0e9b\",\"pandascore_id\":null,\"yahoo_id\":32648,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshsmith\",\"birth_date\":\"1997-02-25\",\"espn_id\":3915778},\"1561\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030387\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599618013383,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"means\",\"depth_chart_position\":\"RDE\",\"player_id\":\"1561\",\"birth_city\":null,\"fantasy_data_id\":15203,\"years_exp\":7,\"hashtag\":\"#StevenMeans-NFL-ATL-55\",\"search_first_name\":\"steven\",\"rotowire_id\":8974,\"rotoworld_id\":null,\"active\":true,\"search_rank\":744,\"age\":30,\"full_name\":\"Steven Means\",\"sportradar_id\":\"c639a18a-ee1a-46ed-8707-580711fa33db\",\"pandascore_id\":null,\"yahoo_id\":26770,\"last_name\":\"Means\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Grover Cleveland (NY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stevenmeans\",\"birth_date\":\"1990-09-16\",\"espn_id\":15936},\"3034\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031764\",\"first_name\":\"Blaine\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1540923902742,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clausell\",\"depth_chart_position\":null,\"player_id\":\"3034\",\"birth_city\":null,\"fantasy_data_id\":17738,\"years_exp\":5,\"hashtag\":\"#BlaineClausell-NFL-FA-75\",\"search_first_name\":\"blaine\",\"rotowire_id\":10746,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Blaine Clausell\",\"sportradar_id\":\"8bb26f10-90f9-42ce-bca2-1f450515d9d9\",\"pandascore_id\":null,\"yahoo_id\":28948,\"last_name\":\"Clausell\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'6\\\"\",\"search_full_name\":\"blaineclausell\",\"birth_date\":\"1992-01-31\",\"espn_id\":2516314},\"3664\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032602\",\"first_name\":\"J.D.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1606442760015,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckissic\",\"depth_chart_position\":\"RB\",\"player_id\":\"3664\",\"birth_city\":null,\"fantasy_data_id\":18464,\"years_exp\":4,\"hashtag\":\"#JDMcKissic-NFL-WAS-41\",\"search_first_name\":\"jd\",\"rotowire_id\":11312,\"rotoworld_id\":11800,\"active\":true,\"search_rank\":237,\"age\":27,\"full_name\":\"J.D. McKissic\",\"sportradar_id\":\"260e8f87-1d08-4c69-8e2b-afa825c1a68a\",\"pandascore_id\":null,\"yahoo_id\":29650,\"last_name\":\"McKissic\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Central (AL)\",\"depth_chart_order\":2,\"stats_id\":608353,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jdmckissic\",\"birth_date\":\"1993-08-15\",\"espn_id\":2572861},\"7323\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilliam\",\"depth_chart_position\":null,\"player_id\":\"7323\",\"birth_city\":null,\"fantasy_data_id\":22315,\"years_exp\":0,\"hashtag\":\"#NathanGilliam-NFL-LAC-63\",\"search_first_name\":\"nathan\",\"rotowire_id\":15082,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nathan Gilliam\",\"sportradar_id\":\"2154a63e-279e-42bc-b6f9-5a849cc02cfc\",\"pandascore_id\":null,\"yahoo_id\":32983,\"last_name\":\"Gilliam\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Farragut (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nathangilliam\",\"birth_date\":\"1997-07-06\",\"espn_id\":3919555},\"1901\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030656\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1556919022938,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crowell\",\"depth_chart_position\":\"RB\",\"player_id\":\"1901\",\"birth_city\":null,\"fantasy_data_id\":16127,\"years_exp\":6,\"hashtag\":\"#IsaiahCrowell-NFL-FA-22\",\"search_first_name\":\"isaiah\",\"rotowire_id\":9535,\"rotoworld_id\":9401,\"active\":true,\"search_rank\":782,\"age\":27,\"full_name\":\"Isaiah Crowell\",\"sportradar_id\":\"40cd928f-f228-4ffd-8179-b27a12e14a44\",\"pandascore_id\":null,\"yahoo_id\":28014,\"last_name\":\"Crowell\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":\"George Washington Carver (GA)\",\"depth_chart_order\":10,\"stats_id\":606971,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"isaiahcrowell\",\"birth_date\":\"1993-01-08\",\"espn_id\":17133},\"5873\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035590\",\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604876120786,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ridley\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5873\",\"birth_city\":null,\"fantasy_data_id\":20925,\"years_exp\":1,\"hashtag\":\"#RileyRidley-NFL-CHI-88\",\"search_first_name\":\"riley\",\"rotowire_id\":13531,\"rotoworld_id\":13972,\"active\":true,\"search_rank\":402,\"age\":24,\"full_name\":\"Riley Ridley\",\"sportradar_id\":\"9c04ad60-9726-42d3-9836-7d95723f8eb6\",\"pandascore_id\":null,\"yahoo_id\":31958,\"last_name\":\"Ridley\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Deerfield Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":914009,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rileyridley\",\"birth_date\":\"1996-07-21\",\"espn_id\":4035015},\"7350\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Levonta\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"7350\",\"birth_city\":null,\"fantasy_data_id\":22338,\"years_exp\":0,\"hashtag\":\"#LevontaTaylor-NFL-FA-0\",\"search_first_name\":\"levonta\",\"rotowire_id\":14986,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Levonta Taylor\",\"sportradar_id\":\"16002c84-366a-4668-8dc6-076fa55332c7\",\"pandascore_id\":null,\"yahoo_id\":33262,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"levontataylor\",\"birth_date\":\"1997-11-04\",\"espn_id\":null},\"4913\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aiulua\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fanene\",\"depth_chart_position\":null,\"player_id\":\"4913\",\"birth_city\":null,\"fantasy_data_id\":19709,\"years_exp\":1,\"hashtag\":\"#AiuluaFanene-NFL-GB-62\",\"search_first_name\":\"aiulua\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Aiulua Fanene\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30919,\"last_name\":\"Fanene\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aiuluafanene\",\"birth_date\":null,\"espn_id\":2516897},\"3330\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Fahn\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"3330\",\"birth_city\":null,\"fantasy_data_id\":18091,\"years_exp\":3,\"hashtag\":\"#FahnCooper-NFL-FA-64\",\"search_first_name\":\"fahn\",\"rotowire_id\":10979,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Fahn Cooper\",\"sportradar_id\":\"16cbc76a-3cdb-496e-95dd-6d0098808800\",\"pandascore_id\":null,\"yahoo_id\":29408,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'5\\\"\",\"search_full_name\":\"fahncooper\",\"birth_date\":\"1993-04-30\",\"espn_id\":2574339},\"5589\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034321\",\"first_name\":\"Parker\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cothren\",\"depth_chart_position\":null,\"player_id\":\"5589\",\"birth_city\":null,\"fantasy_data_id\":20345,\"years_exp\":2,\"hashtag\":\"#ParkerCothren-NFL-FA-61\",\"search_first_name\":\"parker\",\"rotowire_id\":12665,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Parker Cothren\",\"sportradar_id\":\"4ac2531e-8a86-4124-970d-0d6be201a4b4\",\"pandascore_id\":null,\"yahoo_id\":31527,\"last_name\":\"Cothren\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"parkercothren\",\"birth_date\":\"1994-01-23\",\"espn_id\":3057976},\"7174\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Juwan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599487804133,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7174\",\"birth_city\":null,\"fantasy_data_id\":22176,\"years_exp\":0,\"hashtag\":\"#JuwanGreen-NFL-ATL-12\",\"search_first_name\":\"juwan\",\"rotowire_id\":14976,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Juwan Green\",\"sportradar_id\":\"9c2185ab-5dcb-485e-950b-e035d9edb692\",\"pandascore_id\":null,\"yahoo_id\":33057,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Albany, N.Y.\",\"high_school\":\"Martinsburg (WV)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'0\\\"\",\"search_full_name\":\"juwangreen\",\"birth_date\":\"1998-07-01\",\"espn_id\":4366710},\"974\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"974\",\"birth_city\":null,\"fantasy_data_id\":13425,\"years_exp\":2,\"hashtag\":\"#RyanWilliams-NFL-FA-34\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan Williams\",\"sportradar_id\":\"68b5fdb2-e0e1-48aa-96a3-18a85c393a09\",\"pandascore_id\":null,\"yahoo_id\":24825,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":463734,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ryanwilliams\",\"birth_date\":\"1990-04-09\",\"espn_id\":14051},\"678\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023259\",\"first_name\":\"Lorenzo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577723723233,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":\"WLB\",\"player_id\":\"678\",\"birth_city\":null,\"fantasy_data_id\":11940,\"years_exp\":15,\"hashtag\":\"#LorenzoAlexander-NFL-FA-57\",\"search_first_name\":\"lorenzo\",\"rotowire_id\":7166,\"rotoworld_id\":3824,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Lorenzo Alexander\",\"sportradar_id\":\"38a7122f-5c9d-4b65-99bc-b9822f9d981a\",\"pandascore_id\":null,\"yahoo_id\":7569,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"St. Mary's College (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lorenzoalexander\",\"birth_date\":\"1983-05-31\",\"espn_id\":9424},\"4298\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"keizur\",\"depth_chart_position\":null,\"player_id\":\"4298\",\"birth_city\":null,\"fantasy_data_id\":19146,\"years_exp\":1,\"hashtag\":\"#CamKeizur-NFL-ATL-62\",\"search_first_name\":\"cam\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cam Keizur\",\"sportradar_id\":\"3cb5ccb6-375a-44b7-b0a5-31e88e438c2c\",\"pandascore_id\":null,\"yahoo_id\":30456,\"last_name\":\"Keizur\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'3\\\"\",\"search_full_name\":\"camkeizur\",\"birth_date\":\"1994-01-17\",\"espn_id\":2967888},\"5708\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Da'sean\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"downey\",\"depth_chart_position\":null,\"player_id\":\"5708\",\"birth_city\":null,\"fantasy_data_id\":20631,\"years_exp\":1,\"hashtag\":\"#DaseanDowney-NFL-BAL-4\",\"search_first_name\":\"dasean\",\"rotowire_id\":13325,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Da'sean Downey\",\"sportradar_id\":\"aeb2566b-6a0e-4f02-8f75-75a8a9c21043\",\"pandascore_id\":null,\"yahoo_id\":31728,\"last_name\":\"Downey\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"daseandowney\",\"birth_date\":null,\"espn_id\":3125931},\"4325\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033260\",\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1570309238991,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hennessy\",\"depth_chart_position\":null,\"player_id\":\"4325\",\"birth_city\":null,\"fantasy_data_id\":19178,\"years_exp\":3,\"hashtag\":\"#ThomasHennessy-NFL-NYJ-42\",\"search_first_name\":\"thomas\",\"rotowire_id\":12391,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Thomas Hennessy\",\"sportradar_id\":\"04ae0bca-f5c5-483b-bf55-967f1423cb45\",\"pandascore_id\":null,\"yahoo_id\":30525,\"last_name\":\"Hennessy\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Don Bosco Prep (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'2\\\"\",\"search_full_name\":\"thomashennessy\",\"birth_date\":\"1994-06-11\",\"espn_id\":2983155},\"411\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026995\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1553467514764,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maclin\",\"depth_chart_position\":null,\"player_id\":\"411\",\"birth_city\":null,\"fantasy_data_id\":8914,\"years_exp\":11,\"hashtag\":\"#JeremyMaclin-NFL-FA-18\",\"search_first_name\":\"jeremy\",\"rotowire_id\":5960,\"rotoworld_id\":5169,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jeremy Maclin\",\"sportradar_id\":\"5f05de83-f15d-42f1-8271-284ca54f63de\",\"pandascore_id\":null,\"yahoo_id\":9283,\"last_name\":\"Maclin\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Kirkwood (MO)\",\"depth_chart_order\":null,\"stats_id\":333818,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeremymaclin\",\"birth_date\":\"1988-05-11\",\"espn_id\":12579},\"2668\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031713\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606065317946,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"NT\",\"player_id\":\"2668\",\"birth_city\":null,\"fantasy_data_id\":17136,\"years_exp\":5,\"hashtag\":\"#XavierWilliams-NFL-CIN-71\",\"search_first_name\":\"xavier\",\"rotowire_id\":10675,\"rotoworld_id\":10885,\"active\":true,\"search_rank\":922,\"age\":28,\"full_name\":\"Xavier Williams\",\"sportradar_id\":\"8363a880-0f4d-44be-bad7-2815c7c3ea00\",\"pandascore_id\":null,\"yahoo_id\":28815,\"last_name\":\"Williams\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Northern Iowa\",\"high_school\":\"Grandview (MO)\",\"depth_chart_order\":2,\"stats_id\":552438,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'2\\\"\",\"search_full_name\":\"xavierwilliams\",\"birth_date\":\"1992-01-18\",\"espn_id\":2508191},\"2482\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032154\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1564184455174,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bennett\",\"depth_chart_position\":null,\"player_id\":\"2482\",\"birth_city\":null,\"fantasy_data_id\":16940,\"years_exp\":5,\"hashtag\":\"#MichaelBennett-NFL-FA-93\",\"search_first_name\":\"michael\",\"rotowire_id\":10312,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Bennett\",\"sportradar_id\":\"eb96d887-4380-491e-b22f-b0cdd0bd64f5\",\"pandascore_id\":null,\"yahoo_id\":28568,\"last_name\":\"Bennett\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Centerville (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaelbennett\",\"birth_date\":\"1993-02-24\",\"espn_id\":2576371},\"2285\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morris\",\"depth_chart_position\":null,\"player_id\":\"2285\",\"birth_city\":null,\"fantasy_data_id\":16716,\"years_exp\":6,\"hashtag\":\"#JamesMorris-NFL-FA-40\",\"search_first_name\":\"james\",\"rotowire_id\":9623,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"James Morris\",\"sportradar_id\":\"66bc6198-6bdb-41df-95c0-93a8ea08b3c4\",\"pandascore_id\":null,\"yahoo_id\":28220,\"last_name\":\"Morris\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Solon (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesmorris\",\"birth_date\":\"1991-11-20\",\"espn_id\":17380},\"3296\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033080\",\"first_name\":\"Seth\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1606323961604,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"devalve\",\"depth_chart_position\":\"TE\",\"player_id\":\"3296\",\"birth_city\":null,\"fantasy_data_id\":18057,\"years_exp\":4,\"hashtag\":\"#SethDeValve-NFL-ARI-88\",\"search_first_name\":\"seth\",\"rotowire_id\":11221,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1013,\"age\":27,\"full_name\":\"Seth DeValve\",\"sportradar_id\":\"a2451bf7-83dd-496c-b527-c14d8d518598\",\"pandascore_id\":null,\"yahoo_id\":29372,\"last_name\":\"DeValve\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":\"Manchester (CT)\",\"depth_chart_order\":5,\"stats_id\":623676,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sethdevalve\",\"birth_date\":\"1993-01-29\",\"espn_id\":2566659},\"260\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0026300\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604709946855,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"QB\",\"player_id\":\"260\",\"birth_city\":null,\"fantasy_data_id\":6489,\"years_exp\":12,\"hashtag\":\"#JoshJohnson-NFL-SF-8\",\"search_first_name\":\"josh\",\"rotowire_id\":5653,\"rotoworld_id\":4706,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Josh Johnson\",\"sportradar_id\":\"73e133bf-d3f7-4fda-bd25-2fde66cb8ee1\",\"pandascore_id\":null,\"yahoo_id\":8937,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"San Diego\",\"high_school\":\"Oakland Tech (CA)\",\"depth_chart_order\":4,\"stats_id\":273278,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshjohnson\",\"birth_date\":\"1986-05-15\",\"espn_id\":11394},\"3509\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032499\",\"first_name\":\"Glenn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gronkowski\",\"depth_chart_position\":null,\"player_id\":\"3509\",\"birth_city\":null,\"fantasy_data_id\":18275,\"years_exp\":3,\"hashtag\":\"#GlennGronkowski-NFL-FA-47\",\"search_first_name\":\"glenn\",\"rotowire_id\":11047,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Glenn Gronkowski\",\"sportradar_id\":\"60aa9a85-1fc6-4b65-a350-34ec09456791\",\"pandascore_id\":null,\"yahoo_id\":29550,\"last_name\":\"Gronkowski\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652823,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"glenngronkowski\",\"birth_date\":\"1993-03-25\",\"espn_id\":2977698},\"2078\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031235\",\"first_name\":\"Odell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605061801152,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"beckham\",\"depth_chart_position\":\"SWR\",\"player_id\":\"2078\",\"birth_city\":null,\"fantasy_data_id\":16389,\"years_exp\":6,\"hashtag\":\"#OdellBeckham-NFL-CLE-13\",\"search_first_name\":\"odell\",\"rotowire_id\":9255,\"rotoworld_id\":9403,\"active\":true,\"search_rank\":34,\"age\":28,\"full_name\":\"Odell Beckham\",\"sportradar_id\":\"354dec38-b88b-4ba0-8974-859123f27c45\",\"pandascore_id\":null,\"yahoo_id\":27540,\"last_name\":\"Beckham\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Isidore Newman (LA)\",\"depth_chart_order\":2,\"stats_id\":589984,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"odellbeckham\",\"birth_date\":\"1992-11-05\",\"espn_id\":16733},\"6058\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035536\",\"first_name\":\"Lamont\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574019947480,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gaillard\",\"depth_chart_position\":\"C\",\"player_id\":\"6058\",\"birth_city\":null,\"fantasy_data_id\":20763,\"years_exp\":1,\"hashtag\":\"#LamontGaillard-NFL-ARI-53\",\"search_first_name\":\"lamont\",\"rotowire_id\":13678,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Lamont Gaillard\",\"sportradar_id\":\"0c8b0581-9ed2-488b-bcaa-ef783261dfd1\",\"pandascore_id\":null,\"yahoo_id\":32011,\"last_name\":\"Gaillard\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Pine Forest (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lamontgaillard\",\"birth_date\":\"1996-02-08\",\"espn_id\":3128707},\"5439\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034112\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604156743779,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schlottmann\",\"depth_chart_position\":\"LG\",\"player_id\":\"5439\",\"birth_city\":null,\"fantasy_data_id\":20482,\"years_exp\":2,\"hashtag\":\"#AustinSchlottmann-NFL-DEN-71\",\"search_first_name\":\"austin\",\"rotowire_id\":13954,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Schlottmann\",\"sportradar_id\":\"dbed6759-8ce2-4f1b-8757-aab4ec66dcc9\",\"pandascore_id\":null,\"yahoo_id\":31382,\"last_name\":\"Schlottmann\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas Christian\",\"high_school\":\"Brenham (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"austinschlottmann\",\"birth_date\":\"1995-09-18\",\"espn_id\":4038544},\"7029\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodward\",\"depth_chart_position\":null,\"player_id\":\"7029\",\"birth_city\":null,\"fantasy_data_id\":21975,\"years_exp\":0,\"hashtag\":\"#DavidWoodward-NFL-FA-0\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"David Woodward\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Woodward\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"0\",\"height\":\"\",\"search_full_name\":\"davidwoodward\",\"birth_date\":null,\"espn_id\":null},\"4516\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"levy\",\"depth_chart_position\":null,\"player_id\":\"4516\",\"birth_city\":null,\"fantasy_data_id\":19388,\"years_exp\":2,\"hashtag\":\"#RichardLevy-NFL-FA-65\",\"search_first_name\":\"richard\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Richard Levy\",\"sportradar_id\":\"a9d0176f-f295-4417-9a1d-10a779e8e10a\",\"pandascore_id\":null,\"yahoo_id\":30692,\"last_name\":\"Levy\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'5\\\"\",\"search_full_name\":\"richardlevy\",\"birth_date\":\"1992-09-12\",\"espn_id\":2974242},\"7034\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dowell\",\"depth_chart_position\":null,\"player_id\":\"7034\",\"birth_city\":null,\"fantasy_data_id\":22107,\"years_exp\":0,\"hashtag\":\"#DavidDowell-NFL-FA-0\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"David Dowell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dowell\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daviddowell\",\"birth_date\":null,\"espn_id\":null},\"7391\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"huff\",\"depth_chart_position\":\"RDE\",\"player_id\":\"7391\",\"birth_city\":null,\"fantasy_data_id\":22377,\"years_exp\":0,\"hashtag\":\"#BryceHuff-NFL-NYJ-47\",\"search_first_name\":\"bryce\",\"rotowire_id\":15035,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1997,\"age\":22,\"full_name\":\"Bryce Huff\",\"sportradar_id\":\"07b963d4-aef7-4874-ba04-f9b1ec1142d3\",\"pandascore_id\":null,\"yahoo_id\":33335,\"last_name\":\"Huff\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"St. Paul's Episcopal (AL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brycehuff\",\"birth_date\":\"1998-04-17\",\"espn_id\":4039375},\"5658\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034515\",\"first_name\":\"Dee\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584994832737,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"delaney\",\"depth_chart_position\":null,\"player_id\":\"5658\",\"birth_city\":null,\"fantasy_data_id\":20429,\"years_exp\":2,\"hashtag\":\"#DeeDelaney-NFL-FA-0\",\"search_first_name\":\"dee\",\"rotowire_id\":12666,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dee Delaney\",\"sportradar_id\":\"5d61b458-9b4e-4016-9983-7add180b698d\",\"pandascore_id\":null,\"yahoo_id\":31261,\"last_name\":\"Delaney\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deedelaney\",\"birth_date\":\"1995-02-20\",\"espn_id\":3049726},\"5714\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034703\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"5714\",\"birth_city\":null,\"fantasy_data_id\":20634,\"years_exp\":2,\"hashtag\":\"#TimWilson-NFL-FA-84\",\"search_first_name\":\"tim\",\"rotowire_id\":13335,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tim Wilson\",\"sportradar_id\":\"97c06a6b-a83c-4bec-9891-ad356761964c\",\"pandascore_id\":null,\"yahoo_id\":31718,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"East Stroudsburg\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1116613,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'9\\\"\",\"search_full_name\":\"timwilson\",\"birth_date\":\"1994-02-16\",\"espn_id\":4339828},\"2757\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Micajah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"2757\",\"birth_city\":null,\"fantasy_data_id\":17225,\"years_exp\":0,\"hashtag\":\"#MicajahReynolds-NFL-FA-79\",\"search_first_name\":\"micajah\",\"rotowire_id\":10622,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Micajah Reynolds\",\"sportradar_id\":\"ef3eb284-4395-44c6-86c2-dd1fec7d2fd5\",\"pandascore_id\":null,\"yahoo_id\":27931,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"micajahreynolds\",\"birth_date\":\"1990-01-24\",\"espn_id\":17239},\"6285\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035293\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1575159007644,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"6285\",\"birth_city\":null,\"fantasy_data_id\":21127,\"years_exp\":1,\"hashtag\":\"#XavierCrawford-NFL-CHI-35\",\"search_first_name\":\"xavier\",\"rotowire_id\":13430,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1672,\"age\":24,\"full_name\":\"Xavier Crawford\",\"sportradar_id\":\"c3ff85db-bad4-444c-9123-812c933c8227\",\"pandascore_id\":null,\"yahoo_id\":32027,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Pittsburg (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"xaviercrawford\",\"birth_date\":\"1995-12-10\",\"espn_id\":3860287},\"4855\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Simeon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rice\",\"depth_chart_position\":null,\"player_id\":\"4855\",\"birth_city\":null,\"fantasy_data_id\":3909,\"years_exp\":0,\"hashtag\":\"#SimeonRice-NFL-FA-97\",\"search_first_name\":\"simeon\",\"rotowire_id\":null,\"rotoworld_id\":256,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Simeon Rice\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rice\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"simeonrice\",\"birth_date\":null,\"espn_id\":null},\"4673\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033736\",\"first_name\":\"Algernon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1529016601651,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4673\",\"birth_city\":null,\"fantasy_data_id\":19573,\"years_exp\":3,\"hashtag\":\"#AlgernonBrown-NFL-FA-30\",\"search_first_name\":\"algernon\",\"rotowire_id\":12335,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Algernon Brown\",\"sportradar_id\":\"e73a5644-c7a2-425b-898e-da72c16f9b87\",\"pandascore_id\":null,\"yahoo_id\":30757,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":558876,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"algernonbrown\",\"birth_date\":\"1991-11-29\",\"espn_id\":2513199},\"5362\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034429\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597372236155,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mailata\",\"depth_chart_position\":\"RT\",\"player_id\":\"5362\",\"birth_city\":null,\"fantasy_data_id\":20042,\"years_exp\":2,\"hashtag\":\"#JordanMailata-NFL-PHI-68\",\"search_first_name\":\"jordan\",\"rotowire_id\":13009,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jordan Mailata\",\"sportradar_id\":\"4c01d331-f294-4836-bbfc-3369829d66c8\",\"pandascore_id\":null,\"yahoo_id\":31203,\"last_name\":\"Mailata\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"344\",\"height\":\"6'8\\\"\",\"search_full_name\":\"jordanmailata\",\"birth_date\":\"1997-03-31\",\"espn_id\":4334215},\"3935\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chisum\",\"depth_chart_position\":null,\"player_id\":\"3935\",\"birth_city\":null,\"fantasy_data_id\":18766,\"years_exp\":0,\"hashtag\":\"#AlexChisum-NFL-FA-3\",\"search_first_name\":\"alex\",\"rotowire_id\":11651,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Alex Chisum\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30062,\"last_name\":\"Chisum\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606535,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alexchisum\",\"birth_date\":null,\"espn_id\":null},\"4167\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033785\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600295160904,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"banner\",\"depth_chart_position\":null,\"player_id\":\"4167\",\"birth_city\":null,\"fantasy_data_id\":19013,\"years_exp\":3,\"hashtag\":\"#ZachBanner-NFL-PIT-72\",\"search_first_name\":\"zach\",\"rotowire_id\":11756,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zach Banner\",\"sportradar_id\":\"d088fb7a-694a-4286-a51d-4a13ec398088\",\"pandascore_id\":null,\"yahoo_id\":30250,\"last_name\":\"Banner\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Southern California\",\"high_school\":\"Lakes (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"358\",\"height\":\"6'8\\\"\",\"search_full_name\":\"zachbanner\",\"birth_date\":\"1993-12-25\",\"espn_id\":2971616},\"7497\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kamaal\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"seymour\",\"depth_chart_position\":null,\"player_id\":\"7497\",\"birth_city\":null,\"fantasy_data_id\":22471,\"years_exp\":0,\"hashtag\":\"#KamaalSeymour-NFL-LV-63\",\"search_first_name\":\"kamaal\",\"rotowire_id\":15145,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kamaal Seymour\",\"sportradar_id\":\"eac6612e-0eab-4a65-9057-60fc95d9ca3a\",\"pandascore_id\":null,\"yahoo_id\":33326,\"last_name\":\"Seymour\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Grand Street Campus (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kamaalseymour\",\"birth_date\":\"1996-04-27\",\"espn_id\":3930054},\"5350\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034685\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1566513622457,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"5350\",\"birth_city\":null,\"fantasy_data_id\":20397,\"years_exp\":2,\"hashtag\":\"#ChristianCampbell-NFL-FA-29\",\"search_first_name\":\"christian\",\"rotowire_id\":12767,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Christian Campbell\",\"sportradar_id\":\"6eae8044-47a4-4cd8-9c4e-6539afdf3837\",\"pandascore_id\":null,\"yahoo_id\":31152,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"christiancampbell\",\"birth_date\":\"1995-11-27\",\"espn_id\":3116159},\"1096\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"solomon\",\"depth_chart_position\":null,\"player_id\":\"1096\",\"birth_city\":null,\"fantasy_data_id\":13950,\"years_exp\":8,\"hashtag\":\"#ScottSolomon-NFL-FA-54\",\"search_first_name\":\"scott\",\"rotowire_id\":8331,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Scott Solomon\",\"sportradar_id\":\"7ecb3b2d-a7ce-442a-ae6f-b4f21458088b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Solomon\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Marshall (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"scottsolomon\",\"birth_date\":\"1988-11-05\",\"espn_id\":15028},\"7466\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606264255799,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cottrell\",\"depth_chart_position\":\"RB\",\"player_id\":\"7466\",\"birth_city\":null,\"fantasy_data_id\":22441,\"years_exp\":0,\"hashtag\":\"#NathanCottrell-NFL-JAX-31\",\"search_first_name\":\"nathan\",\"rotowire_id\":14773,\"rotoworld_id\":null,\"active\":true,\"search_rank\":525,\"age\":24,\"full_name\":\"Nathan Cottrell\",\"sportradar_id\":\"bc43e18a-c2f9-4e49-a90c-41a95cffa736\",\"pandascore_id\":null,\"yahoo_id\":33123,\"last_name\":\"Cottrell\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Knoxville West (TN)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nathancottrell\",\"birth_date\":\"1996-08-02\",\"espn_id\":3917812},\"4184\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033966\",\"first_name\":\"Bucky\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1573600255184,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hodges\",\"depth_chart_position\":null,\"player_id\":\"4184\",\"birth_city\":null,\"fantasy_data_id\":19030,\"years_exp\":3,\"hashtag\":\"#BuckyHodges-NFL-FA-86\",\"search_first_name\":\"bucky\",\"rotowire_id\":11694,\"rotoworld_id\":12275,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bucky Hodges\",\"sportradar_id\":\"aad59ab5-1450-465d-96a6-fb10a9fca368\",\"pandascore_id\":null,\"yahoo_id\":30314,\"last_name\":\"Hodges\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742420,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'6\\\"\",\"search_full_name\":\"buckyhodges\",\"birth_date\":\"1995-08-08\",\"espn_id\":3045466},\"1087\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"1087\",\"birth_city\":null,\"fantasy_data_id\":13912,\"years_exp\":4,\"hashtag\":\"#MikeAdams-NFL-FA-71\",\"search_first_name\":\"mike\",\"rotowire_id\":8120,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mike Adams\",\"sportradar_id\":\"acb6e6a0-6ebc-481c-a8f5-4114230ffa16\",\"pandascore_id\":null,\"yahoo_id\":25766,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mikeadams\",\"birth_date\":\"1990-03-10\",\"espn_id\":8133},\"2573\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DaVaris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":null,\"player_id\":\"2573\",\"birth_city\":null,\"fantasy_data_id\":17038,\"years_exp\":0,\"hashtag\":\"#DaVarisDaniels-NFL-FA-87\",\"search_first_name\":\"davaris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"DaVaris Daniels\",\"sportradar_id\":\"4dc15ea6-09ee-4a4d-b163-817fbbddfedf\",\"pandascore_id\":null,\"yahoo_id\":28836,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608906,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davarisdaniels\",\"birth_date\":\"1992-12-18\",\"espn_id\":2579839},\"2833\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031847\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1545948657468,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"keyes\",\"depth_chart_position\":null,\"player_id\":\"2833\",\"birth_city\":null,\"fantasy_data_id\":17301,\"years_exp\":5,\"hashtag\":\"#JoshKeyes-NFL-FA-49\",\"search_first_name\":\"josh\",\"rotowire_id\":10711,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josh Keyes\",\"sportradar_id\":\"5651ca6a-4d61-41ec-8bf4-341069ee0591\",\"pandascore_id\":null,\"yahoo_id\":28788,\"last_name\":\"Keyes\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Chatham (NY)\",\"depth_chart_order\":null,\"stats_id\":605383,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshkeyes\",\"birth_date\":\"1993-01-23\",\"espn_id\":2576461},\"6077\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035141\",\"first_name\":\"Phil\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605745543734,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haynes\",\"depth_chart_position\":\"RG\",\"player_id\":\"6077\",\"birth_city\":null,\"fantasy_data_id\":20796,\"years_exp\":1,\"hashtag\":\"#PhilHaynes-NFL-SEA-60\",\"search_first_name\":\"phil\",\"rotowire_id\":13862,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Phil Haynes\",\"sportradar_id\":\"03f235b8-e338-450d-9107-8103b7d0a32d\",\"pandascore_id\":null,\"yahoo_id\":31956,\"last_name\":\"Haynes\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Raleigh Enloe (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'4\\\"\",\"search_full_name\":\"philhaynes\",\"birth_date\":\"1995-10-19\",\"espn_id\":3136374},\"2109\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031128\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604022935922,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"groy\",\"depth_chart_position\":null,\"player_id\":\"2109\",\"birth_city\":null,\"fantasy_data_id\":16433,\"years_exp\":6,\"hashtag\":\"#RyanGroy-NFL-LAC-72\",\"search_first_name\":\"ryan\",\"rotowire_id\":9448,\"rotoworld_id\":9627,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ryan Groy\",\"sportradar_id\":\"a2e26ea7-db98-4611-8947-692b0cedb541\",\"pandascore_id\":null,\"yahoo_id\":27836,\"last_name\":\"Groy\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Middleton (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryangroy\",\"birth_date\":\"1990-09-30\",\"espn_id\":17063},\"7410\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bada\",\"depth_chart_position\":null,\"player_id\":\"7410\",\"birth_city\":null,\"fantasy_data_id\":22393,\"years_exp\":0,\"hashtag\":\"#DavidBada-NFL-WAS-64\",\"search_first_name\":\"david\",\"rotowire_id\":14947,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Bada\",\"sportradar_id\":\"4faa0d20-a129-4bb4-9fb1-10690c00641c\",\"pandascore_id\":null,\"yahoo_id\":33185,\"last_name\":\"Bada\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davidbada\",\"birth_date\":\"1995-05-24\",\"espn_id\":4686421},\"879\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027993\",\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603590657951,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hudson\",\"depth_chart_position\":\"C\",\"player_id\":\"879\",\"birth_city\":null,\"fantasy_data_id\":13037,\"years_exp\":9,\"hashtag\":\"#RodneyHudson-NFL-LV-61\",\"search_first_name\":\"rodney\",\"rotowire_id\":7439,\"rotoworld_id\":6612,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Rodney Hudson\",\"sportradar_id\":\"1f0d9995-7ace-44ab-8d61-2f3924d5b75d\",\"pandascore_id\":null,\"yahoo_id\":24842,\"last_name\":\"Hudson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Rain (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rodneyhudson\",\"birth_date\":\"1989-07-12\",\"espn_id\":14013},\"2726\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coley\",\"depth_chart_position\":null,\"player_id\":\"2726\",\"birth_city\":null,\"fantasy_data_id\":17194,\"years_exp\":0,\"hashtag\":\"#HenryColey-NFL-FA-52\",\"search_first_name\":\"henry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Henry Coley\",\"sportradar_id\":\"30baa037-e39b-4bfb-860f-da0cd843ac34\",\"pandascore_id\":null,\"yahoo_id\":29125,\"last_name\":\"Coley\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'1\\\"\",\"search_full_name\":\"henrycoley\",\"birth_date\":\"1992-04-29\",\"espn_id\":2512652},\"3812\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tucker\",\"depth_chart_position\":\"RG\",\"player_id\":\"3812\",\"birth_city\":null,\"fantasy_data_id\":18628,\"years_exp\":0,\"hashtag\":\"#CoryTucker-NFL-FA-68\",\"search_first_name\":\"cory\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cory Tucker\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29932,\"last_name\":\"Tucker\",\"metadata\":null,\"college\":\"Slippery Rock\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"corytucker\",\"birth_date\":\"1992-11-20\",\"espn_id\":null},\"1688\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030033\",\"first_name\":\"Terence\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1537647304308,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"garvin\",\"depth_chart_position\":null,\"player_id\":\"1688\",\"birth_city\":null,\"fantasy_data_id\":15530,\"years_exp\":7,\"hashtag\":\"#TerenceGarvin-NFL-FA-57\",\"search_first_name\":\"terence\",\"rotowire_id\":9106,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Terence Garvin\",\"sportradar_id\":\"d9f211f9-6028-4153-a9a8-f4d05298e6e4\",\"pandascore_id\":null,\"yahoo_id\":27275,\"last_name\":\"Garvin\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Loyola Blakefield (MD)\",\"depth_chart_order\":null,\"stats_id\":513840,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"terencegarvin\",\"birth_date\":\"1991-01-01\",\"espn_id\":16457},\"6168\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035597\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599690642849,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ursua\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6168\",\"birth_city\":null,\"fantasy_data_id\":20970,\"years_exp\":1,\"hashtag\":\"#JohnUrsua-NFL-SEA-15\",\"search_first_name\":\"john\",\"rotowire_id\":13470,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1612,\"age\":26,\"full_name\":\"John Ursua\",\"sportradar_id\":\"c00e0b6f-367f-4cf5-ba11-d23b1aa114f1\",\"pandascore_id\":null,\"yahoo_id\":32068,\"last_name\":\"Ursua\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":886186,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'9\\\"\",\"search_full_name\":\"johnursua\",\"birth_date\":\"1994-01-17\",\"espn_id\":3933064},\"3962\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gary\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1579798522198,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kubiak\",\"depth_chart_position\":null,\"player_id\":\"3962\",\"birth_city\":null,\"fantasy_data_id\":18795,\"years_exp\":0,\"hashtag\":\"#GaryKubiak-NFL-FA-0\",\"search_first_name\":\"gary\",\"rotowire_id\":null,\"rotoworld_id\":8347,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Gary Kubiak\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kubiak\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"garykubiak\",\"birth_date\":null,\"espn_id\":null},\"1184\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029254\",\"first_name\":\"Amini\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544200525495,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"silatolu\",\"depth_chart_position\":null,\"player_id\":\"1184\",\"birth_city\":null,\"fantasy_data_id\":14345,\"years_exp\":8,\"hashtag\":\"#AminiSilatolu-NFL-FA-65\",\"search_first_name\":\"amini\",\"rotowire_id\":8126,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Amini Silatolu\",\"sportradar_id\":\"22b17923-9927-42ad-9c57-d9e89c5dd61b\",\"pandascore_id\":null,\"yahoo_id\":25750,\"last_name\":\"Silatolu\",\"metadata\":null,\"college\":\"Midwestern State\",\"high_school\":\"Merrill F. West (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aminisilatolu\",\"birth_date\":\"1988-09-16\",\"espn_id\":14981},\"649\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1520267401316,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cromartie\",\"depth_chart_position\":null,\"player_id\":\"649\",\"birth_city\":null,\"fantasy_data_id\":11692,\"years_exp\":14,\"hashtag\":\"#AntonioCromartie-NFL-FA-31\",\"search_first_name\":\"antonio\",\"rotowire_id\":4731,\"rotoworld_id\":3671,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Antonio Cromartie\",\"sportradar_id\":\"2a597ad9-d626-4d0f-bdab-0d4eaa9343f0\",\"pandascore_id\":null,\"yahoo_id\":7768,\"last_name\":\"Cromartie\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Lincoln (FL)\",\"depth_chart_order\":null,\"stats_id\":215382,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"antoniocromartie\",\"birth_date\":\"1984-04-15\",\"espn_id\":9605},\"170\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cliff\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1525462501267,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"avril\",\"depth_chart_position\":null,\"player_id\":\"170\",\"birth_city\":null,\"fantasy_data_id\":4399,\"years_exp\":12,\"hashtag\":\"#CliffAvril-NFL-FA-56\",\"search_first_name\":\"cliff\",\"rotowire_id\":5732,\"rotoworld_id\":4834,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Cliff Avril\",\"sportradar_id\":\"d631b4a7-1ce6-4355-9cce-e61cb175c78c\",\"pandascore_id\":null,\"yahoo_id\":8869,\"last_name\":\"Avril\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Clay (FL)\",\"depth_chart_order\":null,\"stats_id\":266676,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cliffavril\",\"birth_date\":\"1986-04-08\",\"espn_id\":11326},\"249\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greenway\",\"depth_chart_position\":null,\"player_id\":\"249\",\"birth_city\":null,\"fantasy_data_id\":6285,\"years_exp\":14,\"hashtag\":\"#ChadGreenway-NFL-FA-52\",\"search_first_name\":\"chad\",\"rotowire_id\":4916,\"rotoworld_id\":3618,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Chad Greenway\",\"sportradar_id\":\"9634e162-5ff5-4372-b72b-ee1b0cb73a0d\",\"pandascore_id\":null,\"yahoo_id\":7766,\"last_name\":\"Greenway\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Mount Vernon (SD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chadgreenway\",\"birth_date\":\"1983-01-12\",\"espn_id\":9603},\"5089\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034401\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606267555804,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"QB\",\"player_id\":\"5089\",\"birth_city\":null,\"fantasy_data_id\":19972,\"years_exp\":2,\"hashtag\":\"#MikeWhite-NFL-NYJ-8\",\"search_first_name\":\"mike\",\"rotowire_id\":12826,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1376,\"age\":25,\"full_name\":\"Mike White\",\"sportradar_id\":\"f4808328-86e9-459d-a2bc-18e90c7d211e\",\"pandascore_id\":null,\"yahoo_id\":31141,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"NSU University School (FL)\",\"depth_chart_order\":3,\"stats_id\":741785,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikewhite\",\"birth_date\":\"1995-03-25\",\"espn_id\":3051381},\"3794\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lake\",\"depth_chart_position\":null,\"player_id\":\"3794\",\"birth_city\":null,\"fantasy_data_id\":18608,\"years_exp\":0,\"hashtag\":\"#DarrenLake-NFL-FA-62\",\"search_first_name\":\"darren\",\"rotowire_id\":11553,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Darren Lake\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29768,\"last_name\":\"Lake\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"darrenlake\",\"birth_date\":\"1993-12-28\",\"espn_id\":2979851},\"2986\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031923\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597976434652,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mancz\",\"depth_chart_position\":null,\"player_id\":\"2986\",\"birth_city\":null,\"fantasy_data_id\":17491,\"years_exp\":5,\"hashtag\":\"#GregMancz-NFL-HOU-65\",\"search_first_name\":\"greg\",\"rotowire_id\":10300,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Greg Mancz\",\"sportradar_id\":\"7d58beec-bd16-475d-bf08-9137b86aef17\",\"pandascore_id\":null,\"yahoo_id\":28894,\"last_name\":\"Mancz\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Anderson (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"gregmancz\",\"birth_date\":\"1992-04-23\",\"espn_id\":2516865},\"6711\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035705\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606260957813,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"FS\",\"player_id\":\"6711\",\"birth_city\":null,\"fantasy_data_id\":21635,\"years_exp\":1,\"hashtag\":\"#JalenThompson-NFL-ARI-34\",\"search_first_name\":\"jalen\",\"rotowire_id\":14330,\"rotoworld_id\":14803,\"active\":true,\"search_rank\":1769,\"age\":22,\"full_name\":\"Jalen Thompson\",\"sportradar_id\":\"56992f39-70e7-4b6a-86da-0a4776504e7a\",\"pandascore_id\":null,\"yahoo_id\":32623,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Downey (CA)\",\"depth_chart_order\":1,\"stats_id\":910649,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jalenthompson\",\"birth_date\":\"1998-07-18\",\"espn_id\":4043089},\"2827\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031795\",\"first_name\":\"DeShawn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606270555515,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RDE\",\"player_id\":\"2827\",\"birth_city\":null,\"fantasy_data_id\":17295,\"years_exp\":5,\"hashtag\":\"#DeShawnWilliams-NFL-DEN-90\",\"search_first_name\":\"deshawn\",\"rotowire_id\":10793,\"rotoworld_id\":null,\"active\":true,\"search_rank\":933,\"age\":27,\"full_name\":\"DeShawn Williams\",\"sportradar_id\":\"9492f51a-22eb-465f-b3bb-aaee81ce76f5\",\"pandascore_id\":null,\"yahoo_id\":28982,\"last_name\":\"Williams\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Clemson\",\"high_school\":\"Daniel (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deshawnwilliams\",\"birth_date\":\"1992-12-29\",\"espn_id\":2576508},\"2954\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"BJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcbryde\",\"depth_chart_position\":null,\"player_id\":\"2954\",\"birth_city\":null,\"fantasy_data_id\":17432,\"years_exp\":1,\"hashtag\":\"#BJMcBryde-NFL-FA-60\",\"search_first_name\":\"bj\",\"rotowire_id\":10846,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"BJ McBryde\",\"sportradar_id\":\"7f341885-868f-4bc2-bbd2-f8a2ef80a7d9\",\"pandascore_id\":null,\"yahoo_id\":29011,\"last_name\":\"McBryde\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bjmcbryde\",\"birth_date\":\"1991-10-10\",\"espn_id\":2513043},\"121\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"LeRon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclain\",\"depth_chart_position\":null,\"player_id\":\"121\",\"birth_city\":null,\"fantasy_data_id\":3312,\"years_exp\":7,\"hashtag\":\"#LeRonMcClain-NFL-FA-33\",\"search_first_name\":\"leron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"LeRon McClain\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McClain\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'0\\\"\",\"search_full_name\":\"leronmcclain\",\"birth_date\":\"1984-12-27\",\"espn_id\":null},\"5930\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035290\",\"first_name\":\"Jaquan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565388907127,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"FS\",\"player_id\":\"5930\",\"birth_city\":null,\"fantasy_data_id\":20834,\"years_exp\":1,\"hashtag\":\"#JaquanJohnson-NFL-BUF-46\",\"search_first_name\":\"jaquan\",\"rotowire_id\":13819,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1559,\"age\":25,\"full_name\":\"Jaquan Johnson\",\"sportradar_id\":\"c128dad7-899d-4bdf-af9b-9c205dbd4666\",\"pandascore_id\":null,\"yahoo_id\":32013,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miami Killian (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jaquanjohnson\",\"birth_date\":\"1995-11-06\",\"espn_id\":3672862},\"3762\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032625\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1528985101937,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shippen\",\"depth_chart_position\":null,\"player_id\":\"3762\",\"birth_city\":null,\"fantasy_data_id\":18574,\"years_exp\":4,\"hashtag\":\"#BrandonShippen-NFL-FA-12\",\"search_first_name\":\"brandon\",\"rotowire_id\":11597,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Shippen\",\"sportradar_id\":\"83d24498-84d5-4c73-a41f-cae0b801a904\",\"pandascore_id\":null,\"yahoo_id\":29837,\"last_name\":\"Shippen\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692387,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandonshippen\",\"birth_date\":\"1994-05-17\",\"espn_id\":2976250},\"213\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcglynn\",\"depth_chart_position\":null,\"player_id\":\"213\",\"birth_city\":null,\"fantasy_data_id\":5378,\"years_exp\":12,\"hashtag\":\"#MikeMcGlynn-NFL-FA-77\",\"search_first_name\":\"mike\",\"rotowire_id\":5718,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Mike McGlynn\",\"sportradar_id\":\"b28f7867-8f2a-444b-b6d1-3264497bf963\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McGlynn\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Fitch (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikemcglynn\",\"birth_date\":\"1985-03-08\",\"espn_id\":11343},\"6606\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035471\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1575419158405,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fitzgerald\",\"depth_chart_position\":\"QB\",\"player_id\":\"6606\",\"birth_city\":null,\"fantasy_data_id\":21425,\"years_exp\":1,\"hashtag\":\"#NickFitzgerald-NFL-FA-7\",\"search_first_name\":\"nick\",\"rotowire_id\":13518,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick Fitzgerald\",\"sportradar_id\":\"5b9c1f26-de51-4dbb-bf9b-6e8ea6eb6968\",\"pandascore_id\":null,\"yahoo_id\":32479,\"last_name\":\"Fitzgerald\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":822971,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nickfitzgerald\",\"birth_date\":\"1996-01-14\",\"espn_id\":3087801},\"1454\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Montee\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ball\",\"depth_chart_position\":null,\"player_id\":\"1454\",\"birth_city\":null,\"fantasy_data_id\":15036,\"years_exp\":3,\"hashtag\":\"#MonteeBall-NFL-FA-31\",\"search_first_name\":\"montee\",\"rotowire_id\":null,\"rotoworld_id\":7407,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Montee Ball\",\"sportradar_id\":\"e1156c37-6175-4a40-a4d1-8a5b77f9da28\",\"pandascore_id\":null,\"yahoo_id\":26681,\"last_name\":\"Ball\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":500684,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'10\\\"\",\"search_full_name\":\"monteeball\",\"birth_date\":\"1990-12-05\",\"espn_id\":15823},\"2309\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031544\",\"first_name\":\"Amari\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606441561001,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2309\",\"birth_city\":null,\"fantasy_data_id\":16765,\"years_exp\":5,\"hashtag\":\"#AmariCooper-NFL-DAL-19\",\"search_first_name\":\"amari\",\"rotowire_id\":10055,\"rotoworld_id\":10310,\"active\":true,\"search_rank\":35,\"age\":26,\"full_name\":\"Amari Cooper\",\"sportradar_id\":\"00f88be8-45f9-4237-b2b8-3271ec790d07\",\"pandascore_id\":null,\"yahoo_id\":28392,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Northwestern (FL)\",\"depth_chart_order\":1,\"stats_id\":650914,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"amaricooper\",\"birth_date\":\"1994-06-17\",\"espn_id\":2976499},\"5370\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034730\",\"first_name\":\"Marcell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603496151855,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"SS\",\"player_id\":\"5370\",\"birth_city\":null,\"fantasy_data_id\":20000,\"years_exp\":2,\"hashtag\":\"#MarcellHarris-NFL-SF-36\",\"search_first_name\":\"marcell\",\"rotowire_id\":12636,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1388,\"age\":26,\"full_name\":\"Marcell Harris\",\"sportradar_id\":\"d1e280f9-6df0-45d9-841e-0cfe6ea081b1\",\"pandascore_id\":null,\"yahoo_id\":31154,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Dr. Phillips (FL)\",\"depth_chart_order\":1,\"stats_id\":737869,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcellharris\",\"birth_date\":\"1994-06-09\",\"espn_id\":3043110},\"1663\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029946\",\"first_name\":\"Abry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606355403807,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1663\",\"birth_city\":null,\"fantasy_data_id\":15441,\"years_exp\":7,\"hashtag\":\"#AbryJones-NFL-JAX-95\",\"search_first_name\":\"abry\",\"rotowire_id\":9107,\"rotoworld_id\":8896,\"active\":true,\"search_rank\":759,\"age\":29,\"full_name\":\"Abry Jones\",\"sportradar_id\":\"ecacc01a-e71d-4028-9bb7-37fcee0f1708\",\"pandascore_id\":null,\"yahoo_id\":27104,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Northside (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"abryjones\",\"birth_date\":\"1991-09-08\",\"espn_id\":16376},\"5216\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ervin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"philips\",\"depth_chart_position\":null,\"player_id\":\"5216\",\"birth_city\":null,\"fantasy_data_id\":20187,\"years_exp\":0,\"hashtag\":\"#ErvinPhilips-NFL-FA-3\",\"search_first_name\":\"ervin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ervin Philips\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Philips\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ervinphilips\",\"birth_date\":null,\"espn_id\":3123996},\"6959\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"LeVante\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606520428649,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bellamy\",\"depth_chart_position\":null,\"player_id\":\"6959\",\"birth_city\":null,\"fantasy_data_id\":21846,\"years_exp\":0,\"hashtag\":\"#LeVanteBellamy-NFL-DEN-32\",\"search_first_name\":\"levante\",\"rotowire_id\":14656,\"rotoworld_id\":null,\"active\":true,\"search_rank\":514,\"age\":24,\"full_name\":\"LeVante Bellamy\",\"sportradar_id\":\"53022661-b6bb-481b-9ce8-b603e521925f\",\"pandascore_id\":null,\"yahoo_id\":32926,\"last_name\":\"Bellamy\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Western Michigan\",\"high_school\":\"Pike (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"levantebellamy\",\"birth_date\":\"1996-11-28\",\"espn_id\":3916721},\"3727\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dennis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"parks\",\"depth_chart_position\":null,\"player_id\":\"3727\",\"birth_city\":null,\"fantasy_data_id\":18535,\"years_exp\":0,\"hashtag\":\"#DennisParks-NFL-FA-83\",\"search_first_name\":\"dennis\",\"rotowire_id\":11279,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dennis Parks\",\"sportradar_id\":\"c914b378-32c9-46b6-864e-feb15450da13\",\"pandascore_id\":null,\"yahoo_id\":29738,\"last_name\":\"Parks\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dennisparks\",\"birth_date\":\"1994-07-27\",\"espn_id\":null},\"6354\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035108\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600531503149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"meadors\",\"depth_chart_position\":null,\"player_id\":\"6354\",\"birth_city\":null,\"fantasy_data_id\":21333,\"years_exp\":1,\"hashtag\":\"#NateMeadors-NFL-JAX-26\",\"search_first_name\":\"nate\",\"rotowire_id\":14155,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1717,\"age\":23,\"full_name\":\"Nate Meadors\",\"sportradar_id\":\"78ca0233-a32a-4435-ba06-6ececaa3c537\",\"pandascore_id\":null,\"yahoo_id\":32145,\"last_name\":\"Meadors\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"San Gorgonio (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"natemeadors\",\"birth_date\":\"1997-02-13\",\"espn_id\":3886327},\"7170\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarren\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7170\",\"birth_city\":null,\"fantasy_data_id\":22172,\"years_exp\":0,\"hashtag\":\"#JarrenWilliams-NFL-NYG-38\",\"search_first_name\":\"jarren\",\"rotowire_id\":15103,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1943,\"age\":23,\"full_name\":\"Jarren Williams\",\"sportradar_id\":\"66d74e2b-9a7f-406f-97db-b5b82f0c4cd2\",\"pandascore_id\":null,\"yahoo_id\":33090,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Albany, N.Y.\",\"high_school\":\"Olentangy (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jarrenwilliams\",\"birth_date\":\"1997-07-18\",\"espn_id\":3911073},\"2165\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2165\",\"birth_city\":null,\"fantasy_data_id\":16518,\"years_exp\":1,\"hashtag\":\"#DominiqueWilliams-NFL-FA-35\",\"search_first_name\":\"dominique\",\"rotowire_id\":9896,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dominique Williams\",\"sportradar_id\":\"b154d934-f3f6-4d02-9d17-e2c968118ce1\",\"pandascore_id\":null,\"yahoo_id\":27893,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":518637,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dominiquewilliams\",\"birth_date\":\"1989-05-14\",\"espn_id\":17097},\"3\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1519421401244,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"3\",\"birth_city\":null,\"fantasy_data_id\":184,\"years_exp\":13,\"hashtag\":\"#DavidHarris-NFL-FA-45\",\"search_first_name\":\"david\",\"rotowire_id\":5342,\"rotoworld_id\":4197,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"David Harris\",\"sportradar_id\":\"c348bf8a-bc99-45fb-b1c8-04f487418d3c\",\"pandascore_id\":null,\"yahoo_id\":8301,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Ottawa Hills (MI)\",\"depth_chart_order\":null,\"stats_id\":215498,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidharris\",\"birth_date\":\"1984-01-21\",\"espn_id\":10491},\"1049\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029701\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606246852606,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tannehill\",\"depth_chart_position\":\"QB\",\"player_id\":\"1049\",\"birth_city\":null,\"fantasy_data_id\":13799,\"years_exp\":8,\"hashtag\":\"#RyanTannehill-NFL-TEN-17\",\"search_first_name\":\"ryan\",\"rotowire_id\":8040,\"rotoworld_id\":7417,\"active\":true,\"search_rank\":148,\"age\":32,\"full_name\":\"Ryan Tannehill\",\"sportradar_id\":\"5812204c-6dae-4450-8011-99e0f72864ac\",\"pandascore_id\":null,\"yahoo_id\":25718,\"last_name\":\"Tannehill\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Texas A&M\",\"high_school\":\"Big Spring (TX)\",\"depth_chart_order\":1,\"stats_id\":380960,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryantannehill\",\"birth_date\":\"1988-07-27\",\"espn_id\":14876},\"7185\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilborn\",\"depth_chart_position\":null,\"player_id\":\"7185\",\"birth_city\":null,\"fantasy_data_id\":22187,\"years_exp\":0,\"hashtag\":\"#RayWilborn-NFL-PIT-0\",\"search_first_name\":\"ray\",\"rotowire_id\":15001,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ray Wilborn\",\"sportradar_id\":\"91584998-260d-4d2e-a154-e4b6f7886ff0\",\"pandascore_id\":null,\"yahoo_id\":33067,\"last_name\":\"Wilborn\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":\"J.W. Sexton (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'4\\\"\",\"search_full_name\":\"raywilborn\",\"birth_date\":\"1997-04-01\",\"espn_id\":4361650},\"1871\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tramain\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":null,\"player_id\":\"1871\",\"birth_city\":null,\"fantasy_data_id\":16087,\"years_exp\":6,\"hashtag\":\"#TramainJacobs-NFL-FA-46\",\"search_first_name\":\"tramain\",\"rotowire_id\":10004,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tramain Jacobs\",\"sportradar_id\":\"19b0a893-6e16-4ece-8fef-0f2fbd819d86\",\"pandascore_id\":null,\"yahoo_id\":27981,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tramainjacobs\",\"birth_date\":\"1992-05-20\",\"espn_id\":17182},\"5009\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034766\",\"first_name\":\"Christopher\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606581632945,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"herndon\",\"depth_chart_position\":\"TE\",\"player_id\":\"5009\",\"birth_city\":null,\"fantasy_data_id\":19947,\"years_exp\":2,\"hashtag\":\"#ChristopherHerndon-NFL-NYJ-89\",\"search_first_name\":\"christopher\",\"rotowire_id\":12899,\"rotoworld_id\":13228,\"active\":true,\"search_rank\":157,\"age\":24,\"full_name\":\"Christopher Herndon\",\"sportradar_id\":\"780a48de-d092-4e87-9c34-8d1b45a154cc\",\"pandascore_id\":null,\"yahoo_id\":31077,\"last_name\":\"Herndon\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":1,\"stats_id\":832080,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"christopherherndon\",\"birth_date\":\"1996-02-23\",\"espn_id\":3123050},\"4832\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"4832\",\"birth_city\":null,\"fantasy_data_id\":19736,\"years_exp\":2,\"hashtag\":\"#AndrewPrice-NFL-FA-47\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andrew Price\",\"sportradar_id\":\"1601519b-1111-4286-9674-5904f317c40f\",\"pandascore_id\":null,\"yahoo_id\":30943,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693200,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewprice\",\"birth_date\":\"1993-09-08\",\"espn_id\":2976147},\"5992\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"5992\",\"birth_city\":null,\"fantasy_data_id\":21014,\"years_exp\":0,\"hashtag\":\"#JonathanCrawford-NFL-FA-0\",\"search_first_name\":\"jonathan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jonathan Crawford\",\"sportradar_id\":\"d7380dd5-abdd-4d56-864e-8bb1d3bf5fe0\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jonathancrawford\",\"birth_date\":\"1996-08-03\",\"espn_id\":null},\"2589\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031843\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1557166525191,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"delaire\",\"depth_chart_position\":null,\"player_id\":\"2589\",\"birth_city\":null,\"fantasy_data_id\":17054,\"years_exp\":5,\"hashtag\":\"#RyanDelaire-NFL-FA-92\",\"search_first_name\":\"ryan\",\"rotowire_id\":10699,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ryan Delaire\",\"sportradar_id\":\"606d16ed-88df-488d-b506-111af8f966d0\",\"pandascore_id\":null,\"yahoo_id\":28784,\"last_name\":\"Delaire\",\"metadata\":null,\"college\":\"Towson\",\"high_school\":\"Windsor (CT)\",\"depth_chart_order\":null,\"stats_id\":561470,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryandelaire\",\"birth_date\":\"1992-01-17\",\"espn_id\":2519069},\"2033\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031270\",\"first_name\":\"Shelby\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606318260993,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"2033\",\"birth_city\":null,\"fantasy_data_id\":16319,\"years_exp\":6,\"hashtag\":\"#ShelbyHarris-NFL-DEN-96\",\"search_first_name\":\"shelby\",\"rotowire_id\":9785,\"rotoworld_id\":null,\"active\":true,\"search_rank\":808,\"age\":29,\"full_name\":\"Shelby Harris\",\"sportradar_id\":\"20d66704-9c12-467f-a6ca-9cf9dc00730c\",\"pandascore_id\":null,\"yahoo_id\":27763,\"last_name\":\"Harris\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Illinois State\",\"high_school\":\"Mequon Homestead (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shelbyharris\",\"birth_date\":\"1991-08-11\",\"espn_id\":16837},\"19\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026158\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606510227431,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"flacco\",\"depth_chart_position\":\"QB\",\"player_id\":\"19\",\"birth_city\":null,\"fantasy_data_id\":611,\"years_exp\":12,\"hashtag\":\"#JoeFlacco-NFL-NYJ-5\",\"search_first_name\":\"joe\",\"rotowire_id\":5648,\"rotoworld_id\":4677,\"active\":true,\"search_rank\":548,\"age\":35,\"full_name\":\"Joe Flacco\",\"sportradar_id\":\"64797df2-efd3-4b27-86ee-1d48f7edb09f\",\"pandascore_id\":null,\"yahoo_id\":8795,\"last_name\":\"Flacco\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Audubon (NJ)\",\"depth_chart_order\":2,\"stats_id\":216342,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joeflacco\",\"birth_date\":\"1985-01-16\",\"espn_id\":11252},\"5666\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034656\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"diaz\",\"depth_chart_position\":null,\"player_id\":\"5666\",\"birth_city\":null,\"fantasy_data_id\":20613,\"years_exp\":2,\"hashtag\":\"#MattDiaz-NFL-FA-75\",\"search_first_name\":\"matt\",\"rotowire_id\":13294,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Diaz\",\"sportradar_id\":\"9ddec51d-2012-4a18-a37b-fccabf04e0a0\",\"pandascore_id\":null,\"yahoo_id\":31616,\"last_name\":\"Diaz\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mattdiaz\",\"birth_date\":\"1994-09-20\",\"espn_id\":3050401},\"1830\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030871\",\"first_name\":\"Garrison\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1538525402607,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1830\",\"birth_city\":null,\"fantasy_data_id\":16026,\"years_exp\":6,\"hashtag\":\"#GarrisonSmith-NFL-FA-69\",\"search_first_name\":\"garrison\",\"rotowire_id\":10101,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Garrison Smith\",\"sportradar_id\":\"7d94e607-7908-4e25-ae36-b1f2707c06c4\",\"pandascore_id\":null,\"yahoo_id\":28109,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":552994,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrisonsmith\",\"birth_date\":\"1991-10-09\",\"espn_id\":17253},\"5204\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034625\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587083755682,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coyle\",\"depth_chart_position\":null,\"player_id\":\"5204\",\"birth_city\":null,\"fantasy_data_id\":20139,\"years_exp\":2,\"hashtag\":\"#AnthonyCoyle-NFL-PIT-68\",\"search_first_name\":\"anthony\",\"rotowire_id\":13258,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Anthony Coyle\",\"sportradar_id\":\"14fb27c9-f390-4f58-a257-7fe2c7e6705b\",\"pandascore_id\":null,\"yahoo_id\":31577,\"last_name\":\"Coyle\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Fordham\",\"high_school\":\"Tottenville (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonycoyle\",\"birth_date\":\"1996-09-19\",\"espn_id\":3119215},\"2647\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dyshawn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2647\",\"birth_city\":null,\"fantasy_data_id\":17115,\"years_exp\":0,\"hashtag\":\"#DyshawnDavis-NFL-FA-48\",\"search_first_name\":\"dyshawn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dyshawn Davis\",\"sportradar_id\":\"859b840f-3f23-420f-bb01-01cb6866d77c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dyshawndavis\",\"birth_date\":\"1992-07-14\",\"espn_id\":2577599},\"4693\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033831\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601505911812,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wylie\",\"depth_chart_position\":\"RG\",\"player_id\":\"4693\",\"birth_city\":null,\"fantasy_data_id\":19596,\"years_exp\":3,\"hashtag\":\"#AndrewWylie-NFL-KC-77\",\"search_first_name\":\"andrew\",\"rotowire_id\":12609,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Andrew Wylie\",\"sportradar_id\":\"725011ba-b505-4658-a2b1-5d41f941223e\",\"pandascore_id\":null,\"yahoo_id\":30518,\"last_name\":\"Wylie\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":\"Midland (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewwylie\",\"birth_date\":\"1994-08-19\",\"espn_id\":3042702},\"3746\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darreon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herring\",\"depth_chart_position\":null,\"player_id\":\"3746\",\"birth_city\":null,\"fantasy_data_id\":18558,\"years_exp\":0,\"hashtag\":\"#DarreonHerring-NFL-FA-49\",\"search_first_name\":\"darreon\",\"rotowire_id\":11574,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Darreon Herring\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29717,\"last_name\":\"Herring\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darreonherring\",\"birth_date\":\"1993-11-23\",\"espn_id\":2972350},\"4791\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034007\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1525215001933,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"victor\",\"depth_chart_position\":null,\"player_id\":\"4791\",\"birth_city\":null,\"fantasy_data_id\":19700,\"years_exp\":3,\"hashtag\":\"#DariusVictor-NFL-FA-38\",\"search_first_name\":\"darius\",\"rotowire_id\":12327,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Darius Victor\",\"sportradar_id\":\"5f2136e8-d439-4fd7-b023-b03fe3fdb5a1\",\"pandascore_id\":null,\"yahoo_id\":30915,\"last_name\":\"Victor\",\"metadata\":null,\"college\":\"Towson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748001,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'6\\\"\",\"search_full_name\":\"dariusvictor\",\"birth_date\":\"1994-03-18\",\"espn_id\":3049987},\"2697\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032050\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1552156221754,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"FS\",\"player_id\":\"2697\",\"birth_city\":null,\"fantasy_data_id\":17165,\"years_exp\":5,\"hashtag\":\"#CoreyMoore-NFL-FA-36\",\"search_first_name\":\"corey\",\"rotowire_id\":10678,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Corey Moore\",\"sportradar_id\":\"0f1b8946-54b9-43c3-8c9e-1778c6314e9b\",\"pandascore_id\":null,\"yahoo_id\":29086,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Griffin (GA)\",\"depth_chart_order\":3,\"stats_id\":607096,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"coreymoore\",\"birth_date\":\"1993-01-28\",\"espn_id\":2578554},\"5544\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034191\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"5544\",\"birth_city\":null,\"fantasy_data_id\":20291,\"years_exp\":2,\"hashtag\":\"#MarcusPorter-NFL-FA-59\",\"search_first_name\":\"marcus\",\"rotowire_id\":13118,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Marcus Porter\",\"sportradar_id\":\"a7db348f-e49d-4ec4-8818-57a4820f2f14\",\"pandascore_id\":null,\"yahoo_id\":31440,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcusporter\",\"birth_date\":\"1996-08-30\",\"espn_id\":4334406},\"3499\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dillon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"3499\",\"birth_city\":null,\"fantasy_data_id\":18265,\"years_exp\":0,\"hashtag\":\"#DillonLee-NFL-FA-57\",\"search_first_name\":\"dillon\",\"rotowire_id\":11507,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dillon Lee\",\"sportradar_id\":\"5a0dc03d-e91b-4b8d-93c2-2f4c4a865cc0\",\"pandascore_id\":null,\"yahoo_id\":29852,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dillonlee\",\"birth_date\":\"1993-01-15\",\"espn_id\":2976504},\"2629\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meredith\",\"depth_chart_position\":null,\"player_id\":\"2629\",\"birth_city\":null,\"fantasy_data_id\":17097,\"years_exp\":0,\"hashtag\":\"#SamMeredith-NFL-FA-79\",\"search_first_name\":\"sam\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Sam Meredith\",\"sportradar_id\":\"02560613-ce48-401f-adea-6dc594281450\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Meredith\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sammeredith\",\"birth_date\":\"1993-01-31\",\"espn_id\":2582016},\"3202\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032392\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606504504239,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hooper\",\"depth_chart_position\":\"TE\",\"player_id\":\"3202\",\"birth_city\":null,\"fantasy_data_id\":17963,\"years_exp\":4,\"hashtag\":\"#AustinHooper-NFL-CLE-81\",\"search_first_name\":\"austin\",\"rotowire_id\":10748,\"rotoworld_id\":11301,\"active\":true,\"search_rank\":130,\"age\":26,\"full_name\":\"Austin Hooper\",\"sportradar_id\":\"90c2a93f-d837-4e1b-b57c-56648903a8db\",\"pandascore_id\":null,\"yahoo_id\":29315,\"last_name\":\"Hooper\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"De La Salle (CA)\",\"depth_chart_order\":1,\"stats_id\":739424,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austinhooper\",\"birth_date\":\"1994-10-29\",\"espn_id\":3043275},\"2673\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031868\",\"first_name\":\"Damiere\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606578932455,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"byrd\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2673\",\"birth_city\":null,\"fantasy_data_id\":17141,\"years_exp\":5,\"hashtag\":\"#DamiereByrd-NFL-NE-10\",\"search_first_name\":\"damiere\",\"rotowire_id\":10524,\"rotoworld_id\":10795,\"active\":true,\"search_rank\":213,\"age\":27,\"full_name\":\"Damiere Byrd\",\"sportradar_id\":\"48d7bc31-808f-423c-afc8-45c2c5dfa45f\",\"pandascore_id\":null,\"yahoo_id\":28730,\"last_name\":\"Byrd\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"South Carolina\",\"high_school\":\"Timber Creek Regional (NJ)\",\"depth_chart_order\":1,\"stats_id\":604908,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'9\\\"\",\"search_full_name\":\"damierebyrd\",\"birth_date\":\"1993-01-27\",\"espn_id\":2577667},\"192\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hayward\",\"depth_chart_position\":null,\"player_id\":\"192\",\"birth_city\":null,\"fantasy_data_id\":4985,\"years_exp\":10,\"hashtag\":\"#AdamHayward-NFL-FA-55\",\"search_first_name\":\"adam\",\"rotowire_id\":5424,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Adam Hayward\",\"sportradar_id\":\"5ff4298d-2d58-4807-8313-52530155a594\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hayward\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"adamhayward\",\"birth_date\":\"1984-06-23\",\"espn_id\":10625},\"698\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charlie\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whitehurst\",\"depth_chart_position\":null,\"player_id\":\"698\",\"birth_city\":null,\"fantasy_data_id\":12137,\"years_exp\":14,\"hashtag\":\"#CharlieWhitehurst-NFL-FA-15\",\"search_first_name\":\"charlie\",\"rotowire_id\":4825,\"rotoworld_id\":3623,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Charlie Whitehurst\",\"sportradar_id\":\"34cc7f47-9f14-4661-b9af-c9d3b2fc873a\",\"pandascore_id\":null,\"yahoo_id\":7830,\"last_name\":\"Whitehurst\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Chattahoochee (GA)\",\"depth_chart_order\":null,\"stats_id\":156595,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'5\\\"\",\"search_full_name\":\"charliewhitehurst\",\"birth_date\":\"1982-08-06\",\"espn_id\":9667},\"6762\":{\"position\":\"TE\",\"injury_notes\":\"Clark may miss the 2020 season due to his injury.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darion\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1598489143222,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":\"TE\",\"player_id\":\"6762\",\"birth_city\":null,\"fantasy_data_id\":21707,\"years_exp\":0,\"hashtag\":\"#DarionClark-NFL-CHI-49\",\"search_first_name\":\"darion\",\"rotowire_id\":14467,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Darion Clark\",\"sportradar_id\":\"dcdfc42f-2889-4c8a-8b65-b18de1a30e30\",\"pandascore_id\":null,\"yahoo_id\":32663,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Grand Canyon\",\"high_school\":\"Oak Hill Academy (VA)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'7\\\"\",\"search_full_name\":\"darionclark\",\"birth_date\":\"1994-04-09\",\"espn_id\":2982484},\"581\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027835\",\"first_name\":\"Kurt\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1594515948114,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"581\",\"birth_city\":null,\"fantasy_data_id\":11311,\"years_exp\":10,\"hashtag\":\"#KurtColeman-NFL-FA-28\",\"search_first_name\":\"kurt\",\"rotowire_id\":6822,\"rotoworld_id\":6000,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kurt Coleman\",\"sportradar_id\":\"f1cff356-8de9-4589-8522-40922fecfad7\",\"pandascore_id\":null,\"yahoo_id\":24219,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Northmont (OH)\",\"depth_chart_order\":null,\"stats_id\":323624,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kurtcoleman\",\"birth_date\":\"1988-07-01\",\"espn_id\":13340},\"1566\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"steeples\",\"depth_chart_position\":null,\"player_id\":\"1566\",\"birth_city\":null,\"fantasy_data_id\":15213,\"years_exp\":1,\"hashtag\":\"#RobertSteeples-NFL-FA-26\",\"search_first_name\":\"robert\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Robert Steeples\",\"sportradar_id\":\"62f37027-a6f5-4e2e-85c2-f30876002aa8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Steeples\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robertsteeples\",\"birth_date\":\"1989-11-27\",\"espn_id\":16292},\"2921\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sloat\",\"depth_chart_position\":null,\"player_id\":\"2921\",\"birth_city\":null,\"fantasy_data_id\":17390,\"years_exp\":null,\"hashtag\":\"#TaylorSloat-NFL-FA-0\",\"search_first_name\":\"taylor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Taylor Sloat\",\"sportradar_id\":\"0be6aa8c-8684-4fb8-8ba8-46019cf23a14\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sloat\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":559944,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"taylorsloat\",\"birth_date\":null,\"espn_id\":null},\"1543\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stansly\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1534195806438,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maponga\",\"depth_chart_position\":null,\"player_id\":\"1543\",\"birth_city\":null,\"fantasy_data_id\":15180,\"years_exp\":7,\"hashtag\":\"#StanslyMaponga-NFL-FA-59\",\"search_first_name\":\"stansly\",\"rotowire_id\":8867,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Stansly Maponga\",\"sportradar_id\":\"ae0be14a-f28b-41fe-ae4b-34729024138a\",\"pandascore_id\":null,\"yahoo_id\":26776,\"last_name\":\"Maponga\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Hebron (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"stanslymaponga\",\"birth_date\":\"1991-03-05\",\"espn_id\":15999},\"4568\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Woody\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baron\",\"depth_chart_position\":null,\"player_id\":\"4568\",\"birth_city\":null,\"fantasy_data_id\":19453,\"years_exp\":2,\"hashtag\":\"#WoodyBaron-NFL-FA-68\",\"search_first_name\":\"woody\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Woody Baron\",\"sportradar_id\":\"f84c8a30-29aa-43b5-bbdc-ead656f3c953\",\"pandascore_id\":null,\"yahoo_id\":30780,\"last_name\":\"Baron\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'1\\\"\",\"search_full_name\":\"woodybaron\",\"birth_date\":\"1993-08-08\",\"espn_id\":2970085},\"1380\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029894\",\"first_name\":\"Kapron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565710550982,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lewismoore\",\"depth_chart_position\":null,\"player_id\":\"1380\",\"birth_city\":null,\"fantasy_data_id\":14902,\"years_exp\":7,\"hashtag\":\"#KapronLewisMoore-NFL-FA-90\",\"search_first_name\":\"kapron\",\"rotowire_id\":8984,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kapron Lewis-Moore\",\"sportradar_id\":\"f79197fb-9ee2-4edb-bb68-e8cd059a5101\",\"pandascore_id\":null,\"yahoo_id\":26823,\"last_name\":\"Lewis-Moore\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Weatherford (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kapronlewismoore\",\"birth_date\":\"1990-01-24\",\"espn_id\":15937},\"2699\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031912\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1569966011406,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"meredith\",\"depth_chart_position\":null,\"player_id\":\"2699\",\"birth_city\":null,\"fantasy_data_id\":17167,\"years_exp\":5,\"hashtag\":\"#CameronMeredith-NFL-FA-1\",\"search_first_name\":\"cameron\",\"rotowire_id\":10533,\"rotoworld_id\":10770,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cameron Meredith\",\"sportradar_id\":\"9de98c5e-ee62-4a2b-be93-07287d831e06\",\"pandascore_id\":null,\"yahoo_id\":28697,\"last_name\":\"Meredith\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"St. Joseph's (IL)\",\"depth_chart_order\":null,\"stats_id\":563357,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cameronmeredith\",\"birth_date\":\"1992-09-21\",\"espn_id\":2520698},\"5290\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034653\",\"first_name\":\"Deontay\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605828615629,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burnett\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5290\",\"birth_city\":null,\"fantasy_data_id\":20373,\"years_exp\":2,\"hashtag\":\"#DeontayBurnett-NFL-PHI-16\",\"search_first_name\":\"deontay\",\"rotowire_id\":12602,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1461,\"age\":23,\"full_name\":\"Deontay Burnett\",\"sportradar_id\":\"a4290c7e-ffc0-4f5b-a442-b1d821c24f88\",\"pandascore_id\":null,\"yahoo_id\":31624,\"last_name\":\"Burnett\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Serra (CA)\",\"depth_chart_order\":4,\"stats_id\":886740,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deontayburnett\",\"birth_date\":\"1997-10-04\",\"espn_id\":3932935},\"779\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027495\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1520464501531,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"779\",\"birth_city\":null,\"fantasy_data_id\":12626,\"years_exp\":10,\"hashtag\":\"#GeorgeJohnson-NFL-FA-90\",\"search_first_name\":\"george\",\"rotowire_id\":7222,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"George Johnson\",\"sportradar_id\":\"423d2e55-053b-40cd-b977-bef2f3891907\",\"pandascore_id\":null,\"yahoo_id\":24665,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Glassboro (NJ)\",\"depth_chart_order\":null,\"stats_id\":339598,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"georgejohnson\",\"birth_date\":\"1987-12-11\",\"espn_id\":13812},\"6494\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035094\",\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605408361108,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mone\",\"depth_chart_position\":null,\"player_id\":\"6494\",\"birth_city\":null,\"fantasy_data_id\":21494,\"years_exp\":1,\"hashtag\":\"#BryanMone-NFL-SEA-92\",\"search_first_name\":\"bryan\",\"rotowire_id\":14099,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1747,\"age\":25,\"full_name\":\"Bryan Mone\",\"sportradar_id\":\"f00ccf29-884e-4914-b9f9-aca0090ee9e6\",\"pandascore_id\":null,\"yahoo_id\":32336,\"last_name\":\"Mone\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Highland (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"366\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bryanmone\",\"birth_date\":\"1995-10-20\",\"espn_id\":3115979},\"4703\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deangelo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4703\",\"birth_city\":null,\"fantasy_data_id\":19608,\"years_exp\":2,\"hashtag\":\"#DeangeloBrown-NFL-FA-70\",\"search_first_name\":\"deangelo\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Deangelo Brown\",\"sportradar_id\":\"d29dbd98-909b-4245-8c8e-ffde0de96964\",\"pandascore_id\":null,\"yahoo_id\":30745,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deangelobrown\",\"birth_date\":\"1994-02-14\",\"espn_id\":2970203},\"6419\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035227\",\"first_name\":\"P.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600958412028,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"locke\",\"depth_chart_position\":\"SS\",\"player_id\":\"6419\",\"birth_city\":null,\"fantasy_data_id\":21373,\"years_exp\":1,\"hashtag\":\"#PJLocke-NFL-DEN-37\",\"search_first_name\":\"pj\",\"rotowire_id\":14198,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1726,\"age\":23,\"full_name\":\"P.J. Locke\",\"sportradar_id\":\"155980c2-e289-48c4-a047-09c08d0ce7ae\",\"pandascore_id\":null,\"yahoo_id\":32164,\"last_name\":\"Locke\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas\",\"high_school\":\"Central (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"pjlocke\",\"birth_date\":\"1997-02-12\",\"espn_id\":3929850},\"2862\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2862\",\"birth_city\":null,\"fantasy_data_id\":17330,\"years_exp\":0,\"hashtag\":\"#TonyJohnson-NFL-FA-46\",\"search_first_name\":\"tony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tony Johnson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tonyjohnson\",\"birth_date\":\"1991-09-09\",\"espn_id\":3040564},\"6210\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034968\",\"first_name\":\"Darnell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604250018872,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"savage\",\"depth_chart_position\":\"SS\",\"player_id\":\"6210\",\"birth_city\":null,\"fantasy_data_id\":21107,\"years_exp\":1,\"hashtag\":\"#DarnellSavage-NFL-GB-26\",\"search_first_name\":\"darnell\",\"rotowire_id\":13810,\"rotoworld_id\":14076,\"active\":true,\"search_rank\":1660,\"age\":23,\"full_name\":\"Darnell Savage\",\"sportradar_id\":\"e1b066fb-d077-42a3-9f5d-4ed560c9d777\",\"pandascore_id\":null,\"yahoo_id\":31853,\"last_name\":\"Savage\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Caravel Academy (DE)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darnellsavage\",\"birth_date\":\"1997-07-30\",\"espn_id\":3915419},\"1293\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"1293\",\"birth_city\":null,\"fantasy_data_id\":14756,\"years_exp\":4,\"hashtag\":\"#JeremyStewart-NFL-FA-27\",\"search_first_name\":\"jeremy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeremy Stewart\",\"sportradar_id\":\"4a6f5f02-fbdd-41f5-ac76-5bb9dc765307\",\"pandascore_id\":null,\"yahoo_id\":26007,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":400113,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeremystewart\",\"birth_date\":\"1989-02-17\",\"espn_id\":15572},\"5729\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031879\",\"first_name\":\"Quinterrius\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"eatmon\",\"depth_chart_position\":null,\"player_id\":\"5729\",\"birth_city\":null,\"fantasy_data_id\":17517,\"years_exp\":5,\"hashtag\":\"#QuinterriusEatmon-NFL-FA-79\",\"search_first_name\":\"quinterrius\",\"rotowire_id\":13317,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Quinterrius Eatmon\",\"sportradar_id\":\"38e300f8-1cb6-46cf-966f-4c65f7c49d4f\",\"pandascore_id\":null,\"yahoo_id\":28960,\"last_name\":\"Eatmon\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'6\\\"\",\"search_full_name\":\"quinterriuseatmon\",\"birth_date\":\"1991-12-04\",\"espn_id\":2514802},\"6592\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035569\",\"first_name\":\"Dontae\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1562127942117,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"strickland\",\"depth_chart_position\":\"RB\",\"player_id\":\"6592\",\"birth_city\":null,\"fantasy_data_id\":21391,\"years_exp\":1,\"hashtag\":\"#DontaeStrickland-NFL-FA-34\",\"search_first_name\":\"dontae\",\"rotowire_id\":14276,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dontae Strickland\",\"sportradar_id\":\"5bbe722c-3a86-4ef4-a730-ff83c2676d69\",\"pandascore_id\":null,\"yahoo_id\":32579,\"last_name\":\"Strickland\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":883712,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dontaestrickland\",\"birth_date\":\"1997-03-22\",\"espn_id\":3916451},\"2513\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031956\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600353049254,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chickillo\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2513\",\"birth_city\":null,\"fantasy_data_id\":16972,\"years_exp\":5,\"hashtag\":\"#AnthonyChickillo-NFL-DEN-91\",\"search_first_name\":\"anthony\",\"rotowire_id\":10331,\"rotoworld_id\":null,\"active\":true,\"search_rank\":903,\"age\":27,\"full_name\":\"Anthony Chickillo\",\"sportradar_id\":\"a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1\",\"pandascore_id\":null,\"yahoo_id\":28600,\"last_name\":\"Chickillo\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Miami\",\"high_school\":\"Alonso (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"anthonychickillo\",\"birth_date\":\"1992-12-10\",\"espn_id\":2579601},\"7169\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jace\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"whittaker\",\"depth_chart_position\":null,\"player_id\":\"7169\",\"birth_city\":null,\"fantasy_data_id\":22171,\"years_exp\":0,\"hashtag\":\"#JaceWhittaker-NFL-ARI-39\",\"search_first_name\":\"jace\",\"rotowire_id\":14793,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jace Whittaker\",\"sportradar_id\":\"528bf5c9-1d23-40c3-adda-df21f8f0e2ab\",\"pandascore_id\":null,\"yahoo_id\":33089,\"last_name\":\"Whittaker\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Oceanside (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jacewhittaker\",\"birth_date\":\"1995-07-16\",\"espn_id\":3821572},\"1626\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029869\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603749038705,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"compton\",\"depth_chart_position\":null,\"player_id\":\"1626\",\"birth_city\":null,\"fantasy_data_id\":15327,\"years_exp\":7,\"hashtag\":\"#WillCompton-NFL-TEN-53\",\"search_first_name\":\"will\",\"rotowire_id\":9924,\"rotoworld_id\":8984,\"active\":true,\"search_rank\":754,\"age\":31,\"full_name\":\"Will Compton\",\"sportradar_id\":\"401c4b1f-8302-433e-a84d-9d3101a30f4b\",\"pandascore_id\":null,\"yahoo_id\":27203,\"last_name\":\"Compton\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Nebraska\",\"high_school\":\"North County (MO)\",\"depth_chart_order\":null,\"stats_id\":462367,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"willcompton\",\"birth_date\":\"1989-09-19\",\"espn_id\":16324},\"474\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hakeem\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nicks\",\"depth_chart_position\":null,\"player_id\":\"474\",\"birth_city\":null,\"fantasy_data_id\":9739,\"years_exp\":11,\"hashtag\":\"#HakeemNicks-NFL-FA-88\",\"search_first_name\":\"hakeem\",\"rotowire_id\":5955,\"rotoworld_id\":5136,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Hakeem Nicks\",\"sportradar_id\":\"23d7cd82-d526-4fd8-8f8a-97885f2bc926\",\"pandascore_id\":null,\"yahoo_id\":9293,\"last_name\":\"Nicks\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Independence (NC)\",\"depth_chart_order\":null,\"stats_id\":323361,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"hakeemnicks\",\"birth_date\":\"1988-01-14\",\"espn_id\":12586},\"5117\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034420\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606160117610,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"TE\",\"player_id\":\"5117\",\"birth_city\":null,\"fantasy_data_id\":20020,\"years_exp\":2,\"hashtag\":\"#JordanThomas-NFL-NE-83\",\"search_first_name\":\"jordan\",\"rotowire_id\":12697,\"rotoworld_id\":null,\"active\":true,\"search_rank\":490,\"age\":24,\"full_name\":\"Jordan Thomas\",\"sportradar_id\":\"f993832a-f81f-4706-90b8-80fd193bdfd7\",\"pandascore_id\":null,\"yahoo_id\":31181,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Sumrall (MS)\",\"depth_chart_order\":2,\"stats_id\":922092,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jordanthomas\",\"birth_date\":\"1996-08-02\",\"espn_id\":4035379},\"5485\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034194\",\"first_name\":\"Conor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sheehy\",\"depth_chart_position\":null,\"player_id\":\"5485\",\"birth_city\":null,\"fantasy_data_id\":20564,\"years_exp\":2,\"hashtag\":\"#ConorSheehy-NFL-FA-61\",\"search_first_name\":\"conor\",\"rotowire_id\":13120,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Conor Sheehy\",\"sportradar_id\":\"f890f03f-3f07-4e11-bbd3-c59aeb877326\",\"pandascore_id\":null,\"yahoo_id\":31442,\"last_name\":\"Sheehy\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"conorsheehy\",\"birth_date\":\"1996-07-24\",\"espn_id\":3121563},\"4547\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033626\",\"first_name\":\"Nigel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4547\",\"birth_city\":null,\"fantasy_data_id\":19427,\"years_exp\":3,\"hashtag\":\"#NigelWilliams-NFL-FA-60\",\"search_first_name\":\"nigel\",\"rotowire_id\":13401,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nigel Williams\",\"sportradar_id\":\"7e1ee344-f878-4fc6-bc56-e47588bf1000\",\"pandascore_id\":null,\"yahoo_id\":30605,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nigelwilliams\",\"birth_date\":\"1993-12-20\",\"espn_id\":2970111},\"6688\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gibsonjr\",\"depth_chart_position\":null,\"player_id\":\"6688\",\"birth_city\":null,\"fantasy_data_id\":21589,\"years_exp\":0,\"hashtag\":\"#JohnnyGibsonJr-NFL-FA-62\",\"search_first_name\":\"johnny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Johnny Gibson Jr.\",\"sportradar_id\":\"8377d386-0ee9-4a0b-b66c-90e55473edd7\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gibson Jr.\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnnygibsonjr\",\"birth_date\":\"1995-09-30\",\"espn_id\":null},\"6182\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wyatt\",\"depth_chart_position\":null,\"player_id\":\"6182\",\"birth_city\":null,\"fantasy_data_id\":20999,\"years_exp\":0,\"hashtag\":\"#JordanWyatt-NFL-FA-23\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jordan Wyatt\",\"sportradar_id\":\"993410d1-47a0-425c-804c-6bbecf2dbe12\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wyatt\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanwyatt\",\"birth_date\":null,\"espn_id\":3128431},\"1132\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1530975602226,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stephenson\",\"depth_chart_position\":null,\"player_id\":\"1132\",\"birth_city\":null,\"fantasy_data_id\":14083,\"years_exp\":8,\"hashtag\":\"#DonaldStephenson-NFL-FA-71\",\"search_first_name\":\"donald\",\"rotowire_id\":8332,\"rotoworld_id\":7546,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Donald Stephenson\",\"sportradar_id\":\"7868cc7a-fb8a-4c57-b73a-a8449ffe1737\",\"pandascore_id\":null,\"yahoo_id\":25784,\"last_name\":\"Stephenson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Blue Springs (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'6\\\"\",\"search_full_name\":\"donaldstephenson\",\"birth_date\":\"1988-09-30\",\"espn_id\":14956},\"3486\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"3486\",\"birth_city\":null,\"fantasy_data_id\":18251,\"years_exp\":3,\"hashtag\":\"#ChrisBrown-NFL-FA-88\",\"search_first_name\":\"chris\",\"rotowire_id\":10923,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Brown\",\"sportradar_id\":\"828a2dcf-a95f-4842-a463-96eb9c5f6ce1\",\"pandascore_id\":null,\"yahoo_id\":29888,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":697462,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisbrown\",\"birth_date\":\"1993-12-08\",\"espn_id\":2980137},\"6027\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035415\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606564531916,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"WILL\",\"player_id\":\"6027\",\"birth_city\":null,\"fantasy_data_id\":20783,\"years_exp\":1,\"hashtag\":\"#NateHall-NFL-HOU-48\",\"search_first_name\":\"nate\",\"rotowire_id\":13860,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1543,\"age\":24,\"full_name\":\"Nate Hall\",\"sportradar_id\":\"2b13e2a3-22c5-41cc-b13f-30c501f7c810\",\"pandascore_id\":null,\"yahoo_id\":32206,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Southview (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'2\\\"\",\"search_full_name\":\"natehall\",\"birth_date\":\"1996-04-06\",\"espn_id\":3116134},\"4643\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033716\",\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597008951520,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"munson\",\"depth_chart_position\":\"LB\",\"player_id\":\"4643\",\"birth_city\":null,\"fantasy_data_id\":19538,\"years_exp\":3,\"hashtag\":\"#CalvinMunson-NFL-MIA-48\",\"search_first_name\":\"calvin\",\"rotowire_id\":12383,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1273,\"age\":25,\"full_name\":\"Calvin Munson\",\"sportradar_id\":\"d3ba3eca-c71d-449b-b5f1-7397a9cab3f1\",\"pandascore_id\":null,\"yahoo_id\":30736,\"last_name\":\"Munson\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Francis Howell (OR)\",\"depth_chart_order\":2,\"stats_id\":746289,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"calvinmunson\",\"birth_date\":\"1994-12-27\",\"espn_id\":3047530},\"4199\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033293\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606342802060,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RB\",\"player_id\":\"4199\",\"birth_city\":null,\"fantasy_data_id\":19045,\"years_exp\":3,\"hashtag\":\"#AaronJones-NFL-GB-33\",\"search_first_name\":\"aaron\",\"rotowire_id\":11763,\"rotoworld_id\":12388,\"active\":true,\"search_rank\":13,\"age\":25,\"full_name\":\"Aaron Jones\",\"sportradar_id\":\"27dd5b6e-ea65-4622-a6b4-460fd144407c\",\"pandascore_id\":null,\"yahoo_id\":30295,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Burges (TX)\",\"depth_chart_order\":1,\"stats_id\":741314,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'9\\\"\",\"search_full_name\":\"aaronjones\",\"birth_date\":\"1994-12-02\",\"espn_id\":3042519},\"3431\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"caputo\",\"depth_chart_position\":null,\"player_id\":\"3431\",\"birth_city\":null,\"fantasy_data_id\":18195,\"years_exp\":0,\"hashtag\":\"#MichaelCaputo-NFL-FA-27\",\"search_first_name\":\"michael\",\"rotowire_id\":11664,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Michael Caputo\",\"sportradar_id\":\"d4112c0c-0d35-4e66-953c-ced7d94ed56e\",\"pandascore_id\":null,\"yahoo_id\":29839,\"last_name\":\"Caputo\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelcaputo\",\"birth_date\":null,\"espn_id\":2576428},\"5401\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Armanti\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"foreman\",\"depth_chart_position\":null,\"player_id\":\"5401\",\"birth_city\":null,\"fantasy_data_id\":20447,\"years_exp\":1,\"hashtag\":\"#ArmantiForeman-NFL-MIN-3\",\"search_first_name\":\"armanti\",\"rotowire_id\":13147,\"rotoworld_id\":null,\"active\":true,\"search_rank\":972,\"age\":null,\"full_name\":\"Armanti Foreman\",\"sportradar_id\":\"5eb700e5-713f-40ff-a43a-189521babdbd\",\"pandascore_id\":null,\"yahoo_id\":31231,\"last_name\":\"Foreman\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835442,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"armantiforeman\",\"birth_date\":null,\"espn_id\":3125115},\"5692\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034648\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":1605645325272,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"santoso\",\"depth_chart_position\":null,\"player_id\":\"5692\",\"birth_city\":null,\"fantasy_data_id\":20282,\"years_exp\":2,\"hashtag\":\"#RyanSantoso-NFL-NYG-3\",\"search_first_name\":\"ryan\",\"rotowire_id\":13526,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Santoso\",\"sportradar_id\":\"d58166e2-24ee-4dd2-ae22-36b05634eb6d\",\"pandascore_id\":null,\"yahoo_id\":31643,\"last_name\":\"Santoso\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Pace (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryansantoso\",\"birth_date\":\"1995-08-26\",\"espn_id\":3040204},\"5627\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034604\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1549509024397,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trumbetti\",\"depth_chart_position\":null,\"player_id\":\"5627\",\"birth_city\":null,\"fantasy_data_id\":20109,\"years_exp\":2,\"hashtag\":\"#AndrewTrumbetti-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":13243,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Andrew Trumbetti\",\"sportradar_id\":\"e95dd915-4e7d-449e-ac8e-356ad784fa62\",\"pandascore_id\":null,\"yahoo_id\":31668,\"last_name\":\"Trumbetti\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewtrumbetti\",\"birth_date\":\"1996-03-14\",\"espn_id\":3125208},\"2924\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gannon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sinclair\",\"depth_chart_position\":null,\"player_id\":\"2924\",\"birth_city\":null,\"fantasy_data_id\":17393,\"years_exp\":1,\"hashtag\":\"#GannonSinclair-NFL-FA-86\",\"search_first_name\":\"gannon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Gannon Sinclair\",\"sportradar_id\":\"c28c4493-6fd0-4b02-9dee-0e84c974d2e5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sinclair\",\"metadata\":null,\"college\":\"Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":745276,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'7\\\"\",\"search_full_name\":\"gannonsinclair\",\"birth_date\":\"1993-02-05\",\"espn_id\":null},\"3493\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1524779101492,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"latham\",\"depth_chart_position\":null,\"player_id\":\"3493\",\"birth_city\":null,\"fantasy_data_id\":18258,\"years_exp\":3,\"hashtag\":\"#DariusLatham-NFL-FA-75\",\"search_first_name\":\"darius\",\"rotowire_id\":11103,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darius Latham\",\"sportradar_id\":\"0144fd9c-ae86-4432-98bf-30ad34c8e9b6\",\"pandascore_id\":null,\"yahoo_id\":29960,\"last_name\":\"Latham\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748676,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dariuslatham\",\"birth_date\":\"1994-11-09\",\"espn_id\":3060800},\"3559\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032772\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599777919774,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"3559\",\"birth_city\":null,\"fantasy_data_id\":18332,\"years_exp\":4,\"hashtag\":\"#RyanSmith-NFL-TB-29\",\"search_first_name\":\"ryan\",\"rotowire_id\":11178,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1062,\"age\":27,\"full_name\":\"Ryan Smith\",\"sportradar_id\":\"479b4819-3377-4255-9156-c1ce82cbf1d4\",\"pandascore_id\":null,\"yahoo_id\":29342,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"North Carolina Central\",\"high_school\":\"Wise (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ryansmith\",\"birth_date\":\"1993-09-07\",\"espn_id\":2574666},\"3932\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mathu\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gibson\",\"depth_chart_position\":\"LG\",\"player_id\":\"3932\",\"birth_city\":null,\"fantasy_data_id\":18762,\"years_exp\":0,\"hashtag\":\"#MathuGibson-NFL-FA-67\",\"search_first_name\":\"mathu\",\"rotowire_id\":11639,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mathu Gibson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30059,\"last_name\":\"Gibson\",\"metadata\":null,\"college\":\"Wingate\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mathugibson\",\"birth_date\":\"1993-08-06\",\"espn_id\":null},\"6967\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599408360077,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6967\",\"birth_city\":null,\"fantasy_data_id\":21751,\"years_exp\":0,\"hashtag\":\"#AaronFuller-NFL-SEA-17\",\"search_first_name\":\"aaron\",\"rotowire_id\":14638,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aaron Fuller\",\"sportradar_id\":\"df2caa7b-29f4-4391-8ce0-b1b711196379\",\"pandascore_id\":null,\"yahoo_id\":33267,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Lovejoy (TX)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"aaronfuller\",\"birth_date\":\"1997-09-30\",\"espn_id\":4039000},\"7283\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7283\",\"birth_city\":null,\"fantasy_data_id\":22279,\"years_exp\":0,\"hashtag\":\"#ChrisWilliams-NFL-IND-66\",\"search_first_name\":\"chris\",\"rotowire_id\":15025,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Chris Williams\",\"sportradar_id\":\"a1be5d02-d5c4-42f6-8749-7ac2ff2a6f09\",\"pandascore_id\":null,\"yahoo_id\":33220,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":\"Lafayette (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chriswilliams\",\"birth_date\":\"1998-06-16\",\"espn_id\":4034530},\"4649\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033744\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1578520247110,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wheeler\",\"depth_chart_position\":null,\"player_id\":\"4649\",\"birth_city\":null,\"fantasy_data_id\":19544,\"years_exp\":3,\"hashtag\":\"#ChadWheeler-NFL-SEA-75\",\"search_first_name\":\"chad\",\"rotowire_id\":11825,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chad Wheeler\",\"sportradar_id\":\"ca8791bf-ca6e-46cb-9f79-dcf6283c292b\",\"pandascore_id\":null,\"yahoo_id\":30879,\"last_name\":\"Wheeler\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Santa Monica (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'7\\\"\",\"search_full_name\":\"chadwheeler\",\"birth_date\":\"1994-01-19\",\"espn_id\":2971615},\"6767\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brady\",\"depth_chart_position\":null,\"player_id\":\"6767\",\"birth_city\":null,\"fantasy_data_id\":21713,\"years_exp\":0,\"hashtag\":\"#JoeBrady-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":14859,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Brady\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brady\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joebrady\",\"birth_date\":null,\"espn_id\":null},\"3039\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":\"RT\",\"player_id\":\"3039\",\"birth_city\":null,\"fantasy_data_id\":17745,\"years_exp\":1,\"hashtag\":\"#KyleRoberts-NFL-FA-66\",\"search_first_name\":\"kyle\",\"rotowire_id\":10867,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Roberts\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":28726,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kyleroberts\",\"birth_date\":\"1992-02-09\",\"espn_id\":2126794},\"5554\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"5554\",\"birth_city\":null,\"fantasy_data_id\":20413,\"years_exp\":0,\"hashtag\":\"#ReggieHall-NFL-NYJ-6\",\"search_first_name\":\"reggie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Reggie Hall\",\"sportradar_id\":\"c2359655-60f8-4eb8-b1c9-c41bc423584b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"reggiehall\",\"birth_date\":\"1995-09-14\",\"espn_id\":3127025},\"6128\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035637\",\"first_name\":\"Rock\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604343328505,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"yasin\",\"depth_chart_position\":\"CB\",\"player_id\":\"6128\",\"birth_city\":null,\"fantasy_data_id\":21001,\"years_exp\":1,\"hashtag\":\"#RockYaSin-NFL-IND-26\",\"search_first_name\":\"rock\",\"rotowire_id\":13474,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1629,\"age\":24,\"full_name\":\"Rock Ya-Sin\",\"sportradar_id\":\"bbeb74ae-87d4-417d-ba57-670391baf8ca\",\"pandascore_id\":null,\"yahoo_id\":31866,\"last_name\":\"Ya-Sin\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Southwest DeKalb (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rockyasin\",\"birth_date\":\"1996-05-23\",\"espn_id\":3910229},\"2670\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Edwin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1517779501314,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"2670\",\"birth_city\":null,\"fantasy_data_id\":17138,\"years_exp\":5,\"hashtag\":\"#EdwinJackson-NFL-FA-53\",\"search_first_name\":\"edwin\",\"rotowire_id\":10782,\"rotoworld_id\":10840,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Edwin Jackson\",\"sportradar_id\":\"f0437089-96b4-48af-8b71-c40c68412cdc\",\"pandascore_id\":null,\"yahoo_id\":28806,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605931,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"edwinjackson\",\"birth_date\":\"1991-12-19\",\"espn_id\":2519377},\"3375\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"feeney\",\"depth_chart_position\":null,\"player_id\":\"3375\",\"birth_city\":null,\"fantasy_data_id\":18136,\"years_exp\":1,\"hashtag\":\"#TravisFeeney-NFL-FA-42\",\"search_first_name\":\"travis\",\"rotowire_id\":11033,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Travis Feeney\",\"sportradar_id\":\"2e5b1b40-5eab-4e41-a778-e7b356fad223\",\"pandascore_id\":null,\"yahoo_id\":29454,\"last_name\":\"Feeney\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608005,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"travisfeeney\",\"birth_date\":\"1992-11-18\",\"espn_id\":2578367},\"3068\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jim\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"caldwell\",\"depth_chart_position\":null,\"player_id\":\"3068\",\"birth_city\":null,\"fantasy_data_id\":17810,\"years_exp\":0,\"hashtag\":\"#JimCaldwell-NFL-FA-0\",\"search_first_name\":\"jim\",\"rotowire_id\":null,\"rotoworld_id\":9289,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jim Caldwell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Caldwell\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jimcaldwell\",\"birth_date\":null,\"espn_id\":null},\"2210\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pierre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"warren\",\"depth_chart_position\":null,\"player_id\":\"2210\",\"birth_city\":null,\"fantasy_data_id\":16587,\"years_exp\":2,\"hashtag\":\"#PierreWarren-NFL-FA-42\",\"search_first_name\":\"pierre\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Pierre Warren\",\"sportradar_id\":\"eb3f91ff-ae2f-4920-9e27-177641dc1770\",\"pandascore_id\":null,\"yahoo_id\":27935,\"last_name\":\"Warren\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"pierrewarren\",\"birth_date\":\"1992-08-16\",\"espn_id\":17278},\"7109\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\",\"QB\"],\"news_updated\":1606252554208,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perry\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7109\",\"birth_city\":null,\"fantasy_data_id\":21962,\"years_exp\":0,\"hashtag\":\"#MalcolmPerry-NFL-MIA-10\",\"search_first_name\":\"malcolm\",\"rotowire_id\":14504,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1859,\"age\":23,\"full_name\":\"Malcolm Perry\",\"sportradar_id\":\"73236a66-ba10-44a6-b12f-2ca13cad33b4\",\"pandascore_id\":null,\"yahoo_id\":32916,\"last_name\":\"Perry\",\"metadata\":null,\"college\":\"Navy\",\"high_school\":\"Kenwood (TN)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"malcolmperry\",\"birth_date\":\"1997-04-19\",\"espn_id\":4039436},\"102\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"102\",\"birth_city\":null,\"fantasy_data_id\":2695,\"years_exp\":17,\"hashtag\":\"#JoshBrown-NFL-FA-3\",\"search_first_name\":\"josh\",\"rotowire_id\":3132,\"rotoworld_id\":525,\"active\":false,\"search_rank\":9999999,\"age\":41,\"full_name\":\"Josh Brown\",\"sportradar_id\":\"f5e1f35d-9f17-4890-964c-396e76ae0d31\",\"pandascore_id\":null,\"yahoo_id\":6558,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Foyil (OK)\",\"depth_chart_order\":null,\"stats_id\":184747,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshbrown\",\"birth_date\":\"1979-04-29\",\"espn_id\":4680},\"3599\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"3599\",\"birth_city\":null,\"fantasy_data_id\":18384,\"years_exp\":4,\"hashtag\":\"#DezStewart-NFL-FA-0\",\"search_first_name\":\"dez\",\"rotowire_id\":11604,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dez Stewart\",\"sportradar_id\":\"81a17b2d-f331-4470-bbe5-f8af547df4b7\",\"pandascore_id\":null,\"yahoo_id\":29592,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Ohio Dominican\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":915028,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dezstewart\",\"birth_date\":\"1993-04-18\",\"espn_id\":4002656},\"4196\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033569\",\"first_name\":\"Roderick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584716707048,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LT\",\"player_id\":\"4196\",\"birth_city\":null,\"fantasy_data_id\":19042,\"years_exp\":3,\"hashtag\":\"#RoderickJohnson-NFL-HOU-63\",\"search_first_name\":\"roderick\",\"rotowire_id\":11800,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Roderick Johnson\",\"sportradar_id\":\"fa7465d1-4d84-452f-97c4-cdc14c607a34\",\"pandascore_id\":null,\"yahoo_id\":30273,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Hazelwood Central (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'6\\\"\",\"search_full_name\":\"roderickjohnson\",\"birth_date\":\"1995-11-28\",\"espn_id\":3122923},\"3140\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547440506089,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"monken\",\"depth_chart_position\":null,\"player_id\":\"3140\",\"birth_city\":null,\"fantasy_data_id\":17894,\"years_exp\":0,\"hashtag\":\"#ToddMonken-NFL-FA-0\",\"search_first_name\":\"todd\",\"rotowire_id\":null,\"rotoworld_id\":11254,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Todd Monken\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Monken\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"toddmonken\",\"birth_date\":null,\"espn_id\":null},\"1292\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"1292\",\"birth_city\":null,\"fantasy_data_id\":14752,\"years_exp\":3,\"hashtag\":\"#RobertHughes-NFL-FA-48\",\"search_first_name\":\"robert\",\"rotowire_id\":7672,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Robert Hughes\",\"sportradar_id\":\"ec5a91ca-25e4-4930-a2e6-97bb1921f0d7\",\"pandascore_id\":null,\"yahoo_id\":25077,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":400455,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"5'11\\\"\",\"search_full_name\":\"roberthughes\",\"birth_date\":\"1989-05-10\",\"espn_id\":14266},\"4322\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1533942328160,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crossan\",\"depth_chart_position\":null,\"player_id\":\"4322\",\"birth_city\":null,\"fantasy_data_id\":19175,\"years_exp\":3,\"hashtag\":\"#DaltonCrossan-NFL-FA-44\",\"search_first_name\":\"dalton\",\"rotowire_id\":12293,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dalton Crossan\",\"sportradar_id\":\"dbc8442c-9b94-4fe8-9c70-6d7cc1dab2fb\",\"pandascore_id\":null,\"yahoo_id\":30522,\"last_name\":\"Crossan\",\"metadata\":null,\"college\":\"New Hampshire\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":658409,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"daltoncrossan\",\"birth_date\":\"1994-02-25\",\"espn_id\":2969103},\"6957\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606262154703,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"proche\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6957\",\"birth_city\":null,\"fantasy_data_id\":21723,\"years_exp\":0,\"hashtag\":\"#JamesProche-NFL-BAL-11\",\"search_first_name\":\"james\",\"rotowire_id\":14415,\"rotoworld_id\":null,\"active\":true,\"search_rank\":295,\"age\":24,\"full_name\":\"James Proche\",\"sportradar_id\":\"c65488d4-251e-40fc-9f32-7019bbdaf75e\",\"pandascore_id\":null,\"yahoo_id\":32871,\"last_name\":\"Proche\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jamesproche\",\"birth_date\":\"1996-09-21\",\"espn_id\":3916204},\"6610\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035020\",\"first_name\":\"Demetrius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1605371458351,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flanniganfowles\",\"depth_chart_position\":\"WILL\",\"player_id\":\"6610\",\"birth_city\":null,\"fantasy_data_id\":21354,\"years_exp\":1,\"hashtag\":\"#DemetriusFlanniganFowles-NFL-SF-45\",\"search_first_name\":\"demetrius\",\"rotowire_id\":14074,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1720,\"age\":24,\"full_name\":\"Demetrius Flannigan-Fowles\",\"sportradar_id\":\"c5175598-1392-4eaa-ae62-d99811a0c477\",\"pandascore_id\":null,\"yahoo_id\":32319,\"last_name\":\"Flannigan-Fowles\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Mountain View (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"demetriusflanniganfowles\",\"birth_date\":\"1996-09-04\",\"espn_id\":3931424},\"6555\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035190\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1568573129641,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":null,\"player_id\":\"6555\",\"birth_city\":null,\"fantasy_data_id\":21516,\"years_exp\":1,\"hashtag\":\"#AJCole-NFL-LV-6\",\"search_first_name\":\"aj\",\"rotowire_id\":14171,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"A.J. Cole\",\"sportradar_id\":\"36f93677-a95b-4362-ac5f-6722f5c05b6d\",\"pandascore_id\":null,\"yahoo_id\":32386,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Woodward Academy (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ajcole\",\"birth_date\":\"1995-11-27\",\"espn_id\":3686689},\"1880\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031066\",\"first_name\":\"Lorenzo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taliaferro\",\"depth_chart_position\":null,\"player_id\":\"1880\",\"birth_city\":null,\"fantasy_data_id\":16099,\"years_exp\":6,\"hashtag\":\"#LorenzoTaliaferro-NFL-FA-34\",\"search_first_name\":\"lorenzo\",\"rotowire_id\":9539,\"rotoworld_id\":9560,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Lorenzo Taliaferro\",\"sportradar_id\":\"6eba2319-7d5b-44da-bc48-280d3f9e423f\",\"pandascore_id\":null,\"yahoo_id\":27666,\"last_name\":\"Taliaferro\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":\"Bruton (VA)\",\"depth_chart_order\":null,\"stats_id\":701522,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lorenzotaliaferro\",\"birth_date\":\"1991-12-23\",\"espn_id\":16950},\"4073\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033541\",\"first_name\":\"Taco\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606059017359,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"charlton\",\"depth_chart_position\":null,\"player_id\":\"4073\",\"birth_city\":null,\"fantasy_data_id\":18919,\"years_exp\":3,\"hashtag\":\"#TacoCharlton-NFL-KC-94\",\"search_first_name\":\"taco\",\"rotowire_id\":11908,\"rotoworld_id\":12251,\"active\":true,\"search_rank\":1126,\"age\":26,\"full_name\":\"Taco Charlton\",\"sportradar_id\":\"aaff3798-2b50-47a1-b629-5771454a45d7\",\"pandascore_id\":null,\"yahoo_id\":30141,\"last_name\":\"Charlton\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Central (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tacocharlton\",\"birth_date\":\"1994-11-07\",\"espn_id\":3045210},\"2590\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Yannik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cudjoevirgil\",\"depth_chart_position\":null,\"player_id\":\"2590\",\"birth_city\":null,\"fantasy_data_id\":17056,\"years_exp\":5,\"hashtag\":\"#YannikCudjoeVirgil-NFL-FA-40\",\"search_first_name\":\"yannik\",\"rotowire_id\":10712,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Yannik Cudjoe-Virgil\",\"sportradar_id\":\"73690b00-9c1d-4077-bb6c-897615dcc32a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cudjoe-Virgil\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Towson (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"yannikcudjoevirgil\",\"birth_date\":\"1992-11-28\",\"espn_id\":2976208},\"4914\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Glen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coffee\",\"depth_chart_position\":null,\"player_id\":\"4914\",\"birth_city\":null,\"fantasy_data_id\":9329,\"years_exp\":1,\"hashtag\":\"#GlenCoffee-NFL-SF-29\",\"search_first_name\":\"glen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Glen Coffee\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":9338,\"last_name\":\"Coffee\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"glencoffee\",\"birth_date\":\"1987-05-01\",\"espn_id\":null},\"4519\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033515\",\"first_name\":\"Devine\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535741503027,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redding\",\"depth_chart_position\":\"RB\",\"player_id\":\"4519\",\"birth_city\":null,\"fantasy_data_id\":19391,\"years_exp\":3,\"hashtag\":\"#DevineRedding-NFL-FA-40\",\"search_first_name\":\"devine\",\"rotowire_id\":11770,\"rotoworld_id\":12963,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Devine Redding\",\"sportradar_id\":\"414b95e9-e7e0-4ede-aef6-b0825ddda611\",\"pandascore_id\":null,\"yahoo_id\":30703,\"last_name\":\"Redding\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":838211,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'10\\\"\",\"search_full_name\":\"devineredding\",\"birth_date\":\"1996-02-05\",\"espn_id\":3128267},\"2519\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032120\",\"first_name\":\"Neal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1564069543958,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sterling\",\"depth_chart_position\":null,\"player_id\":\"2519\",\"birth_city\":null,\"fantasy_data_id\":16979,\"years_exp\":5,\"hashtag\":\"#NealSterling-NFL-FA-85\",\"search_first_name\":\"neal\",\"rotowire_id\":10493,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Neal Sterling\",\"sportradar_id\":\"5e3b63cd-db76-48a8-82dd-7ccc8222f6ae\",\"pandascore_id\":null,\"yahoo_id\":28608,\"last_name\":\"Sterling\",\"metadata\":null,\"college\":\"Monmouth, N.J.\",\"high_school\":\"Manasquan (NJ)\",\"depth_chart_order\":null,\"stats_id\":554911,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nealsterling\",\"birth_date\":\"1992-01-14\",\"espn_id\":2513770},\"3957\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":null,\"player_id\":\"3957\",\"birth_city\":null,\"fantasy_data_id\":18790,\"years_exp\":3,\"hashtag\":\"#BlakeSims-NFL-FA-25\",\"search_first_name\":\"blake\",\"rotowire_id\":10181,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Blake Sims\",\"sportradar_id\":\"40d0e8a7-ca2f-4ea3-8122-948ac7737453\",\"pandascore_id\":null,\"yahoo_id\":30082,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557175,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"blakesims\",\"birth_date\":\"1992-01-03\",\"espn_id\":2515957},\"4452\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033450\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1570495556516,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodsonluster\",\"depth_chart_position\":null,\"player_id\":\"4452\",\"birth_city\":null,\"fantasy_data_id\":19315,\"years_exp\":3,\"hashtag\":\"#XavierWoodsonLuster-NFL-FA-0\",\"search_first_name\":\"xavier\",\"rotowire_id\":12423,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Xavier Woodson-Luster\",\"sportradar_id\":\"cbfc2a87-0ecf-4e5e-8d2d-2d171308f377\",\"pandascore_id\":null,\"yahoo_id\":30638,\"last_name\":\"Woodson-Luster\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":736808,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"xavierwoodsonluster\",\"birth_date\":\"1995-08-06\",\"espn_id\":3042370},\"2466\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031948\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1532893503676,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"russell\",\"depth_chart_position\":null,\"player_id\":\"2466\",\"birth_city\":null,\"fantasy_data_id\":16923,\"years_exp\":5,\"hashtag\":\"#RyanRussell-NFL-FA-59\",\"search_first_name\":\"ryan\",\"rotowire_id\":10465,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ryan Russell\",\"sportradar_id\":\"128f79ed-c225-41f1-a10b-b9eb8c477c77\",\"pandascore_id\":null,\"yahoo_id\":28551,\"last_name\":\"Russell\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Creekview (TX)\",\"depth_chart_order\":null,\"stats_id\":548422,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryanrussell\",\"birth_date\":\"1992-01-17\",\"espn_id\":2511687},\"3700\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arjen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colquhoun\",\"depth_chart_position\":null,\"player_id\":\"3700\",\"birth_city\":null,\"fantasy_data_id\":18505,\"years_exp\":0,\"hashtag\":\"#ArjenColquhoun-NFL-FA-36\",\"search_first_name\":\"arjen\",\"rotowire_id\":11370,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Arjen Colquhoun\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29890,\"last_name\":\"Colquhoun\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"arjencolquhoun\",\"birth_date\":\"1992-10-13\",\"espn_id\":2576260},\"5963\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035383\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606438560778,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"herbig\",\"depth_chart_position\":\"RG\",\"player_id\":\"5963\",\"birth_city\":null,\"fantasy_data_id\":20799,\"years_exp\":1,\"hashtag\":\"#NateHerbig-NFL-PHI-67\",\"search_first_name\":\"nate\",\"rotowire_id\":13464,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Nate Herbig\",\"sportradar_id\":\"db099408-4fdf-44f3-9824-aa8006ac60c3\",\"pandascore_id\":null,\"yahoo_id\":32405,\"last_name\":\"Herbig\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"St. Louis (HI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"334\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nateherbig\",\"birth_date\":\"1998-07-10\",\"espn_id\":4044438},\"4112\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033917\",\"first_name\":\"Tarell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603509652555,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"basham\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"4112\",\"birth_city\":null,\"fantasy_data_id\":18958,\"years_exp\":3,\"hashtag\":\"#TarellBasham-NFL-NYJ-93\",\"search_first_name\":\"tarell\",\"rotowire_id\":11902,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1152,\"age\":26,\"full_name\":\"Tarell Basham\",\"sportradar_id\":\"d7068799-55b7-47c2-91d9-0e532957939e\",\"pandascore_id\":null,\"yahoo_id\":30193,\"last_name\":\"Basham\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":\"Franklin County (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tarellbasham\",\"birth_date\":\"1994-03-18\",\"espn_id\":3052977},\"5143\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Demario\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1528911901374,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richard\",\"depth_chart_position\":null,\"player_id\":\"5143\",\"birth_city\":null,\"fantasy_data_id\":20090,\"years_exp\":1,\"hashtag\":\"#DemarioRichard-NFL-FA-41\",\"search_first_name\":\"demario\",\"rotowire_id\":12944,\"rotoworld_id\":null,\"active\":true,\"search_rank\":997,\"age\":22,\"full_name\":\"Demario Richard\",\"sportradar_id\":\"aa9c9fa1-9278-4e33-b1e4-3ae739beae77\",\"pandascore_id\":null,\"yahoo_id\":31337,\"last_name\":\"Richard\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820617,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"5'9\\\"\",\"search_full_name\":\"demariorichard\",\"birth_date\":\"1996-12-02\",\"espn_id\":3128800},\"6783\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606520727817,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jeudy\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6783\",\"birth_city\":null,\"fantasy_data_id\":21692,\"years_exp\":0,\"hashtag\":\"#JerryJeudy-NFL-DEN-10\",\"search_first_name\":\"jerry\",\"rotowire_id\":14458,\"rotoworld_id\":null,\"active\":true,\"search_rank\":110,\"age\":21,\"full_name\":\"Jerry Jeudy\",\"sportradar_id\":\"eaaa4a61-c2a7-4926-8e9b-3ec71be2f991\",\"pandascore_id\":null,\"yahoo_id\":32685,\"last_name\":\"Jeudy\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Alabama\",\"high_school\":\"Deerfield Beach (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jerryjeudy\",\"birth_date\":\"1999-04-24\",\"espn_id\":4241463},\"5074\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034806\",\"first_name\":\"Micah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606419058468,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"kiser\",\"depth_chart_position\":null,\"player_id\":\"5074\",\"birth_city\":null,\"fantasy_data_id\":19986,\"years_exp\":2,\"hashtag\":\"#MicahKiser-NFL-LAR-59\",\"search_first_name\":\"micah\",\"rotowire_id\":12846,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1380,\"age\":25,\"full_name\":\"Micah Kiser\",\"sportradar_id\":\"c16fcef9-ecdb-4696-9c92-5d5b959aafeb\",\"pandascore_id\":null,\"yahoo_id\":31117,\"last_name\":\"Kiser\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Gilman School (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'0\\\"\",\"search_full_name\":\"micahkiser\",\"birth_date\":\"1995-01-25\",\"espn_id\":3048692},\"4583\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033667\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567824628057,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":null,\"player_id\":\"4583\",\"birth_city\":null,\"fantasy_data_id\":19470,\"years_exp\":3,\"hashtag\":\"#CameronHunt-NFL-FA-0\",\"search_first_name\":\"cameron\",\"rotowire_id\":12592,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cameron Hunt\",\"sportradar_id\":\"53fac8d5-eea1-431e-8754-d71446e0dbd3\",\"pandascore_id\":null,\"yahoo_id\":30817,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cameronhunt\",\"birth_date\":\"1994-12-17\",\"espn_id\":3052094},\"4142\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033934\",\"first_name\":\"Nazair\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588630231612,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RDT\",\"player_id\":\"4142\",\"birth_city\":null,\"fantasy_data_id\":18988,\"years_exp\":3,\"hashtag\":\"#NazairJones-NFL-FA-0\",\"search_first_name\":\"nazair\",\"rotowire_id\":11923,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nazair Jones\",\"sportradar_id\":\"ddc66539-5847-4c01-9283-595bde0ff97a\",\"pandascore_id\":null,\"yahoo_id\":30215,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nazairjones\",\"birth_date\":\"1994-12-13\",\"espn_id\":3039721},\"5625\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034512\",\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599408360067,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"5625\",\"birth_city\":null,\"fantasy_data_id\":20599,\"years_exp\":2,\"hashtag\":\"#CamPhillips-NFL-FA-0\",\"search_first_name\":\"cam\",\"rotowire_id\":12898,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1496,\"age\":24,\"full_name\":\"Cam Phillips\",\"sportradar_id\":\"14b0de01-a0f1-491f-86fe-01f83478046d\",\"pandascore_id\":null,\"yahoo_id\":31598,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":836953,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"camphillips\",\"birth_date\":\"1995-12-16\",\"espn_id\":3124079},\"1757\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chance\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"casey\",\"depth_chart_position\":null,\"player_id\":\"1757\",\"birth_city\":null,\"fantasy_data_id\":15775,\"years_exp\":1,\"hashtag\":\"#ChanceCasey-NFL-FA-43\",\"search_first_name\":\"chance\",\"rotowire_id\":9219,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chance Casey\",\"sportradar_id\":\"7c571a0d-8228-499a-94a9-434dad921bf2\",\"pandascore_id\":null,\"yahoo_id\":27403,\"last_name\":\"Casey\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chancecasey\",\"birth_date\":\"1991-03-11\",\"espn_id\":16513},\"1174\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029284\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603585557485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":\"RDT\",\"player_id\":\"1174\",\"birth_city\":null,\"fantasy_data_id\":14280,\"years_exp\":8,\"hashtag\":\"#MikeDaniels-NFL-CIN-76\",\"search_first_name\":\"mike\",\"rotowire_id\":8324,\"rotoworld_id\":7584,\"active\":true,\"search_rank\":678,\"age\":31,\"full_name\":\"Mike Daniels\",\"sportradar_id\":\"34de0b93-9cab-4987-915b-25ef8480cae7\",\"pandascore_id\":null,\"yahoo_id\":25842,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Highland Regional (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mikedaniels\",\"birth_date\":\"1989-05-05\",\"espn_id\":14994},\"NE\":{\"team\":\"NE\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"NE\",\"last_name\":\"Patriots\",\"injury_status\":null,\"first_name\":\"New England\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"599\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":null,\"player_id\":\"599\",\"birth_city\":null,\"fantasy_data_id\":11397,\"years_exp\":10,\"hashtag\":\"#MikeNeal-NFL-FA-96\",\"search_first_name\":\"mike\",\"rotowire_id\":6594,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Mike Neal\",\"sportradar_id\":\"57ac58f6-9566-4aa4-88d2-c2e291ffec41\",\"pandascore_id\":null,\"yahoo_id\":24031,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Merrillville (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikeneal\",\"birth_date\":\"1987-06-26\",\"espn_id\":13291},\"2544\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032123\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567279505039,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcbride\",\"depth_chart_position\":null,\"player_id\":\"2544\",\"birth_city\":null,\"fantasy_data_id\":17004,\"years_exp\":5,\"hashtag\":\"#TreMcBride-NFL-FA-88\",\"search_first_name\":\"tre\",\"rotowire_id\":10214,\"rotoworld_id\":10474,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tre McBride\",\"sportradar_id\":\"24779156-67f5-45ac-a73e-09184d4d314a\",\"pandascore_id\":null,\"yahoo_id\":28633,\"last_name\":\"McBride\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Ola (GA)\",\"depth_chart_order\":null,\"stats_id\":594730,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tremcbride\",\"birth_date\":\"1992-12-01\",\"espn_id\":2566041},\"5050\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034362\",\"first_name\":\"Rashaan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596411018928,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gaulden\",\"depth_chart_position\":null,\"player_id\":\"5050\",\"birth_city\":null,\"fantasy_data_id\":19869,\"years_exp\":2,\"hashtag\":\"#RashaanGaulden-NFL-LV-38\",\"search_first_name\":\"rashaan\",\"rotowire_id\":12550,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Rashaan Gaulden\",\"sportradar_id\":\"a494c7f4-3d8a-4a2c-ae0c-95dd6855f719\",\"pandascore_id\":null,\"yahoo_id\":31055,\"last_name\":\"Gaulden\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Independence (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rashaangaulden\",\"birth_date\":\"1995-01-23\",\"espn_id\":3115333},\"5455\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1531515902598,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"5455\",\"birth_city\":null,\"fantasy_data_id\":20241,\"years_exp\":2,\"hashtag\":\"#AlexThompson-NFL-FA-61\",\"search_first_name\":\"alex\",\"rotowire_id\":13129,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alex Thompson\",\"sportradar_id\":\"2a40ac81-8dd6-4ee8-8cc3-850059edaa13\",\"pandascore_id\":null,\"yahoo_id\":31250,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexthompson\",\"birth_date\":\"1995-07-07\",\"espn_id\":3121239},\"1990\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1534445437958,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morris\",\"depth_chart_position\":null,\"player_id\":\"1990\",\"birth_city\":null,\"fantasy_data_id\":16261,\"years_exp\":6,\"hashtag\":\"#StephenMorris-NFL-FA-6\",\"search_first_name\":\"stephen\",\"rotowire_id\":9324,\"rotoworld_id\":9417,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Stephen Morris\",\"sportradar_id\":\"4f0e7ce1-b4ee-48cb-88b2-0f2d61626700\",\"pandascore_id\":null,\"yahoo_id\":27878,\"last_name\":\"Morris\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Monsignor Pace (FL)\",\"depth_chart_order\":null,\"stats_id\":541000,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"stephenmorris\",\"birth_date\":\"1992-08-27\",\"espn_id\":17220},\"1577\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030382\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1584740409879,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"minter\",\"depth_chart_position\":\"LILB\",\"player_id\":\"1577\",\"birth_city\":null,\"fantasy_data_id\":15227,\"years_exp\":7,\"hashtag\":\"#KevinMinter-NFL-TB-51\",\"search_first_name\":\"kevin\",\"rotowire_id\":8694,\"rotoworld_id\":8443,\"active\":true,\"search_rank\":748,\"age\":29,\"full_name\":\"Kevin Minter\",\"sportradar_id\":\"186014e2-3430-4510-867f-a7013daf0bb8\",\"pandascore_id\":null,\"yahoo_id\":26668,\"last_name\":\"Minter\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Peachtree Ridge (GA)\",\"depth_chart_order\":2,\"stats_id\":494295,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kevinminter\",\"birth_date\":\"1990-12-03\",\"espn_id\":15856},\"90\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tamba\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1530224101498,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hali\",\"depth_chart_position\":null,\"player_id\":\"90\",\"birth_city\":null,\"fantasy_data_id\":2406,\"years_exp\":14,\"hashtag\":\"#TambaHali-NFL-FA-91\",\"search_first_name\":\"tamba\",\"rotowire_id\":4905,\"rotoworld_id\":3626,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Tamba Hali\",\"sportradar_id\":\"8f44e573-a6dc-4730-93fd-e8abb403c160\",\"pandascore_id\":null,\"yahoo_id\":7769,\"last_name\":\"Hali\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Teaneck (NJ)\",\"depth_chart_order\":null,\"stats_id\":179407,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tambahali\",\"birth_date\":\"1983-11-03\",\"espn_id\":9606},\"3706\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neill\",\"depth_chart_position\":\"OLB\",\"player_id\":\"3706\",\"birth_city\":null,\"fantasy_data_id\":18512,\"years_exp\":0,\"hashtag\":\"#JasonNeill-NFL-FA-91\",\"search_first_name\":\"jason\",\"rotowire_id\":11633,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jason Neill\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29897,\"last_name\":\"Neill\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jasonneill\",\"birth_date\":\"1992-10-28\",\"espn_id\":2580064},\"4493\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033483\",\"first_name\":\"Damien\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mama\",\"depth_chart_position\":null,\"player_id\":\"4493\",\"birth_city\":null,\"fantasy_data_id\":19363,\"years_exp\":3,\"hashtag\":\"#DamienMama-NFL-FA-69\",\"search_first_name\":\"damien\",\"rotowire_id\":11809,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Damien Mama\",\"sportradar_id\":\"7649ea09-692c-4012-b071-11422d383388\",\"pandascore_id\":null,\"yahoo_id\":30684,\"last_name\":\"Mama\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"334\",\"height\":\"6'3\\\"\",\"search_full_name\":\"damienmama\",\"birth_date\":\"1995-06-27\",\"espn_id\":3120361},\"5685\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034643\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meredith\",\"depth_chart_position\":null,\"player_id\":\"5685\",\"birth_city\":null,\"fantasy_data_id\":20131,\"years_exp\":2,\"hashtag\":\"#ChadMeredith-NFL-FA-59\",\"search_first_name\":\"chad\",\"rotowire_id\":13197,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chad Meredith\",\"sportradar_id\":\"4813aa50-3a36-4658-855a-1bf1098d7a69\",\"pandascore_id\":null,\"yahoo_id\":31638,\"last_name\":\"Meredith\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chadmeredith\",\"birth_date\":\"1994-06-21\",\"espn_id\":3050925},\"5809\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034900\",\"first_name\":\"Ja'quan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1580253960021,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gardner\",\"depth_chart_position\":null,\"player_id\":\"5809\",\"birth_city\":null,\"fantasy_data_id\":20706,\"years_exp\":2,\"hashtag\":\"#JaquanGardner-NFL-FA-38\",\"search_first_name\":\"jaquan\",\"rotowire_id\":13409,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ja'quan Gardner\",\"sportradar_id\":\"7dbed172-8808-4ddb-88f9-7b46414bbfc6\",\"pandascore_id\":null,\"yahoo_id\":31805,\"last_name\":\"Gardner\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1136226,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"169\",\"height\":\"5'6\\\"\",\"search_full_name\":\"jaquangardner\",\"birth_date\":null,\"espn_id\":4328969},\"7360\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brady\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"aiello\",\"depth_chart_position\":null,\"player_id\":\"7360\",\"birth_city\":null,\"fantasy_data_id\":22348,\"years_exp\":0,\"hashtag\":\"#BradyAiello-NFL-CLE-69\",\"search_first_name\":\"brady\",\"rotowire_id\":14901,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Brady Aiello\",\"sportradar_id\":\"f2c0b843-ea1e-43a1-a007-ac01c8940240\",\"pandascore_id\":null,\"yahoo_id\":33019,\"last_name\":\"Aiello\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Acalnes (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'7\\\"\",\"search_full_name\":\"bradyaiello\",\"birth_date\":\"1997-07-17\",\"espn_id\":3915134},\"451\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dahl\",\"depth_chart_position\":null,\"player_id\":\"451\",\"birth_city\":null,\"fantasy_data_id\":9263,\"years_exp\":13,\"hashtag\":\"#CraigDahl-NFL-FA-43\",\"search_first_name\":\"craig\",\"rotowire_id\":7164,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Craig Dahl\",\"sportradar_id\":\"e3dd75f8-7b4c-420d-8f0f-a95b8a90ab66\",\"pandascore_id\":null,\"yahoo_id\":8568,\"last_name\":\"Dahl\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Mankato East (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"craigdahl\",\"birth_date\":\"1985-06-17\",\"espn_id\":10785},\"3196\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1532465401456,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dodd\",\"depth_chart_position\":null,\"player_id\":\"3196\",\"birth_city\":null,\"fantasy_data_id\":17957,\"years_exp\":4,\"hashtag\":\"#KevinDodd-NFL-FA-92\",\"search_first_name\":\"kevin\",\"rotowire_id\":11023,\"rotoworld_id\":11290,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kevin Dodd\",\"sportradar_id\":\"a78bd3c3-cef6-41bd-803b-9593f7c3cd12\",\"pandascore_id\":null,\"yahoo_id\":29267,\"last_name\":\"Dodd\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653097,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kevindodd\",\"birth_date\":\"1992-07-14\",\"espn_id\":2977682},\"2120\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hickman\",\"depth_chart_position\":null,\"player_id\":\"2120\",\"birth_city\":null,\"fantasy_data_id\":16454,\"years_exp\":0,\"hashtag\":\"#GregHickman-NFL-FA-60\",\"search_first_name\":\"greg\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Greg Hickman\",\"sportradar_id\":\"b35aa966-dc28-4430-b177-c64f84f6da22\",\"pandascore_id\":null,\"yahoo_id\":28249,\"last_name\":\"Hickman\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'1\\\"\",\"search_full_name\":\"greghickman\",\"birth_date\":null,\"espn_id\":17426},\"2253\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031186\",\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1536424801746,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"acker\",\"depth_chart_position\":null,\"player_id\":\"2253\",\"birth_city\":null,\"fantasy_data_id\":16660,\"years_exp\":6,\"hashtag\":\"#KennethAcker-NFL-FA-33\",\"search_first_name\":\"kenneth\",\"rotowire_id\":9768,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kenneth Acker\",\"sportradar_id\":\"101b9211-4f92-4024-8978-b4df2eec3c74\",\"pandascore_id\":null,\"yahoo_id\":27708,\"last_name\":\"Acker\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Grant (OR)\",\"depth_chart_order\":null,\"stats_id\":559024,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kennethacker\",\"birth_date\":\"1992-02-06\",\"espn_id\":16914},\"6414\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035372\",\"first_name\":\"Bunchy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stallings\",\"depth_chart_position\":null,\"player_id\":\"6414\",\"birth_city\":null,\"fantasy_data_id\":21154,\"years_exp\":1,\"hashtag\":\"#BunchyStallings-NFL-FA-64\",\"search_first_name\":\"bunchy\",\"rotowire_id\":13680,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Bunchy Stallings\",\"sportradar_id\":\"8ae7ee0a-772f-441e-be2e-45508751d44b\",\"pandascore_id\":null,\"yahoo_id\":32099,\"last_name\":\"Stallings\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bunchystallings\",\"birth_date\":\"1995-09-27\",\"espn_id\":3126330},\"4996\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034369\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1602857445632,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lauletta\",\"depth_chart_position\":\"QB\",\"player_id\":\"4996\",\"birth_city\":null,\"fantasy_data_id\":19913,\"years_exp\":2,\"hashtag\":\"#KyleLauletta-NFL-CLE-16\",\"search_first_name\":\"kyle\",\"rotowire_id\":12818,\"rotoworld_id\":13206,\"active\":true,\"search_rank\":1339,\"age\":25,\"full_name\":\"Kyle Lauletta\",\"sportradar_id\":\"d11ad65e-9d24-4157-9f5b-ef8495bcc791\",\"pandascore_id\":null,\"yahoo_id\":31078,\"last_name\":\"Lauletta\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Downingtown East (PA)\",\"depth_chart_order\":3,\"stats_id\":751855,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylelauletta\",\"birth_date\":\"1995-03-17\",\"espn_id\":3049872},\"6552\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035031\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601508912139,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henry\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6552\",\"birth_city\":null,\"fantasy_data_id\":21355,\"years_exp\":1,\"hashtag\":\"#MalikHenry-NFL-NO-7\",\"search_first_name\":\"malik\",\"rotowire_id\":14070,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Malik Henry\",\"sportradar_id\":\"1a97a708-09bb-4f04-94e0-8aac160de8db\",\"pandascore_id\":null,\"yahoo_id\":32323,\"last_name\":\"Henry\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":\"Tift County (GA)\",\"depth_chart_order\":4,\"stats_id\":871255,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'0\\\"\",\"search_full_name\":\"malikhenry\",\"birth_date\":\"1997-04-16\",\"espn_id\":3917200},\"3178\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032760\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596746741253,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"doctson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3178\",\"birth_city\":null,\"fantasy_data_id\":17939,\"years_exp\":4,\"hashtag\":\"#JoshDoctson-NFL-NYJ-18\",\"search_first_name\":\"josh\",\"rotowire_id\":10852,\"rotoworld_id\":11289,\"active\":true,\"search_rank\":954,\"age\":27,\"full_name\":\"Josh Doctson\",\"sportradar_id\":\"c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6\",\"pandascore_id\":null,\"yahoo_id\":29256,\"last_name\":\"Doctson\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Mansfield Legacy (TX)\",\"depth_chart_order\":3,\"stats_id\":592413,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshdoctson\",\"birth_date\":\"1992-12-03\",\"espn_id\":2576019},\"5947\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034960\",\"first_name\":\"Jakobi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606578032222,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"meyers\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5947\",\"birth_city\":null,\"fantasy_data_id\":20876,\"years_exp\":1,\"hashtag\":\"#JakobiMeyers-NFL-NE-16\",\"search_first_name\":\"jakobi\",\"rotowire_id\":13517,\"rotoworld_id\":14220,\"active\":true,\"search_rank\":285,\"age\":24,\"full_name\":\"Jakobi Meyers\",\"sportradar_id\":\"73e194d1-a4b7-4de4-b1c2-3c24ef502918\",\"pandascore_id\":null,\"yahoo_id\":32231,\"last_name\":\"Meyers\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"North Carolina State\",\"high_school\":\"Arabia Mountain (GA)\",\"depth_chart_order\":1,\"stats_id\":880151,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakobimeyers\",\"birth_date\":\"1996-11-09\",\"espn_id\":3916433},\"1843\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031081\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1512265201485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"RDE\",\"player_id\":\"1843\",\"birth_city\":null,\"fantasy_data_id\":16050,\"years_exp\":6,\"hashtag\":\"#ZachMoore-NFL-FA-56\",\"search_first_name\":\"zach\",\"rotowire_id\":9682,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Zach Moore\",\"sportradar_id\":\"63175907-f9fc-4a3a-a376-d8e3a76d7964\",\"pandascore_id\":null,\"yahoo_id\":27726,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Concordia, St. Paul\",\"high_school\":\"Simeon Academy (IL)\",\"depth_chart_order\":2,\"stats_id\":824041,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"zachmoore\",\"birth_date\":\"1990-09-05\",\"espn_id\":16959},\"6052\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalil\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hodge\",\"depth_chart_position\":null,\"player_id\":\"6052\",\"birth_city\":null,\"fantasy_data_id\":20806,\"years_exp\":0,\"hashtag\":\"#KhalilHodge-NFL-FA-0\",\"search_first_name\":\"khalil\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Khalil Hodge\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hodge\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khalilhodge\",\"birth_date\":null,\"espn_id\":null},\"4891\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bates\",\"depth_chart_position\":null,\"player_id\":\"4891\",\"birth_city\":null,\"fantasy_data_id\":19789,\"years_exp\":0,\"hashtag\":\"#JeremyBates-NFL-FA-0\",\"search_first_name\":\"jeremy\",\"rotowire_id\":null,\"rotoworld_id\":13071,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jeremy Bates\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bates\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jeremybates\",\"birth_date\":null,\"espn_id\":null},\"6138\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035370\",\"first_name\":\"Saivion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601168706750,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6138\",\"birth_city\":null,\"fantasy_data_id\":20947,\"years_exp\":1,\"hashtag\":\"#SaivionSmith-NFL-DAL-32\",\"search_first_name\":\"saivion\",\"rotowire_id\":13589,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Saivion Smith\",\"sportradar_id\":\"5f871c3c-9df8-4869-a967-9df253747a73\",\"pandascore_id\":null,\"yahoo_id\":32097,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"saivionsmith\",\"birth_date\":\"1997-11-05\",\"espn_id\":4035425},\"1206\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pead\",\"depth_chart_position\":null,\"player_id\":\"1206\",\"birth_city\":null,\"fantasy_data_id\":14421,\"years_exp\":8,\"hashtag\":\"#IsaiahPead-NFL-FA-22\",\"search_first_name\":\"isaiah\",\"rotowire_id\":8060,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Isaiah Pead\",\"sportradar_id\":\"37acea2b-df62-4aa6-a064-cf63f20efc12\",\"pandascore_id\":null,\"yahoo_id\":25760,\"last_name\":\"Pead\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Eastmoor Academy (OH)\",\"depth_chart_order\":null,\"stats_id\":448246,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'10\\\"\",\"search_full_name\":\"isaiahpead\",\"birth_date\":\"1989-12-14\",\"espn_id\":14888},\"1021\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcadoo\",\"depth_chart_position\":null,\"player_id\":\"1021\",\"birth_city\":null,\"fantasy_data_id\":13696,\"years_exp\":3,\"hashtag\":\"#MichaelMcAdoo-NFL-FA-66\",\"search_first_name\":\"michael\",\"rotowire_id\":7954,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Michael McAdoo\",\"sportradar_id\":\"f521f50a-4073-4bc4-86e0-bfc6c0282f6b\",\"pandascore_id\":null,\"yahoo_id\":25683,\"last_name\":\"McAdoo\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'7\\\"\",\"search_full_name\":\"michaelmcadoo\",\"birth_date\":\"1990-07-09\",\"espn_id\":14853},\"1263\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bernard\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pierce\",\"depth_chart_position\":null,\"player_id\":\"1263\",\"birth_city\":null,\"fantasy_data_id\":14687,\"years_exp\":8,\"hashtag\":\"#BernardPierce-NFL-FA-30\",\"search_first_name\":\"bernard\",\"rotowire_id\":8035,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bernard Pierce\",\"sportradar_id\":\"c5dfc54e-fd64-468f-81a8-073918776412\",\"pandascore_id\":null,\"yahoo_id\":25794,\"last_name\":\"Pierce\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Glen Mills (PA)\",\"depth_chart_order\":null,\"stats_id\":513119,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bernardpierce\",\"birth_date\":\"1991-05-10\",\"espn_id\":14891},\"5774\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034863\",\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"serigne\",\"depth_chart_position\":null,\"player_id\":\"5774\",\"birth_city\":null,\"fantasy_data_id\":20519,\"years_exp\":2,\"hashtag\":\"#CamSerigne-NFL-FA-86\",\"search_first_name\":\"cam\",\"rotowire_id\":12753,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cam Serigne\",\"sportradar_id\":\"db2b100c-1931-460d-a80a-3d7d3786e80b\",\"pandascore_id\":null,\"yahoo_id\":31770,\"last_name\":\"Serigne\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740272,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"camserigne\",\"birth_date\":\"1994-08-06\",\"espn_id\":3039793},\"4728\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bart\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":null,\"player_id\":\"4728\",\"birth_city\":null,\"fantasy_data_id\":19639,\"years_exp\":2,\"hashtag\":\"#BartHouston-NFL-FA-8\",\"search_first_name\":\"bart\",\"rotowire_id\":12261,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bart Houston\",\"sportradar_id\":\"6b97e391-d564-48b4-beeb-e97917200157\",\"pandascore_id\":null,\"yahoo_id\":30872,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652527,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'3\\\"\",\"search_full_name\":\"barthouston\",\"birth_date\":\"1992-12-16\",\"espn_id\":2977804},\"3304\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032416\",\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604251519315,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":\"LDT\",\"player_id\":\"3304\",\"birth_city\":null,\"fantasy_data_id\":18065,\"years_exp\":4,\"hashtag\":\"#QuintonJefferson-NFL-BUF-90\",\"search_first_name\":\"quinton\",\"rotowire_id\":11069,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1016,\"age\":27,\"full_name\":\"Quinton Jefferson\",\"sportradar_id\":\"c187d2b3-5d96-4035-a166-db6689b463bf\",\"pandascore_id\":null,\"yahoo_id\":29381,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Woodland Hills (PA)\",\"depth_chart_order\":2,\"stats_id\":605443,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'4\\\"\",\"search_full_name\":\"quintonjefferson\",\"birth_date\":\"1993-03-31\",\"espn_id\":2577078},\"4025\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"delrio\",\"depth_chart_position\":null,\"player_id\":\"4025\",\"birth_city\":null,\"fantasy_data_id\":18867,\"years_exp\":0,\"hashtag\":\"#JackDelRio-NFL-FA-0\",\"search_first_name\":\"jack\",\"rotowire_id\":null,\"rotoworld_id\":9378,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jack Del Rio\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Del Rio\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jackdelrio\",\"birth_date\":null,\"espn_id\":null},\"1150\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shea\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1527711901542,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclellin\",\"depth_chart_position\":null,\"player_id\":\"1150\",\"birth_city\":null,\"fantasy_data_id\":14189,\"years_exp\":8,\"hashtag\":\"#SheaMcClellin-NFL-FA-58\",\"search_first_name\":\"shea\",\"rotowire_id\":8147,\"rotoworld_id\":7518,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Shea McClellin\",\"sportradar_id\":\"96981fd3-bd93-4134-84fc-3506197ac7eb\",\"pandascore_id\":null,\"yahoo_id\":25729,\"last_name\":\"McClellin\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Marsing (ID)\",\"depth_chart_order\":null,\"stats_id\":381820,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sheamcclellin\",\"birth_date\":\"1989-08-01\",\"espn_id\":14937},\"2350\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031554\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603144519940,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kendricks\",\"depth_chart_position\":\"MLB\",\"player_id\":\"2350\",\"birth_city\":null,\"fantasy_data_id\":16806,\"years_exp\":5,\"hashtag\":\"#EricKendricks-NFL-MIN-54\",\"search_first_name\":\"eric\",\"rotowire_id\":10353,\"rotoworld_id\":10362,\"active\":true,\"search_rank\":868,\"age\":28,\"full_name\":\"Eric Kendricks\",\"sportradar_id\":\"b345f3db-d5aa-43ba-9f17-914c54864236\",\"pandascore_id\":null,\"yahoo_id\":28433,\"last_name\":\"Kendricks\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Hoover (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"erickendricks\",\"birth_date\":\"1992-02-29\",\"espn_id\":2510863},\"3280\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032404\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606343403031,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ervin\",\"depth_chart_position\":\"RB\",\"player_id\":\"3280\",\"birth_city\":null,\"fantasy_data_id\":18041,\"years_exp\":4,\"hashtag\":\"#TylerErvin-NFL-GB-32\",\"search_first_name\":\"tyler\",\"rotowire_id\":10995,\"rotoworld_id\":11355,\"active\":true,\"search_rank\":376,\"age\":27,\"full_name\":\"Tyler Ervin\",\"sportradar_id\":\"442eb96a-deb6-4e73-b65a-a2bb25ffa968\",\"pandascore_id\":null,\"yahoo_id\":29353,\"last_name\":\"Ervin\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Colton (CA)\",\"depth_chart_order\":3,\"stats_id\":602461,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tylerervin\",\"birth_date\":\"1993-10-07\",\"espn_id\":2573974},\"4778\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"4778\",\"birth_city\":null,\"fantasy_data_id\":19141,\"years_exp\":3,\"hashtag\":\"#ReggieDavis-NFL-CHI-18\",\"search_first_name\":\"reggie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Reggie Davis\",\"sportradar_id\":\"3411b31b-9800-4f5b-a43f-4564c9530627\",\"pandascore_id\":null,\"yahoo_id\":30451,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Lincoln (FL)\",\"depth_chart_order\":null,\"stats_id\":695743,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"6'0\\\"\",\"search_full_name\":\"reggiedavis\",\"birth_date\":\"1995-11-22\",\"espn_id\":2979174},\"3619\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032885\",\"first_name\":\"Ryker\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1547505915625,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathews\",\"depth_chart_position\":\"RT\",\"player_id\":\"3619\",\"birth_city\":null,\"fantasy_data_id\":18406,\"years_exp\":4,\"hashtag\":\"#RykerMathews-NFL-FA-72\",\"search_first_name\":\"ryker\",\"rotowire_id\":11509,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryker Mathews\",\"sportradar_id\":\"f9344384-6d80-416e-aec8-876683583801\",\"pandascore_id\":null,\"yahoo_id\":29858,\"last_name\":\"Mathews\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rykermathews\",\"birth_date\":\"1992-11-28\",\"espn_id\":2575636},\"9\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scifres\",\"depth_chart_position\":null,\"player_id\":\"9\",\"birth_city\":null,\"fantasy_data_id\":383,\"years_exp\":17,\"hashtag\":\"#MikeScifres-NFL-FA-5\",\"search_first_name\":\"mike\",\"rotowire_id\":3210,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Mike Scifres\",\"sportradar_id\":\"10cbd345-4c04-4f4a-96e0-b7f398c751d9\",\"pandascore_id\":null,\"yahoo_id\":6485,\"last_name\":\"Scifres\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":\"Destrehan (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mikescifres\",\"birth_date\":\"1980-10-08\",\"espn_id\":4607},\"1846\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stork\",\"depth_chart_position\":null,\"player_id\":\"1846\",\"birth_city\":null,\"fantasy_data_id\":16053,\"years_exp\":6,\"hashtag\":\"#BryanStork-NFL-FA-66\",\"search_first_name\":\"bryan\",\"rotowire_id\":9432,\"rotoworld_id\":9653,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bryan Stork\",\"sportradar_id\":\"86e6715b-d60c-4e05-898b-777c9f861db1\",\"pandascore_id\":null,\"yahoo_id\":27633,\"last_name\":\"Stork\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Vero Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bryanstork\",\"birth_date\":\"1990-11-15\",\"espn_id\":16826},\"1106\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ballard\",\"depth_chart_position\":null,\"player_id\":\"1106\",\"birth_city\":null,\"fantasy_data_id\":13991,\"years_exp\":8,\"hashtag\":\"#VickBallard-NFL-FA-26\",\"search_first_name\":\"vick\",\"rotowire_id\":8072,\"rotoworld_id\":7615,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Vick Ballard\",\"sportradar_id\":\"3a4f8a1f-8425-4109-9ba3-9899f79f2532\",\"pandascore_id\":null,\"yahoo_id\":25880,\"last_name\":\"Ballard\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Pascagoula (MS)\",\"depth_chart_order\":null,\"stats_id\":543055,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'10\\\"\",\"search_full_name\":\"vickballard\",\"birth_date\":\"1990-07-16\",\"espn_id\":14898},\"702\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027777\",\"first_name\":\"Arthur\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1560220550145,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"moats\",\"depth_chart_position\":null,\"player_id\":\"702\",\"birth_city\":null,\"fantasy_data_id\":12157,\"years_exp\":10,\"hashtag\":\"#ArthurMoats-NFL-FA-93\",\"search_first_name\":\"arthur\",\"rotowire_id\":6753,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Arthur Moats\",\"sportradar_id\":\"e65e1798-fa0c-416c-a88b-c28fc7f6a574\",\"pandascore_id\":null,\"yahoo_id\":24154,\"last_name\":\"Moats\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Churchland (VA)\",\"depth_chart_order\":null,\"stats_id\":327684,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'0\\\"\",\"search_full_name\":\"arthurmoats\",\"birth_date\":\"1988-03-14\",\"espn_id\":13422},\"3575\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032491\",\"first_name\":\"Bryson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1533692141329,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"albright\",\"depth_chart_position\":null,\"player_id\":\"3575\",\"birth_city\":null,\"fantasy_data_id\":18352,\"years_exp\":3,\"hashtag\":\"#BrysonAlbright-NFL-FA-54\",\"search_first_name\":\"bryson\",\"rotowire_id\":11318,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bryson Albright\",\"sportradar_id\":\"1d9fa156-0e17-4de2-8ee4-6756ea760066\",\"pandascore_id\":null,\"yahoo_id\":29546,\"last_name\":\"Albright\",\"metadata\":null,\"college\":\"Miami (OH)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":697223,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brysonalbright\",\"birth_date\":\"1994-03-15\",\"espn_id\":2978064},\"1009\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"walters\",\"depth_chart_position\":null,\"player_id\":\"1009\",\"birth_city\":null,\"fantasy_data_id\":13595,\"years_exp\":10,\"hashtag\":\"#BryanWalters-NFL-FA-81\",\"search_first_name\":\"bryan\",\"rotowire_id\":6858,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Bryan Walters\",\"sportradar_id\":\"ec56adb7-2414-4ca4-823e-c990fd083a77\",\"pandascore_id\":null,\"yahoo_id\":24436,\"last_name\":\"Walters\",\"metadata\":null,\"college\":\"Cornell\",\"high_school\":\"Juanita (WA)\",\"depth_chart_order\":null,\"stats_id\":325993,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bryanwalters\",\"birth_date\":\"1987-11-04\",\"espn_id\":13662},\"5891\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035252\",\"first_name\":\"Yodny\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599779119923,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cajuste\",\"depth_chart_position\":null,\"player_id\":\"5891\",\"birth_city\":null,\"fantasy_data_id\":21004,\"years_exp\":1,\"hashtag\":\"#YodnyCajuste-NFL-NE-77\",\"search_first_name\":\"yodny\",\"rotowire_id\":13763,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Yodny Cajuste\",\"sportradar_id\":\"1be82e0f-4b22-4a82-b3fc-5835aa214f7a\",\"pandascore_id\":null,\"yahoo_id\":31933,\"last_name\":\"Cajuste\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"West Virginia\",\"high_school\":\"Miramar (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"yodnycajuste\",\"birth_date\":\"1996-02-21\",\"espn_id\":3116455},\"7487\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Delontae\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"7487\",\"birth_city\":null,\"fantasy_data_id\":22461,\"years_exp\":0,\"hashtag\":\"#DelontaeScott-NFL-GB-45\",\"search_first_name\":\"delontae\",\"rotowire_id\":15031,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2012,\"age\":23,\"full_name\":\"Delontae Scott\",\"sportradar_id\":\"d13f374b-649e-4762-bcbe-660c6dcc2131\",\"pandascore_id\":null,\"yahoo_id\":33232,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Nimitz (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"delontaescott\",\"birth_date\":\"1997-01-21\",\"espn_id\":3916220},\"1960\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031151\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1547849159614,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1960\",\"birth_city\":null,\"fantasy_data_id\":16214,\"years_exp\":6,\"hashtag\":\"#MarcusWilliams-NFL-FA-31\",\"search_first_name\":\"marcus\",\"rotowire_id\":10001,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Marcus Williams\",\"sportradar_id\":\"02eb6a66-8d0d-42a4-a2c9-10e028908910\",\"pandascore_id\":null,\"yahoo_id\":28204,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Hopkins (MN)\",\"depth_chart_order\":null,\"stats_id\":559857,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marcuswilliams\",\"birth_date\":\"1991-03-24\",\"espn_id\":2508192},\"989\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027963\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600749018355,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carpenter\",\"depth_chart_position\":\"LG\",\"player_id\":\"989\",\"birth_city\":null,\"fantasy_data_id\":13462,\"years_exp\":9,\"hashtag\":\"#JamesCarpenter-NFL-ATL-77\",\"search_first_name\":\"james\",\"rotowire_id\":7550,\"rotoworld_id\":6595,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"James Carpenter\",\"sportradar_id\":\"53b0a001-2efe-4009-8ff1-572b687d4397\",\"pandascore_id\":null,\"yahoo_id\":24812,\"last_name\":\"Carpenter\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Hephzibah (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jamescarpenter\",\"birth_date\":\"1989-03-22\",\"espn_id\":13993},\"4730\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cotton\",\"depth_chart_position\":null,\"player_id\":\"4730\",\"birth_city\":null,\"fantasy_data_id\":19641,\"years_exp\":2,\"hashtag\":\"#SamCotton-NFL-FA-85\",\"search_first_name\":\"sam\",\"rotowire_id\":12263,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sam Cotton\",\"sportradar_id\":\"353060b2-4477-4ed6-b0c5-0da0198669ed\",\"pandascore_id\":null,\"yahoo_id\":30876,\"last_name\":\"Cotton\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651617,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"samcotton\",\"birth_date\":\"1994-01-27\",\"espn_id\":2974307},\"2725\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jean\",\"depth_chart_position\":null,\"player_id\":\"2725\",\"birth_city\":null,\"fantasy_data_id\":17193,\"years_exp\":0,\"hashtag\":\"#JimmyJean-NFL-FA-35\",\"search_first_name\":\"jimmy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jimmy Jean\",\"sportradar_id\":\"096943d8-5430-49ad-9788-7f38415d6a75\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jean\",\"metadata\":null,\"college\":\"UAB\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jimmyjean\",\"birth_date\":\"1989-04-01\",\"espn_id\":3060026},\"5872\":{\"position\":\"WR\",\"injury_notes\":\"Samuel suffered an injury during offseason workouts and will be out 12-16 weeks.\",\"birth_country\":null,\"gsis_id\":\" 00-0035719\",\"first_name\":\"Deebo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606523728029,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"samuel\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5872\",\"birth_city\":null,\"fantasy_data_id\":20932,\"years_exp\":1,\"hashtag\":\"#DeeboSamuel-NFL-SF-19\",\"search_first_name\":\"deebo\",\"rotowire_id\":13429,\"rotoworld_id\":14059,\"active\":true,\"search_rank\":82,\"age\":24,\"full_name\":\"Deebo Samuel\",\"sportradar_id\":\"628a6a0a-4fde-4024-8d7c-28674953d5af\",\"pandascore_id\":null,\"yahoo_id\":31868,\"last_name\":\"Samuel\",\"metadata\":{\"injury_override_regular_2020_8\":\"Out\"},\"college\":\"South Carolina\",\"high_school\":\"Inman Chapman (SC)\",\"depth_chart_order\":1,\"stats_id\":835749,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deebosamuel\",\"birth_date\":\"1996-01-15\",\"espn_id\":3126486},\"2386\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032149\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606065017552,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"RG\",\"player_id\":\"2386\",\"birth_city\":null,\"fantasy_data_id\":16842,\"years_exp\":5,\"hashtag\":\"#JohnMiller-NFL-CAR-67\",\"search_first_name\":\"john\",\"rotowire_id\":10283,\"rotoworld_id\":10486,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"John Miller\",\"sportradar_id\":\"1a7ff6d7-85c8-4ef1-8db7-b629b451e368\",\"pandascore_id\":null,\"yahoo_id\":28469,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Central (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnmiller\",\"birth_date\":\"1993-08-12\",\"espn_id\":2576639},\"4976\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034333\",\"first_name\":\"Daron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603142119574,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"payne\",\"depth_chart_position\":\"LDT\",\"player_id\":\"4976\",\"birth_city\":null,\"fantasy_data_id\":19841,\"years_exp\":2,\"hashtag\":\"#DaronPayne-NFL-WAS-94\",\"search_first_name\":\"daron\",\"rotowire_id\":12618,\"rotoworld_id\":13130,\"active\":true,\"search_rank\":1298,\"age\":23,\"full_name\":\"Daron Payne\",\"sportradar_id\":\"0a1be8da-5839-4768-bfe5-9fec74908268\",\"pandascore_id\":null,\"yahoo_id\":30983,\"last_name\":\"Payne\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Shades Valley (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"daronpayne\",\"birth_date\":\"1997-05-27\",\"espn_id\":3925354},\"2967\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031766\",\"first_name\":\"Kaleb\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1534210861029,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2967\",\"birth_city\":null,\"fantasy_data_id\":17458,\"years_exp\":5,\"hashtag\":\"#KalebJohnson-NFL-FA-66\",\"search_first_name\":\"kaleb\",\"rotowire_id\":10714,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kaleb Johnson\",\"sportradar_id\":\"284a3a87-2d1c-4e14-84a5-07d5c817a69c\",\"pandascore_id\":null,\"yahoo_id\":28951,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Edward H. White (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kalebjohnson\",\"birth_date\":\"1993-02-22\",\"espn_id\":2582406},\"1464\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030584\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605834914792,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fisher\",\"depth_chart_position\":\"LT\",\"player_id\":\"1464\",\"birth_city\":null,\"fantasy_data_id\":15046,\"years_exp\":7,\"hashtag\":\"#EricFisher-NFL-KC-72\",\"search_first_name\":\"eric\",\"rotowire_id\":8727,\"rotoworld_id\":8392,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Eric Fisher\",\"sportradar_id\":\"10bc7a15-0e66-4cdc-bec3-5a60b0b39159\",\"pandascore_id\":null,\"yahoo_id\":26624,\"last_name\":\"Fisher\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Stoney Creek (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"ericfisher\",\"birth_date\":\"1991-01-05\",\"espn_id\":15790},\"364\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mundy\",\"depth_chart_position\":null,\"player_id\":\"364\",\"birth_city\":null,\"fantasy_data_id\":8515,\"years_exp\":7,\"hashtag\":\"#RyanMundy-NFL-FA-21\",\"search_first_name\":\"ryan\",\"rotowire_id\":6201,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ryan Mundy\",\"sportradar_id\":\"ebd852f5-2c94-4db4-aa1d-d13c6beb9ec1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mundy\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryanmundy\",\"birth_date\":\"1985-02-11\",\"espn_id\":11428},\"4294\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033222\",\"first_name\":\"Deante\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1601217038546,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burton\",\"depth_chart_position\":null,\"player_id\":\"4294\",\"birth_city\":null,\"fantasy_data_id\":19140,\"years_exp\":3,\"hashtag\":\"#DeanteBurton-NFL-DAL-33\",\"search_first_name\":\"deante\",\"rotowire_id\":12649,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Deante Burton\",\"sportradar_id\":\"af433e33-5d77-47fd-b6ef-70815e6aa0a1\",\"pandascore_id\":null,\"yahoo_id\":30450,\"last_name\":\"Burton\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Manhattan (KS)\",\"depth_chart_order\":null,\"stats_id\":695723,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deanteburton\",\"birth_date\":\"1994-07-12\",\"espn_id\":2977689},\"4684\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033826\",\"first_name\":\"Jaylen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1553053830310,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"4684\",\"birth_city\":null,\"fantasy_data_id\":19585,\"years_exp\":3,\"hashtag\":\"#JaylenHill-NFL-FA-43\",\"search_first_name\":\"jaylen\",\"rotowire_id\":12347,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jaylen Hill\",\"sportradar_id\":\"57d6fd4d-29e1-46cf-a3b0-601cc5b3d48d\",\"pandascore_id\":null,\"yahoo_id\":30846,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":750318,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaylenhill\",\"birth_date\":\"1994-05-26\",\"espn_id\":3057517},\"3156\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033156\",\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605800711841,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bosa\",\"depth_chart_position\":\"LDE\",\"player_id\":\"3156\",\"birth_city\":null,\"fantasy_data_id\":17915,\"years_exp\":4,\"hashtag\":\"#JoeyBosa-NFL-LAC-97\",\"search_first_name\":\"joey\",\"rotowire_id\":10914,\"rotoworld_id\":11207,\"active\":true,\"search_rank\":945,\"age\":25,\"full_name\":\"Joey Bosa\",\"sportradar_id\":\"1ce88c74-024e-4288-94ee-5dca10362153\",\"pandascore_id\":null,\"yahoo_id\":29237,\"last_name\":\"Bosa\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joeybosa\",\"birth_date\":\"1995-07-11\",\"espn_id\":3051389},\"4037\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033921\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606517727408,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"godwin\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4037\",\"birth_city\":null,\"fantasy_data_id\":18880,\"years_exp\":3,\"hashtag\":\"#ChrisGodwin-NFL-TB-14\",\"search_first_name\":\"chris\",\"rotowire_id\":11718,\"rotoworld_id\":12201,\"active\":true,\"search_rank\":25,\"age\":24,\"full_name\":\"Chris Godwin\",\"sportradar_id\":\"baa61bb5-f8d0-4f90-bbe2-028576b8d33d\",\"pandascore_id\":null,\"yahoo_id\":30197,\"last_name\":\"Godwin\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Middletown (PA)\",\"depth_chart_order\":1,\"stats_id\":835127,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrisgodwin\",\"birth_date\":\"1996-02-27\",\"espn_id\":3116165},\"4815\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"riley\",\"depth_chart_position\":null,\"player_id\":\"4815\",\"birth_city\":null,\"fantasy_data_id\":19725,\"years_exp\":2,\"hashtag\":\"#BrianRiley-NFL-FA-14\",\"search_first_name\":\"brian\",\"rotowire_id\":12365,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brian Riley\",\"sportradar_id\":\"bf377aee-7107-4655-be8e-73807d0331f6\",\"pandascore_id\":null,\"yahoo_id\":30932,\"last_name\":\"Riley\",\"metadata\":null,\"college\":\"San Diego\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":752801,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brianriley\",\"birth_date\":\"1995-08-22\",\"espn_id\":3061572},\"5599\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034448\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1562422508304,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hilland\",\"depth_chart_position\":null,\"player_id\":\"5599\",\"birth_city\":null,\"fantasy_data_id\":20208,\"years_exp\":2,\"hashtag\":\"#ConnorHilland-NFL-FA-61\",\"search_first_name\":\"connor\",\"rotowire_id\":12677,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Connor Hilland\",\"sportradar_id\":\"0220c312-f4d4-4646-9bbc-1d9f8c3020da\",\"pandascore_id\":null,\"yahoo_id\":31536,\"last_name\":\"Hilland\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'4\\\"\",\"search_full_name\":\"connorhilland\",\"birth_date\":\"1995-06-18\",\"espn_id\":3052023},\"522\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027667\",\"first_name\":\"Vladimir\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565532921538,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ducasse\",\"depth_chart_position\":null,\"player_id\":\"522\",\"birth_city\":null,\"fantasy_data_id\":10994,\"years_exp\":10,\"hashtag\":\"#VladimirDucasse-NFL-FA-62\",\"search_first_name\":\"vladimir\",\"rotowire_id\":6543,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Vladimir Ducasse\",\"sportradar_id\":\"6edf1c3e-bf89-4148-b827-cc4e50888c18\",\"pandascore_id\":null,\"yahoo_id\":24036,\"last_name\":\"Ducasse\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":\"Stamford (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'5\\\"\",\"search_full_name\":\"vladimirducasse\",\"birth_date\":\"1987-10-15\",\"espn_id\":13273},\"6664\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035583\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1564432515445,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ouellette\",\"depth_chart_position\":\"RB\",\"player_id\":\"6664\",\"birth_city\":null,\"fantasy_data_id\":21571,\"years_exp\":1,\"hashtag\":\"#AJOuellette-NFL-FA-1\",\"search_first_name\":\"aj\",\"rotowire_id\":14299,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"A.J. Ouellette\",\"sportradar_id\":\"35d4b581-a090-4e15-be33-140485a8fb1d\",\"pandascore_id\":null,\"yahoo_id\":32597,\"last_name\":\"Ouellette\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":837554,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ajouellette\",\"birth_date\":\"1995-07-20\",\"espn_id\":3126072},\"1145\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029676\",\"first_name\":\"Morris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1582302934414,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"claiborne\",\"depth_chart_position\":null,\"player_id\":\"1145\",\"birth_city\":null,\"fantasy_data_id\":14144,\"years_exp\":8,\"hashtag\":\"#MorrisClaiborne-NFL-FA-20\",\"search_first_name\":\"morris\",\"rotowire_id\":8162,\"rotoworld_id\":7461,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Morris Claiborne\",\"sportradar_id\":\"e0d47951-fea7-4f2a-a936-f4d758ea6b83\",\"pandascore_id\":null,\"yahoo_id\":25716,\"last_name\":\"Claiborne\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Fair Park (LA)\",\"depth_chart_order\":null,\"stats_id\":498964,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"morrisclaiborne\",\"birth_date\":\"1990-02-07\",\"espn_id\":14943},\"2804\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1553198125824,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"turzilli\",\"depth_chart_position\":null,\"player_id\":\"2804\",\"birth_city\":null,\"fantasy_data_id\":17272,\"years_exp\":5,\"hashtag\":\"#AndrewTurzilli-NFL-FA-2\",\"search_first_name\":\"andrew\",\"rotowire_id\":10549,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Andrew Turzilli\",\"sportradar_id\":\"c54708ed-4ddc-4e29-a38f-29ee3f0f30f4\",\"pandascore_id\":null,\"yahoo_id\":29066,\"last_name\":\"Turzilli\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Butler\",\"depth_chart_order\":null,\"stats_id\":555787,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewturzilli\",\"birth_date\":\"1991-10-13\",\"espn_id\":2513916},\"2390\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032214\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605813012516,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kroft\",\"depth_chart_position\":\"TE\",\"player_id\":\"2390\",\"birth_city\":null,\"fantasy_data_id\":16846,\"years_exp\":5,\"hashtag\":\"#TylerKroft-NFL-BUF-81\",\"search_first_name\":\"tyler\",\"rotowire_id\":10247,\"rotoworld_id\":10490,\"active\":true,\"search_rank\":880,\"age\":28,\"full_name\":\"Tyler Kroft\",\"sportradar_id\":\"36f54823-9d51-4180-9c91-d10281deb4bf\",\"pandascore_id\":null,\"yahoo_id\":28473,\"last_name\":\"Kroft\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Downingtown East (PA)\",\"depth_chart_order\":2,\"stats_id\":592268,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tylerkroft\",\"birth_date\":\"1992-10-15\",\"espn_id\":2582410},\"7458\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604363430518,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zuber\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7458\",\"birth_city\":null,\"fantasy_data_id\":21749,\"years_exp\":0,\"hashtag\":\"#IsaiahZuber-NFL-NE-19\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14862,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Isaiah Zuber\",\"sportradar_id\":\"e83c7957-58c7-48eb-aaf2-47e410607957\",\"pandascore_id\":null,\"yahoo_id\":33020,\"last_name\":\"Zuber\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Mississippi State\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"isaiahzuber\",\"birth_date\":\"1997-04-15\",\"espn_id\":3916129},\"6518\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035082\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1599192655081,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":null,\"player_id\":\"6518\",\"birth_city\":null,\"fantasy_data_id\":21415,\"years_exp\":1,\"hashtag\":\"#GregRoberts-NFL-CAR-57\",\"search_first_name\":\"greg\",\"rotowire_id\":13956,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1729,\"age\":24,\"full_name\":\"Greg Roberts\",\"sportradar_id\":\"6dffc17c-86ca-4ffb-8ef2-12b4f832ce3e\",\"pandascore_id\":null,\"yahoo_id\":32278,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Nacogdoches (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'5\\\"\",\"search_full_name\":\"gregroberts\",\"birth_date\":\"1996-03-21\",\"espn_id\":3139108},\"2359\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032104\",\"first_name\":\"Ameer\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605047461000,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"abdullah\",\"depth_chart_position\":\"RB\",\"player_id\":\"2359\",\"birth_city\":null,\"fantasy_data_id\":16815,\"years_exp\":5,\"hashtag\":\"#AmeerAbdullah-NFL-MIN-31\",\"search_first_name\":\"ameer\",\"rotowire_id\":10126,\"rotoworld_id\":10338,\"active\":true,\"search_rank\":344,\"age\":27,\"full_name\":\"Ameer Abdullah\",\"sportradar_id\":\"c5e430c5-7a8e-4e29-b30f-1a527f05cb89\",\"pandascore_id\":null,\"yahoo_id\":28442,\"last_name\":\"Abdullah\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Homewood (AL)\",\"depth_chart_order\":4,\"stats_id\":590796,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ameerabdullah\",\"birth_date\":\"1993-06-13\",\"espn_id\":2576336},\"6725\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035729\",\"first_name\":\"Rishard\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cook\",\"depth_chart_position\":null,\"player_id\":\"6725\",\"birth_city\":null,\"fantasy_data_id\":21648,\"years_exp\":1,\"hashtag\":\"#RishardCook-NFL-FA-68\",\"search_first_name\":\"rishard\",\"rotowire_id\":14337,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rishard Cook\",\"sportradar_id\":\"53a783a3-183d-478a-a752-cb28054d208e\",\"pandascore_id\":null,\"yahoo_id\":32637,\"last_name\":\"Cook\",\"metadata\":null,\"college\":\"UAB\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rishardcook\",\"birth_date\":\"1997-06-25\",\"espn_id\":4239773},\"2738\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ikponmwosa\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"igbinosun\",\"depth_chart_position\":null,\"player_id\":\"2738\",\"birth_city\":null,\"fantasy_data_id\":17206,\"years_exp\":1,\"hashtag\":\"#IkponmwosaIgbinosun-NFL-FA-79\",\"search_first_name\":\"ikponmwosa\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ikponmwosa Igbinosun\",\"sportradar_id\":\"b3b6c702-b004-46fa-8c20-0ac90c66ed08\",\"pandascore_id\":null,\"yahoo_id\":26223,\"last_name\":\"Igbinosun\",\"metadata\":null,\"college\":\"Southern Connecticut State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ikponmwosaigbinosun\",\"birth_date\":\"1990-09-10\",\"espn_id\":15740},\"1695\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"1695\",\"birth_city\":null,\"fantasy_data_id\":15560,\"years_exp\":7,\"hashtag\":\"#WillDavis-NFL-FA-4\",\"search_first_name\":\"will\",\"rotowire_id\":8642,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Will Davis\",\"sportradar_id\":\"470ede20-c190-40e5-b66d-5b917ad8d5f3\",\"pandascore_id\":null,\"yahoo_id\":26716,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Central Valley (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"willdavis\",\"birth_date\":\"1990-05-08\",\"espn_id\":15833},\"1418\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030521\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566590435427,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hunter\",\"depth_chart_position\":null,\"player_id\":\"1418\",\"birth_city\":null,\"fantasy_data_id\":14978,\"years_exp\":7,\"hashtag\":\"#JustinHunter-NFL-FA-11\",\"search_first_name\":\"justin\",\"rotowire_id\":8618,\"rotoworld_id\":8415,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Justin Hunter\",\"sportradar_id\":\"f636d7ce-05f9-43d7-b63f-351acb5c2a70\",\"pandascore_id\":null,\"yahoo_id\":26657,\"last_name\":\"Hunter\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Ocean Lakes (VA)\",\"depth_chart_order\":null,\"stats_id\":542833,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'4\\\"\",\"search_full_name\":\"justinhunter\",\"birth_date\":\"1991-05-20\",\"espn_id\":15845},\"6124\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035647\",\"first_name\":\"Montez\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606492204131,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sweat\",\"depth_chart_position\":\"RDE\",\"player_id\":\"6124\",\"birth_city\":null,\"fantasy_data_id\":20956,\"years_exp\":1,\"hashtag\":\"#MontezSweat-NFL-WAS-90\",\"search_first_name\":\"montez\",\"rotowire_id\":13745,\"rotoworld_id\":14015,\"active\":true,\"search_rank\":1603,\"age\":24,\"full_name\":\"Montez Sweat\",\"sportradar_id\":\"e3601423-c3ac-4013-bbe9-3478e2b7e1dd\",\"pandascore_id\":null,\"yahoo_id\":31858,\"last_name\":\"Sweat\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'6\\\"\",\"search_full_name\":\"montezsweat\",\"birth_date\":\"1996-09-04\",\"espn_id\":3134690},\"103\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026184\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1519848901545,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"forte\",\"depth_chart_position\":null,\"player_id\":\"103\",\"birth_city\":null,\"fantasy_data_id\":2699,\"years_exp\":12,\"hashtag\":\"#MattForte-NFL-FA-22\",\"search_first_name\":\"matt\",\"rotowire_id\":5662,\"rotoworld_id\":4685,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Matt Forte\",\"sportradar_id\":\"a4970b66-6eea-4d9a-9f96-15b528161b57\",\"pandascore_id\":null,\"yahoo_id\":8821,\"last_name\":\"Forte\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Slidell (LA)\",\"depth_chart_order\":null,\"stats_id\":267474,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mattforte\",\"birth_date\":\"1985-12-10\",\"espn_id\":11278},\"2179\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spruill\",\"depth_chart_position\":null,\"player_id\":\"2179\",\"birth_city\":null,\"fantasy_data_id\":16543,\"years_exp\":1,\"hashtag\":\"#MarquisSpruill-NFL-FA-51\",\"search_first_name\":\"marquis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marquis Spruill\",\"sportradar_id\":\"e587e1ad-ffde-46b9-8435-f9b0f2b2d388\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Spruill\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marquisspruill\",\"birth_date\":\"1991-05-14\",\"espn_id\":16905},\"4062\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033218\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1587935755384,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"irwinhill\",\"depth_chart_position\":null,\"player_id\":\"4062\",\"birth_city\":null,\"fantasy_data_id\":18908,\"years_exp\":3,\"hashtag\":\"#SamIrwinHill-NFL-FA-0\",\"search_first_name\":\"sam\",\"rotowire_id\":12197,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sam Irwin-Hill\",\"sportradar_id\":\"a87c5fa3-3e73-4c15-bce7-9c2c7152f58e\",\"pandascore_id\":null,\"yahoo_id\":30113,\"last_name\":\"Irwin-Hill\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"samirwinhill\",\"birth_date\":\"1990-10-10\",\"espn_id\":3046441},\"4585\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nash\",\"depth_chart_position\":null,\"player_id\":\"4585\",\"birth_city\":null,\"fantasy_data_id\":19472,\"years_exp\":2,\"hashtag\":\"#AnthonyNash-NFL-FA-3\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Nash\",\"sportradar_id\":\"7b5f779b-0a07-4734-9113-ba7101496cff\",\"pandascore_id\":null,\"yahoo_id\":30819,\"last_name\":\"Nash\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691498,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'3\\\"\",\"search_full_name\":\"anthonynash\",\"birth_date\":\"1993-09-20\",\"espn_id\":2969894},\"1930\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031059\",\"first_name\":\"Marqueston\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1553957742224,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"huff\",\"depth_chart_position\":null,\"player_id\":\"1930\",\"birth_city\":null,\"fantasy_data_id\":16168,\"years_exp\":6,\"hashtag\":\"#MarquestonHuff-NFL-FA-20\",\"search_first_name\":\"marqueston\",\"rotowire_id\":9300,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marqueston Huff\",\"sportradar_id\":\"ebb13f2b-f29b-4f05-b88a-a522d1935fa3\",\"pandascore_id\":null,\"yahoo_id\":27650,\"last_name\":\"Huff\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Liberty-Eylau (TX)\",\"depth_chart_order\":null,\"stats_id\":592415,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marquestonhuff\",\"birth_date\":\"1992-04-06\",\"espn_id\":16904},\"7013\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599431160654,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"montez\",\"depth_chart_position\":\"QB\",\"player_id\":\"7013\",\"birth_city\":null,\"fantasy_data_id\":21809,\"years_exp\":0,\"hashtag\":\"#StevenMontez-NFL-WAS-6\",\"search_first_name\":\"steven\",\"rotowire_id\":14393,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1785,\"age\":23,\"full_name\":\"Steven Montez\",\"sportradar_id\":\"d446443f-130c-4bce-a300-a15cf66f27f1\",\"pandascore_id\":null,\"yahoo_id\":33207,\"last_name\":\"Montez\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Del Valle (TX)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stevenmontez\",\"birth_date\":\"1997-01-14\",\"espn_id\":3915436},\"1212\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029687\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567787122100,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kalil\",\"depth_chart_position\":null,\"player_id\":\"1212\",\"birth_city\":null,\"fantasy_data_id\":14451,\"years_exp\":8,\"hashtag\":\"#MattKalil-NFL-FA-75\",\"search_first_name\":\"matt\",\"rotowire_id\":8013,\"rotoworld_id\":7410,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Matt Kalil\",\"sportradar_id\":\"d9168af9-6bf7-47de-ba56-19d6a3a4548b\",\"pandascore_id\":null,\"yahoo_id\":25714,\"last_name\":\"Kalil\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Servite (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattkalil\",\"birth_date\":\"1989-07-06\",\"espn_id\":14928},\"2130\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031360\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606074619064,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vannoy\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2130\",\"birth_city\":null,\"fantasy_data_id\":16467,\"years_exp\":6,\"hashtag\":\"#KyleVanNoy-NFL-MIA-53\",\"search_first_name\":\"kyle\",\"rotowire_id\":9262,\"rotoworld_id\":9568,\"active\":true,\"search_rank\":826,\"age\":29,\"full_name\":\"Kyle Van Noy\",\"sportradar_id\":\"0ad845ff-44e8-4576-bc91-61b557e06f05\",\"pandascore_id\":null,\"yahoo_id\":27568,\"last_name\":\"Van Noy\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Robert McQueen (NV)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kylevannoy\",\"birth_date\":\"1991-03-26\",\"espn_id\":16772},\"204\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"204\",\"birth_city\":null,\"fantasy_data_id\":5135,\"years_exp\":13,\"hashtag\":\"#RyanHarris-NFL-FA-68\",\"search_first_name\":\"ryan\",\"rotowire_id\":5390,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Ryan Harris\",\"sportradar_id\":\"9a8a3b4d-3e5c-4a65-a96e-cb9f0221b0e3\",\"pandascore_id\":null,\"yahoo_id\":8324,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Cretin-Derham Hall (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryanharris\",\"birth_date\":\"1985-03-11\",\"espn_id\":10514},\"129\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kroy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"biermann\",\"depth_chart_position\":null,\"player_id\":\"129\",\"birth_city\":null,\"fantasy_data_id\":3533,\"years_exp\":12,\"hashtag\":\"#KroyBiermann-NFL-FA-43\",\"search_first_name\":\"kroy\",\"rotowire_id\":5858,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Kroy Biermann\",\"sportradar_id\":\"2d48318b-7c0b-4a68-a576-2b15496e763c\",\"pandascore_id\":null,\"yahoo_id\":8931,\"last_name\":\"Biermann\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Hardin (MT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kroybiermann\",\"birth_date\":\"1985-09-12\",\"espn_id\":11388},\"4840\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033425\",\"first_name\":\"Reese\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1545581138914,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleming\",\"depth_chart_position\":null,\"player_id\":\"4840\",\"birth_city\":null,\"fantasy_data_id\":19743,\"years_exp\":3,\"hashtag\":\"#ReeseFleming-NFL-FA-30\",\"search_first_name\":\"reese\",\"rotowire_id\":12380,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Reese Fleming\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fleming\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"reesefleming\",\"birth_date\":\"1993-12-06\",\"espn_id\":null},\"898\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"arkin\",\"depth_chart_position\":null,\"player_id\":\"898\",\"birth_city\":null,\"fantasy_data_id\":13108,\"years_exp\":3,\"hashtag\":\"#DavidArkin-NFL-FA-66\",\"search_first_name\":\"david\",\"rotowire_id\":7593,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"David Arkin\",\"sportradar_id\":\"e14a4c78-9a55-4d84-ab7c-d9c7121a6ae1\",\"pandascore_id\":null,\"yahoo_id\":24897,\"last_name\":\"Arkin\",\"metadata\":null,\"college\":\"Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidarkin\",\"birth_date\":\"1987-10-07\",\"espn_id\":14119},\"3555\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Canaan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1525711201736,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"severin\",\"depth_chart_position\":null,\"player_id\":\"3555\",\"birth_city\":null,\"fantasy_data_id\":18328,\"years_exp\":3,\"hashtag\":\"#CanaanSeverin-NFL-FA-8\",\"search_first_name\":\"canaan\",\"rotowire_id\":11545,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Canaan Severin\",\"sportradar_id\":\"d2e64cfd-b4fc-4c35-993a-2ee319c2b98f\",\"pandascore_id\":null,\"yahoo_id\":29496,\"last_name\":\"Severin\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694010,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"canaanseverin\",\"birth_date\":\"1993-03-16\",\"espn_id\":2979681},\"6352\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"colburn\",\"depth_chart_position\":null,\"player_id\":\"6352\",\"birth_city\":null,\"fantasy_data_id\":21329,\"years_exp\":0,\"hashtag\":\"#MattColburn-NFL-LAR-37\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Matt Colburn\",\"sportradar_id\":\"802d7f08-9fbf-41bc-aa67-2bc6c8a09963\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Colburn\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mattcolburn\",\"birth_date\":\"1997-07-27\",\"espn_id\":3919544},\"3059\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"3059\",\"birth_city\":null,\"fantasy_data_id\":17790,\"years_exp\":0,\"hashtag\":\"#DanCampbell-NFL-FA-0\",\"search_first_name\":\"dan\",\"rotowire_id\":null,\"rotoworld_id\":2700,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dan Campbell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dancampbell\",\"birth_date\":null,\"espn_id\":null},\"162\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sendlein\",\"depth_chart_position\":null,\"player_id\":\"162\",\"birth_city\":null,\"fantasy_data_id\":4182,\"years_exp\":13,\"hashtag\":\"#LyleSendlein-NFL-FA-63\",\"search_first_name\":\"lyle\",\"rotowire_id\":5533,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Lyle Sendlein\",\"sportradar_id\":\"81e6e16c-ef1b-4898-b75a-7bb25741234f\",\"pandascore_id\":null,\"yahoo_id\":8550,\"last_name\":\"Sendlein\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Chaparral (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lylesendlein\",\"birth_date\":\"1984-03-16\",\"espn_id\":11075},\"4138\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033930\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577974838280,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sutton\",\"depth_chart_position\":\"NB\",\"player_id\":\"4138\",\"birth_city\":null,\"fantasy_data_id\":18984,\"years_exp\":3,\"hashtag\":\"#CameronSutton-NFL-PIT-20\",\"search_first_name\":\"cameron\",\"rotowire_id\":12031,\"rotoworld_id\":12290,\"active\":true,\"search_rank\":1167,\"age\":25,\"full_name\":\"Cameron Sutton\",\"sportradar_id\":\"d8fc7bb7-333c-4caf-9512-893c334f56ef\",\"pandascore_id\":null,\"yahoo_id\":30207,\"last_name\":\"Sutton\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Tennessee\",\"high_school\":\"Jonesboro (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cameronsutton\",\"birth_date\":\"1995-02-27\",\"espn_id\":3044724},\"7253\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ron'Dell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605054961963,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":\"RDE\",\"player_id\":\"7253\",\"birth_city\":null,\"fantasy_data_id\":22253,\"years_exp\":0,\"hashtag\":\"#RonDellCarter-NFL-DAL-97\",\"search_first_name\":\"rondell\",\"rotowire_id\":14920,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ron'Dell Carter\",\"sportradar_id\":\"2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b\",\"pandascore_id\":null,\"yahoo_id\":33103,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Long Reach (MD)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rondellcarter\",\"birth_date\":\"1997-07-03\",\"espn_id\":3930024},\"4961\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"4961\",\"birth_city\":null,\"fantasy_data_id\":8984,\"years_exp\":11,\"hashtag\":\"#DJMoore-NFL-FA-30\",\"search_first_name\":\"dj\",\"rotowire_id\":null,\"rotoworld_id\":13114,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"DJ Moore\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"djmoore\",\"birth_date\":\"1987-03-22\",\"espn_id\":null},\"2795\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dakorey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2795\",\"birth_city\":null,\"fantasy_data_id\":17263,\"years_exp\":0,\"hashtag\":\"#DakoreyJohnson-NFL-FA-43\",\"search_first_name\":\"dakorey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dakorey Johnson\",\"sportradar_id\":\"e4abd44d-a47b-4f9f-8748-50345b83fad4\",\"pandascore_id\":null,\"yahoo_id\":29186,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dakoreyjohnson\",\"birth_date\":\"1992-01-14\",\"espn_id\":3052407},\"7164\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jackson\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dennis\",\"depth_chart_position\":null,\"player_id\":\"7164\",\"birth_city\":null,\"fantasy_data_id\":22165,\"years_exp\":0,\"hashtag\":\"#JacksonDennis-NFL-FA-0\",\"search_first_name\":\"jackson\",\"rotowire_id\":15099,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jackson Dennis\",\"sportradar_id\":\"bf1b2d30-a06c-4d29-8119-cce826360ed7\",\"pandascore_id\":null,\"yahoo_id\":33075,\"last_name\":\"Dennis\",\"metadata\":null,\"college\":\"Holy Cross\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jacksondennis\",\"birth_date\":\"1997-02-11\",\"espn_id\":null},\"6122\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035629\",\"first_name\":\"Jonah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605472212378,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LT\",\"player_id\":\"6122\",\"birth_city\":null,\"fantasy_data_id\":20987,\"years_exp\":1,\"hashtag\":\"#JonahWilliams-NFL-CIN-73\",\"search_first_name\":\"jonah\",\"rotowire_id\":13585,\"rotoworld_id\":14069,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jonah Williams\",\"sportradar_id\":\"165b77bc-9a63-4b1b-9111-70994af6c864\",\"pandascore_id\":null,\"yahoo_id\":31843,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Folsom (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonahwilliams\",\"birth_date\":\"1997-11-17\",\"espn_id\":4040726},\"3987\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cable\",\"depth_chart_position\":null,\"player_id\":\"3987\",\"birth_city\":null,\"fantasy_data_id\":18822,\"years_exp\":0,\"hashtag\":\"#TomCable-NFL-FA-0\",\"search_first_name\":\"tom\",\"rotowire_id\":null,\"rotoworld_id\":9287,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tom Cable\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cable\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tomcable\",\"birth_date\":null,\"espn_id\":null},\"5274\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034221\",\"first_name\":\"Roc\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1577762727046,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"RB\",\"player_id\":\"5274\",\"birth_city\":null,\"fantasy_data_id\":20327,\"years_exp\":2,\"hashtag\":\"#RocThomas-NFL-FA-35\",\"search_first_name\":\"roc\",\"rotowire_id\":12943,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Roc Thomas\",\"sportradar_id\":\"7fbf8067-075e-4db7-8090-6ead0e5b8910\",\"pandascore_id\":null,\"yahoo_id\":31241,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":835151,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rocthomas\",\"birth_date\":\"1995-09-02\",\"espn_id\":3121583},\"1995\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031309\",\"first_name\":\"Telvin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1563996333283,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1995\",\"birth_city\":null,\"fantasy_data_id\":16266,\"years_exp\":6,\"hashtag\":\"#TelvinSmith-NFL-FA-50\",\"search_first_name\":\"telvin\",\"rotowire_id\":9371,\"rotoworld_id\":9394,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Telvin Smith\",\"sportradar_id\":\"dfbbe1cc-1fce-4599-92ae-922a8b79fb83\",\"pandascore_id\":null,\"yahoo_id\":27672,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Lowndes County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"telvinsmith\",\"birth_date\":\"1991-04-11\",\"espn_id\":16891},\"6347\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035198\",\"first_name\":\"Tre'\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596079512588,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"6347\",\"birth_city\":null,\"fantasy_data_id\":21305,\"years_exp\":1,\"hashtag\":\"#TreCrawford-NFL-FA-0\",\"search_first_name\":\"tre\",\"rotowire_id\":13899,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tre' Crawford\",\"sportradar_id\":\"04a63d1d-683e-46ed-a929-458923150f5e\",\"pandascore_id\":null,\"yahoo_id\":32113,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1070095,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trecrawford\",\"birth_date\":\"1996-09-06\",\"espn_id\":4262186},\"7242\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596074712078,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swann\",\"depth_chart_position\":null,\"player_id\":\"7242\",\"birth_city\":null,\"fantasy_data_id\":22243,\"years_exp\":0,\"hashtag\":\"#IsiahSwann-NFL-FA-0\",\"search_first_name\":\"isiah\",\"rotowire_id\":14992,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Isiah Swann\",\"sportradar_id\":\"112bec8d-3954-47aa-aac3-f344607996c8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Swann\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"isiahswann\",\"birth_date\":\"1998-12-31\",\"espn_id\":null},\"4104\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033284\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1575219611888,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moton\",\"depth_chart_position\":\"RT\",\"player_id\":\"4104\",\"birth_city\":null,\"fantasy_data_id\":18950,\"years_exp\":3,\"hashtag\":\"#TaylorMoton-NFL-CAR-72\",\"search_first_name\":\"taylor\",\"rotowire_id\":11812,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Taylor Moton\",\"sportradar_id\":\"cbe71aae-2475-487f-a78d-c1d7f021c097\",\"pandascore_id\":null,\"yahoo_id\":30177,\"last_name\":\"Moton\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Okemos (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'5\\\"\",\"search_full_name\":\"taylormoton\",\"birth_date\":\"1994-08-18\",\"espn_id\":2973051},\"1451\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029854\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1600451741317,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"1451\",\"birth_city\":null,\"fantasy_data_id\":15020,\"years_exp\":7,\"hashtag\":\"#CJAnderson-NFL-FA-26\",\"search_first_name\":\"cj\",\"rotowire_id\":8931,\"rotoworld_id\":8694,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"C.J. Anderson\",\"sportradar_id\":\"f7841baa-9284-4c03-b698-442570651c6c\",\"pandascore_id\":null,\"yahoo_id\":26878,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Bethel (VA)\",\"depth_chart_order\":null,\"stats_id\":607659,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'8\\\"\",\"search_full_name\":\"cjanderson\",\"birth_date\":\"1991-02-10\",\"espn_id\":16040},\"3111\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dimitroff\",\"depth_chart_position\":null,\"player_id\":\"3111\",\"birth_city\":null,\"fantasy_data_id\":17864,\"years_exp\":0,\"hashtag\":\"#ThomasDimitroff-NFL-FA-0\",\"search_first_name\":\"thomas\",\"rotowire_id\":null,\"rotoworld_id\":9514,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Thomas Dimitroff\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dimitroff\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"thomasdimitroff\",\"birth_date\":null,\"espn_id\":null},\"3641\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cleveland\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"3641\",\"birth_city\":null,\"fantasy_data_id\":18431,\"years_exp\":0,\"hashtag\":\"#ClevelandWallace-NFL-FA-38\",\"search_first_name\":\"cleveland\",\"rotowire_id\":10890,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cleveland Wallace\",\"sportradar_id\":\"fff394f0-cb27-488a-b087-7ad78e385df1\",\"pandascore_id\":null,\"yahoo_id\":900042,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'11\\\"\",\"search_full_name\":\"clevelandwallace\",\"birth_date\":\"1994-01-24\",\"espn_id\":2978316},\"4507\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033490\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603750538945,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"braden\",\"depth_chart_position\":null,\"player_id\":\"4507\",\"birth_city\":null,\"fantasy_data_id\":19379,\"years_exp\":3,\"hashtag\":\"#BenBraden-NFL-GB-64\",\"search_first_name\":\"ben\",\"rotowire_id\":11780,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ben Braden\",\"sportradar_id\":\"f4a43515-f437-499a-8c57-086eb579c5af\",\"pandascore_id\":null,\"yahoo_id\":30676,\"last_name\":\"Braden\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Rockford (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'6\\\"\",\"search_full_name\":\"benbraden\",\"birth_date\":\"1994-03-09\",\"espn_id\":2977626},\"1438\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Montori\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1525132201445,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"1438\",\"birth_city\":null,\"fantasy_data_id\":15007,\"years_exp\":7,\"hashtag\":\"#MontoriHughes-NFL-FA-74\",\"search_first_name\":\"montori\",\"rotowire_id\":8866,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Montori Hughes\",\"sportradar_id\":\"7a79a648-4de0-4107-973a-9e7ccc7a3cf3\",\"pandascore_id\":null,\"yahoo_id\":26762,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Tennessee-Martin\",\"high_school\":\"Siegel (TN)\",\"depth_chart_order\":null,\"stats_id\":465861,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'4\\\"\",\"search_full_name\":\"montorihughes\",\"birth_date\":\"1990-08-25\",\"espn_id\":15995},\"601\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quarless\",\"depth_chart_position\":null,\"player_id\":\"601\",\"birth_city\":null,\"fantasy_data_id\":11400,\"years_exp\":10,\"hashtag\":\"#AndrewQuarless-NFL-FA-49\",\"search_first_name\":\"andrew\",\"rotowire_id\":6690,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Andrew Quarless\",\"sportradar_id\":\"8eafc2b1-3e22-4416-b690-9a1232669f62\",\"pandascore_id\":null,\"yahoo_id\":24130,\"last_name\":\"Quarless\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Uniondale (NY)\",\"depth_chart_order\":null,\"stats_id\":337967,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewquarless\",\"birth_date\":\"1988-10-06\",\"espn_id\":13440},\"5514\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perroni\",\"depth_chart_position\":null,\"player_id\":\"5514\",\"birth_city\":null,\"fantasy_data_id\":20565,\"years_exp\":1,\"hashtag\":\"#EvanPerroni-NFL-TB-0\",\"search_first_name\":\"evan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Evan Perroni\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31274,\"last_name\":\"Perroni\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"evanperroni\",\"birth_date\":null,\"espn_id\":null},\"3867\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033024\",\"first_name\":\"Branden\",\"practice_description\":null,\"fantasy_positions\":[\"LEO\",\"LB\",\"DL\"],\"news_updated\":1598827860262,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"3867\",\"birth_city\":null,\"fantasy_data_id\":18689,\"years_exp\":4,\"hashtag\":\"#BrandenJackson-NFL-SEA-93\",\"search_first_name\":\"branden\",\"rotowire_id\":11065,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Branden Jackson\",\"sportradar_id\":\"21199f7c-91bc-4295-a6c8-bc0cfd017616\",\"pandascore_id\":null,\"yahoo_id\":29999,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"McKeesport (PA)\",\"depth_chart_order\":null,\"stats_id\":605326,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandenjackson\",\"birth_date\":\"1992-11-11\",\"espn_id\":2577642},\"7079\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pete\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604801110825,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"guerriero\",\"depth_chart_position\":null,\"player_id\":\"7079\",\"birth_city\":null,\"fantasy_data_id\":22121,\"years_exp\":0,\"hashtag\":\"#PeteGuerriero-NFL-CAR-0\",\"search_first_name\":\"pete\",\"rotowire_id\":14782,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Pete Guerriero\",\"sportradar_id\":\"573c2c6b-fbd7-40e8-a83e-30140cf43e7b\",\"pandascore_id\":null,\"yahoo_id\":33366,\"last_name\":\"Guerriero\",\"metadata\":null,\"college\":\"Monmouth, N.J.\",\"high_school\":\"Lyndhurst (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"peteguerriero\",\"birth_date\":\"1998-07-13\",\"espn_id\":4262315},\"933\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DJ\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"933\",\"birth_city\":null,\"fantasy_data_id\":13245,\"years_exp\":3,\"hashtag\":\"#DJSmith-NFL-FA-52\",\"search_first_name\":\"dj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"DJ Smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"5'11\\\"\",\"search_full_name\":\"djsmith\",\"birth_date\":\"1989-02-24\",\"espn_id\":14170},\"606\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027796\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603219538892,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":\"SWR\",\"player_id\":\"606\",\"birth_city\":null,\"fantasy_data_id\":11422,\"years_exp\":10,\"hashtag\":\"#JoeWebb-NFL-DET-5\",\"search_first_name\":\"joe\",\"rotowire_id\":6674,\"rotoworld_id\":5857,\"active\":true,\"search_rank\":612,\"age\":33,\"full_name\":\"Joe Webb\",\"sportradar_id\":\"250199f2-1387-4b55-b96f-17fedea6db7f\",\"pandascore_id\":null,\"yahoo_id\":24175,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Wenonah (AL)\",\"depth_chart_order\":2,\"stats_id\":296439,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joewebb\",\"birth_date\":\"1986-11-14\",\"espn_id\":13484},\"6952\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587785136593,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"LG\",\"player_id\":\"6952\",\"birth_city\":null,\"fantasy_data_id\":21944,\"years_exp\":0,\"hashtag\":\"#JonahJackson-NFL-DET-73\",\"search_first_name\":\"jonah\",\"rotowire_id\":14668,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jonah Jackson\",\"sportradar_id\":\"cc1cc1ef-551b-444e-be5b-1eeb5c3a4177\",\"pandascore_id\":null,\"yahoo_id\":32745,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Penncrest (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonahjackson\",\"birth_date\":\"1997-02-05\",\"espn_id\":3930040},\"1586\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lemonier\",\"depth_chart_position\":null,\"player_id\":\"1586\",\"birth_city\":null,\"fantasy_data_id\":15238,\"years_exp\":7,\"hashtag\":\"#CoreyLemonier-NFL-FA-44\",\"search_first_name\":\"corey\",\"rotowire_id\":8663,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Corey Lemonier\",\"sportradar_id\":\"c5200422-e1d0-43de-b4a0-9580454edd8b\",\"pandascore_id\":null,\"yahoo_id\":26711,\"last_name\":\"Lemonier\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Hialeah (FL)\",\"depth_chart_order\":null,\"stats_id\":557127,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"coreylemonier\",\"birth_date\":\"1991-11-19\",\"espn_id\":15849},\"1158\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kellen\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1548437735271,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"1158\",\"birth_city\":null,\"fantasy_data_id\":14219,\"years_exp\":8,\"hashtag\":\"#KellenMoore-NFL-FA-17\",\"search_first_name\":\"kellen\",\"rotowire_id\":8069,\"rotoworld_id\":7479,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kellen Moore\",\"sportradar_id\":\"742a4673-9df8-4a79-938f-edef65087075\",\"pandascore_id\":null,\"yahoo_id\":26399,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Prosser (WA)\",\"depth_chart_order\":null,\"stats_id\":381798,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kellenmoore\",\"birth_date\":\"1988-07-05\",\"espn_id\":14882},\"2168\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031285\",\"first_name\":\"Devonta\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605297354169,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"freeman\",\"depth_chart_position\":\"RB\",\"player_id\":\"2168\",\"birth_city\":null,\"fantasy_data_id\":16524,\"years_exp\":6,\"hashtag\":\"#DevontaFreeman-NFL-NYG-31\",\"search_first_name\":\"devonta\",\"rotowire_id\":9326,\"rotoworld_id\":9423,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Devonta Freeman\",\"sportradar_id\":\"2e50c78f-fa3b-48cf-8531-6eeddc93d88d\",\"pandascore_id\":null,\"yahoo_id\":27631,\"last_name\":\"Freeman\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Miami Central (FL)\",\"depth_chart_order\":5,\"stats_id\":592914,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'8\\\"\",\"search_full_name\":\"devontafreeman\",\"birth_date\":\"1992-03-15\",\"espn_id\":16944},\"5516\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034474\",\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1532467804167,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ginda\",\"depth_chart_position\":null,\"player_id\":\"5516\",\"birth_city\":null,\"fantasy_data_id\":20214,\"years_exp\":2,\"hashtag\":\"#FrankGinda-NFL-FA-58\",\"search_first_name\":\"frank\",\"rotowire_id\":12576,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Frank Ginda\",\"sportradar_id\":\"4385e287-c7c3-4a5d-ba11-642d9e7a99af\",\"pandascore_id\":null,\"yahoo_id\":31300,\"last_name\":\"Ginda\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":866365,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"frankginda\",\"birth_date\":\"1997-05-26\",\"espn_id\":3914861},\"6208\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034921\",\"first_name\":\"Elliott\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1602031221949,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fry\",\"depth_chart_position\":\"K\",\"player_id\":\"6208\",\"birth_city\":null,\"fantasy_data_id\":21105,\"years_exp\":1,\"hashtag\":\"#ElliottFry-NFL-ATL-1\",\"search_first_name\":\"elliott\",\"rotowire_id\":13943,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1659,\"age\":25,\"full_name\":\"Elliott Fry\",\"sportradar_id\":\"67da0db1-ed58-435d-b8bf-f7ffa02d8a24\",\"pandascore_id\":null,\"yahoo_id\":31831,\"last_name\":\"Fry\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Prince of Peace Christian (TX)\",\"depth_chart_order\":2,\"stats_id\":744596,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"6'0\\\"\",\"search_full_name\":\"elliottfry\",\"birth_date\":\"1994-12-12\",\"espn_id\":3048898},\"3992\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dave\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"caldwell\",\"depth_chart_position\":null,\"player_id\":\"3992\",\"birth_city\":null,\"fantasy_data_id\":18829,\"years_exp\":0,\"hashtag\":\"#DaveCaldwell-NFL-FA-0\",\"search_first_name\":\"dave\",\"rotowire_id\":null,\"rotoworld_id\":9502,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dave Caldwell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Caldwell\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"davecaldwell\",\"birth_date\":null,\"espn_id\":null},\"6493\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035092\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603835754902,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"TE\",\"player_id\":\"6493\",\"birth_city\":null,\"fantasy_data_id\":21493,\"years_exp\":1,\"hashtag\":\"#JustinJohnson-NFL-ARI-86\",\"search_first_name\":\"justin\",\"rotowire_id\":14102,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Justin Johnson\",\"sportradar_id\":\"f5153e47-fc18-4441-afc0-10c8a5ffec53\",\"pandascore_id\":null,\"yahoo_id\":32339,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Hoover (AL)\",\"depth_chart_order\":6,\"stats_id\":876831,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinjohnson\",\"birth_date\":\"1996-11-08\",\"espn_id\":3917292},\"729\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jermelle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cudjo\",\"depth_chart_position\":null,\"player_id\":\"729\",\"birth_city\":null,\"fantasy_data_id\":12294,\"years_exp\":10,\"hashtag\":\"#JermelleCudjo-NFL-FA-76\",\"search_first_name\":\"jermelle\",\"rotowire_id\":7142,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jermelle Cudjo\",\"sportradar_id\":\"2eb66ae1-ed96-4911-a87c-86f34e6609d8\",\"pandascore_id\":null,\"yahoo_id\":24586,\"last_name\":\"Cudjo\",\"metadata\":null,\"college\":\"Central Oklahoma\",\"high_school\":\"MacArthur (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jermellecudjo\",\"birth_date\":\"1986-09-28\",\"espn_id\":13554},\"4675\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033738\",\"first_name\":\"Otha\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1523664901518,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":null,\"player_id\":\"4675\",\"birth_city\":null,\"fantasy_data_id\":19576,\"years_exp\":3,\"hashtag\":\"#OthaPeters-NFL-FA-52\",\"search_first_name\":\"otha\",\"rotowire_id\":12471,\"rotoworld_id\":12850,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Otha Peters\",\"sportradar_id\":\"befe4b46-f918-4faf-a9ad-c034e990c0cb\",\"pandascore_id\":null,\"yahoo_id\":30760,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"LA-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693830,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"othapeters\",\"birth_date\":\"1994-02-27\",\"espn_id\":2980070},\"1500\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030472\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606515628220,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":\"TE\",\"player_id\":\"1500\",\"birth_city\":null,\"fantasy_data_id\":15100,\"years_exp\":7,\"hashtag\":\"#JordanReed-NFL-SF-81\",\"search_first_name\":\"jordan\",\"rotowire_id\":8615,\"rotoworld_id\":8412,\"active\":true,\"search_rank\":373,\"age\":30,\"full_name\":\"Jordan Reed\",\"sportradar_id\":\"c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17\",\"pandascore_id\":null,\"yahoo_id\":26708,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"New London (CT)\",\"depth_chart_order\":1,\"stats_id\":508876,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanreed\",\"birth_date\":\"1990-07-03\",\"espn_id\":15860},\"2671\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032087\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1604952027694,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lambo\",\"depth_chart_position\":\"K\",\"player_id\":\"2671\",\"birth_city\":null,\"fantasy_data_id\":17139,\"years_exp\":5,\"hashtag\":\"#JoshLambo-NFL-JAX-4\",\"search_first_name\":\"josh\",\"rotowire_id\":10438,\"rotoworld_id\":10708,\"active\":true,\"search_rank\":404,\"age\":30,\"full_name\":\"Josh Lambo\",\"sportradar_id\":\"69bdf41e-3c32-46c1-93b8-e952edf5c61d\",\"pandascore_id\":null,\"yahoo_id\":28685,\"last_name\":\"Lambo\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Middleton (WI)\",\"depth_chart_order\":3,\"stats_id\":710671,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshlambo\",\"birth_date\":\"1990-11-19\",\"espn_id\":2998120},\"5171\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034193\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606249854192,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rader\",\"depth_chart_position\":\"TE\",\"player_id\":\"5171\",\"birth_city\":null,\"fantasy_data_id\":20134,\"years_exp\":2,\"hashtag\":\"#KevinRader-NFL-PIT-87\",\"search_first_name\":\"kevin\",\"rotowire_id\":13119,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kevin Rader\",\"sportradar_id\":\"1ea6e870-84ff-44ba-8302-f0f08623fa26\",\"pandascore_id\":null,\"yahoo_id\":31441,\"last_name\":\"Rader\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Youngstown State\",\"high_school\":\"Pine-Richland (PA)\",\"depth_chart_order\":4,\"stats_id\":840531,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kevinrader\",\"birth_date\":\"1995-04-26\",\"espn_id\":3049290},\"7\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kurt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"warner\",\"depth_chart_position\":null,\"player_id\":\"7\",\"birth_city\":null,\"fantasy_data_id\":297,\"years_exp\":0,\"hashtag\":\"#KurtWarner-NFL-FA-13\",\"search_first_name\":\"kurt\",\"rotowire_id\":null,\"rotoworld_id\":1256,\"active\":false,\"search_rank\":9999999,\"age\":47,\"full_name\":\"Kurt Warner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Warner\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kurtwarner\",\"birth_date\":\"1971-06-22\",\"espn_id\":null},\"3915\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gangwish\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3915\",\"birth_city\":null,\"fantasy_data_id\":18741,\"years_exp\":0,\"hashtag\":\"#JackGangwish-NFL-FA-95\",\"search_first_name\":\"jack\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jack Gangwish\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30042,\"last_name\":\"Gangwish\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jackgangwish\",\"birth_date\":\"1993-01-06\",\"espn_id\":2576345},\"1075\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"acho\",\"depth_chart_position\":null,\"player_id\":\"1075\",\"birth_city\":null,\"fantasy_data_id\":13883,\"years_exp\":8,\"hashtag\":\"#EmmanuelAcho-NFL-FA-51\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":8272,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Emmanuel Acho\",\"sportradar_id\":\"8536cc5b-9498-4851-ac44-fc924815fc08\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Acho\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"St. Mark's (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"emmanuelacho\",\"birth_date\":\"1990-11-10\",\"espn_id\":15045},\"7162\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693359935,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"becker\",\"depth_chart_position\":null,\"player_id\":\"7162\",\"birth_city\":null,\"fantasy_data_id\":22163,\"years_exp\":0,\"hashtag\":\"#RyanBecker-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":14871,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Ryan Becker\",\"sportradar_id\":\"08119cab-78d1-4afe-ad0b-e27f0335f35a\",\"pandascore_id\":null,\"yahoo_id\":33071,\"last_name\":\"Becker\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryanbecker\",\"birth_date\":\"1997-12-23\",\"espn_id\":4039553},\"1631\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1587878752665,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1631\",\"birth_city\":null,\"fantasy_data_id\":15350,\"years_exp\":7,\"hashtag\":\"#RodneySmith-NFL-FA-86\",\"search_first_name\":\"rodney\",\"rotowire_id\":14435,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Rodney Smith\",\"sportradar_id\":\"41658eb3-e7dc-45e5-a05c-20f948df88f2\",\"pandascore_id\":null,\"yahoo_id\":27143,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Archbishop Carroll (FL)\",\"depth_chart_order\":null,\"stats_id\":509370,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rodneysmith\",\"birth_date\":\"1990-03-11\",\"espn_id\":16373},\"3145\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ron\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1577811928833,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rivera\",\"depth_chart_position\":null,\"player_id\":\"3145\",\"birth_city\":null,\"fantasy_data_id\":17900,\"years_exp\":0,\"hashtag\":\"#RonRivera-NFL-FA-0\",\"search_first_name\":\"ron\",\"rotowire_id\":null,\"rotoworld_id\":8339,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ron Rivera\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rivera\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ronrivera\",\"birth_date\":null,\"espn_id\":null},\"6650\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035358\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606316460928,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"mclaughlin\",\"depth_chart_position\":\"K\",\"player_id\":\"6650\",\"birth_city\":null,\"fantasy_data_id\":21542,\"years_exp\":1,\"hashtag\":\"#ChaseMcLaughlin-NFL-JAX-3\",\"search_first_name\":\"chase\",\"rotowire_id\":14254,\"rotoworld_id\":14618,\"active\":true,\"search_rank\":556,\"age\":24,\"full_name\":\"Chase McLaughlin\",\"sportradar_id\":\"12d28404-63e1-432f-adde-c93631a5c39c\",\"pandascore_id\":null,\"yahoo_id\":32417,\"last_name\":\"McLaughlin\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Cypress Woods (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chasemclaughlin\",\"birth_date\":\"1996-04-09\",\"espn_id\":3150744},\"1358\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030390\",\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1541442625440,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sturgis\",\"depth_chart_position\":null,\"player_id\":\"1358\",\"birth_city\":null,\"fantasy_data_id\":14877,\"years_exp\":7,\"hashtag\":\"#CalebSturgis-NFL-FA-6\",\"search_first_name\":\"caleb\",\"rotowire_id\":8898,\"rotoworld_id\":8573,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Caleb Sturgis\",\"sportradar_id\":\"596c4000-ede5-45b0-8336-33efeb686d2b\",\"pandascore_id\":null,\"yahoo_id\":26789,\"last_name\":\"Sturgis\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"St. Augustine (FL)\",\"depth_chart_order\":null,\"stats_id\":450957,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"calebsturgis\",\"birth_date\":\"1989-08-09\",\"espn_id\":15918},\"273\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025555\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1548030635551,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":null,\"player_id\":\"273\",\"birth_city\":null,\"fantasy_data_id\":6853,\"years_exp\":13,\"hashtag\":\"#CoreyGraham-NFL-FA-24\",\"search_first_name\":\"corey\",\"rotowire_id\":5874,\"rotoworld_id\":4318,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Corey Graham\",\"sportradar_id\":\"93ee67e5-08d1-4272-bc6b-d97feaab5d6b\",\"pandascore_id\":null,\"yahoo_id\":8422,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"New Hampshire\",\"high_school\":\"Carroll (NY)\",\"depth_chart_order\":null,\"stats_id\":228604,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"coreygraham\",\"birth_date\":\"1985-07-25\",\"espn_id\":10611},\"3543\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032911\",\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1552319722603,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pulley\",\"depth_chart_position\":\"C\",\"player_id\":\"3543\",\"birth_city\":null,\"fantasy_data_id\":18312,\"years_exp\":4,\"hashtag\":\"#SpencerPulley-NFL-NYG-77\",\"search_first_name\":\"spencer\",\"rotowire_id\":11487,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Spencer Pulley\",\"sportradar_id\":\"1b7258f3-ea04-47ba-b315-cc709fef4bfd\",\"pandascore_id\":null,\"yahoo_id\":29527,\"last_name\":\"Pulley\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Evangelical Christian (TN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"spencerpulley\",\"birth_date\":\"1993-04-03\",\"espn_id\":2577792},\"1465\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nico\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1465\",\"birth_city\":null,\"fantasy_data_id\":15047,\"years_exp\":7,\"hashtag\":\"#NicoJohnson-NFL-FA-48\",\"search_first_name\":\"nico\",\"rotowire_id\":8697,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Nico Johnson\",\"sportradar_id\":\"164b6c1a-5927-4571-939a-ce3e09f7cf5f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Andalusia (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nicojohnson\",\"birth_date\":\"1990-06-19\",\"espn_id\":15982},\"1000\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027560\",\"first_name\":\"Albert\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1572495332515,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcclellan\",\"depth_chart_position\":null,\"player_id\":\"1000\",\"birth_city\":null,\"fantasy_data_id\":13520,\"years_exp\":10,\"hashtag\":\"#AlbertMcClellan-NFL-FA-47\",\"search_first_name\":\"albert\",\"rotowire_id\":7285,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Albert McClellan\",\"sportradar_id\":\"74c595a3-b683-49b3-90f3-fd8327857b1d\",\"pandascore_id\":null,\"yahoo_id\":24358,\"last_name\":\"McClellan\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Kathleen (FL)\",\"depth_chart_order\":null,\"stats_id\":286877,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"albertmcclellan\",\"birth_date\":\"1986-06-04\",\"espn_id\":13851},\"1859\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1511031901043,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pryor\",\"depth_chart_position\":null,\"player_id\":\"1859\",\"birth_city\":null,\"fantasy_data_id\":16070,\"years_exp\":6,\"hashtag\":\"#CalvinPryor-NFL-FA-29\",\"search_first_name\":\"calvin\",\"rotowire_id\":9295,\"rotoworld_id\":9438,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Calvin Pryor\",\"sportradar_id\":\"8dc56487-eeaf-498a-a0fd-485de32f92d5\",\"pandascore_id\":null,\"yahoo_id\":27546,\"last_name\":\"Pryor\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Port St. Joe (FL)\",\"depth_chart_order\":null,\"stats_id\":602242,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"calvinpryor\",\"birth_date\":\"1992-07-02\",\"espn_id\":16729},\"1604\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029848\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567819825137,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1604\",\"birth_city\":null,\"fantasy_data_id\":15268,\"years_exp\":7,\"hashtag\":\"#NickWilliams-NFL-FA-1\",\"search_first_name\":\"nick\",\"rotowire_id\":9037,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Nick Williams\",\"sportradar_id\":\"c87f0526-a85d-439d-a447-070c66ede612\",\"pandascore_id\":null,\"yahoo_id\":27201,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Hun School of Princeton (NJ)\",\"depth_chart_order\":null,\"stats_id\":511823,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'10\\\"\",\"search_full_name\":\"nickwilliams\",\"birth_date\":\"1990-11-23\",\"espn_id\":16345},\"2968\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"2968\",\"birth_city\":null,\"fantasy_data_id\":17460,\"years_exp\":2,\"hashtag\":\"#JulianWilson-NFL-FA-0\",\"search_first_name\":\"julian\",\"rotowire_id\":10643,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Julian Wilson\",\"sportradar_id\":\"9b49e899-256b-4a5d-bd96-42625defc46c\",\"pandascore_id\":null,\"yahoo_id\":28957,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"julianwilson\",\"birth_date\":\"1991-10-25\",\"espn_id\":2514245},\"1188\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029661\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tiller\",\"depth_chart_position\":null,\"player_id\":\"1188\",\"birth_city\":null,\"fantasy_data_id\":14367,\"years_exp\":8,\"hashtag\":\"#AndrewTiller-NFL-FA-66\",\"search_first_name\":\"andrew\",\"rotowire_id\":8352,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Andrew Tiller\",\"sportradar_id\":\"18f9dc06-eaa6-4c7f-8995-78aea971fdd4\",\"pandascore_id\":null,\"yahoo_id\":25889,\"last_name\":\"Tiller\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Central Islip (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewtiller\",\"birth_date\":\"1989-03-13\",\"espn_id\":15098},\"2636\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarred\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"haggins\",\"depth_chart_position\":null,\"player_id\":\"2636\",\"birth_city\":null,\"fantasy_data_id\":17104,\"years_exp\":0,\"hashtag\":\"#JarredHaggins-NFL-FA-0\",\"search_first_name\":\"jarred\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarred Haggins\",\"sportradar_id\":\"15a00d57-12c9-4fb5-a73e-4afca370c73d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Haggins\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553288,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jarredhaggins\",\"birth_date\":\"1992-01-17\",\"espn_id\":2512506},\"4499\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dominguez\",\"depth_chart_position\":null,\"player_id\":\"4499\",\"birth_city\":null,\"fantasy_data_id\":19370,\"years_exp\":1,\"hashtag\":\"#ChaseDominguez-NFL-NO-49\",\"search_first_name\":\"chase\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chase Dominguez\",\"sportradar_id\":\"9e0f556f-a56e-4f30-bed6-ca692dd4542b\",\"pandascore_id\":null,\"yahoo_id\":30409,\"last_name\":\"Dominguez\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chasedominguez\",\"birth_date\":\"1994-07-09\",\"espn_id\":3052499},\"859\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027987\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567532419491,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ijalana\",\"depth_chart_position\":null,\"player_id\":\"859\",\"birth_city\":null,\"fantasy_data_id\":12966,\"years_exp\":9,\"hashtag\":\"#BenIjalana-NFL-FA-66\",\"search_first_name\":\"ben\",\"rotowire_id\":7436,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ben Ijalana\",\"sportradar_id\":\"4b749c57-0fbe-46b3-8d71-81c35e0de672\",\"pandascore_id\":null,\"yahoo_id\":24836,\"last_name\":\"Ijalana\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":\"Rancocas Valley (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benijalana\",\"birth_date\":\"1989-08-06\",\"espn_id\":14041},\"7190\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bronson\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693369572,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rechsteiner\",\"depth_chart_position\":null,\"player_id\":\"7190\",\"birth_city\":null,\"fantasy_data_id\":22192,\"years_exp\":0,\"hashtag\":\"#BronsonRechsteiner-NFL-FA-0\",\"search_first_name\":\"bronson\",\"rotowire_id\":15032,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Bronson Rechsteiner\",\"sportradar_id\":\"2d550211-cdf3-44ab-b796-0da23adc21fa\",\"pandascore_id\":null,\"yahoo_id\":33003,\"last_name\":\"Rechsteiner\",\"metadata\":null,\"college\":\"Kennesaw State (GA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bronsonrechsteiner\",\"birth_date\":\"1997-10-24\",\"espn_id\":null},\"2672\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damarr\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aultman\",\"depth_chart_position\":null,\"player_id\":\"2672\",\"birth_city\":null,\"fantasy_data_id\":17140,\"years_exp\":0,\"hashtag\":\"#DamarrAultman-NFL-FA-37\",\"search_first_name\":\"damarr\",\"rotowire_id\":10800,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Damarr Aultman\",\"sportradar_id\":\"8a691f55-8a42-4403-829f-350341ddd3e5\",\"pandascore_id\":null,\"yahoo_id\":29010,\"last_name\":\"Aultman\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":551666,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'10\\\"\",\"search_full_name\":\"damarraultman\",\"birth_date\":\"1992-01-13\",\"espn_id\":2507242},\"2389\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032129\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605580521398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hicks\",\"depth_chart_position\":\"RILB\",\"player_id\":\"2389\",\"birth_city\":null,\"fantasy_data_id\":16845,\"years_exp\":5,\"hashtag\":\"#JordanHicks-NFL-ARI-58\",\"search_first_name\":\"jordan\",\"rotowire_id\":10452,\"rotoworld_id\":10489,\"active\":true,\"search_rank\":879,\"age\":28,\"full_name\":\"Jordan Hicks\",\"sportradar_id\":\"4f090881-03fc-4a34-b02f-fd1df1e411de\",\"pandascore_id\":null,\"yahoo_id\":28472,\"last_name\":\"Hicks\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Lakota West (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanhicks\",\"birth_date\":\"1992-06-27\",\"espn_id\":2514270},\"4850\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tago\",\"depth_chart_position\":null,\"player_id\":\"4850\",\"birth_city\":null,\"fantasy_data_id\":19155,\"years_exp\":2,\"hashtag\":\"#ChristianTago-NFL-FA-46\",\"search_first_name\":\"christian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Christian Tago\",\"sportradar_id\":\"02858fd6-65a7-49d8-a55d-702bbd362a0d\",\"pandascore_id\":null,\"yahoo_id\":30465,\"last_name\":\"Tago\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"christiantago\",\"birth_date\":\"1994-01-15\",\"espn_id\":2981213},\"1387\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030288\",\"first_name\":\"Rex\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606246253342,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burkhead\",\"depth_chart_position\":\"RB\",\"player_id\":\"1387\",\"birth_city\":null,\"fantasy_data_id\":14917,\"years_exp\":7,\"hashtag\":\"#RexBurkhead-NFL-NE-34\",\"search_first_name\":\"rex\",\"rotowire_id\":8765,\"rotoworld_id\":8466,\"active\":true,\"search_rank\":203,\"age\":30,\"full_name\":\"Rex Burkhead\",\"sportradar_id\":\"bd8052bd-0898-430b-99c9-2529e895ae79\",\"pandascore_id\":null,\"yahoo_id\":26813,\"last_name\":\"Burkhead\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Nebraska\",\"high_school\":\"Plano (TX)\",\"depth_chart_order\":7,\"stats_id\":498760,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rexburkhead\",\"birth_date\":\"1990-07-02\",\"espn_id\":15971},\"5311\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034848\",\"first_name\":\"R.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599777019326,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcintosh\",\"depth_chart_position\":\"DE\",\"player_id\":\"5311\",\"birth_city\":null,\"fantasy_data_id\":19946,\"years_exp\":2,\"hashtag\":\"#RJMcIntosh-NFL-NYG-90\",\"search_first_name\":\"rj\",\"rotowire_id\":12589,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1359,\"age\":24,\"full_name\":\"R.J. McIntosh\",\"sportradar_id\":\"2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2\",\"pandascore_id\":null,\"yahoo_id\":31109,\"last_name\":\"McIntosh\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Cardinal Gibbons (FL)\",\"depth_chart_order\":2,\"stats_id\":871710,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rjmcintosh\",\"birth_date\":\"1996-06-02\",\"espn_id\":3917872},\"3879\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pruitt\",\"depth_chart_position\":null,\"player_id\":\"3879\",\"birth_city\":null,\"fantasy_data_id\":18701,\"years_exp\":0,\"hashtag\":\"#JimmyPruitt-NFL-FA-43\",\"search_first_name\":\"jimmy\",\"rotowire_id\":11107,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jimmy Pruitt\",\"sportradar_id\":\"1f95fe40-6aef-4be6-9814-b8498024dbca\",\"pandascore_id\":null,\"yahoo_id\":30009,\"last_name\":\"Pruitt\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jimmypruitt\",\"birth_date\":\"1992-11-28\",\"espn_id\":2981210},\"6239\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035480\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604692845645,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6239\",\"birth_city\":null,\"fantasy_data_id\":21169,\"years_exp\":1,\"hashtag\":\"#MalikTaylor-NFL-GB-86\",\"search_first_name\":\"malik\",\"rotowire_id\":14002,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malik Taylor\",\"sportradar_id\":\"228b0dd8-3f75-4b60-90d1-59036858b8ae\",\"pandascore_id\":null,\"yahoo_id\":32488,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":\"Hill-McCloy (MI)\",\"depth_chart_order\":2,\"stats_id\":1166944,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"maliktaylor\",\"birth_date\":\"1995-12-21\",\"espn_id\":4408988},\"738\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025630\",\"first_name\":\"Clark\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1564527602976,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"738\",\"birth_city\":null,\"fantasy_data_id\":12330,\"years_exp\":13,\"hashtag\":\"#ClarkHarris-NFL-CIN-46\",\"search_first_name\":\"clark\",\"rotowire_id\":5308,\"rotoworld_id\":null,\"active\":true,\"search_rank\":620,\"age\":36,\"full_name\":\"Clark Harris\",\"sportradar_id\":\"d7eec5c7-c401-485e-b0c8-fb0784c07b27\",\"pandascore_id\":null,\"yahoo_id\":8497,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Southern Regional (NJ)\",\"depth_chart_order\":null,\"stats_id\":216309,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"clarkharris\",\"birth_date\":\"1984-07-10\",\"espn_id\":10686},\"6120\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035231\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606329301897,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilkins\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6120\",\"birth_city\":null,\"fantasy_data_id\":20983,\"years_exp\":1,\"hashtag\":\"#ChristianWilkins-NFL-MIA-94\",\"search_first_name\":\"christian\",\"rotowire_id\":13758,\"rotoworld_id\":14071,\"active\":true,\"search_rank\":1620,\"age\":24,\"full_name\":\"Christian Wilkins\",\"sportradar_id\":\"6c640668-de81-49c4-a0da-e367e1747923\",\"pandascore_id\":null,\"yahoo_id\":31845,\"last_name\":\"Wilkins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Suffield Academy (CT)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"christianwilkins\",\"birth_date\":\"1995-12-20\",\"espn_id\":3728266},\"3063\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031801\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535512532930,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leslie\",\"depth_chart_position\":null,\"player_id\":\"3063\",\"birth_city\":null,\"fantasy_data_id\":17799,\"years_exp\":5,\"hashtag\":\"#JordanLeslie-NFL-FA-19\",\"search_first_name\":\"jordan\",\"rotowire_id\":10225,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jordan Leslie\",\"sportradar_id\":\"26afb608-1cec-42f3-8426-95daf209de3b\",\"pandascore_id\":null,\"yahoo_id\":28840,\"last_name\":\"Leslie\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":554405,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanleslie\",\"birth_date\":\"1991-10-31\",\"espn_id\":2511952},\"5146\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034140\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605920403920,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gono\",\"depth_chart_position\":\"RT\",\"player_id\":\"5146\",\"birth_city\":null,\"fantasy_data_id\":20093,\"years_exp\":2,\"hashtag\":\"#MattGono-NFL-ATL-73\",\"search_first_name\":\"matt\",\"rotowire_id\":13080,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Matt Gono\",\"sportradar_id\":\"a6b00103-9678-41e4-b310-fef78c2a6e43\",\"pandascore_id\":null,\"yahoo_id\":31343,\"last_name\":\"Gono\",\"metadata\":null,\"college\":\"Wesley\",\"high_school\":\"Cinnaminson (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mattgono\",\"birth_date\":\"1996-05-10\",\"espn_id\":3157727},\"CLE\":{\"team\":\"CLE\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"CLE\",\"last_name\":\"Browns\",\"injury_status\":null,\"first_name\":\"Cleveland\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"2939\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javess\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blue\",\"depth_chart_position\":null,\"player_id\":\"2939\",\"birth_city\":null,\"fantasy_data_id\":17410,\"years_exp\":0,\"hashtag\":\"#JavessBlue-NFL-FA-10\",\"search_first_name\":\"javess\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Javess Blue\",\"sportradar_id\":\"cecfb768-2650-490f-a580-d12c5aba0ac0\",\"pandascore_id\":null,\"yahoo_id\":28919,\"last_name\":\"Blue\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746898,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"javessblue\",\"birth_date\":\"1992-12-30\",\"espn_id\":null},\"4742\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spelman\",\"depth_chart_position\":null,\"player_id\":\"4742\",\"birth_city\":null,\"fantasy_data_id\":19660,\"years_exp\":2,\"hashtag\":\"#MarkSpelman-NFL-FA-61\",\"search_first_name\":\"mark\",\"rotowire_id\":12274,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mark Spelman\",\"sportradar_id\":\"58528c0d-2ee8-4e76-9140-689b6508d91a\",\"pandascore_id\":null,\"yahoo_id\":30892,\"last_name\":\"Spelman\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"markspelman\",\"birth_date\":\"1993-11-02\",\"espn_id\":2975539},\"5368\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034337\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602868546584,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"stroman\",\"depth_chart_position\":null,\"player_id\":\"5368\",\"birth_city\":null,\"fantasy_data_id\":20080,\"years_exp\":2,\"hashtag\":\"#GregStroman-NFL-WAS-37\",\"search_first_name\":\"greg\",\"rotowire_id\":12751,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1412,\"age\":24,\"full_name\":\"Greg Stroman\",\"sportradar_id\":\"4296dd5b-261c-4c64-b1e2-e2afcda719c5\",\"pandascore_id\":null,\"yahoo_id\":31211,\"last_name\":\"Stroman\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Stonewall Jackson (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gregstroman\",\"birth_date\":\"1996-03-08\",\"espn_id\":3124086},\"1933\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031442\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603139419086,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lewan\",\"depth_chart_position\":null,\"player_id\":\"1933\",\"birth_city\":null,\"fantasy_data_id\":16172,\"years_exp\":6,\"hashtag\":\"#TaylorLewan-NFL-TEN-77\",\"search_first_name\":\"taylor\",\"rotowire_id\":9256,\"rotoworld_id\":9398,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Taylor Lewan\",\"sportradar_id\":\"1f301468-0e6e-4a38-9c73-919796ebaca8\",\"pandascore_id\":null,\"yahoo_id\":27539,\"last_name\":\"Lewan\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Michigan\",\"high_school\":\"Chaparral (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'7\\\"\",\"search_full_name\":\"taylorlewan\",\"birth_date\":\"1991-07-22\",\"espn_id\":16708},\"6763\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602189031370,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"begelton\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6763\",\"birth_city\":null,\"fantasy_data_id\":21708,\"years_exp\":0,\"hashtag\":\"#ReggieBegelton-NFL-GB-84\",\"search_first_name\":\"reggie\",\"rotowire_id\":14472,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2015,\"age\":27,\"full_name\":\"Reggie Begelton\",\"sportradar_id\":\"6fb8803e-2a84-454b-827f-df747e9157d8\",\"pandascore_id\":null,\"yahoo_id\":32664,\"last_name\":\"Begelton\",\"metadata\":null,\"college\":\"Lamar\",\"high_school\":\"West Brook (TX)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"reggiebegelton\",\"birth_date\":\"1993-08-31\",\"espn_id\":2974503},\"259\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"259\",\"birth_city\":null,\"fantasy_data_id\":6465,\"years_exp\":17,\"hashtag\":\"#KevinWilliams-NFL-FA-93\",\"search_first_name\":\"kevin\",\"rotowire_id\":3034,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Kevin Williams\",\"sportradar_id\":\"af04638a-2440-4fd7-b48d-9deaa2a3ab46\",\"pandascore_id\":null,\"yahoo_id\":6345,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Fordyce (AR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kevinwilliams\",\"birth_date\":\"1980-08-16\",\"espn_id\":4467},\"2821\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031787\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605576020755,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kumerow\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2821\",\"birth_city\":null,\"fantasy_data_id\":17289,\"years_exp\":5,\"hashtag\":\"#JakeKumerow-NFL-BUF-87\",\"search_first_name\":\"jake\",\"rotowire_id\":10544,\"rotoworld_id\":10867,\"active\":true,\"search_rank\":257,\"age\":28,\"full_name\":\"Jake Kumerow\",\"sportradar_id\":\"aa759477-6206-4984-ab9c-eb213abfd020\",\"pandascore_id\":null,\"yahoo_id\":28974,\"last_name\":\"Kumerow\",\"metadata\":null,\"college\":\"Wisconsin-Whitewater\",\"high_school\":\"South Elgin (IL)\",\"depth_chart_order\":3,\"stats_id\":558619,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jakekumerow\",\"birth_date\":\"1992-02-17\",\"espn_id\":3085107},\"4266\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033970\",\"first_name\":\"Shalom\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1572733556590,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"luani\",\"depth_chart_position\":\"SS\",\"player_id\":\"4266\",\"birth_city\":null,\"fantasy_data_id\":19112,\"years_exp\":3,\"hashtag\":\"#ShalomLuani-NFL-FA-0\",\"search_first_name\":\"shalom\",\"rotowire_id\":12000,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1224,\"age\":26,\"full_name\":\"Shalom Luani\",\"sportradar_id\":\"2bbbcaf8-553d-4250-b0e7-24cd90b5604b\",\"pandascore_id\":null,\"yahoo_id\":30334,\"last_name\":\"Luani\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":868134,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shalomluani\",\"birth_date\":\"1994-08-05\",\"espn_id\":3894908},\"997\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028180\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601222439525,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"WLB\",\"player_id\":\"997\",\"birth_city\":null,\"fantasy_data_id\":13480,\"years_exp\":9,\"hashtag\":\"#MalcolmSmith-NFL-CLE-56\",\"search_first_name\":\"malcolm\",\"rotowire_id\":7606,\"rotoworld_id\":6744,\"active\":true,\"search_rank\":650,\"age\":31,\"full_name\":\"Malcolm Smith\",\"sportradar_id\":\"bcebf5f0-0224-4cc8-9a78-1aefd55bfc87\",\"pandascore_id\":null,\"yahoo_id\":25029,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Taft (CA)\",\"depth_chart_order\":2,\"stats_id\":399333,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"malcolmsmith\",\"birth_date\":\"1989-07-05\",\"espn_id\":14214},\"1302\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1516076401777,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilhoite\",\"depth_chart_position\":null,\"player_id\":\"1302\",\"birth_city\":null,\"fantasy_data_id\":14782,\"years_exp\":8,\"hashtag\":\"#MichaelWilhoite-NFL-FA-57\",\"search_first_name\":\"michael\",\"rotowire_id\":8590,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Michael Wilhoite\",\"sportradar_id\":\"044457c1-cdcf-482d-868a-02ced974782b\",\"pandascore_id\":null,\"yahoo_id\":25688,\"last_name\":\"Wilhoite\",\"metadata\":null,\"college\":\"Washburn\",\"high_school\":\"Highland Park (KS)\",\"depth_chart_order\":null,\"stats_id\":473663,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelwilhoite\",\"birth_date\":\"1986-12-07\",\"espn_id\":14859},\"7319\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693360074,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cotton\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7319\",\"birth_city\":null,\"fantasy_data_id\":22311,\"years_exp\":0,\"hashtag\":\"#JeffCotton-NFL-LAC-80\",\"search_first_name\":\"jeff\",\"rotowire_id\":14922,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jeff Cotton\",\"sportradar_id\":\"2b0e3931-07d2-4b03-9b28-489258465ac2\",\"pandascore_id\":null,\"yahoo_id\":32978,\"last_name\":\"Cotton\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Pima (AZ)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeffcotton\",\"birth_date\":\"1997-04-17\",\"espn_id\":4282647},\"717\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027531\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1553627142203,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ivory\",\"depth_chart_position\":null,\"player_id\":\"717\",\"birth_city\":null,\"fantasy_data_id\":12239,\"years_exp\":10,\"hashtag\":\"#ChrisIvory-NFL-FA-33\",\"search_first_name\":\"chris\",\"rotowire_id\":6833,\"rotoworld_id\":6168,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Chris Ivory\",\"sportradar_id\":\"72f5a27a-544f-468a-b10b-89a1fc5d0e9f\",\"pandascore_id\":null,\"yahoo_id\":24400,\"last_name\":\"Ivory\",\"metadata\":null,\"college\":\"Tiffin\",\"high_school\":\"Longview (TX)\",\"depth_chart_order\":null,\"stats_id\":335112,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisivory\",\"birth_date\":\"1988-03-22\",\"espn_id\":13587},\"1312\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029319\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599772819021,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bellamy\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1312\",\"birth_city\":null,\"fantasy_data_id\":14795,\"years_exp\":8,\"hashtag\":\"#JoshBellamy-NFL-FA-15\",\"search_first_name\":\"josh\",\"rotowire_id\":8369,\"rotoworld_id\":7841,\"active\":true,\"search_rank\":703,\"age\":31,\"full_name\":\"Josh Bellamy\",\"sportradar_id\":\"1b8db398-7a7e-44df-922e-d979507e6bdb\",\"pandascore_id\":null,\"yahoo_id\":26108,\"last_name\":\"Bellamy\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Boca Ciega (FL)\",\"depth_chart_order\":3,\"stats_id\":553696,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshbellamy\",\"birth_date\":\"1989-05-18\",\"espn_id\":15555},\"2816\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032034\",\"first_name\":\"Toby\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535666109606,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2816\",\"birth_city\":null,\"fantasy_data_id\":17284,\"years_exp\":5,\"hashtag\":\"#TobyJohnson-NFL-FA-63\",\"search_first_name\":\"toby\",\"rotowire_id\":10808,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Toby Johnson\",\"sportradar_id\":\"3748e9cb-edd7-4559-832b-e6bc483677ce\",\"pandascore_id\":null,\"yahoo_id\":29050,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tobyjohnson\",\"birth_date\":\"1991-09-01\",\"espn_id\":3051674},\"7049\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jauan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606340703671,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7049\",\"birth_city\":null,\"fantasy_data_id\":21717,\"years_exp\":0,\"hashtag\":\"#JauanJennings-NFL-SF-17\",\"search_first_name\":\"jauan\",\"rotowire_id\":14376,\"rotoworld_id\":null,\"active\":true,\"search_rank\":431,\"age\":23,\"full_name\":\"Jauan Jennings\",\"sportradar_id\":\"3ae9f0fa-c711-4663-80cf-4707856c07aa\",\"pandascore_id\":null,\"yahoo_id\":32887,\"last_name\":\"Jennings\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Blackman (TN)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jauanjennings\",\"birth_date\":\"1997-07-10\",\"espn_id\":3886598},\"7061\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604625009203,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":\"LG\",\"player_id\":\"7061\",\"birth_city\":null,\"fantasy_data_id\":22011,\"years_exp\":0,\"hashtag\":\"#CameronClark-NFL-NYJ-72\",\"search_first_name\":\"cameron\",\"rotowire_id\":14622,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Cameron Clark\",\"sportradar_id\":\"ca98164e-f504-48f7-8a55-48444dfb4df5\",\"pandascore_id\":null,\"yahoo_id\":32799,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"North Carolina-Charlotte\",\"high_school\":\"Ben L. Smith (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronclark\",\"birth_date\":\"1997-11-16\",\"espn_id\":3914277},\"4157\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033556\",\"first_name\":\"Tarik\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1601319622256,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cohen\",\"depth_chart_position\":\"RB\",\"player_id\":\"4157\",\"birth_city\":null,\"fantasy_data_id\":19003,\"years_exp\":3,\"hashtag\":\"#TarikCohen-NFL-CHI-29\",\"search_first_name\":\"tarik\",\"rotowire_id\":11758,\"rotoworld_id\":12322,\"active\":true,\"search_rank\":107,\"age\":25,\"full_name\":\"Tarik Cohen\",\"sportradar_id\":\"a8342d20-9901-49a6-bc45-79f192418188\",\"pandascore_id\":null,\"yahoo_id\":30232,\"last_name\":\"Cohen\",\"metadata\":null,\"college\":\"North Carolina A&T\",\"high_school\":\"Bunn (NC)\",\"depth_chart_order\":5,\"stats_id\":756928,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'6\\\"\",\"search_full_name\":\"tarikcohen\",\"birth_date\":\"1995-07-26\",\"espn_id\":3066158},\"689\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1530569701243,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"689\",\"birth_city\":null,\"fantasy_data_id\":12056,\"years_exp\":11,\"hashtag\":\"#RoyMiller-NFL-FA-98\",\"search_first_name\":\"roy\",\"rotowire_id\":6156,\"rotoworld_id\":5328,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Roy Miller\",\"sportradar_id\":\"2678c1f7-f4ee-4f6b-83c4-4fe5a1e0a0f4\",\"pandascore_id\":null,\"yahoo_id\":9345,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Shoemaker (TX)\",\"depth_chart_order\":null,\"stats_id\":300512,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'2\\\"\",\"search_full_name\":\"roymiller\",\"birth_date\":\"1987-07-09\",\"espn_id\":12698},\"3773\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Claude\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1533074405116,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pelon\",\"depth_chart_position\":null,\"player_id\":\"3773\",\"birth_city\":null,\"fantasy_data_id\":18586,\"years_exp\":3,\"hashtag\":\"#ClaudePelon-NFL-FA-91\",\"search_first_name\":\"claude\",\"rotowire_id\":11583,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Claude Pelon\",\"sportradar_id\":\"1e5fb84c-1166-4a3a-96e6-4fd1e806085d\",\"pandascore_id\":null,\"yahoo_id\":29802,\"last_name\":\"Pelon\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823064,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"claudepelon\",\"birth_date\":\"1992-11-27\",\"espn_id\":3120366},\"3620\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032482\",\"first_name\":\"Bralon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596767449898,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"addison\",\"depth_chart_position\":null,\"player_id\":\"3620\",\"birth_city\":null,\"fantasy_data_id\":18407,\"years_exp\":4,\"hashtag\":\"#BralonAddison-NFL-FA-0\",\"search_first_name\":\"bralon\",\"rotowire_id\":10747,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bralon Addison\",\"sportradar_id\":\"319497eb-9f40-4ef7-9dfe-72314a8e9b21\",\"pandascore_id\":null,\"yahoo_id\":29616,\"last_name\":\"Addison\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":689636,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bralonaddison\",\"birth_date\":\"1993-10-12\",\"espn_id\":2971271},\"633\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027375\",\"first_name\":\"Tramaine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599597041090,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brock\",\"depth_chart_position\":null,\"player_id\":\"633\",\"birth_city\":null,\"fantasy_data_id\":11579,\"years_exp\":10,\"hashtag\":\"#TramaineBrock-NFL-FA-35\",\"search_first_name\":\"tramaine\",\"rotowire_id\":7140,\"rotoworld_id\":6338,\"active\":true,\"search_rank\":616,\"age\":32,\"full_name\":\"Tramaine Brock\",\"sportradar_id\":\"688f7a3b-4d66-4fcf-802d-6a3cb133ea30\",\"pandascore_id\":null,\"yahoo_id\":24578,\"last_name\":\"Brock\",\"metadata\":null,\"college\":\"Belhaven\",\"high_school\":\"Long Beach (MS)\",\"depth_chart_order\":null,\"stats_id\":447403,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tramainebrock\",\"birth_date\":\"1988-08-20\",\"espn_id\":13681},\"1574\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030590\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565997049861,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"1574\",\"birth_city\":null,\"fantasy_data_id\":15223,\"years_exp\":7,\"hashtag\":\"#JonathanCooper-NFL-FA-70\",\"search_first_name\":\"jonathan\",\"rotowire_id\":8702,\"rotoworld_id\":8419,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jonathan Cooper\",\"sportradar_id\":\"d6aea7ed-2c24-4be5-b789-41e3ba0c2137\",\"pandascore_id\":null,\"yahoo_id\":26630,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Hoggard (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jonathancooper\",\"birth_date\":\"1990-01-19\",\"espn_id\":15787},\"491\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026035\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606340101916,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"amendola\",\"depth_chart_position\":\"SWR\",\"player_id\":\"491\",\"birth_city\":null,\"fantasy_data_id\":9906,\"years_exp\":12,\"hashtag\":\"#DannyAmendola-NFL-DET-80\",\"search_first_name\":\"danny\",\"rotowire_id\":5813,\"rotoworld_id\":4991,\"active\":true,\"search_rank\":190,\"age\":35,\"full_name\":\"Danny Amendola\",\"sportradar_id\":\"973bfe3c-6d0d-4130-a79c-f860650b1da6\",\"pandascore_id\":null,\"yahoo_id\":9037,\"last_name\":\"Amendola\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"The Woodlands (TX)\",\"depth_chart_order\":2,\"stats_id\":263758,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dannyamendola\",\"birth_date\":\"1985-11-02\",\"espn_id\":11674},\"7270\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603837254900,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sunderland\",\"depth_chart_position\":null,\"player_id\":\"7270\",\"birth_city\":null,\"fantasy_data_id\":22268,\"years_exp\":0,\"hashtag\":\"#WillSunderland-NFL-IND-49\",\"search_first_name\":\"will\",\"rotowire_id\":14939,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Will Sunderland\",\"sportradar_id\":\"82cdfc87-01d1-49bc-a9c8-ecf8f5bde7f4\",\"pandascore_id\":null,\"yahoo_id\":33234,\"last_name\":\"Sunderland\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Midwest City (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'4\\\"\",\"search_full_name\":\"willsunderland\",\"birth_date\":\"1996-09-11\",\"espn_id\":3821692},\"6095\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kiy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hester\",\"depth_chart_position\":null,\"player_id\":\"6095\",\"birth_city\":null,\"fantasy_data_id\":20800,\"years_exp\":0,\"hashtag\":\"#KiyHester-NFL-FA-0\",\"search_first_name\":\"kiy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kiy Hester\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hester\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kiyhester\",\"birth_date\":null,\"espn_id\":null},\"154\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tarvaris\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"154\",\"birth_city\":null,\"fantasy_data_id\":4097,\"years_exp\":14,\"hashtag\":\"#TarvarisJackson-NFL-FA-7\",\"search_first_name\":\"tarvaris\",\"rotowire_id\":4835,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Tarvaris Jackson\",\"sportradar_id\":\"41d6830d-9512-4f40-bd74-2125b2f84416\",\"pandascore_id\":null,\"yahoo_id\":7813,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":\"Lanier (AL)\",\"depth_chart_order\":null,\"stats_id\":157708,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tarvarisjackson\",\"birth_date\":\"1983-04-21\",\"espn_id\":9650},\"6047\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035002\",\"first_name\":\"Dillon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1578973826114,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":null,\"player_id\":\"6047\",\"birth_city\":null,\"fantasy_data_id\":20881,\"years_exp\":1,\"hashtag\":\"#DillonMitchell-NFL-FA-0\",\"search_first_name\":\"dillon\",\"rotowire_id\":13501,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1577,\"age\":23,\"full_name\":\"Dillon Mitchell\",\"sportradar_id\":\"ab04bbda-ee5d-45f8-851a-6fe36ad0c21a\",\"pandascore_id\":null,\"yahoo_id\":32071,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":910570,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dillonmitchell\",\"birth_date\":\"1997-05-16\",\"espn_id\":4038938},\"1239\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Peter\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"konz\",\"depth_chart_position\":null,\"player_id\":\"1239\",\"birth_city\":null,\"fantasy_data_id\":14568,\"years_exp\":4,\"hashtag\":\"#PeterKonz-NFL-FA-66\",\"search_first_name\":\"peter\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Peter Konz\",\"sportradar_id\":\"c2dfb0f8-67e7-47d0-b4c5-997af6c36417\",\"pandascore_id\":null,\"yahoo_id\":25765,\"last_name\":\"Konz\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"peterkonz\",\"birth_date\":\"1989-06-09\",\"espn_id\":14968},\"1877\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orr\",\"depth_chart_position\":null,\"player_id\":\"1877\",\"birth_city\":null,\"fantasy_data_id\":16095,\"years_exp\":6,\"hashtag\":\"#ZachOrr-NFL-FA-54\",\"search_first_name\":\"zach\",\"rotowire_id\":9951,\"rotoworld_id\":9954,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Zach Orr\",\"sportradar_id\":\"6f0e4650-0eb0-488c-8994-e6456c6f2a23\",\"pandascore_id\":null,\"yahoo_id\":27986,\"last_name\":\"Orr\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"zachorr\",\"birth_date\":\"1992-06-09\",\"espn_id\":17300},\"615\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"615\",\"birth_city\":null,\"fantasy_data_id\":11482,\"years_exp\":10,\"hashtag\":\"#CharlesBrown-NFL-FA-78\",\"search_first_name\":\"charles\",\"rotowire_id\":6544,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Charles Brown\",\"sportradar_id\":\"30702243-7831-43fe-a0a1-335dd6a2f989\",\"pandascore_id\":null,\"yahoo_id\":24039,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Diamond Ranch (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"charlesbrown\",\"birth_date\":\"1987-04-10\",\"espn_id\":13263},\"1648\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keelan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1648\",\"birth_city\":null,\"fantasy_data_id\":15391,\"years_exp\":1,\"hashtag\":\"#KeelanJohnson-NFL-FA-38\",\"search_first_name\":\"keelan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Keelan Johnson\",\"sportradar_id\":\"e90c58df-3bbd-4c3d-8ee0-4de43b3f8f48\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"keelanjohnson\",\"birth_date\":\"1989-09-26\",\"espn_id\":16354},\"4301\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"magee\",\"depth_chart_position\":null,\"player_id\":\"4301\",\"birth_city\":null,\"fantasy_data_id\":19149,\"years_exp\":2,\"hashtag\":\"#JoshMagee-NFL-FA-7\",\"search_first_name\":\"josh\",\"rotowire_id\":12416,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josh Magee\",\"sportradar_id\":\"9301f759-7b48-40ae-aac3-b98f2b65b0b2\",\"pandascore_id\":null,\"yahoo_id\":30459,\"last_name\":\"Magee\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694598,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshmagee\",\"birth_date\":\"1991-10-01\",\"espn_id\":2979852},\"7053\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606265155132,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"7053\",\"birth_city\":null,\"fantasy_data_id\":21928,\"years_exp\":0,\"hashtag\":\"#DanielThomas-NFL-JAX-20\",\"search_first_name\":\"daniel\",\"rotowire_id\":14687,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1846,\"age\":22,\"full_name\":\"Daniel Thomas\",\"sportradar_id\":\"15a6249f-f4cf-47c2-8251-8a3a802b3db0\",\"pandascore_id\":null,\"yahoo_id\":32827,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Robert E. Lee (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"danielthomas\",\"birth_date\":\"1998-07-01\",\"espn_id\":4035505},\"3094\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1573693202102,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gase\",\"depth_chart_position\":null,\"player_id\":\"3094\",\"birth_city\":null,\"fantasy_data_id\":17844,\"years_exp\":0,\"hashtag\":\"#AdamGase-NFL-FA-0\",\"search_first_name\":\"adam\",\"rotowire_id\":null,\"rotoworld_id\":9276,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Adam Gase\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gase\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"adamgase\",\"birth_date\":null,\"espn_id\":null},\"6520\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035075\",\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"6520\",\"birth_city\":null,\"fantasy_data_id\":21477,\"years_exp\":1,\"hashtag\":\"#LarryWilliams-NFL-FA-67\",\"search_first_name\":\"larry\",\"rotowire_id\":14108,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Larry Williams\",\"sportradar_id\":\"c2a4c4a4-d0d7-4687-bd2b-7ea13118c3a7\",\"pandascore_id\":null,\"yahoo_id\":32284,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'4\\\"\",\"search_full_name\":\"larrywilliams\",\"birth_date\":\"1995-02-22\",\"espn_id\":3059734},\"6883\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lucas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596722418599,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"niang\",\"depth_chart_position\":null,\"player_id\":\"6883\",\"birth_city\":null,\"fantasy_data_id\":22018,\"years_exp\":0,\"hashtag\":\"#LucasNiang-NFL-KC-67\",\"search_first_name\":\"lucas\",\"rotowire_id\":14534,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Lucas Niang\",\"sportradar_id\":\"a829e280-38b4-41fc-a46e-a5c8034dafd2\",\"pandascore_id\":null,\"yahoo_id\":32766,\"last_name\":\"Niang\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"New Canaan (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'7\\\"\",\"search_full_name\":\"lucasniang\",\"birth_date\":\"1998-08-18\",\"espn_id\":null},\"7289\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605731738418,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"costin\",\"depth_chart_position\":\"NT\",\"player_id\":\"7289\",\"birth_city\":null,\"fantasy_data_id\":22285,\"years_exp\":0,\"hashtag\":\"#DougCostin-NFL-JAX-58\",\"search_first_name\":\"doug\",\"rotowire_id\":14951,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1967,\"age\":23,\"full_name\":\"Doug Costin\",\"sportradar_id\":\"cc5a9d21-10cd-4966-ad17-44edb238834d\",\"pandascore_id\":null,\"yahoo_id\":33122,\"last_name\":\"Costin\",\"metadata\":null,\"college\":\"Miami, O.\",\"high_school\":\"Bishop Shanahan (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dougcostin\",\"birth_date\":\"1997-10-05\",\"espn_id\":4038987},\"3274\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032773\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604983531174,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kwiatkoski\",\"depth_chart_position\":\"MLB\",\"player_id\":\"3274\",\"birth_city\":null,\"fantasy_data_id\":18035,\"years_exp\":4,\"hashtag\":\"#NickKwiatkoski-NFL-LV-44\",\"search_first_name\":\"nick\",\"rotowire_id\":11098,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1002,\"age\":27,\"full_name\":\"Nick Kwiatkoski\",\"sportradar_id\":\"6e16ec27-2cd9-49b6-848a-df17d654683d\",\"pandascore_id\":null,\"yahoo_id\":29347,\"last_name\":\"Kwiatkoski\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Bethel Park (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nickkwiatkoski\",\"birth_date\":\"1993-05-26\",\"espn_id\":2581818},\"5230\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034084\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606237552949,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"badgley\",\"depth_chart_position\":\"K\",\"player_id\":\"5230\",\"birth_city\":null,\"fantasy_data_id\":20144,\"years_exp\":2,\"hashtag\":\"#MichaelBadgley-NFL-LAC-4\",\"search_first_name\":\"michael\",\"rotowire_id\":12775,\"rotoworld_id\":13410,\"active\":true,\"search_rank\":400,\"age\":25,\"full_name\":\"Michael Badgley\",\"sportradar_id\":\"375b0d7f-8d03-4111-8c1b-62907f0326a1\",\"pandascore_id\":null,\"yahoo_id\":31366,\"last_name\":\"Badgley\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Summit (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"michaelbadgley\",\"birth_date\":\"1995-07-28\",\"espn_id\":3123052},\"7433\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gavin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"heslop\",\"depth_chart_position\":null,\"player_id\":\"7433\",\"birth_city\":null,\"fantasy_data_id\":22412,\"years_exp\":0,\"hashtag\":\"#GavinHeslop-NFL-SEA-38\",\"search_first_name\":\"gavin\",\"rotowire_id\":15123,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Gavin Heslop\",\"sportradar_id\":\"aaf9cdda-8da8-4b3d-95bf-6fea8070a537\",\"pandascore_id\":null,\"yahoo_id\":33283,\"last_name\":\"Heslop\",\"metadata\":null,\"college\":\"Stony Brook\",\"high_school\":\"Archbishop Stepinac (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"gavinheslop\",\"birth_date\":\"1997-11-13\",\"espn_id\":3912347},\"4922\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scantling\",\"depth_chart_position\":null,\"player_id\":\"4922\",\"birth_city\":null,\"fantasy_data_id\":18895,\"years_exp\":1,\"hashtag\":\"#GarrettScantling-NFL-ATL-89\",\"search_first_name\":\"garrett\",\"rotowire_id\":12193,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Garrett Scantling\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30110,\"last_name\":\"Scantling\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrettscantling\",\"birth_date\":null,\"espn_id\":null},\"233\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0025708\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599417660447,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"QB\",\"player_id\":\"233\",\"birth_city\":null,\"fantasy_data_id\":5834,\"years_exp\":13,\"hashtag\":\"#MattMoore-NFL-KC-8\",\"search_first_name\":\"matt\",\"rotowire_id\":5432,\"rotoworld_id\":4535,\"active\":true,\"search_rank\":502,\"age\":36,\"full_name\":\"Matt Moore\",\"sportradar_id\":\"76d7615e-8eb5-4761-b6a6-1e895d01baf3\",\"pandascore_id\":null,\"yahoo_id\":8544,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Hart (CA)\",\"depth_chart_order\":3,\"stats_id\":214201,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattmoore\",\"birth_date\":\"1984-08-09\",\"espn_id\":11128},\"346\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027057\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1538523904594,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tate\",\"depth_chart_position\":null,\"player_id\":\"346\",\"birth_city\":null,\"fantasy_data_id\":8373,\"years_exp\":11,\"hashtag\":\"#BrandonTate-NFL-FA-87\",\"search_first_name\":\"brandon\",\"rotowire_id\":6023,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Brandon Tate\",\"sportradar_id\":\"3289f9ce-e1d1-40ed-9d3f-242a1712c586\",\"pandascore_id\":null,\"yahoo_id\":9347,\"last_name\":\"Tate\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Hugh M. Cummings (NC)\",\"depth_chart_order\":null,\"stats_id\":288161,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandontate\",\"birth_date\":\"1987-10-05\",\"espn_id\":12597},\"50\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"50\",\"birth_city\":null,\"fantasy_data_id\":1482,\"years_exp\":5,\"hashtag\":\"#JordanPalmer-NFL-FA-5\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jordan Palmer\",\"sportradar_id\":\"f4bb8ed1-d8cd-4e8c-97ca-60d299fa30ce\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jordanpalmer\",\"birth_date\":\"1984-05-30\",\"espn_id\":null},\"3490\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032616\",\"first_name\":\"Marshall\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1543281304680,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"koehn\",\"depth_chart_position\":null,\"player_id\":\"3490\",\"birth_city\":null,\"fantasy_data_id\":18255,\"years_exp\":4,\"hashtag\":\"#MarshallKoehn-NFL-FA-9\",\"search_first_name\":\"marshall\",\"rotowire_id\":11097,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marshall Koehn\",\"sportradar_id\":\"2c0ebb74-96d8-4d13-9891-90bf9b15fd0e\",\"pandascore_id\":null,\"yahoo_id\":29834,\"last_name\":\"Koehn\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":611328,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marshallkoehn\",\"birth_date\":\"1992-08-29\",\"espn_id\":2582419},\"2937\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damond\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":null,\"player_id\":\"2937\",\"birth_city\":null,\"fantasy_data_id\":17407,\"years_exp\":0,\"hashtag\":\"#DamondPowell-NFL-FA-86\",\"search_first_name\":\"damond\",\"rotowire_id\":10601,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Damond Powell\",\"sportradar_id\":\"9205660c-1351-473d-8653-6a7b43a584df\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740731,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damondpowell\",\"birth_date\":\"1992-10-31\",\"espn_id\":null},\"2268\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031213\",\"first_name\":\"Rashaun\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"2268\",\"birth_city\":null,\"fantasy_data_id\":16679,\"years_exp\":6,\"hashtag\":\"#RashaunAllen-NFL-FA-88\",\"search_first_name\":\"rashaun\",\"rotowire_id\":9937,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Rashaun Allen\",\"sportradar_id\":\"0170285a-9b32-4177-bfd2-f6f6f112155f\",\"pandascore_id\":null,\"yahoo_id\":28253,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Southern U.\",\"high_school\":\"John Adams (OH)\",\"depth_chart_order\":null,\"stats_id\":562914,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rashaunallen\",\"birth_date\":\"1990-02-25\",\"espn_id\":17423},\"3035\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031771\",\"first_name\":\"De'Ondre\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567024827831,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wesley\",\"depth_chart_position\":null,\"player_id\":\"3035\",\"birth_city\":null,\"fantasy_data_id\":17740,\"years_exp\":5,\"hashtag\":\"#DeOndreWesley-NFL-FA-79\",\"search_first_name\":\"deondre\",\"rotowire_id\":10705,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"De'Ondre Wesley\",\"sportradar_id\":\"5f164b8f-0aee-4c48-a30d-996cd2142722\",\"pandascore_id\":null,\"yahoo_id\":28956,\"last_name\":\"Wesley\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Deer Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'6\\\"\",\"search_full_name\":\"deondrewesley\",\"birth_date\":\"1992-07-28\",\"espn_id\":3053814},\"992\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ricardo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lockette\",\"depth_chart_position\":null,\"player_id\":\"992\",\"birth_city\":null,\"fantasy_data_id\":13471,\"years_exp\":9,\"hashtag\":\"#RicardoLockette-NFL-FA-83\",\"search_first_name\":\"ricardo\",\"rotowire_id\":8014,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Ricardo Lockette\",\"sportradar_id\":\"213980bb-bc92-4780-98ca-c95dbcc15056\",\"pandascore_id\":null,\"yahoo_id\":25106,\"last_name\":\"Lockette\",\"metadata\":null,\"college\":\"Fort Valley State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":511355,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ricardolockette\",\"birth_date\":\"1986-05-21\",\"espn_id\":14280},\"4361\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033337\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567260002810,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"4361\",\"birth_city\":null,\"fantasy_data_id\":19218,\"years_exp\":3,\"hashtag\":\"#BrandonBell-NFL-FA-41\",\"search_first_name\":\"brandon\",\"rotowire_id\":12133,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Bell\",\"sportradar_id\":\"0cea85ba-f49b-4f4b-b50e-b96042a6a680\",\"pandascore_id\":null,\"yahoo_id\":30576,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandonbell\",\"birth_date\":\"1995-01-09\",\"espn_id\":3057972},\"2631\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Durell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"eskridge\",\"depth_chart_position\":null,\"player_id\":\"2631\",\"birth_city\":null,\"fantasy_data_id\":17099,\"years_exp\":1,\"hashtag\":\"#DurellEskridge-NFL-FA-37\",\"search_first_name\":\"durell\",\"rotowire_id\":10401,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Durell Eskridge\",\"sportradar_id\":\"ff3f0bd4-3728-4fbd-8852-87763136cf37\",\"pandascore_id\":null,\"yahoo_id\":28937,\"last_name\":\"Eskridge\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'3\\\"\",\"search_full_name\":\"durelleskridge\",\"birth_date\":\"1991-12-17\",\"espn_id\":2577585},\"6557\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035510\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606101310470,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6557\",\"birth_city\":null,\"fantasy_data_id\":21078,\"years_exp\":1,\"hashtag\":\"#JeffSmith-NFL-NYJ-16\",\"search_first_name\":\"jeff\",\"rotowire_id\":13934,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jeff Smith\",\"sportradar_id\":\"767b1112-c77a-4a58-89b4-30f1ffa2a497\",\"pandascore_id\":null,\"yahoo_id\":32533,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Clearwater Central Catholic (FL)\",\"depth_chart_order\":2,\"stats_id\":883429,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeffsmith\",\"birth_date\":\"1997-04-21\",\"espn_id\":3929118},\"7205\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harrell\",\"depth_chart_position\":null,\"player_id\":\"7205\",\"birth_city\":null,\"fantasy_data_id\":22208,\"years_exp\":0,\"hashtag\":\"#MarquelHarrell-NFL-FA-0\",\"search_first_name\":\"marquel\",\"rotowire_id\":14867,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Marquel Harrell\",\"sportradar_id\":\"c255066f-15de-4e9e-9de6-fca78d86b258\",\"pandascore_id\":null,\"yahoo_id\":33327,\"last_name\":\"Harrell\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marquelharrell\",\"birth_date\":\"1997-07-18\",\"espn_id\":3916944},\"2436\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032064\",\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534036805001,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smelter\",\"depth_chart_position\":null,\"player_id\":\"2436\",\"birth_city\":null,\"fantasy_data_id\":16893,\"years_exp\":5,\"hashtag\":\"#DeAndreSmelter-NFL-FA-15\",\"search_first_name\":\"deandre\",\"rotowire_id\":10232,\"rotoworld_id\":10430,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"DeAndre Smelter\",\"sportradar_id\":\"10cdb5a6-8990-49b7-8b9f-5a459d6d94b9\",\"pandascore_id\":null,\"yahoo_id\":28520,\"last_name\":\"Smelter\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748574,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deandresmelter\",\"birth_date\":\"1991-12-03\",\"espn_id\":3055912},\"1179\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029257\",\"first_name\":\"Jerel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1538442002752,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"worthy\",\"depth_chart_position\":null,\"player_id\":\"1179\",\"birth_city\":null,\"fantasy_data_id\":14299,\"years_exp\":8,\"hashtag\":\"#JerelWorthy-NFL-FA-56\",\"search_first_name\":\"jerel\",\"rotowire_id\":8156,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jerel Worthy\",\"sportradar_id\":\"b9d34a54-0475-417b-a2b5-6c0743b541ff\",\"pandascore_id\":null,\"yahoo_id\":25761,\"last_name\":\"Worthy\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Wayne (OH)\",\"depth_chart_order\":null,\"stats_id\":464291,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jerelworthy\",\"birth_date\":\"1990-04-26\",\"espn_id\":14967},\"5857\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035644\",\"first_name\":\"Noah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606521327902,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fant\",\"depth_chart_position\":\"TE\",\"player_id\":\"5857\",\"birth_city\":null,\"fantasy_data_id\":20753,\"years_exp\":1,\"hashtag\":\"#NoahFant-NFL-DEN-87\",\"search_first_name\":\"noah\",\"rotowire_id\":13426,\"rotoworld_id\":14050,\"active\":true,\"search_rank\":123,\"age\":23,\"full_name\":\"Noah Fant\",\"sportradar_id\":\"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f\",\"pandascore_id\":null,\"yahoo_id\":31852,\"last_name\":\"Fant\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Iowa\",\"high_school\":\"Omaha South (NE)\",\"depth_chart_order\":1,\"stats_id\":923911,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'4\\\"\",\"search_full_name\":\"noahfant\",\"birth_date\":\"1997-11-20\",\"espn_id\":4036131},\"2815\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"riggs\",\"depth_chart_position\":null,\"player_id\":\"2815\",\"birth_city\":null,\"fantasy_data_id\":17283,\"years_exp\":5,\"hashtag\":\"#CodyRiggs-NFL-FA-31\",\"search_first_name\":\"cody\",\"rotowire_id\":10431,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cody Riggs\",\"sportradar_id\":\"82e4c9bb-c833-45cb-ba54-afee1e3971ce\",\"pandascore_id\":null,\"yahoo_id\":29060,\"last_name\":\"Riggs\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"codyriggs\",\"birth_date\":\"1991-12-30\",\"espn_id\":2516063},\"958\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"958\",\"birth_city\":null,\"fantasy_data_id\":13341,\"years_exp\":9,\"hashtag\":\"#JoeMorgan-NFL-FA-16\",\"search_first_name\":\"joe\",\"rotowire_id\":7408,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Joe Morgan\",\"sportradar_id\":\"927301a1-5905-4a22-a85f-acc56db126c9\",\"pandascore_id\":null,\"yahoo_id\":25290,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Walsh\",\"high_school\":\"McKinley (OH)\",\"depth_chart_order\":null,\"stats_id\":333427,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joemorgan\",\"birth_date\":\"1988-03-28\",\"espn_id\":14424},\"5456\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034182\",\"first_name\":\"Randin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584654635316,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crecelius\",\"depth_chart_position\":null,\"player_id\":\"5456\",\"birth_city\":null,\"fantasy_data_id\":20242,\"years_exp\":2,\"hashtag\":\"#RandinCrecelius-NFL-FA-0\",\"search_first_name\":\"randin\",\"rotowire_id\":13122,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Randin Crecelius\",\"sportradar_id\":\"4ed28749-5605-4706-a6c8-565dcede96bb\",\"pandascore_id\":null,\"yahoo_id\":31249,\"last_name\":\"Crecelius\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"randincrecelius\",\"birth_date\":\"1996-08-05\",\"espn_id\":3119531},\"1737\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028986\",\"first_name\":\"Case\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603074611911,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"keenum\",\"depth_chart_position\":\"QB\",\"player_id\":\"1737\",\"birth_city\":null,\"fantasy_data_id\":15694,\"years_exp\":8,\"hashtag\":\"#CaseKeenum-NFL-CLE-5\",\"search_first_name\":\"case\",\"rotowire_id\":8065,\"rotoworld_id\":7696,\"active\":true,\"search_rank\":457,\"age\":32,\"full_name\":\"Case Keenum\",\"sportradar_id\":\"1b3d350a-478b-4542-a430-d12cc96adc22\",\"pandascore_id\":null,\"yahoo_id\":26483,\"last_name\":\"Keenum\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Wylie (TX)\",\"depth_chart_order\":2,\"stats_id\":338280,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"casekeenum\",\"birth_date\":\"1988-02-17\",\"espn_id\":15168},\"5934\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035279\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606065617640,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"omenihu\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5934\",\"birth_city\":null,\"fantasy_data_id\":20901,\"years_exp\":1,\"hashtag\":\"#CharlesOmenihu-NFL-HOU-94\",\"search_first_name\":\"charles\",\"rotowire_id\":13791,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1585,\"age\":23,\"full_name\":\"Charles Omenihu\",\"sportradar_id\":\"eff1c40e-715c-49c4-93d8-6155322c1205\",\"pandascore_id\":null,\"yahoo_id\":31993,\"last_name\":\"Omenihu\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Rowlett (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"charlesomenihu\",\"birth_date\":\"1997-08-20\",\"espn_id\":3929865},\"6624\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035056\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1583968209057,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":null,\"player_id\":\"6624\",\"birth_city\":null,\"fantasy_data_id\":21500,\"years_exp\":1,\"hashtag\":\"#JoshuaSimmons-NFL-FA-0\",\"search_first_name\":\"joshua\",\"rotowire_id\":13594,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joshua Simmons\",\"sportradar_id\":\"3461b2e5-e015-4f0f-a2a4-a5116732ca98\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"Limestone\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshuasimmons\",\"birth_date\":\"1996-07-01\",\"espn_id\":3155134},\"2495\":{\"position\":\"TE\",\"injury_notes\":\"O'Leary will miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\"00-0032117\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1592942754230,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"oleary\",\"depth_chart_position\":\"TE\",\"player_id\":\"2495\",\"birth_city\":null,\"fantasy_data_id\":16954,\"years_exp\":5,\"hashtag\":\"#NickOLeary-NFL-LV-84\",\"search_first_name\":\"nick\",\"rotowire_id\":10250,\"rotoworld_id\":null,\"active\":true,\"search_rank\":424,\"age\":28,\"full_name\":\"Nick O'Leary\",\"sportradar_id\":\"c257b2e6-dfc9-45c8-b30c-a497f2ce82a2\",\"pandascore_id\":null,\"yahoo_id\":28582,\"last_name\":\"O'Leary\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Dwyer (FL)\",\"depth_chart_order\":5,\"stats_id\":605423,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickoleary\",\"birth_date\":\"1992-08-31\",\"espn_id\":2576804},\"4868\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547441106266,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilks\",\"depth_chart_position\":null,\"player_id\":\"4868\",\"birth_city\":null,\"fantasy_data_id\":19768,\"years_exp\":0,\"hashtag\":\"#SteveWilks-NFL-FA-0\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":12146,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Steve Wilks\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wilks\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"stevewilks\",\"birth_date\":null,\"espn_id\":null},\"2445\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031584\",\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605589821736,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"amos\",\"depth_chart_position\":\"FS\",\"player_id\":\"2445\",\"birth_city\":null,\"fantasy_data_id\":16902,\"years_exp\":5,\"hashtag\":\"#AdrianAmos-NFL-GB-31\",\"search_first_name\":\"adrian\",\"rotowire_id\":10390,\"rotoworld_id\":10469,\"active\":true,\"search_rank\":895,\"age\":27,\"full_name\":\"Adrian Amos\",\"sportradar_id\":\"81aaf55d-df8f-47d6-9bf1-06b78df37bf6\",\"pandascore_id\":null,\"yahoo_id\":28530,\"last_name\":\"Amos\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Calvert Hall (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'0\\\"\",\"search_full_name\":\"adrianamos\",\"birth_date\":\"1993-04-29\",\"espn_id\":2582132},\"5427\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Laquvionte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532473801543,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gonzalez\",\"depth_chart_position\":null,\"player_id\":\"5427\",\"birth_city\":null,\"fantasy_data_id\":20525,\"years_exp\":1,\"hashtag\":\"#LaquvionteGonzalez-NFL-LAR-11\",\"search_first_name\":\"laquvionte\",\"rotowire_id\":13098,\"rotoworld_id\":null,\"active\":true,\"search_rank\":987,\"age\":null,\"full_name\":\"Laquvionte Gonzalez\",\"sportradar_id\":\"caab0f2a-00d6-413f-8ac1-8f01251d7ff9\",\"pandascore_id\":null,\"yahoo_id\":31389,\"last_name\":\"Gonzalez\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744624,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'10\\\"\",\"search_full_name\":\"laquviontegonzalez\",\"birth_date\":null,\"espn_id\":3051813},\"5518\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034471\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"battle\",\"depth_chart_position\":null,\"player_id\":\"5518\",\"birth_city\":null,\"fantasy_data_id\":20216,\"years_exp\":2,\"hashtag\":\"#ElijahBattle-NFL-FA-7\",\"search_first_name\":\"elijah\",\"rotowire_id\":13208,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Elijah Battle\",\"sportradar_id\":\"dbe9a91f-bc71-48a2-aaeb-8f7f3d3fec14\",\"pandascore_id\":null,\"yahoo_id\":31297,\"last_name\":\"Battle\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"elijahbattle\",\"birth_date\":null,\"espn_id\":4039221},\"7401\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalil\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"QB\"],\"news_updated\":1599693360149,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tate\",\"depth_chart_position\":null,\"player_id\":\"7401\",\"birth_city\":null,\"fantasy_data_id\":22386,\"years_exp\":0,\"hashtag\":\"#KhalilTate-NFL-FA-0\",\"search_first_name\":\"khalil\",\"rotowire_id\":14481,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Khalil Tate\",\"sportradar_id\":\"dc3500ba-a2ea-4e90-af11-cd2f16884bb0\",\"pandascore_id\":null,\"yahoo_id\":32971,\"last_name\":\"Tate\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khaliltate\",\"birth_date\":\"1998-10-23\",\"espn_id\":null},\"575\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027416\",\"first_name\":\"Barry\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1544825424860,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"church\",\"depth_chart_position\":null,\"player_id\":\"575\",\"birth_city\":null,\"fantasy_data_id\":11271,\"years_exp\":10,\"hashtag\":\"#BarryChurch-NFL-FA-42\",\"search_first_name\":\"barry\",\"rotowire_id\":7057,\"rotoworld_id\":6363,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Barry Church\",\"sportradar_id\":\"ad9a6262-7df3-41a8-9753-b89866f5cd0e\",\"pandascore_id\":null,\"yahoo_id\":24603,\"last_name\":\"Church\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Penn Hills (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"barrychurch\",\"birth_date\":\"1988-02-11\",\"espn_id\":13338},\"2240\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031366\",\"first_name\":\"Deone\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599611412820,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bucannon\",\"depth_chart_position\":null,\"player_id\":\"2240\",\"birth_city\":null,\"fantasy_data_id\":16642,\"years_exp\":6,\"hashtag\":\"#DeoneBucannon-NFL-ATL-36\",\"search_first_name\":\"deone\",\"rotowire_id\":9271,\"rotoworld_id\":9591,\"active\":true,\"search_rank\":840,\"age\":28,\"full_name\":\"Deone Bucannon\",\"sportradar_id\":\"a1902bda-47bc-4436-9165-2d79620e4030\",\"pandascore_id\":null,\"yahoo_id\":27555,\"last_name\":\"Bucannon\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Vanden (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deonebucannon\",\"birth_date\":\"1992-08-30\",\"espn_id\":16723},\"677\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darryl\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1511914202328,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tapp\",\"depth_chart_position\":null,\"player_id\":\"677\",\"birth_city\":null,\"fantasy_data_id\":11937,\"years_exp\":14,\"hashtag\":\"#DarrylTapp-NFL-FA-56\",\"search_first_name\":\"darryl\",\"rotowire_id\":4909,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Darryl Tapp\",\"sportradar_id\":\"9336ebb4-0650-4485-a54a-30cea6a57623\",\"pandascore_id\":null,\"yahoo_id\":7812,\"last_name\":\"Tapp\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Deep Creek (VA)\",\"depth_chart_order\":null,\"stats_id\":179895,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'1\\\"\",\"search_full_name\":\"darryltapp\",\"birth_date\":\"1984-09-13\",\"espn_id\":9649},\"4817\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herman\",\"depth_chart_position\":null,\"player_id\":\"4817\",\"birth_city\":null,\"fantasy_data_id\":19726,\"years_exp\":2,\"hashtag\":\"#JimmyHerman-NFL-FA-29\",\"search_first_name\":\"jimmy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jimmy Herman\",\"sportradar_id\":\"409f94a2-8c00-4f6c-9047-745f2771352b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Herman\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jimmyherman\",\"birth_date\":\"1993-12-28\",\"espn_id\":2977767},\"6242\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wade\",\"depth_chart_position\":null,\"player_id\":\"6242\",\"birth_city\":null,\"fantasy_data_id\":21173,\"years_exp\":0,\"hashtag\":\"#AaronWade-NFL-FA-0\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Aaron Wade\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wade\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"aaronwade\",\"birth_date\":null,\"espn_id\":3125366},\"3343\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032792\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1600617606377,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sudfeld\",\"depth_chart_position\":\"QB\",\"player_id\":\"3343\",\"birth_city\":null,\"fantasy_data_id\":18104,\"years_exp\":4,\"hashtag\":\"#NateSudfeld-NFL-PHI-7\",\"search_first_name\":\"nate\",\"rotowire_id\":11187,\"rotoworld_id\":11476,\"active\":true,\"search_rank\":1027,\"age\":27,\"full_name\":\"Nate Sudfeld\",\"sportradar_id\":\"e1c506bd-9e36-45e7-b2b9-fff6a9728a06\",\"pandascore_id\":null,\"yahoo_id\":29421,\"last_name\":\"Sudfeld\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Modesto Christian (CA)\",\"depth_chart_order\":3,\"stats_id\":696112,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'6\\\"\",\"search_full_name\":\"natesudfeld\",\"birth_date\":\"1993-10-07\",\"espn_id\":2979501},\"4105\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033912\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606104011419,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"willis\",\"depth_chart_position\":null,\"player_id\":\"4105\",\"birth_city\":null,\"fantasy_data_id\":18951,\"years_exp\":3,\"hashtag\":\"#JordanWillis-NFL-SF-78\",\"search_first_name\":\"jordan\",\"rotowire_id\":11953,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1147,\"age\":25,\"full_name\":\"Jordan Willis\",\"sportradar_id\":\"92c77d16-f8bf-4716-bcde-6328838f4e65\",\"pandascore_id\":null,\"yahoo_id\":30186,\"last_name\":\"Willis\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Rockhurst (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanwillis\",\"birth_date\":\"1995-05-02\",\"espn_id\":3052434},\"993\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028111\",\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1536461702767,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"maxwell\",\"depth_chart_position\":null,\"player_id\":\"993\",\"birth_city\":null,\"fantasy_data_id\":13472,\"years_exp\":9,\"hashtag\":\"#ByronMaxwell-NFL-FA-41\",\"search_first_name\":\"byron\",\"rotowire_id\":7603,\"rotoworld_id\":6680,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Byron Maxwell\",\"sportradar_id\":\"fc309bb0-d8f9-49a8-b2d3-5c6eea4dec24\",\"pandascore_id\":null,\"yahoo_id\":24960,\"last_name\":\"Maxwell\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Fort Dorchester (SC)\",\"depth_chart_order\":null,\"stats_id\":332967,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"byronmaxwell\",\"birth_date\":\"1988-02-23\",\"espn_id\":14133},\"4353\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033376\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"DL\"],\"news_updated\":1606530329662,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"ricard\",\"depth_chart_position\":\"RB\",\"player_id\":\"4353\",\"birth_city\":null,\"fantasy_data_id\":19209,\"years_exp\":3,\"hashtag\":\"#PatrickRicard-NFL-BAL-42\",\"search_first_name\":\"patrick\",\"rotowire_id\":12298,\"rotoworld_id\":null,\"active\":true,\"search_rank\":463,\"age\":26,\"full_name\":\"Patrick Ricard\",\"sportradar_id\":\"cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5\",\"pandascore_id\":null,\"yahoo_id\":30592,\"last_name\":\"Ricard\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":\"David Prouty (MA)\",\"depth_chart_order\":5,\"stats_id\":658389,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"patrickricard\",\"birth_date\":\"1994-05-27\",\"espn_id\":2975417},\"2252\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"2252\",\"birth_city\":null,\"fantasy_data_id\":16657,\"years_exp\":5,\"hashtag\":\"#CoreyWashington-NFL-FA-13\",\"search_first_name\":\"corey\",\"rotowire_id\":9883,\"rotoworld_id\":10057,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Corey Washington\",\"sportradar_id\":\"ddc37660-baaa-458d-86d3-36fa251a407d\",\"pandascore_id\":null,\"yahoo_id\":28121,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Newberry\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":794240,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coreywashington\",\"birth_date\":\"1991-12-29\",\"espn_id\":17279},\"3878\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033043\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567428346930,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"traylor\",\"depth_chart_position\":null,\"player_id\":\"3878\",\"birth_city\":null,\"fantasy_data_id\":18700,\"years_exp\":4,\"hashtag\":\"#AustinTraylor-NFL-FA-87\",\"search_first_name\":\"austin\",\"rotowire_id\":11277,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Austin Traylor\",\"sportradar_id\":\"8f9e7e75-ceab-4483-a234-8318f6923f30\",\"pandascore_id\":null,\"yahoo_id\":30008,\"last_name\":\"Traylor\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606529,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austintraylor\",\"birth_date\":\"1993-09-03\",\"espn_id\":2576449},\"887\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Denarius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"887\",\"birth_city\":null,\"fantasy_data_id\":13069,\"years_exp\":9,\"hashtag\":\"#DenariusMoore-NFL-FA-17\",\"search_first_name\":\"denarius\",\"rotowire_id\":7398,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Denarius Moore\",\"sportradar_id\":\"9c9c6cfc-20b1-4ee4-87e5-1e5acf47fb36\",\"pandascore_id\":null,\"yahoo_id\":24935,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Tatum (TX)\",\"depth_chart_order\":null,\"stats_id\":397990,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"denariusmoore\",\"birth_date\":\"1988-12-09\",\"espn_id\":14153},\"3298\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1526342409105,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanchez\",\"depth_chart_position\":null,\"player_id\":\"3298\",\"birth_city\":null,\"fantasy_data_id\":18059,\"years_exp\":3,\"hashtag\":\"#ZackSanchez-NFL-FA-31\",\"search_first_name\":\"zack\",\"rotowire_id\":10966,\"rotoworld_id\":11445,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Zack Sanchez\",\"sportradar_id\":\"ec425946-fba0-48fd-9a72-a4b0be4b1275\",\"pandascore_id\":null,\"yahoo_id\":29375,\"last_name\":\"Sanchez\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691277,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"zacksanchez\",\"birth_date\":\"1995-04-08\",\"espn_id\":2976596},\"345\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026625\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603036507952,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hoyer\",\"depth_chart_position\":\"QB\",\"player_id\":\"345\",\"birth_city\":null,\"fantasy_data_id\":8358,\"years_exp\":11,\"hashtag\":\"#BrianHoyer-NFL-NE-2\",\"search_first_name\":\"brian\",\"rotowire_id\":6140,\"rotoworld_id\":5463,\"active\":true,\"search_rank\":468,\"age\":35,\"full_name\":\"Brian Hoyer\",\"sportradar_id\":\"af4ba620-2f00-4b00-9111-7897f2b1cde8\",\"pandascore_id\":null,\"yahoo_id\":9547,\"last_name\":\"Hoyer\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan State\",\"high_school\":\"St. Ignatius (OH)\",\"depth_chart_order\":3,\"stats_id\":264725,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brianhoyer\",\"birth_date\":\"1985-10-13\",\"espn_id\":12477},\"2086\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031238\",\"first_name\":\"Weston\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603161354558,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"richburg\",\"depth_chart_position\":null,\"player_id\":\"2086\",\"birth_city\":null,\"fantasy_data_id\":16400,\"years_exp\":6,\"hashtag\":\"#WestonRichburg-NFL-SF-58\",\"search_first_name\":\"weston\",\"rotowire_id\":9431,\"rotoworld_id\":9534,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Weston Richburg\",\"sportradar_id\":\"f42981b3-d272-4438-a024-f28277392ec8\",\"pandascore_id\":null,\"yahoo_id\":27571,\"last_name\":\"Richburg\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Bushland (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"westonrichburg\",\"birth_date\":\"1991-07-09\",\"espn_id\":16746},\"5219\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034620\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":null,\"player_id\":\"5219\",\"birth_city\":null,\"fantasy_data_id\":20190,\"years_exp\":2,\"hashtag\":\"#AntonioSimmons-NFL-FA-95\",\"search_first_name\":\"antonio\",\"rotowire_id\":13291,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Antonio Simmons\",\"sportradar_id\":\"34053914-0384-4551-a5e9-e3bd13c09b02\",\"pandascore_id\":null,\"yahoo_id\":31277,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"antoniosimmons\",\"birth_date\":\"1996-02-10\",\"espn_id\":3116632},\"6765\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dodds\",\"depth_chart_position\":null,\"player_id\":\"6765\",\"birth_city\":null,\"fantasy_data_id\":21710,\"years_exp\":0,\"hashtag\":\"#EdDodds-NFL-FA-0\",\"search_first_name\":\"ed\",\"rotowire_id\":null,\"rotoworld_id\":14855,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ed Dodds\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dodds\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"eddodds\",\"birth_date\":null,\"espn_id\":null},\"583\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027865\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603144219344,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":\"LDE\",\"player_id\":\"583\",\"birth_city\":null,\"fantasy_data_id\":11315,\"years_exp\":10,\"hashtag\":\"#BrandonGraham-NFL-PHI-55\",\"search_first_name\":\"brandon\",\"rotowire_id\":6571,\"rotoworld_id\":5756,\"active\":true,\"search_rank\":609,\"age\":32,\"full_name\":\"Brandon Graham\",\"sportradar_id\":\"b3e41b52-a8aa-4be8-8513-8ede6f3f83d3\",\"pandascore_id\":null,\"yahoo_id\":23988,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Crockett (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandongraham\",\"birth_date\":\"1988-04-03\",\"espn_id\":13239},\"3586\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davie\",\"depth_chart_position\":null,\"player_id\":\"3586\",\"birth_city\":null,\"fantasy_data_id\":18365,\"years_exp\":0,\"hashtag\":\"#DanielDavie-NFL-FA-38\",\"search_first_name\":\"daniel\",\"rotowire_id\":11408,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Daniel Davie\",\"sportradar_id\":\"006a0bbc-ffbe-4ba7-b9f1-11e466762631\",\"pandascore_id\":null,\"yahoo_id\":29598,\"last_name\":\"Davie\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"danieldavie\",\"birth_date\":\"1993-08-04\",\"espn_id\":null},\"2716\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"SaQwan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"2716\",\"birth_city\":null,\"fantasy_data_id\":17184,\"years_exp\":5,\"hashtag\":\"#SaQwanEdwards-NFL-FA-30\",\"search_first_name\":\"saqwan\",\"rotowire_id\":10734,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"SaQwan Edwards\",\"sportradar_id\":\"35dc406a-639f-481a-9ebc-e549da378eca\",\"pandascore_id\":null,\"yahoo_id\":29081,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":\"Manvel High School \",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"saqwanedwards\",\"birth_date\":\"1992-05-13\",\"espn_id\":3895392},\"7480\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"magee\",\"depth_chart_position\":null,\"player_id\":\"7480\",\"birth_city\":null,\"fantasy_data_id\":22455,\"years_exp\":0,\"hashtag\":\"#AdrianMagee-NFL-FA-0\",\"search_first_name\":\"adrian\",\"rotowire_id\":14962,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Adrian Magee\",\"sportradar_id\":\"833e8b37-3ee5-450b-b557-76f11024e07a\",\"pandascore_id\":null,\"yahoo_id\":33116,\"last_name\":\"Magee\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"343\",\"height\":\"6'4\\\"\",\"search_full_name\":\"adrianmagee\",\"birth_date\":\"1996-11-13\",\"espn_id\":null},\"4603\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033758\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596583249972,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"valoaga\",\"depth_chart_position\":null,\"player_id\":\"4603\",\"birth_city\":null,\"fantasy_data_id\":19492,\"years_exp\":3,\"hashtag\":\"#JeremiahValoaga-NFL-LV-95\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":12312,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1266,\"age\":26,\"full_name\":\"Jeremiah Valoaga\",\"sportradar_id\":\"27488f5f-e895-499b-9e33-fddd3d5d603c\",\"pandascore_id\":null,\"yahoo_id\":30778,\"last_name\":\"Valoaga\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"Channel Island (CA)\",\"depth_chart_order\":null,\"stats_id\":693128,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jeremiahvaloaga\",\"birth_date\":\"1994-11-15\",\"espn_id\":2976151},\"6758\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lafleur\",\"depth_chart_position\":null,\"player_id\":\"6758\",\"birth_city\":null,\"fantasy_data_id\":21702,\"years_exp\":0,\"hashtag\":\"#MikeLafleur-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":14845,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Lafleur\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lafleur\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikelafleur\",\"birth_date\":null,\"espn_id\":null},\"6059\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035592\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606346402280,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fulgham\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6059\",\"birth_city\":null,\"fantasy_data_id\":20762,\"years_exp\":1,\"hashtag\":\"#TravisFulgham-NFL-PHI-13\",\"search_first_name\":\"travis\",\"rotowire_id\":13735,\"rotoworld_id\":null,\"active\":true,\"search_rank\":543,\"age\":25,\"full_name\":\"Travis Fulgham\",\"sportradar_id\":\"030f3ecf-f32f-497d-96a8-8f28d44fc311\",\"pandascore_id\":null,\"yahoo_id\":32016,\"last_name\":\"Fulgham\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"Broad Run (VA)\",\"depth_chart_order\":1,\"stats_id\":839325,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"travisfulgham\",\"birth_date\":\"1995-09-13\",\"espn_id\":3139522},\"3532\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032902\",\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1554823821039,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farrow\",\"depth_chart_position\":null,\"player_id\":\"3532\",\"birth_city\":null,\"fantasy_data_id\":18299,\"years_exp\":4,\"hashtag\":\"#KennethFarrow-NFL-FA-34\",\"search_first_name\":\"kenneth\",\"rotowire_id\":11209,\"rotoworld_id\":11684,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kenneth Farrow\",\"sportradar_id\":\"81050032-4268-4906-874f-3463a6b57a3d\",\"pandascore_id\":null,\"yahoo_id\":29518,\"last_name\":\"Farrow\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609745,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kennethfarrow\",\"birth_date\":\"1993-03-07\",\"espn_id\":2575553},\"3705\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032710\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1539109202859,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mckinnon\",\"depth_chart_position\":null,\"player_id\":\"3705\",\"birth_city\":null,\"fantasy_data_id\":18511,\"years_exp\":4,\"hashtag\":\"#JeremiahMcKinnon-NFL-FA-38\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":11373,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jeremiah McKinnon\",\"sportradar_id\":\"a4f5b5d2-e56f-45e4-b448-ce8ac8b77706\",\"pandascore_id\":null,\"yahoo_id\":29896,\"last_name\":\"McKinnon\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jeremiahmckinnon\",\"birth_date\":\"1993-06-29\",\"espn_id\":2981866},\"2407\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031567\",\"first_name\":\"Daryl\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1585263347586,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RT\",\"player_id\":\"2407\",\"birth_city\":null,\"fantasy_data_id\":16863,\"years_exp\":5,\"hashtag\":\"#DarylWilliams-NFL-BUF-75\",\"search_first_name\":\"daryl\",\"rotowire_id\":10284,\"rotoworld_id\":10498,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Daryl Williams\",\"sportradar_id\":\"b167835a-3f62-4755-9acd-319c5a3903e3\",\"pandascore_id\":null,\"yahoo_id\":28490,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Lake Dallas (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'6\\\"\",\"search_full_name\":\"darylwilliams\",\"birth_date\":\"1992-08-31\",\"espn_id\":2514244},\"696\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clemons\",\"depth_chart_position\":null,\"player_id\":\"696\",\"birth_city\":null,\"fantasy_data_id\":12116,\"years_exp\":17,\"hashtag\":\"#ChrisClemons-NFL-FA-91\",\"search_first_name\":\"chris\",\"rotowire_id\":4356,\"rotoworld_id\":140,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Chris Clemons\",\"sportradar_id\":\"3440ed42-f627-480d-972b-7bac850b7cfd\",\"pandascore_id\":null,\"yahoo_id\":6704,\"last_name\":\"Clemons\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Griffin (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisclemons\",\"birth_date\":\"1981-10-30\",\"espn_id\":4864},\"1477\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mychal\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1519161001153,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rivera\",\"depth_chart_position\":null,\"player_id\":\"1477\",\"birth_city\":null,\"fantasy_data_id\":15072,\"years_exp\":7,\"hashtag\":\"#MychalRivera-NFL-FA-81\",\"search_first_name\":\"mychal\",\"rotowire_id\":8791,\"rotoworld_id\":8587,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Mychal Rivera\",\"sportradar_id\":\"80eb851e-3b2c-4c0f-bf35-92e1ec91b013\",\"pandascore_id\":null,\"yahoo_id\":26807,\"last_name\":\"Rivera\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Birmingham (CA)\",\"depth_chart_order\":null,\"stats_id\":459200,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mychalrivera\",\"birth_date\":\"1990-09-08\",\"espn_id\":15923},\"5382\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034767\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599011434096,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"5382\",\"birth_city\":null,\"fantasy_data_id\":19948,\"years_exp\":2,\"hashtag\":\"#NickNelson-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":12527,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1360,\"age\":23,\"full_name\":\"Nick Nelson\",\"sportradar_id\":\"91714138-9d0c-446d-b509-709d95f9202b\",\"pandascore_id\":null,\"yahoo_id\":31080,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":834585,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nicknelson\",\"birth_date\":\"1996-10-16\",\"espn_id\":3124574},\"5639\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034606\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1570586105937,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"winslow\",\"depth_chart_position\":null,\"player_id\":\"5639\",\"birth_city\":null,\"fantasy_data_id\":20607,\"years_exp\":2,\"hashtag\":\"#RyanWinslow-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":12941,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ryan Winslow\",\"sportradar_id\":\"80ebeab8-891e-4a54-80ec-3f102fed7cc7\",\"pandascore_id\":null,\"yahoo_id\":31670,\"last_name\":\"Winslow\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryanwinslow\",\"birth_date\":\"1994-04-30\",\"espn_id\":3045166},\"508\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nolan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1507731661252,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carroll\",\"depth_chart_position\":null,\"player_id\":\"508\",\"birth_city\":null,\"fantasy_data_id\":10953,\"years_exp\":10,\"hashtag\":\"#NolanCarroll-NFL-FA-24\",\"search_first_name\":\"nolan\",\"rotowire_id\":6637,\"rotoworld_id\":5919,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Nolan Carroll\",\"sportradar_id\":\"15e1bf07-e492-4fb9-a7b7-d9089ba9537d\",\"pandascore_id\":null,\"yahoo_id\":24121,\"last_name\":\"Carroll\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Clay (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nolancarroll\",\"birth_date\":\"1987-01-18\",\"espn_id\":13333},\"2397\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032227\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1596228318298,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heuerman\",\"depth_chart_position\":\"TE\",\"player_id\":\"2397\",\"birth_city\":null,\"fantasy_data_id\":16853,\"years_exp\":5,\"hashtag\":\"#JeffHeuerman-NFL-FA-0\",\"search_first_name\":\"jeff\",\"rotowire_id\":10246,\"rotoworld_id\":10492,\"active\":true,\"search_rank\":883,\"age\":27,\"full_name\":\"Jeff Heuerman\",\"sportradar_id\":\"1fe3aadd-336b-4838-888e-8c9609747afc\",\"pandascore_id\":null,\"yahoo_id\":28480,\"last_name\":\"Heuerman\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":593517,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeffheuerman\",\"birth_date\":\"1992-11-24\",\"espn_id\":2576389},\"6477\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"6477\",\"birth_city\":null,\"fantasy_data_id\":21472,\"years_exp\":0,\"hashtag\":\"#JoshWatson-NFL-DEN-54\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Watson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Watson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshwatson\",\"birth_date\":\"1996-05-20\",\"espn_id\":null},\"613\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027681\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1547658927990,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lafell\",\"depth_chart_position\":null,\"player_id\":\"613\",\"birth_city\":null,\"fantasy_data_id\":11463,\"years_exp\":10,\"hashtag\":\"#BrandonLaFell-NFL-FA-19\",\"search_first_name\":\"brandon\",\"rotowire_id\":6503,\"rotoworld_id\":5188,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Brandon LaFell\",\"sportradar_id\":\"5707d2b0-ea9e-4a5e-8289-9d52197301d9\",\"pandascore_id\":null,\"yahoo_id\":24053,\"last_name\":\"LaFell\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Mirabeau B. Lamar (TX)\",\"depth_chart_order\":null,\"stats_id\":303885,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonlafell\",\"birth_date\":\"1986-11-04\",\"espn_id\":12576},\"6084\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035258\",\"first_name\":\"Hjalte\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606174216185,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"froholdt\",\"depth_chart_position\":\"C\",\"player_id\":\"6084\",\"birth_city\":null,\"fantasy_data_id\":20761,\"years_exp\":1,\"hashtag\":\"#HjalteFroholdt-NFL-HOU-64\",\"search_first_name\":\"hjalte\",\"rotowire_id\":13856,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Hjalte Froholdt\",\"sportradar_id\":\"04ca77dd-b55f-439e-a593-37dfc8ea8320\",\"pandascore_id\":null,\"yahoo_id\":31950,\"last_name\":\"Froholdt\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arkansas\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hjaltefroholdt\",\"birth_date\":\"1996-08-20\",\"espn_id\":3886633},\"1732\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":null,\"player_id\":\"1732\",\"birth_city\":null,\"fantasy_data_id\":15679,\"years_exp\":2,\"hashtag\":\"#WillieJefferson-NFL-FA-46\",\"search_first_name\":\"willie\",\"rotowire_id\":9020,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Willie Jefferson\",\"sportradar_id\":\"8bcbf9cb-f0d9-427c-8db2-532655cfe8ca\",\"pandascore_id\":null,\"yahoo_id\":27329,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Stephen F Austin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'5\\\"\",\"search_full_name\":\"williejefferson\",\"birth_date\":\"1991-01-31\",\"espn_id\":16556},\"4287\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033533\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565997649568,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holsey\",\"depth_chart_position\":null,\"player_id\":\"4287\",\"birth_city\":null,\"fantasy_data_id\":19133,\"years_exp\":3,\"hashtag\":\"#JoshuaHolsey-NFL-FA-44\",\"search_first_name\":\"joshua\",\"rotowire_id\":12170,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joshua Holsey\",\"sportradar_id\":\"e8e8cc9e-678e-4da1-8a23-cb53f15a9b9a\",\"pandascore_id\":null,\"yahoo_id\":30348,\"last_name\":\"Holsey\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":682545,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshuaholsey\",\"birth_date\":\"1994-06-25\",\"espn_id\":2971036},\"4827\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Germone\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hopper\",\"depth_chart_position\":null,\"player_id\":\"4827\",\"birth_city\":null,\"fantasy_data_id\":19731,\"years_exp\":2,\"hashtag\":\"#GermoneHopper-NFL-FA-16\",\"search_first_name\":\"germone\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Germone Hopper\",\"sportradar_id\":\"d080f23b-b701-4391-b3e6-9c3eb1426eb1\",\"pandascore_id\":null,\"yahoo_id\":30939,\"last_name\":\"Hopper\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653106,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'0\\\"\",\"search_full_name\":\"germonehopper\",\"birth_date\":\"1993-10-22\",\"espn_id\":2977663},\"5175\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034499\",\"first_name\":\"Jawill\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1565478624573,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5175\",\"birth_city\":null,\"fantasy_data_id\":20170,\"years_exp\":2,\"hashtag\":\"#JawillDavis-NFL-FA-1\",\"search_first_name\":\"jawill\",\"rotowire_id\":13275,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jawill Davis\",\"sportradar_id\":\"0f28eda1-8042-4d0c-9392-81ef58be62a5\",\"pandascore_id\":null,\"yahoo_id\":31551,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":788342,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jawilldavis\",\"birth_date\":\"1995-04-06\",\"espn_id\":3066147},\"5801\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034893\",\"first_name\":\"Kobe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535838644036,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccrary\",\"depth_chart_position\":null,\"player_id\":\"5801\",\"birth_city\":null,\"fantasy_data_id\":20700,\"years_exp\":2,\"hashtag\":\"#KobeMcCrary-NFL-FA-48\",\"search_first_name\":\"kobe\",\"rotowire_id\":13398,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kobe McCrary\",\"sportradar_id\":\"88c294db-5c85-48dd-9b0a-7c31a9eae32f\",\"pandascore_id\":null,\"yahoo_id\":31798,\"last_name\":\"McCrary\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":911246,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kobemccrary\",\"birth_date\":\"1994-02-19\",\"espn_id\":4034782},\"5221\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1532465401454,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"5221\",\"birth_city\":null,\"fantasy_data_id\":20156,\"years_exp\":2,\"hashtag\":\"#MikeMcCray-NFL-FA-58\",\"search_first_name\":\"mike\",\"rotowire_id\":12772,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mike McCray\",\"sportradar_id\":\"38716f56-be76-480e-b248-e3b11d85b7f9\",\"pandascore_id\":null,\"yahoo_id\":31540,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikemccray\",\"birth_date\":\"1994-08-03\",\"espn_id\":3045203},\"1434\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sheldon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1515035701620,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"1434\",\"birth_city\":null,\"fantasy_data_id\":14999,\"years_exp\":7,\"hashtag\":\"#SheldonPrice-NFL-FA-27\",\"search_first_name\":\"sheldon\",\"rotowire_id\":8887,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sheldon Price\",\"sportradar_id\":\"6c956202-6fbf-444e-b050-4573e677fe28\",\"pandascore_id\":null,\"yahoo_id\":27123,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Bishop Amat (CA)\",\"depth_chart_order\":null,\"stats_id\":509191,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sheldonprice\",\"birth_date\":\"1991-03-26\",\"espn_id\":16302},\"3833\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smalley\",\"depth_chart_position\":null,\"player_id\":\"3833\",\"birth_city\":null,\"fantasy_data_id\":18653,\"years_exp\":0,\"hashtag\":\"#MattSmalley-NFL-FA-35\",\"search_first_name\":\"matt\",\"rotowire_id\":11591,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Matt Smalley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29970,\"last_name\":\"Smalley\",\"metadata\":null,\"college\":\"Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mattsmalley\",\"birth_date\":\"1994-05-06\",\"espn_id\":2973474},\"4892\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034855\",\"first_name\":\"Baker\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606489803244,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mayfield\",\"depth_chart_position\":\"QB\",\"player_id\":\"4892\",\"birth_city\":null,\"fantasy_data_id\":19790,\"years_exp\":2,\"hashtag\":\"#BakerMayfield-NFL-CLE-6\",\"search_first_name\":\"baker\",\"rotowire_id\":12619,\"rotoworld_id\":13072,\"active\":true,\"search_rank\":137,\"age\":25,\"full_name\":\"Baker Mayfield\",\"sportradar_id\":\"30198d30-9769-4e10-ac86-b4c91d940802\",\"pandascore_id\":null,\"yahoo_id\":30971,\"last_name\":\"Mayfield\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Lake Travis (TX)\",\"depth_chart_order\":1,\"stats_id\":748070,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bakermayfield\",\"birth_date\":\"1995-04-14\",\"espn_id\":3052587},\"7023\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602529527372,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gay\",\"depth_chart_position\":\"LB\",\"player_id\":\"7023\",\"birth_city\":null,\"fantasy_data_id\":21984,\"years_exp\":0,\"hashtag\":\"#WillieGay-NFL-KC-50\",\"search_first_name\":\"willie\",\"rotowire_id\":14520,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1866,\"age\":22,\"full_name\":\"Willie Gay\",\"sportradar_id\":\"9b2d5497-738b-47bc-bd96-2c550b4649ee\",\"pandascore_id\":null,\"yahoo_id\":32733,\"last_name\":\"Gay\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Starkville (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"williegay\",\"birth_date\":\"1998-02-15\",\"espn_id\":4259804},\"4464\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033319\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606506326570,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mullens\",\"depth_chart_position\":\"QB\",\"player_id\":\"4464\",\"birth_city\":null,\"fantasy_data_id\":19330,\"years_exp\":3,\"hashtag\":\"#NickMullens-NFL-SF-4\",\"search_first_name\":\"nick\",\"rotowire_id\":12511,\"rotoworld_id\":12684,\"active\":true,\"search_rank\":532,\"age\":25,\"full_name\":\"Nick Mullens\",\"sportradar_id\":\"7738fea8-7ea2-4c4c-b589-bca90b070819\",\"pandascore_id\":null,\"yahoo_id\":30563,\"last_name\":\"Mullens\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Spain Park (AL)\",\"depth_chart_order\":1,\"stats_id\":748309,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickmullens\",\"birth_date\":\"1995-03-21\",\"espn_id\":3059989},\"2852\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Markus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"piercebrewster\",\"depth_chart_position\":null,\"player_id\":\"2852\",\"birth_city\":null,\"fantasy_data_id\":17320,\"years_exp\":0,\"hashtag\":\"#MarkusPierceBrewster-NFL-FA-58\",\"search_first_name\":\"markus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Markus Pierce-Brewster\",\"sportradar_id\":\"9427dc10-3bd9-46bf-bc17-fedfacc4a4e3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pierce-Brewster\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'3\\\"\",\"search_full_name\":\"markuspiercebrewster\",\"birth_date\":\"1991-09-05\",\"espn_id\":2970409},\"5008\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034798\",\"first_name\":\"Durham\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605555919240,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smythe\",\"depth_chart_position\":\"TE\",\"player_id\":\"5008\",\"birth_city\":null,\"fantasy_data_id\":19943,\"years_exp\":2,\"hashtag\":\"#DurhamSmythe-NFL-MIA-81\",\"search_first_name\":\"durham\",\"rotowire_id\":12807,\"rotoworld_id\":null,\"active\":true,\"search_rank\":506,\"age\":25,\"full_name\":\"Durham Smythe\",\"sportradar_id\":\"7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8\",\"pandascore_id\":null,\"yahoo_id\":31093,\"last_name\":\"Smythe\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Belton (TX)\",\"depth_chart_order\":2,\"stats_id\":749968,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"durhamsmythe\",\"birth_date\":\"1995-08-09\",\"espn_id\":3052897},\"4562\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marcus\",\"depth_chart_position\":null,\"player_id\":\"4562\",\"birth_city\":null,\"fantasy_data_id\":19446,\"years_exp\":2,\"hashtag\":\"#JamalMarcus-NFL-FA-68\",\"search_first_name\":\"jamal\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jamal Marcus\",\"sportradar_id\":\"26d1cfa6-5ad8-4893-a09d-15bcce36f9bd\",\"pandascore_id\":null,\"yahoo_id\":30545,\"last_name\":\"Marcus\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamalmarcus\",\"birth_date\":\"1994-08-17\",\"espn_id\":2976300},\"6585\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035551\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606174521836,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brooksjames\",\"depth_chart_position\":\"RB\",\"player_id\":\"6585\",\"birth_city\":null,\"fantasy_data_id\":21549,\"years_exp\":1,\"hashtag\":\"#TonyBrooksJames-NFL-ATL-35\",\"search_first_name\":\"tony\",\"rotowire_id\":14237,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1759,\"age\":25,\"full_name\":\"Tony Brooks-James\",\"sportradar_id\":\"fc793c8d-b29d-46f8-8f89-8e2964ff4480\",\"pandascore_id\":null,\"yahoo_id\":32559,\"last_name\":\"Brooks-James\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Gainesville (FL)\",\"depth_chart_order\":6,\"stats_id\":835777,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'9\\\"\",\"search_full_name\":\"tonybrooksjames\",\"birth_date\":\"1994-12-06\",\"espn_id\":3886841},\"6036\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034965\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567351834831,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6036\",\"birth_city\":null,\"fantasy_data_id\":21061,\"years_exp\":1,\"hashtag\":\"#RyanDavis-NFL-FA-19\",\"search_first_name\":\"ryan\",\"rotowire_id\":13623,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ryan Davis\",\"sportradar_id\":\"73ddb02e-e0e7-45d5-89d4-27b551af351a\",\"pandascore_id\":null,\"yahoo_id\":32227,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ryandavis\",\"birth_date\":\"1997-04-12\",\"espn_id\":3916946},\"7352\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606436760870,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7352\",\"birth_city\":null,\"fantasy_data_id\":22340,\"years_exp\":0,\"hashtag\":\"#MattCole-NFL-MIA-82\",\"search_first_name\":\"matt\",\"rotowire_id\":14914,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Matt Cole\",\"sportradar_id\":\"da92303d-1419-4cde-aa52-b120635f364a\",\"pandascore_id\":null,\"yahoo_id\":33236,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"McKendree\",\"high_school\":\"Curie (IL)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mattcole\",\"birth_date\":\"1996-11-07\",\"espn_id\":4041703},\"3761\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032617\",\"first_name\":\"Lafayette\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1549998914908,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pitts\",\"depth_chart_position\":null,\"player_id\":\"3761\",\"birth_city\":null,\"fantasy_data_id\":18573,\"years_exp\":4,\"hashtag\":\"#LafayettePitts-NFL-BUF-40\",\"search_first_name\":\"lafayette\",\"rotowire_id\":11596,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1095,\"age\":28,\"full_name\":\"Lafayette Pitts\",\"sportradar_id\":\"8cfce145-c6aa-40e0-b759-cad33237144a\",\"pandascore_id\":null,\"yahoo_id\":29835,\"last_name\":\"Pitts\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Woodland Hills (PA)\",\"depth_chart_order\":null,\"stats_id\":606736,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lafayettepitts\",\"birth_date\":\"1992-09-24\",\"espn_id\":2576665},\"5996\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035404\",\"first_name\":\"Porter\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606432860260,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"gustin\",\"depth_chart_position\":null,\"player_id\":\"5996\",\"birth_city\":null,\"fantasy_data_id\":20780,\"years_exp\":1,\"hashtag\":\"#PorterGustin-NFL-CLE-97\",\"search_first_name\":\"porter\",\"rotowire_id\":13859,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1542,\"age\":23,\"full_name\":\"Porter Gustin\",\"sportradar_id\":\"20395574-a767-44be-8e79-e1b15eef0f11\",\"pandascore_id\":null,\"yahoo_id\":32492,\"last_name\":\"Gustin\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Salem Hills (UT)\",\"depth_chart_order\":null,\"stats_id\":880029,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"portergustin\",\"birth_date\":\"1997-02-08\",\"espn_id\":3912553},\"7384\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaquarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599096337995,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"landrews\",\"depth_chart_position\":null,\"player_id\":\"7384\",\"birth_city\":null,\"fantasy_data_id\":22370,\"years_exp\":0,\"hashtag\":\"#JaquariusLandrews-NFL-NYG-19\",\"search_first_name\":\"jaquarius\",\"rotowire_id\":15019,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jaquarius Landrews\",\"sportradar_id\":\"a76a6c69-6454-43a7-a5f9-9abced6b1f78\",\"pandascore_id\":null,\"yahoo_id\":33056,\"last_name\":\"Landrews\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Copiah-Lincoln (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaquariuslandrews\",\"birth_date\":\"1996-09-15\",\"espn_id\":4242245},\"1287\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028787\",\"first_name\":\"Kai\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1605584720364,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"forbath\",\"depth_chart_position\":\"K\",\"player_id\":\"1287\",\"birth_city\":null,\"fantasy_data_id\":14740,\"years_exp\":9,\"hashtag\":\"#KaiForbath-NFL-LAR-2\",\"search_first_name\":\"kai\",\"rotowire_id\":7544,\"rotoworld_id\":7362,\"active\":true,\"search_rank\":698,\"age\":33,\"full_name\":\"Kai Forbath\",\"sportradar_id\":\"5514afb6-bd43-49a8-9bf7-b8baaaecdabe\",\"pandascore_id\":null,\"yahoo_id\":25648,\"last_name\":\"Forbath\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Notre Dame (CA)\",\"depth_chart_order\":2,\"stats_id\":331927,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kaiforbath\",\"birth_date\":\"1987-09-02\",\"espn_id\":14816},\"2246\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"2246\",\"birth_city\":null,\"fantasy_data_id\":16649,\"years_exp\":1,\"hashtag\":\"#KelvinPalmer-NFL-FA-70\",\"search_first_name\":\"kelvin\",\"rotowire_id\":10047,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kelvin Palmer\",\"sportradar_id\":\"636dd681-4b50-43cf-8a1a-999e43b848fe\",\"pandascore_id\":null,\"yahoo_id\":28110,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kelvinpalmer\",\"birth_date\":\"1990-10-23\",\"espn_id\":17225},\"5080\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034273\",\"first_name\":\"Damion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603219238694,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ratley\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5080\",\"birth_city\":null,\"fantasy_data_id\":19969,\"years_exp\":2,\"hashtag\":\"#DamionRatley-NFL-HOU-19\",\"search_first_name\":\"damion\",\"rotowire_id\":12989,\"rotoworld_id\":null,\"active\":true,\"search_rank\":254,\"age\":25,\"full_name\":\"Damion Ratley\",\"sportradar_id\":\"6e01959d-9860-49e4-a997-eee257718812\",\"pandascore_id\":null,\"yahoo_id\":31148,\"last_name\":\"Ratley\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Yoakum (TX)\",\"depth_chart_order\":3,\"stats_id\":865803,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"damionratley\",\"birth_date\":\"1995-04-16\",\"espn_id\":3895857},\"1187\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1187\",\"birth_city\":null,\"fantasy_data_id\":14360,\"years_exp\":2,\"hashtag\":\"#MarcelJones-NFL-FA-60\",\"search_first_name\":\"marcel\",\"rotowire_id\":8353,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Marcel Jones\",\"sportradar_id\":\"527248f4-d7c9-4b78-9c9c-a078dad81e99\",\"pandascore_id\":null,\"yahoo_id\":25944,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"marceljones\",\"birth_date\":\"1988-09-04\",\"espn_id\":15022},\"2597\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dyer\",\"depth_chart_position\":null,\"player_id\":\"2597\",\"birth_city\":null,\"fantasy_data_id\":17065,\"years_exp\":0,\"hashtag\":\"#MichaelDyer-NFL-FA-40\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Dyer\",\"sportradar_id\":\"ef9ae26f-a34e-4d42-8448-e05cd8e120e7\",\"pandascore_id\":null,\"yahoo_id\":29080,\"last_name\":\"Dyer\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557117,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"5'8\\\"\",\"search_full_name\":\"michaeldyer\",\"birth_date\":\"1990-10-13\",\"espn_id\":2516006},\"5111\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034426\",\"first_name\":\"Javon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605655526081,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wims\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5111\",\"birth_city\":null,\"fantasy_data_id\":20011,\"years_exp\":2,\"hashtag\":\"#JavonWims-NFL-CHI-83\",\"search_first_name\":\"javon\",\"rotowire_id\":12627,\"rotoworld_id\":null,\"active\":true,\"search_rank\":283,\"age\":26,\"full_name\":\"Javon Wims\",\"sportradar_id\":\"8f249da2-2528-4f68-8587-4400c924aba4\",\"pandascore_id\":null,\"yahoo_id\":31194,\"last_name\":\"Wims\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Ed White (FL)\",\"depth_chart_order\":2,\"stats_id\":922039,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"javonwims\",\"birth_date\":\"1994-09-11\",\"espn_id\":4035019},\"4510\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Najee\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"4510\",\"birth_city\":null,\"fantasy_data_id\":19382,\"years_exp\":2,\"hashtag\":\"#NajeeHarris-NFL-FA-48\",\"search_first_name\":\"najee\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Najee Harris\",\"sportradar_id\":\"f7e5af29-9807-4762-9748-d685b433ca9a\",\"pandascore_id\":null,\"yahoo_id\":30693,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"najeeharris\",\"birth_date\":\"1994-03-09\",\"espn_id\":2987659},\"1286\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"1286\",\"birth_city\":null,\"fantasy_data_id\":14737,\"years_exp\":5,\"hashtag\":\"#AntonioAllen-NFL-FA-39\",\"search_first_name\":\"antonio\",\"rotowire_id\":8302,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Antonio Allen\",\"sportradar_id\":\"d2edaf8f-9f00-4dba-adab-9399c7185614\",\"pandascore_id\":null,\"yahoo_id\":25952,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"antonioallen\",\"birth_date\":\"1988-09-23\",\"espn_id\":15061},\"841\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1513129801374,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"841\",\"birth_city\":null,\"fantasy_data_id\":12891,\"years_exp\":9,\"hashtag\":\"#ChrisCarter-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":7480,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Chris Carter\",\"sportradar_id\":\"3a906e08-bcd2-4bb9-8b8a-ca816f998689\",\"pandascore_id\":null,\"yahoo_id\":24949,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Henry J. Kaiser (CA)\",\"depth_chart_order\":null,\"stats_id\":409554,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chriscarter\",\"birth_date\":\"1989-04-06\",\"espn_id\":14174},\"3018\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyrequek\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zimmerman\",\"depth_chart_position\":null,\"player_id\":\"3018\",\"birth_city\":null,\"fantasy_data_id\":17568,\"years_exp\":1,\"hashtag\":\"#TyrequekZimmerman-NFL-FA-33\",\"search_first_name\":\"tyrequek\",\"rotowire_id\":9987,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyrequek Zimmerman\",\"sportradar_id\":\"8991f028-624e-45a3-934d-3f88b31d59c3\",\"pandascore_id\":null,\"yahoo_id\":29169,\"last_name\":\"Zimmerman\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tyrequekzimmerman\",\"birth_date\":\"1992-09-29\",\"espn_id\":null},\"4154\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033942\",\"first_name\":\"Dorian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566409809096,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4154\",\"birth_city\":null,\"fantasy_data_id\":19000,\"years_exp\":3,\"hashtag\":\"#DorianJohnson-NFL-FA-64\",\"search_first_name\":\"dorian\",\"rotowire_id\":12200,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dorian Johnson\",\"sportradar_id\":\"3671d5fb-6f0b-4582-8007-0265a66cf2c1\",\"pandascore_id\":null,\"yahoo_id\":30228,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dorianjohnson\",\"birth_date\":\"1994-10-21\",\"espn_id\":3045153},\"3301\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033011\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604967629423,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcgovern\",\"depth_chart_position\":\"C\",\"player_id\":\"3301\",\"birth_city\":null,\"fantasy_data_id\":18062,\"years_exp\":4,\"hashtag\":\"#ConnorMcGovern-NFL-NYJ-60\",\"search_first_name\":\"connor\",\"rotowire_id\":11133,\"rotoworld_id\":11392,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Connor McGovern\",\"sportradar_id\":\"fbabd1f2-fe25-4cdd-9000-8fcc90372e82\",\"pandascore_id\":null,\"yahoo_id\":29378,\"last_name\":\"McGovern\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Shanley (ND)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"connormcgovern\",\"birth_date\":\"1993-04-27\",\"espn_id\":2577367},\"486\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"486\",\"birth_city\":null,\"fantasy_data_id\":9827,\"years_exp\":11,\"hashtag\":\"#DesmondBryant-NFL-FA-92\",\"search_first_name\":\"desmond\",\"rotowire_id\":6268,\"rotoworld_id\":5518,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Desmond Bryant\",\"sportradar_id\":\"f69a6ae2-8e20-47c0-a8bb-9d17a2735774\",\"pandascore_id\":null,\"yahoo_id\":9545,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"East Bladen (NC)\",\"depth_chart_order\":null,\"stats_id\":268560,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"desmondbryant\",\"birth_date\":\"1985-12-15\",\"espn_id\":12949},\"5446\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034089\",\"first_name\":\"Tomasi\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1561040154496,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"laulile\",\"depth_chart_position\":null,\"player_id\":\"5446\",\"birth_city\":null,\"fantasy_data_id\":20495,\"years_exp\":2,\"hashtag\":\"#TomasiLaulile-NFL-FA-66\",\"search_first_name\":\"tomasi\",\"rotowire_id\":13738,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tomasi Laulile\",\"sportradar_id\":\"58e567dc-6d54-4907-86e1-d21615afaeba\",\"pandascore_id\":null,\"yahoo_id\":31371,\"last_name\":\"Laulile\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tomasilaulile\",\"birth_date\":\"1995-05-22\",\"espn_id\":3053800},\"6689\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035622\",\"first_name\":\"Bryant\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"6689\",\"birth_city\":null,\"fantasy_data_id\":21587,\"years_exp\":1,\"hashtag\":\"#BryantJones-NFL-FA-62\",\"search_first_name\":\"bryant\",\"rotowire_id\":14311,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Bryant Jones\",\"sportradar_id\":\"5c10f2aa-0ee8-4629-8a61-3af17877fb63\",\"pandascore_id\":null,\"yahoo_id\":32606,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Mississippi Valley\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bryantjones\",\"birth_date\":\"1997-04-15\",\"espn_id\":3932392},\"643\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027866\",\"first_name\":\"Earl\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603130718093,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"FS\",\"player_id\":\"643\",\"birth_city\":null,\"fantasy_data_id\":11612,\"years_exp\":10,\"hashtag\":\"#EarlThomas-NFL-FA-29\",\"search_first_name\":\"earl\",\"rotowire_id\":6645,\"rotoworld_id\":5703,\"active\":true,\"search_rank\":617,\"age\":31,\"full_name\":\"Earl Thomas\",\"sportradar_id\":\"4094730d-a3ad-4c7e-a899-a3c8001748d9\",\"pandascore_id\":null,\"yahoo_id\":23989,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"West Orange-Stark (TX)\",\"depth_chart_order\":1,\"stats_id\":399526,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"earlthomas\",\"birth_date\":\"1989-05-07\",\"espn_id\":13251},\"6466\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035053\",\"first_name\":\"Daryle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"banfield\",\"depth_chart_position\":null,\"player_id\":\"6466\",\"birth_city\":null,\"fantasy_data_id\":21465,\"years_exp\":1,\"hashtag\":\"#DaryleBanfield-NFL-FA-93\",\"search_first_name\":\"daryle\",\"rotowire_id\":14142,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Daryle Banfield\",\"sportradar_id\":\"db9afb6c-3148-4e7a-8b3f-182fa8ad28bd\",\"pandascore_id\":null,\"yahoo_id\":32245,\"last_name\":\"Banfield\",\"metadata\":null,\"college\":\"Brown\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"darylebanfield\",\"birth_date\":\"1997-12-10\",\"espn_id\":3912362},\"3327\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032426\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605822613313,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":\"RB\",\"player_id\":\"3327\",\"birth_city\":null,\"fantasy_data_id\":18088,\"years_exp\":4,\"hashtag\":\"#AlexCollins-NFL-SEA-41\",\"search_first_name\":\"alex\",\"rotowire_id\":10803,\"rotoworld_id\":11279,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alex Collins\",\"sportradar_id\":\"990a689e-200b-4cda-85db-85d6c3af911c\",\"pandascore_id\":null,\"yahoo_id\":29405,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"South Plantation (FL)\",\"depth_chart_order\":5,\"stats_id\":744420,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alexcollins\",\"birth_date\":\"1994-08-26\",\"espn_id\":3046409},\"3714\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032560\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605831014142,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"SS\",\"player_id\":\"3714\",\"birth_city\":null,\"fantasy_data_id\":18521,\"years_exp\":4,\"hashtag\":\"#CharlesWashington-NFL-ARI-28\",\"search_first_name\":\"charles\",\"rotowire_id\":11341,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1086,\"age\":27,\"full_name\":\"Charles Washington\",\"sportradar_id\":\"7757384a-6b03-41fb-9c77-3c016a968d1c\",\"pandascore_id\":null,\"yahoo_id\":29781,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Crespi (CA)\",\"depth_chart_order\":1,\"stats_id\":609702,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"charleswashington\",\"birth_date\":\"1993-03-10\",\"espn_id\":2579163},\"5160\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034476\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584496517555,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":\"SS\",\"player_id\":\"5160\",\"birth_city\":null,\"fantasy_data_id\":20087,\"years_exp\":2,\"hashtag\":\"#AJHoward-NFL-FA-0\",\"search_first_name\":\"aj\",\"rotowire_id\":13212,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"A.J. Howard\",\"sportradar_id\":\"bfaf12ae-0199-4956-9ae7-d8a1dbfdfcd2\",\"pandascore_id\":null,\"yahoo_id\":31306,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ajhoward\",\"birth_date\":\"1995-12-23\",\"espn_id\":3123667},\"1366\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030383\",\"first_name\":\"Duron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584730808720,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harmon\",\"depth_chart_position\":\"SS\",\"player_id\":\"1366\",\"birth_city\":null,\"fantasy_data_id\":14887,\"years_exp\":7,\"hashtag\":\"#DuronHarmon-NFL-DET-26\",\"search_first_name\":\"duron\",\"rotowire_id\":8906,\"rotoworld_id\":8523,\"active\":true,\"search_rank\":712,\"age\":29,\"full_name\":\"Duron Harmon\",\"sportradar_id\":\"a2802951-e573-4e8f-ad31-14b9ae5f8e7c\",\"pandascore_id\":null,\"yahoo_id\":26714,\"last_name\":\"Harmon\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Caesar Rodney (DE)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"duronharmon\",\"birth_date\":\"1991-01-24\",\"espn_id\":15842},\"4128\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033933\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605833114440,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4128\",\"birth_city\":null,\"fantasy_data_id\":18974,\"years_exp\":3,\"hashtag\":\"#ChadWilliams-NFL-KC-11\",\"search_first_name\":\"chad\",\"rotowire_id\":12113,\"rotoworld_id\":12343,\"active\":true,\"search_rank\":1160,\"age\":26,\"full_name\":\"Chad Williams\",\"sportradar_id\":\"35c970b1-cd2c-42b8-bcb6-e0b8dbe39423\",\"pandascore_id\":null,\"yahoo_id\":30211,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Grambling\",\"high_school\":\"Madison Prep (LA)\",\"depth_chart_order\":9,\"stats_id\":787757,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chadwilliams\",\"birth_date\":\"1994-10-19\",\"espn_id\":3066052},\"1215\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029572\",\"first_name\":\"Jarius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1582693530037,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1215\",\"birth_city\":null,\"fantasy_data_id\":14465,\"years_exp\":8,\"hashtag\":\"#JariusWright-NFL-FA-13\",\"search_first_name\":\"jarius\",\"rotowire_id\":8105,\"rotoworld_id\":7574,\"active\":true,\"search_rank\":687,\"age\":30,\"full_name\":\"Jarius Wright\",\"sportradar_id\":\"6a11f09e-268c-4e5a-9b0f-cc0f4bc353c3\",\"pandascore_id\":null,\"yahoo_id\":25828,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Warren (AR)\",\"depth_chart_order\":3,\"stats_id\":465652,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jariuswright\",\"birth_date\":\"1989-11-25\",\"espn_id\":14918},\"1161\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"1161\",\"birth_city\":null,\"fantasy_data_id\":14232,\"years_exp\":8,\"hashtag\":\"#WillHill-NFL-FA-33\",\"search_first_name\":\"will\",\"rotowire_id\":7540,\"rotoworld_id\":6496,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Will Hill\",\"sportradar_id\":\"9e207df9-c9d2-405b-b70f-782fc8ba1c8e\",\"pandascore_id\":null,\"yahoo_id\":26478,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"St. Peter's Prep (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"willhill\",\"birth_date\":\"1990-03-07\",\"espn_id\":15621},\"3302\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533161143839,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"theus\",\"depth_chart_position\":null,\"player_id\":\"3302\",\"birth_city\":null,\"fantasy_data_id\":18063,\"years_exp\":4,\"hashtag\":\"#JohnTheus-NFL-FA-79\",\"search_first_name\":\"john\",\"rotowire_id\":10955,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"John Theus\",\"sportradar_id\":\"79b3e383-a993-4015-b761-2f725eac76c7\",\"pandascore_id\":null,\"yahoo_id\":29379,\"last_name\":\"Theus\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'6\\\"\",\"search_full_name\":\"johntheus\",\"birth_date\":\"1994-01-19\",\"espn_id\":2977656},\"6561\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035424\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"6561\",\"birth_city\":null,\"fantasy_data_id\":21180,\"years_exp\":1,\"hashtag\":\"#ChrisBrown-NFL-FA-62\",\"search_first_name\":\"chris\",\"rotowire_id\":14260,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Brown\",\"sportradar_id\":\"59a2ccc2-8f08-45b5-808f-a8938a95f1f5\",\"pandascore_id\":null,\"yahoo_id\":32537,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisbrown\",\"birth_date\":\"1996-04-26\",\"espn_id\":3120365},\"4852\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bill\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547241307413,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lazor\",\"depth_chart_position\":null,\"player_id\":\"4852\",\"birth_city\":null,\"fantasy_data_id\":19753,\"years_exp\":0,\"hashtag\":\"#BillLazor-NFL-FA-0\",\"search_first_name\":\"bill\",\"rotowire_id\":null,\"rotoworld_id\":9315,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bill Lazor\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lazor\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"billlazor\",\"birth_date\":null,\"espn_id\":null},\"2447\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mykkele\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"2447\",\"birth_city\":null,\"fantasy_data_id\":16904,\"years_exp\":4,\"hashtag\":\"#MykkeleThompson-NFL-FA-28\",\"search_first_name\":\"mykkele\",\"rotowire_id\":10459,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mykkele Thompson\",\"sportradar_id\":\"5135d596-becd-4bce-bda5-61fb36e98ac4\",\"pandascore_id\":null,\"yahoo_id\":28532,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Texas \",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605314,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mykkelethompson\",\"birth_date\":\"1993-04-22\",\"espn_id\":2577581},\"950\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walls\",\"depth_chart_position\":null,\"player_id\":\"950\",\"birth_city\":null,\"fantasy_data_id\":13306,\"years_exp\":9,\"hashtag\":\"#DarrinWalls-NFL-FA-30\",\"search_first_name\":\"darrin\",\"rotowire_id\":7691,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Darrin Walls\",\"sportradar_id\":\"86986937-ca06-4d9f-be4e-ded46a30072e\",\"pandascore_id\":null,\"yahoo_id\":25349,\"last_name\":\"Walls\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Woodland Hills (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"darrinwalls\",\"birth_date\":\"1988-06-20\",\"espn_id\":14510},\"7211\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zimari\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359862,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manning\",\"depth_chart_position\":null,\"player_id\":\"7211\",\"birth_city\":null,\"fantasy_data_id\":22214,\"years_exp\":0,\"hashtag\":\"#ZimariManning-NFL-FA-0\",\"search_first_name\":\"zimari\",\"rotowire_id\":14854,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Zimari Manning\",\"sportradar_id\":\"cacc4ceb-1376-47bb-a469-aa7a7f9df1f3\",\"pandascore_id\":null,\"yahoo_id\":32930,\"last_name\":\"Manning\",\"metadata\":null,\"college\":\"Tarleton State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zimarimanning\",\"birth_date\":null,\"espn_id\":null},\"7025\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josiah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coatney\",\"depth_chart_position\":null,\"player_id\":\"7025\",\"birth_city\":null,\"fantasy_data_id\":22073,\"years_exp\":0,\"hashtag\":\"#JosiahCoatney-NFL-SF-65\",\"search_first_name\":\"josiah\",\"rotowire_id\":14705,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Josiah Coatney\",\"sportradar_id\":\"ac77e2b6-e094-4d79-a162-2d868b76e3d5\",\"pandascore_id\":null,\"yahoo_id\":32936,\"last_name\":\"Coatney\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Chapel Hill (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'4\\\"\",\"search_full_name\":\"josiahcoatney\",\"birth_date\":\"1996-01-04\",\"espn_id\":null},\"2233\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberson\",\"depth_chart_position\":null,\"player_id\":\"2233\",\"birth_city\":null,\"fantasy_data_id\":16630,\"years_exp\":6,\"hashtag\":\"#MarcusRoberson-NFL-FA-38\",\"search_first_name\":\"marcus\",\"rotowire_id\":9331,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marcus Roberson\",\"sportradar_id\":\"35f7f0dc-e2b0-40e4-99af-5319a54b4045\",\"pandascore_id\":null,\"yahoo_id\":27968,\"last_name\":\"Roberson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":607063,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcusroberson\",\"birth_date\":\"1992-10-04\",\"espn_id\":2578582},\"3707\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Boston\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stiverson\",\"depth_chart_position\":\"LG\",\"player_id\":\"3707\",\"birth_city\":null,\"fantasy_data_id\":18513,\"years_exp\":0,\"hashtag\":\"#BostonStiverson-NFL-FA-63\",\"search_first_name\":\"boston\",\"rotowire_id\":11375,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Boston Stiverson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29898,\"last_name\":\"Stiverson\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bostonstiverson\",\"birth_date\":\"1992-10-08\",\"espn_id\":null},\"1953\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"labhart\",\"depth_chart_position\":null,\"player_id\":\"1953\",\"birth_city\":null,\"fantasy_data_id\":16204,\"years_exp\":1,\"hashtag\":\"#TravisLabhart-NFL-FA-19\",\"search_first_name\":\"travis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Travis Labhart\",\"sportradar_id\":\"78960de0-5c9d-44aa-aa5e-35e5047291da\",\"pandascore_id\":null,\"yahoo_id\":28198,\"last_name\":\"Labhart\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":593575,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'9\\\"\",\"search_full_name\":\"travislabhart\",\"birth_date\":\"1991-01-20\",\"espn_id\":17395},\"5321\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034168\",\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1597979734646,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradley\",\"depth_chart_position\":null,\"player_id\":\"5321\",\"birth_city\":null,\"fantasy_data_id\":20061,\"years_exp\":2,\"hashtag\":\"#HunterBradley-NFL-GB-43\",\"search_first_name\":\"hunter\",\"rotowire_id\":12660,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Hunter Bradley\",\"sportradar_id\":\"f1fdaa82-25bb-4ae7-8945-c0b9864214ca\",\"pandascore_id\":null,\"yahoo_id\":31209,\"last_name\":\"Bradley\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Collierville (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hunterbradley\",\"birth_date\":\"1994-05-21\",\"espn_id\":2980350},\"1719\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclain\",\"depth_chart_position\":null,\"player_id\":\"1719\",\"birth_city\":null,\"fantasy_data_id\":15643,\"years_exp\":2,\"hashtag\":\"#AntoineMcClain-NFL-FA-60\",\"search_first_name\":\"antoine\",\"rotowire_id\":9116,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Antoine McClain\",\"sportradar_id\":\"99399f7f-5560-46a9-a4e1-7bfd4fa6465f\",\"pandascore_id\":null,\"yahoo_id\":26450,\"last_name\":\"McClain\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"336\",\"height\":\"6'5\\\"\",\"search_full_name\":\"antoinemcclain\",\"birth_date\":\"1989-12-06\",\"espn_id\":15533},\"2987\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pettinato\",\"depth_chart_position\":null,\"player_id\":\"2987\",\"birth_city\":null,\"fantasy_data_id\":17492,\"years_exp\":0,\"hashtag\":\"#DanPettinato-NFL-FA-96\",\"search_first_name\":\"dan\",\"rotowire_id\":10679,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dan Pettinato\",\"sportradar_id\":\"1a12b03f-ea4b-4021-8621-53bf9fec9f48\",\"pandascore_id\":null,\"yahoo_id\":28897,\"last_name\":\"Pettinato\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danpettinato\",\"birth_date\":\"1992-04-24\",\"espn_id\":2516908},\"7019\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chauncey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rivers\",\"depth_chart_position\":null,\"player_id\":\"7019\",\"birth_city\":null,\"fantasy_data_id\":21908,\"years_exp\":0,\"hashtag\":\"#ChaunceyRivers-NFL-BAL-97\",\"search_first_name\":\"chauncey\",\"rotowire_id\":14725,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1831,\"age\":23,\"full_name\":\"Chauncey Rivers\",\"sportradar_id\":\"a5a7243e-d842-400d-89ff-5d451338426f\",\"pandascore_id\":null,\"yahoo_id\":32996,\"last_name\":\"Rivers\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chaunceyrivers\",\"birth_date\":\"1997-06-12\",\"espn_id\":3915186},\"55\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Visanthe\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shiancoe\",\"depth_chart_position\":null,\"player_id\":\"55\",\"birth_city\":null,\"fantasy_data_id\":1614,\"years_exp\":10,\"hashtag\":\"#VisantheShiancoe-NFL-FA-80\",\"search_first_name\":\"visanthe\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Visanthe Shiancoe\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Shiancoe\",\"metadata\":null,\"college\":\"Morgan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"visantheshiancoe\",\"birth_date\":\"1980-06-18\",\"espn_id\":null},\"2736\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031982\",\"first_name\":\"Nordly\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1533248705157,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"capi\",\"depth_chart_position\":null,\"player_id\":\"2736\",\"birth_city\":null,\"fantasy_data_id\":17204,\"years_exp\":5,\"hashtag\":\"#NordlyCapi-NFL-FA-61\",\"search_first_name\":\"nordly\",\"rotowire_id\":10745,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Nordly Capi\",\"sportradar_id\":\"d5e5340b-98be-4738-867d-791f36bf8e5e\",\"pandascore_id\":null,\"yahoo_id\":29029,\"last_name\":\"Capi\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":541458,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nordlycapi\",\"birth_date\":\"1992-07-11\",\"espn_id\":2514374},\"1523\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":null,\"player_id\":\"1523\",\"birth_city\":null,\"fantasy_data_id\":15133,\"years_exp\":7,\"hashtag\":\"#JoshBoyd-NFL-FA-60\",\"search_first_name\":\"josh\",\"rotowire_id\":8683,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Josh Boyd\",\"sportradar_id\":\"89431b6e-4364-4584-aaf0-86e2e0a6f062\",\"pandascore_id\":null,\"yahoo_id\":26790,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Philadelphia (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshboyd\",\"birth_date\":\"1989-08-03\",\"espn_id\":15989},\"1622\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beltre\",\"depth_chart_position\":null,\"player_id\":\"1622\",\"birth_city\":null,\"fantasy_data_id\":15308,\"years_exp\":6,\"hashtag\":\"#FrankBeltre-NFL-FA-57\",\"search_first_name\":\"frank\",\"rotowire_id\":11730,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Frank Beltre\",\"sportradar_id\":\"e9714456-3fe4-44aa-8d0e-20a66d7018c3\",\"pandascore_id\":null,\"yahoo_id\":26919,\"last_name\":\"Beltre\",\"metadata\":null,\"college\":\"Towson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"frankbeltre\",\"birth_date\":\"1990-01-28\",\"espn_id\":16048},\"1627\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Skye\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dawson\",\"depth_chart_position\":null,\"player_id\":\"1627\",\"birth_city\":null,\"fantasy_data_id\":15328,\"years_exp\":0,\"hashtag\":\"#SkyeDawson-NFL-FA-18\",\"search_first_name\":\"skye\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Skye Dawson\",\"sportradar_id\":\"aeda2972-1ac1-4c32-b20d-724997f09ab9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dawson\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"skyedawson\",\"birth_date\":\"1990-12-02\",\"espn_id\":null},\"4857\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"haslam\",\"depth_chart_position\":null,\"player_id\":\"4857\",\"birth_city\":null,\"fantasy_data_id\":19757,\"years_exp\":0,\"hashtag\":\"#JimmyHaslam-NFL-FA-0\",\"search_first_name\":\"jimmy\",\"rotowire_id\":null,\"rotoworld_id\":9449,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jimmy Haslam\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Haslam\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jimmyhaslam\",\"birth_date\":null,\"espn_id\":null},\"1232\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029273\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1578950424892,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"turbin\",\"depth_chart_position\":null,\"player_id\":\"1232\",\"birth_city\":null,\"fantasy_data_id\":14533,\"years_exp\":8,\"hashtag\":\"#RobertTurbin-NFL-FA-34\",\"search_first_name\":\"robert\",\"rotowire_id\":8028,\"rotoworld_id\":7423,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Robert Turbin\",\"sportradar_id\":\"63fd9abe-4bdf-4611-9497-0c67e030ce01\",\"pandascore_id\":null,\"yahoo_id\":25816,\"last_name\":\"Turbin\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Irvington (CA)\",\"depth_chart_order\":null,\"stats_id\":402163,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'10\\\"\",\"search_full_name\":\"robertturbin\",\"birth_date\":\"1989-12-02\",\"espn_id\":14894},\"7136\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kamren\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606196154750,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"curl\",\"depth_chart_position\":\"FS\",\"player_id\":\"7136\",\"birth_city\":null,\"fantasy_data_id\":21923,\"years_exp\":0,\"hashtag\":\"#KamrenCurl-NFL-WAS-31\",\"search_first_name\":\"kamren\",\"rotowire_id\":14381,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1841,\"age\":21,\"full_name\":\"Kamren Curl\",\"sportradar_id\":\"eff8e3ec-98e4-49c8-b865-436e3abb0870\",\"pandascore_id\":null,\"yahoo_id\":32886,\"last_name\":\"Curl\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Muskogee (OK)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kamrencurl\",\"birth_date\":\"1999-03-03\",\"espn_id\":4242154},\"13\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024417\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1584649834630,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"koch\",\"depth_chart_position\":null,\"player_id\":\"13\",\"birth_city\":null,\"fantasy_data_id\":430,\"years_exp\":14,\"hashtag\":\"#SamKoch-NFL-BAL-4\",\"search_first_name\":\"sam\",\"rotowire_id\":7073,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Sam Koch\",\"sportradar_id\":\"544e4159-3da3-47ad-866c-bf48d7634f25\",\"pandascore_id\":null,\"yahoo_id\":7952,\"last_name\":\"Koch\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Seward (NE)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'1\\\"\",\"search_full_name\":\"samkoch\",\"birth_date\":\"1982-08-13\",\"espn_id\":9789},\"7135\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Freddie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605584421428,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"swain\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7135\",\"birth_city\":null,\"fantasy_data_id\":21960,\"years_exp\":0,\"hashtag\":\"#FreddieSwain-NFL-SEA-18\",\"search_first_name\":\"freddie\",\"rotowire_id\":14644,\"rotoworld_id\":null,\"active\":true,\"search_rank\":337,\"age\":22,\"full_name\":\"Freddie Swain\",\"sportradar_id\":\"81997ce2-9e70-4014-999a-25ebb405dbf6\",\"pandascore_id\":null,\"yahoo_id\":32884,\"last_name\":\"Swain\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"North Marion (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'0\\\"\",\"search_full_name\":\"freddieswain\",\"birth_date\":\"1998-08-04\",\"espn_id\":4034950},\"848\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stingily\",\"depth_chart_position\":null,\"player_id\":\"848\",\"birth_city\":null,\"fantasy_data_id\":12930,\"years_exp\":9,\"hashtag\":\"#ByronStingily-NFL-FA-75\",\"search_first_name\":\"byron\",\"rotowire_id\":7575,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Byron Stingily\",\"sportradar_id\":\"34d8af21-6e0c-4f06-89e5-15c28b1bc0f9\",\"pandascore_id\":null,\"yahoo_id\":24962,\"last_name\":\"Stingily\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Romeoville (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"byronstingily\",\"birth_date\":\"1988-09-09\",\"espn_id\":14187},\"398\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shaughnessy\",\"depth_chart_position\":null,\"player_id\":\"398\",\"birth_city\":null,\"fantasy_data_id\":8788,\"years_exp\":7,\"hashtag\":\"#MattShaughnessy-NFL-FA-70\",\"search_first_name\":\"matt\",\"rotowire_id\":6064,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Matt Shaughnessy\",\"sportradar_id\":\"29ffe81b-32dc-4bce-9aaf-aaeb5ff64df2\",\"pandascore_id\":null,\"yahoo_id\":9335,\"last_name\":\"Shaughnessy\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattshaughnessy\",\"birth_date\":\"1986-09-23\",\"espn_id\":4042887},\"7477\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597192813290,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"7477\",\"birth_city\":null,\"fantasy_data_id\":22452,\"years_exp\":0,\"hashtag\":\"#TylerClark-NFL-FA-0\",\"search_first_name\":\"tyler\",\"rotowire_id\":15003,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2010,\"age\":null,\"full_name\":\"Tyler Clark\",\"sportradar_id\":\"6e8d8647-209a-4985-a346-70197e587f10\",\"pandascore_id\":null,\"yahoo_id\":33203,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tylerclark\",\"birth_date\":null,\"espn_id\":null},\"2870\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"2870\",\"birth_city\":null,\"fantasy_data_id\":17338,\"years_exp\":0,\"hashtag\":\"#RayHamilton-NFL-FA-85\",\"search_first_name\":\"ray\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ray Hamilton\",\"sportradar_id\":\"0b4d8d4b-19eb-4ab2-b154-f4fa07729e7e\",\"pandascore_id\":null,\"yahoo_id\":29016,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":611326,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rayhamilton\",\"birth_date\":\"1992-10-28\",\"espn_id\":2582456},\"1835\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031425\",\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1538578210851,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"easley\",\"depth_chart_position\":null,\"player_id\":\"1835\",\"birth_city\":null,\"fantasy_data_id\":16037,\"years_exp\":6,\"hashtag\":\"#DominiqueEasley-NFL-FA-91\",\"search_first_name\":\"dominique\",\"rotowire_id\":9396,\"rotoworld_id\":9606,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dominique Easley\",\"sportradar_id\":\"c5573e07-97a8-4a0d-a325-753af5e564f1\",\"pandascore_id\":null,\"yahoo_id\":27557,\"last_name\":\"Easley\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Curtis (NY)\",\"depth_chart_order\":null,\"stats_id\":557185,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dominiqueeasley\",\"birth_date\":\"1992-04-28\",\"espn_id\":16721},\"3195\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032952\",\"first_name\":\"Noah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1590536713980,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"spence\",\"depth_chart_position\":null,\"player_id\":\"3195\",\"birth_city\":null,\"fantasy_data_id\":17956,\"years_exp\":4,\"hashtag\":\"#NoahSpence-NFL-NO-57\",\"search_first_name\":\"noah\",\"rotowire_id\":11180,\"rotoworld_id\":11262,\"active\":true,\"search_rank\":964,\"age\":26,\"full_name\":\"Noah Spence\",\"sportradar_id\":\"ddde7b09-faa0-4fc4-a45e-aa38c3905f6d\",\"pandascore_id\":null,\"yahoo_id\":29273,\"last_name\":\"Spence\",\"metadata\":null,\"college\":\"Eastern Kentucky\",\"high_school\":\"Bishop McDevitt (PA)\",\"depth_chart_order\":null,\"stats_id\":653870,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'2\\\"\",\"search_full_name\":\"noahspence\",\"birth_date\":\"1994-01-08\",\"espn_id\":2976313},\"5653\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"5653\",\"birth_city\":null,\"fantasy_data_id\":20402,\"years_exp\":0,\"hashtag\":\"#JordanThomas-NFL-PHI-48\",\"search_first_name\":\"jordan\",\"rotowire_id\":13283,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jordan Thomas\",\"sportradar_id\":\"1d7f2d77-86bb-440f-9741-8e61c43034aa\",\"pandascore_id\":null,\"yahoo_id\":31591,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanthomas\",\"birth_date\":null,\"espn_id\":3116391},\"2468\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032065\",\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1552428341819,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pinion\",\"depth_chart_position\":null,\"player_id\":\"2468\",\"birth_city\":null,\"fantasy_data_id\":16925,\"years_exp\":5,\"hashtag\":\"#BradleyPinion-NFL-TB-8\",\"search_first_name\":\"bradley\",\"rotowire_id\":10466,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bradley Pinion\",\"sportradar_id\":\"9000be32-15ad-4c43-bf8d-79a9c7113cdd\",\"pandascore_id\":null,\"yahoo_id\":28553,\"last_name\":\"Pinion\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Northwest Cabarrus (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bradleypinion\",\"birth_date\":\"1994-06-01\",\"espn_id\":2977680},\"7290\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nielsen\",\"depth_chart_position\":null,\"player_id\":\"7290\",\"birth_city\":null,\"fantasy_data_id\":22286,\"years_exp\":0,\"hashtag\":\"#StevenNielsen-NFL-FA-0\",\"search_first_name\":\"steven\",\"rotowire_id\":14957,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Steven Nielsen\",\"sportradar_id\":\"71f8f5f6-8678-4bcb-b7ca-c35cee65a7f6\",\"pandascore_id\":null,\"yahoo_id\":33130,\"last_name\":\"Nielsen\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'8\\\"\",\"search_full_name\":\"stevennielsen\",\"birth_date\":null,\"espn_id\":null},\"941\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ponder\",\"depth_chart_position\":null,\"player_id\":\"941\",\"birth_city\":null,\"fantasy_data_id\":13270,\"years_exp\":9,\"hashtag\":\"#ChristianPonder-NFL-FA-15\",\"search_first_name\":\"christian\",\"rotowire_id\":7347,\"rotoworld_id\":6433,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Christian Ponder\",\"sportradar_id\":\"3467ae3e-4ddf-450d-8f36-b741ea3a2564\",\"pandascore_id\":null,\"yahoo_id\":24799,\"last_name\":\"Ponder\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Colleyville Heritage (TX)\",\"depth_chart_order\":null,\"stats_id\":323467,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christianponder\",\"birth_date\":\"1988-02-25\",\"espn_id\":13966},\"1529\":{\"position\":\"C\",\"injury_notes\":\"Tretter will miss an undiclosed amount of time after undergoing a procedure on his knee.\",\"birth_country\":null,\"gsis_id\":\"00-0030076\",\"first_name\":\"J.C.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601061913515,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tretter\",\"depth_chart_position\":\"C\",\"player_id\":\"1529\",\"birth_city\":null,\"fantasy_data_id\":15140,\"years_exp\":7,\"hashtag\":\"#JCTretter-NFL-CLE-64\",\"search_first_name\":\"jc\",\"rotowire_id\":8706,\"rotoworld_id\":8543,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"J.C. Tretter\",\"sportradar_id\":\"671d2fd7-41bb-457a-8e93-904ee7d94eb1\",\"pandascore_id\":null,\"yahoo_id\":26745,\"last_name\":\"Tretter\",\"metadata\":null,\"college\":\"Cornell\",\"high_school\":\"Akron Central (NY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jctretter\",\"birth_date\":\"1991-02-12\",\"espn_id\":16001},\"4911\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schooley\",\"depth_chart_position\":null,\"player_id\":\"4911\",\"birth_city\":null,\"fantasy_data_id\":18326,\"years_exp\":1,\"hashtag\":\"#QuintonSchooley-NFL-WAS-0\",\"search_first_name\":\"quinton\",\"rotowire_id\":11544,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Quinton Schooley\",\"sportradar_id\":\"ffdf2019-e01a-49be-86e5-09b25371af2b\",\"pandascore_id\":null,\"yahoo_id\":29495,\"last_name\":\"Schooley\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'3\\\"\",\"search_full_name\":\"quintonschooley\",\"birth_date\":null,\"espn_id\":null},\"7502\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1602537652068,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dafney\",\"depth_chart_position\":null,\"player_id\":\"7502\",\"birth_city\":null,\"fantasy_data_id\":22477,\"years_exp\":0,\"hashtag\":\"#DominiqueDafney-NFL-GB-0\",\"search_first_name\":\"dominique\",\"rotowire_id\":15181,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dominique Dafney\",\"sportradar_id\":\"921d49c2-64d1-4108-a3a3-0c237e17748a\",\"pandascore_id\":null,\"yahoo_id\":33367,\"last_name\":\"Dafney\",\"metadata\":null,\"college\":\"Indiana State\",\"high_school\":\"Valley (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dominiquedafney\",\"birth_date\":\"1997-06-03\",\"espn_id\":4036129},\"2818\":{\"position\":\"P\",\"injury_notes\":\"Palardy injured his kicking leg and will miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\"00-0031363\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":1597983934586,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"palardy\",\"depth_chart_position\":\"K\",\"player_id\":\"2818\",\"birth_city\":null,\"fantasy_data_id\":17286,\"years_exp\":6,\"hashtag\":\"#MichaelPalardy-NFL-CAR-2\",\"search_first_name\":\"michael\",\"rotowire_id\":10053,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Michael Palardy\",\"sportradar_id\":\"5f3cc875-e802-46b2-81ad-3ffb7a3a1662\",\"pandascore_id\":null,\"yahoo_id\":28292,\"last_name\":\"Palardy\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":2,\"stats_id\":542839,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michaelpalardy\",\"birth_date\":\"1992-07-06\",\"espn_id\":17475},\"7015\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693206165,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"breeland\",\"depth_chart_position\":\"TE\",\"player_id\":\"7015\",\"birth_city\":null,\"fantasy_data_id\":21780,\"years_exp\":0,\"hashtag\":\"#JacobBreeland-NFL-BAL-88\",\"search_first_name\":\"jacob\",\"rotowire_id\":14628,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1781,\"age\":24,\"full_name\":\"Jacob Breeland\",\"sportradar_id\":\"a8614822-2740-4b1f-a01e-b7960a4f07f6\",\"pandascore_id\":null,\"yahoo_id\":32994,\"last_name\":\"Breeland\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Trabuco Hills (CA)\",\"depth_chart_order\":7,\"stats_id\":null,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jacobbreeland\",\"birth_date\":\"1996-09-20\",\"espn_id\":3915136},\"1097\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029708\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1542492335362,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"1097\",\"birth_city\":null,\"fantasy_data_id\":13957,\"years_exp\":8,\"hashtag\":\"#KendallWright-NFL-FA-12\",\"search_first_name\":\"kendall\",\"rotowire_id\":8091,\"rotoworld_id\":7425,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kendall Wright\",\"sportradar_id\":\"441e8866-33f1-4820-9fa3-3aa2c7535975\",\"pandascore_id\":null,\"yahoo_id\":25730,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Pittsburg (TX)\",\"depth_chart_order\":null,\"stats_id\":459364,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kendallwright\",\"birth_date\":\"1989-11-12\",\"espn_id\":14909},\"5358\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034563\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manzolewis\",\"depth_chart_position\":null,\"player_id\":\"5358\",\"birth_city\":null,\"fantasy_data_id\":20424,\"years_exp\":2,\"hashtag\":\"#AnthonyManzoLewis-NFL-FA-40\",\"search_first_name\":\"anthony\",\"rotowire_id\":13056,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Anthony Manzo-Lewis\",\"sportradar_id\":\"0eff9c9a-de53-4daa-97e0-eec4f3a58455\",\"pandascore_id\":null,\"yahoo_id\":31684,\"last_name\":\"Manzo-Lewis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":891900,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'0\\\"\",\"search_full_name\":\"anthonymanzolewis\",\"birth_date\":\"1995-10-11\",\"espn_id\":3935107},\"1051\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coples\",\"depth_chart_position\":null,\"player_id\":\"1051\",\"birth_city\":null,\"fantasy_data_id\":13808,\"years_exp\":8,\"hashtag\":\"#QuintonCoples-NFL-FA-98\",\"search_first_name\":\"quinton\",\"rotowire_id\":8132,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Quinton Coples\",\"sportradar_id\":\"2c7cad5c-8447-44ea-a705-1fad8339a045\",\"pandascore_id\":null,\"yahoo_id\":25726,\"last_name\":\"Coples\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Hargrave Military Academy (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'6\\\"\",\"search_full_name\":\"quintoncoples\",\"birth_date\":\"1990-06-22\",\"espn_id\":14934},\"6214\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035680\",\"first_name\":\"Quincy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1602393010916,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6214\",\"birth_city\":null,\"fantasy_data_id\":21109,\"years_exp\":1,\"hashtag\":\"#QuincyWilliams-NFL-JAX-56\",\"search_first_name\":\"quincy\",\"rotowire_id\":13982,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Quincy Williams\",\"sportradar_id\":\"8227621d-ad2e-4dea-aef5-64d4f154adb2\",\"pandascore_id\":null,\"yahoo_id\":31930,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Murray State\",\"high_school\":\"Wenonah (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"5'11\\\"\",\"search_full_name\":\"quincywilliams\",\"birth_date\":\"1996-08-28\",\"espn_id\":3110565},\"5323\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034279\",\"first_name\":\"Equanimeous\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606525229184,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stbrown\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5323\",\"birth_city\":null,\"fantasy_data_id\":20398,\"years_exp\":2,\"hashtag\":\"#EquanimeousStBrown-NFL-GB-19\",\"search_first_name\":\"equanimeous\",\"rotowire_id\":12560,\"rotoworld_id\":13145,\"active\":true,\"search_rank\":223,\"age\":24,\"full_name\":\"Equanimeous St. Brown\",\"sportradar_id\":\"0b97067d-9e06-4ec0-97b2-e1cb491e12a6\",\"pandascore_id\":null,\"yahoo_id\":31177,\"last_name\":\"St. Brown\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Servite (CA)\",\"depth_chart_order\":2,\"stats_id\":884601,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'5\\\"\",\"search_full_name\":\"equanimeousstbrown\",\"birth_date\":\"1996-09-30\",\"espn_id\":3932442},\"2094\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hocker\",\"depth_chart_position\":null,\"player_id\":\"2094\",\"birth_city\":null,\"fantasy_data_id\":16412,\"years_exp\":6,\"hashtag\":\"#ZachHocker-NFL-FA-1\",\"search_first_name\":\"zach\",\"rotowire_id\":9650,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Hocker\",\"sportradar_id\":\"9009ef93-324b-44a4-a1a5-f2c00c1c4b1c\",\"pandascore_id\":null,\"yahoo_id\":27756,\"last_name\":\"Hocker\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"RussellVille (AR)\",\"depth_chart_order\":null,\"stats_id\":555577,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"zachhocker\",\"birth_date\":\"1991-08-23\",\"espn_id\":16916},\"2955\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"CJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conway\",\"depth_chart_position\":null,\"player_id\":\"2955\",\"birth_city\":null,\"fantasy_data_id\":17433,\"years_exp\":0,\"hashtag\":\"#CJConway-NFL-FA-36\",\"search_first_name\":\"cj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"CJ Conway\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Conway\",\"metadata\":null,\"college\":\"Montclair State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cjconway\",\"birth_date\":null,\"espn_id\":3928276},\"4803\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"iese\",\"depth_chart_position\":null,\"player_id\":\"4803\",\"birth_city\":null,\"fantasy_data_id\":19718,\"years_exp\":2,\"hashtag\":\"#NateIese-NFL-FA-48\",\"search_first_name\":\"nate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nate Iese\",\"sportradar_id\":\"b25cb6c6-4a02-4cd8-ae91-c98658f31f4c\",\"pandascore_id\":null,\"yahoo_id\":30925,\"last_name\":\"Iese\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691039,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nateiese\",\"birth_date\":\"1994-09-25\",\"espn_id\":2971581},\"520\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conner\",\"depth_chart_position\":null,\"player_id\":\"520\",\"birth_city\":null,\"fantasy_data_id\":10991,\"years_exp\":10,\"hashtag\":\"#JohnConner-NFL-FA-38\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":12317,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"John Conner\",\"sportradar_id\":\"d2c2958a-5c04-4cbd-b6f7-947d8e9bd7ff\",\"pandascore_id\":null,\"yahoo_id\":24115,\"last_name\":\"Conner\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":302234,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johnconner\",\"birth_date\":\"1987-06-08\",\"espn_id\":13341},\"3148\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dable\",\"depth_chart_position\":null,\"player_id\":\"3148\",\"birth_city\":null,\"fantasy_data_id\":17904,\"years_exp\":3,\"hashtag\":\"#AnthonyDable-NFL-FA-16\",\"search_first_name\":\"anthony\",\"rotowire_id\":10871,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Anthony Dable\",\"sportradar_id\":\"317ddb52-a14b-4385-8961-dc526d6a509c\",\"pandascore_id\":null,\"yahoo_id\":29226,\"last_name\":\"Dable\",\"metadata\":null,\"college\":\"No college\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":911677,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonydable\",\"birth_date\":\"1988-09-25\",\"espn_id\":3966261},\"438\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hayden\",\"depth_chart_position\":null,\"player_id\":\"438\",\"birth_city\":null,\"fantasy_data_id\":9157,\"years_exp\":12,\"hashtag\":\"#NickHayden-NFL-FA-71\",\"search_first_name\":\"nick\",\"rotowire_id\":5862,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Nick Hayden\",\"sportradar_id\":\"d94137f2-99a9-4be0-ac1d-319b075d7e2c\",\"pandascore_id\":null,\"yahoo_id\":8958,\"last_name\":\"Hayden\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Arrowhead (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickhayden\",\"birth_date\":\"1986-02-04\",\"espn_id\":11415},\"299\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mankins\",\"depth_chart_position\":null,\"player_id\":\"299\",\"birth_city\":null,\"fantasy_data_id\":7437,\"years_exp\":15,\"hashtag\":\"#LoganMankins-NFL-FA-70\",\"search_first_name\":\"logan\",\"rotowire_id\":4518,\"rotoworld_id\":3177,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Logan Mankins\",\"sportradar_id\":\"74e93dc0-514a-4ebe-9fe4-45445f0b4f98\",\"pandascore_id\":null,\"yahoo_id\":7208,\"last_name\":\"Mankins\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Mariposa (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"loganmankins\",\"birth_date\":\"1982-03-10\",\"espn_id\":8446},\"3057\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031779\",\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606339802720,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"finney\",\"depth_chart_position\":null,\"player_id\":\"3057\",\"birth_city\":null,\"fantasy_data_id\":17782,\"years_exp\":5,\"hashtag\":\"#BJFinney-NFL-CIN-61\",\"search_first_name\":\"bj\",\"rotowire_id\":10281,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"B.J. Finney\",\"sportradar_id\":\"e10e0c39-33e0-4ae9-9374-915dee1ceb7a\",\"pandascore_id\":null,\"yahoo_id\":28665,\"last_name\":\"Finney\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Andale (KS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bjfinney\",\"birth_date\":\"1991-10-26\",\"espn_id\":2512172},\"4542\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"BT\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":null,\"player_id\":\"4542\",\"birth_city\":null,\"fantasy_data_id\":19421,\"years_exp\":2,\"hashtag\":\"#BTSanders-NFL-FA-47\",\"search_first_name\":\"bt\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"BT Sanders\",\"sportradar_id\":\"15e92d91-8531-44f8-b113-3da3a005cc8d\",\"pandascore_id\":null,\"yahoo_id\":30600,\"last_name\":\"Sanders\",\"metadata\":null,\"college\":\"Nicholls State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"btsanders\",\"birth_date\":\"1995-06-29\",\"espn_id\":3050615},\"3513\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032998\",\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606341903143,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"norris\",\"depth_chart_position\":\"MLB\",\"player_id\":\"3513\",\"birth_city\":null,\"fantasy_data_id\":18279,\"years_exp\":4,\"hashtag\":\"#JaredNorris-NFL-WAS-50\",\"search_first_name\":\"jared\",\"rotowire_id\":11149,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jared Norris\",\"sportradar_id\":\"e7b9abe1-2a5f-4029-90f5-7fd174750093\",\"pandascore_id\":null,\"yahoo_id\":29505,\"last_name\":\"Norris\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Centennial (CA)\",\"depth_chart_order\":3,\"stats_id\":591933,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jarednorris\",\"birth_date\":\"1993-07-19\",\"espn_id\":2575997},\"1489\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030543\",\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602122129921,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilcox\",\"depth_chart_position\":null,\"player_id\":\"1489\",\"birth_city\":null,\"fantasy_data_id\":15087,\"years_exp\":7,\"hashtag\":\"#JJWilcox-NFL-ATL-29\",\"search_first_name\":\"jj\",\"rotowire_id\":8888,\"rotoworld_id\":8515,\"active\":true,\"search_rank\":728,\"age\":29,\"full_name\":\"J.J. Wilcox\",\"sportradar_id\":\"f4ebaa64-aebe-4a32-b11e-f4f47f511770\",\"pandascore_id\":null,\"yahoo_id\":26703,\"last_name\":\"Wilcox\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":\"Cairo (GA)\",\"depth_chart_order\":null,\"stats_id\":518009,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jjwilcox\",\"birth_date\":\"1991-02-14\",\"espn_id\":15874},\"3022\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031991\",\"first_name\":\"De'Vante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605056161934,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bausby\",\"depth_chart_position\":\"RCB\",\"player_id\":\"3022\",\"birth_city\":null,\"fantasy_data_id\":17651,\"years_exp\":5,\"hashtag\":\"#DeVanteBausby-NFL-DEN-41\",\"search_first_name\":\"devante\",\"rotowire_id\":10775,\"rotoworld_id\":null,\"active\":true,\"search_rank\":941,\"age\":27,\"full_name\":\"De'Vante Bausby\",\"sportradar_id\":\"8491b12f-68a7-4227-9b8b-17630ff52101\",\"pandascore_id\":null,\"yahoo_id\":29090,\"last_name\":\"Bausby\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Pittsburg State\",\"high_school\":\"Hogan Prep (MO)\",\"depth_chart_order\":2,\"stats_id\":791888,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"devantebausby\",\"birth_date\":\"1993-01-15\",\"espn_id\":2613234},\"3451\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032726\",\"first_name\":\"Ka'imi\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606484703512,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fairbairn\",\"depth_chart_position\":\"K\",\"player_id\":\"3451\",\"birth_city\":null,\"fantasy_data_id\":18215,\"years_exp\":4,\"hashtag\":\"#KaimiFairbairn-NFL-HOU-7\",\"search_first_name\":\"kaimi\",\"rotowire_id\":11031,\"rotoworld_id\":null,\"active\":true,\"search_rank\":172,\"age\":26,\"full_name\":\"Ka'imi Fairbairn\",\"sportradar_id\":\"203b60aa-cb94-499c-a4ca-d3c6b94dddc4\",\"pandascore_id\":null,\"yahoo_id\":29792,\"last_name\":\"Fairbairn\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Honolulu Punahou (HI)\",\"depth_chart_order\":1,\"stats_id\":691032,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kaimifairbairn\",\"birth_date\":\"1994-01-29\",\"espn_id\":2971573},\"3672\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richards\",\"depth_chart_position\":null,\"player_id\":\"3672\",\"birth_city\":null,\"fantasy_data_id\":18472,\"years_exp\":0,\"hashtag\":\"#DavidRichards-NFL-FA-12\",\"search_first_name\":\"david\",\"rotowire_id\":11281,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Richards\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29658,\"last_name\":\"Richards\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davidrichards\",\"birth_date\":\"1993-05-04\",\"espn_id\":2576762},\"1542\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030427\",\"first_name\":\"Kemal\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1583081131314,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ishmael\",\"depth_chart_position\":null,\"player_id\":\"1542\",\"birth_city\":null,\"fantasy_data_id\":15179,\"years_exp\":7,\"hashtag\":\"#KemalIshmael-NFL-FA-36\",\"search_first_name\":\"kemal\",\"rotowire_id\":8940,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kemal Ishmael\",\"sportradar_id\":\"e4039abe-35b3-4b78-9752-e714ef01cecd\",\"pandascore_id\":null,\"yahoo_id\":26866,\"last_name\":\"Ishmael\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"North Miami Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":514236,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kemalishmael\",\"birth_date\":\"1991-05-06\",\"espn_id\":16008},\"1786\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lance\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"1786\",\"birth_city\":null,\"fantasy_data_id\":15922,\"years_exp\":1,\"hashtag\":\"#LanceLewis-NFL-FA-18\",\"search_first_name\":\"lance\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Lance Lewis\",\"sportradar_id\":\"764dacf9-f1f0-4f35-9632-6e8edea1ed74\",\"pandascore_id\":null,\"yahoo_id\":26282,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":554354,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lancelewis\",\"birth_date\":\"1988-11-01\",\"espn_id\":15741},\"7292\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kobe\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597020052538,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7292\",\"birth_city\":null,\"fantasy_data_id\":22288,\"years_exp\":0,\"hashtag\":\"#KobeWilliams-NFL-FA-0\",\"search_first_name\":\"kobe\",\"rotowire_id\":14618,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1969,\"age\":21,\"full_name\":\"Kobe Williams\",\"sportradar_id\":\"96a6cd06-8806-4d5a-83f5-42611550fa44\",\"pandascore_id\":null,\"yahoo_id\":33148,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kobewilliams\",\"birth_date\":\"1998-11-16\",\"espn_id\":null},\"3164\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033045\",\"first_name\":\"Ezekiel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606440961222,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":\"RB\",\"player_id\":\"3164\",\"birth_city\":null,\"fantasy_data_id\":17923,\"years_exp\":4,\"hashtag\":\"#EzekielElliott-NFL-DAL-21\",\"search_first_name\":\"ezekiel\",\"rotowire_id\":10736,\"rotoworld_id\":11265,\"active\":true,\"search_rank\":4,\"age\":25,\"full_name\":\"Ezekiel Elliott\",\"sportradar_id\":\"bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a\",\"pandascore_id\":null,\"yahoo_id\":29238,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"John Burroughs (MO)\",\"depth_chart_order\":1,\"stats_id\":728338,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ezekielelliott\",\"birth_date\":\"1995-07-22\",\"espn_id\":3051392},\"7512\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"7512\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":5,\"hashtag\":\"#AaronSmith-NFL-FA-44\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":null,\"age\":null,\"full_name\":\"Aaron Smith\",\"sportradar_id\":\"f11e8e09-448e-4aa6-b549-a145449a93c1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":null,\"height\":\"0'0\\\"\",\"search_full_name\":\"aaronsmith\",\"birth_date\":null,\"espn_id\":null},\"870\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"irving\",\"depth_chart_position\":null,\"player_id\":\"870\",\"birth_city\":null,\"fantasy_data_id\":13019,\"years_exp\":9,\"hashtag\":\"#NateIrving-NFL-FA-56\",\"search_first_name\":\"nate\",\"rotowire_id\":7499,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Nate Irving\",\"sportradar_id\":\"ca6c6bb5-9ab9-4b4c-a507-36c9dbd7738e\",\"pandascore_id\":null,\"yahoo_id\":24854,\"last_name\":\"Irving\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Wallace-Rose Hill (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nateirving\",\"birth_date\":\"1988-07-12\",\"espn_id\":14004},\"3232\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033064\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596384016383,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gotsis\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3232\",\"birth_city\":null,\"fantasy_data_id\":17993,\"years_exp\":4,\"hashtag\":\"#AdamGotsis-NFL-JAX-96\",\"search_first_name\":\"adam\",\"rotowire_id\":11044,\"rotoworld_id\":11416,\"active\":true,\"search_rank\":981,\"age\":28,\"full_name\":\"Adam Gotsis\",\"sportradar_id\":\"56c81bc7-72ac-4356-a737-b8010f931b56\",\"pandascore_id\":null,\"yahoo_id\":29297,\"last_name\":\"Gotsis\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Kew (AUS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'4\\\"\",\"search_full_name\":\"adamgotsis\",\"birth_date\":\"1992-09-23\",\"espn_id\":2971498},\"5170\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034109\",\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606410057909,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lindsay\",\"depth_chart_position\":\"RB\",\"player_id\":\"5170\",\"birth_city\":null,\"fantasy_data_id\":20128,\"years_exp\":2,\"hashtag\":\"#PhillipLindsay-NFL-DEN-30\",\"search_first_name\":\"phillip\",\"rotowire_id\":12715,\"rotoworld_id\":13357,\"active\":true,\"search_rank\":84,\"age\":26,\"full_name\":\"Phillip Lindsay\",\"sportradar_id\":\"8322b598-ab65-4b2c-8a54-af37f67a062d\",\"pandascore_id\":null,\"yahoo_id\":31379,\"last_name\":\"Lindsay\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Colorado\",\"high_school\":\"Denver South (CO)\",\"depth_chart_order\":2,\"stats_id\":747861,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'8\\\"\",\"search_full_name\":\"philliplindsay\",\"birth_date\":\"1994-07-24\",\"espn_id\":3052117},\"2497\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randall\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"2497\",\"birth_city\":null,\"fantasy_data_id\":16956,\"years_exp\":5,\"hashtag\":\"#RandallEvans-NFL-FA-41\",\"search_first_name\":\"randall\",\"rotowire_id\":10482,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Randall Evans\",\"sportradar_id\":\"368d8041-3129-4176-9618-2b1f9434d875\",\"pandascore_id\":null,\"yahoo_id\":28584,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Miami Palmetto (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"randallevans\",\"birth_date\":\"1991-12-26\",\"espn_id\":2512151},\"1873\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richie\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leone\",\"depth_chart_position\":null,\"player_id\":\"1873\",\"birth_city\":null,\"fantasy_data_id\":16090,\"years_exp\":6,\"hashtag\":\"#RichieLeone-NFL-ARI-9\",\"search_first_name\":\"richie\",\"rotowire_id\":9672,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Richie Leone\",\"sportradar_id\":\"44f6c82c-528a-41fe-9cfb-721ab4a4c1a1\",\"pandascore_id\":null,\"yahoo_id\":27982,\"last_name\":\"Leone\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Roswell (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'3\\\"\",\"search_full_name\":\"richieleone\",\"birth_date\":\"1992-03-10\",\"espn_id\":17197},\"1771\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"M\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"1771\",\"birth_city\":null,\"fantasy_data_id\":15834,\"years_exp\":1,\"hashtag\":\"#MHarris-NFL-FA-18\",\"search_first_name\":\"m\",\"rotowire_id\":9882,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"M Harris\",\"sportradar_id\":\"8230c7f2-9723-4d28-a958-75bdd9bc4141\",\"pandascore_id\":null,\"yahoo_id\":25493,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Murray State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":383698,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mharris\",\"birth_date\":\"1989-03-01\",\"espn_id\":14688},\"2642\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Houston\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Physically Unable to Perform\",\"injury_body_part\":null,\"search_last_name\":\"bates\",\"depth_chart_position\":null,\"player_id\":\"2642\",\"birth_city\":null,\"fantasy_data_id\":17110,\"years_exp\":5,\"hashtag\":\"#HoustonBates-NFL-FA-96\",\"search_first_name\":\"houston\",\"rotowire_id\":10691,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Houston Bates\",\"sportradar_id\":\"db7af251-5251-4944-90cd-836cac9e2e40\",\"pandascore_id\":null,\"yahoo_id\":29121,\"last_name\":\"Bates\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"St. Paul's (LA)\",\"depth_chart_order\":null,\"stats_id\":546007,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"houstonbates\",\"birth_date\":\"1990-12-20\",\"espn_id\":2511350},\"5988\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035416\",\"first_name\":\"Mitch\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599097237626,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hyatt\",\"depth_chart_position\":null,\"player_id\":\"5988\",\"birth_city\":null,\"fantasy_data_id\":20818,\"years_exp\":1,\"hashtag\":\"#MitchHyatt-NFL-DAL-65\",\"search_first_name\":\"mitch\",\"rotowire_id\":13865,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Mitch Hyatt\",\"sportradar_id\":\"b620e5ee-840c-402d-97be-9b2e0405e1f8\",\"pandascore_id\":null,\"yahoo_id\":32207,\"last_name\":\"Hyatt\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"North Gwinnett (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mitchhyatt\",\"birth_date\":\"1997-02-06\",\"espn_id\":3728250},\"5223\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034243\",\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564434021293,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"5223\",\"birth_city\":null,\"fantasy_data_id\":20182,\"years_exp\":2,\"hashtag\":\"#CalebScott-NFL-GB-10\",\"search_first_name\":\"caleb\",\"rotowire_id\":13064,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Caleb Scott\",\"sportradar_id\":\"a3055591-6c57-4ff0-9a2f-5e2547c62820\",\"pandascore_id\":null,\"yahoo_id\":31464,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"North Gwinnett (GA)\",\"depth_chart_order\":null,\"stats_id\":835860,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"calebscott\",\"birth_date\":\"1996-02-08\",\"espn_id\":3122167},\"6878\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606160714368,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcfarland\",\"depth_chart_position\":\"RB\",\"player_id\":\"6878\",\"birth_city\":null,\"fantasy_data_id\":21854,\"years_exp\":0,\"hashtag\":\"#AnthonyMcFarland-NFL-PIT-26\",\"search_first_name\":\"anthony\",\"rotowire_id\":14357,\"rotoworld_id\":null,\"active\":true,\"search_rank\":207,\"age\":21,\"full_name\":\"Anthony McFarland\",\"sportradar_id\":\"30487ab2-836d-4e4b-a46a-89e31b414374\",\"pandascore_id\":null,\"yahoo_id\":32794,\"last_name\":\"McFarland\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Maryland\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'9\\\"\",\"search_full_name\":\"anthonymcfarland\",\"birth_date\":\"1999-03-04\",\"espn_id\":4241941},\"501\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cary\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"501\",\"birth_city\":null,\"fantasy_data_id\":10195,\"years_exp\":12,\"hashtag\":\"#CaryWilliams-NFL-FA-40\",\"search_first_name\":\"cary\",\"rotowire_id\":5867,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Cary Williams\",\"sportradar_id\":\"b3484cb1-c3f6-4f52-b648-6b78ebcb24f1\",\"pandascore_id\":null,\"yahoo_id\":9006,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Washburn\",\"high_school\":\"Chaminade-Madonna (FL)\",\"depth_chart_order\":null,\"stats_id\":230844,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"carywilliams\",\"birth_date\":\"1984-12-23\",\"espn_id\":11463},\"4475\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sefo\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"liufau\",\"depth_chart_position\":null,\"player_id\":\"4475\",\"birth_city\":null,\"fantasy_data_id\":19343,\"years_exp\":3,\"hashtag\":\"#SefoLiufau-NFL-FA-0\",\"search_first_name\":\"sefo\",\"rotowire_id\":11838,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sefo Liufau\",\"sportradar_id\":\"f8ec6809-47cb-448f-89cf-d5a816dae498\",\"pandascore_id\":null,\"yahoo_id\":30476,\"last_name\":\"Liufau\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747862,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sefoliufau\",\"birth_date\":\"1994-10-29\",\"espn_id\":3052118},\"3149\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grymes\",\"depth_chart_position\":null,\"player_id\":\"3149\",\"birth_city\":null,\"fantasy_data_id\":17905,\"years_exp\":3,\"hashtag\":\"#AaronGrymes-NFL-FA-38\",\"search_first_name\":\"aaron\",\"rotowire_id\":10872,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Aaron Grymes\",\"sportradar_id\":\"65a12a0a-a09c-494f-9cb7-9958e48f1fff\",\"pandascore_id\":null,\"yahoo_id\":29227,\"last_name\":\"Grymes\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":515465,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"aarongrymes\",\"birth_date\":\"1991-03-01\",\"espn_id\":2474999},\"5048\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034780\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605458710874,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"yiadom\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5048\",\"birth_city\":null,\"fantasy_data_id\":19901,\"years_exp\":2,\"hashtag\":\"#IsaacYiadom-NFL-NYG-27\",\"search_first_name\":\"isaac\",\"rotowire_id\":12778,\"rotoworld_id\":13154,\"active\":true,\"search_rank\":1333,\"age\":24,\"full_name\":\"Isaac Yiadom\",\"sportradar_id\":\"5bde0a71-c7ec-465f-ad35-c195e1d10b29\",\"pandascore_id\":null,\"yahoo_id\":31069,\"last_name\":\"Yiadom\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Doherty (MA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"isaacyiadom\",\"birth_date\":\"1996-02-20\",\"espn_id\":3122797},\"6929\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598493943686,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":null,\"player_id\":\"6929\",\"birth_city\":null,\"fantasy_data_id\":21917,\"years_exp\":0,\"hashtag\":\"#BrianCole-NFL-MIA-39\",\"search_first_name\":\"brian\",\"rotowire_id\":14620,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1837,\"age\":23,\"full_name\":\"Brian Cole\",\"sportradar_id\":\"73b6e69a-516b-4b95-9edd-0a8959500956\",\"pandascore_id\":null,\"yahoo_id\":32919,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Heritage (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"briancole\",\"birth_date\":\"1997-04-03\",\"espn_id\":null},\"3890\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devon\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"3890\",\"birth_city\":null,\"fantasy_data_id\":18712,\"years_exp\":0,\"hashtag\":\"#DevonBell-NFL-FA-3\",\"search_first_name\":\"devon\",\"rotowire_id\":11329,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Devon Bell\",\"sportradar_id\":\"0a4fbc50-4ed9-4b73-b992-b1e86c006a3f\",\"pandascore_id\":null,\"yahoo_id\":30020,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"devonbell\",\"birth_date\":\"1993-07-04\",\"espn_id\":2971374},\"531\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027860\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606266655033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haden\",\"depth_chart_position\":\"LCB\",\"player_id\":\"531\",\"birth_city\":null,\"fantasy_data_id\":11043,\"years_exp\":10,\"hashtag\":\"#JoeHaden-NFL-PIT-23\",\"search_first_name\":\"joe\",\"rotowire_id\":6617,\"rotoworld_id\":5631,\"active\":true,\"search_rank\":601,\"age\":31,\"full_name\":\"Joe Haden\",\"sportradar_id\":\"3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9\",\"pandascore_id\":null,\"yahoo_id\":23982,\"last_name\":\"Haden\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Florida\",\"high_school\":\"Friendly (MD)\",\"depth_chart_order\":1,\"stats_id\":380747,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joehaden\",\"birth_date\":\"1989-04-14\",\"espn_id\":13249},\"2194\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031362\",\"first_name\":\"Trai\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605471612456,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":\"RG\",\"player_id\":\"2194\",\"birth_city\":null,\"fantasy_data_id\":16563,\"years_exp\":6,\"hashtag\":\"#TraiTurner-NFL-LAC-70\",\"search_first_name\":\"trai\",\"rotowire_id\":9357,\"rotoworld_id\":9565,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Trai Turner\",\"sportradar_id\":\"96341b4d-152a-4020-b68a-3ff93e1baba5\",\"pandascore_id\":null,\"yahoo_id\":27620,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"St. Augustine (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"traiturner\",\"birth_date\":\"1993-06-14\",\"espn_id\":16789},\"6478\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034947\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574290557030,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crozier\",\"depth_chart_position\":null,\"player_id\":\"6478\",\"birth_city\":null,\"fantasy_data_id\":21461,\"years_exp\":1,\"hashtag\":\"#RyanCrozier-NFL-FA-62\",\"search_first_name\":\"ryan\",\"rotowire_id\":14060,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Crozier\",\"sportradar_id\":\"8cdf3bb1-29d1-4812-ae16-893f3c448df1\",\"pandascore_id\":null,\"yahoo_id\":32217,\"last_name\":\"Crozier\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryancrozier\",\"birth_date\":\"1995-10-31\",\"espn_id\":3125897},\"4681\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033815\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599429961005,\"status\":\"Practice Squad\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4681\",\"birth_city\":null,\"fantasy_data_id\":19582,\"years_exp\":3,\"hashtag\":\"#ReggieDavis-NFL-CHI-18\",\"search_first_name\":\"reggie\",\"rotowire_id\":12146,\"rotoworld_id\":12914,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Reggie Davis\",\"sportradar_id\":\"3411b31b-9800-4f5b-a43f-4564c9530627\",\"pandascore_id\":null,\"yahoo_id\":30827,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":734314,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"reggiedavis\",\"birth_date\":\"1995-11-22\",\"espn_id\":3043134},\"727\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"727\",\"birth_city\":null,\"fantasy_data_id\":12285,\"years_exp\":10,\"hashtag\":\"#AnthonyDixon-NFL-FA-26\",\"search_first_name\":\"anthony\",\"rotowire_id\":6484,\"rotoworld_id\":5773,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Anthony Dixon\",\"sportradar_id\":\"3fed6499-3bcb-42f4-b583-5579a97b5e30\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Terry (MS)\",\"depth_chart_order\":null,\"stats_id\":332297,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonydixon\",\"birth_date\":\"1987-09-24\",\"espn_id\":13212},\"7306\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hakeem\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"7306\",\"birth_city\":null,\"fantasy_data_id\":22299,\"years_exp\":0,\"hashtag\":\"#HakeemBailey-NFL-FA-0\",\"search_first_name\":\"hakeem\",\"rotowire_id\":15074,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1973,\"age\":23,\"full_name\":\"Hakeem Bailey\",\"sportradar_id\":\"44694a33-12f9-458a-a316-a2c6b34ede5b\",\"pandascore_id\":null,\"yahoo_id\":32957,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'0\\\"\",\"search_full_name\":\"hakeembailey\",\"birth_date\":\"1997-03-29\",\"espn_id\":4241862},\"94\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024348\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1546007706398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"94\",\"birth_city\":null,\"fantasy_data_id\":2550,\"years_exp\":14,\"hashtag\":\"#KyleWilliams-NFL-FA-95\",\"search_first_name\":\"kyle\",\"rotowire_id\":5152,\"rotoworld_id\":3947,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Kyle Williams\",\"sportradar_id\":\"57c5c69c-844e-41f1-9985-6fc178cee514\",\"pandascore_id\":null,\"yahoo_id\":7883,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Ruston (LA)\",\"depth_chart_order\":null,\"stats_id\":216860,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kylewilliams\",\"birth_date\":\"1983-06-10\",\"espn_id\":9720},\"1790\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"annen\",\"depth_chart_position\":null,\"player_id\":\"1790\",\"birth_city\":null,\"fantasy_data_id\":15962,\"years_exp\":2,\"hashtag\":\"#BlakeAnnen-NFL-FA-86\",\"search_first_name\":\"blake\",\"rotowire_id\":9725,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Blake Annen\",\"sportradar_id\":\"64e053e3-6658-46cd-9d3a-323f52c551fc\",\"pandascore_id\":null,\"yahoo_id\":27786,\"last_name\":\"Annen\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":511718,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'4\\\"\",\"search_full_name\":\"blakeannen\",\"birth_date\":\"1991-05-28\",\"espn_id\":16964},\"44\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024495\",\"first_name\":\"Ahmad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1536969902962,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"44\",\"birth_city\":null,\"fantasy_data_id\":1248,\"years_exp\":14,\"hashtag\":\"#AhmadBrooks-NFL-FA-55\",\"search_first_name\":\"ahmad\",\"rotowire_id\":5108,\"rotoworld_id\":3682,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Ahmad Brooks\",\"sportradar_id\":\"22f9e814-6daa-4fe6-982e-c2cc5290561d\",\"pandascore_id\":null,\"yahoo_id\":8006,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Hylton (VA)\",\"depth_chart_order\":null,\"stats_id\":215678,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"Sus\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ahmadbrooks\",\"birth_date\":\"1984-03-14\",\"espn_id\":10138},\"5139\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034339\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603401648282,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"quinn\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5139\",\"birth_city\":null,\"fantasy_data_id\":20079,\"years_exp\":2,\"hashtag\":\"#TreyQuinn-NFL-JAX-18\",\"search_first_name\":\"trey\",\"rotowire_id\":12493,\"rotoworld_id\":13213,\"active\":true,\"search_rank\":291,\"age\":24,\"full_name\":\"Trey Quinn\",\"sportradar_id\":\"35341f6c-bca9-427b-a8eb-f9a24a334184\",\"pandascore_id\":null,\"yahoo_id\":31226,\"last_name\":\"Quinn\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Barbe (LA)\",\"depth_chart_order\":2,\"stats_id\":822031,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"treyquinn\",\"birth_date\":\"1995-12-07\",\"espn_id\":3115365},\"1713\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030551\",\"first_name\":\"Colton\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1543364722046,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schmidt\",\"depth_chart_position\":null,\"player_id\":\"1713\",\"birth_city\":null,\"fantasy_data_id\":15625,\"years_exp\":7,\"hashtag\":\"#ColtonSchmidt-NFL-FA-6\",\"search_first_name\":\"colton\",\"rotowire_id\":9027,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Colton Schmidt\",\"sportradar_id\":\"ca668ed5-05b3-41da-a3a4-6fa8982968f6\",\"pandascore_id\":null,\"yahoo_id\":27459,\"last_name\":\"Schmidt\",\"metadata\":null,\"college\":\"California-Davis\",\"high_school\":\"Liberty (CA)\",\"depth_chart_order\":null,\"stats_id\":515262,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"coltonschmidt\",\"birth_date\":\"1990-10-27\",\"espn_id\":16623},\"2988\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032066\",\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534985702307,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mitchel\",\"depth_chart_position\":null,\"player_id\":\"2988\",\"birth_city\":null,\"fantasy_data_id\":17495,\"years_exp\":5,\"hashtag\":\"#TevinMitchel-NFL-FA-37\",\"search_first_name\":\"tevin\",\"rotowire_id\":10475,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tevin Mitchel\",\"sportradar_id\":\"075a78d5-72fd-440e-ae25-f22b57835ec4\",\"pandascore_id\":null,\"yahoo_id\":28570,\"last_name\":\"Mitchel\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604741,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tevinmitchel\",\"birth_date\":\"1992-08-03\",\"espn_id\":2574530},\"2632\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"2632\",\"birth_city\":null,\"fantasy_data_id\":17100,\"years_exp\":0,\"hashtag\":\"#DesmondMartin-NFL-FA-40\",\"search_first_name\":\"desmond\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Desmond Martin\",\"sportradar_id\":\"a3c5341c-6f95-491e-a455-48e91d3bd425\",\"pandascore_id\":null,\"yahoo_id\":29104,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Wayne State (MI)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870883,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'0\\\"\",\"search_full_name\":\"desmondmartin\",\"birth_date\":\"1992-03-20\",\"espn_id\":2613133},\"485\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalif\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1513128601486,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"485\",\"birth_city\":null,\"fantasy_data_id\":9826,\"years_exp\":15,\"hashtag\":\"#KhalifBarnes-NFL-FA-64\",\"search_first_name\":\"khalif\",\"rotowire_id\":4444,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Khalif Barnes\",\"sportradar_id\":\"a5bfdc4f-8f40-4b71-ae30-7283dce19238\",\"pandascore_id\":null,\"yahoo_id\":7228,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Mount Miguel (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"khalifbarnes\",\"birth_date\":\"1982-04-21\",\"espn_id\":8466},\"3587\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stefan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535225705763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclure\",\"depth_chart_position\":null,\"player_id\":\"3587\",\"birth_city\":null,\"fantasy_data_id\":18367,\"years_exp\":4,\"hashtag\":\"#StefanMcClure-NFL-FA-42\",\"search_first_name\":\"stefan\",\"rotowire_id\":11417,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Stefan McClure\",\"sportradar_id\":\"9a1a0560-9559-4f4a-bff3-8d36a1de4681\",\"pandascore_id\":null,\"yahoo_id\":29604,\"last_name\":\"McClure\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607692,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"stefanmcclure\",\"birth_date\":\"1993-01-31\",\"espn_id\":2576878},\"2911\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manton\",\"depth_chart_position\":null,\"player_id\":\"2911\",\"birth_city\":null,\"fantasy_data_id\":17379,\"years_exp\":0,\"hashtag\":\"#JustinManton-NFL-FA-3\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Manton\",\"sportradar_id\":\"9ddfda86-dcac-4f32-a93f-93d0e87099f4\",\"pandascore_id\":null,\"yahoo_id\":28954,\"last_name\":\"Manton\",\"metadata\":null,\"college\":\"Louisiana-Monroe\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591689,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinmanton\",\"birth_date\":\"1992-06-28\",\"espn_id\":2574044},\"3334\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032788\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604113841621,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"3334\",\"birth_city\":null,\"fantasy_data_id\":18095,\"years_exp\":4,\"hashtag\":\"#DJWhite-NFL-LV-39\",\"search_first_name\":\"dj\",\"rotowire_id\":10896,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"D.J. White\",\"sportradar_id\":\"89f84d50-39b0-4a76-a004-d18b1c255413\",\"pandascore_id\":null,\"yahoo_id\":29412,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Union Grove (GA)\",\"depth_chart_order\":null,\"stats_id\":691566,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"djwhite\",\"birth_date\":\"1993-09-09\",\"espn_id\":2971478},\"2595\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032006\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1543366220718,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"semisch\",\"depth_chart_position\":\"TE\",\"player_id\":\"2595\",\"birth_city\":null,\"fantasy_data_id\":17063,\"years_exp\":5,\"hashtag\":\"#TimSemisch-NFL-FA-86\",\"search_first_name\":\"tim\",\"rotowire_id\":10769,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tim Semisch\",\"sportradar_id\":\"310f7c80-2118-4fa5-b4ea-4147ce9cf941\",\"pandascore_id\":null,\"yahoo_id\":29055,\"last_name\":\"Semisch\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":608071,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'8\\\"\",\"search_full_name\":\"timsemisch\",\"birth_date\":\"1991-09-18\",\"espn_id\":2574931},\"4632\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033693\",\"first_name\":\"Carroll\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1575162907791,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"4632\",\"birth_city\":null,\"fantasy_data_id\":19526,\"years_exp\":3,\"hashtag\":\"#CarrollPhillips-NFL-FA-59\",\"search_first_name\":\"carroll\",\"rotowire_id\":11935,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Carroll Phillips\",\"sportradar_id\":\"7840c637-976b-47e5-8831-09e1099c0484\",\"pandascore_id\":null,\"yahoo_id\":30405,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606558,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'3\\\"\",\"search_full_name\":\"carrollphillips\",\"birth_date\":\"1992-09-02\",\"espn_id\":3115911},\"6193\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1556845509191,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":null,\"player_id\":\"6193\",\"birth_city\":null,\"fantasy_data_id\":21094,\"years_exp\":0,\"hashtag\":\"#ColeMurphy-NFL-FA-4\",\"search_first_name\":\"cole\",\"rotowire_id\":13900,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Cole Murphy\",\"sportradar_id\":\"e3e8c328-c3c4-4cf0-8682-82b14a0ebf57\",\"pandascore_id\":null,\"yahoo_id\":31820,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"colemurphy\",\"birth_date\":null,\"espn_id\":null},\"2973\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rankin\",\"depth_chart_position\":null,\"player_id\":\"2973\",\"birth_city\":null,\"fantasy_data_id\":17468,\"years_exp\":0,\"hashtag\":\"#JoeRankin-NFL-FA-35\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Rankin\",\"sportradar_id\":\"15ede5a3-8973-4cb7-83e5-fcdd2cc82525\",\"pandascore_id\":null,\"yahoo_id\":29190,\"last_name\":\"Rankin\",\"metadata\":null,\"college\":\"Morgan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"joerankin\",\"birth_date\":null,\"espn_id\":2507913},\"6919\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thaddeus\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693203986,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"moss\",\"depth_chart_position\":\"TE\",\"player_id\":\"6919\",\"birth_city\":null,\"fantasy_data_id\":21955,\"years_exp\":0,\"hashtag\":\"#ThaddeusMoss-NFL-WAS-46\",\"search_first_name\":\"thaddeus\",\"rotowire_id\":14524,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Thaddeus Moss\",\"sportradar_id\":\"309b8104-8407-4365-989a-f726251714a7\",\"pandascore_id\":null,\"yahoo_id\":33208,\"last_name\":\"Moss\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Lincoln (RI)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'3\\\"\",\"search_full_name\":\"thaddeusmoss\",\"birth_date\":\"1998-05-14\",\"espn_id\":4036189},\"3367\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033048\",\"first_name\":\"Kavon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602109528998,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"frazier\",\"depth_chart_position\":\"FS\",\"player_id\":\"3367\",\"birth_city\":null,\"fantasy_data_id\":18128,\"years_exp\":4,\"hashtag\":\"#KavonFrazier-NFL-MIA-35\",\"search_first_name\":\"kavon\",\"rotowire_id\":11036,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1036,\"age\":26,\"full_name\":\"Kavon Frazier\",\"sportradar_id\":\"a6493c08-f70e-4aef-ab07-914625b9c047\",\"pandascore_id\":null,\"yahoo_id\":29446,\"last_name\":\"Frazier\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Grand Rapids Christian (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kavonfrazier\",\"birth_date\":\"1994-08-11\",\"espn_id\":2972505},\"3531\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marshaun\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coprich\",\"depth_chart_position\":null,\"player_id\":\"3531\",\"birth_city\":null,\"fantasy_data_id\":18298,\"years_exp\":0,\"hashtag\":\"#MarshaunCoprich-NFL-FA-35\",\"search_first_name\":\"marshaun\",\"rotowire_id\":10980,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Marshaun Coprich\",\"sportradar_id\":\"5ff7ed23-2bd9-46a7-8369-d8792a92f477\",\"pandascore_id\":null,\"yahoo_id\":29843,\"last_name\":\"Coprich\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'8\\\"\",\"search_full_name\":\"marshauncoprich\",\"birth_date\":\"1994-08-10\",\"espn_id\":2975527},\"1837\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031345\",\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605655225150,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"garoppolo\",\"depth_chart_position\":\"QB\",\"player_id\":\"1837\",\"birth_city\":null,\"fantasy_data_id\":16041,\"years_exp\":6,\"hashtag\":\"#JimmyGaroppolo-NFL-SF-10\",\"search_first_name\":\"jimmy\",\"rotowire_id\":9320,\"rotoworld_id\":9360,\"active\":true,\"search_rank\":156,\"age\":29,\"full_name\":\"Jimmy Garoppolo\",\"sportradar_id\":\"42de9d1d-0352-460b-9172-9452414fd7fd\",\"pandascore_id\":null,\"yahoo_id\":27590,\"last_name\":\"Garoppolo\",\"metadata\":null,\"college\":\"Eastern Illinois\",\"high_school\":\"Rolling Meadows (IL)\",\"depth_chart_order\":2,\"stats_id\":555358,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jimmygaroppolo\",\"birth_date\":\"1991-11-02\",\"espn_id\":16760},\"1455\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zac\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1521126601199,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dysert\",\"depth_chart_position\":null,\"player_id\":\"1455\",\"birth_city\":null,\"fantasy_data_id\":15037,\"years_exp\":6,\"hashtag\":\"#ZacDysert-NFL-FA-3\",\"search_first_name\":\"zac\",\"rotowire_id\":8747,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zac Dysert\",\"sportradar_id\":\"40a19e4d-a6c1-4bee-a7b4-5ed61ae75323\",\"pandascore_id\":null,\"yahoo_id\":26857,\"last_name\":\"Dysert\",\"metadata\":null,\"college\":\"Miami - OH\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":469065,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'3\\\"\",\"search_full_name\":\"zacdysert\",\"birth_date\":\"1990-02-08\",\"espn_id\":15935},\"4063\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033875\",\"first_name\":\"Haason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605743443375,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reddick\",\"depth_chart_position\":\"SLB\",\"player_id\":\"4063\",\"birth_city\":null,\"fantasy_data_id\":18909,\"years_exp\":3,\"hashtag\":\"#HaasonReddick-NFL-ARI-43\",\"search_first_name\":\"haason\",\"rotowire_id\":11937,\"rotoworld_id\":12228,\"active\":true,\"search_rank\":1119,\"age\":26,\"full_name\":\"Haason Reddick\",\"sportradar_id\":\"ee399a97-6868-4db1-9381-09073914c2d6\",\"pandascore_id\":null,\"yahoo_id\":30126,\"last_name\":\"Reddick\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Haddon Heights (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"haasonreddick\",\"birth_date\":\"1994-09-22\",\"espn_id\":2980504},\"7102\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fine\",\"depth_chart_position\":null,\"player_id\":\"7102\",\"birth_city\":null,\"fantasy_data_id\":21821,\"years_exp\":0,\"hashtag\":\"#MasonFine-NFL-FA-0\",\"search_first_name\":\"mason\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Mason Fine\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fine\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"masonfine\",\"birth_date\":\"1997-04-19\",\"espn_id\":null},\"6798\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606346702328,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reagor\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6798\",\"birth_city\":null,\"fantasy_data_id\":21686,\"years_exp\":0,\"hashtag\":\"#JalenReagor-NFL-PHI-18\",\"search_first_name\":\"jalen\",\"rotowire_id\":14421,\"rotoworld_id\":null,\"active\":true,\"search_rank\":141,\"age\":21,\"full_name\":\"Jalen Reagor\",\"sportradar_id\":\"06ff7f42-5fe7-4899-84a5-9ba5349d17e8\",\"pandascore_id\":null,\"yahoo_id\":32691,\"last_name\":\"Reagor\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Waxahachie (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jalenreagor\",\"birth_date\":\"1999-01-02\",\"espn_id\":4241802},\"4565\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"olugbode\",\"depth_chart_position\":null,\"player_id\":\"4565\",\"birth_city\":null,\"fantasy_data_id\":19449,\"years_exp\":2,\"hashtag\":\"#KennethOlugbode-NFL-FA-49\",\"search_first_name\":\"kenneth\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kenneth Olugbode\",\"sportradar_id\":\"0ca95da1-4969-4a31-8bab-3a03f0fa0b7b\",\"pandascore_id\":null,\"yahoo_id\":30544,\"last_name\":\"Olugbode\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kennetholugbode\",\"birth_date\":\"1995-09-19\",\"espn_id\":3052120},\"7301\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tershawn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604373940173,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wharton\",\"depth_chart_position\":\"LDT\",\"player_id\":\"7301\",\"birth_city\":null,\"fantasy_data_id\":22295,\"years_exp\":0,\"hashtag\":\"#TershawnWharton-NFL-KC-98\",\"search_first_name\":\"tershawn\",\"rotowire_id\":15077,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1972,\"age\":22,\"full_name\":\"Tershawn Wharton\",\"sportradar_id\":\"632a8382-27d6-45ae-b3d2-a37157e09ab7\",\"pandascore_id\":null,\"yahoo_id\":32952,\"last_name\":\"Wharton\",\"metadata\":null,\"college\":\"Missouri S&T\",\"high_school\":\"University City (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tershawnwharton\",\"birth_date\":\"1998-06-25\",\"espn_id\":4058925},\"5734\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034709\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"duncan\",\"depth_chart_position\":null,\"player_id\":\"5734\",\"birth_city\":null,\"fantasy_data_id\":20629,\"years_exp\":2,\"hashtag\":\"#CJDuncan-NFL-FA-82\",\"search_first_name\":\"cj\",\"rotowire_id\":13315,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"C.J. Duncan\",\"sportradar_id\":\"414861a7-e2b6-4b33-94d1-31948d2c824d\",\"pandascore_id\":null,\"yahoo_id\":31716,\"last_name\":\"Duncan\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744655,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cjduncan\",\"birth_date\":\"1995-03-24\",\"espn_id\":3051751},\"1395\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030471\",\"first_name\":\"Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603640406646,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"SS\",\"player_id\":\"1395\",\"birth_city\":null,\"fantasy_data_id\":14925,\"years_exp\":7,\"hashtag\":\"#ShawnWilliams-NFL-CIN-36\",\"search_first_name\":\"shawn\",\"rotowire_id\":8777,\"rotoworld_id\":8517,\"active\":true,\"search_rank\":718,\"age\":29,\"full_name\":\"Shawn Williams\",\"sportradar_id\":\"c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb\",\"pandascore_id\":null,\"yahoo_id\":26707,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Early County (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shawnwilliams\",\"birth_date\":\"1991-05-13\",\"espn_id\":15877},\"6260\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1565735428197,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":\"TE\",\"player_id\":\"6260\",\"birth_city\":null,\"fantasy_data_id\":21195,\"years_exp\":1,\"hashtag\":\"#JakePowell-NFL-FA-48\",\"search_first_name\":\"jake\",\"rotowire_id\":13994,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jake Powell\",\"sportradar_id\":\"82ef1c60-d735-4ebf-8197-eb31ef55ae31\",\"pandascore_id\":null,\"yahoo_id\":32391,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Monmouth\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":839688,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jakepowell\",\"birth_date\":null,\"espn_id\":3117919},\"755\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024330\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blackmon\",\"depth_chart_position\":null,\"player_id\":\"755\",\"birth_city\":null,\"fantasy_data_id\":12453,\"years_exp\":14,\"hashtag\":\"#WillBlackmon-NFL-FA-41\",\"search_first_name\":\"will\",\"rotowire_id\":4991,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Will Blackmon\",\"sportradar_id\":\"5bd91ec9-3d48-48c1-b36e-78462044acfc\",\"pandascore_id\":null,\"yahoo_id\":7864,\"last_name\":\"Blackmon\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Bishop Hendricken (RI)\",\"depth_chart_order\":null,\"stats_id\":216199,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"willblackmon\",\"birth_date\":\"1984-10-27\",\"espn_id\":9701},\"849\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mister\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"849\",\"birth_city\":null,\"fantasy_data_id\":12932,\"years_exp\":3,\"hashtag\":\"#MisterAlexander-NFL-FA-90\",\"search_first_name\":\"mister\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Mister Alexander\",\"sportradar_id\":\"3fba52b0-0165-4cb6-84bf-63e445e1e783\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'3\\\"\",\"search_full_name\":\"misteralexander\",\"birth_date\":\"1988-06-02\",\"espn_id\":14534},\"3246\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032891\",\"first_name\":\"Daryl\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603935029907,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"worley\",\"depth_chart_position\":null,\"player_id\":\"3246\",\"birth_city\":null,\"fantasy_data_id\":18007,\"years_exp\":4,\"hashtag\":\"#DarylWorley-NFL-BUF-37\",\"search_first_name\":\"daryl\",\"rotowire_id\":10941,\"rotoworld_id\":11417,\"active\":true,\"search_rank\":991,\"age\":25,\"full_name\":\"Daryl Worley\",\"sportradar_id\":\"cbce4c7c-b22f-48de-b653-cdc19f9a6320\",\"pandascore_id\":null,\"yahoo_id\":29311,\"last_name\":\"Worley\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"William Penn Charter (PA)\",\"depth_chart_order\":null,\"stats_id\":739699,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"darylworley\",\"birth_date\":\"1995-02-22\",\"espn_id\":3042436},\"2853\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Delvin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1529348101448,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"breaux\",\"depth_chart_position\":null,\"player_id\":\"2853\",\"birth_city\":null,\"fantasy_data_id\":17321,\"years_exp\":5,\"hashtag\":\"#DelvinBreaux-NFL-FA-40\",\"search_first_name\":\"delvin\",\"rotowire_id\":10114,\"rotoworld_id\":10332,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Delvin Breaux\",\"sportradar_id\":\"0de0402f-dae3-4cba-8c91-abd2f9f06849\",\"pandascore_id\":null,\"yahoo_id\":28371,\"last_name\":\"Breaux\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"McDonogh 35 (LA)\",\"depth_chart_order\":null,\"stats_id\":381640,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"delvinbreaux\",\"birth_date\":\"1989-10-25\",\"espn_id\":2267296},\"6639\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605651925745,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bonds\",\"depth_chart_position\":null,\"player_id\":\"6639\",\"birth_city\":null,\"fantasy_data_id\":21517,\"years_exp\":1,\"hashtag\":\"#TerrellBonds-NFL-BAL-38\",\"search_first_name\":\"terrell\",\"rotowire_id\":14165,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1750,\"age\":24,\"full_name\":\"Terrell Bonds\",\"sportradar_id\":\"7af54f9d-0a09-45ce-b96c-a179bcbb11ca\",\"pandascore_id\":null,\"yahoo_id\":32381,\"last_name\":\"Bonds\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"Miami Central (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'8\\\"\",\"search_full_name\":\"terrellbonds\",\"birth_date\":\"1996-07-22\",\"espn_id\":3147988},\"2462\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032112\",\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599450062035,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"2462\",\"birth_city\":null,\"fantasy_data_id\":16919,\"years_exp\":5,\"hashtag\":\"#JJNelson-NFL-FA-15\",\"search_first_name\":\"jj\",\"rotowire_id\":10244,\"rotoworld_id\":10536,\"active\":true,\"search_rank\":899,\"age\":28,\"full_name\":\"J.J. Nelson\",\"sportradar_id\":\"617269c1-88b3-45a6-b4a8-b2806a0cdaea\",\"pandascore_id\":null,\"yahoo_id\":28547,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Midfield (AL)\",\"depth_chart_order\":6,\"stats_id\":557431,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"160\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jjnelson\",\"birth_date\":\"1992-04-24\",\"espn_id\":2515759},\"2265\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shayne\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"skov\",\"depth_chart_position\":null,\"player_id\":\"2265\",\"birth_city\":null,\"fantasy_data_id\":16676,\"years_exp\":6,\"hashtag\":\"#ShayneSkov-NFL-FA-46\",\"search_first_name\":\"shayne\",\"rotowire_id\":9383,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Shayne Skov\",\"sportradar_id\":\"6a3ce9f1-9828-45e3-8b07-f7f38a6bc651\",\"pandascore_id\":null,\"yahoo_id\":28070,\"last_name\":\"Skov\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Trinity-Pawling (NY)\",\"depth_chart_order\":null,\"stats_id\":503199,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shayneskov\",\"birth_date\":\"1990-07-09\",\"espn_id\":17251},\"5243\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Detrich\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1526151602109,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"5243\",\"birth_city\":null,\"fantasy_data_id\":20226,\"years_exp\":1,\"hashtag\":\"#DetrichClark-NFL-FA-87\",\"search_first_name\":\"detrich\",\"rotowire_id\":13084,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1016,\"age\":null,\"full_name\":\"Detrich Clark\",\"sportradar_id\":\"28e5c6e3-c021-43cd-b82d-e4e6461ce832\",\"pandascore_id\":null,\"yahoo_id\":31348,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":912064,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"detrichclark\",\"birth_date\":null,\"espn_id\":4036341},\"2108\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031041\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600035058973,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":\"CB\",\"player_id\":\"2108\",\"birth_city\":null,\"fantasy_data_id\":16432,\"years_exp\":6,\"hashtag\":\"#KyleFuller-NFL-CHI-23\",\"search_first_name\":\"kyle\",\"rotowire_id\":9272,\"rotoworld_id\":9540,\"active\":true,\"search_rank\":822,\"age\":28,\"full_name\":\"Kyle Fuller\",\"sportradar_id\":\"054f4c09-6bc9-49c9-a466-80abd2a39e74\",\"pandascore_id\":null,\"yahoo_id\":27542,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Mount Saint Joseph (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kylefuller\",\"birth_date\":\"1992-02-16\",\"espn_id\":16715},\"1797\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1510704901384,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hawkins\",\"depth_chart_position\":null,\"player_id\":\"1797\",\"birth_city\":null,\"fantasy_data_id\":15970,\"years_exp\":6,\"hashtag\":\"#DonaldHawkins-NFL-FA-0\",\"search_first_name\":\"donald\",\"rotowire_id\":9958,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Donald Hawkins\",\"sportradar_id\":\"aebfcd36-1321-4823-8b70-aed6ca58cbc4\",\"pandascore_id\":null,\"yahoo_id\":27793,\"last_name\":\"Hawkins\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"donaldhawkins\",\"birth_date\":\"1992-04-22\",\"espn_id\":17003},\"4024\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scot\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccloughan\",\"depth_chart_position\":null,\"player_id\":\"4024\",\"birth_city\":null,\"fantasy_data_id\":18866,\"years_exp\":0,\"hashtag\":\"#ScotMcCloughan-NFL-FA-0\",\"search_first_name\":\"scot\",\"rotowire_id\":null,\"rotoworld_id\":10305,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Scot McCloughan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McCloughan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"scotmccloughan\",\"birth_date\":null,\"espn_id\":null},\"3856\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Braxton\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"deaver\",\"depth_chart_position\":null,\"player_id\":\"3856\",\"birth_city\":null,\"fantasy_data_id\":18677,\"years_exp\":0,\"hashtag\":\"#BraxtonDeaver-NFL-FA-48\",\"search_first_name\":\"braxton\",\"rotowire_id\":11335,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Braxton Deaver\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29990,\"last_name\":\"Deaver\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556173,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'5\\\"\",\"search_full_name\":\"braxtondeaver\",\"birth_date\":\"1992-05-08\",\"espn_id\":2512458},\"2415\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031572\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567025728700,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clemmings\",\"depth_chart_position\":null,\"player_id\":\"2415\",\"birth_city\":null,\"fantasy_data_id\":16871,\"years_exp\":5,\"hashtag\":\"#TJClemmings-NFL-FA-79\",\"search_first_name\":\"tj\",\"rotowire_id\":10261,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"T.J. Clemmings\",\"sportradar_id\":\"50aa72c8-c5d3-4a33-b35a-33880993a8ee\",\"pandascore_id\":null,\"yahoo_id\":28498,\"last_name\":\"Clemmings\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Paterson Catholic (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"337\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tjclemmings\",\"birth_date\":\"1991-11-18\",\"espn_id\":2513131},\"6067\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035331\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598922630138,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pope\",\"depth_chart_position\":null,\"player_id\":\"6067\",\"birth_city\":null,\"fantasy_data_id\":20913,\"years_exp\":1,\"hashtag\":\"#RyanPope-NFL-GB-67\",\"search_first_name\":\"ryan\",\"rotowire_id\":13725,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Pope\",\"sportradar_id\":\"7191cfa4-01c7-45ed-95a8-0d503ed1cc1b\",\"pandascore_id\":null,\"yahoo_id\":32458,\"last_name\":\"Pope\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Lakewood (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"ryanpope\",\"birth_date\":\"1996-10-17\",\"espn_id\":3917563},\"3484\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032685\",\"first_name\":\"Nelson\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535987767706,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spruce\",\"depth_chart_position\":null,\"player_id\":\"3484\",\"birth_city\":null,\"fantasy_data_id\":18249,\"years_exp\":4,\"hashtag\":\"#NelsonSpruce-NFL-FA-5\",\"search_first_name\":\"nelson\",\"rotowire_id\":11182,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Nelson Spruce\",\"sportradar_id\":\"c50fbbf2-7f97-430c-8c96-71a3da27e3f4\",\"pandascore_id\":null,\"yahoo_id\":29743,\"last_name\":\"Spruce\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607809,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nelsonspruce\",\"birth_date\":\"1992-12-05\",\"espn_id\":2576952},\"5435\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034095\",\"first_name\":\"Tarvarus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565478926600,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcfadden\",\"depth_chart_position\":null,\"player_id\":\"5435\",\"birth_city\":null,\"fantasy_data_id\":20365,\"years_exp\":2,\"hashtag\":\"#TarvarusMcFadden-NFL-FA-41\",\"search_first_name\":\"tarvarus\",\"rotowire_id\":12580,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tarvarus McFadden\",\"sportradar_id\":\"bb4823e2-f2d4-4910-8528-a762f8db449b\",\"pandascore_id\":null,\"yahoo_id\":31385,\"last_name\":\"McFadden\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":883451,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tarvarusmcfadden\",\"birth_date\":\"1997-01-28\",\"espn_id\":3921563},\"5325\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034421\",\"first_name\":\"Peter\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604534128899,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kalambayi\",\"depth_chart_position\":\"MIKE\",\"player_id\":\"5325\",\"birth_city\":null,\"fantasy_data_id\":20021,\"years_exp\":2,\"hashtag\":\"#PeterKalambayi-NFL-HOU-58\",\"search_first_name\":\"peter\",\"rotowire_id\":12964,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1394,\"age\":25,\"full_name\":\"Peter Kalambayi\",\"sportradar_id\":\"872967b4-d1ab-4b27-82e9-c40774fc995e\",\"pandascore_id\":null,\"yahoo_id\":31184,\"last_name\":\"Kalambayi\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Butler (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'3\\\"\",\"search_full_name\":\"peterkalambayi\",\"birth_date\":\"1995-06-26\",\"espn_id\":3043276},\"1313\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"preston\",\"depth_chart_position\":null,\"player_id\":\"1313\",\"birth_city\":null,\"fantasy_data_id\":14806,\"years_exp\":3,\"hashtag\":\"#MichaelPreston-NFL-FA-14\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Michael Preston\",\"sportradar_id\":\"8ec84057-a244-491c-8f5e-36252a8ca70e\",\"pandascore_id\":null,\"yahoo_id\":25144,\"last_name\":\"Preston\",\"metadata\":null,\"college\":\"Heidelberg - OH\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":580909,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelpreston\",\"birth_date\":\"1989-06-01\",\"espn_id\":14610},\"6938\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606224051586,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"akers\",\"depth_chart_position\":\"RB\",\"player_id\":\"6938\",\"birth_city\":null,\"fantasy_data_id\":21688,\"years_exp\":0,\"hashtag\":\"#CamAkers-NFL-LAR-23\",\"search_first_name\":\"cam\",\"rotowire_id\":14383,\"rotoworld_id\":null,\"active\":true,\"search_rank\":48,\"age\":21,\"full_name\":\"Cam Akers\",\"sportradar_id\":\"74980532-8158-4b56-91db-5053878737b4\",\"pandascore_id\":null,\"yahoo_id\":32722,\"last_name\":\"Akers\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Clinton (MS)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"camakers\",\"birth_date\":\"1999-06-22\",\"espn_id\":4240021},\"1775\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1775\",\"birth_city\":null,\"fantasy_data_id\":15863,\"years_exp\":7,\"hashtag\":\"#EricMartin-NFL-FA-52\",\"search_first_name\":\"eric\",\"rotowire_id\":9097,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Eric Martin\",\"sportradar_id\":\"b36ded96-99bc-4a5e-b2d9-dc37adb9488a\",\"pandascore_id\":null,\"yahoo_id\":26953,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ericmartin\",\"birth_date\":\"1991-07-21\",\"espn_id\":16436},\"2052\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reese\",\"depth_chart_position\":null,\"player_id\":\"2052\",\"birth_city\":null,\"fantasy_data_id\":16347,\"years_exp\":1,\"hashtag\":\"#TevinReese-NFL-FA-16\",\"search_first_name\":\"tevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tevin Reese\",\"sportradar_id\":\"8a9b165e-f68e-4739-a978-9e79a1bb24b6\",\"pandascore_id\":null,\"yahoo_id\":27768,\"last_name\":\"Reese\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":503512,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"163\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tevinreese\",\"birth_date\":\"1991-01-02\",\"espn_id\":16824},\"947\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027944\",\"first_name\":\"Julio\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606512327104,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RWR\",\"player_id\":\"947\",\"birth_city\":null,\"fantasy_data_id\":13291,\"years_exp\":9,\"hashtag\":\"#JulioJones-NFL-ATL-11\",\"search_first_name\":\"julio\",\"rotowire_id\":7242,\"rotoworld_id\":6475,\"active\":true,\"search_rank\":20,\"age\":31,\"full_name\":\"Julio Jones\",\"sportradar_id\":\"0b3217b9-ba37-4222-95cb-a7a222441e8b\",\"pandascore_id\":null,\"yahoo_id\":24793,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Foley (AL)\",\"depth_chart_order\":1,\"stats_id\":456614,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"juliojones\",\"birth_date\":\"1989-02-08\",\"espn_id\":13982},\"334\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027027\",\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1557879337404,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"levitre\",\"depth_chart_position\":null,\"player_id\":\"334\",\"birth_city\":null,\"fantasy_data_id\":8296,\"years_exp\":11,\"hashtag\":\"#AndyLevitre-NFL-FA-67\",\"search_first_name\":\"andy\",\"rotowire_id\":6052,\"rotoworld_id\":5310,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Andy Levitre\",\"sportradar_id\":\"0ecd0d32-5e18-40bb-b8bc-278b6206657a\",\"pandascore_id\":null,\"yahoo_id\":9315,\"last_name\":\"Levitre\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"San Lorenzo Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andylevitre\",\"birth_date\":\"1986-05-15\",\"espn_id\":12614},\"4884\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mckenzie\",\"depth_chart_position\":null,\"player_id\":\"4884\",\"birth_city\":null,\"fantasy_data_id\":18750,\"years_exp\":0,\"hashtag\":\"#ReggieMcKenzie-NFL-FA-0\",\"search_first_name\":\"reggie\",\"rotowire_id\":null,\"rotoworld_id\":9505,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Reggie McKenzie\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McKenzie\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"reggiemckenzie\",\"birth_date\":null,\"espn_id\":null},\"666\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keenan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"666\",\"birth_city\":null,\"fantasy_data_id\":11765,\"years_exp\":11,\"hashtag\":\"#KeenanLewis-NFL-FA-21\",\"search_first_name\":\"keenan\",\"rotowire_id\":6164,\"rotoworld_id\":5336,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Keenan Lewis\",\"sportradar_id\":\"6c5f0c0f-1693-43c8-b2a4-63784a14d2dc\",\"pandascore_id\":null,\"yahoo_id\":9360,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"O. Perry Walker (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keenanlewis\",\"birth_date\":\"1986-05-17\",\"espn_id\":12683},\"1975\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030854\",\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1598744728153,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"swoope\",\"depth_chart_position\":null,\"player_id\":\"1975\",\"birth_city\":null,\"fantasy_data_id\":16238,\"years_exp\":6,\"hashtag\":\"#ErikSwoope-NFL-FA-86\",\"search_first_name\":\"erik\",\"rotowire_id\":9808,\"rotoworld_id\":9792,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Erik Swoope\",\"sportradar_id\":\"947e7faa-e8be-4603-829c-b57e4247ccbf\",\"pandascore_id\":null,\"yahoo_id\":27914,\"last_name\":\"Swoope\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Harvard-Westlake (CA) \",\"depth_chart_order\":null,\"stats_id\":550290,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'5\\\"\",\"search_full_name\":\"erikswoope\",\"birth_date\":\"1992-05-08\",\"espn_id\":17091},\"351\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026500\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1539882716318,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slauson\",\"depth_chart_position\":null,\"player_id\":\"351\",\"birth_city\":null,\"fantasy_data_id\":8419,\"years_exp\":11,\"hashtag\":\"#MattSlauson-NFL-FA-68\",\"search_first_name\":\"matt\",\"rotowire_id\":7119,\"rotoworld_id\":5407,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Matt Slauson\",\"sportradar_id\":\"5fbfe48a-11ee-4141-8f8d-6bef67d3ea69\",\"pandascore_id\":null,\"yahoo_id\":9457,\"last_name\":\"Slauson\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Sweet Home (OR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattslauson\",\"birth_date\":\"1986-02-18\",\"espn_id\":12728},\"203\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacoby\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"203\",\"birth_city\":null,\"fantasy_data_id\":5100,\"years_exp\":13,\"hashtag\":\"#JacobyJones-NFL-FA-13\",\"search_first_name\":\"jacoby\",\"rotowire_id\":5229,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Jacoby Jones\",\"sportradar_id\":\"ce4d7d70-307f-4093-bf54-432b8b405eb4\",\"pandascore_id\":null,\"yahoo_id\":8327,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Lane\",\"high_school\":\"Abramson (LA)\",\"depth_chart_order\":null,\"stats_id\":329337,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jacobyjones\",\"birth_date\":\"1984-07-11\",\"espn_id\":10517},\"3425\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pettway\",\"depth_chart_position\":null,\"player_id\":\"3425\",\"birth_city\":null,\"fantasy_data_id\":18189,\"years_exp\":1,\"hashtag\":\"#DJPettway-NFL-FA-77\",\"search_first_name\":\"dj\",\"rotowire_id\":11102,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"DJ Pettway\",\"sportradar_id\":\"06488c97-224e-4839-b15c-85922ff7b4cf\",\"pandascore_id\":null,\"yahoo_id\":29859,\"last_name\":\"Pettway\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'2\\\"\",\"search_full_name\":\"djpettway\",\"birth_date\":\"1992-09-19\",\"espn_id\":null},\"1484\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tourek\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1484\",\"birth_city\":null,\"fantasy_data_id\":15081,\"years_exp\":7,\"hashtag\":\"#TourekWilliams-NFL-FA-58\",\"search_first_name\":\"tourek\",\"rotowire_id\":8971,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tourek Williams\",\"sportradar_id\":\"8fe38ace-76c6-41c2-9704-c61b318de923\",\"pandascore_id\":null,\"yahoo_id\":26802,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":\"Norland (FL)\",\"depth_chart_order\":null,\"stats_id\":514227,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tourekwilliams\",\"birth_date\":\"1991-05-09\",\"espn_id\":16000},\"4163\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033557\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604250018867,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reevesmaybin\",\"depth_chart_position\":\"OLB\",\"player_id\":\"4163\",\"birth_city\":null,\"fantasy_data_id\":19009,\"years_exp\":3,\"hashtag\":\"#JalenReevesMaybin-NFL-DET-44\",\"search_first_name\":\"jalen\",\"rotowire_id\":11980,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1176,\"age\":25,\"full_name\":\"Jalen Reeves-Maybin\",\"sportradar_id\":\"61e1881b-a33e-4d33-b518-017145d5fc03\",\"pandascore_id\":null,\"yahoo_id\":30237,\"last_name\":\"Reeves-Maybin\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Northeast (TN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jalenreevesmaybin\",\"birth_date\":\"1995-01-31\",\"espn_id\":3044729},\"692\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"feely\",\"depth_chart_position\":null,\"player_id\":\"692\",\"birth_city\":null,\"fantasy_data_id\":12088,\"years_exp\":13,\"hashtag\":\"#JayFeely-NFL-FA-4\",\"search_first_name\":\"jay\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":41,\"full_name\":\"Jay Feely\",\"sportradar_id\":\"eccdeff9-fbcc-4871-8348-7b72e78d1bda\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Feely\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jayfeely\",\"birth_date\":\"1976-05-26\",\"espn_id\":null},\"6429\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035044\",\"first_name\":\"J.T.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599190854975,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hassell\",\"depth_chart_position\":\"SS\",\"player_id\":\"6429\",\"birth_city\":null,\"fantasy_data_id\":21476,\"years_exp\":1,\"hashtag\":\"#JTHassell-NFL-FA-0\",\"search_first_name\":\"jt\",\"rotowire_id\":14133,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1742,\"age\":25,\"full_name\":\"J.T. Hassell\",\"sportradar_id\":\"fe30ca46-c995-46ce-bca3-12451bfb5ad8\",\"pandascore_id\":null,\"yahoo_id\":32280,\"last_name\":\"Hassell\",\"metadata\":null,\"college\":\"Florida Tech\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jthassell\",\"birth_date\":\"1995-08-14\",\"espn_id\":4264341},\"3096\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shula\",\"depth_chart_position\":null,\"player_id\":\"3096\",\"birth_city\":null,\"fantasy_data_id\":17846,\"years_exp\":0,\"hashtag\":\"#MikeShula-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":9482,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Shula\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Shula\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikeshula\",\"birth_date\":null,\"espn_id\":null},\"5618\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034666\",\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rose\",\"depth_chart_position\":null,\"player_id\":\"5618\",\"birth_city\":null,\"fantasy_data_id\":20552,\"years_exp\":2,\"hashtag\":\"#LarryRose-NFL-FA-41\",\"search_first_name\":\"larry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Larry Rose\",\"sportradar_id\":\"9a86b7ee-277d-46d9-940a-51dc89d3721c\",\"pandascore_id\":null,\"yahoo_id\":900379,\"last_name\":\"Rose\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830457,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"larryrose\",\"birth_date\":\"1995-09-09\",\"espn_id\":3124979},\"2753\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031645\",\"first_name\":\"Rasheed\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515465602185,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"2753\",\"birth_city\":null,\"fantasy_data_id\":17221,\"years_exp\":5,\"hashtag\":\"#RasheedBailey-NFL-FA-16\",\"search_first_name\":\"rasheed\",\"rotowire_id\":10756,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rasheed Bailey\",\"sportradar_id\":\"626f4299-291c-4cb2-aad8-b8833ceaebf9\",\"pandascore_id\":null,\"yahoo_id\":28645,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Delaware Valley\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870213,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rasheedbailey\",\"birth_date\":\"1993-07-29\",\"espn_id\":3892271},\"73\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1523971801462,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mangold\",\"depth_chart_position\":null,\"player_id\":\"73\",\"birth_city\":null,\"fantasy_data_id\":2074,\"years_exp\":14,\"hashtag\":\"#NickMangold-NFL-FA-74\",\"search_first_name\":\"nick\",\"rotowire_id\":5006,\"rotoworld_id\":3647,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Nick Mangold\",\"sportradar_id\":\"64419234-82af-49fb-9c7a-098388e745b3\",\"pandascore_id\":null,\"yahoo_id\":7778,\"last_name\":\"Mangold\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Archbishop Alter (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickmangold\",\"birth_date\":\"1984-01-13\",\"espn_id\":9615},\"6835\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606022710662,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"biadasz\",\"depth_chart_position\":null,\"player_id\":\"6835\",\"birth_city\":null,\"fantasy_data_id\":21995,\"years_exp\":0,\"hashtag\":\"#TylerBiadasz-NFL-DAL-63\",\"search_first_name\":\"tyler\",\"rotowire_id\":14485,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tyler Biadasz\",\"sportradar_id\":\"f5b61bef-6214-4d70-9a34-d58da29ce2d5\",\"pandascore_id\":null,\"yahoo_id\":32816,\"last_name\":\"Biadasz\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Amherst (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerbiadasz\",\"birth_date\":\"1997-11-20\",\"espn_id\":4035788},\"2368\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032210\",\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605051661401,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":\"RDE\",\"player_id\":\"2368\",\"birth_city\":null,\"fantasy_data_id\":16824,\"years_exp\":5,\"hashtag\":\"#FrankClark-NFL-KC-55\",\"search_first_name\":\"frank\",\"rotowire_id\":10322,\"rotoworld_id\":10467,\"active\":true,\"search_rank\":876,\"age\":27,\"full_name\":\"Frank Clark\",\"sportradar_id\":\"490c15eb-accc-4441-be7d-c7114e1e42fc\",\"pandascore_id\":null,\"yahoo_id\":28451,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"frankclark\",\"birth_date\":\"1993-06-14\",\"espn_id\":2576242},\"5574\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034288\",\"first_name\":\"Raymond\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davison\",\"depth_chart_position\":null,\"player_id\":\"5574\",\"birth_city\":null,\"fantasy_data_id\":20575,\"years_exp\":2,\"hashtag\":\"#RaymondDavison-NFL-FA-46\",\"search_first_name\":\"raymond\",\"rotowire_id\":13174,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Raymond Davison\",\"sportradar_id\":\"82a32245-a807-4018-be7e-a64e10abea6f\",\"pandascore_id\":null,\"yahoo_id\":31487,\"last_name\":\"Davison\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"raymonddavison\",\"birth_date\":\"1995-03-25\",\"espn_id\":3052144},\"3384\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032365\",\"first_name\":\"Demarcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1514861401521,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ayers\",\"depth_chart_position\":null,\"player_id\":\"3384\",\"birth_city\":null,\"fantasy_data_id\":18145,\"years_exp\":4,\"hashtag\":\"#DemarcusAyers-NFL-FA-18\",\"search_first_name\":\"demarcus\",\"rotowire_id\":10731,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Demarcus Ayers\",\"sportradar_id\":\"ddcc047a-7953-4f21-8724-9b1791dfca30\",\"pandascore_id\":null,\"yahoo_id\":29463,\"last_name\":\"Ayers\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741290,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'10\\\"\",\"search_full_name\":\"demarcusayers\",\"birth_date\":\"1994-07-07\",\"espn_id\":3040026},\"3624\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"glover\",\"depth_chart_position\":null,\"player_id\":\"3624\",\"birth_city\":null,\"fantasy_data_id\":18411,\"years_exp\":0,\"hashtag\":\"#AntonioGlover-NFL-FA-38\",\"search_first_name\":\"antonio\",\"rotowire_id\":11389,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Antonio Glover\",\"sportradar_id\":\"78c9d691-b869-485b-a7d4-55296bb92647\",\"pandascore_id\":null,\"yahoo_id\":29619,\"last_name\":\"Glover\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"6'0\\\"\",\"search_full_name\":\"antonioglover\",\"birth_date\":\"1993-03-31\",\"espn_id\":null},\"5235\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034575\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605569120181,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wells\",\"depth_chart_position\":null,\"player_id\":\"5235\",\"birth_city\":null,\"fantasy_data_id\":20199,\"years_exp\":2,\"hashtag\":\"#DavidWells-NFL-NE-88\",\"search_first_name\":\"david\",\"rotowire_id\":12692,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Wells\",\"sportradar_id\":\"268c8b1e-b217-474d-a92f-4f924273c938\",\"pandascore_id\":null,\"yahoo_id\":31283,\"last_name\":\"Wells\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Clovis North (CA)\",\"depth_chart_order\":null,\"stats_id\":746301,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidwells\",\"birth_date\":\"1995-05-02\",\"espn_id\":3047536},\"6705\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035658\",\"first_name\":\"Taj\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1587431721676,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgowan\",\"depth_chart_position\":null,\"player_id\":\"6705\",\"birth_city\":null,\"fantasy_data_id\":21622,\"years_exp\":1,\"hashtag\":\"#TajMcGowan-NFL-FA-0\",\"search_first_name\":\"taj\",\"rotowire_id\":14320,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Taj McGowan\",\"sportradar_id\":\"ab38817c-07a5-4862-a338-1baea17c0248\",\"pandascore_id\":null,\"yahoo_id\":32615,\"last_name\":\"McGowan\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":867616,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tajmcgowan\",\"birth_date\":\"1996-12-30\",\"espn_id\":3914267},\"2211\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zimmerman\",\"depth_chart_position\":null,\"player_id\":\"2211\",\"birth_city\":null,\"fantasy_data_id\":16588,\"years_exp\":0,\"hashtag\":\"#TyZimmerman-NFL-FA-38\",\"search_first_name\":\"ty\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ty Zimmerman\",\"sportradar_id\":\"57f8579e-3e97-4272-9767-e44753966512\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Zimmerman\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tyzimmerman\",\"birth_date\":\"1990-06-23\",\"espn_id\":2577030},\"7073\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bentley\",\"depth_chart_position\":null,\"player_id\":\"7073\",\"birth_city\":null,\"fantasy_data_id\":22117,\"years_exp\":0,\"hashtag\":\"#JakeBentley-NFL-FA-0\",\"search_first_name\":\"jake\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jake Bentley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bentley\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jakebentley\",\"birth_date\":null,\"espn_id\":null},\"4505\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033505\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1586383534000,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tom\",\"depth_chart_position\":null,\"player_id\":\"4505\",\"birth_city\":null,\"fantasy_data_id\":19377,\"years_exp\":3,\"hashtag\":\"#CameronTom-NFL-NO-63\",\"search_first_name\":\"cameron\",\"rotowire_id\":12450,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cameron Tom\",\"sportradar_id\":\"abedbff7-21c5-415b-b890-259b5bebf400\",\"pandascore_id\":null,\"yahoo_id\":30418,\"last_name\":\"Tom\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Catholic (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"camerontom\",\"birth_date\":\"1995-06-21\",\"espn_id\":3060000},\"7280\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carter\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"odonnell\",\"depth_chart_position\":null,\"player_id\":\"7280\",\"birth_city\":null,\"fantasy_data_id\":22277,\"years_exp\":0,\"hashtag\":\"#CarterODonnell-NFL-IND-61\",\"search_first_name\":\"carter\",\"rotowire_id\":15022,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Carter O'Donnell\",\"sportradar_id\":\"f1f4a350-cc5f-43a2-bde1-829058d6c338\",\"pandascore_id\":null,\"yahoo_id\":33216,\"last_name\":\"O'Donnell\",\"metadata\":null,\"college\":\"Alberta, Can.\",\"high_school\":\"Lindsay Thurber (CAN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"carterodonnell\",\"birth_date\":\"1998-12-23\",\"espn_id\":4611135},\"6104\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034948\",\"first_name\":\"Alijah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604781909654,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holder\",\"depth_chart_position\":null,\"player_id\":\"6104\",\"birth_city\":null,\"fantasy_data_id\":20807,\"years_exp\":1,\"hashtag\":\"#AlijahHolder-NFL-DEN-33\",\"search_first_name\":\"alijah\",\"rotowire_id\":13863,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Alijah Holder\",\"sportradar_id\":\"1e8293b4-25ec-479d-83b3-ef231d84ebca\",\"pandascore_id\":null,\"yahoo_id\":32218,\"last_name\":\"Holder\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Stanford\",\"high_school\":\"Oceanside (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alijahholder\",\"birth_date\":\"1996-01-26\",\"espn_id\":3117249},\"6965\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605459611002,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"garvin\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6965\",\"birth_city\":null,\"fantasy_data_id\":21906,\"years_exp\":0,\"hashtag\":\"#JonathanGarvin-NFL-GB-53\",\"search_first_name\":\"jonathan\",\"rotowire_id\":14365,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1829,\"age\":21,\"full_name\":\"Jonathan Garvin\",\"sportradar_id\":\"586bc34d-f368-4d82-96b1-816d08fa2837\",\"pandascore_id\":null,\"yahoo_id\":32912,\"last_name\":\"Garvin\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Lake Worth (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonathangarvin\",\"birth_date\":\"1999-07-28\",\"espn_id\":4240655},\"7099\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flacco\",\"depth_chart_position\":null,\"player_id\":\"7099\",\"birth_city\":null,\"fantasy_data_id\":22127,\"years_exp\":0,\"hashtag\":\"#TomFlacco-NFL-FA-0\",\"search_first_name\":\"tom\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tom Flacco\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Flacco\",\"metadata\":null,\"college\":\"Towson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tomflacco\",\"birth_date\":\"1994-11-02\",\"espn_id\":null},\"5211\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034222\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535838085359,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wieneke\",\"depth_chart_position\":null,\"player_id\":\"5211\",\"birth_city\":null,\"fantasy_data_id\":20161,\"years_exp\":2,\"hashtag\":\"#JakeWieneke-NFL-FA-9\",\"search_first_name\":\"jake\",\"rotowire_id\":12691,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jake Wieneke\",\"sportradar_id\":\"947a517e-6a15-4704-af78-e09109f34a48\",\"pandascore_id\":null,\"yahoo_id\":31242,\"last_name\":\"Wieneke\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":752817,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jakewieneke\",\"birth_date\":\"1994-09-15\",\"espn_id\":3049054},\"0\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stevens\",\"depth_chart_position\":null,\"player_id\":\"0\",\"birth_city\":null,\"fantasy_data_id\":3,\"years_exp\":12,\"hashtag\":\"#CraigStevens-NFL-FA-88\",\"search_first_name\":\"craig\",\"rotowire_id\":5777,\"rotoworld_id\":4864,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Craig Stevens\",\"sportradar_id\":\"71b9b180-93be-4bbc-bc9f-c48b53933c7c\",\"pandascore_id\":null,\"yahoo_id\":8862,\"last_name\":\"Stevens\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Palos Verdes Peninsula (CA)\",\"depth_chart_order\":null,\"stats_id\":213961,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'3\\\"\",\"search_full_name\":\"craigstevens\",\"birth_date\":\"1984-09-01\",\"espn_id\":11319},\"4637\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033710\",\"first_name\":\"DaShaun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"amos\",\"depth_chart_position\":null,\"player_id\":\"4637\",\"birth_city\":null,\"fantasy_data_id\":19532,\"years_exp\":3,\"hashtag\":\"#DaShaunAmos-NFL-FA-0\",\"search_first_name\":\"dashaun\",\"rotowire_id\":14511,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1272,\"age\":25,\"full_name\":\"DaShaun Amos\",\"sportradar_id\":\"a24108bd-87b2-47c2-903e-d38e35a02652\",\"pandascore_id\":null,\"yahoo_id\":30732,\"last_name\":\"Amos\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dashaunamos\",\"birth_date\":\"1994-09-20\",\"espn_id\":2971986},\"2553\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032072\",\"first_name\":\"Rory\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"2553\",\"birth_city\":null,\"fantasy_data_id\":17013,\"years_exp\":4,\"hashtag\":\"#RoryAnderson-NFL-FA-88\",\"search_first_name\":\"rory\",\"rotowire_id\":12382,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rory Anderson\",\"sportradar_id\":\"aa0182e1-9c7d-4329-a8f9-52df8aa00749\",\"pandascore_id\":null,\"yahoo_id\":28642,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604904,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'4\\\"\",\"search_full_name\":\"roryanderson\",\"birth_date\":\"1992-10-02\",\"espn_id\":2577661},\"1077\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029269\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596595550838,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"benjamin\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1077\",\"birth_city\":null,\"fantasy_data_id\":13887,\"years_exp\":8,\"hashtag\":\"#TravisBenjamin-NFL-SF-17\",\"search_first_name\":\"travis\",\"rotowire_id\":8111,\"rotoworld_id\":7562,\"active\":true,\"search_rank\":351,\"age\":30,\"full_name\":\"Travis Benjamin\",\"sportradar_id\":\"4f0053fc-5559-4551-bd81-dcd1cdf3a9ec\",\"pandascore_id\":null,\"yahoo_id\":25810,\"last_name\":\"Benjamin\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Glades Central (FL)\",\"depth_chart_order\":3,\"stats_id\":464646,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"travisbenjamin\",\"birth_date\":\"1989-12-29\",\"espn_id\":15062},\"2527\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shepherd\",\"depth_chart_position\":null,\"player_id\":\"2527\",\"birth_city\":null,\"fantasy_data_id\":16987,\"years_exp\":5,\"hashtag\":\"#AustinShepherd-NFL-FA-74\",\"search_first_name\":\"austin\",\"rotowire_id\":10296,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Austin Shepherd\",\"sportradar_id\":\"88600565-9120-4bdb-9239-3dd3033d8a34\",\"pandascore_id\":null,\"yahoo_id\":28616,\"last_name\":\"Shepherd\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"North Gwinnett (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austinshepherd\",\"birth_date\":\"1992-05-28\",\"espn_id\":2515956},\"2929\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coxson\",\"depth_chart_position\":null,\"player_id\":\"2929\",\"birth_city\":null,\"fantasy_data_id\":17398,\"years_exp\":null,\"hashtag\":\"#AdrianCoxson-NFL-FA-0\",\"search_first_name\":\"adrian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Adrian Coxson\",\"sportradar_id\":\"1402919d-2b00-4bd7-aaa2-164a3158c62a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Coxson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557181,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"adriancoxson\",\"birth_date\":null,\"espn_id\":null},\"3827\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032870\",\"first_name\":\"Aldrick\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606323661462,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rosas\",\"depth_chart_position\":\"K\",\"player_id\":\"3827\",\"birth_city\":null,\"fantasy_data_id\":18645,\"years_exp\":4,\"hashtag\":\"#AldrickRosas-NFL-JAX-7\",\"search_first_name\":\"aldrick\",\"rotowire_id\":11403,\"rotoworld_id\":11998,\"active\":true,\"search_rank\":1104,\"age\":25,\"full_name\":\"Aldrick Rosas\",\"sportradar_id\":\"8fb2ca06-3d13-4552-98e0-7b913b4ab5b9\",\"pandascore_id\":null,\"yahoo_id\":29949,\"last_name\":\"Rosas\",\"metadata\":null,\"college\":\"Southern Oregon\",\"high_school\":\"Orland (CA)\",\"depth_chart_order\":1,\"stats_id\":789430,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"aldrickrosas\",\"birth_date\":\"1994-12-30\",\"espn_id\":3068939},\"7431\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601133304039,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mencer\",\"depth_chart_position\":null,\"player_id\":\"7431\",\"birth_city\":null,\"fantasy_data_id\":22411,\"years_exp\":0,\"hashtag\":\"#EliMencer-NFL-SEA-43\",\"search_first_name\":\"eli\",\"rotowire_id\":15119,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Eli Mencer\",\"sportradar_id\":\"a48a150e-3e3b-4ef7-b67f-9edc0cb04a14\",\"pandascore_id\":null,\"yahoo_id\":33269,\"last_name\":\"Mencer\",\"metadata\":null,\"college\":\"Albany, N.Y.\",\"high_school\":\"Altoona (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'1\\\"\",\"search_full_name\":\"elimencer\",\"birth_date\":\"1996-11-14\",\"espn_id\":3911910},\"6940\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shyheim\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597611013648,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"6940\",\"birth_city\":null,\"fantasy_data_id\":21920,\"years_exp\":0,\"hashtag\":\"#ShyheimCarter-NFL-ATL-0\",\"search_first_name\":\"shyheim\",\"rotowire_id\":14733,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1838,\"age\":23,\"full_name\":\"Shyheim Carter\",\"sportradar_id\":\"0b0b1995-e095-46f2-b973-4da5143c753f\",\"pandascore_id\":null,\"yahoo_id\":33331,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Kentwood (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shyheimcarter\",\"birth_date\":\"1996-12-15\",\"espn_id\":null},\"3278\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033111\",\"first_name\":\"Pharoh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602508224709,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3278\",\"birth_city\":null,\"fantasy_data_id\":18039,\"years_exp\":4,\"hashtag\":\"#PharohCooper-NFL-CAR-14\",\"search_first_name\":\"pharoh\",\"rotowire_id\":10823,\"rotoworld_id\":11281,\"active\":true,\"search_rank\":362,\"age\":25,\"full_name\":\"Pharoh Cooper\",\"sportradar_id\":\"4f724338-aa8c-436d-90b2-45299572c53e\",\"pandascore_id\":null,\"yahoo_id\":29351,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Havelock (NC)\",\"depth_chart_order\":2,\"stats_id\":744595,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"pharohcooper\",\"birth_date\":\"1995-03-07\",\"espn_id\":3048897},\"235\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022045\",\"first_name\":\"Terence\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535853097132,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newman\",\"depth_chart_position\":null,\"player_id\":\"235\",\"birth_city\":null,\"fantasy_data_id\":5916,\"years_exp\":17,\"hashtag\":\"#TerenceNewman-NFL-FA-23\",\"search_first_name\":\"terence\",\"rotowire_id\":3008,\"rotoworld_id\":2708,\"active\":false,\"search_rank\":9999999,\"age\":42,\"full_name\":\"Terence Newman\",\"sportradar_id\":\"4a69f085-8bef-4b3c-a66e-cab65b3fcb7a\",\"pandascore_id\":null,\"yahoo_id\":6341,\"last_name\":\"Newman\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Salina Central (KS)\",\"depth_chart_order\":null,\"stats_id\":184507,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"terencenewman\",\"birth_date\":\"1978-09-04\",\"espn_id\":4463},\"4802\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"4802\",\"birth_city\":null,\"fantasy_data_id\":19716,\"years_exp\":2,\"hashtag\":\"#DerrickNelson-NFL-FA-62\",\"search_first_name\":\"derrick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrick Nelson\",\"sportradar_id\":\"20c70109-621c-46f2-b7c3-83556debf472\",\"pandascore_id\":null,\"yahoo_id\":30922,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derricknelson\",\"birth_date\":\"1994-05-03\",\"espn_id\":2982820},\"3547\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032515\",\"first_name\":\"Braedon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1535986223053,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowman\",\"depth_chart_position\":null,\"player_id\":\"3547\",\"birth_city\":null,\"fantasy_data_id\":18317,\"years_exp\":4,\"hashtag\":\"#BraedonBowman-NFL-FA-83\",\"search_first_name\":\"braedon\",\"rotowire_id\":11468,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Braedon Bowman\",\"sportradar_id\":\"38fd7c69-d405-4a49-8320-25d8492e4c5b\",\"pandascore_id\":null,\"yahoo_id\":29508,\"last_name\":\"Bowman\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823319,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"braedonbowman\",\"birth_date\":\"1994-01-30\",\"espn_id\":3125253},\"4255\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033973\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604111741594,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":\"WLB\",\"player_id\":\"4255\",\"birth_city\":null,\"fantasy_data_id\":19101,\"years_exp\":3,\"hashtag\":\"#ElijahLee-NFL-CLE-52\",\"search_first_name\":\"elijah\",\"rotowire_id\":12151,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1219,\"age\":24,\"full_name\":\"Elijah Lee\",\"sportradar_id\":\"c362b855-a313-4b46-ab26-a82082e1e8ee\",\"pandascore_id\":null,\"yahoo_id\":30345,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Blue Springs (MO)\",\"depth_chart_order\":3,\"stats_id\":838013,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'2\\\"\",\"search_full_name\":\"elijahlee\",\"birth_date\":\"1996-02-08\",\"espn_id\":3125073},\"3201\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033102\",\"first_name\":\"Roberto\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1535814058645,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aguayo\",\"depth_chart_position\":null,\"player_id\":\"3201\",\"birth_city\":null,\"fantasy_data_id\":17962,\"years_exp\":4,\"hashtag\":\"#RobertoAguayo-NFL-FA-3\",\"search_first_name\":\"roberto\",\"rotowire_id\":10878,\"rotoworld_id\":11379,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Roberto Aguayo\",\"sportradar_id\":\"d7072e38-e5f5-4ac1-93cf-9a93f6333870\",\"pandascore_id\":null,\"yahoo_id\":29293,\"last_name\":\"Aguayo\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":695244,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'0\\\"\",\"search_full_name\":\"robertoaguayo\",\"birth_date\":\"1994-05-17\",\"espn_id\":2978887},\"120\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0016919\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1596059410503,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vinatieri\",\"depth_chart_position\":\"K\",\"player_id\":\"120\",\"birth_city\":null,\"fantasy_data_id\":3258,\"years_exp\":24,\"hashtag\":\"#AdamVinatieri-NFL-FA-4\",\"search_first_name\":\"adam\",\"rotowire_id\":395,\"rotoworld_id\":1152,\"active\":true,\"search_rank\":588,\"age\":47,\"full_name\":\"Adam Vinatieri\",\"sportradar_id\":\"9ecf8040-10f9-4a5c-92da-1b4d77bd6760\",\"pandascore_id\":null,\"yahoo_id\":3727,\"last_name\":\"Vinatieri\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":\"Central (SD)\",\"depth_chart_order\":2,\"stats_id\":23849,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"adamvinatieri\",\"birth_date\":\"1972-12-28\",\"espn_id\":1097},\"4221\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033528\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603833354686,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sprinkle\",\"depth_chart_position\":\"TE\",\"player_id\":\"4221\",\"birth_city\":null,\"fantasy_data_id\":19067,\"years_exp\":3,\"hashtag\":\"#JeremySprinkle-NFL-WAS-87\",\"search_first_name\":\"jeremy\",\"rotowire_id\":11899,\"rotoworld_id\":null,\"active\":true,\"search_rank\":375,\"age\":26,\"full_name\":\"Jeremy Sprinkle\",\"sportradar_id\":\"2dcc8e56-ac32-4774-a011-b1e65ca73786\",\"pandascore_id\":null,\"yahoo_id\":30267,\"last_name\":\"Sprinkle\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"White Hall (AR)\",\"depth_chart_order\":2,\"stats_id\":693833,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeremysprinkle\",\"birth_date\":\"1994-08-10\",\"espn_id\":2980073},\"2312\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031545\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604614808174,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"SWR\",\"player_id\":\"2312\",\"birth_city\":null,\"fantasy_data_id\":16768,\"years_exp\":5,\"hashtag\":\"#KevinWhite-NFL-SF-14\",\"search_first_name\":\"kevin\",\"rotowire_id\":10151,\"rotoworld_id\":10427,\"active\":true,\"search_rank\":452,\"age\":28,\"full_name\":\"Kevin White\",\"sportradar_id\":\"5b496c58-83ef-4763-b1e0-5f052af46b3e\",\"pandascore_id\":null,\"yahoo_id\":28395,\"last_name\":\"White\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Emmaus (PA)\",\"depth_chart_order\":2,\"stats_id\":728038,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kevinwhite\",\"birth_date\":\"1992-06-25\",\"espn_id\":3042435},\"2257\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031045\",\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605851758164,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hyde\",\"depth_chart_position\":\"RB\",\"player_id\":\"2257\",\"birth_city\":null,\"fantasy_data_id\":16668,\"years_exp\":6,\"hashtag\":\"#CarlosHyde-NFL-SEA-30\",\"search_first_name\":\"carlos\",\"rotowire_id\":9516,\"rotoworld_id\":9381,\"active\":true,\"search_rank\":152,\"age\":30,\"full_name\":\"Carlos Hyde\",\"sportradar_id\":\"3a29784c-832f-4e41-a4ac-71d4f9ad410c\",\"pandascore_id\":null,\"yahoo_id\":27585,\"last_name\":\"Hyde\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Naples (FL)\",\"depth_chart_order\":2,\"stats_id\":543825,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'0\\\"\",\"search_full_name\":\"carloshyde\",\"birth_date\":\"1990-09-20\",\"espn_id\":16777},\"SEA\":{\"team\":\"SEA\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"SEA\",\"last_name\":\"Seahawks\",\"injury_status\":null,\"first_name\":\"Seattle\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"4120\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033900\",\"first_name\":\"Obi\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1588014960443,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"melifonwu\",\"depth_chart_position\":\"FS\",\"player_id\":\"4120\",\"birth_city\":null,\"fantasy_data_id\":18966,\"years_exp\":3,\"hashtag\":\"#ObiMelifonwu-NFL-FA-0\",\"search_first_name\":\"obi\",\"rotowire_id\":12002,\"rotoworld_id\":12259,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Obi Melifonwu\",\"sportradar_id\":\"3c151ffc-4fd3-4785-96e0-3a257e99706a\",\"pandascore_id\":null,\"yahoo_id\":30169,\"last_name\":\"Melifonwu\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":692304,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'4\\\"\",\"search_full_name\":\"obimelifonwu\",\"birth_date\":\"1994-04-05\",\"espn_id\":2974247},\"3737\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shiro\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"3737\",\"birth_city\":null,\"fantasy_data_id\":18548,\"years_exp\":0,\"hashtag\":\"#ShiroDavis-NFL-FA-57\",\"search_first_name\":\"shiro\",\"rotowire_id\":11388,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shiro Davis\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29909,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shirodavis\",\"birth_date\":\"1992-10-10\",\"espn_id\":2971704},\"2918\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Demetrius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"2918\",\"birth_city\":null,\"fantasy_data_id\":17386,\"years_exp\":null,\"hashtag\":\"#DemetriusWilson-NFL-FA-0\",\"search_first_name\":\"demetrius\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Demetrius Wilson\",\"sportradar_id\":\"ea18746c-1f1f-49ab-8d75-025f1005bab4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693838,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"demetriuswilson\",\"birth_date\":null,\"espn_id\":null},\"3744\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rohan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gaines\",\"depth_chart_position\":null,\"player_id\":\"3744\",\"birth_city\":null,\"fantasy_data_id\":18556,\"years_exp\":0,\"hashtag\":\"#RohanGaines-NFL-FA-36\",\"search_first_name\":\"rohan\",\"rotowire_id\":11572,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Rohan Gaines\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29745,\"last_name\":\"Gaines\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rohangaines\",\"birth_date\":\"1993-04-01\",\"espn_id\":2574521},\"6288\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035296\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599188454818,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6288\",\"birth_city\":null,\"fantasy_data_id\":21139,\"years_exp\":1,\"hashtag\":\"#MarcusGreen-NFL-PHI-89\",\"search_first_name\":\"marcus\",\"rotowire_id\":13979,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1680,\"age\":24,\"full_name\":\"Marcus Green\",\"sportradar_id\":\"3ca39a84-5ba9-445d-bf6e-895be06edb34\",\"pandascore_id\":null,\"yahoo_id\":32035,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Louisiana-Monroe\",\"high_school\":\"North Pontotoc (MS)\",\"depth_chart_order\":4,\"stats_id\":821868,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'8\\\"\",\"search_full_name\":\"marcusgreen\",\"birth_date\":\"1996-08-13\",\"espn_id\":3124964},\"7083\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599406259672,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"huntley\",\"depth_chart_position\":null,\"player_id\":\"7083\",\"birth_city\":null,\"fantasy_data_id\":21810,\"years_exp\":0,\"hashtag\":\"#TylerHuntley-NFL-BAL-2\",\"search_first_name\":\"tyler\",\"rotowire_id\":14563,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tyler Huntley\",\"sportradar_id\":\"7c226f73-a59f-4db6-ad98-2766d05d4d5a\",\"pandascore_id\":null,\"yahoo_id\":32993,\"last_name\":\"Huntley\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Hallandale (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tylerhuntley\",\"birth_date\":\"1998-02-03\",\"espn_id\":4035671},\"5664\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034588\",\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603839955149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"OLB\",\"player_id\":\"5664\",\"birth_city\":null,\"fantasy_data_id\":20516,\"years_exp\":2,\"hashtag\":\"#TrentHarris-NFL-NYG-93\",\"search_first_name\":\"trent\",\"rotowire_id\":13187,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1485,\"age\":25,\"full_name\":\"Trent Harris\",\"sportradar_id\":\"18264a0b-cb51-487a-b2cc-f9258f0325f6\",\"pandascore_id\":null,\"yahoo_id\":31648,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Winter Park (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trentharris\",\"birth_date\":\"1995-09-17\",\"espn_id\":3123054},\"6366\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"6366\",\"birth_city\":null,\"fantasy_data_id\":21257,\"years_exp\":1,\"hashtag\":\"#AndrewWilliams-NFL-FA-79\",\"search_first_name\":\"andrew\",\"rotowire_id\":14037,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Andrew Williams\",\"sportradar_id\":\"247a5074-77c9-4bc9-b1db-5ea4481c22db\",\"pandascore_id\":null,\"yahoo_id\":32104,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewwilliams\",\"birth_date\":\"1995-12-31\",\"espn_id\":3126462},\"5052\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034816\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606515027240,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RB\",\"player_id\":\"5052\",\"birth_city\":null,\"fantasy_data_id\":19861,\"years_exp\":2,\"hashtag\":\"#RonaldJones-NFL-TB-27\",\"search_first_name\":\"ronald\",\"rotowire_id\":12566,\"rotoworld_id\":13061,\"active\":true,\"search_rank\":68,\"age\":23,\"full_name\":\"Ronald Jones\",\"sportradar_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"pandascore_id\":null,\"yahoo_id\":31008,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"McKinney North (TX)\",\"depth_chart_order\":1,\"stats_id\":880033,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ronaldjones\",\"birth_date\":\"1997-08-03\",\"espn_id\":3912550},\"5565\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034171\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604951127827,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cabinda\",\"depth_chart_position\":\"SLB\",\"player_id\":\"5565\",\"birth_city\":null,\"fantasy_data_id\":20074,\"years_exp\":2,\"hashtag\":\"#JasonCabinda-NFL-DET-45\",\"search_first_name\":\"jason\",\"rotowire_id\":12662,\"rotoworld_id\":13359,\"active\":true,\"search_rank\":1411,\"age\":24,\"full_name\":\"Jason Cabinda\",\"sportradar_id\":\"da8694f7-3e30-4500-b890-bd28c7bc0ddc\",\"pandascore_id\":null,\"yahoo_id\":31480,\"last_name\":\"Cabinda\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Hunterdon Central (NJ)\",\"depth_chart_order\":3,\"stats_id\":836140,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jasoncabinda\",\"birth_date\":\"1996-03-17\",\"espn_id\":3116158},\"6737\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035740\",\"first_name\":\"Micky\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crum\",\"depth_chart_position\":\"TE\",\"player_id\":\"6737\",\"birth_city\":null,\"fantasy_data_id\":21658,\"years_exp\":1,\"hashtag\":\"#MickyCrum-NFL-FA-46\",\"search_first_name\":\"micky\",\"rotowire_id\":14346,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Micky Crum\",\"sportradar_id\":\"3465559b-8923-4342-8853-c59f8ffadcaa\",\"pandascore_id\":null,\"yahoo_id\":32647,\"last_name\":\"Crum\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":830875,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mickycrum\",\"birth_date\":\"1995-10-13\",\"espn_id\":3116661},\"1679\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Earl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okine\",\"depth_chart_position\":null,\"player_id\":\"1679\",\"birth_city\":null,\"fantasy_data_id\":15493,\"years_exp\":7,\"hashtag\":\"#EarlOkine-NFL-FA-44\",\"search_first_name\":\"earl\",\"rotowire_id\":10158,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Earl Okine\",\"sportradar_id\":\"81faeaf8-4b1c-4de3-b9cd-c587856a2112\",\"pandascore_id\":null,\"yahoo_id\":27328,\"last_name\":\"Okine\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Gainesville (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"earlokine\",\"birth_date\":\"1990-01-04\",\"espn_id\":16551},\"4527\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033606\",\"first_name\":\"Tre'Von\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1575595217350,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4527\",\"birth_city\":null,\"fantasy_data_id\":19405,\"years_exp\":3,\"hashtag\":\"#TreVonJohnson-NFL-FA-50\",\"search_first_name\":\"trevon\",\"rotowire_id\":12408,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tre'Von Johnson\",\"sportradar_id\":\"53a75e9c-b028-4ae5-97fc-31992f8d9dc2\",\"pandascore_id\":null,\"yahoo_id\":30489,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Weber State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trevonjohnson\",\"birth_date\":\"1995-02-10\",\"espn_id\":3045851},\"7361\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lacina\",\"depth_chart_position\":null,\"player_id\":\"7361\",\"birth_city\":null,\"fantasy_data_id\":22349,\"years_exp\":0,\"hashtag\":\"#JakeLacina-NFL-FA-0\",\"search_first_name\":\"jake\",\"rotowire_id\":15116,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jake Lacina\",\"sportradar_id\":\"65f64309-df14-4f59-83c7-d0b1416beb62\",\"pandascore_id\":null,\"yahoo_id\":33033,\"last_name\":\"Lacina\",\"metadata\":null,\"college\":\"Augustana (SD)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jakelacina\",\"birth_date\":\"1996-10-15\",\"espn_id\":4682833},\"2984\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2984\",\"birth_city\":null,\"fantasy_data_id\":17489,\"years_exp\":0,\"hashtag\":\"#WillJohnson-NFL-FA-0\",\"search_first_name\":\"will\",\"rotowire_id\":10827,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Will Johnson\",\"sportradar_id\":\"7f0201b7-5314-4291-ad24-90a070bb7043\",\"pandascore_id\":null,\"yahoo_id\":28891,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"willjohnson\",\"birth_date\":\"1993-03-05\",\"espn_id\":2576086},\"664\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"664\",\"birth_city\":null,\"fantasy_data_id\":11759,\"years_exp\":16,\"hashtag\":\"#WillAllen-NFL-FA-20\",\"search_first_name\":\"will\",\"rotowire_id\":3908,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Will Allen\",\"sportradar_id\":\"78876382-0752-4fe9-b6a6-a9a830df7312\",\"pandascore_id\":null,\"yahoo_id\":6870,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Wayne (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"willallen\",\"birth_date\":\"1982-06-17\",\"espn_id\":5636},\"2603\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031684\",\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534739436317,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wynn\",\"depth_chart_position\":null,\"player_id\":\"2603\",\"birth_city\":null,\"fantasy_data_id\":17071,\"years_exp\":5,\"hashtag\":\"#ShaneWynn-NFL-FA-15\",\"search_first_name\":\"shane\",\"rotowire_id\":10589,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Shane Wynn\",\"sportradar_id\":\"2e44f9d7-f453-4b71-9c27-cbbc7c241513\",\"pandascore_id\":null,\"yahoo_id\":28834,\"last_name\":\"Wynn\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609076,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"157\",\"height\":\"5'6\\\"\",\"search_full_name\":\"shanewynn\",\"birth_date\":\"1992-11-15\",\"espn_id\":2578322},\"2854\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"horsley\",\"depth_chart_position\":null,\"player_id\":\"2854\",\"birth_city\":null,\"fantasy_data_id\":17322,\"years_exp\":0,\"hashtag\":\"#KennyHorsley-NFL-FA-69\",\"search_first_name\":\"kenny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kenny Horsley\",\"sportradar_id\":\"1573e322-5bdd-4c60-94fa-7f3e30ecf424\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Horsley\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'7\\\"\",\"search_full_name\":\"kennyhorsley\",\"birth_date\":\"1988-03-15\",\"espn_id\":3169405},\"7260\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597530910091,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dinson\",\"depth_chart_position\":null,\"player_id\":\"7260\",\"birth_city\":null,\"fantasy_data_id\":22259,\"years_exp\":0,\"hashtag\":\"#JeremiahDinson-NFL-FA-0\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":14809,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1960,\"age\":23,\"full_name\":\"Jeremiah Dinson\",\"sportradar_id\":\"44aa1610-818f-4c56-b4b4-a09bd1bac9d9\",\"pandascore_id\":null,\"yahoo_id\":33187,\"last_name\":\"Dinson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeremiahdinson\",\"birth_date\":\"1997-02-26\",\"espn_id\":3916924},\"747\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lorig\",\"depth_chart_position\":null,\"player_id\":\"747\",\"birth_city\":null,\"fantasy_data_id\":12392,\"years_exp\":6,\"hashtag\":\"#ErikLorig-NFL-FA-41\",\"search_first_name\":\"erik\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Erik Lorig\",\"sportradar_id\":\"953a5bf1-9ba6-4e51-92d8-b731c46b09e4\",\"pandascore_id\":null,\"yahoo_id\":24229,\"last_name\":\"Lorig\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":323000,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eriklorig\",\"birth_date\":\"1986-11-17\",\"espn_id\":13407},\"1381\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030442\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1574022048413,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simon\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"1381\",\"birth_city\":null,\"fantasy_data_id\":14904,\"years_exp\":7,\"hashtag\":\"#JohnSimon-NFL-NE-55\",\"search_first_name\":\"john\",\"rotowire_id\":8711,\"rotoworld_id\":8547,\"active\":true,\"search_rank\":715,\"age\":30,\"full_name\":\"John Simon\",\"sportradar_id\":\"25a4ae85-e94b-4db1-b939-4c96f24ead11\",\"pandascore_id\":null,\"yahoo_id\":26752,\"last_name\":\"Simon\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Ohio State\",\"high_school\":\"Cardinal Mooney (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnsimon\",\"birth_date\":\"1990-10-14\",\"espn_id\":16010},\"673\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"673\",\"birth_city\":null,\"fantasy_data_id\":11859,\"years_exp\":10,\"hashtag\":\"#JasonCampbell-NFL-FA-17\",\"search_first_name\":\"jason\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Jason Campbell\",\"sportradar_id\":\"8fa562d4-d598-4d3a-bb01-d6cbd06f29de\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jasoncampbell\",\"birth_date\":\"1981-12-31\",\"espn_id\":8440},\"3695\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032986\",\"first_name\":\"J.P.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1587427257488,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holtz\",\"depth_chart_position\":\"TE\",\"player_id\":\"3695\",\"birth_city\":null,\"fantasy_data_id\":18498,\"years_exp\":4,\"hashtag\":\"#JPHoltz-NFL-CHI-81\",\"search_first_name\":\"jp\",\"rotowire_id\":11364,\"rotoworld_id\":null,\"active\":true,\"search_rank\":497,\"age\":27,\"full_name\":\"J.P. Holtz\",\"sportradar_id\":\"8d3ac8d8-e18f-4485-acc6-55c79adcc2a8\",\"pandascore_id\":null,\"yahoo_id\":29666,\"last_name\":\"Holtz\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Shaler (PA)\",\"depth_chart_order\":4,\"stats_id\":692334,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jpholtz\",\"birth_date\":\"1993-08-28\",\"espn_id\":2970262},\"1344\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Earl\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wolff\",\"depth_chart_position\":null,\"player_id\":\"1344\",\"birth_city\":null,\"fantasy_data_id\":14861,\"years_exp\":7,\"hashtag\":\"#EarlWolff-NFL-FA-0\",\"search_first_name\":\"earl\",\"rotowire_id\":8891,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Earl Wolff\",\"sportradar_id\":\"e04051a6-8172-4135-b038-af99fb8cb486\",\"pandascore_id\":null,\"yahoo_id\":26759,\"last_name\":\"Wolff\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"earlwolff\",\"birth_date\":\"1989-12-15\",\"espn_id\":15917},\"419\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"levy\",\"depth_chart_position\":null,\"player_id\":\"419\",\"birth_city\":null,\"fantasy_data_id\":9026,\"years_exp\":11,\"hashtag\":\"#DeAndreLevy-NFL-FA-54\",\"search_first_name\":\"deandre\",\"rotowire_id\":6080,\"rotoworld_id\":5323,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"DeAndre Levy\",\"sportradar_id\":\"a42e963a-9f62-40d4-9b85-5ac866c19b78\",\"pandascore_id\":null,\"yahoo_id\":9340,\"last_name\":\"Levy\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Vincent (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deandrelevy\",\"birth_date\":\"1987-03-26\",\"espn_id\":12682},\"300\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willis\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgahee\",\"depth_chart_position\":null,\"player_id\":\"300\",\"birth_city\":null,\"fantasy_data_id\":7451,\"years_exp\":11,\"hashtag\":\"#WillisMcGahee-NFL-FA-26\",\"search_first_name\":\"willis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Willis McGahee\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McGahee\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"willismcgahee\",\"birth_date\":\"1981-10-21\",\"espn_id\":null},\"3193\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032384\",\"first_name\":\"Germain\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604684444584,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ifedi\",\"depth_chart_position\":\"RG\",\"player_id\":\"3193\",\"birth_city\":null,\"fantasy_data_id\":17954,\"years_exp\":4,\"hashtag\":\"#GermainIfedi-NFL-CHI-74\",\"search_first_name\":\"germain\",\"rotowire_id\":11062,\"rotoworld_id\":11367,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Germain Ifedi\",\"sportradar_id\":\"23ce41df-3f29-4f67-9fb5-b9778ac931f8\",\"pandascore_id\":null,\"yahoo_id\":29265,\"last_name\":\"Ifedi\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Westside (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'5\\\"\",\"search_full_name\":\"germainifedi\",\"birth_date\":\"1994-06-02\",\"espn_id\":2972304},\"957\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027962\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606129811464,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jordan\",\"depth_chart_position\":\"LDE\",\"player_id\":\"957\",\"birth_city\":null,\"fantasy_data_id\":13338,\"years_exp\":9,\"hashtag\":\"#CameronJordan-NFL-NO-94\",\"search_first_name\":\"cameron\",\"rotowire_id\":7447,\"rotoworld_id\":6507,\"active\":true,\"search_rank\":643,\"age\":31,\"full_name\":\"Cameron Jordan\",\"sportradar_id\":\"543e5e1e-50e5-482d-a6ad-498d7fab497e\",\"pandascore_id\":null,\"yahoo_id\":24811,\"last_name\":\"Jordan\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cameronjordan\",\"birth_date\":\"1989-07-10\",\"espn_id\":13971},\"1677\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"1677\",\"birth_city\":null,\"fantasy_data_id\":15485,\"years_exp\":1,\"hashtag\":\"#TravisHoward-NFL-FA-33\",\"search_first_name\":\"travis\",\"rotowire_id\":9984,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Travis Howard\",\"sportradar_id\":\"f8eebbc1-bdf8-47e1-a7ef-6bc9250d9331\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"travishoward\",\"birth_date\":\"1989-11-24\",\"espn_id\":16490},\"977\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Demarcus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dobbs\",\"depth_chart_position\":null,\"player_id\":\"977\",\"birth_city\":null,\"fantasy_data_id\":13434,\"years_exp\":9,\"hashtag\":\"#DemarcusDobbs-NFL-FA-95\",\"search_first_name\":\"demarcus\",\"rotowire_id\":7806,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Demarcus Dobbs\",\"sportradar_id\":\"b6f645ed-35ab-4a88-8e02-0c3fc81fb76a\",\"pandascore_id\":null,\"yahoo_id\":25270,\"last_name\":\"Dobbs\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Calvary Baptist Day School (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'2\\\"\",\"search_full_name\":\"demarcusdobbs\",\"birth_date\":\"1987-11-30\",\"espn_id\":14377},\"4937\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Al\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"riles\",\"depth_chart_position\":null,\"player_id\":\"4937\",\"birth_city\":null,\"fantasy_data_id\":19595,\"years_exp\":1,\"hashtag\":\"#AlRiles-NFL-IND-3\",\"search_first_name\":\"al\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Al Riles\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30839,\"last_name\":\"Riles\",\"metadata\":null,\"college\":\"LA-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alriles\",\"birth_date\":\"1993-09-17\",\"espn_id\":2980808},\"2296\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrance\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532542501305,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parks\",\"depth_chart_position\":null,\"player_id\":\"2296\",\"birth_city\":null,\"fantasy_data_id\":16738,\"years_exp\":1,\"hashtag\":\"#TerranceParks-NFL-ATL-22\",\"search_first_name\":\"terrance\",\"rotowire_id\":10003,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Terrance Parks\",\"sportradar_id\":\"0a44ce13-28ff-4577-be74-501382fcf7f9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Parks\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terranceparks\",\"birth_date\":\"1990-04-14\",\"espn_id\":15544},\"858\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027960\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603037406730,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"castonzo\",\"depth_chart_position\":\"LT\",\"player_id\":\"858\",\"birth_city\":null,\"fantasy_data_id\":12960,\"years_exp\":9,\"hashtag\":\"#AnthonyCastonzo-NFL-IND-74\",\"search_first_name\":\"anthony\",\"rotowire_id\":7432,\"rotoworld_id\":6519,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Anthony Castonzo\",\"sportradar_id\":\"b44fa657-e4ea-4cc8-9581-33740bc417e6\",\"pandascore_id\":null,\"yahoo_id\":24809,\"last_name\":\"Castonzo\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Lake Zurich (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'7\\\"\",\"search_full_name\":\"anthonycastonzo\",\"birth_date\":\"1988-08-09\",\"espn_id\":13970},\"6713\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035706\",\"first_name\":\"Jamarius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564975506239,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"way\",\"depth_chart_position\":null,\"player_id\":\"6713\",\"birth_city\":null,\"fantasy_data_id\":21637,\"years_exp\":1,\"hashtag\":\"#JamariusWay-NFL-FA-83\",\"search_first_name\":\"jamarius\",\"rotowire_id\":13888,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jamarius Way\",\"sportradar_id\":\"e11bcf13-8e69-439c-9305-349f73af4b97\",\"pandascore_id\":null,\"yahoo_id\":32625,\"last_name\":\"Way\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1071592,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jamariusway\",\"birth_date\":\"1996-11-25\",\"espn_id\":4261077},\"3781\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032856\",\"first_name\":\"CJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1523663701226,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"3781\",\"birth_city\":null,\"fantasy_data_id\":18594,\"years_exp\":4,\"hashtag\":\"#CJSmith-NFL-FA-28\",\"search_first_name\":\"cj\",\"rotowire_id\":11538,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"CJ Smith\",\"sportradar_id\":\"accab0d5-2f39-4a5c-a595-c029cb6a9c05\",\"pandascore_id\":null,\"yahoo_id\":29684,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":613861,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cjsmith\",\"birth_date\":\"1993-05-10\",\"espn_id\":2573091},\"4578\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1518651901167,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"austell\",\"depth_chart_position\":null,\"player_id\":\"4578\",\"birth_city\":null,\"fantasy_data_id\":19465,\"years_exp\":3,\"hashtag\":\"#ErikAustell-NFL-FA-0\",\"search_first_name\":\"erik\",\"rotowire_id\":11754,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Erik Austell\",\"sportradar_id\":\"bc197ff5-5139-44e9-9e22-4a7b34f42902\",\"pandascore_id\":null,\"yahoo_id\":30812,\"last_name\":\"Austell\",\"metadata\":null,\"college\":\"Charleston Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'3\\\"\",\"search_full_name\":\"erikaustell\",\"birth_date\":\"1993-09-13\",\"espn_id\":2977231},\"3921\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033149\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1565730006323,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"truesdell\",\"depth_chart_position\":null,\"player_id\":\"3921\",\"birth_city\":null,\"fantasy_data_id\":18748,\"years_exp\":4,\"hashtag\":\"#NickTruesdell-NFL-FA-85\",\"search_first_name\":\"nick\",\"rotowire_id\":11619,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Nick Truesdell\",\"sportradar_id\":\"2ff2d430-6c3e-4f1f-8883-3c019052166f\",\"pandascore_id\":null,\"yahoo_id\":30048,\"last_name\":\"Truesdell\",\"metadata\":null,\"college\":\"Grand Rapids CC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":448251,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nicktruesdell\",\"birth_date\":\"1990-03-14\",\"espn_id\":2309428},\"2250\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1510615801895,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stinson\",\"depth_chart_position\":null,\"player_id\":\"2250\",\"birth_city\":null,\"fantasy_data_id\":16655,\"years_exp\":6,\"hashtag\":\"#EdStinson-NFL-FA-97\",\"search_first_name\":\"ed\",\"rotowire_id\":9413,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ed Stinson\",\"sportradar_id\":\"c406f27e-0bd9-4ac9-b18b-07cd74bfdd32\",\"pandascore_id\":null,\"yahoo_id\":27688,\"last_name\":\"Stinson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"South Dade (FL)\",\"depth_chart_order\":null,\"stats_id\":508668,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'3\\\"\",\"search_full_name\":\"edstinson\",\"birth_date\":\"1990-02-15\",\"espn_id\":16840},\"2289\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cordarro\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"law\",\"depth_chart_position\":null,\"player_id\":\"2289\",\"birth_city\":null,\"fantasy_data_id\":16726,\"years_exp\":8,\"hashtag\":\"#CordarroLaw-NFL-FA-99\",\"search_first_name\":\"cordarro\",\"rotowire_id\":9763,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Cordarro Law\",\"sportradar_id\":\"f0398206-2a62-41e2-b610-04a79b8cc6c6\",\"pandascore_id\":null,\"yahoo_id\":26544,\"last_name\":\"Law\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Sumter (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cordarrolaw\",\"birth_date\":\"1988-10-15\",\"espn_id\":15580},\"3831\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032921\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1510086301244,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sterup\",\"depth_chart_position\":null,\"player_id\":\"3831\",\"birth_city\":null,\"fantasy_data_id\":18651,\"years_exp\":4,\"hashtag\":\"#ZachSterup-NFL-FA-74\",\"search_first_name\":\"zach\",\"rotowire_id\":11466,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Zach Sterup\",\"sportradar_id\":\"a217c048-2479-4b4a-8b47-6e166b16d1ed\",\"pandascore_id\":null,\"yahoo_id\":29969,\"last_name\":\"Sterup\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'9\\\"\",\"search_full_name\":\"zachsterup\",\"birth_date\":\"1992-05-14\",\"espn_id\":2576365},\"6813\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606587333031,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"RB\",\"player_id\":\"6813\",\"birth_city\":null,\"fantasy_data_id\":21682,\"years_exp\":0,\"hashtag\":\"#JonathanTaylor-NFL-IND-28\",\"search_first_name\":\"jonathan\",\"rotowire_id\":14455,\"rotoworld_id\":null,\"active\":true,\"search_rank\":29,\"age\":21,\"full_name\":\"Jonathan Taylor\",\"sportradar_id\":\"925195a4-06ba-4e37-ae7d-a3d6a5419139\",\"pandascore_id\":null,\"yahoo_id\":32711,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Salem (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jonathantaylor\",\"birth_date\":\"1999-01-19\",\"espn_id\":4242335},\"7285\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rutledge\",\"depth_chart_position\":null,\"player_id\":\"7285\",\"birth_city\":null,\"fantasy_data_id\":22281,\"years_exp\":0,\"hashtag\":\"#DonaldRutledge-NFL-FA-0\",\"search_first_name\":\"donald\",\"rotowire_id\":14936,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1966,\"age\":23,\"full_name\":\"Donald Rutledge\",\"sportradar_id\":\"b4a1df84-9467-48b0-bf65-053744916892\",\"pandascore_id\":null,\"yahoo_id\":33218,\"last_name\":\"Rutledge\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"donaldrutledge\",\"birth_date\":\"1997-05-22\",\"espn_id\":3928847},\"2324\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032145\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606528829605,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"erving\",\"depth_chart_position\":\"LT\",\"player_id\":\"2324\",\"birth_city\":null,\"fantasy_data_id\":16780,\"years_exp\":5,\"hashtag\":\"#CameronErving-NFL-DAL-75\",\"search_first_name\":\"cameron\",\"rotowire_id\":10264,\"rotoworld_id\":10384,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cameron Erving\",\"sportradar_id\":\"a25c5a77-967c-4a4f-a885-0178868bbf67\",\"pandascore_id\":null,\"yahoo_id\":28407,\"last_name\":\"Erving\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Colquitt County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronerving\",\"birth_date\":\"1992-08-23\",\"espn_id\":2512504},\"6727\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035733\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6727\",\"birth_city\":null,\"fantasy_data_id\":21633,\"years_exp\":1,\"hashtag\":\"#JoeWalker-NFL-FA-2\",\"search_first_name\":\"joe\",\"rotowire_id\":14340,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joe Walker\",\"sportradar_id\":\"d29a7df9-8900-4607-9a8b-0e00b27d0d30\",\"pandascore_id\":null,\"yahoo_id\":32639,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"-\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":873479,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joewalker\",\"birth_date\":\"1996-01-12\",\"espn_id\":3912052},\"6925\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Essang\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599331557132,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bassey\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6925\",\"birth_city\":null,\"fantasy_data_id\":22086,\"years_exp\":0,\"hashtag\":\"#EssangBassey-NFL-DEN-34\",\"search_first_name\":\"essang\",\"rotowire_id\":14738,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1916,\"age\":22,\"full_name\":\"Essang Bassey\",\"sportradar_id\":\"34853ce3-5e1f-4b23-b730-6f51444291ac\",\"pandascore_id\":null,\"yahoo_id\":32932,\"last_name\":\"Bassey\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wake Forest\",\"high_school\":\"Columbus (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"essangbassey\",\"birth_date\":\"1998-08-12\",\"espn_id\":4037216},\"6969\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dane\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605483914214,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"6969\",\"birth_city\":null,\"fantasy_data_id\":22060,\"years_exp\":0,\"hashtag\":\"#DaneJackson-NFL-BUF-30\",\"search_first_name\":\"dane\",\"rotowire_id\":14549,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1895,\"age\":23,\"full_name\":\"Dane Jackson\",\"sportradar_id\":\"089763ae-208d-4ad9-bb30-c97c0fcfdcd1\",\"pandascore_id\":null,\"yahoo_id\":32909,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Cornell (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"danejackson\",\"birth_date\":\"1996-11-29\",\"espn_id\":3895791},\"5031\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034754\",\"first_name\":\"Oren\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604686545033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burks\",\"depth_chart_position\":\"RILB\",\"player_id\":\"5031\",\"birth_city\":null,\"fantasy_data_id\":19902,\"years_exp\":2,\"hashtag\":\"#OrenBurks-NFL-GB-42\",\"search_first_name\":\"oren\",\"rotowire_id\":12919,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1334,\"age\":25,\"full_name\":\"Oren Burks\",\"sportradar_id\":\"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17\",\"pandascore_id\":null,\"yahoo_id\":31058,\"last_name\":\"Burks\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"South County (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'3\\\"\",\"search_full_name\":\"orenburks\",\"birth_date\":\"1995-03-21\",\"espn_id\":3051746},\"4931\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"appleby\",\"depth_chart_position\":null,\"player_id\":\"4931\",\"birth_city\":null,\"fantasy_data_id\":19452,\"years_exp\":1,\"hashtag\":\"#AustinAppleby-NFL-DAL-3\",\"search_first_name\":\"austin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Austin Appleby\",\"sportradar_id\":\"bc893c74-874d-4d7e-b105-f52e454f6a40\",\"pandascore_id\":null,\"yahoo_id\":30779,\"last_name\":\"Appleby\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austinappleby\",\"birth_date\":null,\"espn_id\":null},\"449\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kellen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"winslow\",\"depth_chart_position\":null,\"player_id\":\"449\",\"birth_city\":null,\"fantasy_data_id\":9249,\"years_exp\":9,\"hashtag\":\"#KellenWinslow-NFL-FA-81\",\"search_first_name\":\"kellen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Kellen Winslow\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Winslow\",\"metadata\":null,\"college\":\"Miami (Fla.)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kellenwinslow\",\"birth_date\":\"1983-07-21\",\"espn_id\":null},\"216\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hills\",\"depth_chart_position\":null,\"player_id\":\"216\",\"birth_city\":null,\"fantasy_data_id\":5423,\"years_exp\":12,\"hashtag\":\"#TonyHills-NFL-FA-76\",\"search_first_name\":\"tony\",\"rotowire_id\":7063,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Tony Hills\",\"sportradar_id\":\"2da4e34f-de8f-4e76-888f-8d429f6ef353\",\"pandascore_id\":null,\"yahoo_id\":8920,\"last_name\":\"Hills\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Elsik (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tonyhills\",\"birth_date\":\"1984-11-04\",\"espn_id\":11377},\"2153\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kain\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colter\",\"depth_chart_position\":null,\"player_id\":\"2153\",\"birth_city\":null,\"fantasy_data_id\":16499,\"years_exp\":1,\"hashtag\":\"#KainColter-NFL-FA-16\",\"search_first_name\":\"kain\",\"rotowire_id\":9479,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kain Colter\",\"sportradar_id\":\"e4e1f558-8ae9-4e47-ac7a-8740292e7fdb\",\"pandascore_id\":null,\"yahoo_id\":27886,\"last_name\":\"Colter\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kaincolter\",\"birth_date\":\"1990-10-03\",\"espn_id\":17055},\"4877\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4877\",\"birth_city\":null,\"fantasy_data_id\":19777,\"years_exp\":1,\"hashtag\":\"#DrewWilliams-NFL-ARI-47\",\"search_first_name\":\"drew\",\"rotowire_id\":12536,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Drew Williams\",\"sportradar_id\":\"da99611b-81f8-43f3-861c-7e9bbbe3452b\",\"pandascore_id\":null,\"yahoo_id\":30966,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"drewwilliams\",\"birth_date\":\"1994-06-17\",\"espn_id\":3048925},\"7508\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"7508\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":10,\"hashtag\":\"#BrandonKing-NFL-FA-37\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":null,\"age\":33,\"full_name\":\"Brandon King\",\"sportradar_id\":\"8daa4045-ec0a-4f6e-9430-693727abfd7f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Houston County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brandonking\",\"birth_date\":\"1987-01-28\",\"espn_id\":null},\"5041\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034815\",\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604683544751,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"warner\",\"depth_chart_position\":\"MIKE\",\"player_id\":\"5041\",\"birth_city\":null,\"fantasy_data_id\":19891,\"years_exp\":2,\"hashtag\":\"#FredWarner-NFL-SF-54\",\"search_first_name\":\"fred\",\"rotowire_id\":12769,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1327,\"age\":24,\"full_name\":\"Fred Warner\",\"sportradar_id\":\"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36\",\"pandascore_id\":null,\"yahoo_id\":31040,\"last_name\":\"Warner\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Mission Hills (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'3\\\"\",\"search_full_name\":\"fredwarner\",\"birth_date\":\"1996-11-19\",\"espn_id\":3138826},\"4927\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deondre\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barnett\",\"depth_chart_position\":null,\"player_id\":\"4927\",\"birth_city\":null,\"fantasy_data_id\":19336,\"years_exp\":1,\"hashtag\":\"#DeondreBarnett-NFL-TB-0\",\"search_first_name\":\"deondre\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Deondre Barnett\",\"sportradar_id\":\"0f11eaf4-87fe-494b-b75e-2953bb10cda7\",\"pandascore_id\":null,\"yahoo_id\":30469,\"last_name\":\"Barnett\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"deondrebarnett\",\"birth_date\":null,\"espn_id\":null},\"5040\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034263\",\"first_name\":\"Tarvarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603496451939,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"FS\",\"player_id\":\"5040\",\"birth_city\":null,\"fantasy_data_id\":19907,\"years_exp\":2,\"hashtag\":\"#TarvariusMoore-NFL-SF-33\",\"search_first_name\":\"tarvarius\",\"rotowire_id\":12985,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1337,\"age\":24,\"full_name\":\"Tarvarius Moore\",\"sportradar_id\":\"55414554-e550-435e-a108-6047a9318e0a\",\"pandascore_id\":null,\"yahoo_id\":31065,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Quitman (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tarvariusmoore\",\"birth_date\":\"1996-08-16\",\"espn_id\":4039278},\"7075\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charlie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1587847542147,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"woerner\",\"depth_chart_position\":\"TE\",\"player_id\":\"7075\",\"birth_city\":null,\"fantasy_data_id\":22119,\"years_exp\":0,\"hashtag\":\"#CharlieWoerner-NFL-SF-89\",\"search_first_name\":\"charlie\",\"rotowire_id\":14608,\"rotoworld_id\":null,\"active\":true,\"search_rank\":470,\"age\":23,\"full_name\":\"Charlie Woerner\",\"sportradar_id\":\"527dfee0-a242-4dc7-830a-ab7028308259\",\"pandascore_id\":null,\"yahoo_id\":32860,\"last_name\":\"Woerner\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Rabun County (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"charliewoerner\",\"birth_date\":\"1997-10-16\",\"espn_id\":4035020},\"7492\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"norwood\",\"depth_chart_position\":null,\"player_id\":\"7492\",\"birth_city\":null,\"fantasy_data_id\":22466,\"years_exp\":0,\"hashtag\":\"#JoshNorwood-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":15125,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Josh Norwood\",\"sportradar_id\":\"d289103b-4d5b-49a3-8a7c-c2bf2cfd4211\",\"pandascore_id\":null,\"yahoo_id\":33288,\"last_name\":\"Norwood\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshnorwood\",\"birth_date\":null,\"espn_id\":null},\"3562\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032479\",\"first_name\":\"Tyvis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577808328717,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":\"SS\",\"player_id\":\"3562\",\"birth_city\":null,\"fantasy_data_id\":18335,\"years_exp\":4,\"hashtag\":\"#TyvisPowell-NFL-FA-0\",\"search_first_name\":\"tyvis\",\"rotowire_id\":11104,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyvis Powell\",\"sportradar_id\":\"5405b613-39ef-4c12-977c-e199bf112e43\",\"pandascore_id\":null,\"yahoo_id\":29833,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":653692,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tyvispowell\",\"birth_date\":\"1994-02-16\",\"espn_id\":2976308},\"4241\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033595\",\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1569352841092,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"oconnor\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4241\",\"birth_city\":null,\"fantasy_data_id\":19087,\"years_exp\":3,\"hashtag\":\"#PatOConnor-NFL-TB-79\",\"search_first_name\":\"pat\",\"rotowire_id\":12223,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1215,\"age\":27,\"full_name\":\"Pat O'Connor\",\"sportradar_id\":\"2157df58-ca82-46cd-9897-261a80060292\",\"pandascore_id\":null,\"yahoo_id\":30363,\"last_name\":\"O'Connor\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":\"St. Rita (IL)\",\"depth_chart_order\":2,\"stats_id\":694143,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"patoconnor\",\"birth_date\":\"1993-11-01\",\"espn_id\":2980206},\"3027\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Boobie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"3027\",\"birth_city\":null,\"fantasy_data_id\":17702,\"years_exp\":null,\"hashtag\":\"#BoobieDixon-NFL-FA-0\",\"search_first_name\":\"boobie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Boobie Dixon\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":24149,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"boobiedixon\",\"birth_date\":null,\"espn_id\":null},\"2404\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525740601114,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dawson\",\"depth_chart_position\":null,\"player_id\":\"2404\",\"birth_city\":null,\"fantasy_data_id\":16860,\"years_exp\":5,\"hashtag\":\"#PaulDawson-NFL-FA-47\",\"search_first_name\":\"paul\",\"rotowire_id\":10352,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Paul Dawson\",\"sportradar_id\":\"0cb60b75-aa36-447c-8080-0b769b05a9a4\",\"pandascore_id\":null,\"yahoo_id\":28487,\"last_name\":\"Dawson\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Skyline (TX)\",\"depth_chart_order\":null,\"stats_id\":691314,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"pauldawson\",\"birth_date\":\"1993-01-13\",\"espn_id\":2971555},\"2875\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"creecy\",\"depth_chart_position\":null,\"player_id\":\"2875\",\"birth_city\":null,\"fantasy_data_id\":17343,\"years_exp\":0,\"hashtag\":\"#TonyCreecy-NFL-FA-25\",\"search_first_name\":\"tony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tony Creecy\",\"sportradar_id\":\"e88594f6-7d03-4826-a5bf-a03873caf874\",\"pandascore_id\":null,\"yahoo_id\":29193,\"last_name\":\"Creecy\",\"metadata\":null,\"college\":\"NC State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557333,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tonycreecy\",\"birth_date\":null,\"espn_id\":2577743},\"4225\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033580\",\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601826338286,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vallejo\",\"depth_chart_position\":\"RILB\",\"player_id\":\"4225\",\"birth_city\":null,\"fantasy_data_id\":19071,\"years_exp\":3,\"hashtag\":\"#TannerVallejo-NFL-ARI-51\",\"search_first_name\":\"tanner\",\"rotowire_id\":11982,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1207,\"age\":25,\"full_name\":\"Tanner Vallejo\",\"sportradar_id\":\"23f29e42-92e5-41b2-88eb-b9fb17a0eede\",\"pandascore_id\":null,\"yahoo_id\":30308,\"last_name\":\"Vallejo\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Nevada Union (CA)\",\"depth_chart_order\":2,\"stats_id\":728845,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tannervallejo\",\"birth_date\":\"1994-12-16\",\"espn_id\":3042895},\"6061\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035458\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"6061\",\"birth_city\":null,\"fantasy_data_id\":20855,\"years_exp\":1,\"hashtag\":\"#DrewLewis-NFL-FA-46\",\"search_first_name\":\"drew\",\"rotowire_id\":13732,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Drew Lewis\",\"sportradar_id\":\"0baf5ce4-ce92-425e-b5aa-ea0c388a9b6e\",\"pandascore_id\":null,\"yahoo_id\":32512,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"drewlewis\",\"birth_date\":\"1995-09-07\",\"espn_id\":3127302},\"3390\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032449\",\"first_name\":\"Lachlan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1598589347648,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"3390\",\"birth_city\":null,\"fantasy_data_id\":18151,\"years_exp\":4,\"hashtag\":\"#LachlanEdwards-NFL-FA-0\",\"search_first_name\":\"lachlan\",\"rotowire_id\":11027,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Lachlan Edwards\",\"sportradar_id\":\"d57ef862-8cb9-4f27-a294-f86eb26b6cce\",\"pandascore_id\":null,\"yahoo_id\":29469,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Sam Houston State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lachlanedwards\",\"birth_date\":\"1992-04-27\",\"espn_id\":3061740},\"6383\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035113\",\"first_name\":\"Anree\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"saintamour\",\"depth_chart_position\":null,\"player_id\":\"6383\",\"birth_city\":null,\"fantasy_data_id\":21314,\"years_exp\":1,\"hashtag\":\"#AnreeSaintAmour-NFL-FA-62\",\"search_first_name\":\"anree\",\"rotowire_id\":14157,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Anree Saint-Amour\",\"sportradar_id\":\"45736f04-47b0-44d7-aa61-ba9f0a94565d\",\"pandascore_id\":null,\"yahoo_id\":32147,\"last_name\":\"Saint-Amour\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'2\\\"\",\"search_full_name\":\"anreesaintamour\",\"birth_date\":\"1996-09-18\",\"espn_id\":3917834},\"4755\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"4755\",\"birth_city\":null,\"fantasy_data_id\":19674,\"years_exp\":0,\"hashtag\":\"#MikeMoore-NFL-FA-52\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Moore\",\"sportradar_id\":\"7fad6771-a487-4f20-b65d-ea9e21c151ac\",\"pandascore_id\":null,\"yahoo_id\":30500,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"\",\"search_full_name\":\"mikemoore\",\"birth_date\":null,\"espn_id\":2977706},\"2798\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031509\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rush\",\"depth_chart_position\":null,\"player_id\":\"2798\",\"birth_city\":null,\"fantasy_data_id\":17266,\"years_exp\":5,\"hashtag\":\"#MarcusRush-NFL-FA-49\",\"search_first_name\":\"marcus\",\"rotowire_id\":10384,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Marcus Rush\",\"sportradar_id\":\"64e79f32-c315-45ec-831b-374c0d6e10be\",\"pandascore_id\":null,\"yahoo_id\":28798,\"last_name\":\"Rush\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marcusrush\",\"birth_date\":\"1991-06-19\",\"espn_id\":2515422},\"385\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026516\",\"first_name\":\"Britton\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1584390617016,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"colquitt\",\"depth_chart_position\":null,\"player_id\":\"385\",\"birth_city\":null,\"fantasy_data_id\":8679,\"years_exp\":11,\"hashtag\":\"#BrittonColquitt-NFL-MIN-2\",\"search_first_name\":\"britton\",\"rotowire_id\":7192,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Britton Colquitt\",\"sportradar_id\":\"26164d5b-1e27-445d-8684-67b80e576567\",\"pandascore_id\":null,\"yahoo_id\":9769,\"last_name\":\"Colquitt\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Bearden (TN)\",\"depth_chart_order\":null,\"stats_id\":225364,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brittoncolquitt\",\"birth_date\":\"1985-03-20\",\"espn_id\":12773},\"537\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027870\",\"first_name\":\"Maurkice\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603413049549,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pouncey\",\"depth_chart_position\":\"C\",\"player_id\":\"537\",\"birth_city\":null,\"fantasy_data_id\":11062,\"years_exp\":10,\"hashtag\":\"#MaurkicePouncey-NFL-PIT-53\",\"search_first_name\":\"maurkice\",\"rotowire_id\":6563,\"rotoworld_id\":5706,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Maurkice Pouncey\",\"sportradar_id\":\"6c2c4e4c-82f0-46e2-bcfb-3ed5f452266b\",\"pandascore_id\":null,\"yahoo_id\":23993,\"last_name\":\"Pouncey\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Florida\",\"high_school\":\"Lakeland (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"maurkicepouncey\",\"birth_date\":\"1989-07-24\",\"espn_id\":13250},\"372\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"casey\",\"depth_chart_position\":null,\"player_id\":\"372\",\"birth_city\":null,\"fantasy_data_id\":8569,\"years_exp\":11,\"hashtag\":\"#JamesCasey-NFL-FA-80\",\"search_first_name\":\"james\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"James Casey\",\"sportradar_id\":\"58ddefee-8abc-4421-856b-9bb72b0d202c\",\"pandascore_id\":null,\"yahoo_id\":9416,\"last_name\":\"Casey\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Azle (TX)\",\"depth_chart_order\":null,\"stats_id\":381860,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamescasey\",\"birth_date\":\"1984-09-22\",\"espn_id\":12535},\"1341\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kruger\",\"depth_chart_position\":null,\"player_id\":\"1341\",\"birth_city\":null,\"fantasy_data_id\":14858,\"years_exp\":2,\"hashtag\":\"#JoeKruger-NFL-FA-73\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joe Kruger\",\"sportradar_id\":\"a36afada-1dd9-446c-8bd3-27bfa595a903\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kruger\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joekruger\",\"birth_date\":\"1992-06-04\",\"espn_id\":16017},\"3040\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031997\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606101009913,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"irving\",\"depth_chart_position\":null,\"player_id\":\"3040\",\"birth_city\":null,\"fantasy_data_id\":17747,\"years_exp\":5,\"hashtag\":\"#DavidIrving-NFL-LV-95\",\"search_first_name\":\"david\",\"rotowire_id\":10341,\"rotoworld_id\":10959,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"David Irving\",\"sportradar_id\":\"9061a751-bfd4-41f5-a585-9f3b20708b94\",\"pandascore_id\":null,\"yahoo_id\":29096,\"last_name\":\"Irving\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"San Jacinto (CA)\",\"depth_chart_order\":null,\"stats_id\":599100,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'7\\\"\",\"search_full_name\":\"davidirving\",\"birth_date\":\"1993-08-18\",\"espn_id\":2577162},\"5166\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034256\",\"first_name\":\"Da'Mari\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596398116697,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5166\",\"birth_city\":null,\"fantasy_data_id\":20117,\"years_exp\":2,\"hashtag\":\"#DaMariScott-NFL-NYG-18\",\"search_first_name\":\"damari\",\"rotowire_id\":13136,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1422,\"age\":25,\"full_name\":\"Da'Mari Scott\",\"sportradar_id\":\"aec7472c-3e0b-443f-8c48-cd8cf0e9734c\",\"pandascore_id\":null,\"yahoo_id\":31460,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Cathedral (CA)\",\"depth_chart_order\":4,\"stats_id\":752015,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"damariscott\",\"birth_date\":\"1995-08-08\",\"espn_id\":3056577},\"5566\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535495103565,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"5566\",\"birth_city\":null,\"fantasy_data_id\":20578,\"years_exp\":2,\"hashtag\":\"#JulianAllen-NFL-FA-86\",\"search_first_name\":\"julian\",\"rotowire_id\":13158,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Julian Allen\",\"sportradar_id\":\"8059923a-a1cc-4e6e-8ea6-895805adedd6\",\"pandascore_id\":null,\"yahoo_id\":31505,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":867577,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"julianallen\",\"birth_date\":\"1994-05-31\",\"espn_id\":3916334},\"623\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027648\",\"first_name\":\"Rodger\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605901202455,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"saffold\",\"depth_chart_position\":\"LG\",\"player_id\":\"623\",\"birth_city\":null,\"fantasy_data_id\":11545,\"years_exp\":10,\"hashtag\":\"#RodgerSaffold-NFL-TEN-76\",\"search_first_name\":\"rodger\",\"rotowire_id\":6554,\"rotoworld_id\":5856,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Rodger Saffold\",\"sportradar_id\":\"d53cd589-73d6-4aad-ae69-e979670a0d14\",\"pandascore_id\":null,\"yahoo_id\":24008,\"last_name\":\"Saffold\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Indiana\",\"high_school\":\"Bedford (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rodgersaffold\",\"birth_date\":\"1988-06-06\",\"espn_id\":13294},\"2564\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"2564\",\"birth_city\":null,\"fantasy_data_id\":17028,\"years_exp\":1,\"hashtag\":\"#DuronCarter-NFL-FA-9\",\"search_first_name\":\"duron\",\"rotowire_id\":null,\"rotoworld_id\":10241,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Duron Carter\",\"sportradar_id\":\"2fb7db72-3527-4e1f-8048-f12798e1f5c4\",\"pandascore_id\":null,\"yahoo_id\":28373,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":509091,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'5\\\"\",\"search_full_name\":\"duroncarter\",\"birth_date\":\"1991-03-22\",\"espn_id\":2447781},\"HOU\":{\"team\":\"HOU\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"HOU\",\"last_name\":\"Texans\",\"injury_status\":null,\"first_name\":\"Houston\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"2500\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031607\",\"first_name\":\"Leterrius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1577987139143,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walton\",\"depth_chart_position\":null,\"player_id\":\"2500\",\"birth_city\":null,\"fantasy_data_id\":16959,\"years_exp\":5,\"hashtag\":\"#LeterriusWalton-NFL-FA-95\",\"search_first_name\":\"leterrius\",\"rotowire_id\":10335,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Leterrius Walton\",\"sportradar_id\":\"37845827-23af-4cc2-8f27-4fd355e4c4a6\",\"pandascore_id\":null,\"yahoo_id\":28587,\"last_name\":\"Walton\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Clintondale (MI)\",\"depth_chart_order\":null,\"stats_id\":542173,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"leterriuswalton\",\"birth_date\":\"1992-03-31\",\"espn_id\":2516417},\"3952\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"C\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"3952\",\"birth_city\":null,\"fantasy_data_id\":18785,\"years_exp\":0,\"hashtag\":\"#CPalmer-NFL-FA-0\",\"search_first_name\":\"c\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"C Palmer\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"cpalmer\",\"birth_date\":null,\"espn_id\":4049304},\"4031\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"4031\",\"birth_city\":null,\"fantasy_data_id\":18874,\"years_exp\":2,\"hashtag\":\"#TravisWilson-NFL-FA-87\",\"search_first_name\":\"travis\",\"rotowire_id\":11749,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Travis Wilson\",\"sportradar_id\":\"1eed6316-b4fc-4faa-9439-a6f93e8dc6ff\",\"pandascore_id\":null,\"yahoo_id\":30874,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651984,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'7\\\"\",\"search_full_name\":\"traviswilson\",\"birth_date\":\"1993-12-14\",\"espn_id\":2971668},\"2393\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031565\",\"first_name\":\"Danielle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603909828123,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hunter\",\"depth_chart_position\":null,\"player_id\":\"2393\",\"birth_city\":null,\"fantasy_data_id\":16849,\"years_exp\":5,\"hashtag\":\"#DanielleHunter-NFL-MIN-99\",\"search_first_name\":\"danielle\",\"rotowire_id\":10318,\"rotoworld_id\":10470,\"active\":true,\"search_rank\":881,\"age\":26,\"full_name\":\"Danielle Hunter\",\"sportradar_id\":\"ba7fe857-df63-4aed-803a-80993b157be4\",\"pandascore_id\":null,\"yahoo_id\":28476,\"last_name\":\"Hunter\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Morton Ranch (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daniellehunter\",\"birth_date\":\"1994-10-29\",\"espn_id\":2976560},\"5668\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034668\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600028758762,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stinnie\",\"depth_chart_position\":\"LG\",\"player_id\":\"5668\",\"birth_city\":null,\"fantasy_data_id\":20379,\"years_exp\":2,\"hashtag\":\"#AaronStinnie-NFL-TB-64\",\"search_first_name\":\"aaron\",\"rotowire_id\":13303,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Aaron Stinnie\",\"sportradar_id\":\"5fd40b6b-d81a-4a4e-a394-53ed7e58511f\",\"pandascore_id\":null,\"yahoo_id\":31619,\"last_name\":\"Stinnie\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"St. Anne's-Belfield (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'3\\\"\",\"search_full_name\":\"aaronstinnie\",\"birth_date\":\"1994-02-18\",\"espn_id\":3049339},\"4859\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033447\",\"first_name\":\"Ahmad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1596675915023,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"4859\",\"birth_city\":null,\"fantasy_data_id\":19312,\"years_exp\":3,\"hashtag\":\"#AhmadThomas-NFL-FA-0\",\"search_first_name\":\"ahmad\",\"rotowire_id\":12558,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1254,\"age\":25,\"full_name\":\"Ahmad Thomas\",\"sportradar_id\":\"56615da2-0091-4683-8596-5b13d933db93\",\"pandascore_id\":null,\"yahoo_id\":30635,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":727929,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ahmadthomas\",\"birth_date\":\"1994-12-15\",\"espn_id\":3042403},\"5923\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035281\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606339202575,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"5923\",\"birth_city\":null,\"fantasy_data_id\":20821,\"years_exp\":1,\"hashtag\":\"#JoeJackson-NFL-CLE-91\",\"search_first_name\":\"joe\",\"rotowire_id\":13523,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1555,\"age\":23,\"full_name\":\"Joe Jackson\",\"sportradar_id\":\"d0d2e26b-f5a7-4455-86b8-096508ac8eea\",\"pandascore_id\":null,\"yahoo_id\":31997,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Gulliver Prep (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joejackson\",\"birth_date\":\"1996-12-20\",\"espn_id\":4037459},\"1899\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"agnew\",\"depth_chart_position\":null,\"player_id\":\"1899\",\"birth_city\":null,\"fantasy_data_id\":16123,\"years_exp\":1,\"hashtag\":\"#RayAgnew-NFL-FA-48\",\"search_first_name\":\"ray\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ray Agnew\",\"sportradar_id\":\"a997d91a-c44a-4bfe-8b88-337cc6addc0b\",\"pandascore_id\":null,\"yahoo_id\":28011,\"last_name\":\"Agnew\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":504503,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rayagnew\",\"birth_date\":\"1993-05-17\",\"espn_id\":17101},\"6886\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606270554339,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"claypool\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6886\",\"birth_city\":null,\"fantasy_data_id\":21752,\"years_exp\":0,\"hashtag\":\"#ChaseClaypool-NFL-PIT-11\",\"search_first_name\":\"chase\",\"rotowire_id\":14433,\"rotoworld_id\":null,\"active\":true,\"search_rank\":225,\"age\":22,\"full_name\":\"Chase Claypool\",\"sportradar_id\":\"53ed110c-f022-4759-afd3-1cd3436dbba7\",\"pandascore_id\":null,\"yahoo_id\":32719,\"last_name\":\"Claypool\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Notre Dame\",\"high_school\":\"Abbotsford (CAN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chaseclaypool\",\"birth_date\":\"1998-07-07\",\"espn_id\":4046692},\"7509\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"owusu\",\"depth_chart_position\":null,\"player_id\":\"7509\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":8,\"hashtag\":\"#ChrisOwusu-NFL-FA-17\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":null,\"age\":30,\"full_name\":\"Chris Owusu\",\"sportradar_id\":\"18e01f34-0e2b-48cb-9d39-248f6e562200\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Owusu\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Oaks Christian (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisowusu\",\"birth_date\":\"1990-01-06\",\"espn_id\":null},\"4881\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034796\",\"first_name\":\"Lamar\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606512028031,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"QB\",\"player_id\":\"4881\",\"birth_city\":null,\"fantasy_data_id\":19781,\"years_exp\":2,\"hashtag\":\"#LamarJackson-NFL-BAL-8\",\"search_first_name\":\"lamar\",\"rotowire_id\":12561,\"rotoworld_id\":13059,\"active\":true,\"search_rank\":18,\"age\":23,\"full_name\":\"Lamar Jackson\",\"sportradar_id\":\"e06a9c07-453a-4bb0-a7e9-2c3a64166dad\",\"pandascore_id\":null,\"yahoo_id\":31002,\"last_name\":\"Jackson\",\"metadata\":{\"injury_override_regular_2020_12\":\"COV\"},\"college\":\"Louisville\",\"high_school\":\"Boynton Beach (FL)\",\"depth_chart_order\":1,\"stats_id\":877745,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lamarjackson\",\"birth_date\":\"1997-01-07\",\"espn_id\":3916387},\"467\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"DB\"],\"news_updated\":1565796306626,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"467\",\"birth_city\":null,\"fantasy_data_id\":9667,\"years_exp\":11,\"hashtag\":\"#SeanSmith-NFL-FA-24\",\"search_first_name\":\"sean\",\"rotowire_id\":14345,\"rotoworld_id\":5184,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Sean Smith\",\"sportradar_id\":\"14a5a155-7a67-45d4-b55d-c33f4d56ecd3\",\"pandascore_id\":null,\"yahoo_id\":32645,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":286361,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"seansmith\",\"birth_date\":\"1987-07-14\",\"espn_id\":12430},\"1511\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cornelius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534787706778,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"1511\",\"birth_city\":null,\"fantasy_data_id\":15117,\"years_exp\":7,\"hashtag\":\"#CorneliusWashington-NFL-FA-90\",\"search_first_name\":\"cornelius\",\"rotowire_id\":8871,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Cornelius Washington\",\"sportradar_id\":\"adf28620-33a3-4619-b511-1853f2f12ef0\",\"pandascore_id\":null,\"yahoo_id\":26811,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Burke County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"corneliuswashington\",\"birth_date\":\"1989-09-10\",\"espn_id\":15914},\"52\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dreessen\",\"depth_chart_position\":null,\"player_id\":\"52\",\"birth_city\":null,\"fantasy_data_id\":1577,\"years_exp\":8,\"hashtag\":\"#JoelDreessen-NFL-FA-81\",\"search_first_name\":\"joel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Joel Dreessen\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dreessen\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joeldreessen\",\"birth_date\":\"1982-07-26\",\"espn_id\":null},\"7095\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1605580521398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"macginnis\",\"depth_chart_position\":\"K\",\"player_id\":\"7095\",\"birth_city\":null,\"fantasy_data_id\":22123,\"years_exp\":0,\"hashtag\":\"#AustinMacGinnis-NFL-LAR-8\",\"search_first_name\":\"austin\",\"rotowire_id\":14354,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1927,\"age\":25,\"full_name\":\"Austin MacGinnis\",\"sportradar_id\":\"7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f\",\"pandascore_id\":null,\"yahoo_id\":32667,\"last_name\":\"MacGinnis\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Pratville (AL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"austinmacginnis\",\"birth_date\":\"1995-05-04\",\"espn_id\":3053774},\"4757\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"riddick\",\"depth_chart_position\":null,\"player_id\":\"4757\",\"birth_city\":null,\"fantasy_data_id\":19676,\"years_exp\":0,\"hashtag\":\"#LouisRiddick-NFL-FA-0\",\"search_first_name\":\"louis\",\"rotowire_id\":null,\"rotoworld_id\":12141,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Louis Riddick\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Riddick\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"louisriddick\",\"birth_date\":null,\"espn_id\":null},\"5802\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Allenzae\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535319357605,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"staggers\",\"depth_chart_position\":null,\"player_id\":\"5802\",\"birth_city\":null,\"fantasy_data_id\":20699,\"years_exp\":2,\"hashtag\":\"#AllenzaeStaggers-NFL-FA-6\",\"search_first_name\":\"allenzae\",\"rotowire_id\":13397,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Allenzae Staggers\",\"sportradar_id\":\"aba5f530-5b65-4ec9-aba0-ae3a378c9ef8\",\"pandascore_id\":null,\"yahoo_id\":31797,\"last_name\":\"Staggers\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":914656,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"allenzaestaggers\",\"birth_date\":null,\"espn_id\":4039277},\"4055\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033879\",\"first_name\":\"O.J.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1601997006436,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":\"TE\",\"player_id\":\"4055\",\"birth_city\":null,\"fantasy_data_id\":18901,\"years_exp\":3,\"hashtag\":\"#OJHoward-NFL-TB-80\",\"search_first_name\":\"oj\",\"rotowire_id\":11806,\"rotoworld_id\":12161,\"active\":true,\"search_rank\":388,\"age\":26,\"full_name\":\"O.J. Howard\",\"sportradar_id\":\"93ed8c6f-b676-46d3-bf82-6155e89b4a68\",\"pandascore_id\":null,\"yahoo_id\":30132,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Autauga Academy (AL)\",\"depth_chart_order\":5,\"stats_id\":732147,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ojhoward\",\"birth_date\":\"1994-11-18\",\"espn_id\":3043080},\"2841\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"short\",\"depth_chart_position\":null,\"player_id\":\"2841\",\"birth_city\":null,\"fantasy_data_id\":17309,\"years_exp\":0,\"hashtag\":\"#KevinShort-NFL-FA-37\",\"search_first_name\":\"kevin\",\"rotowire_id\":10773,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kevin Short\",\"sportradar_id\":\"7479105a-19b0-4409-b592-f4fc0f05bfe9\",\"pandascore_id\":null,\"yahoo_id\":29160,\"last_name\":\"Short\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevinshort\",\"birth_date\":\"1992-03-23\",\"espn_id\":3039977},\"2460\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032134\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600883708509,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"uzomah\",\"depth_chart_position\":\"TE\",\"player_id\":\"2460\",\"birth_city\":null,\"fantasy_data_id\":16917,\"years_exp\":5,\"hashtag\":\"#CJUzomah-NFL-CIN-87\",\"search_first_name\":\"cj\",\"rotowire_id\":10462,\"rotoworld_id\":10534,\"active\":true,\"search_rank\":357,\"age\":27,\"full_name\":\"C.J. Uzomah\",\"sportradar_id\":\"19858900-5c8e-49a7-ab02-34ef625724ca\",\"pandascore_id\":null,\"yahoo_id\":28545,\"last_name\":\"Uzomah\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"North Gwinnett (GA)\",\"depth_chart_order\":4,\"stats_id\":593305,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"cjuzomah\",\"birth_date\":\"1993-01-14\",\"espn_id\":2574576},\"1357\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030422\",\"first_name\":\"Dion\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1588639242392,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":null,\"player_id\":\"1357\",\"birth_city\":null,\"fantasy_data_id\":14876,\"years_exp\":7,\"hashtag\":\"#DionSims-NFL-FA-88\",\"search_first_name\":\"dion\",\"rotowire_id\":8784,\"rotoworld_id\":8532,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dion Sims\",\"sportradar_id\":\"9c04a540-cb7c-41dc-8e7c-50b7af29a3a2\",\"pandascore_id\":null,\"yahoo_id\":26729,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"St. Mary's Prep (MI)\",\"depth_chart_order\":null,\"stats_id\":511525,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dionsims\",\"birth_date\":\"1991-02-18\",\"espn_id\":15974},\"6009\":{\"position\":\"CB\",\"injury_notes\":\"Miller is serving a four-game suspension for violating the NFL performance-enhancing substance policy during the 2019 season and will miss the first 3 weeks of the 2020 season.\",\"birth_country\":null,\"gsis_id\":\" 00-0035285\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604799910681,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"6009\",\"birth_city\":null,\"fantasy_data_id\":20878,\"years_exp\":1,\"hashtag\":\"#JordanMiller-NFL-ATL-28\",\"search_first_name\":\"jordan\",\"rotowire_id\":13876,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1575,\"age\":23,\"full_name\":\"Jordan Miller\",\"sportradar_id\":\"c5614795-d8e3-4104-ad9b-edfb575410bb\",\"pandascore_id\":null,\"yahoo_id\":32004,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Oceanside (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanmiller\",\"birth_date\":\"1997-02-08\",\"espn_id\":3886824},\"181\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025430\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1580756158450,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stanton\",\"depth_chart_position\":\"QB\",\"player_id\":\"181\",\"birth_city\":null,\"fantasy_data_id\":4737,\"years_exp\":13,\"hashtag\":\"#DrewStanton-NFL-FA-5\",\"search_first_name\":\"drew\",\"rotowire_id\":5251,\"rotoworld_id\":4179,\"active\":true,\"search_rank\":591,\"age\":36,\"full_name\":\"Drew Stanton\",\"sportradar_id\":\"22fb2b54-4936-4e8a-a48d-62096c0c9bb1\",\"pandascore_id\":null,\"yahoo_id\":8297,\"last_name\":\"Stanton\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Harrison (MI)\",\"depth_chart_order\":2,\"stats_id\":215910,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'3\\\"\",\"search_full_name\":\"drewstanton\",\"birth_date\":\"1984-05-07\",\"espn_id\":10487},\"6710\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035691\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567138252692,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"caldwell\",\"depth_chart_position\":\"RB\",\"player_id\":\"6710\",\"birth_city\":null,\"fantasy_data_id\":21627,\"years_exp\":1,\"hashtag\":\"#JoshCaldwell-NFL-FA-30\",\"search_first_name\":\"josh\",\"rotowire_id\":14326,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Josh Caldwell\",\"sportradar_id\":\"64602329-20b8-4690-a924-544a22bd09ae\",\"pandascore_id\":null,\"yahoo_id\":32621,\"last_name\":\"Caldwell\",\"metadata\":null,\"college\":\"Northwest Missouri State\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":1171711,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshcaldwell\",\"birth_date\":\"1996-05-28\",\"espn_id\":4426310},\"5249\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034196\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567197355020,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"levrone\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5249\",\"birth_city\":null,\"fantasy_data_id\":20240,\"years_exp\":2,\"hashtag\":\"#AndreLevrone-NFL-FA-16\",\"search_first_name\":\"andre\",\"rotowire_id\":13074,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andre Levrone\",\"sportradar_id\":\"813cde62-48b0-47a6-88bf-9feef21ea044\",\"pandascore_id\":null,\"yahoo_id\":31244,\"last_name\":\"Levrone\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":745850,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andrelevrone\",\"birth_date\":\"1995-03-09\",\"espn_id\":3048682},\"2865\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howsare\",\"depth_chart_position\":null,\"player_id\":\"2865\",\"birth_city\":null,\"fantasy_data_id\":17333,\"years_exp\":4,\"hashtag\":\"#JulianHowsare-NFL-FA-43\",\"search_first_name\":\"julian\",\"rotowire_id\":10772,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Julian Howsare\",\"sportradar_id\":\"0da48ebc-949c-427f-bdd8-eb39e55c58ec\",\"pandascore_id\":null,\"yahoo_id\":28938,\"last_name\":\"Howsare\",\"metadata\":null,\"college\":\"Clarion\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870483,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'2\\\"\",\"search_full_name\":\"julianhowsare\",\"birth_date\":\"1992-09-11\",\"espn_id\":3124451},\"6244\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035375\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603481454781,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":\"FS\",\"player_id\":\"6244\",\"birth_city\":null,\"fantasy_data_id\":21175,\"years_exp\":1,\"hashtag\":\"#BrandonWatson-NFL-JAX-40\",\"search_first_name\":\"brandon\",\"rotowire_id\":14036,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1689,\"age\":25,\"full_name\":\"Brandon Watson\",\"sportradar_id\":\"095f659a-2aaa-4961-912c-66f337755787\",\"pandascore_id\":null,\"yahoo_id\":32102,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Eastern Christian Academy (MD)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandonwatson\",\"birth_date\":\"1995-07-11\",\"espn_id\":3115968},\"5000\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034681\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606504504239,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edmonds\",\"depth_chart_position\":\"RB\",\"player_id\":\"5000\",\"birth_city\":null,\"fantasy_data_id\":19919,\"years_exp\":2,\"hashtag\":\"#ChaseEdmonds-NFL-ARI-29\",\"search_first_name\":\"chase\",\"rotowire_id\":12667,\"rotoworld_id\":13255,\"active\":true,\"search_rank\":104,\"age\":24,\"full_name\":\"Chase Edmonds\",\"sportradar_id\":\"d8d9b161-7ef4-42bf-89b7-7edf806a0ad1\",\"pandascore_id\":null,\"yahoo_id\":31104,\"last_name\":\"Edmonds\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":\"Central Dauphin East (PA)\",\"depth_chart_order\":2,\"stats_id\":832900,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'9\\\"\",\"search_full_name\":\"chaseedmonds\",\"birth_date\":\"1996-04-13\",\"espn_id\":3119195},\"6078\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"natour\",\"depth_chart_position\":null,\"player_id\":\"6078\",\"birth_city\":null,\"fantasy_data_id\":20892,\"years_exp\":0,\"hashtag\":\"#NickNatour-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nick Natour\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Natour\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"274\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nicknatour\",\"birth_date\":null,\"espn_id\":null},\"6405\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035318\",\"first_name\":\"Ken\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602718854069,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"webster\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6405\",\"birth_city\":null,\"fantasy_data_id\":21145,\"years_exp\":1,\"hashtag\":\"#KenWebster-NFL-SF-40\",\"search_first_name\":\"ken\",\"rotowire_id\":13889,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1682,\"age\":24,\"full_name\":\"Ken Webster\",\"sportradar_id\":\"b4f07920-56e3-4e9d-b787-014b2f940b0e\",\"pandascore_id\":null,\"yahoo_id\":32084,\"last_name\":\"Webster\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Stockbridge (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kenwebster\",\"birth_date\":\"1996-06-19\",\"espn_id\":3128743},\"2864\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reilly\",\"depth_chart_position\":null,\"player_id\":\"2864\",\"birth_city\":null,\"fantasy_data_id\":17332,\"years_exp\":1,\"hashtag\":\"#MikeReilly-NFL-FA-57\",\"search_first_name\":\"mike\",\"rotowire_id\":10757,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mike Reilly\",\"sportradar_id\":\"20af511b-03b7-4905-bc41-158f286b99c6\",\"pandascore_id\":null,\"yahoo_id\":29138,\"last_name\":\"Reilly\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikereilly\",\"birth_date\":\"1991-12-14\",\"espn_id\":2507413},\"2064\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031411\",\"first_name\":\"Demarcus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606076419398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawrence\",\"depth_chart_position\":\"LDE\",\"player_id\":\"2064\",\"birth_city\":null,\"fantasy_data_id\":16366,\"years_exp\":6,\"hashtag\":\"#DemarcusLawrence-NFL-DAL-90\",\"search_first_name\":\"demarcus\",\"rotowire_id\":9344,\"rotoworld_id\":9633,\"active\":true,\"search_rank\":813,\"age\":28,\"full_name\":\"Demarcus Lawrence\",\"sportradar_id\":\"3e3bd10a-6462-47f8-8938-42518781d060\",\"pandascore_id\":null,\"yahoo_id\":27562,\"last_name\":\"Lawrence\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Silver Bluff (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"demarcuslawrence\",\"birth_date\":\"1992-04-28\",\"espn_id\":16802},\"4754\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daikiel\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shortsjr\",\"depth_chart_position\":null,\"player_id\":\"4754\",\"birth_city\":null,\"fantasy_data_id\":19673,\"years_exp\":0,\"hashtag\":\"#DaikielShortsJr-NFL-BUF-0\",\"search_first_name\":\"daikiel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Daikiel Shorts Jr\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30602,\"last_name\":\"Shorts Jr\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728034,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"daikielshortsjr\",\"birth_date\":null,\"espn_id\":null},\"5049\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034782\",\"first_name\":\"Harrison\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605998408517,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":\"RDT\",\"player_id\":\"5049\",\"birth_city\":null,\"fantasy_data_id\":19900,\"years_exp\":2,\"hashtag\":\"#HarrisonPhillips-NFL-BUF-99\",\"search_first_name\":\"harrison\",\"rotowire_id\":12551,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1332,\"age\":24,\"full_name\":\"Harrison Phillips\",\"sportradar_id\":\"840b2183-02bc-4a2a-b415-c62ceecca1b2\",\"pandascore_id\":null,\"yahoo_id\":31066,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Millard West (NE)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'3\\\"\",\"search_full_name\":\"harrisonphillips\",\"birth_date\":\"1996-01-25\",\"espn_id\":3117255},\"6666\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035549\",\"first_name\":\"Noah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1570637711675,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dawkins\",\"depth_chart_position\":null,\"player_id\":\"6666\",\"birth_city\":null,\"fantasy_data_id\":21341,\"years_exp\":1,\"hashtag\":\"#NoahDawkins-NFL-NYJ-52\",\"search_first_name\":\"noah\",\"rotowire_id\":14305,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1718,\"age\":23,\"full_name\":\"Noah Dawkins\",\"sportradar_id\":\"5a79cba5-d633-4ed0-8aa7-a244060432b3\",\"pandascore_id\":null,\"yahoo_id\":32557,\"last_name\":\"Dawkins\",\"metadata\":null,\"college\":\"Citadel\",\"high_school\":\"James F. Byrnes (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"noahdawkins\",\"birth_date\":\"1997-08-13\",\"espn_id\":3911689},\"1740\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028698\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1549923003523,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":null,\"player_id\":\"1740\",\"birth_city\":null,\"fantasy_data_id\":15703,\"years_exp\":9,\"hashtag\":\"#BenJacobs-NFL-FA-53\",\"search_first_name\":\"ben\",\"rotowire_id\":7759,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ben Jacobs\",\"sportradar_id\":\"7bf442fb-62c6-4cf5-8d5d-a8ccd6daa80b\",\"pandascore_id\":null,\"yahoo_id\":25593,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Silverado (NV)\",\"depth_chart_order\":null,\"stats_id\":387834,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benjacobs\",\"birth_date\":\"1988-04-17\",\"espn_id\":14739},\"1584\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"QB\"],\"news_updated\":1507579322343,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":null,\"player_id\":\"1584\",\"birth_city\":null,\"fantasy_data_id\":15235,\"years_exp\":7,\"hashtag\":\"#BJDaniels-NFL-FA-35\",\"search_first_name\":\"bj\",\"rotowire_id\":8916,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"B.J. Daniels\",\"sportradar_id\":\"d5cd4c8a-d534-4dee-aef1-3d1f7e974b61\",\"pandascore_id\":null,\"yahoo_id\":26860,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Lincoln (FL)\",\"depth_chart_order\":null,\"stats_id\":464874,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bjdaniels\",\"birth_date\":\"1989-10-24\",\"espn_id\":15899},\"2053\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030923\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1583194845286,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"sirles\",\"depth_chart_position\":null,\"player_id\":\"2053\",\"birth_city\":null,\"fantasy_data_id\":16349,\"years_exp\":6,\"hashtag\":\"#JeremiahSirles-NFL-FA-71\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":10010,\"rotoworld_id\":9849,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jeremiah Sirles\",\"sportradar_id\":\"4a9a26fa-6a05-4c67-a023-43773a5c67f8\",\"pandascore_id\":null,\"yahoo_id\":27855,\"last_name\":\"Sirles\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Bear Creek (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jeremiahsirles\",\"birth_date\":\"1991-08-08\",\"espn_id\":17040},\"1325\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Loni\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fangupo\",\"depth_chart_position\":null,\"player_id\":\"1325\",\"birth_city\":null,\"fantasy_data_id\":14823,\"years_exp\":2,\"hashtag\":\"#LoniFangupo-NFL-FA-93\",\"search_first_name\":\"loni\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Loni Fangupo\",\"sportradar_id\":\"ebf30345-7bd7-4485-b125-747f6842f96c\",\"pandascore_id\":null,\"yahoo_id\":26485,\"last_name\":\"Fangupo\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lonifangupo\",\"birth_date\":\"1985-07-19\",\"espn_id\":15639},\"7030\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603204857124,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"toohill\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"7030\",\"birth_city\":null,\"fantasy_data_id\":22104,\"years_exp\":0,\"hashtag\":\"#CaseyToohill-NFL-WAS-95\",\"search_first_name\":\"casey\",\"rotowire_id\":14753,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1923,\"age\":24,\"full_name\":\"Casey Toohill\",\"sportradar_id\":\"8d617c67-6e6a-4afd-b5c8-f98dd744c36d\",\"pandascore_id\":null,\"yahoo_id\":32903,\"last_name\":\"Toohill\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Cathedral Catholic (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'4\\\"\",\"search_full_name\":\"caseytoohill\",\"birth_date\":\"1996-08-22\",\"espn_id\":3931408},\"4626\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033687\",\"first_name\":\"Amba\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1565735129261,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ettatawo\",\"depth_chart_position\":null,\"player_id\":\"4626\",\"birth_city\":null,\"fantasy_data_id\":19520,\"years_exp\":3,\"hashtag\":\"#AmbaEttaTawo-NFL-FA-0\",\"search_first_name\":\"amba\",\"rotowire_id\":11856,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Amba Etta-Tawo\",\"sportradar_id\":\"20943dab-1fa3-41ae-8ee2-9f54976565ab\",\"pandascore_id\":null,\"yahoo_id\":30394,\"last_name\":\"Etta-Tawo\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":695781,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ambaettatawo\",\"birth_date\":\"1993-11-10\",\"espn_id\":2976215},\"74\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022247\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1583334649910,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"FS\",\"player_id\":\"74\",\"birth_city\":null,\"fantasy_data_id\":2104,\"years_exp\":16,\"hashtag\":\"#MikeAdams-NFL-FA-27\",\"search_first_name\":\"mike\",\"rotowire_id\":4677,\"rotoworld_id\":3060,\"active\":true,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Mike Adams\",\"sportradar_id\":\"0f0ff562-af1c-4be8-8011-1f71e8441e00\",\"pandascore_id\":null,\"yahoo_id\":7121,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Passaic County Technical Institute (NJ)\",\"depth_chart_order\":2,\"stats_id\":251343,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mikeadams\",\"birth_date\":\"1981-03-24\",\"espn_id\":5893},\"3170\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033108\",\"first_name\":\"Paxton\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599342957656,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":\"QB\",\"player_id\":\"3170\",\"birth_city\":null,\"fantasy_data_id\":17929,\"years_exp\":4,\"hashtag\":\"#PaxtonLynch-NFL-FA-0\",\"search_first_name\":\"paxton\",\"rotowire_id\":10730,\"rotoworld_id\":11206,\"active\":true,\"search_rank\":949,\"age\":26,\"full_name\":\"Paxton Lynch\",\"sportradar_id\":\"19e253df-b121-43e4-a222-6df5fa8ad93f\",\"pandascore_id\":null,\"yahoo_id\":29260,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":693356,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'7\\\"\",\"search_full_name\":\"paxtonlynch\",\"birth_date\":\"1994-02-12\",\"espn_id\":2977881},\"410\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Moise\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fokou\",\"depth_chart_position\":null,\"player_id\":\"410\",\"birth_city\":null,\"fantasy_data_id\":8902,\"years_exp\":6,\"hashtag\":\"#MoiseFokou-NFL-FA-53\",\"search_first_name\":\"moise\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Moise Fokou\",\"sportradar_id\":\"bd728be0-d68c-404e-a440-0b5ff681f649\",\"pandascore_id\":null,\"yahoo_id\":9494,\"last_name\":\"Fokou\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"moisefokou\",\"birth_date\":\"1985-08-28\",\"espn_id\":12653},\"6209\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034922\",\"first_name\":\"Ishmael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599408659944,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hyman\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6209\",\"birth_city\":null,\"fantasy_data_id\":21106,\"years_exp\":1,\"hashtag\":\"#IshmaelHyman-NFL-CAR-13\",\"search_first_name\":\"ishmael\",\"rotowire_id\":13967,\"rotoworld_id\":null,\"active\":true,\"search_rank\":557,\"age\":25,\"full_name\":\"Ishmael Hyman\",\"sportradar_id\":\"634dcf96-92ca-474a-8a09-e26a12a7bafa\",\"pandascore_id\":null,\"yahoo_id\":31832,\"last_name\":\"Hyman\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"St. John Vianney (NJ)\",\"depth_chart_order\":3,\"stats_id\":739628,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ishmaelhyman\",\"birth_date\":\"1995-08-23\",\"espn_id\":3039968},\"6849\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Denzel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606581332665,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mims\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6849\",\"birth_city\":null,\"fantasy_data_id\":21741,\"years_exp\":0,\"hashtag\":\"#DenzelMims-NFL-NYJ-11\",\"search_first_name\":\"denzel\",\"rotowire_id\":14539,\"rotoworld_id\":null,\"active\":true,\"search_rank\":186,\"age\":23,\"full_name\":\"Denzel Mims\",\"sportradar_id\":\"adfc13b3-1eb6-49f3-9ba6-d4d87fd13685\",\"pandascore_id\":null,\"yahoo_id\":32729,\"last_name\":\"Mims\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Baylor\",\"high_school\":\"Daingerfield (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'3\\\"\",\"search_full_name\":\"denzelmims\",\"birth_date\":\"1997-10-10\",\"espn_id\":4035403},\"4788\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534308944053,\"status\":\"Practice Squad\",\"injury_body_part\":null,\"search_last_name\":\"riversiii\",\"depth_chart_position\":null,\"player_id\":\"4788\",\"birth_city\":null,\"fantasy_data_id\":19244,\"years_exp\":1,\"hashtag\":\"#DavidRiversIII-NFL-FA-30\",\"search_first_name\":\"david\",\"rotowire_id\":12282,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"David Rivers III\",\"sportradar_id\":\"fabca6af-000d-42a9-8a90-524f401a9774\",\"pandascore_id\":null,\"yahoo_id\":30620,\"last_name\":\"Rivers III\",\"metadata\":null,\"college\":\"Youngstown State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidriversiii\",\"birth_date\":\"1994-07-23\",\"espn_id\":null},\"4465\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donavin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525117801347,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newsom\",\"depth_chart_position\":null,\"player_id\":\"4465\",\"birth_city\":null,\"fantasy_data_id\":19331,\"years_exp\":2,\"hashtag\":\"#DonavinNewsom-NFL-FA-48\",\"search_first_name\":\"donavin\",\"rotowire_id\":12352,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Donavin Newsom\",\"sportradar_id\":\"164f6342-da6b-4006-a934-c610c4b86a34\",\"pandascore_id\":null,\"yahoo_id\":30564,\"last_name\":\"Newsom\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"donavinnewsom\",\"birth_date\":\"1993-10-13\",\"espn_id\":2971440},\"5302\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034387\",\"first_name\":\"Bilal\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603058710279,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nichols\",\"depth_chart_position\":\"NT\",\"player_id\":\"5302\",\"birth_city\":null,\"fantasy_data_id\":19930,\"years_exp\":2,\"hashtag\":\"#BilalNichols-NFL-CHI-98\",\"search_first_name\":\"bilal\",\"rotowire_id\":12711,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1349,\"age\":24,\"full_name\":\"Bilal Nichols\",\"sportradar_id\":\"0a6c2bfc-19a4-47f9-ba60-74265af6e947\",\"pandascore_id\":null,\"yahoo_id\":31115,\"last_name\":\"Nichols\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Hodgson Vo-Tech (DE)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bilalnichols\",\"birth_date\":\"1996-09-14\",\"espn_id\":3117922},\"737\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mickey\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shuler\",\"depth_chart_position\":null,\"player_id\":\"737\",\"birth_city\":null,\"fantasy_data_id\":12326,\"years_exp\":10,\"hashtag\":\"#MickeyShuler-NFL-FA-82\",\"search_first_name\":\"mickey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Mickey Shuler\",\"sportradar_id\":\"6d12dd97-454c-4b7c-a682-a57a830270c4\",\"pandascore_id\":null,\"yahoo_id\":24190,\"last_name\":\"Shuler\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"East Pennsboro (PA)\",\"depth_chart_order\":null,\"stats_id\":326851,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mickeyshuler\",\"birth_date\":\"1986-10-09\",\"espn_id\":13456},\"343\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027010\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1595951130922,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"chung\",\"depth_chart_position\":null,\"player_id\":\"343\",\"birth_city\":null,\"fantasy_data_id\":8353,\"years_exp\":11,\"hashtag\":\"#PatrickChung-NFL-NE-23\",\"search_first_name\":\"patrick\",\"rotowire_id\":6095,\"rotoworld_id\":5284,\"active\":true,\"search_rank\":594,\"age\":33,\"full_name\":\"Patrick Chung\",\"sportradar_id\":\"64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2\",\"pandascore_id\":null,\"yahoo_id\":9298,\"last_name\":\"Chung\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Oregon\",\"high_school\":\"Rancho Cucamonga (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"patrickchung\",\"birth_date\":\"1987-08-19\",\"espn_id\":12527},\"2646\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"2646\",\"birth_city\":null,\"fantasy_data_id\":17114,\"years_exp\":1,\"hashtag\":\"#CoreyCrawford-NFL-FA-95\",\"search_first_name\":\"corey\",\"rotowire_id\":10824,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Corey Crawford\",\"sportradar_id\":\"4ac2077b-8ae4-46a2-9c9b-5b7e5f603296\",\"pandascore_id\":null,\"yahoo_id\":28857,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'5\\\"\",\"search_full_name\":\"coreycrawford\",\"birth_date\":\"1991-12-01\",\"espn_id\":2576487},\"2501\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031608\",\"first_name\":\"Quandre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600706714766,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"diggs\",\"depth_chart_position\":\"FS\",\"player_id\":\"2501\",\"birth_city\":null,\"fantasy_data_id\":16960,\"years_exp\":5,\"hashtag\":\"#QuandreDiggs-NFL-SEA-37\",\"search_first_name\":\"quandre\",\"rotowire_id\":10433,\"rotoworld_id\":10574,\"active\":true,\"search_rank\":902,\"age\":27,\"full_name\":\"Quandre Diggs\",\"sportradar_id\":\"8092ffd3-3f39-43eb-a602-b14fff77d413\",\"pandascore_id\":null,\"yahoo_id\":28588,\"last_name\":\"Diggs\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Angleton (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'9\\\"\",\"search_full_name\":\"quandrediggs\",\"birth_date\":\"1993-01-22\",\"espn_id\":2577553},\"4998\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034370\",\"first_name\":\"DaeSean\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605761143798,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4998\",\"birth_city\":null,\"fantasy_data_id\":19916,\"years_exp\":2,\"hashtag\":\"#DaeSeanHamilton-NFL-DEN-17\",\"search_first_name\":\"daesean\",\"rotowire_id\":12654,\"rotoworld_id\":13174,\"active\":true,\"search_rank\":276,\"age\":25,\"full_name\":\"DaeSean Hamilton\",\"sportradar_id\":\"ccd5239f-e8ba-484c-acf5-af0bd9f6dadc\",\"pandascore_id\":null,\"yahoo_id\":31083,\"last_name\":\"Hamilton\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Penn State\",\"high_school\":\"Mountain View (VA)\",\"depth_chart_order\":2,\"stats_id\":748755,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daeseanhamilton\",\"birth_date\":\"1995-03-10\",\"espn_id\":3057987},\"636\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027378\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1563320439020,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maragos\",\"depth_chart_position\":null,\"player_id\":\"636\",\"birth_city\":null,\"fantasy_data_id\":11589,\"years_exp\":10,\"hashtag\":\"#ChrisMaragos-NFL-FA-42\",\"search_first_name\":\"chris\",\"rotowire_id\":7186,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Chris Maragos\",\"sportradar_id\":\"c5c25485-c0dc-4b5c-abe1-312fdd368637\",\"pandascore_id\":null,\"yahoo_id\":24326,\"last_name\":\"Maragos\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Horlick (WI)\",\"depth_chart_order\":null,\"stats_id\":324606,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"chrismaragos\",\"birth_date\":\"1987-01-06\",\"espn_id\":13697},\"1487\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"randle\",\"depth_chart_position\":null,\"player_id\":\"1487\",\"birth_city\":null,\"fantasy_data_id\":15085,\"years_exp\":7,\"hashtag\":\"#JosephRandle-NFL-FA-21\",\"search_first_name\":\"joseph\",\"rotowire_id\":null,\"rotoworld_id\":8395,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Joseph Randle\",\"sportradar_id\":\"dcb30c96-f1de-44be-9ef6-4b967d17eb30\",\"pandascore_id\":null,\"yahoo_id\":26774,\"last_name\":\"Randle\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Wichita Southeast (KS)\",\"depth_chart_order\":null,\"stats_id\":548226,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"josephrandle\",\"birth_date\":\"1991-12-29\",\"espn_id\":16013},\"792\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vandervelde\",\"depth_chart_position\":null,\"player_id\":\"792\",\"birth_city\":null,\"fantasy_data_id\":12718,\"years_exp\":9,\"hashtag\":\"#JulianVandervelde-NFL-FA-61\",\"search_first_name\":\"julian\",\"rotowire_id\":7586,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Julian Vandervelde\",\"sportradar_id\":\"84dd5076-eeb2-4ec4-be37-43194b37b164\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Vandervelde\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Central (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"julianvandervelde\",\"birth_date\":\"1987-10-07\",\"espn_id\":14127},\"2067\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031097\",\"first_name\":\"Terrance\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601934959911,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2067\",\"birth_city\":null,\"fantasy_data_id\":16370,\"years_exp\":6,\"hashtag\":\"#TerranceMitchell-NFL-CLE-39\",\"search_first_name\":\"terrance\",\"rotowire_id\":9332,\"rotoworld_id\":null,\"active\":true,\"search_rank\":814,\"age\":28,\"full_name\":\"Terrance Mitchell\",\"sportradar_id\":\"94f04ef5-238a-4f38-b45a-de2e7f3b9f9e\",\"pandascore_id\":null,\"yahoo_id\":27782,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Luther Burbank (CA)\",\"depth_chart_order\":1,\"stats_id\":545830,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"terrancemitchell\",\"birth_date\":\"1992-05-17\",\"espn_id\":16927},\"3798\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shahbaz\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ahmed\",\"depth_chart_position\":null,\"player_id\":\"3798\",\"birth_city\":null,\"fantasy_data_id\":18612,\"years_exp\":0,\"hashtag\":\"#ShahbazAhmed-NFL-FA-64\",\"search_first_name\":\"shahbaz\",\"rotowire_id\":11286,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Shahbaz Ahmed\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29899,\"last_name\":\"Ahmed\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shahbazahmed\",\"birth_date\":\"1994-06-14\",\"espn_id\":null},\"1088\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029316\",\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603668632310,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beachum\",\"depth_chart_position\":\"RT\",\"player_id\":\"1088\",\"birth_city\":null,\"fantasy_data_id\":13913,\"years_exp\":8,\"hashtag\":\"#KelvinBeachum-NFL-ARI-68\",\"search_first_name\":\"kelvin\",\"rotowire_id\":8243,\"rotoworld_id\":7687,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kelvin Beachum\",\"sportradar_id\":\"d96246d7-aa2c-4d05-9c58-8d6bc5e20cdf\",\"pandascore_id\":null,\"yahoo_id\":25958,\"last_name\":\"Beachum\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Mexia (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kelvinbeachum\",\"birth_date\":\"1989-06-08\",\"espn_id\":15035},\"6350\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035193\",\"first_name\":\"Parker\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baldwin\",\"depth_chart_position\":null,\"player_id\":\"6350\",\"birth_city\":null,\"fantasy_data_id\":21326,\"years_exp\":1,\"hashtag\":\"#ParkerBaldwin-NFL-FA-43\",\"search_first_name\":\"parker\",\"rotowire_id\":13922,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Parker Baldwin\",\"sportradar_id\":\"e33cf2fe-4f46-4190-8344-b8c53be1e482\",\"pandascore_id\":null,\"yahoo_id\":32108,\"last_name\":\"Baldwin\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"parkerbaldwin\",\"birth_date\":\"1997-05-06\",\"espn_id\":3921654},\"2379\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Owamagbe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1532894117210,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"odighizuwa\",\"depth_chart_position\":null,\"player_id\":\"2379\",\"birth_city\":null,\"fantasy_data_id\":16835,\"years_exp\":5,\"hashtag\":\"#OwamagbeOdighizuwa-NFL-FA-58\",\"search_first_name\":\"owamagbe\",\"rotowire_id\":10315,\"rotoworld_id\":10456,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Owamagbe Odighizuwa\",\"sportradar_id\":\"398d28eb-4f22-4021-b748-81cfc1c6b4c0\",\"pandascore_id\":null,\"yahoo_id\":28462,\"last_name\":\"Odighizuwa\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Douglas (OR)\",\"depth_chart_order\":null,\"stats_id\":553126,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'3\\\"\",\"search_full_name\":\"owamagbeodighizuwa\",\"birth_date\":\"1992-04-01\",\"espn_id\":2510866},\"3755\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ruben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"3755\",\"birth_city\":null,\"fantasy_data_id\":18567,\"years_exp\":3,\"hashtag\":\"#RubenCarter-NFL-FA-72\",\"search_first_name\":\"ruben\",\"rotowire_id\":11582,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ruben Carter\",\"sportradar_id\":\"fdbc7513-628e-4a35-bbdd-877e768d9f14\",\"pandascore_id\":null,\"yahoo_id\":29824,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rubencarter\",\"birth_date\":\"1992-12-01\",\"espn_id\":2576772},\"6946\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"6946\",\"birth_city\":null,\"fantasy_data_id\":22047,\"years_exp\":0,\"hashtag\":\"#MylesBryant-NFL-NE-41\",\"search_first_name\":\"myles\",\"rotowire_id\":14703,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1883,\"age\":22,\"full_name\":\"Myles Bryant\",\"sportradar_id\":\"7a51270b-cbdf-451e-a9e7-0f0b23435dd0\",\"pandascore_id\":null,\"yahoo_id\":33319,\"last_name\":\"Bryant\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Washington\",\"high_school\":\"Loyola (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'8\\\"\",\"search_full_name\":\"mylesbryant\",\"birth_date\":\"1998-01-02\",\"espn_id\":4039010},\"3853\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terran\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vaughn\",\"depth_chart_position\":null,\"player_id\":\"3853\",\"birth_city\":null,\"fantasy_data_id\":18674,\"years_exp\":3,\"hashtag\":\"#TerranVaughn-NFL-FA-79\",\"search_first_name\":\"terran\",\"rotowire_id\":11524,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Terran Vaughn\",\"sportradar_id\":\"0aa8970a-cf09-489b-b543-acdd71616706\",\"pandascore_id\":null,\"yahoo_id\":29979,\"last_name\":\"Vaughn\",\"metadata\":null,\"college\":\"Stephen F. Austin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"terranvaughn\",\"birth_date\":\"1994-03-30\",\"espn_id\":2974672},\"3113\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marvin\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1546286746110,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"3113\",\"birth_city\":null,\"fantasy_data_id\":17866,\"years_exp\":0,\"hashtag\":\"#MarvinLewis-NFL-FA-0\",\"search_first_name\":\"marvin\",\"rotowire_id\":null,\"rotoworld_id\":8341,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marvin Lewis\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"marvinlewis\",\"birth_date\":null,\"espn_id\":null},\"1989\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"loston\",\"depth_chart_position\":null,\"player_id\":\"1989\",\"birth_city\":null,\"fantasy_data_id\":16260,\"years_exp\":6,\"hashtag\":\"#CraigLoston-NFL-FA-20\",\"search_first_name\":\"craig\",\"rotowire_id\":9307,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Craig Loston\",\"sportradar_id\":\"4d3c00db-d2c5-46d2-981e-f5d7a7e4b353\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Loston\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Eisenhower (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"craigloston\",\"birth_date\":\"1989-12-21\",\"espn_id\":17201},\"433\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christopher\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"owens\",\"depth_chart_position\":null,\"player_id\":\"433\",\"birth_city\":null,\"fantasy_data_id\":9121,\"years_exp\":11,\"hashtag\":\"#ChristopherOwens-NFL-FA-30\",\"search_first_name\":\"christopher\",\"rotowire_id\":6228,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Christopher Owens\",\"sportradar_id\":\"42f540da-79c6-4b7a-beb6-cd1e6fccf8c5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Owens\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Dorsey (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'9\\\"\",\"search_full_name\":\"christopherowens\",\"birth_date\":\"1986-12-01\",\"espn_id\":12713},\"2463\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032135\",\"first_name\":\"Jesse\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606269055166,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":\"TE\",\"player_id\":\"2463\",\"birth_city\":null,\"fantasy_data_id\":16920,\"years_exp\":5,\"hashtag\":\"#JesseJames-NFL-DET-83\",\"search_first_name\":\"jesse\",\"rotowire_id\":10150,\"rotoworld_id\":10403,\"active\":true,\"search_rank\":503,\"age\":26,\"full_name\":\"Jesse James\",\"sportradar_id\":\"a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d\",\"pandascore_id\":null,\"yahoo_id\":28548,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"South Allegheny (PA)\",\"depth_chart_order\":2,\"stats_id\":652019,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jessejames\",\"birth_date\":\"1994-06-04\",\"espn_id\":2979590},\"1518\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030062\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605151808317,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slay\",\"depth_chart_position\":\"LCB\",\"player_id\":\"1518\",\"birth_city\":null,\"fantasy_data_id\":15127,\"years_exp\":7,\"hashtag\":\"#DariusSlay-NFL-PHI-24\",\"search_first_name\":\"darius\",\"rotowire_id\":8647,\"rotoworld_id\":8497,\"active\":true,\"search_rank\":732,\"age\":29,\"full_name\":\"Darius Slay\",\"sportradar_id\":\"2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69\",\"pandascore_id\":null,\"yahoo_id\":26659,\"last_name\":\"Slay\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Brunswick (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dariusslay\",\"birth_date\":\"1991-01-01\",\"espn_id\":15863},\"3110\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1548368726650,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harbaugh\",\"depth_chart_position\":null,\"player_id\":\"3110\",\"birth_city\":null,\"fantasy_data_id\":17863,\"years_exp\":0,\"hashtag\":\"#JohnHarbaugh-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":8338,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Harbaugh\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harbaugh\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johnharbaugh\",\"birth_date\":null,\"espn_id\":null},\"1505\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lenz\",\"depth_chart_position\":null,\"player_id\":\"1505\",\"birth_city\":null,\"fantasy_data_id\":15106,\"years_exp\":1,\"hashtag\":\"#JoshLenz-NFL-FA-19\",\"search_first_name\":\"josh\",\"rotowire_id\":9012,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Lenz\",\"sportradar_id\":\"894cc10d-3f73-43db-a418-79d2e65ece54\",\"pandascore_id\":null,\"yahoo_id\":26940,\"last_name\":\"Lenz\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":511210,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshlenz\",\"birth_date\":\"1990-09-22\",\"espn_id\":16147},\"4281\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033794\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567820123333,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carraway\",\"depth_chart_position\":\"WILL\",\"player_id\":\"4281\",\"birth_city\":null,\"fantasy_data_id\":19127,\"years_exp\":3,\"hashtag\":\"#JoshCarraway-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":11907,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Josh Carraway\",\"sportradar_id\":\"76e8187a-8262-4929-8078-36e4820c018e\",\"pandascore_id\":null,\"yahoo_id\":30340,\"last_name\":\"Carraway\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshcarraway\",\"birth_date\":\"1994-04-13\",\"espn_id\":2971565},\"1062\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeAngelo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tyson\",\"depth_chart_position\":null,\"player_id\":\"1062\",\"birth_city\":null,\"fantasy_data_id\":13857,\"years_exp\":4,\"hashtag\":\"#DeAngeloTyson-NFL-FA-94\",\"search_first_name\":\"deangelo\",\"rotowire_id\":8326,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"DeAngelo Tyson\",\"sportradar_id\":\"b55f50c2-133e-4237-95c3-3724d4b656a5\",\"pandascore_id\":null,\"yahoo_id\":25946,\"last_name\":\"Tyson\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deangelotyson\",\"birth_date\":\"1989-04-12\",\"espn_id\":15059},\"4700\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcwilson\",\"depth_chart_position\":null,\"player_id\":\"4700\",\"birth_city\":null,\"fantasy_data_id\":19604,\"years_exp\":2,\"hashtag\":\"#MarcusMcWilson-NFL-FA-28\",\"search_first_name\":\"marcus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marcus McWilson\",\"sportradar_id\":\"6987c8f7-ca39-4e93-aa9a-04484df4e225\",\"pandascore_id\":null,\"yahoo_id\":30843,\"last_name\":\"McWilson\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcusmcwilson\",\"birth_date\":\"1994-08-09\",\"espn_id\":3053776},\"3576\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032497\",\"first_name\":\"Reid\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"3576\",\"birth_city\":null,\"fantasy_data_id\":18355,\"years_exp\":4,\"hashtag\":\"#ReidFerguson-NFL-BUF-69\",\"search_first_name\":\"reid\",\"rotowire_id\":11321,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Reid Ferguson\",\"sportradar_id\":\"63ed7895-38bf-44ff-9b8a-8d5b0b5bd1eb\",\"pandascore_id\":null,\"yahoo_id\":29549,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Buford (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"reidferguson\",\"birth_date\":\"1994-03-24\",\"espn_id\":2976549},\"2801\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031511\",\"first_name\":\"DeAndrew\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598920530064,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2801\",\"birth_city\":null,\"fantasy_data_id\":17269,\"years_exp\":5,\"hashtag\":\"#DeAndrewWhite-NFL-BAL-18\",\"search_first_name\":\"deandrew\",\"rotowire_id\":10243,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"DeAndrew White\",\"sportradar_id\":\"e0abf267-f265-4682-9bb7-72bbcefda451\",\"pandascore_id\":null,\"yahoo_id\":28800,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":3,\"stats_id\":557177,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deandrewwhite\",\"birth_date\":\"1991-10-16\",\"espn_id\":2515962},\"399\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"english\",\"depth_chart_position\":null,\"player_id\":\"399\",\"birth_city\":null,\"fantasy_data_id\":8801,\"years_exp\":7,\"hashtag\":\"#LarryEnglish-NFL-FA-57\",\"search_first_name\":\"larry\",\"rotowire_id\":6059,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Larry English\",\"sportradar_id\":\"522a5940-609c-4b1f-b0eb-8654d45617f1\",\"pandascore_id\":null,\"yahoo_id\":9280,\"last_name\":\"English\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"larryenglish\",\"birth_date\":\"1986-01-22\",\"espn_id\":12434},\"3127\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"childress\",\"depth_chart_position\":null,\"player_id\":\"3127\",\"birth_city\":null,\"fantasy_data_id\":17881,\"years_exp\":0,\"hashtag\":\"#BradChildress-NFL-FA-0\",\"search_first_name\":\"brad\",\"rotowire_id\":null,\"rotoworld_id\":11244,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brad Childress\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Childress\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"bradchildress\",\"birth_date\":null,\"espn_id\":null},\"6974\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javaris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601996105487,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"6974\",\"birth_city\":null,\"fantasy_data_id\":22064,\"years_exp\":0,\"hashtag\":\"#JavarisDavis-NFL-MIA-38\",\"search_first_name\":\"javaris\",\"rotowire_id\":14721,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Javaris Davis\",\"sportradar_id\":\"f1eaad31-8784-4db3-b52d-ea0fe22761dd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Ed White (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'10\\\"\",\"search_full_name\":\"javarisdavis\",\"birth_date\":\"1996-12-26\",\"espn_id\":null},\"3851\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033005\",\"first_name\":\"Denver\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566057617327,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kirkland\",\"depth_chart_position\":null,\"player_id\":\"3851\",\"birth_city\":null,\"fantasy_data_id\":18672,\"years_exp\":4,\"hashtag\":\"#DenverKirkland-NFL-FA-79\",\"search_first_name\":\"denver\",\"rotowire_id\":11096,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Denver Kirkland\",\"sportradar_id\":\"d5ce4494-a0d8-4c70-9759-48afe6b19a7f\",\"pandascore_id\":null,\"yahoo_id\":29977,\"last_name\":\"Kirkland\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"denverkirkland\",\"birth_date\":\"1994-03-06\",\"espn_id\":3046434},\"1938\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"1938\",\"birth_city\":null,\"fantasy_data_id\":16180,\"years_exp\":2,\"hashtag\":\"#JoshStewart-NFL-FA-81\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Josh Stewart\",\"sportradar_id\":\"abae4df3-2246-4259-93a6-59244abcbacb\",\"pandascore_id\":null,\"yahoo_id\":27950,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605297,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshstewart\",\"birth_date\":\"1992-10-22\",\"espn_id\":17261},\"1460\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030577\",\"first_name\":\"Sylvester\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606080934813,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"NT\",\"player_id\":\"1460\",\"birth_city\":null,\"fantasy_data_id\":15042,\"years_exp\":7,\"hashtag\":\"#SylvesterWilliams-NFL-DEN-73\",\"search_first_name\":\"sylvester\",\"rotowire_id\":8675,\"rotoworld_id\":8432,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Sylvester Williams\",\"sportradar_id\":\"d15dacdb-17c6-4010-83d1-e332f9610422\",\"pandascore_id\":null,\"yahoo_id\":26651,\"last_name\":\"Williams\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"North Carolina\",\"high_school\":\"Jefferson City (MO)\",\"depth_chart_order\":3,\"stats_id\":592507,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sylvesterwilliams\",\"birth_date\":\"1988-11-21\",\"espn_id\":15816},\"4580\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnett\",\"depth_chart_position\":null,\"player_id\":\"4580\",\"birth_city\":null,\"fantasy_data_id\":19467,\"years_exp\":2,\"hashtag\":\"#DanteBarnett-NFL-FA-2\",\"search_first_name\":\"dante\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dante Barnett\",\"sportradar_id\":\"ab281cb3-edbc-4675-87ab-5cc3d0325745\",\"pandascore_id\":null,\"yahoo_id\":30814,\"last_name\":\"Barnett\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dantebarnett\",\"birth_date\":\"1993-06-14\",\"espn_id\":2977685},\"7381\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Niko\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lalos\",\"depth_chart_position\":null,\"player_id\":\"7381\",\"birth_city\":null,\"fantasy_data_id\":22367,\"years_exp\":0,\"hashtag\":\"#NikoLalos-NFL-NYG-79\",\"search_first_name\":\"niko\",\"rotowire_id\":15006,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Niko Lalos\",\"sportradar_id\":\"b03240e5-759e-4e09-aa70-8fabe877f322\",\"pandascore_id\":null,\"yahoo_id\":33051,\"last_name\":\"Lalos\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":\"St. Vincent-St. Mary (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nikolalos\",\"birth_date\":\"1997-06-25\",\"espn_id\":4030955},\"6179\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035240\",\"first_name\":\"Jahlani\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1593573964302,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tavai\",\"depth_chart_position\":\"MLB\",\"player_id\":\"6179\",\"birth_city\":null,\"fantasy_data_id\":20959,\"years_exp\":1,\"hashtag\":\"#JahlaniTavai-NFL-DET-51\",\"search_first_name\":\"jahlani\",\"rotowire_id\":13885,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1605,\"age\":24,\"full_name\":\"Jahlani Tavai\",\"sportradar_id\":\"dfb05fbc-7329-4893-8dc1-3d30033e49d0\",\"pandascore_id\":null,\"yahoo_id\":31875,\"last_name\":\"Tavai\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Mira Costa (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jahlanitavai\",\"birth_date\":\"1996-09-28\",\"espn_id\":3124587},\"7085\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606407058066,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coulter\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7085\",\"birth_city\":null,\"fantasy_data_id\":21967,\"years_exp\":0,\"hashtag\":\"#IsaiahCoulter-NFL-HOU-82\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14537,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Isaiah Coulter\",\"sportradar_id\":\"0063fe36-d8c2-43e6-8ab1-af890eb58cea\",\"pandascore_id\":null,\"yahoo_id\":32841,\"last_name\":\"Coulter\",\"metadata\":null,\"college\":\"Rhode Island\",\"high_school\":\"Gwynn Park (MD)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaiahcoulter\",\"birth_date\":\"1998-09-18\",\"espn_id\":4248504},\"6632\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035472\",\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"godsil\",\"depth_chart_position\":null,\"player_id\":\"6632\",\"birth_city\":null,\"fantasy_data_id\":21396,\"years_exp\":1,\"hashtag\":\"#DanGodsil-NFL-FA-0\",\"search_first_name\":\"dan\",\"rotowire_id\":13803,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dan Godsil\",\"sportradar_id\":\"009c9b30-a6de-46b6-a3c0-3f51a4fc6997\",\"pandascore_id\":null,\"yahoo_id\":32480,\"last_name\":\"Godsil\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":886968,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dangodsil\",\"birth_date\":\"1996-08-19\",\"espn_id\":3929801},\"785\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lemuel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jeanpierre\",\"depth_chart_position\":null,\"player_id\":\"785\",\"birth_city\":null,\"fantasy_data_id\":12694,\"years_exp\":10,\"hashtag\":\"#LemuelJeanpierre-NFL-FA-73\",\"search_first_name\":\"lemuel\",\"rotowire_id\":7032,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Lemuel Jeanpierre\",\"sportradar_id\":\"0ec13c88-ecfd-437b-a84a-36ce94b51a8f\",\"pandascore_id\":null,\"yahoo_id\":24239,\"last_name\":\"Jeanpierre\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Timber Creek (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lemueljeanpierre\",\"birth_date\":\"1987-05-19\",\"espn_id\":13509},\"6221\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034989\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574919948971,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"skule\",\"depth_chart_position\":\"LT\",\"player_id\":\"6221\",\"birth_city\":null,\"fantasy_data_id\":21119,\"years_exp\":1,\"hashtag\":\"#JustinSkule-NFL-SF-67\",\"search_first_name\":\"justin\",\"rotowire_id\":13679,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Justin Skule\",\"sportradar_id\":\"eb995f08-f023-4338-bc36-5def4a83f59e\",\"pandascore_id\":null,\"yahoo_id\":32015,\"last_name\":\"Skule\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Centerville (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'6\\\"\",\"search_full_name\":\"justinskule\",\"birth_date\":\"1996-11-23\",\"espn_id\":3915777},\"6630\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035162\",\"first_name\":\"Dakari\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"monroe\",\"depth_chart_position\":null,\"player_id\":\"6630\",\"birth_city\":null,\"fantasy_data_id\":21374,\"years_exp\":1,\"hashtag\":\"#DakariMonroe-NFL-FA-43\",\"search_first_name\":\"dakari\",\"rotowire_id\":14185,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dakari Monroe\",\"sportradar_id\":\"4990de3e-553a-4cae-9ce8-c3d1f4eb6bbc\",\"pandascore_id\":null,\"yahoo_id\":32365,\"last_name\":\"Monroe\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dakarimonroe\",\"birth_date\":\"1997-08-18\",\"espn_id\":3921688},\"4340\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033272\",\"first_name\":\"Ondre\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pipkins\",\"depth_chart_position\":null,\"player_id\":\"4340\",\"birth_city\":null,\"fantasy_data_id\":19196,\"years_exp\":3,\"hashtag\":\"#OndrePipkins-NFL-FA-73\",\"search_first_name\":\"ondre\",\"rotowire_id\":12523,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ondre Pipkins\",\"sportradar_id\":\"f65b58b8-8d4a-4fb7-9fbc-a755464b0958\",\"pandascore_id\":null,\"yahoo_id\":30507,\"last_name\":\"Pipkins\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ondrepipkins\",\"birth_date\":\"1994-02-25\",\"espn_id\":2977620},\"7316\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1601340312483,\"status\":\"Practice Squad\",\"injury_body_part\":null,\"search_last_name\":\"bradwell\",\"depth_chart_position\":null,\"player_id\":\"7316\",\"birth_city\":null,\"fantasy_data_id\":21826,\"years_exp\":0,\"hashtag\":\"#DariusBradwell-NFL-LAC-34\",\"search_first_name\":\"darius\",\"rotowire_id\":14919,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Darius Bradwell\",\"sportradar_id\":\"e4896d3d-7de6-4cef-b15c-dadbd16bd854\",\"pandascore_id\":null,\"yahoo_id\":32975,\"last_name\":\"Bradwell\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dariusbradwell\",\"birth_date\":\"1997-05-15\",\"espn_id\":4040640},\"2242\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030896\",\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1597686935916,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"catanzaro\",\"depth_chart_position\":\"K\",\"player_id\":\"2242\",\"birth_city\":null,\"fantasy_data_id\":16644,\"years_exp\":6,\"hashtag\":\"#ChandlerCatanzaro-NFL-FA-7\",\"search_first_name\":\"chandler\",\"rotowire_id\":9845,\"rotoworld_id\":10045,\"active\":true,\"search_rank\":841,\"age\":29,\"full_name\":\"Chandler Catanzaro\",\"sportradar_id\":\"0d1171d4-c955-4966-9257-640b569866d1\",\"pandascore_id\":null,\"yahoo_id\":28103,\"last_name\":\"Catanzaro\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Christ Church Episcopal (SC)\",\"depth_chart_order\":4,\"stats_id\":522233,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chandlercatanzaro\",\"birth_date\":\"1991-02-26\",\"espn_id\":16976},\"2746\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"halley\",\"depth_chart_position\":null,\"player_id\":\"2746\",\"birth_city\":null,\"fantasy_data_id\":17214,\"years_exp\":0,\"hashtag\":\"#JustinHalley-NFL-FA-33\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Halley\",\"sportradar_id\":\"8e6b7fc8-4783-49e5-924f-c7d70d91ad45\",\"pandascore_id\":null,\"yahoo_id\":29189,\"last_name\":\"Halley\",\"metadata\":null,\"college\":\"Florida Intl\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinhalley\",\"birth_date\":\"1992-01-11\",\"espn_id\":2519094},\"2927\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keshawn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"2927\",\"birth_city\":null,\"fantasy_data_id\":17396,\"years_exp\":null,\"hashtag\":\"#KeshawnHill-NFL-FA-0\",\"search_first_name\":\"keshawn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Keshawn Hill\",\"sportradar_id\":\"160b96da-d82c-4bb5-8315-0524266359e8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hill\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":601800,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"keshawnhill\",\"birth_date\":null,\"espn_id\":null},\"642\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027891\",\"first_name\":\"Golden\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605486313252,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tate\",\"depth_chart_position\":\"SWR\",\"player_id\":\"642\",\"birth_city\":null,\"fantasy_data_id\":11611,\"years_exp\":10,\"hashtag\":\"#GoldenTate-NFL-NYG-15\",\"search_first_name\":\"golden\",\"rotowire_id\":6389,\"rotoworld_id\":5583,\"active\":true,\"search_rank\":166,\"age\":32,\"full_name\":\"Golden Tate\",\"sportradar_id\":\"c88d9352-b835-45ed-a909-1cfec09a58bc\",\"pandascore_id\":null,\"yahoo_id\":24035,\"last_name\":\"Tate\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Pope John Paul II (TN)\",\"depth_chart_order\":1,\"stats_id\":400490,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"goldentate\",\"birth_date\":\"1988-08-02\",\"espn_id\":13217},\"4794\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"armstrongjr\",\"depth_chart_position\":null,\"player_id\":\"4794\",\"birth_city\":null,\"fantasy_data_id\":19707,\"years_exp\":null,\"hashtag\":\"#TommyArmstrongJr-NFL-FA-0\",\"search_first_name\":\"tommy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tommy Armstrong Jr.\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Armstrong Jr.\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651577,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tommyarmstrongjr\",\"birth_date\":null,\"espn_id\":null},\"1420\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daimion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stafford\",\"depth_chart_position\":null,\"player_id\":\"1420\",\"birth_city\":null,\"fantasy_data_id\":14980,\"years_exp\":7,\"hashtag\":\"#DaimionStafford-NFL-FA-24\",\"search_first_name\":\"daimion\",\"rotowire_id\":9138,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Daimion Stafford\",\"sportradar_id\":\"5f5fef98-874a-4f97-b833-272e36a850ef\",\"pandascore_id\":null,\"yahoo_id\":26871,\"last_name\":\"Stafford\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Norco (CA)\",\"depth_chart_order\":null,\"stats_id\":590834,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daimionstafford\",\"birth_date\":\"1991-02-18\",\"espn_id\":16030},\"3070\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":null,\"player_id\":\"3070\",\"birth_city\":null,\"fantasy_data_id\":17815,\"years_exp\":0,\"hashtag\":\"#RobRyan-NFL-FA-0\",\"search_first_name\":\"rob\",\"rotowire_id\":null,\"rotoworld_id\":8334,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rob Ryan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"robryan\",\"birth_date\":null,\"espn_id\":null},\"1935\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mettenberger\",\"depth_chart_position\":null,\"player_id\":\"1935\",\"birth_city\":null,\"fantasy_data_id\":16175,\"years_exp\":6,\"hashtag\":\"#ZachMettenberger-NFL-FA-18\",\"search_first_name\":\"zach\",\"rotowire_id\":9217,\"rotoworld_id\":9379,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Mettenberger\",\"sportradar_id\":\"7e655b10-5853-479c-a6de-927c4323d186\",\"pandascore_id\":null,\"yahoo_id\":27706,\"last_name\":\"Mettenberger\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Oconee County (GA)\",\"depth_chart_order\":null,\"stats_id\":495747,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zachmettenberger\",\"birth_date\":\"1991-07-16\",\"espn_id\":16814},\"2043\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carrethers\",\"depth_chart_position\":null,\"player_id\":\"2043\",\"birth_city\":null,\"fantasy_data_id\":16335,\"years_exp\":6,\"hashtag\":\"#RyanCarrethers-NFL-FA-90\",\"search_first_name\":\"ryan\",\"rotowire_id\":9399,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ryan Carrethers\",\"sportradar_id\":\"d6295fde-7c53-4b70-b924-45762e90e3c8\",\"pandascore_id\":null,\"yahoo_id\":27693,\"last_name\":\"Carrethers\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Brentwood Academy (TN)\",\"depth_chart_order\":null,\"stats_id\":499445,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryancarrethers\",\"birth_date\":\"1991-02-26\",\"espn_id\":16851},\"1892\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031301\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596654313066,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"RB\",\"player_id\":\"1892\",\"birth_city\":null,\"fantasy_data_id\":16112,\"years_exp\":6,\"hashtag\":\"#JeremyHill-NFL-FA-33\",\"search_first_name\":\"jeremy\",\"rotowire_id\":9350,\"rotoworld_id\":9409,\"active\":true,\"search_rank\":781,\"age\":27,\"full_name\":\"Jeremy Hill\",\"sportradar_id\":\"59fc3367-5514-4616-a93c-06e4365b2293\",\"pandascore_id\":null,\"yahoo_id\":27583,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Redemptorist (LA)\",\"depth_chart_order\":9,\"stats_id\":650978,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeremyhill\",\"birth_date\":\"1992-10-20\",\"espn_id\":16803},\"4414\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1525395001373,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"augusta\",\"depth_chart_position\":null,\"player_id\":\"4414\",\"birth_city\":null,\"fantasy_data_id\":19274,\"years_exp\":2,\"hashtag\":\"#JoshAugusta-NFL-FA-77\",\"search_first_name\":\"josh\",\"rotowire_id\":12420,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Josh Augusta\",\"sportradar_id\":\"473cc482-dccc-4341-8cbe-8da988423869\",\"pandascore_id\":null,\"yahoo_id\":30654,\"last_name\":\"Augusta\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"347\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshaugusta\",\"birth_date\":\"1994-08-24\",\"espn_id\":3051846},\"5396\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sergio\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baileyii\",\"depth_chart_position\":null,\"player_id\":\"5396\",\"birth_city\":null,\"fantasy_data_id\":20473,\"years_exp\":0,\"hashtag\":\"#SergioBaileyII-NFL-FA-83\",\"search_first_name\":\"sergio\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sergio Bailey II\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31253,\"last_name\":\"Bailey II\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":927071,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sergiobaileyii\",\"birth_date\":\"1991-09-07\",\"espn_id\":4039320},\"6638\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035180\",\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565138426794,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"doles\",\"depth_chart_position\":null,\"player_id\":\"6638\",\"birth_city\":null,\"fantasy_data_id\":21506,\"years_exp\":1,\"hashtag\":\"#TommyDoles-NFL-FA-71\",\"search_first_name\":\"tommy\",\"rotowire_id\":14173,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tommy Doles\",\"sportradar_id\":\"ea1c9271-d0b7-463b-a232-3cdd74b31427\",\"pandascore_id\":null,\"yahoo_id\":32373,\"last_name\":\"Doles\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tommydoles\",\"birth_date\":\"1995-12-25\",\"espn_id\":3116133},\"2195\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ball\",\"depth_chart_position\":null,\"player_id\":\"2195\",\"birth_city\":null,\"fantasy_data_id\":16566,\"years_exp\":2,\"hashtag\":\"#MarcusBall-NFL-FA-46\",\"search_first_name\":\"marcus\",\"rotowire_id\":9751,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Marcus Ball\",\"sportradar_id\":\"5350716d-4be4-4bbf-85e3-781e283cb5ad\",\"pandascore_id\":null,\"yahoo_id\":27520,\"last_name\":\"Ball\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcusball\",\"birth_date\":\"1987-07-21\",\"espn_id\":16698},\"676\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027029\",\"first_name\":\"LeSean\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606250754385,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccoy\",\"depth_chart_position\":\"RB\",\"player_id\":\"676\",\"birth_city\":null,\"fantasy_data_id\":11932,\"years_exp\":11,\"hashtag\":\"#LeSeanMcCoy-NFL-TB-25\",\"search_first_name\":\"lesean\",\"rotowire_id\":5970,\"rotoworld_id\":5168,\"active\":true,\"search_rank\":219,\"age\":32,\"full_name\":\"LeSean McCoy\",\"sportradar_id\":\"166292fc-629e-4c7b-b7bf-f572ca9eeb43\",\"pandascore_id\":null,\"yahoo_id\":9317,\"last_name\":\"McCoy\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Bishop McDevitt (PA)\",\"depth_chart_order\":3,\"stats_id\":397945,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"leseanmccoy\",\"birth_date\":\"1988-07-12\",\"espn_id\":12514},\"3115\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dowell\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1548292808756,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"loggains\",\"depth_chart_position\":null,\"player_id\":\"3115\",\"birth_city\":null,\"fantasy_data_id\":17868,\"years_exp\":0,\"hashtag\":\"#DowellLoggains-NFL-FA-0\",\"search_first_name\":\"dowell\",\"rotowire_id\":null,\"rotoworld_id\":9309,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dowell Loggains\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Loggains\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dowellloggains\",\"birth_date\":null,\"espn_id\":null},\"6432\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035103\",\"first_name\":\"Otaro\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602537952690,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"alaka\",\"depth_chart_position\":null,\"player_id\":\"6432\",\"birth_city\":null,\"fantasy_data_id\":21482,\"years_exp\":1,\"hashtag\":\"#OtaroAlaka-NFL-BAL-50\",\"search_first_name\":\"otaro\",\"rotowire_id\":13539,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1744,\"age\":24,\"full_name\":\"Otaro Alaka\",\"sportradar_id\":\"209307c5-8e39-44a6-8879-5e033e017eb4\",\"pandascore_id\":null,\"yahoo_id\":32304,\"last_name\":\"Alaka\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Cypress Falls (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"otaroalaka\",\"birth_date\":\"1996-05-18\",\"espn_id\":3122141},\"6248\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035438\",\"first_name\":\"Trevion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595795116047,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6248\",\"birth_city\":null,\"fantasy_data_id\":21179,\"years_exp\":1,\"hashtag\":\"#TrevionThompson-NFL-FA-0\",\"search_first_name\":\"trevion\",\"rotowire_id\":14000,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Trevion Thompson\",\"sportradar_id\":\"b7225517-96d9-469a-99af-cdd286144ef9\",\"pandascore_id\":null,\"yahoo_id\":32553,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":828769,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trevionthompson\",\"birth_date\":\"1995-11-14\",\"espn_id\":3122838},\"2449\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031588\",\"first_name\":\"Stefon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606497003571,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"diggs\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2449\",\"birth_city\":null,\"fantasy_data_id\":16906,\"years_exp\":5,\"hashtag\":\"#StefonDiggs-NFL-BUF-14\",\"search_first_name\":\"stefon\",\"rotowire_id\":10133,\"rotoworld_id\":10380,\"active\":true,\"search_rank\":58,\"age\":26,\"full_name\":\"Stefon Diggs\",\"sportradar_id\":\"a1c40664-b265-4083-aad2-54b4c734f2c5\",\"pandascore_id\":null,\"yahoo_id\":28534,\"last_name\":\"Diggs\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Good Counsel (MD)\",\"depth_chart_order\":1,\"stats_id\":694041,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"stefondiggs\",\"birth_date\":\"1993-11-29\",\"espn_id\":2976212},\"5958\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034926\",\"first_name\":\"Jojo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcintosh\",\"depth_chart_position\":null,\"player_id\":\"5958\",\"birth_city\":null,\"fantasy_data_id\":20872,\"years_exp\":1,\"hashtag\":\"#JojoMcIntosh-NFL-FA-32\",\"search_first_name\":\"jojo\",\"rotowire_id\":13980,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jojo McIntosh\",\"sportradar_id\":\"352d09d1-53af-4910-9f1a-5d66ad954d83\",\"pandascore_id\":null,\"yahoo_id\":32184,\"last_name\":\"McIntosh\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jojomcintosh\",\"birth_date\":\"1996-03-17\",\"espn_id\":3127305},\"6108\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacques\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599326156864,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patrick\",\"depth_chart_position\":\"RB\",\"player_id\":\"6108\",\"birth_city\":null,\"fantasy_data_id\":20906,\"years_exp\":0,\"hashtag\":\"#JacquesPatrick-NFL-CIN-31\",\"search_first_name\":\"jacques\",\"rotowire_id\":13964,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1587,\"age\":23,\"full_name\":\"Jacques Patrick\",\"sportradar_id\":\"e2f3af7f-dd17-44f2-a000-d487a29f0f03\",\"pandascore_id\":null,\"yahoo_id\":32669,\"last_name\":\"Patrick\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Timber Creek (FL)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacquespatrick\",\"birth_date\":\"1997-01-07\",\"espn_id\":3693033},\"3436\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032994\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1534308944118,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cash\",\"depth_chart_position\":\"WLB\",\"player_id\":\"3436\",\"birth_city\":null,\"fantasy_data_id\":18200,\"years_exp\":4,\"hashtag\":\"#JeremyCash-NFL-FA-52\",\"search_first_name\":\"jeremy\",\"rotowire_id\":10971,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jeremy Cash\",\"sportradar_id\":\"f6bb7c37-844c-4f68-bd90-f6bd1a8bb2fd\",\"pandascore_id\":null,\"yahoo_id\":29501,\"last_name\":\"Cash\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":593512,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeremycash\",\"birth_date\":\"1992-12-09\",\"espn_id\":2576378},\"3966\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nathaniel\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547509817758,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hackett\",\"depth_chart_position\":null,\"player_id\":\"3966\",\"birth_city\":null,\"fantasy_data_id\":18800,\"years_exp\":0,\"hashtag\":\"#NathanielHackett-NFL-FA-0\",\"search_first_name\":\"nathaniel\",\"rotowire_id\":null,\"rotoworld_id\":9474,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nathaniel Hackett\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hackett\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"nathanielhackett\",\"birth_date\":null,\"espn_id\":null},\"1359\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030484\",\"first_name\":\"Jamar\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602385209891,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1359\",\"birth_city\":null,\"fantasy_data_id\":14878,\"years_exp\":7,\"hashtag\":\"#JamarTaylor-NFL-SF-47\",\"search_first_name\":\"jamar\",\"rotowire_id\":8644,\"rotoworld_id\":8493,\"active\":true,\"search_rank\":710,\"age\":30,\"full_name\":\"Jamar Taylor\",\"sportradar_id\":\"226723b9-fddf-45ca-8245-d8cc5442c400\",\"pandascore_id\":null,\"yahoo_id\":26677,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Helix (CA)\",\"depth_chart_order\":3,\"stats_id\":449732,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jamartaylor\",\"birth_date\":\"1990-09-29\",\"espn_id\":15866},\"173\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tanner\",\"depth_chart_position\":null,\"player_id\":\"173\",\"birth_city\":null,\"fantasy_data_id\":4511,\"years_exp\":2,\"hashtag\":\"#AndyTanner-NFL-FA-14\",\"search_first_name\":\"andy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Andy Tanner\",\"sportradar_id\":\"8e96637d-627a-4e31-b738-230d8a1aed87\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tanner\",\"metadata\":null,\"college\":\"Midwestern State - TX\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":546353,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andytanner\",\"birth_date\":\"1988-05-16\",\"espn_id\":13872},\"5761\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1534091710160,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"darling\",\"depth_chart_position\":null,\"player_id\":\"5761\",\"birth_city\":null,\"fantasy_data_id\":20669,\"years_exp\":2,\"hashtag\":\"#TrevorDarling-NFL-FA-79\",\"search_first_name\":\"trevor\",\"rotowire_id\":13366,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trevor Darling\",\"sportradar_id\":\"39405e6d-2e09-475e-81ea-0a56ea487974\",\"pandascore_id\":null,\"yahoo_id\":31759,\"last_name\":\"Darling\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"trevordarling\",\"birth_date\":\"1995-05-12\",\"espn_id\":3123071},\"3758\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032620\",\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1564843557040,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hendy\",\"depth_chart_position\":null,\"player_id\":\"3758\",\"birth_city\":null,\"fantasy_data_id\":18570,\"years_exp\":4,\"hashtag\":\"#AJHendy-NFL-FA-45\",\"search_first_name\":\"aj\",\"rotowire_id\":11593,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"AJ Hendy\",\"sportradar_id\":\"9f1e4e06-a9b9-4d69-be4c-91e9841dbc44\",\"pandascore_id\":null,\"yahoo_id\":29829,\"last_name\":\"Hendy\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ajhendy\",\"birth_date\":\"1993-04-08\",\"espn_id\":2577076},\"6961\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Harrison\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604853917977,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hand\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6961\",\"birth_city\":null,\"fantasy_data_id\":22053,\"years_exp\":0,\"hashtag\":\"#HarrisonHand-NFL-MIN-38\",\"search_first_name\":\"harrison\",\"rotowire_id\":14522,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1888,\"age\":22,\"full_name\":\"Harrison Hand\",\"sportradar_id\":\"ef3475dd-30bc-4f1a-9c44-4a8ecaca476e\",\"pandascore_id\":null,\"yahoo_id\":32839,\"last_name\":\"Hand\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Cherry Hill West (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"harrisonhand\",\"birth_date\":\"1998-11-12\",\"espn_id\":4259170},\"1141\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029249\",\"first_name\":\"Melvin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606521328833,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ingram\",\"depth_chart_position\":null,\"player_id\":\"1141\",\"birth_city\":null,\"fantasy_data_id\":14128,\"years_exp\":8,\"hashtag\":\"#MelvinIngram-NFL-LAC-54\",\"search_first_name\":\"melvin\",\"rotowire_id\":8133,\"rotoworld_id\":7419,\"active\":true,\"search_rank\":674,\"age\":31,\"full_name\":\"Melvin Ingram\",\"sportradar_id\":\"2cae991f-878e-434e-9f76-fad263fad23c\",\"pandascore_id\":null,\"yahoo_id\":25728,\"last_name\":\"Ingram\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Richmond (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'2\\\"\",\"search_full_name\":\"melviningram\",\"birth_date\":\"1989-04-26\",\"espn_id\":14926},\"2675\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aundrey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"2675\",\"birth_city\":null,\"fantasy_data_id\":17143,\"years_exp\":0,\"hashtag\":\"#AundreyWalker-NFL-FA-60\",\"search_first_name\":\"aundrey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Aundrey Walker\",\"sportradar_id\":\"581be8b0-7d04-4805-95a5-872aa72f93d4\",\"pandascore_id\":null,\"yahoo_id\":28917,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aundreywalker\",\"birth_date\":\"1993-01-15\",\"espn_id\":2577270},\"5975\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035309\",\"first_name\":\"Alizé\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1588629031521,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":\"TE\",\"player_id\":\"5975\",\"birth_city\":null,\"fantasy_data_id\":20865,\"years_exp\":1,\"hashtag\":\"#AlizéMack-NFL-FA-0\",\"search_first_name\":\"alizé\",\"rotowire_id\":13527,\"rotoworld_id\":13975,\"active\":true,\"search_rank\":1571,\"age\":23,\"full_name\":\"Alizé Mack\",\"sportradar_id\":\"dbda3235-5f3a-4c16-81da-48c093ad6c85\",\"pandascore_id\":null,\"yahoo_id\":32063,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":884573,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alizémack\",\"birth_date\":\"1997-03-29\",\"espn_id\":3932433},\"3423\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032688\",\"first_name\":\"Robby\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606523127840,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3423\",\"birth_city\":null,\"fantasy_data_id\":18187,\"years_exp\":4,\"hashtag\":\"#RobbyAnderson-NFL-CAR-11\",\"search_first_name\":\"robby\",\"rotowire_id\":11191,\"rotoworld_id\":11627,\"active\":true,\"search_rank\":156,\"age\":27,\"full_name\":\"Robby Anderson\",\"sportradar_id\":\"e81fb788-1478-4936-ae12-f6ed7ec23476\",\"pandascore_id\":null,\"yahoo_id\":29785,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Plantation (FL)\",\"depth_chart_order\":1,\"stats_id\":608360,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"robbyanderson\",\"birth_date\":\"1993-05-09\",\"espn_id\":2574808},\"3354\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032897\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1603933229810,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watt\",\"depth_chart_position\":\"RB\",\"player_id\":\"3354\",\"birth_city\":null,\"fantasy_data_id\":18115,\"years_exp\":4,\"hashtag\":\"#DerekWatt-NFL-PIT-44\",\"search_first_name\":\"derek\",\"rotowire_id\":11232,\"rotoworld_id\":null,\"active\":true,\"search_rank\":478,\"age\":28,\"full_name\":\"Derek Watt\",\"sportradar_id\":\"7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4\",\"pandascore_id\":null,\"yahoo_id\":29432,\"last_name\":\"Watt\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Wisconsin\",\"high_school\":\"Pewaukee (WI)\",\"depth_chart_order\":5,\"stats_id\":606530,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"derekwatt\",\"birth_date\":\"1992-11-07\",\"espn_id\":2576450},\"7226\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598397939309,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hartsfield\",\"depth_chart_position\":\"FS\",\"player_id\":\"7226\",\"birth_city\":null,\"fantasy_data_id\":22228,\"years_exp\":0,\"hashtag\":\"#MylesHartsfield-NFL-CAR-38\",\"search_first_name\":\"myles\",\"rotowire_id\":14968,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1954,\"age\":23,\"full_name\":\"Myles Hartsfield\",\"sportradar_id\":\"87e59fe7-8744-4318-a41e-53a18d1f9647\",\"pandascore_id\":null,\"yahoo_id\":33139,\"last_name\":\"Hartsfield\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"East Coast Prep (NJ)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'11\\\"\",\"search_full_name\":\"myleshartsfield\",\"birth_date\":\"1997-08-05\",\"espn_id\":4035290},\"359\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026997\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603929629533,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":\"C\",\"player_id\":\"359\",\"birth_city\":null,\"fantasy_data_id\":8485,\"years_exp\":11,\"hashtag\":\"#AlexMack-NFL-ATL-51\",\"search_first_name\":\"alex\",\"rotowire_id\":6054,\"rotoworld_id\":5213,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Alex Mack\",\"sportradar_id\":\"7cfc5f12-e344-4a41-8f54-52a5c2bbd52d\",\"pandascore_id\":null,\"yahoo_id\":9285,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"San Marcos (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexmack\",\"birth_date\":\"1985-11-19\",\"espn_id\":12616},\"6834\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599489603007,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pinkney\",\"depth_chart_position\":\"TE\",\"player_id\":\"6834\",\"birth_city\":null,\"fantasy_data_id\":21676,\"years_exp\":0,\"hashtag\":\"#JaredPinkney-NFL-ATL-89\",\"search_first_name\":\"jared\",\"rotowire_id\":14632,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1773,\"age\":23,\"full_name\":\"Jared Pinkney\",\"sportradar_id\":\"3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8\",\"pandascore_id\":null,\"yahoo_id\":33064,\"last_name\":\"Pinkney\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jaredpinkney\",\"birth_date\":\"1997-08-21\",\"espn_id\":3915772},\"5805\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034896\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ohnesorge\",\"depth_chart_position\":null,\"player_id\":\"5805\",\"birth_city\":null,\"fantasy_data_id\":20546,\"years_exp\":2,\"hashtag\":\"#JakeOhnesorge-NFL-FA-60\",\"search_first_name\":\"jake\",\"rotowire_id\":12709,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jake Ohnesorge\",\"sportradar_id\":\"d06b5a20-97d9-477f-bd3b-bb454575c8a8\",\"pandascore_id\":null,\"yahoo_id\":31801,\"last_name\":\"Ohnesorge\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakeohnesorge\",\"birth_date\":null,\"espn_id\":3049048},\"547\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shelley\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"547\",\"birth_city\":null,\"fantasy_data_id\":11115,\"years_exp\":10,\"hashtag\":\"#ShelleySmith-NFL-FA-73\",\"search_first_name\":\"shelley\",\"rotowire_id\":6761,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Shelley Smith\",\"sportradar_id\":\"855b104f-34f9-49b9-b25a-6fa2dec18dba\",\"pandascore_id\":null,\"yahoo_id\":24163,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Westview (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"shelleysmith\",\"birth_date\":\"1987-05-21\",\"espn_id\":13460},\"5719\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034724\",\"first_name\":\"Keshun\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"freeman\",\"depth_chart_position\":null,\"player_id\":\"5719\",\"birth_city\":null,\"fantasy_data_id\":20641,\"years_exp\":2,\"hashtag\":\"#KeshunFreeman-NFL-FA-59\",\"search_first_name\":\"keshun\",\"rotowire_id\":13334,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Keshun Freeman\",\"sportradar_id\":\"90863a6a-0a66-4ad1-bb1e-13126324f644\",\"pandascore_id\":null,\"yahoo_id\":31714,\"last_name\":\"Freeman\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keshunfreeman\",\"birth_date\":\"1995-11-10\",\"espn_id\":3116620},\"5182\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034118\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604771450702,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morris\",\"depth_chart_position\":null,\"player_id\":\"5182\",\"birth_city\":null,\"fantasy_data_id\":20179,\"years_exp\":2,\"hashtag\":\"#PatrickMorris-NFL-DEN-50\",\"search_first_name\":\"patrick\",\"rotowire_id\":13104,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Patrick Morris\",\"sportradar_id\":\"dfa9fbe0-286b-456f-966e-14a9f70cb85e\",\"pandascore_id\":null,\"yahoo_id\":31413,\"last_name\":\"Morris\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas Christian\",\"high_school\":\"Guyer (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"patrickmorris\",\"birth_date\":\"1995-02-13\",\"espn_id\":3040013},\"1947\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031364\",\"first_name\":\"Jadeveon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606158613929,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"clowney\",\"depth_chart_position\":null,\"player_id\":\"1947\",\"birth_city\":null,\"fantasy_data_id\":16194,\"years_exp\":6,\"hashtag\":\"#JadeveonClowney-NFL-TEN-99\",\"search_first_name\":\"jadeveon\",\"rotowire_id\":9243,\"rotoworld_id\":8375,\"active\":true,\"search_rank\":791,\"age\":27,\"full_name\":\"Jadeveon Clowney\",\"sportradar_id\":\"016d31ec-9b32-47e2-801b-9724c0a30f62\",\"pandascore_id\":null,\"yahoo_id\":27529,\"last_name\":\"Clowney\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"South Carolina\",\"high_school\":\"South Pointe (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jadeveonclowney\",\"birth_date\":\"1993-02-14\",\"espn_id\":16734},\"3283\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033085\",\"first_name\":\"Jerald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605404160800,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"hawkins\",\"depth_chart_position\":null,\"player_id\":\"3283\",\"birth_city\":null,\"fantasy_data_id\":18044,\"years_exp\":4,\"hashtag\":\"#JeraldHawkins-NFL-PIT-65\",\"search_first_name\":\"jerald\",\"rotowire_id\":11054,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jerald Hawkins\",\"sportradar_id\":\"f3bdf34f-1424-4e26-911c-3ff45e2f7bac\",\"pandascore_id\":null,\"yahoo_id\":29357,\"last_name\":\"Hawkins\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Louisiana State\",\"high_school\":\"West St. Mary (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jeraldhawkins\",\"birth_date\":\"1993-10-16\",\"espn_id\":2976554},\"4115\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033909\",\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605562219681,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elflein\",\"depth_chart_position\":\"RG\",\"player_id\":\"4115\",\"birth_city\":null,\"fantasy_data_id\":18961,\"years_exp\":3,\"hashtag\":\"#PatElflein-NFL-NYJ-65\",\"search_first_name\":\"pat\",\"rotowire_id\":11791,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Pat Elflein\",\"sportradar_id\":\"f9d87dfe-4a57-482a-a77f-37906daa4382\",\"pandascore_id\":null,\"yahoo_id\":30183,\"last_name\":\"Elflein\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Pickerington North (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'3\\\"\",\"search_full_name\":\"patelflein\",\"birth_date\":\"1994-07-06\",\"espn_id\":2976295},\"3450\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devaunte\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sigler\",\"depth_chart_position\":null,\"player_id\":\"3450\",\"birth_city\":null,\"fantasy_data_id\":18214,\"years_exp\":0,\"hashtag\":\"#DevaunteSigler-NFL-FA-61\",\"search_first_name\":\"devaunte\",\"rotowire_id\":11173,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Devaunte Sigler\",\"sportradar_id\":\"94dda84d-63bf-4bc3-91f3-a2c7f5d12cff\",\"pandascore_id\":null,\"yahoo_id\":29497,\"last_name\":\"Sigler\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"devauntesigler\",\"birth_date\":\"1992-05-02\",\"espn_id\":2574581},\"4635\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033760\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1570125325050,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"RB\",\"player_id\":\"4635\",\"birth_city\":null,\"fantasy_data_id\":19529,\"years_exp\":3,\"hashtag\":\"#JustinDavis-NFL-FA-39\",\"search_first_name\":\"justin\",\"rotowire_id\":11759,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Justin Davis\",\"sportradar_id\":\"b9b88174-d790-4ff2-85cd-fdbfa03405f6\",\"pandascore_id\":null,\"yahoo_id\":30370,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":727852,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justindavis\",\"birth_date\":\"1995-11-11\",\"espn_id\":3043216},\"2134\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031058\",\"first_name\":\"Carl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bradford\",\"depth_chart_position\":null,\"player_id\":\"2134\",\"birth_city\":null,\"fantasy_data_id\":16471,\"years_exp\":5,\"hashtag\":\"#CarlBradford-NFL-FA-53\",\"search_first_name\":\"carl\",\"rotowire_id\":9354,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Carl Bradford\",\"sportradar_id\":\"4bbe4348-4fe2-4787-a6c4-fd2a9ff76bac\",\"pandascore_id\":null,\"yahoo_id\":27649,\"last_name\":\"Bradford\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553045,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"carlbradford\",\"birth_date\":\"1992-08-15\",\"espn_id\":16926},\"782\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tukuafu\",\"depth_chart_position\":null,\"player_id\":\"782\",\"birth_city\":null,\"fantasy_data_id\":12649,\"years_exp\":10,\"hashtag\":\"#WillTukuafu-NFL-FA-46\",\"search_first_name\":\"will\",\"rotowire_id\":7807,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Will Tukuafu\",\"sportradar_id\":\"d5c5d235-d21b-46e0-b731-320203a64b5a\",\"pandascore_id\":null,\"yahoo_id\":24735,\"last_name\":\"Tukuafu\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Salt Lake City East (UT)\",\"depth_chart_order\":null,\"stats_id\":401830,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'2\\\"\",\"search_full_name\":\"willtukuafu\",\"birth_date\":\"1984-01-03\",\"espn_id\":13913},\"4016\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bill\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"belichick\",\"depth_chart_position\":null,\"player_id\":\"4016\",\"birth_city\":null,\"fantasy_data_id\":18856,\"years_exp\":0,\"hashtag\":\"#BillBelichick-NFL-FA-0\",\"search_first_name\":\"bill\",\"rotowire_id\":null,\"rotoworld_id\":8354,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bill Belichick\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Belichick\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"billbelichick\",\"birth_date\":null,\"espn_id\":null},\"6995\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587852646023,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"DT\",\"player_id\":\"6995\",\"birth_city\":null,\"fantasy_data_id\":22067,\"years_exp\":0,\"hashtag\":\"#CarlosDavis-NFL-PIT-73\",\"search_first_name\":\"carlos\",\"rotowire_id\":14681,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1900,\"age\":24,\"full_name\":\"Carlos Davis\",\"sportradar_id\":\"1dada1ff-5475-425e-8f38-0728d50c91c5\",\"pandascore_id\":null,\"yahoo_id\":32902,\"last_name\":\"Davis\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Nebraska\",\"high_school\":\"Blue Springs (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'2\\\"\",\"search_full_name\":\"carlosdavis\",\"birth_date\":\"1996-08-22\",\"espn_id\":3699462},\"2805\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":null,\"player_id\":\"2805\",\"birth_city\":null,\"fantasy_data_id\":17273,\"years_exp\":1,\"hashtag\":\"#DeonLong-NFL-FA-18\",\"search_first_name\":\"deon\",\"rotowire_id\":10237,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Deon Long\",\"sportradar_id\":\"36382e73-e545-4fe3-a4ae-bf475f85712a\",\"pandascore_id\":null,\"yahoo_id\":29052,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":543559,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deonlong\",\"birth_date\":\"1991-06-14\",\"espn_id\":2514423},\"4201\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033575\",\"first_name\":\"Treston\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1541795417630,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"decoud\",\"depth_chart_position\":null,\"player_id\":\"4201\",\"birth_city\":null,\"fantasy_data_id\":19047,\"years_exp\":3,\"hashtag\":\"#TrestonDecoud-NFL-FA-34\",\"search_first_name\":\"treston\",\"rotowire_id\":12012,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Treston Decoud\",\"sportradar_id\":\"ae269fa8-85d9-4d95-b0e2-6d0451dd9425\",\"pandascore_id\":null,\"yahoo_id\":30282,\"last_name\":\"Decoud\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":702498,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trestondecoud\",\"birth_date\":\"1993-08-01\",\"espn_id\":2985844},\"3889\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033087\",\"first_name\":\"Marquis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515437401529,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bundy\",\"depth_chart_position\":null,\"player_id\":\"3889\",\"birth_city\":null,\"fantasy_data_id\":18711,\"years_exp\":4,\"hashtag\":\"#MarquisBundy-NFL-FA-86\",\"search_first_name\":\"marquis\",\"rotowire_id\":11649,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marquis Bundy\",\"sportradar_id\":\"032fda0b-de60-41fe-bb23-acef1123c7d5\",\"pandascore_id\":null,\"yahoo_id\":30019,\"last_name\":\"Bundy\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693004,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marquisbundy\",\"birth_date\":\"1994-08-05\",\"espn_id\":2974198},\"6579\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035172\",\"first_name\":\"Shakial\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598406039810,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"6579\",\"birth_city\":null,\"fantasy_data_id\":21346,\"years_exp\":1,\"hashtag\":\"#ShakialTaylor-NFL-NYG-38\",\"search_first_name\":\"shakial\",\"rotowire_id\":14162,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1719,\"age\":23,\"full_name\":\"Shakial Taylor\",\"sportradar_id\":\"1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb\",\"pandascore_id\":null,\"yahoo_id\":32371,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Chaparral (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'11\\\"\",\"search_full_name\":\"shakialtaylor\",\"birth_date\":\"1996-12-27\",\"espn_id\":3935064},\"7223\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597713013156,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferris\",\"depth_chart_position\":null,\"player_id\":\"7223\",\"birth_city\":null,\"fantasy_data_id\":22225,\"years_exp\":0,\"hashtag\":\"#JasonFerris-NFL-FA-0\",\"search_first_name\":\"jason\",\"rotowire_id\":14967,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jason Ferris\",\"sportradar_id\":\"afe42690-dd63-46d2-8246-fa5346a7040f\",\"pandascore_id\":null,\"yahoo_id\":33136,\"last_name\":\"Ferris\",\"metadata\":null,\"college\":\"Montana Western\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jasonferris\",\"birth_date\":\"1996-07-23\",\"espn_id\":null},\"68\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manningham\",\"depth_chart_position\":null,\"player_id\":\"68\",\"birth_city\":null,\"fantasy_data_id\":1904,\"years_exp\":7,\"hashtag\":\"#MarioManningham-NFL-FA-86\",\"search_first_name\":\"mario\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mario Manningham\",\"sportradar_id\":\"21d172c4-1c74-44b8-9131-aee05a2beb60\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manningham\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mariomanningham\",\"birth_date\":\"1986-05-25\",\"espn_id\":null},\"1854\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031023\",\"first_name\":\"Quincy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596486905590,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"enunwa\",\"depth_chart_position\":\"SWR\",\"player_id\":\"1854\",\"birth_city\":null,\"fantasy_data_id\":16063,\"years_exp\":6,\"hashtag\":\"#QuincyEnunwa-NFL-FA-81\",\"search_first_name\":\"quincy\",\"rotowire_id\":9476,\"rotoworld_id\":9610,\"active\":true,\"search_rank\":774,\"age\":28,\"full_name\":\"Quincy Enunwa\",\"sportradar_id\":\"0adf5b2c-35bd-41f2-8e73-3dad53454d78\",\"pandascore_id\":null,\"yahoo_id\":27737,\"last_name\":\"Enunwa\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Rancho Verde (CA)\",\"depth_chart_order\":4,\"stats_id\":540619,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quincyenunwa\",\"birth_date\":\"1992-05-31\",\"espn_id\":16899},\"5721\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034721\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1591383623645,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bojorquez\",\"depth_chart_position\":null,\"player_id\":\"5721\",\"birth_city\":null,\"fantasy_data_id\":20512,\"years_exp\":2,\"hashtag\":\"#CoreyBojorquez-NFL-BUF-9\",\"search_first_name\":\"corey\",\"rotowire_id\":13323,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Corey Bojorquez\",\"sportradar_id\":\"1073ac8d-d12f-4ad0-845d-5351503931bd\",\"pandascore_id\":null,\"yahoo_id\":31727,\"last_name\":\"Bojorquez\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":\"Mayfair (CA)\",\"depth_chart_order\":null,\"stats_id\":912096,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"coreybojorquez\",\"birth_date\":\"1996-09-13\",\"espn_id\":4039396},\"3897\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lang\",\"depth_chart_position\":null,\"player_id\":\"3897\",\"birth_city\":null,\"fantasy_data_id\":18720,\"years_exp\":0,\"hashtag\":\"#PaulLang-NFL-FA-87\",\"search_first_name\":\"paul\",\"rotowire_id\":11632,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Paul Lang\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30027,\"last_name\":\"Lang\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606113,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"paullang\",\"birth_date\":\"1992-05-24\",\"espn_id\":2576272},\"5528\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034255\",\"first_name\":\"Montrel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1601419546516,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"meander\",\"depth_chart_position\":null,\"player_id\":\"5528\",\"birth_city\":null,\"fantasy_data_id\":20059,\"years_exp\":2,\"hashtag\":\"#MontrelMeander-NFL-CLE-41\",\"search_first_name\":\"montrel\",\"rotowire_id\":13145,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1407,\"age\":26,\"full_name\":\"Montrel Meander\",\"sportradar_id\":\"7ca273b2-a4bc-44c4-a670-98d86942adb5\",\"pandascore_id\":null,\"yahoo_id\":31459,\"last_name\":\"Meander\",\"metadata\":null,\"college\":\"Grambling\",\"high_school\":\"Palo Duro (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"montrelmeander\",\"birth_date\":\"1994-09-20\",\"espn_id\":3046700},\"1827\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arthur\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":null,\"player_id\":\"1827\",\"birth_city\":null,\"fantasy_data_id\":16022,\"years_exp\":1,\"hashtag\":\"#ArthurLynch-NFL-FA-49\",\"search_first_name\":\"arthur\",\"rotowire_id\":9554,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Arthur Lynch\",\"sportradar_id\":\"d0f4d73c-8b50-4087-b66c-313b23f15a02\",\"pandascore_id\":null,\"yahoo_id\":27683,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":512120,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'5\\\"\",\"search_full_name\":\"arthurlynch\",\"birth_date\":\"1990-06-17\",\"espn_id\":16844},\"1585\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1558108856157,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dial\",\"depth_chart_position\":null,\"player_id\":\"1585\",\"birth_city\":null,\"fantasy_data_id\":15236,\"years_exp\":7,\"hashtag\":\"#QuintonDial-NFL-FA-91\",\"search_first_name\":\"quinton\",\"rotowire_id\":8944,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Quinton Dial\",\"sportradar_id\":\"2d915e15-6716-436d-b5fa-6b77d28b0982\",\"pandascore_id\":null,\"yahoo_id\":26780,\"last_name\":\"Dial\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Clay-Chalkville (AL)\",\"depth_chart_order\":null,\"stats_id\":593209,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"quintondial\",\"birth_date\":\"1990-07-21\",\"espn_id\":16028},\"7249\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Solomon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ajayi\",\"depth_chart_position\":null,\"player_id\":\"7249\",\"birth_city\":null,\"fantasy_data_id\":22249,\"years_exp\":0,\"hashtag\":\"#SolomonAjayi-NFL-FA-0\",\"search_first_name\":\"solomon\",\"rotowire_id\":15131,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1957,\"age\":23,\"full_name\":\"Solomon Ajayi\",\"sportradar_id\":\"2b604cd5-2ed5-41ab-864b-3e527c922c11\",\"pandascore_id\":null,\"yahoo_id\":33300,\"last_name\":\"Ajayi\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'0\\\"\",\"search_full_name\":\"solomonajayi\",\"birth_date\":\"1997-07-16\",\"espn_id\":4246885},\"6150\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035245\",\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605061202398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scharping\",\"depth_chart_position\":\"LG\",\"player_id\":\"6150\",\"birth_city\":null,\"fantasy_data_id\":20936,\"years_exp\":1,\"hashtag\":\"#MaxScharping-NFL-HOU-74\",\"search_first_name\":\"max\",\"rotowire_id\":13811,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Max Scharping\",\"sportradar_id\":\"bb5156b6-adca-425c-b336-54507cdd0cf8\",\"pandascore_id\":null,\"yahoo_id\":31887,\"last_name\":\"Scharping\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Green Bay Southwest (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"maxscharping\",\"birth_date\":\"1996-08-10\",\"espn_id\":3126035},\"5567\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034307\",\"first_name\":\"Janarion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1537901103250,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grant\",\"depth_chart_position\":null,\"player_id\":\"5567\",\"birth_city\":null,\"fantasy_data_id\":20585,\"years_exp\":2,\"hashtag\":\"#JanarionGrant-NFL-FA-84\",\"search_first_name\":\"janarion\",\"rotowire_id\":12760,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Janarion Grant\",\"sportradar_id\":\"393cdcc9-20ec-4d07-b8bf-6848398b6ab8\",\"pandascore_id\":null,\"yahoo_id\":31506,\"last_name\":\"Grant\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746179,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'10\\\"\",\"search_full_name\":\"janariongrant\",\"birth_date\":\"1993-11-20\",\"espn_id\":3047490},\"852\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shiloh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keo\",\"depth_chart_position\":null,\"player_id\":\"852\",\"birth_city\":null,\"fantasy_data_id\":12943,\"years_exp\":9,\"hashtag\":\"#ShilohKeo-NFL-FA-49\",\"search_first_name\":\"shiloh\",\"rotowire_id\":7536,\"rotoworld_id\":6655,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Shiloh Keo\",\"sportradar_id\":\"a1a28375-1dcf-43d5-974f-bd6b42d05875\",\"pandascore_id\":null,\"yahoo_id\":24931,\"last_name\":\"Keo\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Archbishop Murphy (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"shilohkeo\",\"birth_date\":\"1987-12-17\",\"espn_id\":14122},\"6423\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035423\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567172451960,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wise\",\"depth_chart_position\":null,\"player_id\":\"6423\",\"birth_city\":null,\"fantasy_data_id\":21444,\"years_exp\":1,\"hashtag\":\"#DanielWise-NFL-ARI-64\",\"search_first_name\":\"daniel\",\"rotowire_id\":13625,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Daniel Wise\",\"sportradar_id\":\"39e4f09f-54bd-4d2c-9d71-c6e35d1bd0b0\",\"pandascore_id\":null,\"yahoo_id\":32198,\"last_name\":\"Wise\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Hebron (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danielwise\",\"birth_date\":\"1996-01-16\",\"espn_id\":3133368},\"2458\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Karlos\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1550761846675,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2458\",\"birth_city\":null,\"fantasy_data_id\":16915,\"years_exp\":5,\"hashtag\":\"#KarlosWilliams-NFL-FA-29\",\"search_first_name\":\"karlos\",\"rotowire_id\":10184,\"rotoworld_id\":10532,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Karlos Williams\",\"sportradar_id\":\"4fca6010-11b6-4052-a097-8728c6174a08\",\"pandascore_id\":null,\"yahoo_id\":28543,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Ridge Community\",\"depth_chart_order\":null,\"stats_id\":605426,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"karloswilliams\",\"birth_date\":\"1993-05-04\",\"espn_id\":2576817},\"4872\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"caserio\",\"depth_chart_position\":null,\"player_id\":\"4872\",\"birth_city\":null,\"fantasy_data_id\":19773,\"years_exp\":0,\"hashtag\":\"#NickCaserio-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":null,\"rotoworld_id\":10290,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nick Caserio\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Caserio\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"nickcaserio\",\"birth_date\":null,\"espn_id\":null},\"3368\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032441\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1563425454237,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burbridge\",\"depth_chart_position\":null,\"player_id\":\"3368\",\"birth_city\":null,\"fantasy_data_id\":18129,\"years_exp\":4,\"hashtag\":\"#AaronBurbridge-NFL-FA-13\",\"search_first_name\":\"aaron\",\"rotowire_id\":10927,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Aaron Burbridge\",\"sportradar_id\":\"fcf3d16b-4cfa-4fd4-87c6-979b5a43c36f\",\"pandascore_id\":null,\"yahoo_id\":29447,\"last_name\":\"Burbridge\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696157,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"aaronburbridge\",\"birth_date\":\"1993-12-23\",\"espn_id\":2979533},\"7098\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ty'Son\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599702344229,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7098\",\"birth_city\":null,\"fantasy_data_id\":22126,\"years_exp\":0,\"hashtag\":\"#TySonWilliams-NFL-BAL-34\",\"search_first_name\":\"tyson\",\"rotowire_id\":14404,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ty'Son Williams\",\"sportradar_id\":\"9e31f935-1e60-437d-9859-e1f2bb936aa5\",\"pandascore_id\":null,\"yahoo_id\":33006,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Crestwood (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tysonwilliams\",\"birth_date\":\"1996-09-04\",\"espn_id\":null},\"6042\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035088\",\"first_name\":\"Davante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1574206250534,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"6042\",\"birth_city\":null,\"fantasy_data_id\":21058,\"years_exp\":1,\"hashtag\":\"#DavanteDavis-NFL-FA-22\",\"search_first_name\":\"davante\",\"rotowire_id\":13849,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Davante Davis\",\"sportradar_id\":\"0553c32c-4b9d-4ea9-811d-6d58c1985c9b\",\"pandascore_id\":null,\"yahoo_id\":32331,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davantedavis\",\"birth_date\":\"1995-09-26\",\"espn_id\":3929849},\"6337\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035451\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dwight\",\"depth_chart_position\":null,\"player_id\":\"6337\",\"birth_city\":null,\"fantasy_data_id\":21244,\"years_exp\":1,\"hashtag\":\"#JohnnyDwight-NFL-FA-95\",\"search_first_name\":\"johnny\",\"rotowire_id\":14217,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Johnny Dwight\",\"sportradar_id\":\"b6086d5d-4976-43ed-b5e5-56a0251a8e30\",\"pandascore_id\":null,\"yahoo_id\":32505,\"last_name\":\"Dwight\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnnydwight\",\"birth_date\":\"1995-03-22\",\"espn_id\":3126348},\"4232\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033596\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1574206850720,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dayes\",\"depth_chart_position\":null,\"player_id\":\"4232\",\"birth_city\":null,\"fantasy_data_id\":19078,\"years_exp\":3,\"hashtag\":\"#MattDayes-NFL-FA-30\",\"search_first_name\":\"matt\",\"rotowire_id\":11760,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Matt Dayes\",\"sportradar_id\":\"cee77408-f330-4a16-bb6f-dead52f9291f\",\"pandascore_id\":null,\"yahoo_id\":30365,\"last_name\":\"Dayes\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742359,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'9\\\"\",\"search_full_name\":\"mattdayes\",\"birth_date\":\"1994-09-03\",\"espn_id\":3051711},\"6681\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035582\",\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mayfield\",\"depth_chart_position\":null,\"player_id\":\"6681\",\"birth_city\":null,\"fantasy_data_id\":21580,\"years_exp\":1,\"hashtag\":\"#RileyMayfield-NFL-FA-75\",\"search_first_name\":\"riley\",\"rotowire_id\":14240,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Riley Mayfield\",\"sportradar_id\":\"9aa9d930-6ab7-4ba0-b6be-69f50497d8e1\",\"pandascore_id\":null,\"yahoo_id\":32587,\"last_name\":\"Mayfield\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'7\\\"\",\"search_full_name\":\"rileymayfield\",\"birth_date\":\"1995-04-01\",\"espn_id\":3055604},\"198\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kellen\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1515170401219,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clemens\",\"depth_chart_position\":null,\"player_id\":\"198\",\"birth_city\":null,\"fantasy_data_id\":5054,\"years_exp\":14,\"hashtag\":\"#KellenClemens-NFL-FA-10\",\"search_first_name\":\"kellen\",\"rotowire_id\":4827,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Kellen Clemens\",\"sportradar_id\":\"da2d3510-355a-4a0d-a79d-bd96b4cfcecb\",\"pandascore_id\":null,\"yahoo_id\":7798,\"last_name\":\"Clemens\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Burns (OR)\",\"depth_chart_order\":null,\"stats_id\":167415,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kellenclemens\",\"birth_date\":\"1983-06-06\",\"espn_id\":9635},\"6743\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035744\",\"first_name\":\"Quart'e\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sapp\",\"depth_chart_position\":null,\"player_id\":\"6743\",\"birth_city\":null,\"fantasy_data_id\":21357,\"years_exp\":1,\"hashtag\":\"#QuarteSapp-NFL-FA-40\",\"search_first_name\":\"quarte\",\"rotowire_id\":13457,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Quart'e Sapp\",\"sportradar_id\":\"671f58ec-970c-4ccd-bfcc-115cecc3f189\",\"pandascore_id\":null,\"yahoo_id\":32651,\"last_name\":\"Sapp\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quartesapp\",\"birth_date\":\"1997-03-08\",\"espn_id\":3915393},\"1684\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030300\",\"first_name\":\"Jaron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602620149319,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1684\",\"birth_city\":null,\"fantasy_data_id\":15509,\"years_exp\":7,\"hashtag\":\"#JaronBrown-NFL-ARI-18\",\"search_first_name\":\"jaron\",\"rotowire_id\":9046,\"rotoworld_id\":8869,\"active\":true,\"search_rank\":763,\"age\":30,\"full_name\":\"Jaron Brown\",\"sportradar_id\":\"51952c7b-11c5-4229-baf9-08d4694cc2ad\",\"pandascore_id\":null,\"yahoo_id\":27074,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Cheraw (SC)\",\"depth_chart_order\":4,\"stats_id\":463514,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jaronbrown\",\"birth_date\":\"1990-01-08\",\"espn_id\":16172},\"4895\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lamar\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1529019001783,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"atkins\",\"depth_chart_position\":null,\"player_id\":\"4895\",\"birth_city\":null,\"fantasy_data_id\":19793,\"years_exp\":1,\"hashtag\":\"#LamarAtkins-NFL-JAX-45\",\"search_first_name\":\"lamar\",\"rotowire_id\":12875,\"rotoworld_id\":null,\"active\":true,\"search_rank\":919,\"age\":25,\"full_name\":\"Lamar Atkins\",\"sportradar_id\":\"b33f60c3-db65-415d-a93c-272f6ad80d23\",\"pandascore_id\":null,\"yahoo_id\":30964,\"last_name\":\"Atkins\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692168,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lamaratkins\",\"birth_date\":\"1994-02-25\",\"espn_id\":2970192},\"5560\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034237\",\"first_name\":\"Khalid\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1538524502827,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"5560\",\"birth_city\":null,\"fantasy_data_id\":20568,\"years_exp\":2,\"hashtag\":\"#KhalidHill-NFL-FA-40\",\"search_first_name\":\"khalid\",\"rotowire_id\":13161,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Khalid Hill\",\"sportradar_id\":\"cdbe5207-fdbe-42f0-a536-bed784aa9cea\",\"pandascore_id\":null,\"yahoo_id\":31467,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740755,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'2\\\"\",\"search_full_name\":\"khalidhill\",\"birth_date\":\"1995-06-04\",\"espn_id\":3045222},\"4438\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javarius\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532618101315,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leamon\",\"depth_chart_position\":null,\"player_id\":\"4438\",\"birth_city\":null,\"fantasy_data_id\":19299,\"years_exp\":3,\"hashtag\":\"#JavariusLeamon-NFL-FA-79\",\"search_first_name\":\"javarius\",\"rotowire_id\":11802,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Javarius Leamon\",\"sportradar_id\":\"4ec283bc-2bab-40f4-bd74-f113c4102d49\",\"pandascore_id\":null,\"yahoo_id\":30574,\"last_name\":\"Leamon\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'7\\\"\",\"search_full_name\":\"javariusleamon\",\"birth_date\":\"1993-04-16\",\"espn_id\":3056369},\"479\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"parmele\",\"depth_chart_position\":null,\"player_id\":\"479\",\"birth_city\":null,\"fantasy_data_id\":9792,\"years_exp\":4,\"hashtag\":\"#JalenParmele-NFL-FA-34\",\"search_first_name\":\"jalen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jalen Parmele\",\"sportradar_id\":\"7ed08b41-918b-4d0b-a858-a6adc08a529c\",\"pandascore_id\":null,\"yahoo_id\":8953,\"last_name\":\"Parmele\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jalenparmele\",\"birth_date\":\"1985-12-30\",\"espn_id\":11410},\"913\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028202\",\"first_name\":\"Shaun\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1508201221998,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"draughn\",\"depth_chart_position\":null,\"player_id\":\"913\",\"birth_city\":null,\"fantasy_data_id\":13158,\"years_exp\":9,\"hashtag\":\"#ShaunDraughn-NFL-FA-25\",\"search_first_name\":\"shaun\",\"rotowire_id\":8022,\"rotoworld_id\":7197,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Shaun Draughn\",\"sportradar_id\":\"bcce08ec-736e-40c1-bb8d-ebe2d489f331\",\"pandascore_id\":null,\"yahoo_id\":25481,\"last_name\":\"Draughn\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Tarboro (NC)\",\"depth_chart_order\":null,\"stats_id\":323336,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"shaundraughn\",\"birth_date\":\"1987-12-07\",\"espn_id\":14518},\"6792\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606520428647,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kinlaw\",\"depth_chart_position\":\"LDT\",\"player_id\":\"6792\",\"birth_city\":null,\"fantasy_data_id\":21867,\"years_exp\":0,\"hashtag\":\"#JavonKinlaw-NFL-SF-99\",\"search_first_name\":\"javon\",\"rotowire_id\":14444,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1796,\"age\":23,\"full_name\":\"Javon Kinlaw\",\"sportradar_id\":\"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c\",\"pandascore_id\":null,\"yahoo_id\":32684,\"last_name\":\"Kinlaw\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Goose Creek (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"javonkinlaw\",\"birth_date\":\"1997-10-03\",\"espn_id\":4259491},\"1525\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030090\",\"first_name\":\"Micah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605469512299,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hyde\",\"depth_chart_position\":\"FS\",\"player_id\":\"1525\",\"birth_city\":null,\"fantasy_data_id\":15136,\"years_exp\":7,\"hashtag\":\"#MicahHyde-NFL-BUF-23\",\"search_first_name\":\"micah\",\"rotowire_id\":8892,\"rotoworld_id\":8568,\"active\":true,\"search_rank\":733,\"age\":29,\"full_name\":\"Micah Hyde\",\"sportradar_id\":\"e030ef2b-1dcc-4c66-b8de-0016ca0d52d2\",\"pandascore_id\":null,\"yahoo_id\":26782,\"last_name\":\"Hyde\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Fostoria (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"micahhyde\",\"birth_date\":\"1990-12-31\",\"espn_id\":15960},\"2344\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031551\",\"first_name\":\"Eddie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1595948731853,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"goldman\",\"depth_chart_position\":null,\"player_id\":\"2344\",\"birth_city\":null,\"fantasy_data_id\":16800,\"years_exp\":5,\"hashtag\":\"#EddieGoldman-NFL-CHI-91\",\"search_first_name\":\"eddie\",\"rotowire_id\":10067,\"rotoworld_id\":null,\"active\":true,\"search_rank\":865,\"age\":26,\"full_name\":\"Eddie Goldman\",\"sportradar_id\":\"881eb214-c981-46c0-a0cf-34023e773754\",\"pandascore_id\":null,\"yahoo_id\":28427,\"last_name\":\"Goldman\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Friendship Collegiate Academy (DC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eddiegoldman\",\"birth_date\":\"1994-01-06\",\"espn_id\":2969924},\"1582\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030457\",\"first_name\":\"Cornellius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1569350442771,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carradine\",\"depth_chart_position\":null,\"player_id\":\"1582\",\"birth_city\":null,\"fantasy_data_id\":15233,\"years_exp\":7,\"hashtag\":\"#CornelliusCarradine-NFL-FA-92\",\"search_first_name\":\"cornellius\",\"rotowire_id\":8661,\"rotoworld_id\":8429,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Cornellius Carradine\",\"sportradar_id\":\"d36267e0-f2ef-4dd0-8bda-2a9238a377b7\",\"pandascore_id\":null,\"yahoo_id\":26663,\"last_name\":\"Carradine\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Taft (OH)\",\"depth_chart_order\":null,\"stats_id\":592911,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cornelliuscarradine\",\"birth_date\":\"1990-02-18\",\"espn_id\":15829},\"7050\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josiah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1602621049173,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"deguara\",\"depth_chart_position\":\"TE\",\"player_id\":\"7050\",\"birth_city\":null,\"fantasy_data_id\":21798,\"years_exp\":0,\"hashtag\":\"#JosiahDeguara-NFL-GB-81\",\"search_first_name\":\"josiah\",\"rotowire_id\":14629,\"rotoworld_id\":null,\"active\":true,\"search_rank\":427,\"age\":23,\"full_name\":\"Josiah Deguara\",\"sportradar_id\":\"7874d188-0fcd-4af9-9289-27c27e2bbd16\",\"pandascore_id\":null,\"yahoo_id\":32764,\"last_name\":\"Deguara\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Folsom (CA)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"josiahdeguara\",\"birth_date\":\"1997-02-14\",\"espn_id\":3914151},\"5904\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035668\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":\"LG\",\"player_id\":\"5904\",\"birth_city\":null,\"fantasy_data_id\":20747,\"years_exp\":1,\"hashtag\":\"#DavidEdwards-NFL-LAR-73\",\"search_first_name\":\"david\",\"rotowire_id\":13497,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"David Edwards\",\"sportradar_id\":\"b7a0f6d0-af4f-4134-8382-c59c4283576e\",\"pandascore_id\":null,\"yahoo_id\":32001,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Downers Grove North (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'6\\\"\",\"search_full_name\":\"davidedwards\",\"birth_date\":\"1997-03-20\",\"espn_id\":3917660},\"2039\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031166\",\"first_name\":\"Seth\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603764941599,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2039\",\"birth_city\":null,\"fantasy_data_id\":16326,\"years_exp\":6,\"hashtag\":\"#SethRoberts-NFL-GB-15\",\"search_first_name\":\"seth\",\"rotowire_id\":10112,\"rotoworld_id\":10142,\"active\":true,\"search_rank\":286,\"age\":29,\"full_name\":\"Seth Roberts\",\"sportradar_id\":\"27e60657-f73d-4125-906d-aa72cc3477dc\",\"pandascore_id\":null,\"yahoo_id\":28214,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"West Alabama\",\"high_school\":\"McClay (FL)\",\"depth_chart_order\":3,\"stats_id\":704254,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sethroberts\",\"birth_date\":\"1991-02-22\",\"espn_id\":17402},\"5162\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034578\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1605309654939,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bonnafon\",\"depth_chart_position\":\"RB\",\"player_id\":\"5162\",\"birth_city\":null,\"fantasy_data_id\":20103,\"years_exp\":2,\"hashtag\":\"#ReggieBonnafon-NFL-CAR-39\",\"search_first_name\":\"reggie\",\"rotowire_id\":13233,\"rotoworld_id\":13496,\"active\":true,\"search_rank\":253,\"age\":24,\"full_name\":\"Reggie Bonnafon\",\"sportradar_id\":\"2d16fcef-89b8-4a92-844f-a92c4e20b5c9\",\"pandascore_id\":null,\"yahoo_id\":31302,\"last_name\":\"Bonnafon\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Trinity (KY)\",\"depth_chart_order\":6,\"stats_id\":830860,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"reggiebonnafon\",\"birth_date\":\"1996-01-04\",\"espn_id\":3116642},\"3075\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kroenke\",\"depth_chart_position\":null,\"player_id\":\"3075\",\"birth_city\":null,\"fantasy_data_id\":17822,\"years_exp\":0,\"hashtag\":\"#StanKroenke-NFL-FA-0\",\"search_first_name\":\"stan\",\"rotowire_id\":null,\"rotoworld_id\":9470,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Stan Kroenke\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kroenke\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"stankroenke\",\"birth_date\":null,\"espn_id\":null},\"5095\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034161\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606248353723,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carlson\",\"depth_chart_position\":\"K\",\"player_id\":\"5095\",\"birth_city\":null,\"fantasy_data_id\":19989,\"years_exp\":2,\"hashtag\":\"#DanielCarlson-NFL-LV-2\",\"search_first_name\":\"daniel\",\"rotowire_id\":12842,\"rotoworld_id\":13275,\"active\":true,\"search_rank\":385,\"age\":25,\"full_name\":\"Daniel Carlson\",\"sportradar_id\":\"7bb70550-c28a-4e47-9a13-cc0c0fef8b38\",\"pandascore_id\":null,\"yahoo_id\":31137,\"last_name\":\"Carlson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"The Classical Academy (CO)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'5\\\"\",\"search_full_name\":\"danielcarlson\",\"birth_date\":\"1995-01-23\",\"espn_id\":3051909},\"4842\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyquwan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"glass\",\"depth_chart_position\":null,\"player_id\":\"4842\",\"birth_city\":null,\"fantasy_data_id\":19745,\"years_exp\":2,\"hashtag\":\"#TyquwanGlass-NFL-FA-9\",\"search_first_name\":\"tyquwan\",\"rotowire_id\":12385,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tyquwan Glass\",\"sportradar_id\":\"c6c4056e-a125-434e-90df-464d67412454\",\"pandascore_id\":null,\"yahoo_id\":30949,\"last_name\":\"Glass\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tyquwanglass\",\"birth_date\":null,\"espn_id\":3933013},\"665\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dennis\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"665\",\"birth_city\":null,\"fantasy_data_id\":11762,\"years_exp\":5,\"hashtag\":\"#DennisDixon-NFL-FA-6\",\"search_first_name\":\"dennis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Dennis Dixon\",\"sportradar_id\":\"8a38b08c-5bb2-417f-a75d-1f47eeb3e48a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dennisdixon\",\"birth_date\":\"1985-01-11\",\"espn_id\":null},\"2667\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031989\",\"first_name\":\"Harold\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1551980753003,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jonesquartey\",\"depth_chart_position\":null,\"player_id\":\"2667\",\"birth_city\":null,\"fantasy_data_id\":17135,\"years_exp\":5,\"hashtag\":\"#HaroldJonesQuartey-NFL-FA-30\",\"search_first_name\":\"harold\",\"rotowire_id\":10566,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Harold Jones-Quartey\",\"sportradar_id\":\"20a9d2d4-9abc-4156-9bab-c8471efb1139\",\"pandascore_id\":null,\"yahoo_id\":29061,\"last_name\":\"Jones-Quartey\",\"metadata\":null,\"college\":\"Findlay\",\"high_school\":\"Horizon Science Academy (OH)\",\"depth_chart_order\":null,\"stats_id\":870719,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"haroldjonesquartey\",\"birth_date\":\"1993-08-06\",\"espn_id\":3894939},\"6817\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Noah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600989314251,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"igbinoghene\",\"depth_chart_position\":\"NB\",\"player_id\":\"6817\",\"birth_city\":null,\"fantasy_data_id\":22072,\"years_exp\":0,\"hashtag\":\"#NoahIgbinoghene-NFL-MIA-23\",\"search_first_name\":\"noah\",\"rotowire_id\":14713,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1904,\"age\":21,\"full_name\":\"Noah Igbinoghene\",\"sportradar_id\":\"b4b346b6-6175-407c-a6cd-103368a1609f\",\"pandascore_id\":null,\"yahoo_id\":32700,\"last_name\":\"Igbinoghene\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Hewitt-Trussville (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"noahigbinoghene\",\"birth_date\":\"1999-11-27\",\"espn_id\":4242516},\"3873\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3873\",\"birth_city\":null,\"fantasy_data_id\":18695,\"years_exp\":0,\"hashtag\":\"#BenRoberts-NFL-FA-12\",\"search_first_name\":\"ben\",\"rotowire_id\":11402,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ben Roberts\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29983,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":887841,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benroberts\",\"birth_date\":\"1992-09-07\",\"espn_id\":3927739},\"1965\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031105\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604854518183,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kerr\",\"depth_chart_position\":\"LDT\",\"player_id\":\"1965\",\"birth_city\":null,\"fantasy_data_id\":16226,\"years_exp\":6,\"hashtag\":\"#ZachKerr-NFL-CAR-92\",\"search_first_name\":\"zach\",\"rotowire_id\":9637,\"rotoworld_id\":null,\"active\":true,\"search_rank\":792,\"age\":30,\"full_name\":\"Zach Kerr\",\"sportradar_id\":\"5165ce25-382b-4809-83b7-8c66d93c2aef\",\"pandascore_id\":null,\"yahoo_id\":27905,\"last_name\":\"Kerr\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Quince Orchard (MD)\",\"depth_chart_order\":2,\"stats_id\":495347,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"334\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zachkerr\",\"birth_date\":\"1990-08-29\",\"espn_id\":17071},\"4392\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033402\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515030301634,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4392\",\"birth_city\":null,\"fantasy_data_id\":19251,\"years_exp\":3,\"hashtag\":\"#MalcolmLewis-NFL-FA-18\",\"search_first_name\":\"malcolm\",\"rotowire_id\":12044,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Malcolm Lewis\",\"sportradar_id\":\"c82071bb-965d-4db6-8103-a7a2b2c60aaf\",\"pandascore_id\":null,\"yahoo_id\":30643,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":691585,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'0\\\"\",\"search_full_name\":\"malcolmlewis\",\"birth_date\":\"1993-10-24\",\"espn_id\":2969967},\"7418\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Broc\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693359936,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rutter\",\"depth_chart_position\":null,\"player_id\":\"7418\",\"birth_city\":null,\"fantasy_data_id\":22399,\"years_exp\":0,\"hashtag\":\"#BrocRutter-NFL-FA-0\",\"search_first_name\":\"broc\",\"rotowire_id\":14872,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Broc Rutter\",\"sportradar_id\":\"2162bbf8-b5a1-4c8b-9a44-97efcd175592\",\"pandascore_id\":null,\"yahoo_id\":33202,\"last_name\":\"Rutter\",\"metadata\":null,\"college\":\"North Central College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brocrutter\",\"birth_date\":\"1997-04-03\",\"espn_id\":null},\"6178\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035148\",\"first_name\":\"Darwin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606259154670,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6178\",\"birth_city\":null,\"fantasy_data_id\":20964,\"years_exp\":1,\"hashtag\":\"#DarwinThompson-NFL-KC-34\",\"search_first_name\":\"darwin\",\"rotowire_id\":13476,\"rotoworld_id\":14178,\"active\":true,\"search_rank\":246,\"age\":23,\"full_name\":\"Darwin Thompson\",\"sportradar_id\":\"a1a73c32-c409-4ee0-8a7b-0ae589db85c8\",\"pandascore_id\":null,\"yahoo_id\":32046,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Jenks (OK)\",\"depth_chart_order\":5,\"stats_id\":1108841,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'8\\\"\",\"search_full_name\":\"darwinthompson\",\"birth_date\":\"1997-02-12\",\"espn_id\":4361606},\"3649\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"3649\",\"birth_city\":null,\"fantasy_data_id\":18442,\"years_exp\":0,\"hashtag\":\"#MichaelCooper-NFL-FA-49\",\"search_first_name\":\"michael\",\"rotowire_id\":11260,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Michael Cooper\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29637,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":593541,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelcooper\",\"birth_date\":\"1992-10-21\",\"espn_id\":null},\"1321\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"1321\",\"birth_city\":null,\"fantasy_data_id\":14817,\"years_exp\":3,\"hashtag\":\"#MikeBrown-NFL-FA-12\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mike Brown\",\"sportradar_id\":\"470c7f4b-0839-4290-a8cd-ff185ae350f3\",\"pandascore_id\":null,\"yahoo_id\":26335,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":401278,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikebrown\",\"birth_date\":\"1989-02-09\",\"espn_id\":15448},\"392\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vrabel\",\"depth_chart_position\":null,\"player_id\":\"392\",\"birth_city\":null,\"fantasy_data_id\":8753,\"years_exp\":0,\"hashtag\":\"#MikeVrabel-NFL-FA-50\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":1115,\"active\":false,\"search_rank\":9999999,\"age\":44,\"full_name\":\"Mike Vrabel\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Vrabel\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":24104,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikevrabel\",\"birth_date\":\"1975-08-14\",\"espn_id\":null},\"3159\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032380\",\"first_name\":\"Laremy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606268155442,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tunsil\",\"depth_chart_position\":\"LT\",\"player_id\":\"3159\",\"birth_city\":null,\"fantasy_data_id\":17918,\"years_exp\":4,\"hashtag\":\"#LaremyTunsil-NFL-HOU-78\",\"search_first_name\":\"laremy\",\"rotowire_id\":10964,\"rotoworld_id\":11267,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Laremy Tunsil\",\"sportradar_id\":\"813c2073-8f69-4f6f-94a6-6819cd14b4f3\",\"pandascore_id\":null,\"yahoo_id\":29247,\"last_name\":\"Tunsil\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Columbia (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'5\\\"\",\"search_full_name\":\"laremytunsil\",\"birth_date\":\"1994-08-02\",\"espn_id\":3051890},\"291\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Felix\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"291\",\"birth_city\":null,\"fantasy_data_id\":7290,\"years_exp\":6,\"hashtag\":\"#FelixJones-NFL-FA-23\",\"search_first_name\":\"felix\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Felix Jones\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"felixjones\",\"birth_date\":\"1987-05-08\",\"espn_id\":null},\"4748\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4748\",\"birth_city\":null,\"fantasy_data_id\":19666,\"years_exp\":0,\"hashtag\":\"#DougWilliams-NFL-FA-0\",\"search_first_name\":\"doug\",\"rotowire_id\":null,\"rotoworld_id\":12979,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Doug Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dougwilliams\",\"birth_date\":null,\"espn_id\":null},\"5984\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035520\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596585650144,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ratliffwilliams\",\"depth_chart_position\":null,\"player_id\":\"5984\",\"birth_city\":null,\"fantasy_data_id\":20920,\"years_exp\":1,\"hashtag\":\"#AnthonyRatliffWilliams-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":13433,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Anthony Ratliff-Williams\",\"sportradar_id\":\"d32ec430-b35a-47cf-922e-2460ae818104\",\"pandascore_id\":null,\"yahoo_id\":32426,\"last_name\":\"Ratliff-Williams\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":866042,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonyratliffwilliams\",\"birth_date\":\"1997-06-17\",\"espn_id\":3895828},\"3648\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032914\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1534906519684,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weiser\",\"depth_chart_position\":null,\"player_id\":\"3648\",\"birth_city\":null,\"fantasy_data_id\":18441,\"years_exp\":4,\"hashtag\":\"#MattWeiser-NFL-FA-87\",\"search_first_name\":\"matt\",\"rotowire_id\":11492,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Matt Weiser\",\"sportradar_id\":\"7b29d20b-0839-48b4-8126-006499981186\",\"pandascore_id\":null,\"yahoo_id\":29532,\"last_name\":\"Weiser\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607521,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattweiser\",\"birth_date\":\"1992-10-07\",\"espn_id\":2574404},\"4030\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033887\",\"first_name\":\"Reuben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599316256423,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":null,\"player_id\":\"4030\",\"birth_city\":null,\"fantasy_data_id\":18873,\"years_exp\":3,\"hashtag\":\"#ReubenFoster-NFL-WAS-56\",\"search_first_name\":\"reuben\",\"rotowire_id\":11746,\"rotoworld_id\":12175,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Reuben Foster\",\"sportradar_id\":\"4217a140-cd83-4b9b-8493-b5b27688d055\",\"pandascore_id\":null,\"yahoo_id\":30144,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Troup County (GA)\",\"depth_chart_order\":null,\"stats_id\":750836,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'1\\\"\",\"search_full_name\":\"reubenfoster\",\"birth_date\":\"1994-04-04\",\"espn_id\":3054844},\"2297\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Glenn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"winston\",\"depth_chart_position\":null,\"player_id\":\"2297\",\"birth_city\":null,\"fantasy_data_id\":16740,\"years_exp\":6,\"hashtag\":\"#GlennWinston-NFL-FA-28\",\"search_first_name\":\"glenn\",\"rotowire_id\":9893,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Glenn Winston\",\"sportradar_id\":\"829624ad-e232-4818-bd9e-30c1468088c4\",\"pandascore_id\":null,\"yahoo_id\":28343,\"last_name\":\"Winston\",\"metadata\":null,\"college\":\"Northwood, Mich.\",\"high_school\":\"Edwin Denby Prep\",\"depth_chart_order\":null,\"stats_id\":464275,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"glennwinston\",\"birth_date\":\"1989-04-29\",\"espn_id\":2310051},\"3408\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032930\",\"first_name\":\"Oni\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"omoile\",\"depth_chart_position\":null,\"player_id\":\"3408\",\"birth_city\":null,\"fantasy_data_id\":18169,\"years_exp\":4,\"hashtag\":\"#OniOmoile-NFL-FA-67\",\"search_first_name\":\"oni\",\"rotowire_id\":11521,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Oni Omoile\",\"sportradar_id\":\"159f802d-8825-4bc9-aba4-e6631aa11e44\",\"pandascore_id\":null,\"yahoo_id\":29964,\"last_name\":\"Omoile\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'3\\\"\",\"search_full_name\":\"oniomoile\",\"birth_date\":\"1993-06-24\",\"espn_id\":2577172},\"5952\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034944\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606277455951,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hansen\",\"depth_chart_position\":null,\"player_id\":\"5952\",\"birth_city\":null,\"fantasy_data_id\":20787,\"years_exp\":1,\"hashtag\":\"#ChaseHansen-NFL-NO-42\",\"search_first_name\":\"chase\",\"rotowire_id\":13765,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1545,\"age\":27,\"full_name\":\"Chase Hansen\",\"sportradar_id\":\"3f6d588b-dfcb-4758-95f0-545f61ddf275\",\"pandascore_id\":null,\"yahoo_id\":32212,\"last_name\":\"Hansen\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Lone Peak (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chasehansen\",\"birth_date\":\"1993-05-20\",\"espn_id\":2971641},\"3162\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032965\",\"first_name\":\"Ronnie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604442345664,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"stanley\",\"depth_chart_position\":null,\"player_id\":\"3162\",\"birth_city\":null,\"fantasy_data_id\":17921,\"years_exp\":4,\"hashtag\":\"#RonnieStanley-NFL-BAL-79\",\"search_first_name\":\"ronnie\",\"rotowire_id\":11184,\"rotoworld_id\":11328,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ronnie Stanley\",\"sportradar_id\":\"a792cbbf-d96a-48fc-a187-6f7f5b7dd214\",\"pandascore_id\":null,\"yahoo_id\":29240,\"last_name\":\"Stanley\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Gorman (NV)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ronniestanley\",\"birth_date\":\"1994-03-18\",\"espn_id\":2980153},\"6294\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034999\",\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602037236107,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"summers\",\"depth_chart_position\":\"LILB\",\"player_id\":\"6294\",\"birth_city\":null,\"fantasy_data_id\":21125,\"years_exp\":1,\"hashtag\":\"#TySummers-NFL-GB-44\",\"search_first_name\":\"ty\",\"rotowire_id\":13883,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1671,\"age\":24,\"full_name\":\"Ty Summers\",\"sportradar_id\":\"5203e275-5554-47de-bc0a-5b13639e5b50\",\"pandascore_id\":null,\"yahoo_id\":32058,\"last_name\":\"Summers\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Reagan (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tysummers\",\"birth_date\":\"1995-12-31\",\"espn_id\":3116431},\"3701\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1510673101056,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"eagan\",\"depth_chart_position\":null,\"player_id\":\"3701\",\"birth_city\":null,\"fantasy_data_id\":18506,\"years_exp\":3,\"hashtag\":\"#EdEagan-NFL-FA-84\",\"search_first_name\":\"ed\",\"rotowire_id\":11268,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ed Eagan\",\"sportradar_id\":\"35f83926-fd0e-4d31-bdee-06583361453c\",\"pandascore_id\":null,\"yahoo_id\":29891,\"last_name\":\"Eagan\",\"metadata\":null,\"college\":\"Northwestern State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":697800,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"edeagan\",\"birth_date\":\"1993-06-19\",\"espn_id\":2974590},\"7345\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reaves\",\"depth_chart_position\":null,\"player_id\":\"7345\",\"birth_city\":null,\"fantasy_data_id\":22333,\"years_exp\":0,\"hashtag\":\"#GregReaves-NFL-FA-0\",\"search_first_name\":\"greg\",\"rotowire_id\":14802,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Greg Reaves\",\"sportradar_id\":\"2606bef4-cb40-48f8-ada2-85a13f2d6d89\",\"pandascore_id\":null,\"yahoo_id\":33259,\"last_name\":\"Reaves\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'2\\\"\",\"search_full_name\":\"gregreaves\",\"birth_date\":\"1996-08-20\",\"espn_id\":null},\"1874\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030697\",\"first_name\":\"Jamie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1584575125621,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"meder\",\"depth_chart_position\":null,\"player_id\":\"1874\",\"birth_city\":null,\"fantasy_data_id\":16091,\"years_exp\":6,\"hashtag\":\"#JamieMeder-NFL-FA-61\",\"search_first_name\":\"jamie\",\"rotowire_id\":10025,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jamie Meder\",\"sportradar_id\":\"3a8befa1-04e8-4aa7-bc14-504e3d2de483\",\"pandascore_id\":null,\"yahoo_id\":27983,\"last_name\":\"Meder\",\"metadata\":null,\"college\":\"Ashland\",\"high_school\":\"Valley Forge (OH)\",\"depth_chart_order\":null,\"stats_id\":794047,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamiemeder\",\"birth_date\":\"1991-04-12\",\"espn_id\":17214},\"5890\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035657\",\"first_name\":\"Damien\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606577432579,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"RB\",\"player_id\":\"5890\",\"birth_city\":null,\"fantasy_data_id\":20790,\"years_exp\":1,\"hashtag\":\"#DamienHarris-NFL-NE-37\",\"search_first_name\":\"damien\",\"rotowire_id\":13636,\"rotoworld_id\":14038,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Damien Harris\",\"sportradar_id\":\"59482736-ce42-4058-b68e-0f9f66eac2d9\",\"pandascore_id\":null,\"yahoo_id\":31919,\"last_name\":\"Harris\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Alabama\",\"high_school\":\"Madison Southern (KY)\",\"depth_chart_order\":1,\"stats_id\":884014,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damienharris\",\"birth_date\":\"1997-02-11\",\"espn_id\":3925347},\"3627\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaneil\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534389968191,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"3627\",\"birth_city\":null,\"fantasy_data_id\":18414,\"years_exp\":1,\"hashtag\":\"#ShaneilJenkins-NFL-NYJ-67\",\"search_first_name\":\"shaneil\",\"rotowire_id\":11421,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shaneil Jenkins\",\"sportradar_id\":\"9c41ed02-01f3-4e55-b069-247c58983ad6\",\"pandascore_id\":null,\"yahoo_id\":29622,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shaneiljenkins\",\"birth_date\":\"1994-02-07\",\"espn_id\":3957452},\"773\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"asante\",\"depth_chart_position\":null,\"player_id\":\"773\",\"birth_city\":null,\"fantasy_data_id\":12566,\"years_exp\":10,\"hashtag\":\"#LarryAsante-NFL-FA-42\",\"search_first_name\":\"larry\",\"rotowire_id\":6649,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Larry Asante\",\"sportradar_id\":\"3a1b1840-8c47-42c7-8ad9-785895669c85\",\"pandascore_id\":null,\"yahoo_id\":24136,\"last_name\":\"Asante\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Annandale (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"larryasante\",\"birth_date\":\"1988-03-07\",\"espn_id\":13310},\"5144\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034156\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1549755607815,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"5144\",\"birth_city\":null,\"fantasy_data_id\":20091,\"years_exp\":2,\"hashtag\":\"#MalikWilliams-NFL-FA-39\",\"search_first_name\":\"malik\",\"rotowire_id\":13079,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malik Williams\",\"sportradar_id\":\"9ac049a2-9286-4898-881a-f349bbffd223\",\"pandascore_id\":null,\"yahoo_id\":31339,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":947274,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'0\\\"\",\"search_full_name\":\"malikwilliams\",\"birth_date\":\"1996-06-20\",\"espn_id\":4047769},\"5003\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034755\",\"first_name\":\"Shaquem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601729711926,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":\"SLB\",\"player_id\":\"5003\",\"birth_city\":null,\"fantasy_data_id\":19923,\"years_exp\":2,\"hashtag\":\"#ShaquemGriffin-NFL-SEA-49\",\"search_first_name\":\"shaquem\",\"rotowire_id\":12829,\"rotoworld_id\":13186,\"active\":true,\"search_rank\":1343,\"age\":25,\"full_name\":\"Shaquem Griffin\",\"sportradar_id\":\"7c7d286f-5c3f-4fe1-864d-9351499bd530\",\"pandascore_id\":null,\"yahoo_id\":31111,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Lakewood (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaquemgriffin\",\"birth_date\":\"1995-07-20\",\"espn_id\":3054029},\"701\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027675\",\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1585686032321,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dickson\",\"depth_chart_position\":null,\"player_id\":\"701\",\"birth_city\":null,\"fantasy_data_id\":12153,\"years_exp\":10,\"hashtag\":\"#EdDickson-NFL-FA-84\",\"search_first_name\":\"ed\",\"rotowire_id\":6530,\"rotoworld_id\":5840,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ed Dickson\",\"sportradar_id\":\"46bb9a85-523c-4530-95c3-2c2a9737e65f\",\"pandascore_id\":null,\"yahoo_id\":24045,\"last_name\":\"Dickson\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Bellflower (CA)\",\"depth_chart_order\":null,\"stats_id\":296060,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"eddickson\",\"birth_date\":\"1987-07-25\",\"espn_id\":13272},\"6305\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035709\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1605405060787,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cutting\",\"depth_chart_position\":null,\"player_id\":\"6305\",\"birth_city\":null,\"fantasy_data_id\":21144,\"years_exp\":1,\"hashtag\":\"#AustinCutting-NFL-MIN-58\",\"search_first_name\":\"austin\",\"rotowire_id\":13993,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Cutting\",\"sportradar_id\":\"f31cee33-d73f-40e5-b3e1-78162a1b27ca\",\"pandascore_id\":null,\"yahoo_id\":32082,\"last_name\":\"Cutting\",\"metadata\":null,\"college\":\"Air Force\",\"high_school\":\"Central (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austincutting\",\"birth_date\":\"1996-10-27\",\"espn_id\":4038201},\"3071\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hue\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1542135024525,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"3071\",\"birth_city\":null,\"fantasy_data_id\":17816,\"years_exp\":0,\"hashtag\":\"#HueJackson-NFL-FA-0\",\"search_first_name\":\"hue\",\"rotowire_id\":null,\"rotoworld_id\":9316,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Hue Jackson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"huejackson\",\"birth_date\":null,\"espn_id\":null},\"5637\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034592\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"5637\",\"birth_city\":null,\"fantasy_data_id\":20451,\"years_exp\":2,\"hashtag\":\"#GarrettJohnson-NFL-FA-8\",\"search_first_name\":\"garrett\",\"rotowire_id\":13238,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Garrett Johnson\",\"sportradar_id\":\"9ce95bf3-5f57-4429-bb81-720667bcdf1d\",\"pandascore_id\":null,\"yahoo_id\":31659,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835382,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"169\",\"height\":\"5'10\\\"\",\"search_full_name\":\"garrettjohnson\",\"birth_date\":\"1995-12-03\",\"espn_id\":3126329},\"1042\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tank\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1528213501540,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carder\",\"depth_chart_position\":null,\"player_id\":\"1042\",\"birth_city\":null,\"fantasy_data_id\":13758,\"years_exp\":8,\"hashtag\":\"#TankCarder-NFL-FA-59\",\"search_first_name\":\"tank\",\"rotowire_id\":8279,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Tank Carder\",\"sportradar_id\":\"72fe69bd-4b3b-40c9-a842-857a104ec2cc\",\"pandascore_id\":null,\"yahoo_id\":25857,\"last_name\":\"Carder\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Sweeny (TX)\",\"depth_chart_order\":null,\"stats_id\":400148,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tankcarder\",\"birth_date\":\"1989-01-18\",\"espn_id\":15014},\"4174\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033947\",\"first_name\":\"Deatrich\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602888904955,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wise\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4174\",\"birth_city\":null,\"fantasy_data_id\":19020,\"years_exp\":3,\"hashtag\":\"#DeatrichWise-NFL-NE-91\",\"search_first_name\":\"deatrich\",\"rotowire_id\":11954,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1184,\"age\":26,\"full_name\":\"Deatrich Wise\",\"sportradar_id\":\"2516f9e7-9927-409d-adbe-b32d680ae71d\",\"pandascore_id\":null,\"yahoo_id\":30244,\"last_name\":\"Wise\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arkansas\",\"high_school\":\"Hebron (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"deatrichwise\",\"birth_date\":\"1994-07-26\",\"espn_id\":2980080},\"1811\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031029\",\"first_name\":\"Seantrel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574134245477,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"1811\",\"birth_city\":null,\"fantasy_data_id\":15993,\"years_exp\":6,\"hashtag\":\"#SeantrelHenderson-NFL-FA-76\",\"search_first_name\":\"seantrel\",\"rotowire_id\":9425,\"rotoworld_id\":9362,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Seantrel Henderson\",\"sportradar_id\":\"5d4102ae-6e17-455d-8bfe-16fc7b7ab681\",\"pandascore_id\":null,\"yahoo_id\":27765,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Cretin-Derham Hall (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"351\",\"height\":\"6'7\\\"\",\"search_full_name\":\"seantrelhenderson\",\"birth_date\":\"1992-01-21\",\"espn_id\":16892},\"3037\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josue\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"matias\",\"depth_chart_position\":\"LG\",\"player_id\":\"3037\",\"birth_city\":null,\"fantasy_data_id\":17742,\"years_exp\":4,\"hashtag\":\"#JosueMatias-NFL-FA-66\",\"search_first_name\":\"josue\",\"rotowire_id\":10289,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Josue Matias\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29054,\"last_name\":\"Matias\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"josuematias\",\"birth_date\":\"1993-01-06\",\"espn_id\":2576799},\"3868\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033025\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606527929562,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"richard\",\"depth_chart_position\":\"RB\",\"player_id\":\"3868\",\"birth_city\":null,\"fantasy_data_id\":18690,\"years_exp\":4,\"hashtag\":\"#JalenRichard-NFL-LV-30\",\"search_first_name\":\"jalen\",\"rotowire_id\":11522,\"rotoworld_id\":12049,\"active\":true,\"search_rank\":188,\"age\":27,\"full_name\":\"Jalen Richard\",\"sportradar_id\":\"c78c299b-7c73-40fc-9155-2ede7f9849c7\",\"pandascore_id\":null,\"yahoo_id\":30000,\"last_name\":\"Richard\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Peabody Magnet (LA)\",\"depth_chart_order\":3,\"stats_id\":693429,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'8\\\"\",\"search_full_name\":\"jalenrichard\",\"birth_date\":\"1993-10-15\",\"espn_id\":2972091},\"6303\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035317\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571588765270,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miles\",\"depth_chart_position\":\"LT\",\"player_id\":\"6303\",\"birth_city\":null,\"fantasy_data_id\":21140,\"years_exp\":1,\"hashtag\":\"#JoshuaMiles-NFL-ARI-66\",\"search_first_name\":\"joshua\",\"rotowire_id\":13681,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joshua Miles\",\"sportradar_id\":\"c0221755-d6a6-4f55-9ed3-672a9625ee6c\",\"pandascore_id\":null,\"yahoo_id\":32080,\"last_name\":\"Miles\",\"metadata\":null,\"college\":\"Morgan State\",\"high_school\":\"Western Tech (MD)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshuamiles\",\"birth_date\":\"1996-01-04\",\"espn_id\":3120434},\"3617\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tovell\",\"depth_chart_position\":null,\"player_id\":\"3617\",\"birth_city\":null,\"fantasy_data_id\":18404,\"years_exp\":0,\"hashtag\":\"#DominiqueTovell-NFL-FA-46\",\"search_first_name\":\"dominique\",\"rotowire_id\":11616,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dominique Tovell\",\"sportradar_id\":\"8cc5a02f-de45-44e1-8a5c-84d27babc17b\",\"pandascore_id\":null,\"yahoo_id\":29862,\"last_name\":\"Tovell\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dominiquetovell\",\"birth_date\":\"1992-06-15\",\"espn_id\":2574027},\"4110\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033547\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606159814339,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cunningham\",\"depth_chart_position\":\"WILL\",\"player_id\":\"4110\",\"birth_city\":null,\"fantasy_data_id\":18956,\"years_exp\":3,\"hashtag\":\"#ZachCunningham-NFL-HOU-41\",\"search_first_name\":\"zach\",\"rotowire_id\":11965,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1151,\"age\":25,\"full_name\":\"Zach Cunningham\",\"sportradar_id\":\"8cb76d80-0326-474f-86c8-869a86405777\",\"pandascore_id\":null,\"yahoo_id\":30170,\"last_name\":\"Cunningham\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Pinson Valley (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"zachcunningham\",\"birth_date\":\"1994-12-02\",\"espn_id\":3051750},\"5409\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034613\",\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606524029152,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hudson\",\"depth_chart_position\":\"TE\",\"player_id\":\"5409\",\"birth_city\":null,\"fantasy_data_id\":20506,\"years_exp\":2,\"hashtag\":\"#TannerHudson-NFL-TB-88\",\"search_first_name\":\"tanner\",\"rotowire_id\":13286,\"rotoworld_id\":null,\"active\":true,\"search_rank\":584,\"age\":26,\"full_name\":\"Tanner Hudson\",\"sportradar_id\":\"2fa75e05-cac4-4b40-8924-dbc9ae0c959c\",\"pandascore_id\":null,\"yahoo_id\":31257,\"last_name\":\"Hudson\",\"metadata\":null,\"college\":\"Southern Arkansas\",\"high_school\":\"Camden Central (TN)\",\"depth_chart_order\":4,\"stats_id\":1115394,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tannerhudson\",\"birth_date\":\"1994-11-12\",\"espn_id\":3050481},\"6105\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035363\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603410949416,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilesharris\",\"depth_chart_position\":\"MLB\",\"player_id\":\"6105\",\"birth_city\":null,\"fantasy_data_id\":20772,\"years_exp\":1,\"hashtag\":\"#JoeGilesHarris-NFL-JAX-43\",\"search_first_name\":\"joe\",\"rotowire_id\":13492,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1537,\"age\":23,\"full_name\":\"Joe Giles-Harris\",\"sportradar_id\":\"62976179-ae2c-495f-9e94-cb3e49933243\",\"pandascore_id\":null,\"yahoo_id\":32091,\"last_name\":\"Giles-Harris\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"St. Joseph Regional (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joegilesharris\",\"birth_date\":\"1997-04-01\",\"espn_id\":3917797},\"5910\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034978\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574919049068,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"powers\",\"depth_chart_position\":\"RG\",\"player_id\":\"5910\",\"birth_city\":null,\"fantasy_data_id\":20914,\"years_exp\":1,\"hashtag\":\"#BenPowers-NFL-BAL-72\",\"search_first_name\":\"ben\",\"rotowire_id\":13823,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ben Powers\",\"sportradar_id\":\"cfcac921-0ac6-457c-9f37-82324327f3e3\",\"pandascore_id\":null,\"yahoo_id\":31955,\"last_name\":\"Powers\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Kapaun Mt. Carmel Catholic (OK)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benpowers\",\"birth_date\":\"1996-10-29\",\"espn_id\":4037650},\"4820\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033363\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1563931524766,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rivers\",\"depth_chart_position\":null,\"player_id\":\"4820\",\"birth_city\":null,\"fantasy_data_id\":19696,\"years_exp\":3,\"hashtag\":\"#DavidRivers-NFL-FA-46\",\"search_first_name\":\"david\",\"rotowire_id\":12282,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Rivers\",\"sportradar_id\":\"fabca6af-000d-42a9-8a90-524f401a9774\",\"pandascore_id\":null,\"yahoo_id\":30620,\"last_name\":\"Rivers\",\"metadata\":null,\"college\":\"Youngstown State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidrivers\",\"birth_date\":\"1994-07-23\",\"espn_id\":3049271},\"943\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027981\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606503304840,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rudolph\",\"depth_chart_position\":\"TE\",\"player_id\":\"943\",\"birth_city\":null,\"fantasy_data_id\":13275,\"years_exp\":9,\"hashtag\":\"#KyleRudolph-NFL-MIN-82\",\"search_first_name\":\"kyle\",\"rotowire_id\":7246,\"rotoworld_id\":6459,\"active\":true,\"search_rank\":329,\"age\":31,\"full_name\":\"Kyle Rudolph\",\"sportradar_id\":\"1059e9dc-97df-4643-9116-883a0573d8b1\",\"pandascore_id\":null,\"yahoo_id\":24830,\"last_name\":\"Rudolph\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Elder (OH)\",\"depth_chart_order\":1,\"stats_id\":469472,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kylerudolph\",\"birth_date\":\"1989-11-09\",\"espn_id\":14054},\"3785\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032660\",\"first_name\":\"Brandin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597610713546,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"3785\",\"birth_city\":null,\"fantasy_data_id\":18598,\"years_exp\":4,\"hashtag\":\"#BrandinBryant-NFL-BUF-74\",\"search_first_name\":\"brandin\",\"rotowire_id\":11557,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1100,\"age\":27,\"full_name\":\"Brandin Bryant\",\"sportradar_id\":\"8b1be2ac-e483-4f39-9bf9-a81be33ac92e\",\"pandascore_id\":null,\"yahoo_id\":29813,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Omaha North (NE)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandinbryant\",\"birth_date\":\"1993-09-16\",\"espn_id\":2982857},\"2764\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alfy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"2764\",\"birth_city\":null,\"fantasy_data_id\":17232,\"years_exp\":0,\"hashtag\":\"#AlfyHill-NFL-FA-77\",\"search_first_name\":\"alfy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Alfy Hill\",\"sportradar_id\":\"fca45f3b-b364-4e95-882e-a72535cb4852\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alfyhill\",\"birth_date\":null,\"espn_id\":3924754},\"2476\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031951\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606519228509,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"oshaughnessy\",\"depth_chart_position\":\"TE\",\"player_id\":\"2476\",\"birth_city\":null,\"fantasy_data_id\":16933,\"years_exp\":5,\"hashtag\":\"#JamesOShaughnessy-NFL-JAX-80\",\"search_first_name\":\"james\",\"rotowire_id\":10249,\"rotoworld_id\":10549,\"active\":true,\"search_rank\":369,\"age\":28,\"full_name\":\"James O'Shaughnessy\",\"sportradar_id\":\"e5c6b0d4-3e77-422b-a6d8-574a10ed385e\",\"pandascore_id\":null,\"yahoo_id\":28561,\"last_name\":\"O'Shaughnessy\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"Naperville North (IL)\",\"depth_chart_order\":2,\"stats_id\":552352,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jamesoshaughnessy\",\"birth_date\":\"1992-01-14\",\"espn_id\":2508079},\"6665\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035547\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599695743354,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fortson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6665\",\"birth_city\":null,\"fantasy_data_id\":21383,\"years_exp\":1,\"hashtag\":\"#JoeFortson-NFL-KC-1\",\"search_first_name\":\"joe\",\"rotowire_id\":14306,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joe Fortson\",\"sportradar_id\":\"a01ffd42-5fdb-42f8-95ab-157025e3fba8\",\"pandascore_id\":null,\"yahoo_id\":32600,\"last_name\":\"Fortson\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":\"South Park (NY)\",\"depth_chart_order\":3,\"stats_id\":1167484,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joefortson\",\"birth_date\":\"1995-12-07\",\"espn_id\":4408854},\"6022\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035005\",\"first_name\":\"Javon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597885829843,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patterson\",\"depth_chart_position\":null,\"player_id\":\"6022\",\"birth_city\":null,\"fantasy_data_id\":20908,\"years_exp\":1,\"hashtag\":\"#JavonPatterson-NFL-CLE-65\",\"search_first_name\":\"javon\",\"rotowire_id\":13535,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Javon Patterson\",\"sportradar_id\":\"7475baa8-7662-49be-9b41-526450f28bfc\",\"pandascore_id\":null,\"yahoo_id\":32078,\"last_name\":\"Patterson\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Petal (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'3\\\"\",\"search_full_name\":\"javonpatterson\",\"birth_date\":\"1997-07-08\",\"espn_id\":3691031},\"5953\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035595\",\"first_name\":\"Demarcus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599620415233,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"christmas\",\"depth_chart_position\":null,\"player_id\":\"5953\",\"birth_city\":null,\"fantasy_data_id\":21007,\"years_exp\":1,\"hashtag\":\"#DemarcusChristmas-NFL-PIT-67\",\"search_first_name\":\"demarcus\",\"rotowire_id\":13662,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1630,\"age\":25,\"full_name\":\"Demarcus Christmas\",\"sportradar_id\":\"5f644070-97f1-4b7a-b0b1-4a341ac10771\",\"pandascore_id\":null,\"yahoo_id\":32041,\"last_name\":\"Christmas\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Manatee (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'3\\\"\",\"search_full_name\":\"demarcuschristmas\",\"birth_date\":\"1995-07-04\",\"espn_id\":3122915},\"1922\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"philon\",\"depth_chart_position\":null,\"player_id\":\"1922\",\"birth_city\":null,\"fantasy_data_id\":16155,\"years_exp\":5,\"hashtag\":\"#RoyPhilon-NFL-FA-69\",\"search_first_name\":\"roy\",\"rotowire_id\":10040,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Roy Philon\",\"sportradar_id\":\"147841d1-e516-4919-a76f-c93fe4647852\",\"pandascore_id\":null,\"yahoo_id\":27816,\"last_name\":\"Philon\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"royphilon\",\"birth_date\":\"1991-03-26\",\"espn_id\":17027},\"7453\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hagan\",\"depth_chart_position\":null,\"player_id\":\"7453\",\"birth_city\":null,\"fantasy_data_id\":22431,\"years_exp\":0,\"hashtag\":\"#JavonHagan-NFL-TB-34\",\"search_first_name\":\"javon\",\"rotowire_id\":14916,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Javon Hagan\",\"sportradar_id\":\"4f13ee42-4af7-4719-bce6-60a426036fd5\",\"pandascore_id\":null,\"yahoo_id\":33273,\"last_name\":\"Hagan\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":\"Trinity Christian Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"javonhagan\",\"birth_date\":\"1997-02-22\",\"espn_id\":3920823},\"1595\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harper\",\"depth_chart_position\":null,\"player_id\":\"1595\",\"birth_city\":null,\"fantasy_data_id\":15254,\"years_exp\":1,\"hashtag\":\"#ChrisHarper-NFL-FA-14\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chris Harper\",\"sportradar_id\":\"c6c558e1-e2b2-4fb5-a5a3-ee58526f10d8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harper\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrisharper\",\"birth_date\":\"1989-09-10\",\"espn_id\":null},\"1103\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029643\",\"first_name\":\"Whitney\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605359457537,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mercilus\",\"depth_chart_position\":\"SLB\",\"player_id\":\"1103\",\"birth_city\":null,\"fantasy_data_id\":13977,\"years_exp\":8,\"hashtag\":\"#WhitneyMercilus-NFL-HOU-59\",\"search_first_name\":\"whitney\",\"rotowire_id\":8134,\"rotoworld_id\":7432,\"active\":true,\"search_rank\":667,\"age\":30,\"full_name\":\"Whitney Mercilus\",\"sportradar_id\":\"eafbc0f8-2e3b-4014-af9d-81fc14b5009a\",\"pandascore_id\":null,\"yahoo_id\":25736,\"last_name\":\"Mercilus\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Garfield (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"whitneymercilus\",\"birth_date\":\"1990-07-21\",\"espn_id\":14936},\"6586\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Moral\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1564256404047,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stephens\",\"depth_chart_position\":\"TE\",\"player_id\":\"6586\",\"birth_city\":null,\"fantasy_data_id\":21560,\"years_exp\":1,\"hashtag\":\"#MoralStephens-NFL-FA-88\",\"search_first_name\":\"moral\",\"rotowire_id\":14273,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Moral Stephens\",\"sportradar_id\":\"e77c67cb-8b53-4c7e-9d07-f3615e7d9851\",\"pandascore_id\":null,\"yahoo_id\":32573,\"last_name\":\"Stephens\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":835210,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'4\\\"\",\"search_full_name\":\"moralstephens\",\"birth_date\":null,\"espn_id\":3121659},\"7452\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602627649568,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pearson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7452\",\"birth_city\":null,\"fantasy_data_id\":22430,\"years_exp\":0,\"hashtag\":\"#JoshPearson-NFL-TB-89\",\"search_first_name\":\"josh\",\"rotowire_id\":14778,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Pearson\",\"sportradar_id\":\"3513b0ad-2b0b-4e07-a401-54cd04106ea2\",\"pandascore_id\":null,\"yahoo_id\":33294,\"last_name\":\"Pearson\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":\"Austin (AL)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshpearson\",\"birth_date\":\"1997-06-13\",\"espn_id\":4368796},\"2243\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gaston\",\"depth_chart_position\":null,\"player_id\":\"2243\",\"birth_city\":null,\"fantasy_data_id\":16646,\"years_exp\":6,\"hashtag\":\"#BruceGaston-NFL-FA-62\",\"search_first_name\":\"bruce\",\"rotowire_id\":9747,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Bruce Gaston\",\"sportradar_id\":\"05526dc5-8397-4741-81bb-46ef2aba446e\",\"pandascore_id\":null,\"yahoo_id\":28108,\"last_name\":\"Gaston\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Saint Rita (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brucegaston\",\"birth_date\":\"1991-11-29\",\"espn_id\":17155},\"7017\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trajan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bandy\",\"depth_chart_position\":null,\"player_id\":\"7017\",\"birth_city\":null,\"fantasy_data_id\":22063,\"years_exp\":0,\"hashtag\":\"#TrajanBandy-NFL-CIN-40\",\"search_first_name\":\"trajan\",\"rotowire_id\":14407,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1898,\"age\":21,\"full_name\":\"Trajan Bandy\",\"sportradar_id\":\"23ad64a6-6102-402d-b985-4c8bb273b5d3\",\"pandascore_id\":null,\"yahoo_id\":32938,\"last_name\":\"Bandy\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Miami\",\"high_school\":\"Columbus (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'9\\\"\",\"search_full_name\":\"trajanbandy\",\"birth_date\":\"1999-06-04\",\"espn_id\":4240624},\"3090\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tannenbaum\",\"depth_chart_position\":null,\"player_id\":\"3090\",\"birth_city\":null,\"fantasy_data_id\":17840,\"years_exp\":null,\"hashtag\":\"#MikeTannenbaum-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":10306,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Tannenbaum\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tannenbaum\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"miketannenbaum\",\"birth_date\":null,\"espn_id\":null},\"3476\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032935\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601930748348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holton\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3476\",\"birth_city\":null,\"fantasy_data_id\":18241,\"years_exp\":4,\"hashtag\":\"#JohnnyHolton-NFL-NYG-80\",\"search_first_name\":\"johnny\",\"rotowire_id\":11059,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Johnny Holton\",\"sportradar_id\":\"0ee05dd7-e99e-43c8-ba2b-0922be1d8be1\",\"pandascore_id\":null,\"yahoo_id\":29958,\"last_name\":\"Holton\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Coconut Grove (FL)\",\"depth_chart_order\":3,\"stats_id\":749099,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnnyholton\",\"birth_date\":\"1990-08-22\",\"espn_id\":3056906},\"7143\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604867119854,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dinucci\",\"depth_chart_position\":\"QB\",\"player_id\":\"7143\",\"birth_city\":null,\"fantasy_data_id\":22146,\"years_exp\":0,\"hashtag\":\"#BenDiNucci-NFL-DAL-7\",\"search_first_name\":\"ben\",\"rotowire_id\":14832,\"rotoworld_id\":null,\"active\":true,\"search_rank\":527,\"age\":24,\"full_name\":\"Ben DiNucci\",\"sportradar_id\":\"c744ade6-bce2-4c71-8f1b-742cb183c8eb\",\"pandascore_id\":null,\"yahoo_id\":32901,\"last_name\":\"DiNucci\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Pine-Richland (PA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bendinucci\",\"birth_date\":\"1996-11-24\",\"espn_id\":3895785},\"6625\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clayton\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hatfield\",\"depth_chart_position\":null,\"player_id\":\"6625\",\"birth_city\":null,\"fantasy_data_id\":21503,\"years_exp\":0,\"hashtag\":\"#ClaytonHatfield-NFL-FA-0\",\"search_first_name\":\"clayton\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Clayton Hatfield\",\"sportradar_id\":\"686e029e-a8a7-427f-80bb-2b8c7949b5ec\",\"pandascore_id\":null,\"yahoo_id\":32294,\"last_name\":\"Hatfield\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"claytonhatfield\",\"birth_date\":null,\"espn_id\":null},\"6587\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035560\",\"first_name\":\"Quindarius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1559784327112,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thagard\",\"depth_chart_position\":null,\"player_id\":\"6587\",\"birth_city\":null,\"fantasy_data_id\":21561,\"years_exp\":1,\"hashtag\":\"#QuindariusThagard-NFL-BUF-63\",\"search_first_name\":\"quindarius\",\"rotowire_id\":14271,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Quindarius Thagard\",\"sportradar_id\":\"f88cf8ff-c5be-4e41-bbe3-a8657935bf3a\",\"pandascore_id\":null,\"yahoo_id\":32575,\"last_name\":\"Thagard\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'4\\\"\",\"search_full_name\":\"quindariusthagard\",\"birth_date\":\"1995-12-05\",\"espn_id\":4262273},\"7175\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359971,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rowland\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7175\",\"birth_city\":null,\"fantasy_data_id\":22177,\"years_exp\":0,\"hashtag\":\"#ChrisRowland-NFL-ATL-14\",\"search_first_name\":\"chris\",\"rotowire_id\":14885,\"rotoworld_id\":null,\"active\":true,\"search_rank\":245,\"age\":22,\"full_name\":\"Chris Rowland\",\"sportradar_id\":\"40f11577-5646-4da3-99ba-ea8b038b17a3\",\"pandascore_id\":null,\"yahoo_id\":33066,\"last_name\":\"Rowland\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"Ravenwood (TN)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'8\\\"\",\"search_full_name\":\"chrisrowland\",\"birth_date\":\"1997-12-19\",\"espn_id\":4052137},\"6828\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606330801997,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":\"RB\",\"player_id\":\"6828\",\"birth_city\":null,\"fantasy_data_id\":21802,\"years_exp\":0,\"hashtag\":\"#AJDillon-NFL-GB-28\",\"search_first_name\":\"aj\",\"rotowire_id\":14370,\"rotoworld_id\":null,\"active\":true,\"search_rank\":122,\"age\":22,\"full_name\":\"A.J. Dillon\",\"sportradar_id\":\"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3\",\"pandascore_id\":null,\"yahoo_id\":32732,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Lawrence Academy (MA)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ajdillon\",\"birth_date\":\"1998-05-02\",\"espn_id\":4239934},\"896\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1561606803403,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tolzien\",\"depth_chart_position\":null,\"player_id\":\"896\",\"birth_city\":null,\"fantasy_data_id\":13103,\"years_exp\":9,\"hashtag\":\"#ScottTolzien-NFL-FA-16\",\"search_first_name\":\"scott\",\"rotowire_id\":7663,\"rotoworld_id\":6893,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Scott Tolzien\",\"sportradar_id\":\"32d5dc32-c443-4db7-8709-4c6238a3000b\",\"pandascore_id\":null,\"yahoo_id\":25171,\"last_name\":\"Tolzien\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Fremd (IL)\",\"depth_chart_order\":null,\"stats_id\":332096,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"scotttolzien\",\"birth_date\":\"1987-09-04\",\"espn_id\":14353},\"4762\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dave\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gettleman\",\"depth_chart_position\":null,\"player_id\":\"4762\",\"birth_city\":null,\"fantasy_data_id\":19681,\"years_exp\":0,\"hashtag\":\"#DaveGettleman-NFL-FA-0\",\"search_first_name\":\"dave\",\"rotowire_id\":null,\"rotoworld_id\":9515,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dave Gettleman\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gettleman\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"davegettleman\",\"birth_date\":null,\"espn_id\":null},\"600\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027768\",\"first_name\":\"Marshall\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1569771929573,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"newhouse\",\"depth_chart_position\":null,\"player_id\":\"600\",\"birth_city\":null,\"fantasy_data_id\":11398,\"years_exp\":10,\"hashtag\":\"#MarshallNewhouse-NFL-TEN-72\",\"search_first_name\":\"marshall\",\"rotowire_id\":6744,\"rotoworld_id\":5937,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Marshall Newhouse\",\"sportradar_id\":\"0dfd5d3f-ebb5-4efe-8df1-2ebda0e5185e\",\"pandascore_id\":null,\"yahoo_id\":24145,\"last_name\":\"Newhouse\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Lake Highlands (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marshallnewhouse\",\"birth_date\":\"1988-09-29\",\"espn_id\":13428},\"854\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0028152\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1558565159972,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"newton\",\"depth_chart_position\":\"RG\",\"player_id\":\"854\",\"birth_city\":null,\"fantasy_data_id\":12948,\"years_exp\":9,\"hashtag\":\"#DerekNewton-NFL-FA-77\",\"search_first_name\":\"derek\",\"rotowire_id\":7626,\"rotoworld_id\":6716,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Derek Newton\",\"sportradar_id\":\"044d5384-6a9f-4843-ad3e-909d362381f6\",\"pandascore_id\":null,\"yahoo_id\":25001,\"last_name\":\"Newton\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Hinds Co. Agricultural (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"dereknewton\",\"birth_date\":\"1987-11-16\",\"espn_id\":14197},\"89\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026197\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1598379924140,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henne\",\"depth_chart_position\":\"QB\",\"player_id\":\"89\",\"birth_city\":null,\"fantasy_data_id\":2405,\"years_exp\":12,\"hashtag\":\"#ChadHenne-NFL-KC-4\",\"search_first_name\":\"chad\",\"rotowire_id\":5685,\"rotoworld_id\":4684,\"active\":true,\"search_rank\":552,\"age\":35,\"full_name\":\"Chad Henne\",\"sportradar_id\":\"f55053e4-4bfd-495d-981a-d62e3662f01b\",\"pandascore_id\":null,\"yahoo_id\":8834,\"last_name\":\"Henne\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Wilson (PA)\",\"depth_chart_order\":2,\"stats_id\":264851,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chadhenne\",\"birth_date\":\"1985-07-02\",\"espn_id\":11291},\"6189\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035379\",\"first_name\":\"Zedrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1563858041586,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woods\",\"depth_chart_position\":null,\"player_id\":\"6189\",\"birth_city\":null,\"fantasy_data_id\":21091,\"years_exp\":1,\"hashtag\":\"#ZedrickWoods-NFL-FA-46\",\"search_first_name\":\"zedrick\",\"rotowire_id\":13696,\"rotoworld_id\":14018,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Zedrick Woods\",\"sportradar_id\":\"b2830633-1ef9-44e2-ba35-8bbd8a3a84fd\",\"pandascore_id\":null,\"yahoo_id\":32106,\"last_name\":\"Woods\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"zedrickwoods\",\"birth_date\":\"1997-08-03\",\"espn_id\":3930075},\"57\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"57\",\"birth_city\":null,\"fantasy_data_id\":1652,\"years_exp\":16,\"hashtag\":\"#StevenJackson-NFL-FA-39\",\"search_first_name\":\"steven\",\"rotowire_id\":3756,\"rotoworld_id\":1663,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Steven Jackson\",\"sportradar_id\":\"3d980847-dec6-4fc1-a4bb-63bd0bfcb078\",\"pandascore_id\":null,\"yahoo_id\":6783,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Eldorado (NV)\",\"depth_chart_order\":null,\"stats_id\":246074,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"stevenjackson\",\"birth_date\":\"1983-07-22\",\"espn_id\":5549},\"4498\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aarion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"penton\",\"depth_chart_position\":null,\"player_id\":\"4498\",\"birth_city\":null,\"fantasy_data_id\":19369,\"years_exp\":2,\"hashtag\":\"#AarionPenton-NFL-FA-34\",\"search_first_name\":\"aarion\",\"rotowire_id\":12314,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Aarion Penton\",\"sportradar_id\":\"1f0fd3d6-ad22-4089-b690-54ee4d86139a\",\"pandascore_id\":null,\"yahoo_id\":30375,\"last_name\":\"Penton\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'9\\\"\",\"search_full_name\":\"aarionpenton\",\"birth_date\":\"1994-09-03\",\"espn_id\":3051859},\"1308\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029492\",\"first_name\":\"Jamize\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596396917520,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"olawale\",\"depth_chart_position\":\"RB\",\"player_id\":\"1308\",\"birth_city\":null,\"fantasy_data_id\":14789,\"years_exp\":8,\"hashtag\":\"#JamizeOlawale-NFL-DAL-49\",\"search_first_name\":\"jamize\",\"rotowire_id\":8497,\"rotoworld_id\":null,\"active\":true,\"search_rank\":367,\"age\":31,\"full_name\":\"Jamize Olawale\",\"sportradar_id\":\"5a20a439-bebc-4ef7-8b9f-30e1d677a26b\",\"pandascore_id\":null,\"yahoo_id\":26535,\"last_name\":\"Olawale\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":4,\"stats_id\":559334,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamizeolawale\",\"birth_date\":\"1989-04-17\",\"espn_id\":15653},\"1405\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030558\",\"first_name\":\"Barkevious\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1605571220153,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mingo\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"1405\",\"birth_city\":null,\"fantasy_data_id\":14949,\"years_exp\":7,\"hashtag\":\"#BarkeviousMingo-NFL-CHI-50\",\"search_first_name\":\"barkevious\",\"rotowire_id\":8708,\"rotoworld_id\":8381,\"active\":true,\"search_rank\":719,\"age\":30,\"full_name\":\"Barkevious Mingo\",\"sportradar_id\":\"92503804-7aff-4f22-adca-421800786179\",\"pandascore_id\":null,\"yahoo_id\":26629,\"last_name\":\"Mingo\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"West Monroe (LA)\",\"depth_chart_order\":2,\"stats_id\":498975,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"barkeviousmingo\",\"birth_date\":\"1990-10-04\",\"espn_id\":15805},\"4151\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033564\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604444745685,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"butt\",\"depth_chart_position\":\"TE\",\"player_id\":\"4151\",\"birth_city\":null,\"fantasy_data_id\":18997,\"years_exp\":3,\"hashtag\":\"#JakeButt-NFL-DEN-80\",\"search_first_name\":\"jake\",\"rotowire_id\":11888,\"rotoworld_id\":12254,\"active\":true,\"search_rank\":568,\"age\":25,\"full_name\":\"Jake Butt\",\"sportradar_id\":\"6d49d4d1-a254-48de-9f6f-eeecac82ad88\",\"pandascore_id\":null,\"yahoo_id\":30258,\"last_name\":\"Butt\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan\",\"high_school\":\"Pickerington North (OH)\",\"depth_chart_order\":4,\"stats_id\":728230,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jakebutt\",\"birth_date\":\"1995-07-11\",\"espn_id\":3045225},\"7393\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sirgeo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hoffman\",\"depth_chart_position\":null,\"player_id\":\"7393\",\"birth_city\":null,\"fantasy_data_id\":22378,\"years_exp\":0,\"hashtag\":\"#SirgeoHoffman-NFL-FA-0\",\"search_first_name\":\"sirgeo\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Sirgeo Hoffman\",\"sportradar_id\":\"dc9b0bae-a2c2-497a-a55f-01f81e40c8da\",\"pandascore_id\":null,\"yahoo_id\":33079,\"last_name\":\"Hoffman\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sirgeohoffman\",\"birth_date\":null,\"espn_id\":null},\"905\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027947\",\"first_name\":\"Tyron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604962828900,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"905\",\"birth_city\":null,\"fantasy_data_id\":13129,\"years_exp\":9,\"hashtag\":\"#TyronSmith-NFL-DAL-77\",\"search_first_name\":\"tyron\",\"rotowire_id\":7349,\"rotoworld_id\":6441,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tyron Smith\",\"sportradar_id\":\"c3f2ea91-98d6-4d37-b5bd-3c7ac07e5b24\",\"pandascore_id\":null,\"yahoo_id\":24796,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Rancho Verde (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tyronsmith\",\"birth_date\":\"1990-12-12\",\"espn_id\":13978},\"5118\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034416\",\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1566073827073,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":\"QB\",\"player_id\":\"5118\",\"birth_city\":null,\"fantasy_data_id\":20025,\"years_exp\":2,\"hashtag\":\"#TannerLee-NFL-FA-3\",\"search_first_name\":\"tanner\",\"rotowire_id\":12491,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tanner Lee\",\"sportradar_id\":\"ca457f6a-eb43-418a-97a7-4f4304dc5875\",\"pandascore_id\":null,\"yahoo_id\":31173,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":729555,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tannerlee\",\"birth_date\":\"1995-02-14\",\"espn_id\":3041097},\"3454\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anthrop\",\"depth_chart_position\":null,\"player_id\":\"3454\",\"birth_city\":null,\"fantasy_data_id\":18218,\"years_exp\":0,\"hashtag\":\"#DannyAnthrop-NFL-FA-6\",\"search_first_name\":\"danny\",\"rotowire_id\":11208,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Danny Anthrop\",\"sportradar_id\":\"d9579df1-83af-4890-9f30-bae42cce4ef3\",\"pandascore_id\":null,\"yahoo_id\":29595,\"last_name\":\"Anthrop\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692212,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dannyanthrop\",\"birth_date\":\"1993-05-29\",\"espn_id\":2977751},\"3902\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nolan\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frese\",\"depth_chart_position\":null,\"player_id\":\"3902\",\"birth_city\":null,\"fantasy_data_id\":18726,\"years_exp\":2,\"hashtag\":\"#NolanFrese-NFL-FA-48\",\"search_first_name\":\"nolan\",\"rotowire_id\":11681,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nolan Frese\",\"sportradar_id\":\"c6194bc4-ed96-4214-ab05-e16e5e5154ce\",\"pandascore_id\":null,\"yahoo_id\":30032,\"last_name\":\"Frese\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nolanfrese\",\"birth_date\":\"1992-07-29\",\"espn_id\":2575574},\"6810\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603410949420,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"LT\",\"player_id\":\"6810\",\"birth_city\":null,\"fantasy_data_id\":22025,\"years_exp\":0,\"hashtag\":\"#AndrewThomas-NFL-NYG-78\",\"search_first_name\":\"andrew\",\"rotowire_id\":14360,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Andrew Thomas\",\"sportradar_id\":\"b493daf9-e550-497c-b382-4ffda2e47260\",\"pandascore_id\":null,\"yahoo_id\":32674,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Pace Academy (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'5\\\"\",\"search_full_name\":\"andrewthomas\",\"birth_date\":\"1999-01-22\",\"espn_id\":4259566},\"1197\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029630\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603805152668,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brockers\",\"depth_chart_position\":\"LDE\",\"player_id\":\"1197\",\"birth_city\":null,\"fantasy_data_id\":14397,\"years_exp\":8,\"hashtag\":\"#MichaelBrockers-NFL-LAR-90\",\"search_first_name\":\"michael\",\"rotowire_id\":8152,\"rotoworld_id\":7466,\"active\":true,\"search_rank\":683,\"age\":29,\"full_name\":\"Michael Brockers\",\"sportradar_id\":\"30119d63-584c-4fd6-95aa-67b7af4998f5\",\"pandascore_id\":null,\"yahoo_id\":25724,\"last_name\":\"Brockers\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Chavez (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelbrockers\",\"birth_date\":\"1990-12-21\",\"espn_id\":14944},\"3739\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vernon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"3739\",\"birth_city\":null,\"fantasy_data_id\":18551,\"years_exp\":3,\"hashtag\":\"#VernonHarris-NFL-FA-30\",\"search_first_name\":\"vernon\",\"rotowire_id\":11644,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Vernon Harris\",\"sportradar_id\":\"cc37ac02-90e3-4d68-9591-bd1a77e01c16\",\"pandascore_id\":null,\"yahoo_id\":29881,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'1\\\"\",\"search_full_name\":\"vernonharris\",\"birth_date\":\"1994-06-25\",\"espn_id\":2969220},\"3043\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032004\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567352736809,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tye\",\"depth_chart_position\":null,\"player_id\":\"3043\",\"birth_city\":null,\"fantasy_data_id\":17754,\"years_exp\":5,\"hashtag\":\"#WillTye-NFL-FA-85\",\"search_first_name\":\"will\",\"rotowire_id\":10700,\"rotoworld_id\":11056,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Will Tye\",\"sportradar_id\":\"9ace8914-bf2c-422a-af03-62a78bc27880\",\"pandascore_id\":null,\"yahoo_id\":29046,\"last_name\":\"Tye\",\"metadata\":null,\"college\":\"Stony Brook\",\"high_school\":\"Salisbury (CT)\",\"depth_chart_order\":null,\"stats_id\":553297,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'2\\\"\",\"search_full_name\":\"willtye\",\"birth_date\":\"1991-11-04\",\"espn_id\":2512523},\"2278\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031084\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1527628802362,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pinkins\",\"depth_chart_position\":null,\"player_id\":\"2278\",\"birth_city\":null,\"fantasy_data_id\":16691,\"years_exp\":6,\"hashtag\":\"#EricPinkins-NFL-FA-42\",\"search_first_name\":\"eric\",\"rotowire_id\":9773,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Eric Pinkins\",\"sportradar_id\":\"4d492cde-8c65-44aa-a4c9-c637b4e22366\",\"pandascore_id\":null,\"yahoo_id\":27736,\"last_name\":\"Pinkins\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Inderkum (CA)\",\"depth_chart_order\":null,\"stats_id\":512370,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ericpinkins\",\"birth_date\":\"1991-08-07\",\"espn_id\":16849},\"6842\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605048061002,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gladney\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6842\",\"birth_city\":null,\"fantasy_data_id\":22058,\"years_exp\":0,\"hashtag\":\"#JeffGladney-NFL-MIN-20\",\"search_first_name\":\"jeff\",\"rotowire_id\":14548,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1893,\"age\":23,\"full_name\":\"Jeff Gladney\",\"sportradar_id\":\"6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4\",\"pandascore_id\":null,\"yahoo_id\":32701,\"last_name\":\"Gladney\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"New Boston (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeffgladney\",\"birth_date\":\"1996-12-12\",\"espn_id\":3676819},\"6691\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray Gene\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6691\",\"birth_city\":null,\"fantasy_data_id\":21591,\"years_exp\":0,\"hashtag\":\"#RayGenesmith-NFL-FA-20\",\"search_first_name\":\"raygene\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ray Gene smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"smith\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"\",\"search_full_name\":\"raygenesmith\",\"birth_date\":null,\"espn_id\":2538273},\"4864\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034057\",\"first_name\":\"Jevoni\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1536796203715,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"4864\",\"birth_city\":null,\"fantasy_data_id\":19764,\"years_exp\":3,\"hashtag\":\"#JevoniRobinson-NFL-FA-81\",\"search_first_name\":\"jevoni\",\"rotowire_id\":12486,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jevoni Robinson\",\"sportradar_id\":\"786225e3-3d9c-4d2b-a171-54ad8bbb8ce5\",\"pandascore_id\":null,\"yahoo_id\":30958,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Barry\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":719449,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jevonirobinson\",\"birth_date\":\"1992-11-16\",\"espn_id\":3007919},\"801\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028112\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1578620712512,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clay\",\"depth_chart_position\":\"TE\",\"player_id\":\"801\",\"birth_city\":null,\"fantasy_data_id\":12751,\"years_exp\":9,\"hashtag\":\"#CharlesClay-NFL-FA-85\",\"search_first_name\":\"charles\",\"rotowire_id\":7424,\"rotoworld_id\":6681,\"active\":true,\"search_rank\":625,\"age\":31,\"full_name\":\"Charles Clay\",\"sportradar_id\":\"04ca4fb9-194e-47fe-8fc8-adb5790a8e78\",\"pandascore_id\":null,\"yahoo_id\":24961,\"last_name\":\"Clay\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":\"Central (AR)\",\"depth_chart_order\":2,\"stats_id\":400516,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"charlesclay\",\"birth_date\":\"1989-02-13\",\"espn_id\":14145},\"310\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Heath\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"310\",\"birth_city\":null,\"fantasy_data_id\":7635,\"years_exp\":15,\"hashtag\":\"#HeathMiller-NFL-FA-83\",\"search_first_name\":\"heath\",\"rotowire_id\":4430,\"rotoworld_id\":3145,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Heath Miller\",\"sportradar_id\":\"c6ac349a-b159-449c-80c7-f9b6138b48af\",\"pandascore_id\":null,\"yahoo_id\":7206,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Honaker (VA)\",\"depth_chart_order\":null,\"stats_id\":156795,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'5\\\"\",\"search_full_name\":\"heathmiller\",\"birth_date\":\"1982-10-22\",\"espn_id\":8444},\"2713\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harper\",\"depth_chart_position\":null,\"player_id\":\"2713\",\"birth_city\":null,\"fantasy_data_id\":17181,\"years_exp\":0,\"hashtag\":\"#JoshHarper-NFL-FA-19\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Josh Harper\",\"sportradar_id\":\"53d67ecf-bd7b-4ffe-a1fb-75e1ad2fd546\",\"pandascore_id\":null,\"yahoo_id\":28866,\"last_name\":\"Harper\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":562355,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshharper\",\"birth_date\":\"1991-12-01\",\"espn_id\":2517237},\"461\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vick\",\"depth_chart_position\":null,\"player_id\":\"461\",\"birth_city\":null,\"fantasy_data_id\":9447,\"years_exp\":19,\"hashtag\":\"#MichaelVick-NFL-FA-2\",\"search_first_name\":\"michael\",\"rotowire_id\":2193,\"rotoworld_id\":2107,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Michael Vick\",\"sportradar_id\":\"b797d6fa-1520-4b3d-a212-157afd4a3bd0\",\"pandascore_id\":null,\"yahoo_id\":5448,\"last_name\":\"Vick\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Warwick (VA)\",\"depth_chart_order\":null,\"stats_id\":25567,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelvick\",\"birth_date\":\"1980-06-26\",\"espn_id\":2549},\"2045\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alden\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"darby\",\"depth_chart_position\":null,\"player_id\":\"2045\",\"birth_city\":null,\"fantasy_data_id\":16337,\"years_exp\":1,\"hashtag\":\"#AldenDarby-NFL-FA-36\",\"search_first_name\":\"alden\",\"rotowire_id\":9311,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alden Darby\",\"sportradar_id\":\"b299a49e-5eea-4a46-9219-9402e80873c5\",\"pandascore_id\":null,\"yahoo_id\":27846,\"last_name\":\"Darby\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"aldendarby\",\"birth_date\":\"1992-06-22\",\"espn_id\":16985},\"6262\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1559868928159,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"6262\",\"birth_city\":null,\"fantasy_data_id\":21197,\"years_exp\":1,\"hashtag\":\"#JeremiahHarris-NFL-NYG-90\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":14083,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jeremiah Harris\",\"sportradar_id\":\"d6814706-b6a3-403f-bd2e-f46b92507e90\",\"pandascore_id\":null,\"yahoo_id\":32236,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremiahharris\",\"birth_date\":null,\"espn_id\":3125853},\"1108\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525299601237,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"freeman\",\"depth_chart_position\":null,\"player_id\":\"1108\",\"birth_city\":null,\"fantasy_data_id\":13999,\"years_exp\":12,\"hashtag\":\"#JerrellFreeman-NFL-FA-50\",\"search_first_name\":\"jerrell\",\"rotowire_id\":5891,\"rotoworld_id\":7472,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jerrell Freeman\",\"sportradar_id\":\"0d7e6884-20da-4b59-8fd5-1e15c5000c36\",\"pandascore_id\":null,\"yahoo_id\":25697,\"last_name\":\"Freeman\",\"metadata\":null,\"college\":\"Mary Hardin-Baylor\",\"high_school\":\"Waco University (TX)\",\"depth_chart_order\":null,\"stats_id\":441739,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jerrellfreeman\",\"birth_date\":\"1986-05-01\",\"espn_id\":11533},\"6955\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606091736350,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6955\",\"birth_city\":null,\"fantasy_data_id\":21970,\"years_exp\":0,\"hashtag\":\"#JamesRobinson-NFL-JAX-30\",\"search_first_name\":\"james\",\"rotowire_id\":14660,\"rotoworld_id\":null,\"active\":true,\"search_rank\":162,\"age\":22,\"full_name\":\"James Robinson\",\"sportradar_id\":\"5fc196a1-2015-49c7-85b2-1adbd2c33cf5\",\"pandascore_id\":null,\"yahoo_id\":33138,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"Rockford Lutheran (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jamesrobinson\",\"birth_date\":\"1998-08-09\",\"espn_id\":4052042},\"7395\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693382057,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"medaris\",\"depth_chart_position\":null,\"player_id\":\"7395\",\"birth_city\":null,\"fantasy_data_id\":22380,\"years_exp\":0,\"hashtag\":\"#RashadMedaris-NFL-FA-0\",\"search_first_name\":\"rashad\",\"rotowire_id\":15128,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rashad Medaris\",\"sportradar_id\":\"dc3922d9-bb1d-4e80-be35-7efcf9ef79a4\",\"pandascore_id\":null,\"yahoo_id\":33083,\"last_name\":\"Medaris\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rashadmedaris\",\"birth_date\":\"1996-10-09\",\"espn_id\":null},\"802\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"devlin\",\"depth_chart_position\":null,\"player_id\":\"802\",\"birth_city\":null,\"fantasy_data_id\":12752,\"years_exp\":9,\"hashtag\":\"#PatDevlin-NFL-FA-3\",\"search_first_name\":\"pat\",\"rotowire_id\":7356,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Pat Devlin\",\"sportradar_id\":\"5f6d1cf2-00ea-4316-81db-eb4651465f78\",\"pandascore_id\":null,\"yahoo_id\":25323,\"last_name\":\"Devlin\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"East (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"patdevlin\",\"birth_date\":\"1988-04-12\",\"espn_id\":14240},\"5902\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035022\",\"first_name\":\"Penny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605472212380,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hart\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5902\",\"birth_city\":null,\"fantasy_data_id\":20793,\"years_exp\":1,\"hashtag\":\"#PennyHart-NFL-SEA-19\",\"search_first_name\":\"penny\",\"rotowire_id\":13616,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1548,\"age\":24,\"full_name\":\"Penny Hart\",\"sportradar_id\":\"a296f2fe-7af8-4796-b50a-28ef010d0933\",\"pandascore_id\":null,\"yahoo_id\":32293,\"last_name\":\"Hart\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"King's Ridge Christian (GA)\",\"depth_chart_order\":2,\"stats_id\":878935,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'8\\\"\",\"search_full_name\":\"pennyhart\",\"birth_date\":\"1996-07-05\",\"espn_id\":3917546},\"1475\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sio\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"1475\",\"birth_city\":null,\"fantasy_data_id\":15070,\"years_exp\":7,\"hashtag\":\"#SioMoore-NFL-FA-54\",\"search_first_name\":\"sio\",\"rotowire_id\":8721,\"rotoworld_id\":8508,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sio Moore\",\"sportradar_id\":\"e2aeac51-e24f-47db-bbfa-2b6ba91b5139\",\"pandascore_id\":null,\"yahoo_id\":26689,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Apex (NC)\",\"depth_chart_order\":null,\"stats_id\":465114,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"siomoore\",\"birth_date\":\"1990-05-02\",\"espn_id\":15859},\"2\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zuttah\",\"depth_chart_position\":null,\"player_id\":\"2\",\"birth_city\":null,\"fantasy_data_id\":127,\"years_exp\":12,\"hashtag\":\"#JeremyZuttah-NFL-FA-64\",\"search_first_name\":\"jeremy\",\"rotowire_id\":5809,\"rotoworld_id\":4836,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jeremy Zuttah\",\"sportradar_id\":\"fcaa51ea-0923-4afc-a7cf-22e47a14acf4\",\"pandascore_id\":null,\"yahoo_id\":8860,\"last_name\":\"Zuttah\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Stevens (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jeremyzuttah\",\"birth_date\":\"1986-06-01\",\"espn_id\":11317},\"316\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcom\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"floyd\",\"depth_chart_position\":null,\"player_id\":\"316\",\"birth_city\":null,\"fantasy_data_id\":7711,\"years_exp\":16,\"hashtag\":\"#MalcomFloyd-NFL-FA-80\",\"search_first_name\":\"malcom\",\"rotowire_id\":5080,\"rotoworld_id\":3086,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Malcom Floyd\",\"sportradar_id\":\"7429eaaa-0124-4ba6-820b-60239387d5b1\",\"pandascore_id\":null,\"yahoo_id\":7149,\"last_name\":\"Floyd\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"River City (CA)\",\"depth_chart_order\":null,\"stats_id\":251229,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'5\\\"\",\"search_full_name\":\"malcomfloyd\",\"birth_date\":\"1981-09-08\",\"espn_id\":6016},\"4107\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033548\",\"first_name\":\"Chidobe\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605039614200,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"awuzie\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4107\",\"birth_city\":null,\"fantasy_data_id\":18953,\"years_exp\":3,\"hashtag\":\"#ChidobeAwuzie-NFL-DAL-24\",\"search_first_name\":\"chidobe\",\"rotowire_id\":12009,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1149,\"age\":25,\"full_name\":\"Chidobe Awuzie\",\"sportradar_id\":\"5e11c306-6387-46ed-8a6d-3ff7a8210ed5\",\"pandascore_id\":null,\"yahoo_id\":30173,\"last_name\":\"Awuzie\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Oak Grove (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chidobeawuzie\",\"birth_date\":\"1995-05-24\",\"espn_id\":3052101},\"6079\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035158\",\"first_name\":\"Gary\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"6079\",\"birth_city\":null,\"fantasy_data_id\":20832,\"years_exp\":1,\"hashtag\":\"#GaryJohnson-NFL-FA-33\",\"search_first_name\":\"gary\",\"rotowire_id\":13869,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Gary Johnson\",\"sportradar_id\":\"b82c2d22-1a6e-453f-ba11-9a048bf36f63\",\"pandascore_id\":null,\"yahoo_id\":32360,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"garyjohnson\",\"birth_date\":\"1996-08-02\",\"espn_id\":4259349},\"5349\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034687\",\"first_name\":\"Korey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567130147936,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cunningham\",\"depth_chart_position\":\"LT\",\"player_id\":\"5349\",\"birth_city\":null,\"fantasy_data_id\":20047,\"years_exp\":2,\"hashtag\":\"#KoreyCunningham-NFL-NE-74\",\"search_first_name\":\"korey\",\"rotowire_id\":13015,\"rotoworld_id\":13353,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Korey Cunningham\",\"sportradar_id\":\"afaf2f2c-06e2-4d7d-9d6e-1b9bc5a1c8ff\",\"pandascore_id\":null,\"yahoo_id\":31224,\"last_name\":\"Cunningham\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Cincinnati\",\"high_school\":\"Montevallo (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"koreycunningham\",\"birth_date\":\"1995-05-17\",\"espn_id\":3056899},\"6776\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vanpelt\",\"depth_chart_position\":null,\"player_id\":\"6776\",\"birth_city\":null,\"fantasy_data_id\":21860,\"years_exp\":0,\"hashtag\":\"#AlexVanPelt-NFL-FA-0\",\"search_first_name\":\"alex\",\"rotowire_id\":null,\"rotoworld_id\":10336,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Alex Van Pelt\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Van Pelt\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"alexvanpelt\",\"birth_date\":null,\"espn_id\":null},\"6528\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035192\",\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606142114108,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slye\",\"depth_chart_position\":\"K\",\"player_id\":\"6528\",\"birth_city\":null,\"fantasy_data_id\":21519,\"years_exp\":1,\"hashtag\":\"#JoeySlye-NFL-CAR-4\",\"search_first_name\":\"joey\",\"rotowire_id\":14172,\"rotoworld_id\":null,\"active\":true,\"search_rank\":407,\"age\":24,\"full_name\":\"Joey Slye\",\"sportradar_id\":\"ef4998e0-c9ef-4afe-88ab-d09b48975a08\",\"pandascore_id\":null,\"yahoo_id\":32384,\"last_name\":\"Slye\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"North Stafford (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joeyslye\",\"birth_date\":\"1996-04-10\",\"espn_id\":3124084},\"453\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"laurinaitis\",\"depth_chart_position\":null,\"player_id\":\"453\",\"birth_city\":null,\"fantasy_data_id\":9274,\"years_exp\":11,\"hashtag\":\"#JamesLaurinaitis-NFL-FA-53\",\"search_first_name\":\"james\",\"rotowire_id\":6082,\"rotoworld_id\":5220,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"James Laurinaitis\",\"sportradar_id\":\"2a2fb6c6-06a8-456a-a4d1-74c22f554411\",\"pandascore_id\":null,\"yahoo_id\":9299,\"last_name\":\"Laurinaitis\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Wayzata (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jameslaurinaitis\",\"birth_date\":\"1986-12-03\",\"espn_id\":12454},\"1536\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030575\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601482809159,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rhodes\",\"depth_chart_position\":\"CB\",\"player_id\":\"1536\",\"birth_city\":null,\"fantasy_data_id\":15151,\"years_exp\":7,\"hashtag\":\"#XavierRhodes-NFL-IND-27\",\"search_first_name\":\"xavier\",\"rotowire_id\":8637,\"rotoworld_id\":8386,\"active\":true,\"search_rank\":735,\"age\":30,\"full_name\":\"Xavier Rhodes\",\"sportradar_id\":\"81a5c010-2e89-4b65-a924-015cf4ea3f94\",\"pandascore_id\":null,\"yahoo_id\":26648,\"last_name\":\"Rhodes\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Norland (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"xavierrhodes\",\"birth_date\":\"1990-06-19\",\"espn_id\":15810},\"3600\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Channing\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1537404002666,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":null,\"player_id\":\"3600\",\"birth_city\":null,\"fantasy_data_id\":18385,\"years_exp\":4,\"hashtag\":\"#ChanningWard-NFL-FA-71\",\"search_first_name\":\"channing\",\"rotowire_id\":11415,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Channing Ward\",\"sportradar_id\":\"29b80727-e28c-43a0-8f45-dffb881c6704\",\"pandascore_id\":null,\"yahoo_id\":29593,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'4\\\"\",\"search_full_name\":\"channingward\",\"birth_date\":\"1992-09-17\",\"espn_id\":2984056},\"7491\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cedrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lattimore\",\"depth_chart_position\":null,\"player_id\":\"7491\",\"birth_city\":null,\"fantasy_data_id\":22465,\"years_exp\":0,\"hashtag\":\"#CedrickLattimore-NFL-SEA-75\",\"search_first_name\":\"cedrick\",\"rotowire_id\":15124,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2014,\"age\":22,\"full_name\":\"Cedrick Lattimore\",\"sportradar_id\":\"7dcdf083-2f41-4788-a668-000cbfd1c8b1\",\"pandascore_id\":null,\"yahoo_id\":33285,\"last_name\":\"Lattimore\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"East English Village Prep (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cedricklattimore\",\"birth_date\":\"1998-02-06\",\"espn_id\":4036138},\"5038\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034764\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606441561001,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gallup\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5038\",\"birth_city\":null,\"fantasy_data_id\":19867,\"years_exp\":2,\"hashtag\":\"#MichaelGallup-NFL-DAL-13\",\"search_first_name\":\"michael\",\"rotowire_id\":12810,\"rotoworld_id\":13149,\"active\":true,\"search_rank\":71,\"age\":24,\"full_name\":\"Michael Gallup\",\"sportradar_id\":\"9e174ff2-ca0e-4e6b-96f7-90f0088f7edd\",\"pandascore_id\":null,\"yahoo_id\":31051,\"last_name\":\"Gallup\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Monroe (GA)\",\"depth_chart_order\":1,\"stats_id\":912070,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelgallup\",\"birth_date\":\"1996-03-04\",\"espn_id\":4036348},\"2692\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevrin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brandon\",\"depth_chart_position\":null,\"player_id\":\"2692\",\"birth_city\":null,\"fantasy_data_id\":17160,\"years_exp\":1,\"hashtag\":\"#TevrinBrandon-NFL-FA-33\",\"search_first_name\":\"tevrin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tevrin Brandon\",\"sportradar_id\":\"7b70f39b-6508-41aa-a743-863f43a41fc5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brandon\",\"metadata\":null,\"college\":\"Monmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"tevrinbrandon\",\"birth_date\":\"1990-12-09\",\"espn_id\":2475202},\"888\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028767\",\"first_name\":\"Sterling\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1537651502700,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"888\",\"birth_city\":null,\"fantasy_data_id\":13070,\"years_exp\":9,\"hashtag\":\"#SterlingMoore-NFL-FA-30\",\"search_first_name\":\"sterling\",\"rotowire_id\":7937,\"rotoworld_id\":7118,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sterling Moore\",\"sportradar_id\":\"036fd3fc-e7a0-4f75-9019-8a5badff5e5f\",\"pandascore_id\":null,\"yahoo_id\":25401,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Deer Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":512674,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"sterlingmoore\",\"birth_date\":\"1990-02-03\",\"espn_id\":14802},\"7219\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Branden\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596398417783,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowen\",\"depth_chart_position\":null,\"player_id\":\"7219\",\"birth_city\":null,\"fantasy_data_id\":22221,\"years_exp\":0,\"hashtag\":\"#BrandenBowen-NFL-FA-0\",\"search_first_name\":\"branden\",\"rotowire_id\":14966,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Branden Bowen\",\"sportradar_id\":\"be193ede-9edf-4c21-aa48-35310703da14\",\"pandascore_id\":null,\"yahoo_id\":33134,\"last_name\":\"Bowen\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brandenbowen\",\"birth_date\":\"1996-09-12\",\"espn_id\":3915509},\"6612\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035413\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606274155891,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gifford\",\"depth_chart_position\":null,\"player_id\":\"6612\",\"birth_city\":null,\"fantasy_data_id\":21449,\"years_exp\":1,\"hashtag\":\"#LukeGifford-NFL-DAL-57\",\"search_first_name\":\"luke\",\"rotowire_id\":14068,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1737,\"age\":25,\"full_name\":\"Luke Gifford\",\"sportradar_id\":\"bc8260d5-231f-4337-9979-7c1c40bc6cd0\",\"pandascore_id\":null,\"yahoo_id\":32205,\"last_name\":\"Gifford\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Lincoln Southeast (NE)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"Sus\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lukegifford\",\"birth_date\":\"1995-08-28\",\"espn_id\":3116097},\"4208\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033957\",\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599430260827,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4208\",\"birth_city\":null,\"fantasy_data_id\":19054,\"years_exp\":3,\"hashtag\":\"#RodneyAdams-NFL-CHI-13\",\"search_first_name\":\"rodney\",\"rotowire_id\":11844,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1196,\"age\":26,\"full_name\":\"Rodney Adams\",\"sportradar_id\":\"dc8a06c8-538a-4408-8a2b-1d9bfafb8a3c\",\"pandascore_id\":null,\"yahoo_id\":30283,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Lakewood (FL)\",\"depth_chart_order\":3,\"stats_id\":746602,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rodneyadams\",\"birth_date\":\"1994-09-15\",\"espn_id\":3059918},\"2147\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030761\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605747944021,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"WLB\",\"player_id\":\"2147\",\"birth_city\":null,\"fantasy_data_id\":16492,\"years_exp\":6,\"hashtag\":\"#JoeThomas-NFL-DAL-48\",\"search_first_name\":\"joe\",\"rotowire_id\":10091,\"rotoworld_id\":null,\"active\":true,\"search_rank\":829,\"age\":29,\"full_name\":\"Joe Thomas\",\"sportradar_id\":\"fa059382-e52c-40c8-93fd-bd69decdc1c8\",\"pandascore_id\":null,\"yahoo_id\":28089,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Blackville-Hilda (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joethomas\",\"birth_date\":\"1991-05-06\",\"espn_id\":17266},\"7266\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bruffy\",\"depth_chart_position\":null,\"player_id\":\"7266\",\"birth_city\":null,\"fantasy_data_id\":22264,\"years_exp\":0,\"hashtag\":\"#TravisBruffy-NFL-FA-0\",\"search_first_name\":\"travis\",\"rotowire_id\":15071,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Travis Bruffy\",\"sportradar_id\":\"45eadb1c-7e72-4bc9-bb07-3a4b428cf932\",\"pandascore_id\":null,\"yahoo_id\":33223,\"last_name\":\"Bruffy\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"travisbruffy\",\"birth_date\":\"1998-05-26\",\"espn_id\":4043131},\"1503\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":null,\"player_id\":\"1503\",\"birth_city\":null,\"fantasy_data_id\":15103,\"years_exp\":2,\"hashtag\":\"#MichaelFord-NFL-FA-32\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Ford\",\"sportradar_id\":\"2e163812-31e4-42be-a724-3ab919caf782\",\"pandascore_id\":null,\"yahoo_id\":26937,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'9\\\"\",\"search_full_name\":\"michaelford\",\"birth_date\":\"1990-05-27\",\"espn_id\":16135},\"2040\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031167\",\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1582605935285,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simonson\",\"depth_chart_position\":null,\"player_id\":\"2040\",\"birth_city\":null,\"fantasy_data_id\":16327,\"years_exp\":6,\"hashtag\":\"#ScottSimonson-NFL-FA-83\",\"search_first_name\":\"scott\",\"rotowire_id\":10016,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Scott Simonson\",\"sportradar_id\":\"b77aa319-b97f-4316-84c5-e51390432644\",\"pandascore_id\":null,\"yahoo_id\":28215,\"last_name\":\"Simonson\",\"metadata\":null,\"college\":\"Assumption\",\"high_school\":\"Middletown South (NJ)\",\"depth_chart_order\":null,\"stats_id\":564881,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"scottsimonson\",\"birth_date\":\"1992-04-13\",\"espn_id\":17391},\"1803\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031371\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1565988689452,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1803\",\"birth_city\":null,\"fantasy_data_id\":15978,\"years_exp\":6,\"hashtag\":\"#MarcusSmith-NFL-FA-46\",\"search_first_name\":\"marcus\",\"rotowire_id\":9340,\"rotoworld_id\":9554,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marcus Smith\",\"sportradar_id\":\"46aa49f6-6720-49dd-a13b-3c055d304fd9\",\"pandascore_id\":null,\"yahoo_id\":27554,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Hardaway (GA)\",\"depth_chart_order\":null,\"stats_id\":553701,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marcussmith\",\"birth_date\":\"1992-03-31\",\"espn_id\":16712},\"6990\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1604432444477,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"muse\",\"depth_chart_position\":null,\"player_id\":\"6990\",\"birth_city\":null,\"fantasy_data_id\":21932,\"years_exp\":0,\"hashtag\":\"#TannerMuse-NFL-LV-55\",\"search_first_name\":\"tanner\",\"rotowire_id\":14690,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tanner Muse\",\"sportradar_id\":\"b9f364a0-5553-4475-8388-6dfd1d7a2e62\",\"pandascore_id\":null,\"yahoo_id\":32770,\"last_name\":\"Muse\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"South Point (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tannermuse\",\"birth_date\":\"1996-09-06\",\"espn_id\":3728263},\"7321\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":null,\"player_id\":\"7321\",\"birth_city\":null,\"fantasy_data_id\":22313,\"years_exp\":0,\"hashtag\":\"#RyanRoberts-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":15085,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ryan Roberts\",\"sportradar_id\":\"f82d1586-d2e1-4935-9cab-7fc65a771f18\",\"pandascore_id\":null,\"yahoo_id\":32989,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ryanroberts\",\"birth_date\":\"1996-10-03\",\"espn_id\":3921955},\"2172\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031279\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600617306515,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":\"LT\",\"player_id\":\"2172\",\"birth_city\":null,\"fantasy_data_id\":16531,\"years_exp\":6,\"hashtag\":\"#JakeMatthews-NFL-ATL-70\",\"search_first_name\":\"jake\",\"rotowire_id\":9248,\"rotoworld_id\":9372,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jake Matthews\",\"sportradar_id\":\"ee9c975e-68f9-49cc-886d-f1d00286305d\",\"pandascore_id\":null,\"yahoo_id\":27534,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Elkins (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jakematthews\",\"birth_date\":\"1992-02-11\",\"espn_id\":16713},\"4661\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033697\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602003906254,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4661\",\"birth_city\":null,\"fantasy_data_id\":19560,\"years_exp\":3,\"hashtag\":\"#MichaelDavis-NFL-LAC-43\",\"search_first_name\":\"michael\",\"rotowire_id\":12357,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1276,\"age\":25,\"full_name\":\"Michael Davis\",\"sportradar_id\":\"86099301-67d0-4370-8e42-d14f34bbbb91\",\"pandascore_id\":null,\"yahoo_id\":30422,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Glendale (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaeldavis\",\"birth_date\":\"1995-01-06\",\"espn_id\":3053795},\"7271\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"black\",\"depth_chart_position\":null,\"player_id\":\"7271\",\"birth_city\":null,\"fantasy_data_id\":22269,\"years_exp\":0,\"hashtag\":\"#HenryBlack-NFL-GB-41\",\"search_first_name\":\"henry\",\"rotowire_id\":15070,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1963,\"age\":23,\"full_name\":\"Henry Black\",\"sportradar_id\":\"959f035c-b8ce-45a3-bbe3-fda439c1e9f1\",\"pandascore_id\":null,\"yahoo_id\":33222,\"last_name\":\"Black\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Woodlawn (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'11\\\"\",\"search_full_name\":\"henryblack\",\"birth_date\":\"1997-01-03\",\"espn_id\":3928920},\"7186\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596398117594,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7186\",\"birth_city\":null,\"fantasy_data_id\":22188,\"years_exp\":0,\"hashtag\":\"#JordanWilliams-NFL-FA-0\",\"search_first_name\":\"jordan\",\"rotowire_id\":14840,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jordan Williams\",\"sportradar_id\":\"2e3b8c55-fe3a-4ce5-8135-0a46d014af5d\",\"pandascore_id\":null,\"yahoo_id\":33068,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanwilliams\",\"birth_date\":\"1997-05-26\",\"espn_id\":null},\"1306\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"1306\",\"birth_city\":null,\"fantasy_data_id\":14787,\"years_exp\":9,\"hashtag\":\"#JeremyRoss-NFL-FA-15\",\"search_first_name\":\"jeremy\",\"rotowire_id\":7654,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jeremy Ross\",\"sportradar_id\":\"ac45cfcf-6a9b-477c-8b49-45f624831d8c\",\"pandascore_id\":null,\"yahoo_id\":25312,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Laguna Creek (CA)\",\"depth_chart_order\":null,\"stats_id\":332551,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeremyross\",\"birth_date\":\"1988-03-16\",\"espn_id\":14500},\"6216\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035142\",\"first_name\":\"Ugochukwu\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605231914759,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"amadi\",\"depth_chart_position\":\"FS\",\"player_id\":\"6216\",\"birth_city\":null,\"fantasy_data_id\":21111,\"years_exp\":1,\"hashtag\":\"#UgochukwuAmadi-NFL-SEA-28\",\"search_first_name\":\"ugochukwu\",\"rotowire_id\":13839,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1662,\"age\":23,\"full_name\":\"Ugochukwu Amadi\",\"sportradar_id\":\"9448aee3-538c-4ff3-8781-bc848b086bfc\",\"pandascore_id\":null,\"yahoo_id\":31964,\"last_name\":\"Amadi\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Overton (TN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ugochukwuamadi\",\"birth_date\":\"1997-05-16\",\"espn_id\":3886834},\"4082\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033282\",\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606523728028,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"samuel\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4082\",\"birth_city\":null,\"fantasy_data_id\":18928,\"years_exp\":3,\"hashtag\":\"#CurtisSamuel-NFL-CAR-10\",\"search_first_name\":\"curtis\",\"rotowire_id\":11710,\"rotoworld_id\":12219,\"active\":true,\"search_rank\":175,\"age\":24,\"full_name\":\"Curtis Samuel\",\"sportradar_id\":\"66a21b6d-97e5-4732-8bb0-062145d6bbc6\",\"pandascore_id\":null,\"yahoo_id\":30153,\"last_name\":\"Samuel\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Erasmus Hall (NY)\",\"depth_chart_order\":1,\"stats_id\":821389,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"curtissamuel\",\"birth_date\":\"1996-08-11\",\"espn_id\":3121427},\"426\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"raji\",\"depth_chart_position\":null,\"player_id\":\"426\",\"birth_city\":null,\"fantasy_data_id\":9057,\"years_exp\":11,\"hashtag\":\"#BJRaji-NFL-FA-90\",\"search_first_name\":\"bj\",\"rotowire_id\":6065,\"rotoworld_id\":5210,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"B.J. Raji\",\"sportradar_id\":\"034b3ecd-3827-40f3-ab31-198106fde215\",\"pandascore_id\":null,\"yahoo_id\":9273,\"last_name\":\"Raji\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Regional (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"337\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bjraji\",\"birth_date\":\"1986-07-11\",\"espn_id\":12447},\"2712\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"renaud\",\"depth_chart_position\":null,\"player_id\":\"2712\",\"birth_city\":null,\"fantasy_data_id\":17180,\"years_exp\":1,\"hashtag\":\"#BlakeRenaud-NFL-FA-49\",\"search_first_name\":\"blake\",\"rotowire_id\":10810,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Blake Renaud\",\"sportradar_id\":\"9c55a6f7-c387-43be-9561-b69a00d7d278\",\"pandascore_id\":null,\"yahoo_id\":28842,\"last_name\":\"Renaud\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"blakerenaud\",\"birth_date\":\"1992-10-06\",\"espn_id\":2573314},\"4418\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033384\",\"first_name\":\"Leshun\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535223005694,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"danielsjr\",\"depth_chart_position\":null,\"player_id\":\"4418\",\"birth_city\":null,\"fantasy_data_id\":19278,\"years_exp\":3,\"hashtag\":\"#LeshunDanielsJr-NFL-FA-46\",\"search_first_name\":\"leshun\",\"rotowire_id\":12229,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Leshun Daniels Jr.\",\"sportradar_id\":\"1b577eee-a177-4b56-833b-4e55e0632585\",\"pandascore_id\":null,\"yahoo_id\":30658,\"last_name\":\"Daniels Jr.\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740712,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"leshundanielsjr\",\"birth_date\":\"1995-06-04\",\"espn_id\":3040143},\"883\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028030\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1545266710173,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barksdale\",\"depth_chart_position\":null,\"player_id\":\"883\",\"birth_city\":null,\"fantasy_data_id\":13051,\"years_exp\":9,\"hashtag\":\"#JoeBarksdale-NFL-FA-60\",\"search_first_name\":\"joe\",\"rotowire_id\":7631,\"rotoworld_id\":6508,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Joe Barksdale\",\"sportradar_id\":\"d954bad7-541b-43d5-9918-ef1cead10b13\",\"pandascore_id\":null,\"yahoo_id\":24879,\"last_name\":\"Barksdale\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Cass (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joebarksdale\",\"birth_date\":\"1989-01-04\",\"espn_id\":14030},\"1872\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031170\",\"first_name\":\"Timmy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603228539814,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jernigan\",\"depth_chart_position\":\"NT\",\"player_id\":\"1872\",\"birth_city\":null,\"fantasy_data_id\":16088,\"years_exp\":6,\"hashtag\":\"#TimmyJernigan-NFL-DEN-77\",\"search_first_name\":\"timmy\",\"rotowire_id\":9290,\"rotoworld_id\":9380,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Timmy Jernigan\",\"sportradar_id\":\"1de5c7ea-54dd-4a1a-a319-4429ce604b3d\",\"pandascore_id\":null,\"yahoo_id\":27576,\"last_name\":\"Jernigan\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida State\",\"high_school\":\"Columbia (FL)\",\"depth_chart_order\":2,\"stats_id\":605418,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'2\\\"\",\"search_full_name\":\"timmyjernigan\",\"birth_date\":\"1992-09-24\",\"espn_id\":16785},\"6486\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035124\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"toogood\",\"depth_chart_position\":null,\"player_id\":\"6486\",\"birth_city\":null,\"fantasy_data_id\":21170,\"years_exp\":1,\"hashtag\":\"#CJToogood-NFL-BAL-61\",\"search_first_name\":\"cj\",\"rotowire_id\":14128,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"C.J. Toogood\",\"sportradar_id\":\"98074bf2-0c4d-48d4-b3c9-52f707a22280\",\"pandascore_id\":null,\"yahoo_id\":32310,\"last_name\":\"Toogood\",\"metadata\":null,\"college\":\"Elon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cjtoogood\",\"birth_date\":\"1997-03-29\",\"espn_id\":3912157},\"7207\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603929929806,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"7207\",\"birth_city\":null,\"fantasy_data_id\":22210,\"years_exp\":0,\"hashtag\":\"#IsiahBrown-NFL-BUF-38\",\"search_first_name\":\"isiah\",\"rotowire_id\":15165,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1951,\"age\":22,\"full_name\":\"Isiah Brown\",\"sportradar_id\":\"5a97c54f-85ab-4829-a7ed-2f12dcc2eb3e\",\"pandascore_id\":null,\"yahoo_id\":33356,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":\"Tampa Bay Tech (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"isiahbrown\",\"birth_date\":\"1998-04-25\",\"espn_id\":4046350},\"6653\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Israel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"helms\",\"depth_chart_position\":null,\"player_id\":\"6653\",\"birth_city\":null,\"fantasy_data_id\":21545,\"years_exp\":0,\"hashtag\":\"#IsraelHelms-NFL-FA-0\",\"search_first_name\":\"israel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Israel Helms\",\"sportradar_id\":\"8ec64815-7d39-478a-8d6b-7f044cbbaeea\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Helms\",\"metadata\":null,\"college\":\"Wayne State (MI)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"israelhelms\",\"birth_date\":\"1997-06-18\",\"espn_id\":null},\"6157\":{\"position\":\"NT\",\"injury_notes\":\"Wren's injury occurred during practice and he could potenitally miss the entire season.\",\"birth_country\":null,\"gsis_id\":\" 00-0035260\",\"first_name\":\"Renell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598318153577,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"wren\",\"depth_chart_position\":null,\"player_id\":\"6157\",\"birth_city\":null,\"fantasy_data_id\":20998,\"years_exp\":1,\"hashtag\":\"#RenellWren-NFL-CIN-95\",\"search_first_name\":\"renell\",\"rotowire_id\":13740,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Renell Wren\",\"sportradar_id\":\"0ee41c7d-1afa-4ac7-ae6d-66e4da18052d\",\"pandascore_id\":null,\"yahoo_id\":31957,\"last_name\":\"Wren\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Lutheran (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"renellwren\",\"birth_date\":\"1995-10-23\",\"espn_id\":3128815},\"1159\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029672\",\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599009334281,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reiff\",\"depth_chart_position\":\"LT\",\"player_id\":\"1159\",\"birth_city\":null,\"fantasy_data_id\":14222,\"years_exp\":8,\"hashtag\":\"#RileyReiff-NFL-MIN-71\",\"search_first_name\":\"riley\",\"rotowire_id\":8119,\"rotoworld_id\":7437,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Riley Reiff\",\"sportradar_id\":\"8048bdd1-62cf-4d01-8257-741a585dae8e\",\"pandascore_id\":null,\"yahoo_id\":25733,\"last_name\":\"Reiff\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Parkston (SD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rileyreiff\",\"birth_date\":\"1988-12-01\",\"espn_id\":14930},\"5400\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034216\",\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565278551249,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathis\",\"depth_chart_position\":null,\"player_id\":\"5400\",\"birth_city\":null,\"fantasy_data_id\":20446,\"years_exp\":2,\"hashtag\":\"#TrevonMathis-NFL-FA-35\",\"search_first_name\":\"trevon\",\"rotowire_id\":13150,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trevon Mathis\",\"sportradar_id\":\"034cade9-af0c-4c85-b5c6-9d6ada777dcd\",\"pandascore_id\":null,\"yahoo_id\":31236,\"last_name\":\"Mathis\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trevonmathis\",\"birth_date\":\"1995-09-12\",\"espn_id\":3126096},\"3471\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032672\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1527116701448,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"3471\",\"birth_city\":null,\"fantasy_data_id\":18235,\"years_exp\":4,\"hashtag\":\"#AaronGreen-NFL-FA-36\",\"search_first_name\":\"aaron\",\"rotowire_id\":11012,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Aaron Green\",\"sportradar_id\":\"cd0f8e25-7df1-406c-bfc4-058a435aec3b\",\"pandascore_id\":null,\"yahoo_id\":29715,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":590808,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"aarongreen\",\"birth_date\":\"1992-10-15\",\"espn_id\":2570994},\"6080\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035612\",\"first_name\":\"Vitas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hrynkiewicz\",\"depth_chart_position\":\"C\",\"player_id\":\"6080\",\"birth_city\":null,\"fantasy_data_id\":20814,\"years_exp\":1,\"hashtag\":\"#VitasHrynkiewicz-NFL-FA-63\",\"search_first_name\":\"vitas\",\"rotowire_id\":14017,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Vitas Hrynkiewicz\",\"sportradar_id\":\"2ae2aec7-ff82-4d2f-85ad-bba52ac09650\",\"pandascore_id\":null,\"yahoo_id\":32133,\"last_name\":\"Hrynkiewicz\",\"metadata\":null,\"college\":\"Youngstown State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vitashrynkiewicz\",\"birth_date\":\"1995-10-27\",\"espn_id\":4031164},\"5994\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":null,\"player_id\":\"5994\",\"birth_city\":null,\"fantasy_data_id\":20845,\"years_exp\":0,\"hashtag\":\"#KendallJoseph-NFL-FA-0\",\"search_first_name\":\"kendall\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kendall Joseph\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kendalljoseph\",\"birth_date\":null,\"espn_id\":null},\"5766\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034839\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596673215026,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"beal\",\"depth_chart_position\":null,\"player_id\":\"5766\",\"birth_city\":null,\"fantasy_data_id\":20673,\"years_exp\":2,\"hashtag\":\"#SamBeal-NFL-NYG-23\",\"search_first_name\":\"sam\",\"rotowire_id\":13359,\"rotoworld_id\":13884,\"active\":true,\"search_rank\":1509,\"age\":24,\"full_name\":\"Sam Beal\",\"sportradar_id\":\"eb264430-a673-41be-9d81-588d9a9e10e1\",\"pandascore_id\":null,\"yahoo_id\":31764,\"last_name\":\"Beal\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Ottawa Hills (MI)\",\"depth_chart_order\":null,\"stats_id\":885925,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"177\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sambeal\",\"birth_date\":\"1996-08-30\",\"espn_id\":3916720},\"3765\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032641\",\"first_name\":\"Donte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606359604262,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"deayon\",\"depth_chart_position\":null,\"player_id\":\"3765\",\"birth_city\":null,\"fantasy_data_id\":18577,\"years_exp\":4,\"hashtag\":\"#DonteDeayon-NFL-LAR-21\",\"search_first_name\":\"donte\",\"rotowire_id\":11528,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1098,\"age\":26,\"full_name\":\"Donte Deayon\",\"sportradar_id\":\"da918fe0-eb5d-42c7-b952-2f5da5197c20\",\"pandascore_id\":null,\"yahoo_id\":29846,\"last_name\":\"Deayon\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Summit (CA)\",\"depth_chart_order\":null,\"stats_id\":651757,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"158\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dontedeayon\",\"birth_date\":\"1994-01-28\",\"espn_id\":2972896},\"4215\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033467\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605551718813,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"4215\",\"birth_city\":null,\"fantasy_data_id\":19061,\"years_exp\":3,\"hashtag\":\"#BrianAllen-NFL-CIN-48\",\"search_first_name\":\"brian\",\"rotowire_id\":12008,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1201,\"age\":27,\"full_name\":\"Brian Allen\",\"sportradar_id\":\"a5780ea2-376e-4187-8be1-7c7fd2d0a12f\",\"pandascore_id\":null,\"yahoo_id\":30286,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"La Marque (TX)\",\"depth_chart_order\":null,\"stats_id\":652012,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brianallen\",\"birth_date\":\"1993-10-21\",\"espn_id\":2971632},\"163\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"163\",\"birth_city\":null,\"fantasy_data_id\":4195,\"years_exp\":2,\"hashtag\":\"#AndrewMcDonald-NFL-FA-69\",\"search_first_name\":\"andrew\",\"rotowire_id\":9973,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Andrew McDonald\",\"sportradar_id\":\"08fe0a35-cf88-479a-bccb-843a34fd8646\",\"pandascore_id\":null,\"yahoo_id\":26473,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewmcdonald\",\"birth_date\":\"1988-09-08\",\"espn_id\":15597},\"4147\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033526\",\"first_name\":\"Samaje\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606087236214,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perine\",\"depth_chart_position\":\"RB\",\"player_id\":\"4147\",\"birth_city\":null,\"fantasy_data_id\":18993,\"years_exp\":3,\"hashtag\":\"#SamajePerine-NFL-CIN-34\",\"search_first_name\":\"samaje\",\"rotowire_id\":11698,\"rotoworld_id\":12255,\"active\":true,\"search_rank\":520,\"age\":25,\"full_name\":\"Samaje Perine\",\"sportradar_id\":\"e601812f-ce24-4e99-bee0-e33c1e9014e4\",\"pandascore_id\":null,\"yahoo_id\":30227,\"last_name\":\"Perine\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Hendrickson (TX)\",\"depth_chart_order\":2,\"stats_id\":820734,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"5'11\\\"\",\"search_full_name\":\"samajeperine\",\"birth_date\":\"1995-09-16\",\"espn_id\":3116389},\"5608\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034528\",\"first_name\":\"Devonte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532875518592,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":null,\"player_id\":\"5608\",\"birth_city\":null,\"fantasy_data_id\":20452,\"years_exp\":2,\"hashtag\":\"#DevonteBoyd-NFL-FA-0\",\"search_first_name\":\"devonte\",\"rotowire_id\":12736,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Devonte Boyd\",\"sportradar_id\":\"12e708c3-a971-4a0f-bdca-c284568628ef\",\"pandascore_id\":null,\"yahoo_id\":31557,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823674,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'1\\\"\",\"search_full_name\":\"devonteboyd\",\"birth_date\":\"1994-10-05\",\"espn_id\":3125315},\"2869\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031357\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584728408554,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"goodwin\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2869\",\"birth_city\":null,\"fantasy_data_id\":17337,\"years_exp\":6,\"hashtag\":\"#CJGoodwin-NFL-DAL-29\",\"search_first_name\":\"cj\",\"rotowire_id\":9842,\"rotoworld_id\":null,\"active\":true,\"search_rank\":936,\"age\":30,\"full_name\":\"C.J. Goodwin\",\"sportradar_id\":\"6d62aaa2-fe41-4672-941f-7314a0b9b367\",\"pandascore_id\":null,\"yahoo_id\":28289,\"last_name\":\"Goodwin\",\"metadata\":null,\"college\":\"California, Pa.\",\"high_school\":\"Linsly School (WV)\",\"depth_chart_order\":2,\"stats_id\":828353,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cjgoodwin\",\"birth_date\":\"1990-02-04\",\"espn_id\":17474},\"2964\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031722\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605655825941,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"liedtke\",\"depth_chart_position\":null,\"player_id\":\"2964\",\"birth_city\":null,\"fantasy_data_id\":17451,\"years_exp\":5,\"hashtag\":\"#MichaelLiedtke-NFL-WAS-69\",\"search_first_name\":\"michael\",\"rotowire_id\":10836,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Michael Liedtke\",\"sportradar_id\":\"710f3162-8649-4eba-a707-1e6ea0cd1577\",\"pandascore_id\":null,\"yahoo_id\":28911,\"last_name\":\"Liedtke\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"Woodstock (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaelliedtke\",\"birth_date\":\"1992-01-15\",\"espn_id\":2566837},\"7197\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kristian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604802610844,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"welch\",\"depth_chart_position\":\"WLB\",\"player_id\":\"7197\",\"birth_city\":null,\"fantasy_data_id\":22199,\"years_exp\":0,\"hashtag\":\"#KristianWelch-NFL-BAL-57\",\"search_first_name\":\"kristian\",\"rotowire_id\":15141,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Kristian Welch\",\"sportradar_id\":\"0782b3a2-9693-40f6-aff2-a21bc8fa4c5d\",\"pandascore_id\":null,\"yahoo_id\":33005,\"last_name\":\"Welch\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Iola-Scandinavia (WI)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kristianwelch\",\"birth_date\":\"1998-05-24\",\"espn_id\":4036153},\"5342\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034382\",\"first_name\":\"Marquis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606064717851,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haynes\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5342\",\"birth_city\":null,\"fantasy_data_id\":19929,\"years_exp\":2,\"hashtag\":\"#MarquisHaynes-NFL-CAR-98\",\"search_first_name\":\"marquis\",\"rotowire_id\":12841,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1348,\"age\":26,\"full_name\":\"Marquis Haynes\",\"sportradar_id\":\"8a60686b-fdf6-4293-846e-92c1b1d586b9\",\"pandascore_id\":null,\"yahoo_id\":31106,\"last_name\":\"Haynes\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"University Christian (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marquishaynes\",\"birth_date\":\"1993-12-16\",\"espn_id\":3115456},\"5005\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034267\",\"first_name\":\"Jaleel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604369439818,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5005\",\"birth_city\":null,\"fantasy_data_id\":19925,\"years_exp\":2,\"hashtag\":\"#JaleelScott-NFL-NYJ-1\",\"search_first_name\":\"jaleel\",\"rotowire_id\":12776,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1344,\"age\":25,\"full_name\":\"Jaleel Scott\",\"sportradar_id\":\"74761635-c70b-4cbb-abcc-f882e5efae00\",\"pandascore_id\":null,\"yahoo_id\":31102,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":\"Rock Hill (SC)\",\"depth_chart_order\":4,\"stats_id\":912761,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jaleelscott\",\"birth_date\":\"1995-02-23\",\"espn_id\":4040792},\"1831\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1509476760961,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tripp\",\"depth_chart_position\":null,\"player_id\":\"1831\",\"birth_city\":null,\"fantasy_data_id\":16028,\"years_exp\":6,\"hashtag\":\"#JordanTripp-NFL-FA-52\",\"search_first_name\":\"jordan\",\"rotowire_id\":9373,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jordan Tripp\",\"sportradar_id\":\"628943df-f5ca-4147-83a0-80583f1106b7\",\"pandascore_id\":null,\"yahoo_id\":27699,\"last_name\":\"Tripp\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Big Sky (MT)\",\"depth_chart_order\":null,\"stats_id\":518463,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordantripp\",\"birth_date\":\"1991-04-03\",\"espn_id\":16862},\"1509\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030441\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1591378519461,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":null,\"player_id\":\"1509\",\"birth_city\":null,\"fantasy_data_id\":15115,\"years_exp\":7,\"hashtag\":\"#KyleLong-NFL-FA-75\",\"search_first_name\":\"kyle\",\"rotowire_id\":8731,\"rotoworld_id\":8421,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kyle Long\",\"sportradar_id\":\"8e6af99d-a697-4be5-ae7f-f1ddc12bd15a\",\"pandascore_id\":null,\"yahoo_id\":26643,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"St. Anne's-Belfield (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kylelong\",\"birth_date\":\"1988-12-05\",\"espn_id\":15801},\"1428\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030097\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1513730101378,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"quessenberry\",\"depth_chart_position\":\"RG\",\"player_id\":\"1428\",\"birth_city\":null,\"fantasy_data_id\":14988,\"years_exp\":7,\"hashtag\":\"#DavidQuessenberry-NFL-TEN-72\",\"search_first_name\":\"david\",\"rotowire_id\":8829,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"David Quessenberry\",\"sportradar_id\":\"496680c4-2432-481b-883c-6f311da3a4a3\",\"pandascore_id\":null,\"yahoo_id\":26799,\"last_name\":\"Quessenberry\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"San Jose State\",\"high_school\":\"La Costa Canyon (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidquessenberry\",\"birth_date\":\"1990-08-24\",\"espn_id\":15946},\"2620\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heaps\",\"depth_chart_position\":null,\"player_id\":\"2620\",\"birth_city\":null,\"fantasy_data_id\":17088,\"years_exp\":1,\"hashtag\":\"#JakeHeaps-NFL-FA-5\",\"search_first_name\":\"jake\",\"rotowire_id\":11262,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jake Heaps\",\"sportradar_id\":\"3705249d-a3e6-46af-811d-78ee500cc6cd\",\"pandascore_id\":null,\"yahoo_id\":29072,\"last_name\":\"Heaps\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":541436,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jakeheaps\",\"birth_date\":\"1991-06-19\",\"espn_id\":2512235},\"2579\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031719\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1584570324965,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hull\",\"depth_chart_position\":\"LB\",\"player_id\":\"2579\",\"birth_city\":null,\"fantasy_data_id\":17044,\"years_exp\":5,\"hashtag\":\"#MikeHull-NFL-FA-45\",\"search_first_name\":\"mike\",\"rotowire_id\":10373,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Mike Hull\",\"sportradar_id\":\"a333a955-16bf-4157-bc86-a6919ce9edf8\",\"pandascore_id\":null,\"yahoo_id\":28908,\"last_name\":\"Hull\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Canon-McMillan (PA)\",\"depth_chart_order\":2,\"stats_id\":560296,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mikehull\",\"birth_date\":\"1991-05-25\",\"espn_id\":2515545},\"3990\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033185\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1526342701744,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bighill\",\"depth_chart_position\":null,\"player_id\":\"3990\",\"birth_city\":null,\"fantasy_data_id\":18827,\"years_exp\":2,\"hashtag\":\"#AdamBighill-NFL-FA-99\",\"search_first_name\":\"adam\",\"rotowire_id\":11708,\"rotoworld_id\":12194,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Adam Bighill\",\"sportradar_id\":\"c8b91c2a-3a98-42ea-a295-35344979fdb9\",\"pandascore_id\":null,\"yahoo_id\":30099,\"last_name\":\"Bighill\",\"metadata\":null,\"college\":\"Central Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":479086,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'9\\\"\",\"search_full_name\":\"adambighill\",\"birth_date\":\"1988-10-16\",\"espn_id\":2323439},\"4387\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033364\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1588287625821,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vogel\",\"depth_chart_position\":null,\"player_id\":\"4387\",\"birth_city\":null,\"fantasy_data_id\":19245,\"years_exp\":3,\"hashtag\":\"#JustinVogel-NFL-FA-1\",\"search_first_name\":\"justin\",\"rotowire_id\":11826,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Justin Vogel\",\"sportradar_id\":\"db3b481f-4edb-4392-87c6-6198ec2a12b8\",\"pandascore_id\":null,\"yahoo_id\":30621,\"last_name\":\"Vogel\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694632,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'4\\\"\",\"search_full_name\":\"justinvogel\",\"birth_date\":\"1993-10-14\",\"espn_id\":2980123},\"622\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027732\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1535849704483,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hoomanawanui\",\"depth_chart_position\":null,\"player_id\":\"622\",\"birth_city\":null,\"fantasy_data_id\":11535,\"years_exp\":10,\"hashtag\":\"#MichaelHoomanawanui-NFL-FA-84\",\"search_first_name\":\"michael\",\"rotowire_id\":6535,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Michael Hoomanawanui\",\"sportradar_id\":\"add7a245-2444-491f-bdfb-b1b0d76f6a28\",\"pandascore_id\":null,\"yahoo_id\":24108,\"last_name\":\"Hoomanawanui\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Central Catholic (IL)\",\"depth_chart_order\":null,\"stats_id\":333398,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaelhoomanawanui\",\"birth_date\":\"1988-07-04\",\"espn_id\":13387},\"5443\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034107\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1588121720628,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holland\",\"depth_chart_position\":null,\"player_id\":\"5443\",\"birth_city\":null,\"fantasy_data_id\":20129,\"years_exp\":2,\"hashtag\":\"#JeffHolland-NFL-FA-0\",\"search_first_name\":\"jeff\",\"rotowire_id\":12553,\"rotoworld_id\":13369,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jeff Holland\",\"sportradar_id\":\"0f57f7d4-41b1-400d-bec5-09da91d825f1\",\"pandascore_id\":null,\"yahoo_id\":31377,\"last_name\":\"Holland\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":880544,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeffholland\",\"birth_date\":\"1995-09-27\",\"espn_id\":3916928},\"2238\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031051\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606497303718,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"SWR\",\"player_id\":\"2238\",\"birth_city\":null,\"fantasy_data_id\":16640,\"years_exp\":6,\"hashtag\":\"#JohnBrown-NFL-BUF-15\",\"search_first_name\":\"john\",\"rotowire_id\":9684,\"rotoworld_id\":9649,\"active\":true,\"search_rank\":128,\"age\":30,\"full_name\":\"John Brown\",\"sportradar_id\":\"9b13d2bc-b22c-4f91-8eeb-309f43422d6e\",\"pandascore_id\":null,\"yahoo_id\":27619,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Pittsburg State\",\"high_school\":\"Homestead (FL)\",\"depth_chart_order\":2,\"stats_id\":473742,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johnbrown\",\"birth_date\":\"1990-04-03\",\"espn_id\":16804},\"6645\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035393\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chesley\",\"depth_chart_position\":null,\"player_id\":\"6645\",\"birth_city\":null,\"fantasy_data_id\":21530,\"years_exp\":1,\"hashtag\":\"#AnthonyChesley-NFL-HOU-43\",\"search_first_name\":\"anthony\",\"rotowire_id\":14216,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1753,\"age\":24,\"full_name\":\"Anthony Chesley\",\"sportradar_id\":\"c9b2e966-bdfb-4ccb-be3c-42473f63929b\",\"pandascore_id\":null,\"yahoo_id\":32463,\"last_name\":\"Chesley\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":\"Gwynn Park (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"anthonychesley\",\"birth_date\":\"1996-05-31\",\"espn_id\":3910754},\"6698\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598317553169,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tucker\",\"depth_chart_position\":\"RT\",\"player_id\":\"6698\",\"birth_city\":null,\"fantasy_data_id\":21600,\"years_exp\":1,\"hashtag\":\"#CaseyTucker-NFL-FA-0\",\"search_first_name\":\"casey\",\"rotowire_id\":13917,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Casey Tucker\",\"sportradar_id\":\"0864f928-283f-40e4-9c04-f2b2b374e237\",\"pandascore_id\":null,\"yahoo_id\":32611,\"last_name\":\"Tucker\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"caseytucker\",\"birth_date\":\"1995-09-27\",\"espn_id\":3117259},\"3528\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032663\",\"first_name\":\"Taveze\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1576884050789,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"calhoun\",\"depth_chart_position\":null,\"player_id\":\"3528\",\"birth_city\":null,\"fantasy_data_id\":18294,\"years_exp\":4,\"hashtag\":\"#TavezeCalhoun-NFL-FA-39\",\"search_first_name\":\"taveze\",\"rotowire_id\":10934,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Taveze Calhoun\",\"sportradar_id\":\"b2ee8205-9bb6-41e6-814d-40433673e172\",\"pandascore_id\":null,\"yahoo_id\":29916,\"last_name\":\"Calhoun\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tavezecalhoun\",\"birth_date\":\"1992-12-26\",\"espn_id\":2577421},\"4813\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034025\",\"first_name\":\"Marvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534799108225,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bracy\",\"depth_chart_position\":null,\"player_id\":\"4813\",\"birth_city\":null,\"fantasy_data_id\":19723,\"years_exp\":3,\"hashtag\":\"#MarvinBracy-NFL-FA-7\",\"search_first_name\":\"marvin\",\"rotowire_id\":12348,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marvin Bracy\",\"sportradar_id\":\"b1dd4855-f72f-4d7c-9af3-39d37de56b0d\",\"pandascore_id\":null,\"yahoo_id\":30930,\"last_name\":\"Bracy\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691511,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"172\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marvinbracy\",\"birth_date\":\"1993-12-15\",\"espn_id\":2969915},\"1959\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031225\",\"first_name\":\"Julius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"warmsley\",\"depth_chart_position\":null,\"player_id\":\"1959\",\"birth_city\":null,\"fantasy_data_id\":16213,\"years_exp\":6,\"hashtag\":\"#JuliusWarmsley-NFL-FA-72\",\"search_first_name\":\"julius\",\"rotowire_id\":10443,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Julius Warmsley\",\"sportradar_id\":\"efe0a829-1c7a-4460-b099-089bdb64b819\",\"pandascore_id\":null,\"yahoo_id\":28233,\"last_name\":\"Warmsley\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556700,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'2\\\"\",\"search_full_name\":\"juliuswarmsley\",\"birth_date\":\"1990-05-16\",\"espn_id\":17428},\"3539\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wray\",\"depth_chart_position\":null,\"player_id\":\"3539\",\"birth_city\":null,\"fantasy_data_id\":18306,\"years_exp\":0,\"hashtag\":\"#CarlosWray-NFL-FA-90\",\"search_first_name\":\"carlos\",\"rotowire_id\":11495,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Carlos Wray\",\"sportradar_id\":\"e25b6c18-837a-41e8-abcd-f45964e34c0f\",\"pandascore_id\":null,\"yahoo_id\":29535,\"last_name\":\"Wray\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"carloswray\",\"birth_date\":\"1993-10-03\",\"espn_id\":null},\"157\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vince\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"157\",\"birth_city\":null,\"fantasy_data_id\":4124,\"years_exp\":7,\"hashtag\":\"#VinceYoung-NFL-FA-13\",\"search_first_name\":\"vince\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Vince Young\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'5\\\"\",\"search_full_name\":\"vinceyoung\",\"birth_date\":\"1983-05-18\",\"espn_id\":null},\"2328\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032221\",\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567258502857,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ray\",\"depth_chart_position\":null,\"player_id\":\"2328\",\"birth_city\":null,\"fantasy_data_id\":16784,\"years_exp\":5,\"hashtag\":\"#ShaneRay-NFL-FA-91\",\"search_first_name\":\"shane\",\"rotowire_id\":10308,\"rotoworld_id\":10302,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Shane Ray\",\"sportradar_id\":\"17cc7638-a3a6-4008-9fbb-72f03ef5f775\",\"pandascore_id\":null,\"yahoo_id\":28411,\"last_name\":\"Ray\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Bishop Miege (MO)\",\"depth_chart_order\":null,\"stats_id\":605268,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shaneray\",\"birth_date\":\"1993-05-18\",\"espn_id\":2577371},\"7412\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sandro\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599694843477,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"platzgummer\",\"depth_chart_position\":null,\"player_id\":\"7412\",\"birth_city\":null,\"fantasy_data_id\":22395,\"years_exp\":0,\"hashtag\":\"#SandroPlatzgummer-NFL-NYG-34\",\"search_first_name\":\"sandro\",\"rotowire_id\":14949,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Sandro Platzgummer\",\"sportradar_id\":\"a75efc5b-a4fc-4da4-8684-d170a0c40b81\",\"pandascore_id\":null,\"yahoo_id\":33188,\"last_name\":\"Platzgummer\",\"metadata\":null,\"college\":\"No College\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sandroplatzgummer\",\"birth_date\":\"1997-03-10\",\"espn_id\":4683485},\"2427\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031576\",\"first_name\":\"Za'Darius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605570320604,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"2427\",\"birth_city\":null,\"fantasy_data_id\":16883,\"years_exp\":5,\"hashtag\":\"#ZaDariusSmith-NFL-GB-55\",\"search_first_name\":\"zadarius\",\"rotowire_id\":10328,\"rotoworld_id\":10509,\"active\":true,\"search_rank\":891,\"age\":28,\"full_name\":\"Za'Darius Smith\",\"sportradar_id\":\"af3599a5-5eb4-4dd4-87ab-e0032ebfa644\",\"pandascore_id\":null,\"yahoo_id\":28510,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Greenville (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'4\\\"\",\"search_full_name\":\"zadariussmith\",\"birth_date\":\"1992-09-08\",\"espn_id\":3043168},\"4799\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034018\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"faulk\",\"depth_chart_position\":null,\"player_id\":\"4799\",\"birth_city\":null,\"fantasy_data_id\":19713,\"years_exp\":3,\"hashtag\":\"#JeremyFaulk-NFL-FA-97\",\"search_first_name\":\"jeremy\",\"rotowire_id\":12633,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeremy Faulk\",\"sportradar_id\":\"563f4a41-967c-49f1-a217-28543727c7d0\",\"pandascore_id\":null,\"yahoo_id\":30921,\"last_name\":\"Faulk\",\"metadata\":null,\"college\":\"Garden City CC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeremyfaulk\",\"birth_date\":\"1993-09-13\",\"espn_id\":3052751},\"1703\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028908\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606019110254,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"1703\",\"birth_city\":null,\"fantasy_data_id\":15589,\"years_exp\":8,\"hashtag\":\"#MichaelThomas-NFL-HOU-28\",\"search_first_name\":\"michael\",\"rotowire_id\":8825,\"rotoworld_id\":null,\"active\":true,\"search_rank\":766,\"age\":30,\"full_name\":\"Michael Thomas\",\"sportradar_id\":\"16e13f52-32b1-416f-83ae-1cbf2f92cffc\",\"pandascore_id\":null,\"yahoo_id\":26265,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Nimitz (TX)\",\"depth_chart_order\":null,\"stats_id\":461197,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michaelthomas\",\"birth_date\":\"1990-03-17\",\"espn_id\":15231},\"5572\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034318\",\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603466753421,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mondeaux\",\"depth_chart_position\":\"DE\",\"player_id\":\"5572\",\"birth_city\":null,\"fantasy_data_id\":20520,\"years_exp\":2,\"hashtag\":\"#HenryMondeaux-NFL-PIT-99\",\"search_first_name\":\"henry\",\"rotowire_id\":13390,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1486,\"age\":25,\"full_name\":\"Henry Mondeaux\",\"sportradar_id\":\"d7f79a32-6a28-4e14-bedf-6186dec771e6\",\"pandascore_id\":null,\"yahoo_id\":31518,\"last_name\":\"Mondeaux\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Oregon\",\"high_school\":\"Jesuit (OR)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"henrymondeaux\",\"birth_date\":\"1995-09-19\",\"espn_id\":3122690},\"1457\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030096\",\"first_name\":\"Vinston\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1521159901160,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"painter\",\"depth_chart_position\":null,\"player_id\":\"1457\",\"birth_city\":null,\"fantasy_data_id\":15039,\"years_exp\":7,\"hashtag\":\"#VinstonPainter-NFL-FA-78\",\"search_first_name\":\"vinston\",\"rotowire_id\":9363,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Vinston Painter\",\"sportradar_id\":\"cfb697e0-f8c5-4986-a2ba-59c99e3b5b1e\",\"pandascore_id\":null,\"yahoo_id\":26796,\"last_name\":\"Painter\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vinstonpainter\",\"birth_date\":\"1989-10-11\",\"espn_id\":15927},\"3635\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shannon\",\"depth_chart_position\":null,\"player_id\":\"3635\",\"birth_city\":null,\"fantasy_data_id\":18423,\"years_exp\":0,\"hashtag\":\"#FrankShannon-NFL-FA-47\",\"search_first_name\":\"frank\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Frank Shannon\",\"sportradar_id\":\"402498ef-e77f-44bb-be5f-d727bf6c98ca\",\"pandascore_id\":null,\"yahoo_id\":29632,\"last_name\":\"Shannon\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"frankshannon\",\"birth_date\":\"1992-10-31\",\"espn_id\":2577469},\"6609\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035036\",\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600125303718,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"6609\",\"birth_city\":null,\"fantasy_data_id\":21353,\"years_exp\":1,\"hashtag\":\"#RossReynolds-NFL-SF-76\",\"search_first_name\":\"ross\",\"rotowire_id\":13961,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ross Reynolds\",\"sportradar_id\":\"06748afa-6b89-461d-8de6-9f1628169845\",\"pandascore_id\":null,\"yahoo_id\":32326,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Waukee (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rossreynolds\",\"birth_date\":\"1995-09-14\",\"espn_id\":3144994},\"918\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028093\",\"first_name\":\"Niles\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1565134827397,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"paul\",\"depth_chart_position\":null,\"player_id\":\"918\",\"birth_city\":null,\"fantasy_data_id\":13170,\"years_exp\":9,\"hashtag\":\"#NilesPaul-NFL-FA-43\",\"search_first_name\":\"niles\",\"rotowire_id\":7384,\"rotoworld_id\":6661,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Niles Paul\",\"sportradar_id\":\"38f5843a-8318-4eb7-b517-c83d415e77a4\",\"pandascore_id\":null,\"yahoo_id\":24942,\"last_name\":\"Paul\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":406159,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nilespaul\",\"birth_date\":\"1989-08-09\",\"espn_id\":14156},\"6369\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035362\",\"first_name\":\"Khairi\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"6369\",\"birth_city\":null,\"fantasy_data_id\":21250,\"years_exp\":1,\"hashtag\":\"#KhairiClark-NFL-FA-54\",\"search_first_name\":\"khairi\",\"rotowire_id\":14039,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Khairi Clark\",\"sportradar_id\":\"0afaf743-1240-4598-91d4-13f003573789\",\"pandascore_id\":null,\"yahoo_id\":32089,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'1\\\"\",\"search_full_name\":\"khairiclark\",\"birth_date\":\"1994-10-31\",\"espn_id\":3121643},\"179\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1513533603936,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bush\",\"depth_chart_position\":null,\"player_id\":\"179\",\"birth_city\":null,\"fantasy_data_id\":4640,\"years_exp\":14,\"hashtag\":\"#ReggieBush-NFL-FA-22\",\"search_first_name\":\"reggie\",\"rotowire_id\":4749,\"rotoworld_id\":3600,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Reggie Bush\",\"sportradar_id\":\"0acdcd3b-5442-4311-a139-ae7c506faf88\",\"pandascore_id\":null,\"yahoo_id\":7751,\"last_name\":\"Bush\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Helix (CA)\",\"depth_chart_order\":null,\"stats_id\":214307,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"reggiebush\",\"birth_date\":\"1985-03-02\",\"espn_id\":9588},\"7299\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justice\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588363242033,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sheltonmosley\",\"depth_chart_position\":null,\"player_id\":\"7299\",\"birth_city\":null,\"fantasy_data_id\":22293,\"years_exp\":0,\"hashtag\":\"#JusticeSheltonMosley-NFL-FA-0\",\"search_first_name\":\"justice\",\"rotowire_id\":15091,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Justice Shelton-Mosley\",\"sportradar_id\":\"7f8d9260-b6bd-4f4d-bebe-9c601dd147a4\",\"pandascore_id\":null,\"yahoo_id\":32947,\"last_name\":\"Shelton-Mosley\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'10\\\"\",\"search_full_name\":\"justicesheltonmosley\",\"birth_date\":\"1997-03-01\",\"espn_id\":4051242},\"5915\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035527\",\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606516528464,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"isabella\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5915\",\"birth_city\":null,\"fantasy_data_id\":20820,\"years_exp\":1,\"hashtag\":\"#AndyIsabella-NFL-ARI-17\",\"search_first_name\":\"andy\",\"rotowire_id\":13612,\"rotoworld_id\":14019,\"active\":true,\"search_rank\":289,\"age\":24,\"full_name\":\"Andy Isabella\",\"sportradar_id\":\"04f9a4be-b236-4eed-9bc4-794f615ccd13\",\"pandascore_id\":null,\"yahoo_id\":31894,\"last_name\":\"Isabella\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":\"Mayfield (OH)\",\"depth_chart_order\":1,\"stats_id\":878911,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"andyisabella\",\"birth_date\":\"1996-11-18\",\"espn_id\":3914328},\"430\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phil\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"loadholt\",\"depth_chart_position\":null,\"player_id\":\"430\",\"birth_city\":null,\"fantasy_data_id\":9087,\"years_exp\":8,\"hashtag\":\"#PhilLoadholt-NFL-FA-71\",\"search_first_name\":\"phil\",\"rotowire_id\":6104,\"rotoworld_id\":5265,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Phil Loadholt\",\"sportradar_id\":\"5bcf4917-b164-4873-b2ca-0ec150749753\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Loadholt\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"343\",\"height\":\"6'8\\\"\",\"search_full_name\":\"philloadholt\",\"birth_date\":\"1986-01-21\",\"espn_id\":12615},\"7146\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vernon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605459610987,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"FS\",\"player_id\":\"7146\",\"birth_city\":null,\"fantasy_data_id\":22148,\"years_exp\":0,\"hashtag\":\"#VernonScott-NFL-GB-36\",\"search_first_name\":\"vernon\",\"rotowire_id\":14779,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1935,\"age\":23,\"full_name\":\"Vernon Scott\",\"sportradar_id\":\"41ff2f2c-6ddb-4bc5-9712-3664501f7af9\",\"pandascore_id\":null,\"yahoo_id\":32906,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Summit (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'2\\\"\",\"search_full_name\":\"vernonscott\",\"birth_date\":\"1997-09-11\",\"espn_id\":4038538},\"7006\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605747043599,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":\"SAM\",\"player_id\":\"7006\",\"birth_city\":null,\"fantasy_data_id\":21979,\"years_exp\":0,\"hashtag\":\"#JacobPhillips-NFL-CLE-50\",\"search_first_name\":\"jacob\",\"rotowire_id\":14517,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1863,\"age\":21,\"full_name\":\"Jacob Phillips\",\"sportradar_id\":\"894c783a-ddcd-4dba-b337-06d7db037a6e\",\"pandascore_id\":null,\"yahoo_id\":32767,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"East Nashville (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jacobphillips\",\"birth_date\":\"1999-04-01\",\"espn_id\":4242206},\"5310\":{\"position\":\"WR\",\"injury_notes\":\"Callaway is under a 10-game suspension for violating the NFL substance abuse policy and will miss the first three weeks of the regular season in 2020.\",\"birth_country\":null,\"gsis_id\":\"00-0034772\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605738932195,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"callaway\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5310\",\"birth_city\":null,\"fantasy_data_id\":19917,\"years_exp\":2,\"hashtag\":\"#AntonioCallaway-NFL-MIA-16\",\"search_first_name\":\"antonio\",\"rotowire_id\":12468,\"rotoworld_id\":13108,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Antonio Callaway\",\"sportradar_id\":\"71d9c2a0-81ee-4788-86bb-7ae326396e73\",\"pandascore_id\":null,\"yahoo_id\":31075,\"last_name\":\"Callaway\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Washington (FL)\",\"depth_chart_order\":2,\"stats_id\":879022,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"antoniocallaway\",\"birth_date\":\"1997-01-09\",\"espn_id\":3915097},\"3226\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032768\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605565820562,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"whitehair\",\"depth_chart_position\":\"LG\",\"player_id\":\"3226\",\"birth_city\":null,\"fantasy_data_id\":17987,\"years_exp\":4,\"hashtag\":\"#CodyWhitehair-NFL-CHI-65\",\"search_first_name\":\"cody\",\"rotowire_id\":10897,\"rotoworld_id\":11365,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cody Whitehair\",\"sportradar_id\":\"95bccf33-b911-4bfa-96b4-a15b9a160c68\",\"pandascore_id\":null,\"yahoo_id\":29290,\"last_name\":\"Whitehair\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Abilene (KS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'3\\\"\",\"search_full_name\":\"codywhitehair\",\"birth_date\":\"1992-07-11\",\"espn_id\":2577346},\"5787\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034878\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535763393991,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bobo\",\"depth_chart_position\":null,\"player_id\":\"5787\",\"birth_city\":null,\"fantasy_data_id\":20689,\"years_exp\":2,\"hashtag\":\"#BryceBobo-NFL-FA-13\",\"search_first_name\":\"bryce\",\"rotowire_id\":12737,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bryce Bobo\",\"sportradar_id\":\"3bab74f9-a592-4dba-b06f-71aed805fd45\",\"pandascore_id\":null,\"yahoo_id\":31783,\"last_name\":\"Bobo\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747841,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brycebobo\",\"birth_date\":\"1995-06-21\",\"espn_id\":3052102},\"5838\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1556575558059,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"andersen\",\"depth_chart_position\":null,\"player_id\":\"5838\",\"birth_city\":null,\"fantasy_data_id\":20728,\"years_exp\":1,\"hashtag\":\"#PhillipAndersen-NFL-FA-7\",\"search_first_name\":\"phillip\",\"rotowire_id\":13834,\"rotoworld_id\":14006,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Phillip Andersen\",\"sportradar_id\":\"c961fdc7-20e7-4721-813a-3e68d97d6b37\",\"pandascore_id\":null,\"yahoo_id\":31818,\"last_name\":\"Andersen\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"phillipandersen\",\"birth_date\":null,\"espn_id\":null},\"2208\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vinnie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sunseri\",\"depth_chart_position\":null,\"player_id\":\"2208\",\"birth_city\":null,\"fantasy_data_id\":16584,\"years_exp\":5,\"hashtag\":\"#VinnieSunseri-NFL-FA-40\",\"search_first_name\":\"vinnie\",\"rotowire_id\":9328,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Vinnie Sunseri\",\"sportradar_id\":\"e902bce3-9b8b-40b8-b74d-969bb8da16a7\",\"pandascore_id\":null,\"yahoo_id\":27695,\"last_name\":\"Sunseri\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"vinniesunseri\",\"birth_date\":\"1993-09-27\",\"espn_id\":16938},\"2730\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harper\",\"depth_chart_position\":null,\"player_id\":\"2730\",\"birth_city\":null,\"fantasy_data_id\":17198,\"years_exp\":0,\"hashtag\":\"#KennethHarper-NFL-FA-33\",\"search_first_name\":\"kenneth\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kenneth Harper\",\"sportradar_id\":\"06be99d3-6dae-4a33-ad5b-c541cfd5e237\",\"pandascore_id\":null,\"yahoo_id\":29044,\"last_name\":\"Harper\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608368,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kennethharper\",\"birth_date\":\"1993-01-30\",\"espn_id\":2574812},\"1163\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Markus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kuhn\",\"depth_chart_position\":null,\"player_id\":\"1163\",\"birth_city\":null,\"fantasy_data_id\":14235,\"years_exp\":8,\"hashtag\":\"#MarkusKuhn-NFL-FA-94\",\"search_first_name\":\"markus\",\"rotowire_id\":8349,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Markus Kuhn\",\"sportradar_id\":\"9d02be75-b625-46fd-98a2-dab2ed5dc479\",\"pandascore_id\":null,\"yahoo_id\":25949,\"last_name\":\"Kuhn\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Weinheim (Germany)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"markuskuhn\",\"birth_date\":\"1989-05-05\",\"espn_id\":15024},\"2059\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Davon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"2059\",\"birth_city\":null,\"fantasy_data_id\":16359,\"years_exp\":6,\"hashtag\":\"#DavonColeman-NFL-FA-62\",\"search_first_name\":\"davon\",\"rotowire_id\":9890,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Davon Coleman\",\"sportradar_id\":\"44c53f1f-9ae6-4166-af73-c5e1c7fa9a11\",\"pandascore_id\":null,\"yahoo_id\":28127,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Glenville HS\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davoncoleman\",\"birth_date\":\"1991-01-11\",\"espn_id\":17334},\"7123\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587844844174,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"onwenu\",\"depth_chart_position\":\"RT\",\"player_id\":\"7123\",\"birth_city\":null,\"fantasy_data_id\":22038,\"years_exp\":0,\"hashtag\":\"#MichaelOnwenu-NFL-NE-71\",\"search_first_name\":\"michael\",\"rotowire_id\":14674,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Michael Onwenu\",\"sportradar_id\":\"3ee844af-9408-42d7-ba42-aaa2d5ccc673\",\"pandascore_id\":null,\"yahoo_id\":32853,\"last_name\":\"Onwenu\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan\",\"high_school\":\"Cass Tech (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaelonwenu\",\"birth_date\":\"1997-12-10\",\"espn_id\":4046545},\"2517\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031619\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599258354197,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"covington\",\"depth_chart_position\":\"NT\",\"player_id\":\"2517\",\"birth_city\":null,\"fantasy_data_id\":16976,\"years_exp\":5,\"hashtag\":\"#ChristianCovington-NFL-CIN-99\",\"search_first_name\":\"christian\",\"rotowire_id\":10333,\"rotoworld_id\":null,\"active\":true,\"search_rank\":904,\"age\":27,\"full_name\":\"Christian Covington\",\"sportradar_id\":\"efe64fc8-9987-4fe6-b7a4-e2ff363cf443\",\"pandascore_id\":null,\"yahoo_id\":28604,\"last_name\":\"Covington\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Vancouver College Prep (CAN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christiancovington\",\"birth_date\":\"1993-10-16\",\"espn_id\":2580666},\"45\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carpenter\",\"depth_chart_position\":null,\"player_id\":\"45\",\"birth_city\":null,\"fantasy_data_id\":1269,\"years_exp\":12,\"hashtag\":\"#DanCarpenter-NFL-FA-2\",\"search_first_name\":\"dan\",\"rotowire_id\":5882,\"rotoworld_id\":5007,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Dan Carpenter\",\"sportradar_id\":\"d944ce13-2c90-4655-890c-5dac028a130c\",\"pandascore_id\":null,\"yahoo_id\":9032,\"last_name\":\"Carpenter\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Helena (MT)\",\"depth_chart_order\":null,\"stats_id\":262373,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dancarpenter\",\"birth_date\":\"1985-11-25\",\"espn_id\":11688},\"6436\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034954\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606532130155,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":\"WLB\",\"player_id\":\"6436\",\"birth_city\":null,\"fantasy_data_id\":21366,\"years_exp\":1,\"hashtag\":\"#MalikReed-NFL-DEN-59\",\"search_first_name\":\"malik\",\"rotowire_id\":13907,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1725,\"age\":24,\"full_name\":\"Malik Reed\",\"sportradar_id\":\"7f35aa83-30f3-4997-b5de-11b0c19e90cb\",\"pandascore_id\":null,\"yahoo_id\":32220,\"last_name\":\"Reed\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Nevada\",\"high_school\":\"Dothan (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malikreed\",\"birth_date\":\"1996-08-05\",\"espn_id\":3124634},\"1055\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029268\",\"first_name\":\"Gino\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1542051311117,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gradkowski\",\"depth_chart_position\":null,\"player_id\":\"1055\",\"birth_city\":null,\"fantasy_data_id\":13838,\"years_exp\":8,\"hashtag\":\"#GinoGradkowski-NFL-FA-75\",\"search_first_name\":\"gino\",\"rotowire_id\":8330,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Gino Gradkowski\",\"sportradar_id\":\"7e3c0631-1bff-49af-b6bc-9c66c59a579d\",\"pandascore_id\":null,\"yahoo_id\":25808,\"last_name\":\"Gradkowski\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Seton-LaSalle (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ginogradkowski\",\"birth_date\":\"1988-11-05\",\"espn_id\":14999},\"2402\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031940\",\"first_name\":\"Geneo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567261202788,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grissom\",\"depth_chart_position\":null,\"player_id\":\"2402\",\"birth_city\":null,\"fantasy_data_id\":16858,\"years_exp\":5,\"hashtag\":\"#GeneoGrissom-NFL-FA-99\",\"search_first_name\":\"geneo\",\"rotowire_id\":10338,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Geneo Grissom\",\"sportradar_id\":\"fc909404-fec3-40af-b8e8-22ffcb48a456\",\"pandascore_id\":null,\"yahoo_id\":28485,\"last_name\":\"Grissom\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Hutchinson (KS)\",\"depth_chart_order\":null,\"stats_id\":542879,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"geneogrissom\",\"birth_date\":\"1992-06-04\",\"espn_id\":2514217},\"3753\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swindle\",\"depth_chart_position\":null,\"player_id\":\"3753\",\"birth_city\":null,\"fantasy_data_id\":18565,\"years_exp\":0,\"hashtag\":\"#JordanSwindle-NFL-FA-70\",\"search_first_name\":\"jordan\",\"rotowire_id\":11580,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jordan Swindle\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29744,\"last_name\":\"Swindle\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jordanswindle\",\"birth_date\":\"1994-03-16\",\"espn_id\":null},\"2308\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032052\",\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606518028579,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fowler\",\"depth_chart_position\":\"RDE\",\"player_id\":\"2308\",\"birth_city\":null,\"fantasy_data_id\":16764,\"years_exp\":5,\"hashtag\":\"#DanteFowler-NFL-ATL-56\",\"search_first_name\":\"dante\",\"rotowire_id\":10349,\"rotoworld_id\":10389,\"active\":true,\"search_rank\":849,\"age\":26,\"full_name\":\"Dante Fowler\",\"sportradar_id\":\"6bc85af5-fc58-4656-82da-d02780a0f6f6\",\"pandascore_id\":null,\"yahoo_id\":28391,\"last_name\":\"Fowler\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Lakewood (FL)\",\"depth_chart_order\":1,\"stats_id\":694612,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dantefowler\",\"birth_date\":\"1994-08-03\",\"espn_id\":2980100},\"5178\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034496\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606019110251,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chandler\",\"depth_chart_position\":null,\"player_id\":\"5178\",\"birth_city\":null,\"fantasy_data_id\":20173,\"years_exp\":2,\"hashtag\":\"#SeanChandler-NFL-CAR-34\",\"search_first_name\":\"sean\",\"rotowire_id\":12923,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1429,\"age\":24,\"full_name\":\"Sean Chandler\",\"sportradar_id\":\"88f31a44-caae-4e5b-a786-8a229374a19d\",\"pandascore_id\":null,\"yahoo_id\":31548,\"last_name\":\"Chandler\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Camden (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"seanchandler\",\"birth_date\":\"1996-04-27\",\"espn_id\":3138733},\"4607\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033766\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1565555425590,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conque\",\"depth_chart_position\":null,\"player_id\":\"4607\",\"birth_city\":null,\"fantasy_data_id\":19497,\"years_exp\":3,\"hashtag\":\"#ZachConque-NFL-FA-48\",\"search_first_name\":\"zach\",\"rotowire_id\":12309,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zach Conque\",\"sportradar_id\":\"6c5c5f15-33d2-4df5-af4e-e026755d2d65\",\"pandascore_id\":null,\"yahoo_id\":30800,\"last_name\":\"Conque\",\"metadata\":null,\"college\":\"Stephen F. Austin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693298,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zachconque\",\"birth_date\":\"1994-04-22\",\"espn_id\":2979985},\"4733\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034010\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1578978327171,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"4733\",\"birth_city\":null,\"fantasy_data_id\":19647,\"years_exp\":3,\"hashtag\":\"#AlexGray-NFL-FA-89\",\"search_first_name\":\"alex\",\"rotowire_id\":12646,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Alex Gray\",\"sportradar_id\":\"5e12fc0a-e37d-4196-a9d2-cafe8127d543\",\"pandascore_id\":null,\"yahoo_id\":30888,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":519942,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexgray\",\"birth_date\":\"1991-05-01\",\"espn_id\":4227184},\"2637\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pierce\",\"depth_chart_position\":null,\"player_id\":\"2637\",\"birth_city\":null,\"fantasy_data_id\":17105,\"years_exp\":1,\"hashtag\":\"#CaseyPierce-NFL-FA-49\",\"search_first_name\":\"casey\",\"rotowire_id\":10754,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Casey Pierce\",\"sportradar_id\":\"51a09998-887e-4642-b16d-0394a3831555\",\"pandascore_id\":null,\"yahoo_id\":28882,\"last_name\":\"Pierce\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":562572,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"caseypierce\",\"birth_date\":\"1991-08-21\",\"espn_id\":2516722},\"5894\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035697\",\"first_name\":\"Germaine\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600131311425,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pratt\",\"depth_chart_position\":\"LB\",\"player_id\":\"5894\",\"birth_city\":null,\"fantasy_data_id\":20915,\"years_exp\":1,\"hashtag\":\"#GermainePratt-NFL-CIN-57\",\"search_first_name\":\"germaine\",\"rotowire_id\":13436,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1590,\"age\":24,\"full_name\":\"Germaine Pratt\",\"sportradar_id\":\"ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2\",\"pandascore_id\":null,\"yahoo_id\":31904,\"last_name\":\"Pratt\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"High Point Central (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"germainepratt\",\"birth_date\":\"1996-05-21\",\"espn_id\":3116724},\"890\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027986\",\"first_name\":\"Stefen\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604802310825,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wisniewski\",\"depth_chart_position\":null,\"player_id\":\"890\",\"birth_city\":null,\"fantasy_data_id\":13073,\"years_exp\":9,\"hashtag\":\"#StefenWisniewski-NFL-KC-61\",\"search_first_name\":\"stefen\",\"rotowire_id\":7441,\"rotoworld_id\":6599,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Stefen Wisniewski\",\"sportradar_id\":\"65006631-45b1-4920-b0a3-f00277119f1e\",\"pandascore_id\":null,\"yahoo_id\":24835,\"last_name\":\"Wisniewski\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Penn State\",\"high_school\":\"Central Catholic (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stefenwisniewski\",\"birth_date\":\"1989-03-22\",\"espn_id\":169},\"2703\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ezell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ruffin\",\"depth_chart_position\":null,\"player_id\":\"2703\",\"birth_city\":null,\"fantasy_data_id\":17171,\"years_exp\":0,\"hashtag\":\"#EzellRuffin-NFL-FA-3\",\"search_first_name\":\"ezell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ezell Ruffin\",\"sportradar_id\":\"78055d8a-2d42-4a51-9415-bb5c8799259f\",\"pandascore_id\":null,\"yahoo_id\":28746,\"last_name\":\"Ruffin\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556460,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ezellruffin\",\"birth_date\":\"1992-03-17\",\"espn_id\":2514461},\"6356\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035482\",\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1564587315484,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"booker\",\"depth_chart_position\":null,\"player_id\":\"6356\",\"birth_city\":null,\"fantasy_data_id\":21324,\"years_exp\":1,\"hashtag\":\"#DanteBooker-NFL-FA-51\",\"search_first_name\":\"dante\",\"rotowire_id\":14045,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dante Booker\",\"sportradar_id\":\"991410bd-6edd-415e-9ab1-fb03f0fccc21\",\"pandascore_id\":null,\"yahoo_id\":32154,\"last_name\":\"Booker\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dantebooker\",\"birth_date\":\"1995-10-02\",\"espn_id\":3121408},\"6019\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035450\",\"first_name\":\"Johnnie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599593741482,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"6019\",\"birth_city\":null,\"fantasy_data_id\":21070,\"years_exp\":1,\"hashtag\":\"#JohnnieDixon-NFL-FA-0\",\"search_first_name\":\"johnnie\",\"rotowire_id\":13592,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Johnnie Dixon\",\"sportradar_id\":\"4a8fee2c-2870-42fa-8d71-429d36e057d2\",\"pandascore_id\":null,\"yahoo_id\":32504,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Dwyer (FL)\",\"depth_chart_order\":null,\"stats_id\":821285,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johnniedixon\",\"birth_date\":\"1994-09-16\",\"espn_id\":3121413},\"6549\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035401\",\"first_name\":\"Damion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601415346094,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"willis\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6549\",\"birth_city\":null,\"fantasy_data_id\":21528,\"years_exp\":1,\"hashtag\":\"#DamionWillis-NFL-FA-0\",\"search_first_name\":\"damion\",\"rotowire_id\":14214,\"rotoworld_id\":14659,\"active\":true,\"search_rank\":1752,\"age\":23,\"full_name\":\"Damion Willis\",\"sportradar_id\":\"967a20b1-e334-4ebb-a1b5-f46111ab7325\",\"pandascore_id\":null,\"yahoo_id\":32471,\"last_name\":\"Willis\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":14,\"stats_id\":978040,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'3\\\"\",\"search_full_name\":\"damionwillis\",\"birth_date\":\"1997-06-20\",\"espn_id\":4241723},\"1052\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029607\",\"first_name\":\"Demario\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606129811464,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"WLB\",\"player_id\":\"1052\",\"birth_city\":null,\"fantasy_data_id\":13810,\"years_exp\":8,\"hashtag\":\"#DemarioDavis-NFL-NO-56\",\"search_first_name\":\"demario\",\"rotowire_id\":8213,\"rotoworld_id\":7547,\"active\":true,\"search_rank\":662,\"age\":31,\"full_name\":\"Demario Davis\",\"sportradar_id\":\"e6221da0-1ce0-4f60-85b5-f2094e9d2863\",\"pandascore_id\":null,\"yahoo_id\":25787,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Brandon (MS)\",\"depth_chart_order\":1,\"stats_id\":401178,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"demariodavis\",\"birth_date\":\"1989-01-11\",\"espn_id\":14958},\"2315\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032241\",\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606512026979,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gurley\",\"depth_chart_position\":\"RB\",\"player_id\":\"2315\",\"birth_city\":null,\"fantasy_data_id\":16771,\"years_exp\":5,\"hashtag\":\"#ToddGurley-NFL-ATL-21\",\"search_first_name\":\"todd\",\"rotowire_id\":10147,\"rotoworld_id\":10288,\"active\":true,\"search_rank\":27,\"age\":26,\"full_name\":\"Todd Gurley\",\"sportradar_id\":\"14263792-d1d3-4b0c-85f7-2a85b4aed6f1\",\"pandascore_id\":null,\"yahoo_id\":28398,\"last_name\":\"Gurley\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Tarboro (NC)\",\"depth_chart_order\":5,\"stats_id\":694641,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"toddgurley\",\"birth_date\":\"1994-08-03\",\"espn_id\":2977644},\"3556\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":null,\"player_id\":\"3556\",\"birth_city\":null,\"fantasy_data_id\":18329,\"years_exp\":0,\"hashtag\":\"#ChristianPowell-NFL-FA-39\",\"search_first_name\":\"christian\",\"rotowire_id\":11648,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Christian Powell\",\"sportradar_id\":\"8d992d52-fe0f-4188-820c-a38a52f72975\",\"pandascore_id\":null,\"yahoo_id\":29492,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694899,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"christianpowell\",\"birth_date\":\"1994-03-03\",\"espn_id\":null},\"5849\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035228\",\"first_name\":\"Kyler\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606513527175,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":\"QB\",\"player_id\":\"5849\",\"birth_city\":null,\"fantasy_data_id\":20889,\"years_exp\":1,\"hashtag\":\"#KylerMurray-NFL-ARI-1\",\"search_first_name\":\"kyler\",\"rotowire_id\":13613,\"rotoworld_id\":13950,\"active\":true,\"search_rank\":57,\"age\":23,\"full_name\":\"Kyler Murray\",\"sportradar_id\":\"dd5a6b6e-ffae-45a5-b8e6-718a9251f374\",\"pandascore_id\":null,\"yahoo_id\":31833,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Allen (TX)\",\"depth_chart_order\":1,\"stats_id\":879799,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kylermurray\",\"birth_date\":\"1997-08-07\",\"espn_id\":3917315},\"274\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colon\",\"depth_chart_position\":null,\"player_id\":\"274\",\"birth_city\":null,\"fantasy_data_id\":6854,\"years_exp\":14,\"hashtag\":\"#WillieColon-NFL-FA-66\",\"search_first_name\":\"willie\",\"rotowire_id\":5060,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Willie Colon\",\"sportradar_id\":\"c9d63c44-e306-466b-97e5-403d633d4d22\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Colon\",\"metadata\":null,\"college\":\"Hofstra\",\"high_school\":\"Cardinal Hayes (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"williecolon\",\"birth_date\":\"1983-04-09\",\"espn_id\":9717},\"1430\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030106\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1529017201440,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1430\",\"birth_city\":null,\"fantasy_data_id\":14991,\"years_exp\":7,\"hashtag\":\"#ChrisJones-NFL-FA-63\",\"search_first_name\":\"chris\",\"rotowire_id\":5250,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Jones\",\"sportradar_id\":\"c63eb820-738c-4b32-83f4-65ed80d54ae4\",\"pandascore_id\":null,\"yahoo_id\":26821,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":509926,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisjones\",\"birth_date\":\"1990-07-12\",\"espn_id\":15955},\"6827\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bradlee\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587849642495,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anae\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6827\",\"birth_city\":null,\"fantasy_data_id\":21870,\"years_exp\":0,\"hashtag\":\"#BradleeAnae-NFL-DAL-56\",\"search_first_name\":\"bradlee\",\"rotowire_id\":14582,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1799,\"age\":22,\"full_name\":\"Bradlee Anae\",\"sportradar_id\":\"854d07f2-11cc-4dc1-bdaf-e8cce2c89a75\",\"pandascore_id\":null,\"yahoo_id\":32849,\"last_name\":\"Anae\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Kahuku (HI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bradleeanae\",\"birth_date\":\"1998-10-17\",\"espn_id\":4035660},\"3241\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033093\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602111329072,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bullard\",\"depth_chart_position\":\"LDE\",\"player_id\":\"3241\",\"birth_city\":null,\"fantasy_data_id\":18002,\"years_exp\":4,\"hashtag\":\"#JonathanBullard-NFL-SEA-93\",\"search_first_name\":\"jonathan\",\"rotowire_id\":10926,\"rotoworld_id\":11274,\"active\":true,\"search_rank\":989,\"age\":27,\"full_name\":\"Jonathan Bullard\",\"sportradar_id\":\"ccfcbd2c-6e35-49b9-b131-ba2143665260\",\"pandascore_id\":null,\"yahoo_id\":29306,\"last_name\":\"Bullard\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Crest (NC)\",\"depth_chart_order\":2,\"stats_id\":694609,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonathanbullard\",\"birth_date\":\"1993-10-22\",\"espn_id\":2980097},\"142\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0021678\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"romo\",\"depth_chart_position\":null,\"player_id\":\"142\",\"birth_city\":null,\"fantasy_data_id\":3867,\"years_exp\":17,\"hashtag\":\"#TonyRomo-NFL-FA-9\",\"search_first_name\":\"tony\",\"rotowire_id\":3153,\"rotoworld_id\":2730,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Tony Romo\",\"sportradar_id\":\"c32d8200-2b85-4638-8db3-9a52fb86b207\",\"pandascore_id\":null,\"yahoo_id\":6624,\"last_name\":\"Romo\",\"metadata\":null,\"college\":\"Eastern Illinois\",\"high_school\":\"Burlington (WI)\",\"depth_chart_order\":null,\"stats_id\":234210,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tonyromo\",\"birth_date\":\"1980-04-21\",\"espn_id\":5209},\"6246\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035427\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604187646060,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":\"RB\",\"player_id\":\"6246\",\"birth_city\":null,\"fantasy_data_id\":21177,\"years_exp\":1,\"hashtag\":\"#JeremyCox-NFL-DEN-35\",\"search_first_name\":\"jeremy\",\"rotowire_id\":14003,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jeremy Cox\",\"sportradar_id\":\"3eb32502-2ecd-44b9-978e-33473fdd8354\",\"pandascore_id\":null,\"yahoo_id\":32541,\"last_name\":\"Cox\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Old Dominion\",\"high_school\":\"South View (NC)\",\"depth_chart_order\":4,\"stats_id\":867172,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeremycox\",\"birth_date\":\"1996-08-16\",\"espn_id\":3914534},\"5367\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034336\",\"first_name\":\"Shaun Dion\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1578361239171,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":\"MLB\",\"player_id\":\"5367\",\"birth_city\":null,\"fantasy_data_id\":20003,\"years_exp\":2,\"hashtag\":\"#ShaunDionHamilton-NFL-WAS-51\",\"search_first_name\":\"shaundion\",\"rotowire_id\":12907,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1390,\"age\":25,\"full_name\":\"Shaun Dion Hamilton\",\"sportradar_id\":\"37476573-91a5-454f-a849-baf46c293940\",\"pandascore_id\":null,\"yahoo_id\":31167,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Carver (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaundionhamilton\",\"birth_date\":\"1995-09-11\",\"espn_id\":3115310},\"4344\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033367\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604950227724,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"board\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4344\",\"birth_city\":null,\"fantasy_data_id\":19200,\"years_exp\":3,\"hashtag\":\"#CJBoard-NFL-NYG-18\",\"search_first_name\":\"cj\",\"rotowire_id\":12443,\"rotoworld_id\":null,\"active\":true,\"search_rank\":413,\"age\":26,\"full_name\":\"C.J. Board\",\"sportradar_id\":\"8db3a609-73f4-4797-ae22-8adf024d473c\",\"pandascore_id\":null,\"yahoo_id\":30513,\"last_name\":\"Board\",\"metadata\":null,\"college\":\"Chattanooga\",\"high_school\":\"West Creek (TN)\",\"depth_chart_order\":2,\"stats_id\":695408,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cjboard\",\"birth_date\":\"1993-12-12\",\"espn_id\":2973626},\"4711\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pirsig\",\"depth_chart_position\":null,\"player_id\":\"4711\",\"birth_city\":null,\"fantasy_data_id\":19618,\"years_exp\":2,\"hashtag\":\"#JonahPirsig-NFL-FA-76\",\"search_first_name\":\"jonah\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jonah Pirsig\",\"sportradar_id\":\"c6fe7592-e8b4-4add-b4bf-57293e56e7b4\",\"pandascore_id\":null,\"yahoo_id\":30755,\"last_name\":\"Pirsig\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'8\\\"\",\"search_full_name\":\"jonahpirsig\",\"birth_date\":\"1993-05-04\",\"espn_id\":2970718},\"2428\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032188\",\"first_name\":\"Vince\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1568240429438,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mayle\",\"depth_chart_position\":null,\"player_id\":\"2428\",\"birth_city\":null,\"fantasy_data_id\":16884,\"years_exp\":5,\"hashtag\":\"#VinceMayle-NFL-FA-83\",\"search_first_name\":\"vince\",\"rotowire_id\":10213,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Vince Mayle\",\"sportradar_id\":\"34cab90e-62e4-4d0c-a7ca-bbba76a2c6b0\",\"pandascore_id\":null,\"yahoo_id\":28511,\"last_name\":\"Mayle\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Inderkum (CA)\",\"depth_chart_order\":null,\"stats_id\":749539,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'2\\\"\",\"search_full_name\":\"vincemayle\",\"birth_date\":\"1991-06-12\",\"espn_id\":3052066},\"7155\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tae\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605117306218,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"crowder\",\"depth_chart_position\":null,\"player_id\":\"7155\",\"birth_city\":null,\"fantasy_data_id\":22156,\"years_exp\":0,\"hashtag\":\"#TaeCrowder-NFL-NYG-48\",\"search_first_name\":\"tae\",\"rotowire_id\":14839,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1941,\"age\":23,\"full_name\":\"Tae Crowder\",\"sportradar_id\":\"22f733ff-fd31-4731-acf1-97843e9eb665\",\"pandascore_id\":null,\"yahoo_id\":32924,\"last_name\":\"Crowder\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Harris County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"taecrowder\",\"birth_date\":\"1997-03-12\",\"espn_id\":3915171},\"1937\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bishop\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1521258601992,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sankey\",\"depth_chart_position\":null,\"player_id\":\"1937\",\"birth_city\":null,\"fantasy_data_id\":16178,\"years_exp\":6,\"hashtag\":\"#BishopSankey-NFL-FA-43\",\"search_first_name\":\"bishop\",\"rotowire_id\":9518,\"rotoworld_id\":9408,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Bishop Sankey\",\"sportradar_id\":\"925f7be0-e73f-4fc7-b3d8-552224d847a7\",\"pandascore_id\":null,\"yahoo_id\":27582,\"last_name\":\"Sankey\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Gonzaga Prep (WA)\",\"depth_chart_order\":null,\"stats_id\":608017,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bishopsankey\",\"birth_date\":\"1992-09-15\",\"espn_id\":16794},\"6306\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035112\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"LB\"],\"news_updated\":1606348203379,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"mekari\",\"depth_chart_position\":null,\"player_id\":\"6306\",\"birth_city\":null,\"fantasy_data_id\":21206,\"years_exp\":1,\"hashtag\":\"#PatrickMekari-NFL-BAL-65\",\"search_first_name\":\"patrick\",\"rotowire_id\":14126,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Patrick Mekari\",\"sportradar_id\":\"d027528c-6fb1-41bb-9ede-4f45ec731fdd\",\"pandascore_id\":null,\"yahoo_id\":32315,\"last_name\":\"Mekari\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Westlake (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"patrickmekari\",\"birth_date\":\"1997-08-13\",\"espn_id\":3863820},\"1135\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bilukidi\",\"depth_chart_position\":null,\"player_id\":\"1135\",\"birth_city\":null,\"fantasy_data_id\":14089,\"years_exp\":8,\"hashtag\":\"#ChristoBilukidi-NFL-FA-72\",\"search_first_name\":\"christo\",\"rotowire_id\":8312,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Christo Bilukidi\",\"sportradar_id\":\"c995d239-c00e-4b0f-a37c-4e58618422e7\",\"pandascore_id\":null,\"yahoo_id\":25899,\"last_name\":\"Bilukidi\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"St. Patrick's (Ottawa, CAN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"christobilukidi\",\"birth_date\":\"1989-12-13\",\"espn_id\":15103},\"4299\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033229\",\"first_name\":\"Andreas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1555367437745,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knappe\",\"depth_chart_position\":null,\"player_id\":\"4299\",\"birth_city\":null,\"fantasy_data_id\":19147,\"years_exp\":3,\"hashtag\":\"#AndreasKnappe-NFL-FA-73\",\"search_first_name\":\"andreas\",\"rotowire_id\":12101,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Andreas Knappe\",\"sportradar_id\":\"97be6c07-9295-4f98-8a7f-83aaa7a47aad\",\"pandascore_id\":null,\"yahoo_id\":30457,\"last_name\":\"Knappe\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'8\\\"\",\"search_full_name\":\"andreasknappe\",\"birth_date\":\"1991-06-02\",\"espn_id\":2974240},\"6821\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604802010495,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"LT\",\"player_id\":\"6821\",\"birth_city\":null,\"fantasy_data_id\":21949,\"years_exp\":0,\"hashtag\":\"#AustinJackson-NFL-MIA-73\",\"search_first_name\":\"austin\",\"rotowire_id\":14513,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Austin Jackson\",\"sportradar_id\":\"412be3f1-210a-44b9-828c-d35cc6a1119c\",\"pandascore_id\":null,\"yahoo_id\":32688,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"North Canyon (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"austinjackson\",\"birth_date\":\"1999-08-11\",\"espn_id\":4271632},\"7069\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alohi\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1587849642479,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilman\",\"depth_chart_position\":\"FS\",\"player_id\":\"7069\",\"birth_city\":null,\"fantasy_data_id\":21939,\"years_exp\":0,\"hashtag\":\"#AlohiGilman-NFL-LAC-32\",\"search_first_name\":\"alohi\",\"rotowire_id\":14521,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1854,\"age\":23,\"full_name\":\"Alohi Gilman\",\"sportradar_id\":\"f3a7ab39-ead2-4dbf-b760-d652b8a26853\",\"pandascore_id\":null,\"yahoo_id\":32856,\"last_name\":\"Gilman\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Kahuku (HI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"alohigilman\",\"birth_date\":\"1997-09-17\",\"espn_id\":4039413},\"1941\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ankrah\",\"depth_chart_position\":null,\"player_id\":\"1941\",\"birth_city\":null,\"fantasy_data_id\":16186,\"years_exp\":1,\"hashtag\":\"#JasonAnkrah-NFL-FA-56\",\"search_first_name\":\"jason\",\"rotowire_id\":9911,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jason Ankrah\",\"sportradar_id\":\"36b1e890-9060-4878-98da-b94dc40857cb\",\"pandascore_id\":null,\"yahoo_id\":28187,\"last_name\":\"Ankrah\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jasonankrah\",\"birth_date\":\"1991-02-26\",\"espn_id\":17368},\"1486\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030546\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1585007133622,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"frederick\",\"depth_chart_position\":\"C\",\"player_id\":\"1486\",\"birth_city\":null,\"fantasy_data_id\":15083,\"years_exp\":7,\"hashtag\":\"#TravisFrederick-NFL-DAL-72\",\"search_first_name\":\"travis\",\"rotowire_id\":8631,\"rotoworld_id\":8417,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Travis Frederick\",\"sportradar_id\":\"dea8f688-602c-4b48-946f-e634fb81d737\",\"pandascore_id\":null,\"yahoo_id\":26654,\"last_name\":\"Frederick\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Big Foot (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"travisfrederick\",\"birth_date\":\"1991-03-18\",\"espn_id\":15793},\"6840\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606430760256,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"arnette\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6840\",\"birth_city\":null,\"fantasy_data_id\":22045,\"years_exp\":0,\"hashtag\":\"#DamonArnette-NFL-LV-20\",\"search_first_name\":\"damon\",\"rotowire_id\":14547,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1882,\"age\":24,\"full_name\":\"Damon Arnette\",\"sportradar_id\":\"fe85708b-4644-4f77-ba2b-5726ff83439a\",\"pandascore_id\":null,\"yahoo_id\":32689,\"last_name\":\"Arnette\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"damonarnette\",\"birth_date\":\"1996-02-02\",\"espn_id\":3915506},\"4017\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033537\",\"first_name\":\"Deshaun\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606425958793,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":\"QB\",\"player_id\":\"4017\",\"birth_city\":null,\"fantasy_data_id\":18857,\"years_exp\":3,\"hashtag\":\"#DeshaunWatson-NFL-HOU-4\",\"search_first_name\":\"deshaun\",\"rotowire_id\":11712,\"rotoworld_id\":12151,\"active\":true,\"search_rank\":60,\"age\":25,\"full_name\":\"Deshaun Watson\",\"sportradar_id\":\"eec5265c-7731-4bb6-8af2-4f98a67f9ab7\",\"pandascore_id\":null,\"yahoo_id\":30125,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Gainesville (GA)\",\"depth_chart_order\":1,\"stats_id\":828743,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deshaunwatson\",\"birth_date\":\"1995-09-14\",\"espn_id\":3122840},\"2322\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032164\",\"first_name\":\"Arik\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606338302799,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"armstead\",\"depth_chart_position\":\"LDE\",\"player_id\":\"2322\",\"birth_city\":null,\"fantasy_data_id\":16778,\"years_exp\":5,\"hashtag\":\"#ArikArmstead-NFL-SF-91\",\"search_first_name\":\"arik\",\"rotowire_id\":10309,\"rotoworld_id\":10363,\"active\":true,\"search_rank\":854,\"age\":27,\"full_name\":\"Arik Armstead\",\"sportradar_id\":\"acb7169f-3ffa-4386-9866-e06af6ed7fef\",\"pandascore_id\":null,\"yahoo_id\":28405,\"last_name\":\"Armstead\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Pleasant Grove (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'7\\\"\",\"search_full_name\":\"arikarmstead\",\"birth_date\":\"1993-11-15\",\"espn_id\":2971275},\"1607\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"freeman\",\"depth_chart_position\":null,\"player_id\":\"1607\",\"birth_city\":null,\"fantasy_data_id\":15276,\"years_exp\":2,\"hashtag\":\"#DaltonFreeman-NFL-FA-63\",\"search_first_name\":\"dalton\",\"rotowire_id\":9530,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dalton Freeman\",\"sportradar_id\":\"9227aaa4-5c7a-457d-b7a9-aad4ba509d1c\",\"pandascore_id\":null,\"yahoo_id\":26985,\"last_name\":\"Freeman\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daltonfreeman\",\"birth_date\":\"1990-06-18\",\"espn_id\":16186},\"4524\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033602\",\"first_name\":\"Ironhead\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gallon\",\"depth_chart_position\":null,\"player_id\":\"4524\",\"birth_city\":null,\"fantasy_data_id\":19401,\"years_exp\":3,\"hashtag\":\"#IronheadGallon-NFL-FA-47\",\"search_first_name\":\"ironhead\",\"rotowire_id\":13408,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ironhead Gallon\",\"sportradar_id\":\"0b873737-cd0a-4af5-8d88-c3860f93b29e\",\"pandascore_id\":null,\"yahoo_id\":30485,\"last_name\":\"Gallon\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ironheadgallon\",\"birth_date\":\"1994-01-18\",\"espn_id\":2973956},\"3158\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shawn\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oakman\",\"depth_chart_position\":null,\"player_id\":\"3158\",\"birth_city\":null,\"fantasy_data_id\":17917,\"years_exp\":0,\"hashtag\":\"#ShawnOakman-NFL-FA-0\",\"search_first_name\":\"shawn\",\"rotowire_id\":null,\"rotoworld_id\":11316,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Shawn Oakman\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Oakman\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"shawnoakman\",\"birth_date\":null,\"espn_id\":null},\"3565\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032687\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baxter\",\"depth_chart_position\":null,\"player_id\":\"3565\",\"birth_city\":null,\"fantasy_data_id\":18340,\"years_exp\":3,\"hashtag\":\"#KeithBaxter-NFL-FA-41\",\"search_first_name\":\"keith\",\"rotowire_id\":11493,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Keith Baxter\",\"sportradar_id\":\"14d50779-5b08-44c0-9ae1-6f05b1b8a4f9\",\"pandascore_id\":null,\"yahoo_id\":29536,\"last_name\":\"Baxter\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'0\\\"\",\"search_full_name\":\"keithbaxter\",\"birth_date\":\"1992-06-04\",\"espn_id\":2582034},\"6404\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035618\",\"first_name\":\"Boogie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":null,\"player_id\":\"6404\",\"birth_city\":null,\"fantasy_data_id\":21398,\"years_exp\":1,\"hashtag\":\"#BoogieRoberts-NFL-FA-65\",\"search_first_name\":\"boogie\",\"rotowire_id\":14053,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Boogie Roberts\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":32178,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"289\",\"height\":\"6'2\\\"\",\"search_full_name\":\"boogieroberts\",\"birth_date\":\"1996-01-19\",\"espn_id\":3125300},\"1841\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":null,\"player_id\":\"1841\",\"birth_city\":null,\"fantasy_data_id\":16046,\"years_exp\":1,\"hashtag\":\"#StephenHouston-NFL-FA-33\",\"search_first_name\":\"stephen\",\"rotowire_id\":9713,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Stephen Houston\",\"sportradar_id\":\"e48006f6-da9b-40de-ae3e-e67c351e94c0\",\"pandascore_id\":null,\"yahoo_id\":28004,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'10\\\"\",\"search_full_name\":\"stephenhouston\",\"birth_date\":\"1991-10-28\",\"espn_id\":17174},\"2491\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032067\",\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1573602955333,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"silberman\",\"depth_chart_position\":null,\"player_id\":\"2491\",\"birth_city\":null,\"fantasy_data_id\":16950,\"years_exp\":5,\"hashtag\":\"#IanSilberman-NFL-FA-68\",\"search_first_name\":\"ian\",\"rotowire_id\":10478,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ian Silberman\",\"sportradar_id\":\"b220ff58-7cb4-472d-93b5-da41058d9a79\",\"pandascore_id\":null,\"yahoo_id\":28579,\"last_name\":\"Silberman\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Fleming Island (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"iansilberman\",\"birth_date\":\"1992-10-10\",\"espn_id\":2516067},\"3887\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccord\",\"depth_chart_position\":null,\"player_id\":\"3887\",\"birth_city\":null,\"fantasy_data_id\":18709,\"years_exp\":0,\"hashtag\":\"#BenMcCord-NFL-FA-49\",\"search_first_name\":\"ben\",\"rotowire_id\":11200,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ben McCord\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30017,\"last_name\":\"McCord\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benmccord\",\"birth_date\":\"1992-06-30\",\"espn_id\":null},\"5854\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035704\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606520727817,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lock\",\"depth_chart_position\":\"QB\",\"player_id\":\"5854\",\"birth_city\":null,\"fantasy_data_id\":20859,\"years_exp\":1,\"hashtag\":\"#DrewLock-NFL-DEN-3\",\"search_first_name\":\"drew\",\"rotowire_id\":13736,\"rotoworld_id\":13992,\"active\":true,\"search_rank\":161,\"age\":24,\"full_name\":\"Drew Lock\",\"sportradar_id\":\"94325301-e0ad-4a9f-a0e5-ffec0f529be3\",\"pandascore_id\":null,\"yahoo_id\":31874,\"last_name\":\"Lock\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Missouri\",\"high_school\":\"Lee's Summit (MO)\",\"depth_chart_order\":1,\"stats_id\":882345,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"drewlock\",\"birth_date\":\"1996-11-10\",\"espn_id\":3924327},\"5704\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tepper\",\"depth_chart_position\":null,\"player_id\":\"5704\",\"birth_city\":null,\"fantasy_data_id\":20648,\"years_exp\":0,\"hashtag\":\"#DavidTepper-NFL-FA-0\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":13859,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"David Tepper\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tepper\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"davidtepper\",\"birth_date\":null,\"espn_id\":null},\"5936\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035649\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599777619635,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"RG\",\"player_id\":\"5936\",\"birth_city\":null,\"fantasy_data_id\":21060,\"years_exp\":1,\"hashtag\":\"#NateDavis-NFL-TEN-64\",\"search_first_name\":\"nate\",\"rotowire_id\":13800,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nate Davis\",\"sportradar_id\":\"3b69032b-a321-4da8-9303-9d21a1970de6\",\"pandascore_id\":null,\"yahoo_id\":31914,\"last_name\":\"Davis\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"North Carolina-Charlotte\",\"high_school\":\"Stone Bridge (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"natedavis\",\"birth_date\":\"1996-09-23\",\"espn_id\":3120070},\"7446\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tucker\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1604807411057,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccann\",\"depth_chart_position\":\"K\",\"player_id\":\"7446\",\"birth_city\":null,\"fantasy_data_id\":22425,\"years_exp\":0,\"hashtag\":\"#TuckerMcCann-NFL-TEN-8\",\"search_first_name\":\"tucker\",\"rotowire_id\":14860,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2003,\"age\":23,\"full_name\":\"Tucker McCann\",\"sportradar_id\":\"397901eb-5589-4f0e-8c02-f50509e22f3c\",\"pandascore_id\":null,\"yahoo_id\":33343,\"last_name\":\"McCann\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Missouri\",\"high_school\":\"O'Fallon (IL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tuckermccann\",\"birth_date\":\"1997-11-10\",\"espn_id\":4035098},\"7081\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605828314118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":\"QB\",\"player_id\":\"7081\",\"birth_city\":null,\"fantasy_data_id\":21965,\"years_exp\":0,\"hashtag\":\"#JamesMorgan-NFL-NYJ-4\",\"search_first_name\":\"james\",\"rotowire_id\":14531,\"rotoworld_id\":null,\"active\":true,\"search_rank\":550,\"age\":23,\"full_name\":\"James Morgan\",\"sportradar_id\":\"d0b866b8-6221-492c-a80b-4a12bbd13e64\",\"pandascore_id\":null,\"yahoo_id\":32795,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":\"Ashwaubenon (WI)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jamesmorgan\",\"birth_date\":\"1997-02-28\",\"espn_id\":3914395},\"865\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1514507402250,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"prosinski\",\"depth_chart_position\":null,\"player_id\":\"865\",\"birth_city\":null,\"fantasy_data_id\":12997,\"years_exp\":9,\"hashtag\":\"#ChrisProsinski-NFL-FA-43\",\"search_first_name\":\"chris\",\"rotowire_id\":7628,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Chris Prosinski\",\"sportradar_id\":\"203e67cc-fac1-4903-b888-98899c3a44b7\",\"pandascore_id\":null,\"yahoo_id\":24908,\"last_name\":\"Prosinski\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Buffalo (WY)\",\"depth_chart_order\":null,\"stats_id\":323800,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrisprosinski\",\"birth_date\":\"1987-04-28\",\"espn_id\":14072},\"6125\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035643\",\"first_name\":\"Jeffery\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605118506519,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":\"DT\",\"player_id\":\"6125\",\"birth_city\":null,\"fantasy_data_id\":20940,\"years_exp\":1,\"hashtag\":\"#JefferySimmons-NFL-TEN-98\",\"search_first_name\":\"jeffery\",\"rotowire_id\":13465,\"rotoworld_id\":14008,\"active\":true,\"search_rank\":1599,\"age\":23,\"full_name\":\"Jeffery Simmons\",\"sportradar_id\":\"dcbe3642-aa52-43e6-8f4c-4b9809377c4d\",\"pandascore_id\":null,\"yahoo_id\":31851,\"last_name\":\"Simmons\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Mississippi State\",\"high_school\":\"Noxubee County (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jefferysimmons\",\"birth_date\":\"1997-07-28\",\"espn_id\":4035369},\"3251\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032970\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606102810163,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"3251\",\"birth_city\":null,\"fantasy_data_id\":18012,\"years_exp\":4,\"hashtag\":\"#JordanJenkins-NFL-NYJ-48\",\"search_first_name\":\"jordan\",\"rotowire_id\":11070,\"rotoworld_id\":11333,\"active\":true,\"search_rank\":992,\"age\":26,\"full_name\":\"Jordan Jenkins\",\"sportradar_id\":\"ae3bb00f-84e8-439f-ab56-38c6838b8b97\",\"pandascore_id\":null,\"yahoo_id\":29317,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Harris County (GA)\",\"depth_chart_order\":1,\"stats_id\":694644,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanjenkins\",\"birth_date\":\"1994-07-01\",\"espn_id\":2977647},\"6718\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0030755\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"6718\",\"birth_city\":null,\"fantasy_data_id\":16483,\"years_exp\":6,\"hashtag\":\"#JordanMcCray-NFL-FA-60\",\"search_first_name\":\"jordan\",\"rotowire_id\":10124,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jordan McCray\",\"sportradar_id\":\"8834e7eb-3cf0-43ae-ac0f-5a1e28dc5107\",\"pandascore_id\":null,\"yahoo_id\":28083,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanmccray\",\"birth_date\":\"1991-11-11\",\"espn_id\":17210},\"5371\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034320\",\"first_name\":\"Kentavius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604261420432,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"street\",\"depth_chart_position\":\"RDT\",\"player_id\":\"5371\",\"birth_city\":null,\"fantasy_data_id\":19952,\"years_exp\":2,\"hashtag\":\"#KentaviusStreet-NFL-SF-95\",\"search_first_name\":\"kentavius\",\"rotowire_id\":12752,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1363,\"age\":24,\"full_name\":\"Kentavius Street\",\"sportradar_id\":\"eb864600-7562-491a-b7a7-9eb3068dba06\",\"pandascore_id\":null,\"yahoo_id\":31098,\"last_name\":\"Street\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Rose (NC)\",\"depth_chart_order\":1,\"stats_id\":832247,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kentaviusstreet\",\"birth_date\":\"1996-05-08\",\"espn_id\":3116726},\"3222\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032388\",\"first_name\":\"Deion\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606194350219,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LB\",\"player_id\":\"3222\",\"birth_city\":null,\"fantasy_data_id\":17983,\"years_exp\":4,\"hashtag\":\"#DeionJones-NFL-ATL-45\",\"search_first_name\":\"deion\",\"rotowire_id\":11080,\"rotoworld_id\":11372,\"active\":true,\"search_rank\":975,\"age\":26,\"full_name\":\"Deion Jones\",\"sportradar_id\":\"a2a587d3-2971-41f5-a5d4-828d9cf1494e\",\"pandascore_id\":null,\"yahoo_id\":29285,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Jesuit (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deionjones\",\"birth_date\":\"1994-11-04\",\"espn_id\":2976545},\"2187\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031336\",\"first_name\":\"Kony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1544032508923,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ealy\",\"depth_chart_position\":null,\"player_id\":\"2187\",\"birth_city\":null,\"fantasy_data_id\":16555,\"years_exp\":6,\"hashtag\":\"#KonyEaly-NFL-FA-96\",\"search_first_name\":\"kony\",\"rotowire_id\":9407,\"rotoworld_id\":9389,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kony Ealy\",\"sportradar_id\":\"dfce3ced-01eb-4558-ab85-9c427cf1807d\",\"pandascore_id\":null,\"yahoo_id\":27588,\"last_name\":\"Ealy\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"New Madrid (MO)\",\"depth_chart_order\":null,\"stats_id\":553228,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"konyealy\",\"birth_date\":\"1991-12-21\",\"espn_id\":16773},\"11\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hartley\",\"depth_chart_position\":null,\"player_id\":\"11\",\"birth_city\":null,\"fantasy_data_id\":418,\"years_exp\":7,\"hashtag\":\"#GarrettHartley-NFL-FA-8\",\"search_first_name\":\"garrett\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Garrett Hartley\",\"sportradar_id\":\"83f8a30f-829f-4928-9816-7497ce6339c7\",\"pandascore_id\":null,\"yahoo_id\":9222,\"last_name\":\"Hartley\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'8\\\"\",\"search_full_name\":\"garretthartley\",\"birth_date\":\"1986-05-16\",\"espn_id\":11543},\"432\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"432\",\"birth_city\":null,\"fantasy_data_id\":9118,\"years_exp\":11,\"hashtag\":\"#WilliamMoore-NFL-FA-25\",\"search_first_name\":\"william\",\"rotowire_id\":6093,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"William Moore\",\"sportradar_id\":\"f6fd0d1f-9d12-4d37-a65d-3d34a47331bc\",\"pandascore_id\":null,\"yahoo_id\":9319,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Hayti (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'0\\\"\",\"search_full_name\":\"williammoore\",\"birth_date\":\"1985-05-18\",\"espn_id\":12530},\"352\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coffman\",\"depth_chart_position\":null,\"player_id\":\"352\",\"birth_city\":null,\"fantasy_data_id\":8428,\"years_exp\":11,\"hashtag\":\"#ChaseCoffman-NFL-FA-85\",\"search_first_name\":\"chase\",\"rotowire_id\":6035,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Chase Coffman\",\"sportradar_id\":\"424dda80-1a85-4339-bc1a-8175f528bef8\",\"pandascore_id\":null,\"yahoo_id\":9362,\"last_name\":\"Coffman\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Raymore-Peculiar (MO)\",\"depth_chart_order\":null,\"stats_id\":300037,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chasecoffman\",\"birth_date\":\"1986-11-10\",\"espn_id\":12536},\"7187\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rojesterman\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farris\",\"depth_chart_position\":null,\"player_id\":\"7187\",\"birth_city\":null,\"fantasy_data_id\":22189,\"years_exp\":0,\"hashtag\":\"#RojestermanFarris-NFL-FA-0\",\"search_first_name\":\"rojesterman\",\"rotowire_id\":14998,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rojesterman Farris\",\"sportradar_id\":\"03773859-cfd5-44f0-be0a-8ff82b6055fd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Farris\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rojestermanfarris\",\"birth_date\":\"1997-09-11\",\"espn_id\":null},\"925\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.T.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1511915701357,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"925\",\"birth_city\":null,\"fantasy_data_id\":13205,\"years_exp\":9,\"hashtag\":\"#JTThomas-NFL-FA-55\",\"search_first_name\":\"jt\",\"rotowire_id\":7581,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"J.T. Thomas\",\"sportradar_id\":\"7145753a-e235-4ae8-a705-f5347fbbd978\",\"pandascore_id\":null,\"yahoo_id\":24982,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Blanche Ely (FL)\",\"depth_chart_order\":null,\"stats_id\":339737,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jtthomas\",\"birth_date\":\"1988-08-15\",\"espn_id\":14216},\"4177\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033555\",\"first_name\":\"Mack\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605577220902,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hollins\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4177\",\"birth_city\":null,\"fantasy_data_id\":19023,\"years_exp\":3,\"hashtag\":\"#MackHollins-NFL-MIA-86\",\"search_first_name\":\"mack\",\"rotowire_id\":11861,\"rotoworld_id\":12349,\"active\":true,\"search_rank\":290,\"age\":27,\"full_name\":\"Mack Hollins\",\"sportradar_id\":\"93cb5790-1012-4c42-bccb-5748c27ba7d6\",\"pandascore_id\":null,\"yahoo_id\":30231,\"last_name\":\"Hollins\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Thomas Sprigg Wootton (MD)\",\"depth_chart_order\":1,\"stats_id\":702808,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mackhollins\",\"birth_date\":\"1993-09-16\",\"espn_id\":2991662},\"6644\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035392\",\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"akins\",\"depth_chart_position\":null,\"player_id\":\"6644\",\"birth_city\":null,\"fantasy_data_id\":21529,\"years_exp\":1,\"hashtag\":\"#CurtisAkins-NFL-FA-59\",\"search_first_name\":\"curtis\",\"rotowire_id\":13923,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Curtis Akins\",\"sportradar_id\":\"743aebf3-b1ad-4de7-a381-f6d10446989b\",\"pandascore_id\":null,\"yahoo_id\":32462,\"last_name\":\"Akins\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'1\\\"\",\"search_full_name\":\"curtisakins\",\"birth_date\":\"1995-09-28\",\"espn_id\":3139626},\"7198\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hector\",\"depth_chart_position\":null,\"player_id\":\"7198\",\"birth_city\":null,\"fantasy_data_id\":22200,\"years_exp\":0,\"hashtag\":\"#JeffHector-NFL-FA-0\",\"search_first_name\":\"jeff\",\"rotowire_id\":15113,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jeff Hector\",\"sportradar_id\":\"8439dbd1-6a37-447e-9292-75d375e9ebd7\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hector\",\"metadata\":null,\"college\":\"Redlands\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeffhector\",\"birth_date\":null,\"espn_id\":null},\"6114\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035468\",\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1594164617960,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"baileyii\",\"depth_chart_position\":null,\"player_id\":\"6114\",\"birth_city\":null,\"fantasy_data_id\":21018,\"years_exp\":1,\"hashtag\":\"#ZackBaileyII-NFL-TB-61\",\"search_first_name\":\"zack\",\"rotowire_id\":13441,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Zack Bailey II\",\"sportradar_id\":\"e33df0c0-1f12-450a-a178-b7e5478c479e\",\"pandascore_id\":null,\"yahoo_id\":32476,\"last_name\":\"Bailey II\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Summerville (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zackbaileyii\",\"birth_date\":\"1995-11-08\",\"espn_id\":3924352},\"5711\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034738\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"womac\",\"depth_chart_position\":null,\"player_id\":\"5711\",\"birth_city\":null,\"fantasy_data_id\":20650,\"years_exp\":2,\"hashtag\":\"#BrianWomac-NFL-FA-62\",\"search_first_name\":\"brian\",\"rotowire_id\":13343,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brian Womac\",\"sportradar_id\":\"d0d36216-31d3-4920-acc2-e97823a46ecc\",\"pandascore_id\":null,\"yahoo_id\":31735,\"last_name\":\"Womac\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brianwomac\",\"birth_date\":\"1995-01-19\",\"espn_id\":3047923},\"1396\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aubrey\",\"depth_chart_position\":null,\"player_id\":\"1396\",\"birth_city\":null,\"fantasy_data_id\":14928,\"years_exp\":7,\"hashtag\":\"#JoshAubrey-NFL-FA-31\",\"search_first_name\":\"josh\",\"rotowire_id\":9094,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Josh Aubrey\",\"sportradar_id\":\"3e97f3b8-3b42-4854-9116-e311c2bd04e9\",\"pandascore_id\":null,\"yahoo_id\":27146,\"last_name\":\"Aubrey\",\"metadata\":null,\"college\":\"Stephen F. Austin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joshaubrey\",\"birth_date\":\"1991-04-09\",\"espn_id\":16312},\"2484\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tayo\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fabuluje\",\"depth_chart_position\":null,\"player_id\":\"2484\",\"birth_city\":null,\"fantasy_data_id\":16943,\"years_exp\":5,\"hashtag\":\"#TayoFabuluje-NFL-FA-73\",\"search_first_name\":\"tayo\",\"rotowire_id\":10287,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tayo Fabuluje\",\"sportradar_id\":\"b0b6d2c1-68c0-429f-8718-7f18a8d04528\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fabuluje\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Oak Ridge\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"342\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tayofabuluje\",\"birth_date\":\"1991-07-17\",\"espn_id\":2513205},\"6175\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035596\",\"first_name\":\"Kerrith\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1602032135989,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"whyte\",\"depth_chart_position\":\"RB\",\"player_id\":\"6175\",\"birth_city\":null,\"fantasy_data_id\":20982,\"years_exp\":1,\"hashtag\":\"#KerrithWhyte-NFL-DET-40\",\"search_first_name\":\"kerrith\",\"rotowire_id\":13454,\"rotoworld_id\":14283,\"active\":true,\"search_rank\":1619,\"age\":24,\"full_name\":\"Kerrith Whyte\",\"sportradar_id\":\"0a040f48-4fa1-479d-ae9d-3ab1457539ee\",\"pandascore_id\":null,\"yahoo_id\":32054,\"last_name\":\"Whyte\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Seminole Ridge (FL)\",\"depth_chart_order\":6,\"stats_id\":866446,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kerrithwhyte\",\"birth_date\":\"1996-10-31\",\"espn_id\":3919104},\"2542\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032155\",\"first_name\":\"Laurence\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533342912123,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gibson\",\"depth_chart_position\":null,\"player_id\":\"2542\",\"birth_city\":null,\"fantasy_data_id\":17002,\"years_exp\":5,\"hashtag\":\"#LaurenceGibson-NFL-FA-79\",\"search_first_name\":\"laurence\",\"rotowire_id\":10306,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Laurence Gibson\",\"sportradar_id\":\"e9256df6-ca8b-4575-8df8-75bf3367b85b\",\"pandascore_id\":null,\"yahoo_id\":28631,\"last_name\":\"Gibson\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"laurencegibson\",\"birth_date\":\"1991-03-19\",\"espn_id\":2512704},\"3629\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032528\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605747343979,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":\"RT\",\"player_id\":\"3629\",\"birth_city\":null,\"fantasy_data_id\":18416,\"years_exp\":4,\"hashtag\":\"#JustinMurray-NFL-ARI-71\",\"search_first_name\":\"justin\",\"rotowire_id\":11424,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Justin Murray\",\"sportradar_id\":\"87f9b9a9-5362-4947-8fc4-3b718b00566a\",\"pandascore_id\":null,\"yahoo_id\":29625,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Sycamore (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justinmurray\",\"birth_date\":\"1993-04-19\",\"espn_id\":2576585},\"4277\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033302\",\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604453746758,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"colbert\",\"depth_chart_position\":null,\"player_id\":\"4277\",\"birth_city\":null,\"fantasy_data_id\":19123,\"years_exp\":3,\"hashtag\":\"#AdrianColbert-NFL-NYG-34\",\"search_first_name\":\"adrian\",\"rotowire_id\":12041,\"rotoworld_id\":12430,\"active\":true,\"search_rank\":1226,\"age\":27,\"full_name\":\"Adrian Colbert\",\"sportradar_id\":\"24a58900-649f-4a29-a34c-26ff92b63be3\",\"pandascore_id\":null,\"yahoo_id\":30342,\"last_name\":\"Colbert\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Mineral Wells (TX)\",\"depth_chart_order\":null,\"stats_id\":691337,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"adriancolbert\",\"birth_date\":\"1993-10-06\",\"espn_id\":2971699},\"6580\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035517\",\"first_name\":\"A.T.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"6580\",\"birth_city\":null,\"fantasy_data_id\":21359,\"years_exp\":1,\"hashtag\":\"#ATHall-NFL-FA-73\",\"search_first_name\":\"at\",\"rotowire_id\":14202,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"A.T. Hall\",\"sportradar_id\":\"d5608d99-560e-4026-85cc-4ef79d1f1d27\",\"pandascore_id\":null,\"yahoo_id\":32423,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"athall\",\"birth_date\":\"1996-01-26\",\"espn_id\":3117248},\"5109\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":null,\"player_id\":\"5109\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#DuplicatePlayer-NFL-FA-6\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":13145,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":null,\"espn_id\":null},\"519\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spikes\",\"depth_chart_position\":null,\"player_id\":\"519\",\"birth_city\":null,\"fantasy_data_id\":10985,\"years_exp\":5,\"hashtag\":\"#BrandonSpikes-NFL-FA-51\",\"search_first_name\":\"brandon\",\"rotowire_id\":6608,\"rotoworld_id\":5762,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Brandon Spikes\",\"sportradar_id\":\"c848c7f8-740d-4618-abb5-5399d1152884\",\"pandascore_id\":null,\"yahoo_id\":24037,\"last_name\":\"Spikes\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonspikes\",\"birth_date\":\"1987-09-03\",\"espn_id\":13298},\"421\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026498\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606426859522,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stafford\",\"depth_chart_position\":\"QB\",\"player_id\":\"421\",\"birth_city\":null,\"fantasy_data_id\":9038,\"years_exp\":11,\"hashtag\":\"#MatthewStafford-NFL-DET-9\",\"search_first_name\":\"matthew\",\"rotowire_id\":5971,\"rotoworld_id\":5132,\"active\":true,\"search_rank\":103,\"age\":32,\"full_name\":\"Matthew Stafford\",\"sportradar_id\":\"ade43b1a-0601-4672-83b6-d246bc066a19\",\"pandascore_id\":null,\"yahoo_id\":9265,\"last_name\":\"Stafford\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Highland Park (TX)\",\"depth_chart_order\":1,\"stats_id\":323205,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"matthewstafford\",\"birth_date\":\"1988-02-07\",\"espn_id\":12483},\"5718\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034725\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1578677115320,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"yurachek\",\"depth_chart_position\":\"TE\",\"player_id\":\"5718\",\"birth_city\":null,\"fantasy_data_id\":20632,\"years_exp\":2,\"hashtag\":\"#RyanYurachek-NFL-FA-42\",\"search_first_name\":\"ryan\",\"rotowire_id\":13203,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Yurachek\",\"sportradar_id\":\"d8bc2cac-4537-4541-b9ea-a51bdd63e20c\",\"pandascore_id\":null,\"yahoo_id\":31715,\"last_name\":\"Yurachek\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":843755,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryanyurachek\",\"birth_date\":\"1996-08-27\",\"espn_id\":3139447},\"4511\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033477\",\"first_name\":\"Latroy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1545683758102,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"4511\",\"birth_city\":null,\"fantasy_data_id\":19383,\"years_exp\":3,\"hashtag\":\"#LatroyLewis-NFL-FA-45\",\"search_first_name\":\"latroy\",\"rotowire_id\":12084,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Latroy Lewis\",\"sportradar_id\":\"2717b760-4ea5-4e18-b1b3-b39275b8978d\",\"pandascore_id\":null,\"yahoo_id\":30700,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690100,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'3\\\"\",\"search_full_name\":\"latroylewis\",\"birth_date\":\"1993-11-09\",\"espn_id\":2972232},\"5640\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034534\",\"first_name\":\"Junior\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":null,\"player_id\":\"5640\",\"birth_city\":null,\"fantasy_data_id\":20114,\"years_exp\":2,\"hashtag\":\"#JuniorJoseph-NFL-FA-48\",\"search_first_name\":\"junior\",\"rotowire_id\":13248,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Junior Joseph\",\"sportradar_id\":\"7033ecd3-b11e-4123-8328-4413e1d7acc4\",\"pandascore_id\":null,\"yahoo_id\":31563,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"juniorjoseph\",\"birth_date\":\"1994-09-07\",\"espn_id\":3045180},\"1079\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028924\",\"first_name\":\"Tashaun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605398160422,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gipson\",\"depth_chart_position\":\"SS\",\"player_id\":\"1079\",\"birth_city\":null,\"fantasy_data_id\":13894,\"years_exp\":8,\"hashtag\":\"#TashaunGipson-NFL-CHI-38\",\"search_first_name\":\"tashaun\",\"rotowire_id\":8567,\"rotoworld_id\":8095,\"active\":true,\"search_rank\":666,\"age\":30,\"full_name\":\"Tashaun Gipson\",\"sportradar_id\":\"d5efd828-7339-43a7-ad7e-6f936dbbabb2\",\"pandascore_id\":null,\"yahoo_id\":26372,\"last_name\":\"Gipson\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Kimball (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tashaungipson\",\"birth_date\":\"1990-08-07\",\"espn_id\":15235},\"6607\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035481\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trewyn\",\"depth_chart_position\":null,\"player_id\":\"6607\",\"birth_city\":null,\"fantasy_data_id\":21146,\"years_exp\":1,\"hashtag\":\"#NateTrewyn-NFL-FA-0\",\"search_first_name\":\"nate\",\"rotowire_id\":13949,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nate Trewyn\",\"sportradar_id\":\"d80bd709-da27-4f3f-884b-a1e420191453\",\"pandascore_id\":null,\"yahoo_id\":32489,\"last_name\":\"Trewyn\",\"metadata\":null,\"college\":\"Wisconsin-Whitewater\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"natetrewyn\",\"birth_date\":\"1996-05-16\",\"espn_id\":3163365},\"5698\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kendrick\",\"depth_chart_position\":null,\"player_id\":\"5698\",\"birth_city\":null,\"fantasy_data_id\":20277,\"years_exp\":0,\"hashtag\":\"#BrettKendrick-NFL-DET-51\",\"search_first_name\":\"brett\",\"rotowire_id\":13331,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Brett Kendrick\",\"sportradar_id\":\"19183c08-1130-4690-990d-8c1d83ad11c5\",\"pandascore_id\":null,\"yahoo_id\":31655,\"last_name\":\"Kendrick\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brettkendrick\",\"birth_date\":\"1995-04-12\",\"espn_id\":3044736},\"5917\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035140\",\"first_name\":\"Mecole\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606236652514,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hardman\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5917\",\"birth_city\":null,\"fantasy_data_id\":20788,\"years_exp\":1,\"hashtag\":\"#MecoleHardman-NFL-KC-17\",\"search_first_name\":\"mecole\",\"rotowire_id\":13532,\"rotoworld_id\":13973,\"active\":true,\"search_rank\":94,\"age\":22,\"full_name\":\"Mecole Hardman\",\"sportradar_id\":\"fe6dc768-d576-476c-b150-53b85af2a1d1\",\"pandascore_id\":null,\"yahoo_id\":31888,\"last_name\":\"Hardman\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Elbert County (GA)\",\"depth_chart_order\":1,\"stats_id\":922026,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mecolehardman\",\"birth_date\":\"1998-03-12\",\"espn_id\":4035004},\"881\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stanzi\",\"depth_chart_position\":null,\"player_id\":\"881\",\"birth_city\":null,\"fantasy_data_id\":13048,\"years_exp\":5,\"hashtag\":\"#RickyStanzi-NFL-FA-2\",\"search_first_name\":\"ricky\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ricky Stanzi\",\"sportradar_id\":\"1c32d032-ed97-4c70-8655-eecdb0fe9ccf\",\"pandascore_id\":null,\"yahoo_id\":24922,\"last_name\":\"Stanzi\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":332357,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rickystanzi\",\"birth_date\":\"1987-09-03\",\"espn_id\":14080},\"4002\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eliot\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wolf\",\"depth_chart_position\":null,\"player_id\":\"4002\",\"birth_city\":null,\"fantasy_data_id\":18841,\"years_exp\":0,\"hashtag\":\"#EliotWolf-NFL-FA-0\",\"search_first_name\":\"eliot\",\"rotowire_id\":null,\"rotoworld_id\":12143,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eliot Wolf\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wolf\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"eliotwolf\",\"birth_date\":null,\"espn_id\":null},\"2583\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032160\",\"first_name\":\"Tyrell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598995832339,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2583\",\"birth_city\":null,\"fantasy_data_id\":17048,\"years_exp\":5,\"hashtag\":\"#TyrellWilliams-NFL-LV-16\",\"search_first_name\":\"tyrell\",\"rotowire_id\":10552,\"rotoworld_id\":10694,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tyrell Williams\",\"sportradar_id\":\"a6fe5f18-d78d-4a56-aea2-ef4bed7e647a\",\"pandascore_id\":null,\"yahoo_id\":28691,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Western Oregon\",\"high_school\":\"Cascade (OR)\",\"depth_chart_order\":3,\"stats_id\":618715,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyrellwilliams\",\"birth_date\":\"1992-02-12\",\"espn_id\":2587819},\"1589\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"patton\",\"depth_chart_position\":null,\"player_id\":\"1589\",\"birth_city\":null,\"fantasy_data_id\":15241,\"years_exp\":7,\"hashtag\":\"#QuintonPatton-NFL-FA-11\",\"search_first_name\":\"quinton\",\"rotowire_id\":8797,\"rotoworld_id\":8403,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Quinton Patton\",\"sportradar_id\":\"33629816-c735-4a70-9e7c-eec8445eab7a\",\"pandascore_id\":null,\"yahoo_id\":26751,\"last_name\":\"Patton\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"La Vergne (TN)\",\"depth_chart_order\":null,\"stats_id\":592833,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"quintonpatton\",\"birth_date\":\"1990-08-09\",\"espn_id\":16026},\"1164\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rueben\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1527002701431,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"randle\",\"depth_chart_position\":null,\"player_id\":\"1164\",\"birth_city\":null,\"fantasy_data_id\":14242,\"years_exp\":8,\"hashtag\":\"#RuebenRandle-NFL-FA-82\",\"search_first_name\":\"rueben\",\"rotowire_id\":8049,\"rotoworld_id\":7468,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Rueben Randle\",\"sportradar_id\":\"56223a1a-cf12-473c-8f54-2f3f3fab579d\",\"pandascore_id\":null,\"yahoo_id\":25773,\"last_name\":\"Randle\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Bastrop (LA)\",\"depth_chart_order\":null,\"stats_id\":498977,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ruebenrandle\",\"birth_date\":\"1991-05-07\",\"espn_id\":14911},\"539\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marc\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mariani\",\"depth_chart_position\":null,\"player_id\":\"539\",\"birth_city\":null,\"fantasy_data_id\":11084,\"years_exp\":10,\"hashtag\":\"#MarcMariani-NFL-FA-87\",\"search_first_name\":\"marc\",\"rotowire_id\":6702,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Marc Mariani\",\"sportradar_id\":\"1bf13fc6-cf27-4b22-ad99-2c72eedd37a6\",\"pandascore_id\":null,\"yahoo_id\":24198,\"last_name\":\"Mariani\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Havre (MT)\",\"depth_chart_order\":null,\"stats_id\":325928,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marcmariani\",\"birth_date\":\"1987-05-02\",\"espn_id\":13409},\"1839\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gordon\",\"depth_chart_position\":null,\"player_id\":\"1839\",\"birth_city\":null,\"fantasy_data_id\":16043,\"years_exp\":1,\"hashtag\":\"#CameronGordon-NFL-FA-48\",\"search_first_name\":\"cameron\",\"rotowire_id\":9795,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cameron Gordon\",\"sportradar_id\":\"d823312d-372c-420a-bcde-1328498c8428\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gordon\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'3\\\"\",\"search_full_name\":\"camerongordon\",\"birth_date\":\"1991-06-05\",\"espn_id\":17159},\"218\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026153\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1556040027511,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"218\",\"birth_city\":null,\"fantasy_data_id\":5451,\"years_exp\":12,\"hashtag\":\"#JonathanStewart-NFL-FA-28\",\"search_first_name\":\"jonathan\",\"rotowire_id\":5578,\"rotoworld_id\":4650,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jonathan Stewart\",\"sportradar_id\":\"96a1fc85-5af7-49fa-a5ac-ddc06c205ced\",\"pandascore_id\":null,\"yahoo_id\":8790,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Timberline (WA)\",\"depth_chart_order\":null,\"stats_id\":296086,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathanstewart\",\"birth_date\":\"1987-03-21\",\"espn_id\":11247},\"3120\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baalke\",\"depth_chart_position\":null,\"player_id\":\"3120\",\"birth_city\":null,\"fantasy_data_id\":17874,\"years_exp\":0,\"hashtag\":\"#TrentBaalke-NFL-FA-0\",\"search_first_name\":\"trent\",\"rotowire_id\":null,\"rotoworld_id\":9519,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Trent Baalke\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Baalke\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"trentbaalke\",\"birth_date\":null,\"espn_id\":null},\"2778\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031838\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1574205050566,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vaughters\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"2778\",\"birth_city\":null,\"fantasy_data_id\":17246,\"years_exp\":5,\"hashtag\":\"#JamesVaughters-NFL-CHI-93\",\"search_first_name\":\"james\",\"rotowire_id\":10850,\"rotoworld_id\":null,\"active\":true,\"search_rank\":930,\"age\":27,\"full_name\":\"James Vaughters\",\"sportradar_id\":\"ee209aa3-145f-4acb-85fd-e8a2420b4d2a\",\"pandascore_id\":null,\"yahoo_id\":28934,\"last_name\":\"Vaughters\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Tucker (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesvaughters\",\"birth_date\":\"1993-06-27\",\"espn_id\":2577145},\"5280\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034322\",\"first_name\":\"Pharoah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567191956628,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mckever\",\"depth_chart_position\":\"TE\",\"player_id\":\"5280\",\"birth_city\":null,\"fantasy_data_id\":20342,\"years_exp\":2,\"hashtag\":\"#PharoahMcKever-NFL-FA-84\",\"search_first_name\":\"pharoah\",\"rotowire_id\":13416,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Pharoah McKever\",\"sportradar_id\":\"085ec52a-f9f2-4c02-a205-2239221a19f4\",\"pandascore_id\":null,\"yahoo_id\":31528,\"last_name\":\"McKever\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":742367,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'6\\\"\",\"search_full_name\":\"pharoahmckever\",\"birth_date\":\"1994-02-04\",\"espn_id\":3051719},\"5468\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034340\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1595382657162,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scotlandwilliamson\",\"depth_chart_position\":\"LTE\",\"player_id\":\"5468\",\"birth_city\":null,\"fantasy_data_id\":20536,\"years_exp\":2,\"hashtag\":\"#ChristianScotlandWilliamson-NFL-FA-0\",\"search_first_name\":\"christian\",\"rotowire_id\":13906,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Christian Scotland-Williamson\",\"sportradar_id\":\"17f451af-7590-4dc2-bce5-2921b268f853\",\"pandascore_id\":null,\"yahoo_id\":31364,\"last_name\":\"Scotland-Williamson\",\"metadata\":null,\"college\":\"Loughborough (UK)\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":1115441,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"274\",\"height\":\"6'9\\\"\",\"search_full_name\":\"christianscotlandwilliamson\",\"birth_date\":\"1993-07-05\",\"espn_id\":4338875},\"637\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554246034479,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mays\",\"depth_chart_position\":null,\"player_id\":\"637\",\"birth_city\":null,\"fantasy_data_id\":11590,\"years_exp\":10,\"hashtag\":\"#TaylorMays-NFL-FA-27\",\"search_first_name\":\"taylor\",\"rotowire_id\":6644,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Taylor Mays\",\"sportradar_id\":\"049632f6-5a72-473f-9dd9-652a78eeb077\",\"pandascore_id\":null,\"yahoo_id\":24024,\"last_name\":\"Mays\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"O'Dea (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"taylormays\",\"birth_date\":\"1988-02-07\",\"espn_id\":13286},\"6003\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035254\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1576623055138,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6003\",\"birth_city\":null,\"fantasy_data_id\":20894,\"years_exp\":1,\"hashtag\":\"#AnthonyNelson-NFL-TB-98\",\"search_first_name\":\"anthony\",\"rotowire_id\":13562,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1582,\"age\":23,\"full_name\":\"Anthony Nelson\",\"sportradar_id\":\"8bc51884-c9db-4745-8731-20eff25f41b0\",\"pandascore_id\":null,\"yahoo_id\":31939,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Waukee (IA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'7\\\"\",\"search_full_name\":\"anthonynelson\",\"birth_date\":\"1997-03-04\",\"espn_id\":3894856},\"5743\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cirino\",\"depth_chart_position\":null,\"player_id\":\"5743\",\"birth_city\":null,\"fantasy_data_id\":20652,\"years_exp\":2,\"hashtag\":\"#MichaelCirino-NFL-FA-0\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Michael Cirino\",\"sportradar_id\":\"c75dfb40-6e18-41e3-bcaa-a7c85eaaa340\",\"pandascore_id\":null,\"yahoo_id\":31729,\"last_name\":\"Cirino\",\"metadata\":null,\"college\":\"Adams State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelcirino\",\"birth_date\":null,\"espn_id\":null},\"5411\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034484\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oplinger\",\"depth_chart_position\":null,\"player_id\":\"5411\",\"birth_city\":null,\"fantasy_data_id\":20048,\"years_exp\":2,\"hashtag\":\"#MatthewOplinger-NFL-FA-49\",\"search_first_name\":\"matthew\",\"rotowire_id\":13217,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Matthew Oplinger\",\"sportradar_id\":\"8ecba9b0-11b8-4cd3-88f2-3f8301d385f8\",\"pandascore_id\":null,\"yahoo_id\":31317,\"last_name\":\"Oplinger\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"matthewoplinger\",\"birth_date\":\"1996-02-23\",\"espn_id\":3118964},\"2092\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1587831341817,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2092\",\"birth_city\":null,\"fantasy_data_id\":16409,\"years_exp\":6,\"hashtag\":\"#AkeemDavis-NFL-FA-35\",\"search_first_name\":\"akeem\",\"rotowire_id\":14661,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Akeem Davis\",\"sportradar_id\":\"0300f83a-c349-4aad-8dca-20e5f80a55e1\",\"pandascore_id\":null,\"yahoo_id\":27524,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Laurel\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"akeemdavis\",\"birth_date\":\"1989-12-25\",\"espn_id\":16702},\"1401\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Martin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1510012201235,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"1401\",\"birth_city\":null,\"fantasy_data_id\":14945,\"years_exp\":7,\"hashtag\":\"#MartinWallace-NFL-FA-0\",\"search_first_name\":\"martin\",\"rotowire_id\":9098,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Martin Wallace\",\"sportradar_id\":\"39e77504-5ae3-4de9-b07f-0b48fe2830dd\",\"pandascore_id\":null,\"yahoo_id\":27161,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"martinwallace\",\"birth_date\":\"1990-04-22\",\"espn_id\":16329},\"3056\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pace\",\"depth_chart_position\":null,\"player_id\":\"3056\",\"birth_city\":null,\"fantasy_data_id\":17780,\"years_exp\":0,\"hashtag\":\"#RyanPace-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":10312,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ryan Pace\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pace\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ryanpace\",\"birth_date\":null,\"espn_id\":null},\"4407\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccaskill\",\"depth_chart_position\":null,\"player_id\":\"4407\",\"birth_city\":null,\"fantasy_data_id\":19267,\"years_exp\":2,\"hashtag\":\"#SamMcCaskill-NFL-FA-66\",\"search_first_name\":\"sam\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sam McCaskill\",\"sportradar_id\":\"475c8057-9eca-4872-bc06-50a79c8b86b5\",\"pandascore_id\":null,\"yahoo_id\":30438,\"last_name\":\"McCaskill\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sammccaskill\",\"birth_date\":\"1994-03-18\",\"espn_id\":2972904},\"5938\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035406\",\"first_name\":\"Lil'Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601509211865,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"humphrey\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5938\",\"birth_city\":null,\"fantasy_data_id\":20816,\"years_exp\":1,\"hashtag\":\"#LilJordanHumphrey-NFL-NO-84\",\"search_first_name\":\"liljordan\",\"rotowire_id\":13565,\"rotoworld_id\":null,\"active\":true,\"search_rank\":516,\"age\":22,\"full_name\":\"Lil'Jordan Humphrey\",\"sportradar_id\":\"b7f930af-ddd2-4a48-9617-96bda81b0334\",\"pandascore_id\":null,\"yahoo_id\":32494,\"last_name\":\"Humphrey\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Southlake Carroll (TX)\",\"depth_chart_order\":3,\"stats_id\":920758,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"liljordanhumphrey\",\"birth_date\":\"1998-04-19\",\"espn_id\":4039057},\"871\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027940\",\"first_name\":\"Von\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606165515234,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"871\",\"birth_city\":null,\"fantasy_data_id\":13022,\"years_exp\":9,\"hashtag\":\"#VonMiller-NFL-DEN-58\",\"search_first_name\":\"von\",\"rotowire_id\":7421,\"rotoworld_id\":6500,\"active\":true,\"search_rank\":636,\"age\":31,\"full_name\":\"Von Miller\",\"sportradar_id\":\"cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38\",\"pandascore_id\":null,\"yahoo_id\":24789,\"last_name\":\"Miller\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas A&M\",\"high_school\":\"De Soto (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vonmiller\",\"birth_date\":\"1989-03-26\",\"espn_id\":13976},\"2947\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clay\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burton\",\"depth_chart_position\":null,\"player_id\":\"2947\",\"birth_city\":null,\"fantasy_data_id\":17418,\"years_exp\":null,\"hashtag\":\"#ClayBurton-NFL-FA-0\",\"search_first_name\":\"clay\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Clay Burton\",\"sportradar_id\":\"8aed40d9-8e0c-4673-a020-9c4c22fb4851\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Burton\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":592536,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"clayburton\",\"birth_date\":null,\"espn_id\":null},\"4830\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gearing\",\"depth_chart_position\":null,\"player_id\":\"4830\",\"birth_city\":null,\"fantasy_data_id\":19734,\"years_exp\":2,\"hashtag\":\"#AustinGearing-NFL-FA-49\",\"search_first_name\":\"austin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Gearing\",\"sportradar_id\":\"9892c635-e483-472a-a84b-80a434f9d33f\",\"pandascore_id\":null,\"yahoo_id\":30941,\"last_name\":\"Gearing\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'5\\\"\",\"search_full_name\":\"austingearing\",\"birth_date\":\"1994-07-08\",\"espn_id\":2978045},\"3500\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032716\",\"first_name\":\"Devon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535758616735,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cajuste\",\"depth_chart_position\":null,\"player_id\":\"3500\",\"birth_city\":null,\"fantasy_data_id\":18266,\"years_exp\":4,\"hashtag\":\"#DevonCajuste-NFL-FA-83\",\"search_first_name\":\"devon\",\"rotowire_id\":10932,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Devon Cajuste\",\"sportradar_id\":\"d64fbf0c-f562-47cc-8bcd-a1a77517cc63\",\"pandascore_id\":null,\"yahoo_id\":29764,\"last_name\":\"Cajuste\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":598956,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'4\\\"\",\"search_full_name\":\"devoncajuste\",\"birth_date\":\"1993-01-31\",\"espn_id\":2577123},\"4066\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033881\",\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606503004104,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"engram\",\"depth_chart_position\":\"TE\",\"player_id\":\"4066\",\"birth_city\":null,\"fantasy_data_id\":18912,\"years_exp\":3,\"hashtag\":\"#EvanEngram-NFL-NYG-88\",\"search_first_name\":\"evan\",\"rotowire_id\":11805,\"rotoworld_id\":12205,\"active\":true,\"search_rank\":79,\"age\":26,\"full_name\":\"Evan Engram\",\"sportradar_id\":\"e21365af-8d66-416e-b0a5-8816d18fcfd9\",\"pandascore_id\":null,\"yahoo_id\":30136,\"last_name\":\"Engram\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Hillgrove (GA)\",\"depth_chart_order\":1,\"stats_id\":749185,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"evanengram\",\"birth_date\":\"1994-09-02\",\"espn_id\":3051876},\"4469\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033423\",\"first_name\":\"Richie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1576884350199,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4469\",\"birth_city\":null,\"fantasy_data_id\":19337,\"years_exp\":3,\"hashtag\":\"#RichieBrown-NFL-FA-69\",\"search_first_name\":\"richie\",\"rotowire_id\":12608,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Richie Brown\",\"sportradar_id\":\"a0fb3448-d9ff-40d4-8387-59a802768794\",\"pandascore_id\":null,\"yahoo_id\":30470,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"richiebrown\",\"birth_date\":\"1994-04-15\",\"espn_id\":2971373},\"6804\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605048361189,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"love\",\"depth_chart_position\":\"QB\",\"player_id\":\"6804\",\"birth_city\":null,\"fantasy_data_id\":21841,\"years_exp\":0,\"hashtag\":\"#JordanLove-NFL-GB-10\",\"search_first_name\":\"jordan\",\"rotowire_id\":14371,\"rotoworld_id\":null,\"active\":true,\"search_rank\":474,\"age\":22,\"full_name\":\"Jordan Love\",\"sportradar_id\":\"e5094779-e94f-4052-8597-bdbee3719f6b\",\"pandascore_id\":null,\"yahoo_id\":32696,\"last_name\":\"Love\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Liberty (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanlove\",\"birth_date\":\"1998-11-02\",\"espn_id\":4036378},\"40\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026201\",\"first_name\":\"Martellus\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1553002822296,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bennett\",\"depth_chart_position\":null,\"player_id\":\"40\",\"birth_city\":null,\"fantasy_data_id\":1181,\"years_exp\":12,\"hashtag\":\"#MartellusBennett-NFL-FA-88\",\"search_first_name\":\"martellus\",\"rotowire_id\":5709,\"rotoworld_id\":4639,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Martellus Bennett\",\"sportradar_id\":\"0ca741f8-58bd-4933-9d5c-0e04de3f4cff\",\"pandascore_id\":null,\"yahoo_id\":8838,\"last_name\":\"Bennett\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Alief Taylor (TX)\",\"depth_chart_order\":null,\"stats_id\":302238,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"martellusbennett\",\"birth_date\":\"1987-03-10\",\"espn_id\":11295},\"826\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027996\",\"first_name\":\"Torrey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1568391332060,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"826\",\"birth_city\":null,\"fantasy_data_id\":12830,\"years_exp\":9,\"hashtag\":\"#TorreySmith-NFL-FA-11\",\"search_first_name\":\"torrey\",\"rotowire_id\":7251,\"rotoworld_id\":6442,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Torrey Smith\",\"sportradar_id\":\"a735765c-3ca8-4557-b06e-a30fd415982c\",\"pandascore_id\":null,\"yahoo_id\":24845,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Stafford (VA)\",\"depth_chart_order\":null,\"stats_id\":399548,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"torreysmith\",\"birth_date\":\"1989-01-26\",\"espn_id\":14032},\"7200\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalil\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605055562032,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dorsey\",\"depth_chart_position\":null,\"player_id\":\"7200\",\"birth_city\":null,\"fantasy_data_id\":22202,\"years_exp\":0,\"hashtag\":\"#KhalilDorsey-NFL-BAL-31\",\"search_first_name\":\"khalil\",\"rotowire_id\":15137,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1949,\"age\":22,\"full_name\":\"Khalil Dorsey\",\"sportradar_id\":\"e8b1322a-6162-4535-b6af-4ca60ce8b09c\",\"pandascore_id\":null,\"yahoo_id\":33012,\"last_name\":\"Dorsey\",\"metadata\":null,\"college\":\"Northern Arizona\",\"high_school\":\"Colony (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'9\\\"\",\"search_full_name\":\"khalildorsey\",\"birth_date\":\"1998-03-31\",\"espn_id\":4027919},\"2895\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quayshawn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nealy\",\"depth_chart_position\":null,\"player_id\":\"2895\",\"birth_city\":null,\"fantasy_data_id\":17363,\"years_exp\":1,\"hashtag\":\"#QuayshawnNealy-NFL-FA-51\",\"search_first_name\":\"quayshawn\",\"rotowire_id\":10855,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Quayshawn Nealy\",\"sportradar_id\":\"b5446145-60d9-4550-a63d-75ac7708d7c1\",\"pandascore_id\":null,\"yahoo_id\":28713,\"last_name\":\"Nealy\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"quayshawnnealy\",\"birth_date\":\"1991-08-05\",\"espn_id\":2510552},\"5535\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034252\",\"first_name\":\"Micah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hannemann\",\"depth_chart_position\":null,\"player_id\":\"5535\",\"birth_city\":null,\"fantasy_data_id\":20272,\"years_exp\":2,\"hashtag\":\"#MicahHannemann-NFL-FA-35\",\"search_first_name\":\"micah\",\"rotowire_id\":13143,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Micah Hannemann\",\"sportradar_id\":\"b0c19fa7-b58a-413e-812b-54fce2038239\",\"pandascore_id\":null,\"yahoo_id\":31455,\"last_name\":\"Hannemann\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"micahhannemann\",\"birth_date\":\"1994-08-15\",\"espn_id\":2980441},\"7220\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frederick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mauigoa\",\"depth_chart_position\":null,\"player_id\":\"7220\",\"birth_city\":null,\"fantasy_data_id\":22222,\"years_exp\":0,\"hashtag\":\"#FrederickMauigoa-NFL-FA-0\",\"search_first_name\":\"frederick\",\"rotowire_id\":14971,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Frederick Mauigoa\",\"sportradar_id\":\"67a2b2e7-09a8-43d7-8c72-8cba1217b37e\",\"pandascore_id\":null,\"yahoo_id\":33146,\"last_name\":\"Mauigoa\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"frederickmauigoa\",\"birth_date\":\"1998-03-18\",\"espn_id\":4055181},\"4879\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033411\",\"first_name\":\"Francis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"owusu\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4879\",\"birth_city\":null,\"fantasy_data_id\":19752,\"years_exp\":3,\"hashtag\":\"#FrancisOwusu-NFL-FA-82\",\"search_first_name\":\"francis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Francis Owusu\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Owusu\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"francisowusu\",\"birth_date\":\"1994-12-27\",\"espn_id\":null},\"5593\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ikenna\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nwokeji\",\"depth_chart_position\":null,\"player_id\":\"5593\",\"birth_city\":null,\"fantasy_data_id\":20343,\"years_exp\":0,\"hashtag\":\"#IkennaNwokeji-NFL-PIT-64\",\"search_first_name\":\"ikenna\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ikenna Nwokeji\",\"sportradar_id\":\"9408c891-ebce-4638-b0da-6e476da4258a\",\"pandascore_id\":null,\"yahoo_id\":31529,\"last_name\":\"Nwokeji\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ikennanwokeji\",\"birth_date\":\"1994-12-02\",\"espn_id\":3049807},\"2181\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030750\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1513820701851,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stone\",\"depth_chart_position\":null,\"player_id\":\"2181\",\"birth_city\":null,\"fantasy_data_id\":16545,\"years_exp\":6,\"hashtag\":\"#JamesStone-NFL-FA-74\",\"search_first_name\":\"james\",\"rotowire_id\":9658,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"James Stone\",\"sportradar_id\":\"c1d07724-541c-49e3-bfbb-6843786de72e\",\"pandascore_id\":null,\"yahoo_id\":28077,\"last_name\":\"Stone\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Maplewood (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamesstone\",\"birth_date\":\"1992-04-26\",\"espn_id\":17262},\"6902\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605053461431,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":null,\"player_id\":\"6902\",\"birth_city\":null,\"fantasy_data_id\":21930,\"years_exp\":0,\"hashtag\":\"#JalenElliott-NFL-DET-42\",\"search_first_name\":\"jalen\",\"rotowire_id\":14699,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Jalen Elliott\",\"sportradar_id\":\"f90ce4a1-b876-4114-958a-e90768761749\",\"pandascore_id\":null,\"yahoo_id\":33189,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Lloyd C. Bird (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jalenelliott\",\"birth_date\":\"1998-07-07\",\"espn_id\":4046680},\"4486\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1523664001448,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"talley\",\"depth_chart_position\":null,\"player_id\":\"4486\",\"birth_city\":null,\"fantasy_data_id\":19354,\"years_exp\":2,\"hashtag\":\"#DavidTalley-NFL-FA-57\",\"search_first_name\":\"david\",\"rotowire_id\":12418,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Talley\",\"sportradar_id\":\"0701a63e-e62a-48a1-88fe-5d3b514dfdc6\",\"pandascore_id\":null,\"yahoo_id\":30697,\"last_name\":\"Talley\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidtalley\",\"birth_date\":\"1994-11-09\",\"espn_id\":2219753},\"4348\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1524629701673,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kublanow\",\"depth_chart_position\":null,\"player_id\":\"4348\",\"birth_city\":null,\"fantasy_data_id\":19204,\"years_exp\":2,\"hashtag\":\"#BrandonKublanow-NFL-FA-60\",\"search_first_name\":\"brandon\",\"rotowire_id\":12338,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brandon Kublanow\",\"sportradar_id\":\"10f14f47-95e8-48eb-a0c1-a3850b6c2f55\",\"pandascore_id\":null,\"yahoo_id\":30591,\"last_name\":\"Kublanow\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonkublanow\",\"birth_date\":\"1995-04-05\",\"espn_id\":3043143},\"6026\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035455\",\"first_name\":\"Albert\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599010534283,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"huggins\",\"depth_chart_position\":null,\"player_id\":\"6026\",\"birth_city\":null,\"fantasy_data_id\":20815,\"years_exp\":1,\"hashtag\":\"#AlbertHuggins-NFL-DET-64\",\"search_first_name\":\"albert\",\"rotowire_id\":13864,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1554,\"age\":23,\"full_name\":\"Albert Huggins\",\"sportradar_id\":\"ded35e89-0ed7-44e2-8e97-5566330e6d3d\",\"pandascore_id\":null,\"yahoo_id\":32509,\"last_name\":\"Huggins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Orangeburg-Wilkinson (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alberthuggins\",\"birth_date\":\"1997-06-27\",\"espn_id\":3728248},\"1810\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gaines\",\"depth_chart_position\":null,\"player_id\":\"1810\",\"birth_city\":null,\"fantasy_data_id\":15991,\"years_exp\":1,\"hashtag\":\"#JimmyGaines-NFL-FA-45\",\"search_first_name\":\"jimmy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jimmy Gaines\",\"sportradar_id\":\"08fb654b-aa46-4f1e-8b2d-e82d517188e6\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gaines\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jimmygaines\",\"birth_date\":\"1993-05-11\",\"espn_id\":17320},\"3190\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033147\",\"first_name\":\"Darron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602035435685,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"3190\",\"birth_city\":null,\"fantasy_data_id\":17951,\"years_exp\":4,\"hashtag\":\"#DarronLee-NFL-BUF-52\",\"search_first_name\":\"darron\",\"rotowire_id\":11108,\"rotoworld_id\":11307,\"active\":true,\"search_rank\":961,\"age\":26,\"full_name\":\"Darron Lee\",\"sportradar_id\":\"03af62dd-c843-4790-b2dd-bd5b5897ed94\",\"pandascore_id\":null,\"yahoo_id\":29254,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"New Albany (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"darronlee\",\"birth_date\":\"1994-10-18\",\"espn_id\":3051398},\"4512\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033493\",\"first_name\":\"Francis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kallon\",\"depth_chart_position\":null,\"player_id\":\"4512\",\"birth_city\":null,\"fantasy_data_id\":19384,\"years_exp\":3,\"hashtag\":\"#FrancisKallon-NFL-FA-93\",\"search_first_name\":\"francis\",\"rotowire_id\":12593,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Francis Kallon\",\"sportradar_id\":\"4b3ecabb-6adf-45c8-88ed-7decd72306f0\",\"pandascore_id\":null,\"yahoo_id\":30386,\"last_name\":\"Kallon\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'5\\\"\",\"search_full_name\":\"franciskallon\",\"birth_date\":\"1994-02-02\",\"espn_id\":2971499},\"4279\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033298\",\"first_name\":\"Pita\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604847616643,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taumoepenu\",\"depth_chart_position\":null,\"player_id\":\"4279\",\"birth_city\":null,\"fantasy_data_id\":19125,\"years_exp\":3,\"hashtag\":\"#PitaTaumoepenu-NFL-ATL-52\",\"search_first_name\":\"pita\",\"rotowire_id\":11943,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1228,\"age\":26,\"full_name\":\"Pita Taumoepenu\",\"sportradar_id\":\"c69c8d25-f81b-4240-a361-6bb328ad9474\",\"pandascore_id\":null,\"yahoo_id\":30315,\"last_name\":\"Taumoepenu\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Timpview (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'1\\\"\",\"search_full_name\":\"pitataumoepenu\",\"birth_date\":\"1994-03-09\",\"espn_id\":3055105},\"5314\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034437\",\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cooke\",\"depth_chart_position\":null,\"player_id\":\"5314\",\"birth_city\":null,\"fantasy_data_id\":20063,\"years_exp\":2,\"hashtag\":\"#LoganCooke-NFL-JAX-9\",\"search_first_name\":\"logan\",\"rotowire_id\":13013,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Logan Cooke\",\"sportradar_id\":\"8301d82b-0ad1-4988-a978-2925e2ae9377\",\"pandascore_id\":null,\"yahoo_id\":31216,\"last_name\":\"Cooke\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Columbia (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'5\\\"\",\"search_full_name\":\"logancooke\",\"birth_date\":\"1995-07-28\",\"espn_id\":3115480},\"5057\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034359\",\"first_name\":\"Tyquan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1580250359470,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"DT\",\"player_id\":\"5057\",\"birth_city\":null,\"fantasy_data_id\":19878,\"years_exp\":2,\"hashtag\":\"#TyquanLewis-NFL-IND-94\",\"search_first_name\":\"tyquan\",\"rotowire_id\":12800,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1316,\"age\":25,\"full_name\":\"Tyquan Lewis\",\"sportradar_id\":\"7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9\",\"pandascore_id\":null,\"yahoo_id\":31034,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Tarboro (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tyquanlewis\",\"birth_date\":\"1995-01-30\",\"espn_id\":3040513},\"3479\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032871\",\"first_name\":\"Antwaun\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1595982904310,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"woods\",\"depth_chart_position\":\"RDT\",\"player_id\":\"3479\",\"birth_city\":null,\"fantasy_data_id\":18244,\"years_exp\":4,\"hashtag\":\"#AntwaunWoods-NFL-DAL-99\",\"search_first_name\":\"antwaun\",\"rotowire_id\":10942,\"rotoworld_id\":11575,\"active\":true,\"search_rank\":1056,\"age\":27,\"full_name\":\"Antwaun Woods\",\"sportradar_id\":\"6575474c-d106-406f-9b90-ef9b598a213d\",\"pandascore_id\":null,\"yahoo_id\":29950,\"last_name\":\"Woods\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Taft (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'1\\\"\",\"search_full_name\":\"antwaunwoods\",\"birth_date\":\"1993-01-03\",\"espn_id\":2577278},\"4090\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033461\",\"first_name\":\"Raekwon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598710253123,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcmillan\",\"depth_chart_position\":\"MLB\",\"player_id\":\"4090\",\"birth_city\":null,\"fantasy_data_id\":18936,\"years_exp\":3,\"hashtag\":\"#RaekwonMcMillan-NFL-LV-54\",\"search_first_name\":\"raekwon\",\"rotowire_id\":11977,\"rotoworld_id\":12271,\"active\":true,\"search_rank\":1137,\"age\":25,\"full_name\":\"Raekwon McMillan\",\"sportradar_id\":\"8aad56a2-0589-4ebc-99f8-b07c5023fd70\",\"pandascore_id\":null,\"yahoo_id\":30167,\"last_name\":\"McMillan\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Liberty County (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"raekwonmcmillan\",\"birth_date\":\"1995-11-17\",\"espn_id\":3121423},\"1999\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031101\",\"first_name\":\"Shaquil\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605549018502,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barrett\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"1999\",\"birth_city\":null,\"fantasy_data_id\":16271,\"years_exp\":6,\"hashtag\":\"#ShaquilBarrett-NFL-TB-58\",\"search_first_name\":\"shaquil\",\"rotowire_id\":9995,\"rotoworld_id\":9577,\"active\":true,\"search_rank\":797,\"age\":28,\"full_name\":\"Shaquil Barrett\",\"sportradar_id\":\"df483199-088f-47d6-b8fc-1574f74bb4e2\",\"pandascore_id\":null,\"yahoo_id\":27820,\"last_name\":\"Barrett\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Boys Town (NE)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"shaquilbarrett\",\"birth_date\":\"1992-11-17\",\"espn_id\":16967},\"5503\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034142\",\"first_name\":\"J.C.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566173736637,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hassenauer\",\"depth_chart_position\":\"C\",\"player_id\":\"5503\",\"birth_city\":null,\"fantasy_data_id\":20231,\"years_exp\":2,\"hashtag\":\"#JCHassenauer-NFL-PIT-60\",\"search_first_name\":\"jc\",\"rotowire_id\":13025,\"rotoworld_id\":13534,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"J.C. Hassenauer\",\"sportradar_id\":\"b556dfd1-ed9d-45c3-9328-00236ddd54b1\",\"pandascore_id\":null,\"yahoo_id\":31342,\"last_name\":\"Hassenauer\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Alabama\",\"high_school\":\"East Ridge (MN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jchassenauer\",\"birth_date\":\"1995-09-15\",\"espn_id\":3126353},\"5830\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034902\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597971635255,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"eguavoen\",\"depth_chart_position\":\"SLB\",\"player_id\":\"5830\",\"birth_city\":null,\"fantasy_data_id\":20724,\"years_exp\":1,\"hashtag\":\"#SamEguavoen-NFL-MIA-49\",\"search_first_name\":\"sam\",\"rotowire_id\":13561,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1515,\"age\":27,\"full_name\":\"Sam Eguavoen\",\"sportradar_id\":\"3b4c4797-d35d-4885-93a3-06d85242b522\",\"pandascore_id\":null,\"yahoo_id\":31815,\"last_name\":\"Eguavoen\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Lakeview Centennial (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sameguavoen\",\"birth_date\":\"1993-02-22\",\"espn_id\":2577637},\"6476\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034966\",\"first_name\":\"D'Angelo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599405360254,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"6476\",\"birth_city\":null,\"fantasy_data_id\":21463,\"years_exp\":1,\"hashtag\":\"#DAngeloRoss-NFL-NE-39\",\"search_first_name\":\"dangelo\",\"rotowire_id\":14080,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"D'Angelo Ross\",\"sportradar_id\":\"3f0926f7-103e-44d5-85f0-e53ec48fe452\",\"pandascore_id\":null,\"yahoo_id\":32223,\"last_name\":\"Ross\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"New Mexico\",\"high_school\":\"South Hills (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dangeloross\",\"birth_date\":\"1996-10-29\",\"espn_id\":3139389},\"2652\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dreamius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2652\",\"birth_city\":null,\"fantasy_data_id\":17120,\"years_exp\":5,\"hashtag\":\"#DreamiusSmith-NFL-FA-36\",\"search_first_name\":\"dreamius\",\"rotowire_id\":10722,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dreamius Smith\",\"sportradar_id\":\"4715afb4-6aee-4464-b467-c9df2a72ebf2\",\"pandascore_id\":null,\"yahoo_id\":28689,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Wichita Heights\",\"depth_chart_order\":null,\"stats_id\":590537,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dreamiussmith\",\"birth_date\":\"1992-09-08\",\"espn_id\":2577239},\"5765\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bower\",\"depth_chart_position\":null,\"player_id\":\"5765\",\"birth_city\":null,\"fantasy_data_id\":20672,\"years_exp\":2,\"hashtag\":\"#BoBower-NFL-FA-45\",\"search_first_name\":\"bo\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bo Bower\",\"sportradar_id\":\"5d3cb6eb-54d5-48d4-81fc-7684da2c17ca\",\"pandascore_id\":null,\"yahoo_id\":31761,\"last_name\":\"Bower\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bobower\",\"birth_date\":\"1994-10-31\",\"espn_id\":3040149},\"3290\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032407\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604106641062,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"LG\",\"player_id\":\"3290\",\"birth_city\":null,\"fantasy_data_id\":18051,\"years_exp\":4,\"hashtag\":\"#AlexLewis-NFL-NYJ-71\",\"search_first_name\":\"alex\",\"rotowire_id\":11110,\"rotoworld_id\":11440,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Alex Lewis\",\"sportradar_id\":\"9ca56390-fb0e-4261-ac0d-1770f65021bc\",\"pandascore_id\":null,\"yahoo_id\":29364,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Mountain Pointe (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"alexlewis\",\"birth_date\":\"1992-04-21\",\"espn_id\":3116110},\"6640\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035210\",\"first_name\":\"Herb\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"6640\",\"birth_city\":null,\"fantasy_data_id\":21521,\"years_exp\":1,\"hashtag\":\"#HerbMiller-NFL-TB-36\",\"search_first_name\":\"herb\",\"rotowire_id\":14192,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1751,\"age\":23,\"full_name\":\"Herb Miller\",\"sportradar_id\":\"8de972e7-c997-4444-83a5-10f975d4fff6\",\"pandascore_id\":null,\"yahoo_id\":32396,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Miramar (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"herbmiller\",\"birth_date\":\"1997-11-11\",\"espn_id\":3919107},\"1382\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029893\",\"first_name\":\"Rick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605459610993,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wagner\",\"depth_chart_position\":\"RT\",\"player_id\":\"1382\",\"birth_city\":null,\"fantasy_data_id\":14905,\"years_exp\":7,\"hashtag\":\"#RickWagner-NFL-GB-71\",\"search_first_name\":\"rick\",\"rotowire_id\":8739,\"rotoworld_id\":8575,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Rick Wagner\",\"sportradar_id\":\"2dff7d82-426e-42d6-8c7c-170ad3a24ad6\",\"pandascore_id\":null,\"yahoo_id\":26791,\"last_name\":\"Wagner\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Nathan Hale (WI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rickwagner\",\"birth_date\":\"1989-10-21\",\"espn_id\":15900},\"1516\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030092\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1585092945186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1516\",\"birth_city\":null,\"fantasy_data_id\":15125,\"years_exp\":7,\"hashtag\":\"#SamMartin-NFL-DEN-6\",\"search_first_name\":\"sam\",\"rotowire_id\":9022,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sam Martin\",\"sportradar_id\":\"80b403da-381f-467e-883b-5b83ac02aac3\",\"pandascore_id\":null,\"yahoo_id\":26788,\"last_name\":\"Martin\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Appalachian State\",\"high_school\":\"Starr's Mill (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sammartin\",\"birth_date\":\"1990-02-27\",\"espn_id\":15928},\"3342\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032791\",\"first_name\":\"Jakeem\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606518627487,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grant\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3342\",\"birth_city\":null,\"fantasy_data_id\":18103,\"years_exp\":4,\"hashtag\":\"#JakeemGrant-NFL-MIA-19\",\"search_first_name\":\"jakeem\",\"rotowire_id\":10990,\"rotoworld_id\":11475,\"active\":true,\"search_rank\":208,\"age\":28,\"full_name\":\"Jakeem Grant\",\"sportradar_id\":\"5de11f0b-8da9-42ba-9a93-db7f0a58543b\",\"pandascore_id\":null,\"yahoo_id\":29420,\"last_name\":\"Grant\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Horn (TX)\",\"depth_chart_order\":1,\"stats_id\":605325,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"169\",\"height\":\"5'7\\\"\",\"search_full_name\":\"jakeemgrant\",\"birth_date\":\"1992-10-30\",\"espn_id\":2577641},\"7296\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":1601506211526,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"7296\",\"birth_city\":null,\"fantasy_data_id\":22292,\"years_exp\":0,\"hashtag\":\"#BrandonWright-NFL-JAX-1\",\"search_first_name\":\"brandon\",\"rotowire_id\":14954,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Brandon Wright\",\"sportradar_id\":\"61980614-1609-4b68-b11f-05aa30fefb89\",\"pandascore_id\":null,\"yahoo_id\":33149,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"KIPP Atlanta Collegiate (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brandonwright\",\"birth_date\":\"1997-02-18\",\"espn_id\":null},\"5156\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034491\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599335157216,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vollert\",\"depth_chart_position\":\"LTE\",\"player_id\":\"5156\",\"birth_city\":null,\"fantasy_data_id\":20083,\"years_exp\":2,\"hashtag\":\"#AndrewVollert-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":12693,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andrew Vollert\",\"sportradar_id\":\"d83c2f7a-3195-4e6a-b1a0-4745b5dcca38\",\"pandascore_id\":null,\"yahoo_id\":31325,\"last_name\":\"Vollert\",\"metadata\":null,\"college\":\"Weber State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":752029,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"andrewvollert\",\"birth_date\":\"1995-03-15\",\"espn_id\":4032479},\"3976\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033869\",\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606514127281,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"trubisky\",\"depth_chart_position\":\"QB\",\"player_id\":\"3976\",\"birth_city\":null,\"fantasy_data_id\":18811,\"years_exp\":3,\"hashtag\":\"#MitchellTrubisky-NFL-CHI-10\",\"search_first_name\":\"mitchell\",\"rotowire_id\":11709,\"rotoworld_id\":12135,\"active\":true,\"search_rank\":243,\"age\":26,\"full_name\":\"Mitchell Trubisky\",\"sportradar_id\":\"7a1b8f1a-9024-4897-86b0-01c63e00305e\",\"pandascore_id\":null,\"yahoo_id\":30115,\"last_name\":\"Trubisky\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Mentor (OH)\",\"depth_chart_order\":1,\"stats_id\":728169,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mitchelltrubisky\",\"birth_date\":\"1994-08-20\",\"espn_id\":3039707},\"2592\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031583\",\"first_name\":\"Grady\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606340402793,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jarrett\",\"depth_chart_position\":\"LDT\",\"player_id\":\"2592\",\"birth_city\":null,\"fantasy_data_id\":17059,\"years_exp\":5,\"hashtag\":\"#GradyJarrett-NFL-ATL-97\",\"search_first_name\":\"grady\",\"rotowire_id\":10458,\"rotoworld_id\":10519,\"active\":true,\"search_rank\":912,\"age\":27,\"full_name\":\"Grady Jarrett\",\"sportradar_id\":\"e1fe1900-fae3-414e-8530-55eece80471f\",\"pandascore_id\":null,\"yahoo_id\":28525,\"last_name\":\"Jarrett\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Rockdale County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gradyjarrett\",\"birth_date\":\"1993-04-28\",\"espn_id\":2576492},\"5604\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034455\",\"first_name\":\"Quincy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1537063501925,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redmon\",\"depth_chart_position\":null,\"player_id\":\"5604\",\"birth_city\":null,\"fantasy_data_id\":20324,\"years_exp\":2,\"hashtag\":\"#QuincyRedmon-NFL-FA-66\",\"search_first_name\":\"quincy\",\"rotowire_id\":13269,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Quincy Redmon\",\"sportradar_id\":\"169612b8-67e4-4b1c-bb0d-c73967ac583e\",\"pandascore_id\":null,\"yahoo_id\":31632,\"last_name\":\"Redmon\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748126,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"quincyredmon\",\"birth_date\":\"1993-12-11\",\"espn_id\":4331771},\"732\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027868\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1563200462664,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"732\",\"birth_city\":null,\"fantasy_data_id\":12305,\"years_exp\":10,\"hashtag\":\"#DerrickMorgan-NFL-FA-91\",\"search_first_name\":\"derrick\",\"rotowire_id\":6569,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Derrick Morgan\",\"sportradar_id\":\"428873c9-887a-48a2-b4d3-e06618ebd2dc\",\"pandascore_id\":null,\"yahoo_id\":23991,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Coatesville Area (PA)\",\"depth_chart_order\":null,\"stats_id\":381280,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'4\\\"\",\"search_full_name\":\"derrickmorgan\",\"birth_date\":\"1989-01-06\",\"espn_id\":13248},\"243\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"obomanu\",\"depth_chart_position\":null,\"player_id\":\"243\",\"birth_city\":null,\"fantasy_data_id\":6138,\"years_exp\":7,\"hashtag\":\"#BenObomanu-NFL-FA-15\",\"search_first_name\":\"ben\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ben Obomanu\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Obomanu\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'1\\\"\",\"search_full_name\":\"benobomanu\",\"birth_date\":\"1983-10-30\",\"espn_id\":null},\"348\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shonn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":null,\"player_id\":\"348\",\"birth_city\":null,\"fantasy_data_id\":8399,\"years_exp\":6,\"hashtag\":\"#ShonnGreene-NFL-FA-23\",\"search_first_name\":\"shonn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Shonn Greene\",\"sportradar_id\":\"f3a2dfe6-3a57-45bc-afed-1c1881946ea4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":264802,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"5'11\\\"\",\"search_full_name\":\"shonngreene\",\"birth_date\":\"1985-08-21\",\"espn_id\":12500},\"3837\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032931\",\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1545510028354,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durden\",\"depth_chart_position\":\"LCB\",\"player_id\":\"3837\",\"birth_city\":null,\"fantasy_data_id\":18657,\"years_exp\":4,\"hashtag\":\"#KennethDurden-NFL-FA-0\",\"search_first_name\":\"kenneth\",\"rotowire_id\":11515,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1105,\"age\":28,\"full_name\":\"Kenneth Durden\",\"sportradar_id\":\"b9523f29-adfa-4382-98f2-611c590bb526\",\"pandascore_id\":null,\"yahoo_id\":29956,\"last_name\":\"Durden\",\"metadata\":null,\"college\":\"Youngstown State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kennethdurden\",\"birth_date\":\"1992-05-16\",\"espn_id\":3140596},\"742\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026839\",\"first_name\":\"Jermey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1552068008384,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parnell\",\"depth_chart_position\":null,\"player_id\":\"742\",\"birth_city\":null,\"fantasy_data_id\":12360,\"years_exp\":11,\"hashtag\":\"#JermeyParnell-NFL-FA-78\",\"search_first_name\":\"jermey\",\"rotowire_id\":7191,\"rotoworld_id\":5812,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jermey Parnell\",\"sportradar_id\":\"0d91e0a9-232f-4e27-b6a5-e7f7e1d3fc6c\",\"pandascore_id\":null,\"yahoo_id\":9604,\"last_name\":\"Parnell\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Gosnell (AR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jermeyparnell\",\"birth_date\":\"1986-07-20\",\"espn_id\":13066},\"1207\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pointer\",\"depth_chart_position\":null,\"player_id\":\"1207\",\"birth_city\":null,\"fantasy_data_id\":14423,\"years_exp\":3,\"hashtag\":\"#QuintonPointer-NFL-FA-26\",\"search_first_name\":\"quinton\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Quinton Pointer\",\"sportradar_id\":\"86922605-9c45-40e4-a17d-1a95447e866c\",\"pandascore_id\":null,\"yahoo_id\":26359,\"last_name\":\"Pointer\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"quintonpointer\",\"birth_date\":\"1988-04-16\",\"espn_id\":15136},\"4865\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033196\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"triner\",\"depth_chart_position\":null,\"player_id\":\"4865\",\"birth_city\":null,\"fantasy_data_id\":18825,\"years_exp\":3,\"hashtag\":\"#ZachTriner-NFL-TB-97\",\"search_first_name\":\"zach\",\"rotowire_id\":12538,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Triner\",\"sportradar_id\":\"5c66adc6-62d8-4f29-aadc-11b5ed21495b\",\"pandascore_id\":null,\"yahoo_id\":30096,\"last_name\":\"Triner\",\"metadata\":null,\"college\":\"Assumption\",\"high_school\":\"Marshfield (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zachtriner\",\"birth_date\":\"1991-01-30\",\"espn_id\":3065813},\"632\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Navorro\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1559769920515,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowman\",\"depth_chart_position\":null,\"player_id\":\"632\",\"birth_city\":null,\"fantasy_data_id\":11578,\"years_exp\":10,\"hashtag\":\"#NavorroBowman-NFL-FA-53\",\"search_first_name\":\"navorro\",\"rotowire_id\":6600,\"rotoworld_id\":5648,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Navorro Bowman\",\"sportradar_id\":\"feac253c-6824-430d-ad66-b1dd78c5807c\",\"pandascore_id\":null,\"yahoo_id\":24066,\"last_name\":\"Bowman\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Suitland (MD)\",\"depth_chart_order\":null,\"stats_id\":326576,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'0\\\"\",\"search_full_name\":\"navorrobowman\",\"birth_date\":\"1988-05-28\",\"espn_id\":13262},\"6566\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035355\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hance\",\"depth_chart_position\":null,\"player_id\":\"6566\",\"birth_city\":null,\"fantasy_data_id\":21217,\"years_exp\":1,\"hashtag\":\"#BlakeHance-NFL-NYJ-72\",\"search_first_name\":\"blake\",\"rotowire_id\":13995,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Blake Hance\",\"sportradar_id\":\"e3a0e17e-fb75-4284-b89c-ddbc758f3d20\",\"pandascore_id\":null,\"yahoo_id\":32414,\"last_name\":\"Hance\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Jacksonville (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"blakehance\",\"birth_date\":\"1996-01-11\",\"espn_id\":3116135},\"1043\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029542\",\"first_name\":\"Stephon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606526729443,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilmore\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1043\",\"birth_city\":null,\"fantasy_data_id\":13761,\"years_exp\":8,\"hashtag\":\"#StephonGilmore-NFL-NE-24\",\"search_first_name\":\"stephon\",\"rotowire_id\":8165,\"rotoworld_id\":7442,\"active\":true,\"search_rank\":660,\"age\":30,\"full_name\":\"Stephon Gilmore\",\"sportradar_id\":\"c7c6dc46-a58a-4cfc-b626-2360434671cb\",\"pandascore_id\":null,\"yahoo_id\":25720,\"last_name\":\"Gilmore\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"South Carolina\",\"high_school\":\"South Pointe (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stephongilmore\",\"birth_date\":\"1990-09-19\",\"espn_id\":14942},\"6873\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605731432859,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6873\",\"birth_city\":null,\"fantasy_data_id\":21862,\"years_exp\":0,\"hashtag\":\"#AustinMack-NFL-NYG-81\",\"search_first_name\":\"austin\",\"rotowire_id\":14546,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Austin Mack\",\"sportradar_id\":\"126811e0-f856-49c2-b36d-15e71e06f4c0\",\"pandascore_id\":null,\"yahoo_id\":33039,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Bishop Luers (IN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"austinmack\",\"birth_date\":\"1997-08-31\",\"espn_id\":4040623},\"5876\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034974\",\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603463153163,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"love\",\"depth_chart_position\":\"FS\",\"player_id\":\"5876\",\"birth_city\":null,\"fantasy_data_id\":20864,\"years_exp\":1,\"hashtag\":\"#JulianLove-NFL-NYG-20\",\"search_first_name\":\"julian\",\"rotowire_id\":13533,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1570,\"age\":22,\"full_name\":\"Julian Love\",\"sportradar_id\":\"a1052a59-114e-4340-8936-bffb17431300\",\"pandascore_id\":null,\"yahoo_id\":31940,\"last_name\":\"Love\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Nazareth Academy (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"julianlove\",\"birth_date\":\"1998-03-19\",\"espn_id\":4046675},\"3560\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032763\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1585251647146,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"NT\",\"player_id\":\"3560\",\"birth_city\":null,\"fantasy_data_id\":18333,\"years_exp\":4,\"hashtag\":\"#AustinJohnson-NFL-NYG-98\",\"search_first_name\":\"austin\",\"rotowire_id\":11071,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1067,\"age\":26,\"full_name\":\"Austin Johnson\",\"sportradar_id\":\"014038bd-e9b7-476f-b7bd-bd78a46a9a57\",\"pandascore_id\":null,\"yahoo_id\":29277,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"St. Augustine Prep (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austinjohnson\",\"birth_date\":\"1994-05-08\",\"espn_id\":2979591},\"2949\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Synjyn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"days\",\"depth_chart_position\":null,\"player_id\":\"2949\",\"birth_city\":null,\"fantasy_data_id\":17421,\"years_exp\":null,\"hashtag\":\"#SynjynDays-NFL-FA-0\",\"search_first_name\":\"synjyn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Synjyn Days\",\"sportradar_id\":\"92777257-b96d-4f22-ada3-6144a9514029\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Days\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553584,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"synjyndays\",\"birth_date\":null,\"espn_id\":null},\"4238\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033579\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606492504097,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"woods\",\"depth_chart_position\":\"FS\",\"player_id\":\"4238\",\"birth_city\":null,\"fantasy_data_id\":19084,\"years_exp\":3,\"hashtag\":\"#XavierWoods-NFL-DAL-25\",\"search_first_name\":\"xavier\",\"rotowire_id\":12007,\"rotoworld_id\":12260,\"active\":true,\"search_rank\":1213,\"age\":25,\"full_name\":\"Xavier Woods\",\"sportradar_id\":\"cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc\",\"pandascore_id\":null,\"yahoo_id\":30304,\"last_name\":\"Woods\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"West Monroe (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"xavierwoods\",\"birth_date\":\"1995-07-26\",\"espn_id\":3040572},\"7362\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moa\",\"depth_chart_position\":null,\"player_id\":\"7362\",\"birth_city\":null,\"fantasy_data_id\":22350,\"years_exp\":0,\"hashtag\":\"#DavidMoa-NFL-NYG-60\",\"search_first_name\":\"david\",\"rotowire_id\":15117,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1986,\"age\":24,\"full_name\":\"David Moa\",\"sportradar_id\":\"0d5c19ee-8165-4af0-a3ff-f5dc54bef046\",\"pandascore_id\":null,\"yahoo_id\":33035,\"last_name\":\"Moa\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Kearny (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davidmoa\",\"birth_date\":\"1996-06-14\",\"espn_id\":3127587},\"4246\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033587\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1566260420636,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"myrick\",\"depth_chart_position\":null,\"player_id\":\"4246\",\"birth_city\":null,\"fantasy_data_id\":19092,\"years_exp\":3,\"hashtag\":\"#JalenMyrick-NFL-FA-30\",\"search_first_name\":\"jalen\",\"rotowire_id\":12027,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jalen Myrick\",\"sportradar_id\":\"28270bed-0130-4ef3-aee9-c7069a662c46\",\"pandascore_id\":null,\"yahoo_id\":30335,\"last_name\":\"Myrick\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jalenmyrick\",\"birth_date\":\"1995-02-27\",\"espn_id\":3040198},\"2717\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orr\",\"depth_chart_position\":null,\"player_id\":\"2717\",\"birth_city\":null,\"fantasy_data_id\":17185,\"years_exp\":5,\"hashtag\":\"#LeonOrr-NFL-FA-96\",\"search_first_name\":\"leon\",\"rotowire_id\":10721,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Leon Orr\",\"sportradar_id\":\"642099c0-f452-42d1-a96a-49de370e54e7\",\"pandascore_id\":null,\"yahoo_id\":28968,\"last_name\":\"Orr\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Gulf\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"leonorr\",\"birth_date\":\"1992-02-11\",\"espn_id\":2516060},\"2318\":{\"position\":\"G\",\"injury_notes\":\"Peat may need surgery and his status for Week 1 is unknown.\",\"birth_country\":null,\"gsis_id\":\"00-0032203\",\"first_name\":\"Andrus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606073718642,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peat\",\"depth_chart_position\":\"LG\",\"player_id\":\"2318\",\"birth_city\":null,\"fantasy_data_id\":16774,\"years_exp\":5,\"hashtag\":\"#AndrusPeat-NFL-NO-75\",\"search_first_name\":\"andrus\",\"rotowire_id\":10258,\"rotoworld_id\":10416,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Andrus Peat\",\"sportradar_id\":\"e07c45a0-22f9-4ba2-9bbe-6c63e623bc38\",\"pandascore_id\":null,\"yahoo_id\":28401,\"last_name\":\"Peat\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Corona del Sol (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'7\\\"\",\"search_full_name\":\"andruspeat\",\"birth_date\":\"1993-11-04\",\"espn_id\":2978278},\"1090\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534390502959,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"golden\",\"depth_chart_position\":null,\"player_id\":\"1090\",\"birth_city\":null,\"fantasy_data_id\":13921,\"years_exp\":8,\"hashtag\":\"#RobertGolden-NFL-FA-22\",\"search_first_name\":\"robert\",\"rotowire_id\":8563,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Robert Golden\",\"sportradar_id\":\"77f923a3-67cd-4957-931d-b3865bdd3f6e\",\"pandascore_id\":null,\"yahoo_id\":26222,\"last_name\":\"Golden\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Edison (CA)\",\"depth_chart_order\":null,\"stats_id\":449282,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"robertgolden\",\"birth_date\":\"1990-09-13\",\"espn_id\":15213},\"6740\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035743\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602110428592,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"toth\",\"depth_chart_position\":\"LT\",\"player_id\":\"6740\",\"birth_city\":null,\"fantasy_data_id\":21661,\"years_exp\":1,\"hashtag\":\"#BrettToth-NFL-PHI-64\",\"search_first_name\":\"brett\",\"rotowire_id\":12696,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brett Toth\",\"sportradar_id\":\"d0b809ac-b82a-4b66-98b1-9fcf613ace6c\",\"pandascore_id\":null,\"yahoo_id\":32649,\"last_name\":\"Toth\",\"metadata\":null,\"college\":\"Army\",\"high_school\":\"West Ashley (SC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'6\\\"\",\"search_full_name\":\"bretttoth\",\"birth_date\":\"1996-09-01\",\"espn_id\":3129116},\"5605\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034341\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1564702861599,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"5605\",\"birth_city\":null,\"fantasy_data_id\":20347,\"years_exp\":2,\"hashtag\":\"#MatthewThomas-NFL-FA-46\",\"search_first_name\":\"matthew\",\"rotowire_id\":12748,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matthew Thomas\",\"sportradar_id\":\"fdc9f4af-b677-44b3-947d-d7fd18e77390\",\"pandascore_id\":null,\"yahoo_id\":31532,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742156,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'3\\\"\",\"search_full_name\":\"matthewthomas\",\"birth_date\":\"1995-07-21\",\"espn_id\":3045376},\"1778\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"1778\",\"birth_city\":null,\"fantasy_data_id\":15867,\"years_exp\":2,\"hashtag\":\"#GregJenkins-NFL-FA-10\",\"search_first_name\":\"greg\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Greg Jenkins\",\"sportradar_id\":\"c23373c5-5ec3-4c8e-9599-2ecb86e3b904\",\"pandascore_id\":null,\"yahoo_id\":27405,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"gregjenkins\",\"birth_date\":\"1989-08-23\",\"espn_id\":16520},\"6839\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaylon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600036559421,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"CB\",\"player_id\":\"6839\",\"birth_city\":null,\"fantasy_data_id\":22056,\"years_exp\":0,\"hashtag\":\"#JaylonJohnson-NFL-CHI-33\",\"search_first_name\":\"jaylon\",\"rotowire_id\":14627,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1891,\"age\":21,\"full_name\":\"Jaylon Johnson\",\"sportradar_id\":\"99b81b41-fb3b-4650-940b-9cb3770021ba\",\"pandascore_id\":null,\"yahoo_id\":32720,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Central East (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaylonjohnson\",\"birth_date\":\"1999-04-19\",\"espn_id\":4243253},\"3183\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032967\",\"first_name\":\"Vernon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604853617731,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":\"RDT\",\"player_id\":\"3183\",\"birth_city\":null,\"fantasy_data_id\":17944,\"years_exp\":4,\"hashtag\":\"#VernonButler-NFL-BUF-94\",\"search_first_name\":\"vernon\",\"rotowire_id\":10931,\"rotoworld_id\":11275,\"active\":true,\"search_rank\":957,\"age\":26,\"full_name\":\"Vernon Butler\",\"sportradar_id\":\"73e84e89-4bd3-480e-b862-68502c8c295a\",\"pandascore_id\":null,\"yahoo_id\":29264,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"North Pike (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vernonbutler\",\"birth_date\":\"1994-06-14\",\"espn_id\":2971883},\"1348\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030098\",\"first_name\":\"Dustin\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606445160080,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hopkins\",\"depth_chart_position\":\"K\",\"player_id\":\"1348\",\"birth_city\":null,\"fantasy_data_id\":14867,\"years_exp\":7,\"hashtag\":\"#DustinHopkins-NFL-WAS-3\",\"search_first_name\":\"dustin\",\"rotowire_id\":8896,\"rotoworld_id\":8581,\"active\":true,\"search_rank\":420,\"age\":30,\"full_name\":\"Dustin Hopkins\",\"sportradar_id\":\"058c99fc-470c-4579-a165-03e043335cc1\",\"pandascore_id\":null,\"yahoo_id\":26800,\"last_name\":\"Hopkins\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Clear Lake (TX)\",\"depth_chart_order\":1,\"stats_id\":509358,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dustinhopkins\",\"birth_date\":\"1990-10-01\",\"espn_id\":15965},\"1898\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031291\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1556664331492,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"1898\",\"birth_city\":null,\"fantasy_data_id\":16122,\"years_exp\":6,\"hashtag\":\"#JamesWright-NFL-FA-17\",\"search_first_name\":\"james\",\"rotowire_id\":9787,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"James Wright\",\"sportradar_id\":\"c0968ade-8af6-49f3-b812-bf15b6379334\",\"pandascore_id\":null,\"yahoo_id\":27767,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":540531,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jameswright\",\"birth_date\":\"1991-12-31\",\"espn_id\":16922},\"2890\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farmer\",\"depth_chart_position\":null,\"player_id\":\"2890\",\"birth_city\":null,\"fantasy_data_id\":17358,\"years_exp\":2,\"hashtag\":\"#GeorgeFarmer-NFL-FA-41\",\"search_first_name\":\"george\",\"rotowire_id\":10075,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"George Farmer\",\"sportradar_id\":\"0c69865f-6413-48a4-b08a-0538ac06de96\",\"pandascore_id\":null,\"yahoo_id\":29013,\"last_name\":\"Farmer\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":598998,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"georgefarmer\",\"birth_date\":\"1993-07-04\",\"espn_id\":2570993},\"4537\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4537\",\"birth_city\":null,\"fantasy_data_id\":19416,\"years_exp\":3,\"hashtag\":\"#JordanJohnson-NFL-FA-39\",\"search_first_name\":\"jordan\",\"rotowire_id\":12240,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Johnson\",\"sportradar_id\":\"759acb8f-6ff5-4692-8f56-b6e20c9372e1\",\"pandascore_id\":null,\"yahoo_id\":30595,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694076,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanjohnson\",\"birth_date\":\"1994-05-21\",\"espn_id\":2972311},\"4964\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034856\",\"first_name\":\"Denzel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606518628315,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4964\",\"birth_city\":null,\"fantasy_data_id\":19830,\"years_exp\":2,\"hashtag\":\"#DenzelWard-NFL-CLE-21\",\"search_first_name\":\"denzel\",\"rotowire_id\":12572,\"rotoworld_id\":13124,\"active\":true,\"search_rank\":1291,\"age\":23,\"full_name\":\"Denzel Ward\",\"sportradar_id\":\"aefdc3d3-0851-4782-b298-f06f137d42c9\",\"pandascore_id\":null,\"yahoo_id\":30974,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Macedonia Nordonia (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"denzelward\",\"birth_date\":\"1997-04-28\",\"espn_id\":3915535},\"6695\":{\"position\":\"CB\",\"injury_notes\":\"Brown is expected to miss the 2020 season after tearing his ACL in practice.\",\"birth_country\":null,\"gsis_id\":\" 00-0035634\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597713913115,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"6695\",\"birth_city\":null,\"fantasy_data_id\":21594,\"years_exp\":1,\"hashtag\":\"#AlexBrown-NFL-KC-30\",\"search_first_name\":\"alex\",\"rotowire_id\":14316,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Alex Brown\",\"sportradar_id\":\"3565220d-9fa0-497d-9fa1-e3bea7c302e8\",\"pandascore_id\":null,\"yahoo_id\":32609,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Lake Marion (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'11\\\"\",\"search_full_name\":\"alexbrown\",\"birth_date\":\"1996-08-30\",\"espn_id\":3140141},\"2363\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032127\",\"first_name\":\"Markus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1604186746043,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"golden\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2363\",\"birth_city\":null,\"fantasy_data_id\":16819,\"years_exp\":5,\"hashtag\":\"#MarkusGolden-NFL-ARI-44\",\"search_first_name\":\"markus\",\"rotowire_id\":10329,\"rotoworld_id\":10480,\"active\":true,\"search_rank\":875,\"age\":29,\"full_name\":\"Markus Golden\",\"sportradar_id\":\"78eb0872-fff0-4fc2-94ee-6a5c518ecaa5\",\"pandascore_id\":null,\"yahoo_id\":28446,\"last_name\":\"Golden\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Afton (MO)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"markusgolden\",\"birth_date\":\"1991-03-13\",\"espn_id\":2971432},\"2085\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelcy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quarles\",\"depth_chart_position\":null,\"player_id\":\"2085\",\"birth_city\":null,\"fantasy_data_id\":16399,\"years_exp\":6,\"hashtag\":\"#KelcyQuarles-NFL-FA-64\",\"search_first_name\":\"kelcy\",\"rotowire_id\":9365,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kelcy Quarles\",\"sportradar_id\":\"6ea7596c-c72d-4db6-a452-579ebbd13d15\",\"pandascore_id\":null,\"yahoo_id\":28049,\"last_name\":\"Quarles\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Greenwood (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kelcyquarles\",\"birth_date\":\"1992-01-23\",\"espn_id\":17235},\"3844\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"epps\",\"depth_chart_position\":null,\"player_id\":\"3844\",\"birth_city\":null,\"fantasy_data_id\":18664,\"years_exp\":0,\"hashtag\":\"#AaronEpps-NFL-FA-79\",\"search_first_name\":\"aaron\",\"rotowire_id\":11271,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Aaron Epps\",\"sportradar_id\":\"1df94830-23e0-4b69-a209-47cf90d10a98\",\"pandascore_id\":null,\"yahoo_id\":29971,\"last_name\":\"Epps\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'6\\\"\",\"search_full_name\":\"aaronepps\",\"birth_date\":\"1992-11-16\",\"espn_id\":null},\"3529\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nile\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lawrencestample\",\"depth_chart_position\":null,\"player_id\":\"3529\",\"birth_city\":null,\"fantasy_data_id\":18295,\"years_exp\":1,\"hashtag\":\"#NileLawrenceStample-NFL-FA-70\",\"search_first_name\":\"nile\",\"rotowire_id\":11105,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nile Lawrence-Stample\",\"sportradar_id\":\"316244b1-ad72-4637-89d5-da53c5088273\",\"pandascore_id\":null,\"yahoo_id\":29668,\"last_name\":\"Lawrence-Stample\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nilelawrencestample\",\"birth_date\":\"1992-07-14\",\"espn_id\":null},\"3577\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamison\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lalk\",\"depth_chart_position\":null,\"player_id\":\"3577\",\"birth_city\":null,\"fantasy_data_id\":18356,\"years_exp\":0,\"hashtag\":\"#JamisonLalk-NFL-FA-60\",\"search_first_name\":\"jamison\",\"rotowire_id\":11323,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jamison Lalk\",\"sportradar_id\":\"148efc6d-79b9-4ab6-8f21-ccaf8890957e\",\"pandascore_id\":null,\"yahoo_id\":29552,\"last_name\":\"Lalk\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jamisonlalk\",\"birth_date\":\"1992-12-07\",\"espn_id\":null},\"3588\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"3588\",\"birth_city\":null,\"fantasy_data_id\":18368,\"years_exp\":0,\"hashtag\":\"#MikeMiller-NFL-FA-47\",\"search_first_name\":\"mike\",\"rotowire_id\":11255,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Miller\",\"sportradar_id\":\"dd705d42-aa9c-4a4d-8d47-21c88fc39f76\",\"pandascore_id\":null,\"yahoo_id\":29606,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Taylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":841352,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mikemiller\",\"birth_date\":null,\"espn_id\":4010885},\"2565\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jean\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sifrin\",\"depth_chart_position\":null,\"player_id\":\"2565\",\"birth_city\":null,\"fantasy_data_id\":17029,\"years_exp\":0,\"hashtag\":\"#JeanSifrin-NFL-FA-48\",\"search_first_name\":\"jean\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jean Sifrin\",\"sportradar_id\":\"fd0ab2ae-9e4f-4dbf-9e95-fab262e78d8c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sifrin\",\"metadata\":null,\"college\":\"UMass\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":824329,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jeansifrin\",\"birth_date\":null,\"espn_id\":null},\"831\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hawkins\",\"depth_chart_position\":null,\"player_id\":\"831\",\"birth_city\":null,\"fantasy_data_id\":12847,\"years_exp\":9,\"hashtag\":\"#AndrewHawkins-NFL-FA-16\",\"search_first_name\":\"andrew\",\"rotowire_id\":7989,\"rotoworld_id\":6505,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Andrew Hawkins\",\"sportradar_id\":\"308cde80-c1e5-46a8-8df4-19a191b49c95\",\"pandascore_id\":null,\"yahoo_id\":24774,\"last_name\":\"Hawkins\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Bishop McCort (PA)\",\"depth_chart_order\":null,\"stats_id\":273276,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'7\\\"\",\"search_full_name\":\"andrewhawkins\",\"birth_date\":\"1986-03-10\",\"espn_id\":13958},\"1379\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029892\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1603832754658,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"juszczyk\",\"depth_chart_position\":\"RB\",\"player_id\":\"1379\",\"birth_city\":null,\"fantasy_data_id\":14901,\"years_exp\":7,\"hashtag\":\"#KyleJuszczyk-NFL-SF-44\",\"search_first_name\":\"kyle\",\"rotowire_id\":8930,\"rotoworld_id\":8548,\"active\":true,\"search_rank\":256,\"age\":29,\"full_name\":\"Kyle Juszczyk\",\"sportradar_id\":\"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6\",\"pandascore_id\":null,\"yahoo_id\":26753,\"last_name\":\"Juszczyk\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"Cloverleaf (OH)\",\"depth_chart_order\":3,\"stats_id\":501150,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kylejuszczyk\",\"birth_date\":\"1991-04-23\",\"espn_id\":16002},\"400\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vaughn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"400\",\"birth_city\":null,\"fantasy_data_id\":8810,\"years_exp\":6,\"hashtag\":\"#VaughnMartin-NFL-FA-72\",\"search_first_name\":\"vaughn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Vaughn Martin\",\"sportradar_id\":\"d0c86cb8-0462-4962-b9d6-47bd1db30fdf\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Western Ontario - Canada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vaughnmartin\",\"birth_date\":\"1986-04-18\",\"espn_id\":12688},\"4845\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1523673602202,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"4845\",\"birth_city\":null,\"fantasy_data_id\":19748,\"years_exp\":2,\"hashtag\":\"#AntonioCrawford-NFL-FA-34\",\"search_first_name\":\"antonio\",\"rotowire_id\":12066,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Antonio Crawford\",\"sportradar_id\":\"9d16002c-05f3-4ad9-a240-9bb09660ac08\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"antoniocrawford\",\"birth_date\":null,\"espn_id\":2969946},\"5200\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034290\",\"first_name\":\"Dee\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1564692920000,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"liner\",\"depth_chart_position\":null,\"player_id\":\"5200\",\"birth_city\":null,\"fantasy_data_id\":20151,\"years_exp\":2,\"hashtag\":\"#DeeLiner-NFL-FA-90\",\"search_first_name\":\"dee\",\"rotowire_id\":13176,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dee Liner\",\"sportradar_id\":\"0c0b9670-cbc6-43b7-8901-e99f2983cf3f\",\"pandascore_id\":null,\"yahoo_id\":31489,\"last_name\":\"Liner\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"334\",\"height\":\"6'3\\\"\",\"search_full_name\":\"deeliner\",\"birth_date\":\"1993-10-29\",\"espn_id\":3054854},\"3607\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hartfield\",\"depth_chart_position\":null,\"player_id\":\"3607\",\"birth_city\":null,\"fantasy_data_id\":18394,\"years_exp\":3,\"hashtag\":\"#TrevonHartfield-NFL-FA-37\",\"search_first_name\":\"trevon\",\"rotowire_id\":11293,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Trevon Hartfield\",\"sportradar_id\":\"6c2a9a4b-2b56-4e4a-b034-057d0a5a7293\",\"pandascore_id\":null,\"yahoo_id\":29578,\"last_name\":\"Hartfield\",\"metadata\":null,\"college\":\"SW Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trevonhartfield\",\"birth_date\":\"1991-11-17\",\"espn_id\":4010744},\"5771\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034851\",\"first_name\":\"Kiante\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534350313729,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"5771\",\"birth_city\":null,\"fantasy_data_id\":20676,\"years_exp\":2,\"hashtag\":\"#KianteAnderson-NFL-FA-76\",\"search_first_name\":\"kiante\",\"rotowire_id\":13373,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kiante Anderson\",\"sportradar_id\":\"164a4e28-ffd2-4606-933c-9870c2ac5d67\",\"pandascore_id\":null,\"yahoo_id\":31765,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kianteanderson\",\"birth_date\":\"1995-05-27\",\"espn_id\":3063943},\"1118\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029620\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596776150465,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":\"MLB\",\"player_id\":\"1118\",\"birth_city\":null,\"fantasy_data_id\":14032,\"years_exp\":8,\"hashtag\":\"#BrandonMarshall-NFL-FA-54\",\"search_first_name\":\"brandon\",\"rotowire_id\":8252,\"rotoworld_id\":7592,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Brandon Marshall\",\"sportradar_id\":\"6fc9e2c6-fb44-490e-8353-2362b7b94ee9\",\"pandascore_id\":null,\"yahoo_id\":25852,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Cimarron-Memorial (NV)\",\"depth_chart_order\":1,\"stats_id\":409523,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandonmarshall\",\"birth_date\":\"1989-09-10\",\"espn_id\":15002},\"1528\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030104\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1533678958801,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"1528\",\"birth_city\":null,\"fantasy_data_id\":15139,\"years_exp\":7,\"hashtag\":\"#NatePalmer-NFL-FA-50\",\"search_first_name\":\"nate\",\"rotowire_id\":8956,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Nate Palmer\",\"sportradar_id\":\"a1308227-2421-4537-9074-3218f078d9f6\",\"pandascore_id\":null,\"yahoo_id\":26816,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"Simeon (IL)\",\"depth_chart_order\":null,\"stats_id\":464024,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"natepalmer\",\"birth_date\":\"1989-09-23\",\"espn_id\":15930},\"1629\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029886\",\"first_name\":\"LaAdrian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565104222120,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"waddle\",\"depth_chart_position\":null,\"player_id\":\"1629\",\"birth_city\":null,\"fantasy_data_id\":15339,\"years_exp\":7,\"hashtag\":\"#LaAdrianWaddle-NFL-FA-74\",\"search_first_name\":\"laadrian\",\"rotowire_id\":9100,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"LaAdrian Waddle\",\"sportradar_id\":\"45039bcf-634a-48a7-8102-f0131491cf66\",\"pandascore_id\":null,\"yahoo_id\":27192,\"last_name\":\"Waddle\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Columbus (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"laadrianwaddle\",\"birth_date\":\"1991-07-21\",\"espn_id\":16333},\"1614\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frankie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hammond\",\"depth_chart_position\":null,\"player_id\":\"1614\",\"birth_city\":null,\"fantasy_data_id\":15296,\"years_exp\":7,\"hashtag\":\"#FrankieHammond-NFL-FA-14\",\"search_first_name\":\"frankie\",\"rotowire_id\":9897,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Frankie Hammond\",\"sportradar_id\":\"b1e3556e-3014-4add-922a-41be34df4927\",\"pandascore_id\":null,\"yahoo_id\":27173,\"last_name\":\"Hammond\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Hallandale (FL)\",\"depth_chart_order\":null,\"stats_id\":463183,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"frankiehammond\",\"birth_date\":\"1990-02-17\",\"espn_id\":16260},\"6040\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035356\",\"first_name\":\"Tyree\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1570493456931,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"QB\",\"player_id\":\"6040\",\"birth_city\":null,\"fantasy_data_id\":20823,\"years_exp\":1,\"hashtag\":\"#TyreeJackson-NFL-FA-6\",\"search_first_name\":\"tyree\",\"rotowire_id\":13551,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tyree Jackson\",\"sportradar_id\":\"2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9\",\"pandascore_id\":null,\"yahoo_id\":32415,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":881048,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'7\\\"\",\"search_full_name\":\"tyreejackson\",\"birth_date\":\"1997-11-07\",\"espn_id\":3916564},\"3109\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ted\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"monachino\",\"depth_chart_position\":null,\"player_id\":\"3109\",\"birth_city\":null,\"fantasy_data_id\":17861,\"years_exp\":null,\"hashtag\":\"#TedMonachino-NFL-FA-0\",\"search_first_name\":\"ted\",\"rotowire_id\":null,\"rotoworld_id\":11226,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ted Monachino\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Monachino\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tedmonachino\",\"birth_date\":null,\"espn_id\":null},\"470\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerraud\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powers\",\"depth_chart_position\":null,\"player_id\":\"470\",\"birth_city\":null,\"fantasy_data_id\":9681,\"years_exp\":11,\"hashtag\":\"#JerraudPowers-NFL-FA-26\",\"search_first_name\":\"jerraud\",\"rotowire_id\":6136,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jerraud Powers\",\"sportradar_id\":\"aa784a08-fa35-45af-9cc5-f731446b4cb5\",\"pandascore_id\":null,\"yahoo_id\":9356,\"last_name\":\"Powers\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Decatur (AL)\",\"depth_chart_order\":null,\"stats_id\":303943,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jerraudpowers\",\"birth_date\":\"1987-07-19\",\"espn_id\":12714},\"3769\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tarow\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barney\",\"depth_chart_position\":\"NT\",\"player_id\":\"3769\",\"birth_city\":null,\"fantasy_data_id\":18582,\"years_exp\":0,\"hashtag\":\"#TarowBarney-NFL-FA-60\",\"search_first_name\":\"tarow\",\"rotowire_id\":11454,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tarow Barney\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29786,\"last_name\":\"Barney\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tarowbarney\",\"birth_date\":\"1994-06-08\",\"espn_id\":3116153},\"4080\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033891\",\"first_name\":\"Zay\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606141812858,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4080\",\"birth_city\":null,\"fantasy_data_id\":18926,\"years_exp\":3,\"hashtag\":\"#ZayJones-NFL-LV-12\",\"search_first_name\":\"zay\",\"rotowire_id\":11751,\"rotoworld_id\":12246,\"active\":true,\"search_rank\":341,\"age\":25,\"full_name\":\"Zay Jones\",\"sportradar_id\":\"a28f7368-0306-4d20-855f-285a1a09c09c\",\"pandascore_id\":null,\"yahoo_id\":30150,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Stephen F. Austin (TX)\",\"depth_chart_order\":2,\"stats_id\":746491,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zayjones\",\"birth_date\":\"1995-03-30\",\"espn_id\":3059722},\"1655\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenbrell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1527003001467,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompkins\",\"depth_chart_position\":null,\"player_id\":\"1655\",\"birth_city\":null,\"fantasy_data_id\":15417,\"years_exp\":7,\"hashtag\":\"#KenbrellThompkins-NFL-FA-84\",\"search_first_name\":\"kenbrell\",\"rotowire_id\":8982,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kenbrell Thompkins\",\"sportradar_id\":\"2b4e17f2-27b8-4c98-9b27-1d4c0d7949de\",\"pandascore_id\":null,\"yahoo_id\":27235,\"last_name\":\"Thompkins\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Miami Northwest (FL)\",\"depth_chart_order\":null,\"stats_id\":544031,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kenbrellthompkins\",\"birth_date\":\"1988-07-29\",\"espn_id\":16381},\"3400\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032807\",\"first_name\":\"Clayton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601648707072,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fejedelem\",\"depth_chart_position\":\"SS\",\"player_id\":\"3400\",\"birth_city\":null,\"fantasy_data_id\":18161,\"years_exp\":4,\"hashtag\":\"#ClaytonFejedelem-NFL-MIA-42\",\"search_first_name\":\"clayton\",\"rotowire_id\":11244,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1044,\"age\":27,\"full_name\":\"Clayton Fejedelem\",\"sportradar_id\":\"94001c44-9eea-4d2b-a766-079ddcb2e8b0\",\"pandascore_id\":null,\"yahoo_id\":29479,\"last_name\":\"Fejedelem\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Lemont (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"claytonfejedelem\",\"birth_date\":\"1993-06-02\",\"espn_id\":3042455},\"4620\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Avery\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4620\",\"birth_city\":null,\"fantasy_data_id\":19512,\"years_exp\":2,\"hashtag\":\"#AveryWilliams-NFL-FA-50\",\"search_first_name\":\"avery\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Avery Williams\",\"sportradar_id\":\"d559f251-418b-43ab-b410-ee97e2dd935c\",\"pandascore_id\":null,\"yahoo_id\":30793,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692361,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'9\\\"\",\"search_full_name\":\"averywilliams\",\"birth_date\":\"1994-09-02\",\"espn_id\":2976268},\"1127\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029577\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604286623828,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"trevathan\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1127\",\"birth_city\":null,\"fantasy_data_id\":14057,\"years_exp\":8,\"hashtag\":\"#DannyTrevathan-NFL-CHI-59\",\"search_first_name\":\"danny\",\"rotowire_id\":8285,\"rotoworld_id\":7630,\"active\":true,\"search_rank\":670,\"age\":30,\"full_name\":\"Danny Trevathan\",\"sportradar_id\":\"0a605e2f-4c81-453d-941b-4e9f143210f8\",\"pandascore_id\":null,\"yahoo_id\":25898,\"last_name\":\"Trevathan\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Leesburg (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dannytrevathan\",\"birth_date\":\"1990-03-24\",\"espn_id\":15074},\"3430\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dean\",\"depth_chart_position\":null,\"player_id\":\"3430\",\"birth_city\":null,\"fantasy_data_id\":18194,\"years_exp\":3,\"hashtag\":\"#DavidDean-NFL-FA-79\",\"search_first_name\":\"david\",\"rotowire_id\":11353,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Dean\",\"sportradar_id\":\"f90bf712-ba1f-4e2e-a79b-20d6ef6cb0dc\",\"pandascore_id\":null,\"yahoo_id\":29702,\"last_name\":\"Dean\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daviddean\",\"birth_date\":\"1993-02-16\",\"espn_id\":2577828},\"823\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028103\",\"first_name\":\"Pernell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606263654806,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"mcphee\",\"depth_chart_position\":null,\"player_id\":\"823\",\"birth_city\":null,\"fantasy_data_id\":12822,\"years_exp\":9,\"hashtag\":\"#PernellMcPhee-NFL-BAL-90\",\"search_first_name\":\"pernell\",\"rotowire_id\":7457,\"rotoworld_id\":6671,\"active\":true,\"search_rank\":628,\"age\":31,\"full_name\":\"Pernell McPhee\",\"sportradar_id\":\"4b62138a-e222-408c-8595-936d1a194eca\",\"pandascore_id\":null,\"yahoo_id\":24952,\"last_name\":\"McPhee\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Pahokee (FL)\",\"depth_chart_order\":null,\"stats_id\":495524,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"pernellmcphee\",\"birth_date\":\"1988-12-17\",\"espn_id\":14202},\"3872\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bennett\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okotcha\",\"depth_chart_position\":null,\"player_id\":\"3872\",\"birth_city\":null,\"fantasy_data_id\":18694,\"years_exp\":0,\"hashtag\":\"#BennettOkotcha-NFL-FA-23\",\"search_first_name\":\"bennett\",\"rotowire_id\":11400,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bennett Okotcha\",\"sportradar_id\":\"4d93eff3-254e-4c87-911f-998d72d2e17f\",\"pandascore_id\":null,\"yahoo_id\":29985,\"last_name\":\"Okotcha\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bennettokotcha\",\"birth_date\":\"1993-02-07\",\"espn_id\":null},\"3821\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"britz\",\"depth_chart_position\":null,\"player_id\":\"3821\",\"birth_city\":null,\"fantasy_data_id\":18638,\"years_exp\":0,\"hashtag\":\"#TravisBritz-NFL-FA-79\",\"search_first_name\":\"travis\",\"rotowire_id\":11477,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Travis Britz\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29927,\"last_name\":\"Britz\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'4\\\"\",\"search_full_name\":\"travisbritz\",\"birth_date\":\"1994-01-26\",\"espn_id\":2977687},\"5595\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034327\",\"first_name\":\"Step\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554327050244,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durham\",\"depth_chart_position\":null,\"player_id\":\"5595\",\"birth_city\":null,\"fantasy_data_id\":20593,\"years_exp\":2,\"hashtag\":\"#StepDurham-NFL-FA-0\",\"search_first_name\":\"step\",\"rotowire_id\":13415,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Step Durham\",\"sportradar_id\":\"8564968a-505e-4954-81a3-3d288204cf91\",\"pandascore_id\":null,\"yahoo_id\":31521,\"last_name\":\"Durham\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"stepdurham\",\"birth_date\":\"1995-06-10\",\"espn_id\":3116618},\"971\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"housler\",\"depth_chart_position\":null,\"player_id\":\"971\",\"birth_city\":null,\"fantasy_data_id\":13406,\"years_exp\":9,\"hashtag\":\"#RobHousler-NFL-FA-88\",\"search_first_name\":\"rob\",\"rotowire_id\":7422,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Rob Housler\",\"sportradar_id\":\"76b51e0a-be98-4a8a-8ac3-dc5e829e1ae9\",\"pandascore_id\":null,\"yahoo_id\":24856,\"last_name\":\"Housler\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Judson (TX)\",\"depth_chart_order\":null,\"stats_id\":324897,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"robhousler\",\"birth_date\":\"1988-03-17\",\"espn_id\":14009},\"255\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1521503101298,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ihedigbo\",\"depth_chart_position\":null,\"player_id\":\"255\",\"birth_city\":null,\"fantasy_data_id\":6310,\"years_exp\":13,\"hashtag\":\"#JamesIhedigbo-NFL-FA-27\",\"search_first_name\":\"james\",\"rotowire_id\":7115,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"James Ihedigbo\",\"sportradar_id\":\"bf46fb03-b257-413f-af21-6823e00c81b5\",\"pandascore_id\":null,\"yahoo_id\":9133,\"last_name\":\"Ihedigbo\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":\"Regional (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesihedigbo\",\"birth_date\":\"1983-12-03\",\"espn_id\":10749},\"4355\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033379\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1590701163594,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4355\",\"birth_city\":null,\"fantasy_data_id\":19212,\"years_exp\":3,\"hashtag\":\"#TimWhite-NFL-FA-0\",\"search_first_name\":\"tim\",\"rotowire_id\":12330,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1236,\"age\":26,\"full_name\":\"Tim White\",\"sportradar_id\":\"4592fc87-9864-452d-8a19-5d4df714658f\",\"pandascore_id\":null,\"yahoo_id\":30510,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":10,\"stats_id\":882360,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"timwhite\",\"birth_date\":\"1994-07-15\",\"espn_id\":3915403},\"7473\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lee\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"autry\",\"depth_chart_position\":null,\"player_id\":\"7473\",\"birth_city\":null,\"fantasy_data_id\":22448,\"years_exp\":0,\"hashtag\":\"#LeeAutry-NFL-LAC-63\",\"search_first_name\":\"lee\",\"rotowire_id\":15166,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2008,\"age\":24,\"full_name\":\"Lee Autry\",\"sportradar_id\":\"9f82dd08-c561-4a5d-ae14-cacb30861348\",\"pandascore_id\":null,\"yahoo_id\":33172,\"last_name\":\"Autry\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Albemarle (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"leeautry\",\"birth_date\":\"1996-07-29\",\"espn_id\":4242251},\"4296\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033226\",\"first_name\":\"J'terius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1554779411853,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4296\",\"birth_city\":null,\"fantasy_data_id\":19144,\"years_exp\":3,\"hashtag\":\"#JteriusJones-NFL-FA-40\",\"search_first_name\":\"jterius\",\"rotowire_id\":12650,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"J'terius Jones\",\"sportradar_id\":\"d6d18868-c912-4af0-961f-e529d8fc8e45\",\"pandascore_id\":null,\"yahoo_id\":30455,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Miami (OH)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jteriusjones\",\"birth_date\":\"1993-11-12\",\"espn_id\":2978065},\"7068\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Francis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599332157113,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bernard\",\"depth_chart_position\":\"MLB\",\"player_id\":\"7068\",\"birth_city\":null,\"fantasy_data_id\":21915,\"years_exp\":0,\"hashtag\":\"#FrancisBernard-NFL-DAL-44\",\"search_first_name\":\"francis\",\"rotowire_id\":14610,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1836,\"age\":25,\"full_name\":\"Francis Bernard\",\"sportradar_id\":\"41bc429b-f4c2-4edd-bbe1-9a36a178caeb\",\"pandascore_id\":null,\"yahoo_id\":33105,\"last_name\":\"Bernard\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Herriman (UT)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"francisbernard\",\"birth_date\":\"1995-04-08\",\"espn_id\":3932336},\"7358\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":1599516307158,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bargas\",\"depth_chart_position\":\"RB\",\"player_id\":\"7358\",\"birth_city\":null,\"fantasy_data_id\":22346,\"years_exp\":0,\"hashtag\":\"#JakeBargas-NFL-MIN-40\",\"search_first_name\":\"jake\",\"rotowire_id\":15109,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jake Bargas\",\"sportradar_id\":\"5690a8b7-c298-426f-be4b-4bd2f0046ae5\",\"pandascore_id\":null,\"yahoo_id\":33021,\"last_name\":\"Bargas\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"St. Andrews (FL)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakebargas\",\"birth_date\":\"1996-11-28\",\"espn_id\":3895835},\"4051\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033597\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1601506511902,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"QB\",\"player_id\":\"4051\",\"birth_city\":null,\"fantasy_data_id\":18897,\"years_exp\":3,\"hashtag\":\"#ChadKelly-NFL-IND-6\",\"search_first_name\":\"chad\",\"rotowire_id\":12225,\"rotoworld_id\":12217,\"active\":true,\"search_rank\":1114,\"age\":26,\"full_name\":\"Chad Kelly\",\"sportradar_id\":\"878d95f5-22d9-4f20-a3ec-2b5b117a8c5c\",\"pandascore_id\":null,\"yahoo_id\":30366,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"St. Joseph's Collegiate Institute (NY)\",\"depth_chart_order\":6,\"stats_id\":653107,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chadkelly\",\"birth_date\":\"1994-03-26\",\"espn_id\":2977665},\"7467\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":1599690042694,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gillikin\",\"depth_chart_position\":null,\"player_id\":\"7467\",\"birth_city\":null,\"fantasy_data_id\":22442,\"years_exp\":0,\"hashtag\":\"#BlakeGillikin-NFL-NO-4\",\"search_first_name\":\"blake\",\"rotowire_id\":14868,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Blake Gillikin\",\"sportradar_id\":\"53213f81-77ad-48d0-9d42-00e3633b0e90\",\"pandascore_id\":null,\"yahoo_id\":33112,\"last_name\":\"Gillikin\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"The Westminster Schools (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'2\\\"\",\"search_full_name\":\"blakegillikin\",\"birth_date\":\"1998-01-21\",\"espn_id\":4045180},\"3194\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032758\",\"first_name\":\"Vernon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604932225645,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hargreaves\",\"depth_chart_position\":\"LCB\",\"player_id\":\"3194\",\"birth_city\":null,\"fantasy_data_id\":17955,\"years_exp\":4,\"hashtag\":\"#VernonHargreaves-NFL-HOU-26\",\"search_first_name\":\"vernon\",\"rotowire_id\":11052,\"rotoworld_id\":11298,\"active\":true,\"search_rank\":963,\"age\":25,\"full_name\":\"Vernon Hargreaves\",\"sportradar_id\":\"0da88ee9-26f4-4d59-aa66-1e2dbda05580\",\"pandascore_id\":null,\"yahoo_id\":29245,\"last_name\":\"Hargreaves\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Wharton (FL)\",\"depth_chart_order\":1,\"stats_id\":748610,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'10\\\"\",\"search_full_name\":\"vernonhargreaves\",\"birth_date\":\"1995-06-03\",\"espn_id\":3054955},\"3636\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sadat\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sulleyman\",\"depth_chart_position\":null,\"player_id\":\"3636\",\"birth_city\":null,\"fantasy_data_id\":18425,\"years_exp\":0,\"hashtag\":\"#SadatSulleyman-NFL-FA-59\",\"search_first_name\":\"sadat\",\"rotowire_id\":11430,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sadat Sulleyman\",\"sportradar_id\":\"df627077-f696-445c-b18b-af084bb73e67\",\"pandascore_id\":null,\"yahoo_id\":29633,\"last_name\":\"Sulleyman\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sadatsulleyman\",\"birth_date\":\"1992-10-25\",\"espn_id\":2565690},\"4916\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Royce\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lafrance\",\"depth_chart_position\":null,\"player_id\":\"4916\",\"birth_city\":null,\"fantasy_data_id\":18796,\"years_exp\":1,\"hashtag\":\"#RoyceLafrance-NFL-NO-0\",\"search_first_name\":\"royce\",\"rotowire_id\":11715,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Royce Lafrance\",\"sportradar_id\":\"091c4e9f-a361-4c1b-85c8-8353c24c0547\",\"pandascore_id\":null,\"yahoo_id\":30084,\"last_name\":\"Lafrance\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"roycelafrance\",\"birth_date\":\"1993-07-17\",\"espn_id\":null},\"6935\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596309610243,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6935\",\"birth_city\":null,\"fantasy_data_id\":22057,\"years_exp\":0,\"hashtag\":\"#JosiahScott-NFL-JAX-24\",\"search_first_name\":\"josiah\",\"rotowire_id\":14413,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1892,\"age\":21,\"full_name\":\"Josiah Scott\",\"sportradar_id\":\"72d2a51c-7f02-4db8-8cce-19c45820f170\",\"pandascore_id\":null,\"yahoo_id\":32807,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Fairfield (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"josiahscott\",\"birth_date\":\"1999-04-05\",\"espn_id\":4241977},\"5922\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1596585350095,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"5922\",\"birth_city\":null,\"fantasy_data_id\":21029,\"years_exp\":0,\"hashtag\":\"#MikeBell-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":13481,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1640,\"age\":null,\"full_name\":\"Mike Bell\",\"sportradar_id\":\"5edc6528-898b-4ec6-bf0d-b01134430c40\",\"pandascore_id\":null,\"yahoo_id\":33092,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikebell\",\"birth_date\":null,\"espn_id\":null},\"2143\":{\"position\":\"NT\",\"injury_notes\":\"Pennel will miss 2 games for an undisclosed reason.\",\"birth_country\":null,\"gsis_id\":\"00-0030757\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602006606347,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pennel\",\"depth_chart_position\":\"RDT\",\"player_id\":\"2143\",\"birth_city\":null,\"fantasy_data_id\":16486,\"years_exp\":6,\"hashtag\":\"#MikePennel-NFL-KC-64\",\"search_first_name\":\"mike\",\"rotowire_id\":9661,\"rotoworld_id\":null,\"active\":true,\"search_rank\":828,\"age\":29,\"full_name\":\"Mike Pennel\",\"sportradar_id\":\"8b9bc551-66bb-4948-849f-c0471caaeb19\",\"pandascore_id\":null,\"yahoo_id\":28085,\"last_name\":\"Pennel\",\"metadata\":null,\"college\":\"Colorado State-Pueblo\",\"high_school\":\"Grandview (CO)\",\"depth_chart_order\":2,\"stats_id\":652847,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikepennel\",\"birth_date\":\"1991-05-09\",\"espn_id\":17230},\"4514\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chanceller\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535486702840,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"4514\",\"birth_city\":null,\"fantasy_data_id\":19386,\"years_exp\":3,\"hashtag\":\"#ChancellerJames-NFL-FA-43\",\"search_first_name\":\"chanceller\",\"rotowire_id\":12373,\"rotoworld_id\":12796,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chanceller James\",\"sportradar_id\":\"12588c69-6c6a-4267-8d20-ad5022bc7043\",\"pandascore_id\":null,\"yahoo_id\":30690,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chancellerjames\",\"birth_date\":\"1994-09-26\",\"espn_id\":2972901},\"3788\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032475\",\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564595722763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcevoy\",\"depth_chart_position\":null,\"player_id\":\"3788\",\"birth_city\":null,\"fantasy_data_id\":18602,\"years_exp\":4,\"hashtag\":\"#TannerMcEvoy-NFL-FA-87\",\"search_first_name\":\"tanner\",\"rotowire_id\":11561,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tanner McEvoy\",\"sportradar_id\":\"8ac8cc85-6599-4956-819e-0887ccb72993\",\"pandascore_id\":null,\"yahoo_id\":29825,\"last_name\":\"McEvoy\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604926,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tannermcevoy\",\"birth_date\":\"1993-01-26\",\"espn_id\":2577684},\"3941\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tylor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"3941\",\"birth_city\":null,\"fantasy_data_id\":18774,\"years_exp\":3,\"hashtag\":\"#TylorHarris-NFL-FA-64\",\"search_first_name\":\"tylor\",\"rotowire_id\":11661,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tylor Harris\",\"sportradar_id\":\"5484dc71-1d33-466c-a107-d506502d60d3\",\"pandascore_id\":null,\"yahoo_id\":30071,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylorharris\",\"birth_date\":\"1994-02-16\",\"espn_id\":2970130},\"4528\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1508283421608,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knight\",\"depth_chart_position\":null,\"player_id\":\"4528\",\"birth_city\":null,\"fantasy_data_id\":19406,\"years_exp\":3,\"hashtag\":\"#TrevorKnight-NFL-FA-0\",\"search_first_name\":\"trevor\",\"rotowire_id\":11836,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Trevor Knight\",\"sportradar_id\":\"e17c3db4-d8db-48ed-b96b-ef0ca21c429b\",\"pandascore_id\":null,\"yahoo_id\":30490,\"last_name\":\"Knight\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691269,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trevorknight\",\"birth_date\":\"1993-10-03\",\"espn_id\":2976593},\"6784\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604932225645,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"RDT\",\"player_id\":\"6784\",\"birth_city\":null,\"fantasy_data_id\":22085,\"years_exp\":0,\"hashtag\":\"#DerrickBrown-NFL-CAR-95\",\"search_first_name\":\"derrick\",\"rotowire_id\":13852,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1915,\"age\":22,\"full_name\":\"Derrick Brown\",\"sportradar_id\":\"9c8292c7-b406-4a31-a781-7c72aac6b053\",\"pandascore_id\":null,\"yahoo_id\":32677,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Lanier (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"derrickbrown\",\"birth_date\":\"1998-04-15\",\"espn_id\":4035495},\"4800\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tomlin\",\"depth_chart_position\":null,\"player_id\":\"4800\",\"birth_city\":null,\"fantasy_data_id\":19714,\"years_exp\":0,\"hashtag\":\"#MikeTomlin-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":8359,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Tomlin\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tomlin\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"miketomlin\",\"birth_date\":null,\"espn_id\":null},\"5359\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034524\",\"first_name\":\"Dorren\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557852330059,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5359\",\"birth_city\":null,\"fantasy_data_id\":20456,\"years_exp\":2,\"hashtag\":\"#DorrenMiller-NFL-FA-84\",\"search_first_name\":\"dorren\",\"rotowire_id\":13033,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dorren Miller\",\"sportradar_id\":\"0db5bd22-905e-4faa-a2d3-2c9d407215e8\",\"pandascore_id\":null,\"yahoo_id\":31271,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":1115396,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dorrenmiller\",\"birth_date\":\"1994-08-03\",\"espn_id\":4260053},\"4952\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"benson\",\"depth_chart_position\":null,\"player_id\":\"4952\",\"birth_city\":null,\"fantasy_data_id\":19817,\"years_exp\":0,\"hashtag\":\"#TomBenson-NFL-FA-0\",\"search_first_name\":\"tom\",\"rotowire_id\":null,\"rotoworld_id\":9460,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tom Benson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Benson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tombenson\",\"birth_date\":null,\"espn_id\":null},\"5525\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034187\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"5525\",\"birth_city\":null,\"fantasy_data_id\":20569,\"years_exp\":2,\"hashtag\":\"#JustinEvans-NFL-FA-65\",\"search_first_name\":\"justin\",\"rotowire_id\":13124,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Evans\",\"sportradar_id\":\"a8edaf07-1599-47c0-a138-1fab2a84dff9\",\"pandascore_id\":null,\"yahoo_id\":31426,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justinevans\",\"birth_date\":\"1995-08-19\",\"espn_id\":3140151},\"1836\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031067\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584580826288,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fleming\",\"depth_chart_position\":\"RT\",\"player_id\":\"1836\",\"birth_city\":null,\"fantasy_data_id\":16039,\"years_exp\":6,\"hashtag\":\"#CameronFleming-NFL-NYG-75\",\"search_first_name\":\"cameron\",\"rotowire_id\":9362,\"rotoworld_id\":9615,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cameron Fleming\",\"sportradar_id\":\"248b6e0b-bb1b-4dd7-8eb2-b5f7e98c77b1\",\"pandascore_id\":null,\"yahoo_id\":27668,\"last_name\":\"Fleming\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Cypress Creek (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"cameronfleming\",\"birth_date\":\"1992-09-03\",\"espn_id\":16932},\"5614\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034658\",\"first_name\":\"Nico\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596080716564,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"falah\",\"depth_chart_position\":\"C\",\"player_id\":\"5614\",\"birth_city\":null,\"fantasy_data_id\":20377,\"years_exp\":2,\"hashtag\":\"#NicoFalah-NFL-FA-0\",\"search_first_name\":\"nico\",\"rotowire_id\":13295,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nico Falah\",\"sportradar_id\":\"8c2d4bf5-e654-4a8b-a17a-f81d6aebb030\",\"pandascore_id\":null,\"yahoo_id\":31617,\"last_name\":\"Falah\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nicofalah\",\"birth_date\":\"1995-01-06\",\"espn_id\":3043224},\"5993\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035670\",\"first_name\":\"Dakota\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605906303054,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"WLB\",\"player_id\":\"5993\",\"birth_city\":null,\"fantasy_data_id\":20736,\"years_exp\":1,\"hashtag\":\"#DakotaAllen-NFL-JAX-53\",\"search_first_name\":\"dakota\",\"rotowire_id\":13831,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1520,\"age\":25,\"full_name\":\"Dakota Allen\",\"sportradar_id\":\"4d094a58-1cbe-4ede-abaa-cd2f1a492f0d\",\"pandascore_id\":null,\"yahoo_id\":32083,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Summer Creek (TX)\",\"depth_chart_order\":2,\"stats_id\":839005,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dakotaallen\",\"birth_date\":\"1995-11-02\",\"espn_id\":3139453},\"6204\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034917\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1606074919418,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mazza\",\"depth_chart_position\":null,\"player_id\":\"6204\",\"birth_city\":null,\"fantasy_data_id\":21102,\"years_exp\":1,\"hashtag\":\"#ColeMazza-NFL-LAC-45\",\"search_first_name\":\"cole\",\"rotowire_id\":13938,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cole Mazza\",\"sportradar_id\":\"3a212660-0028-47dd-8ef2-362edd1ea2b2\",\"pandascore_id\":null,\"yahoo_id\":31827,\"last_name\":\"Mazza\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Liberty (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'1\\\"\",\"search_full_name\":\"colemazza\",\"birth_date\":\"1995-02-14\",\"espn_id\":3054855},\"788\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028087\",\"first_name\":\"Dion\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605663626458,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"RB\",\"player_id\":\"788\",\"birth_city\":null,\"fantasy_data_id\":12708,\"years_exp\":9,\"hashtag\":\"#DionLewis-NFL-NYG-33\",\"search_first_name\":\"dion\",\"rotowire_id\":7364,\"rotoworld_id\":6483,\"active\":true,\"search_rank\":242,\"age\":30,\"full_name\":\"Dion Lewis\",\"sportradar_id\":\"b25ba2bd-80bd-4295-9034-cf9242fb207b\",\"pandascore_id\":null,\"yahoo_id\":24936,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Albany Academy (NY)\",\"depth_chart_order\":3,\"stats_id\":494724,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'8\\\"\",\"search_full_name\":\"dionlewis\",\"birth_date\":\"1990-09-27\",\"espn_id\":14198},\"4249\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033974\",\"first_name\":\"Ejuan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1546470929593,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":\"RUSH\",\"player_id\":\"4249\",\"birth_city\":null,\"fantasy_data_id\":19095,\"years_exp\":3,\"hashtag\":\"#EjuanPrice-NFL-FA-51\",\"search_first_name\":\"ejuan\",\"rotowire_id\":11934,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ejuan Price\",\"sportradar_id\":\"da734b72-1ac6-440f-89c9-40b90c0ad1a7\",\"pandascore_id\":null,\"yahoo_id\":30347,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ejuanprice\",\"birth_date\":\"1993-01-30\",\"espn_id\":2576666},\"5897\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035470\",\"first_name\":\"Lukas\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"denis\",\"depth_chart_position\":null,\"player_id\":\"5897\",\"birth_city\":null,\"fantasy_data_id\":21066,\"years_exp\":1,\"hashtag\":\"#LukasDenis-NFL-FA-25\",\"search_first_name\":\"lukas\",\"rotowire_id\":13853,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Lukas Denis\",\"sportradar_id\":\"8e4979d6-aa7f-4b18-a0ff-74021728ca1d\",\"pandascore_id\":null,\"yahoo_id\":32478,\"last_name\":\"Denis\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lukasdenis\",\"birth_date\":\"1997-04-13\",\"espn_id\":3915291},\"1336\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tucker\",\"depth_chart_position\":null,\"player_id\":\"1336\",\"birth_city\":null,\"fantasy_data_id\":14853,\"years_exp\":2,\"hashtag\":\"#MatthewTucker-NFL-FA-36\",\"search_first_name\":\"matthew\",\"rotowire_id\":8933,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Matthew Tucker\",\"sportradar_id\":\"eb1abc46-bb95-442b-864c-639fd923fc68\",\"pandascore_id\":null,\"yahoo_id\":27057,\"last_name\":\"Tucker\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":494939,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"matthewtucker\",\"birth_date\":\"1991-05-24\",\"espn_id\":16236},\"4448\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kukwa\",\"depth_chart_position\":null,\"player_id\":\"4448\",\"birth_city\":null,\"fantasy_data_id\":19309,\"years_exp\":3,\"hashtag\":\"#AnthonyKukwa-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":12562,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Anthony Kukwa\",\"sportradar_id\":\"0d4fd512-e1fa-466e-a984-d2a4389c512b\",\"pandascore_id\":null,\"yahoo_id\":30632,\"last_name\":\"Kukwa\",\"metadata\":null,\"college\":\"Lake Erie College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591571,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"anthonykukwa\",\"birth_date\":\"1992-10-30\",\"espn_id\":2577854},\"423\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"423\",\"birth_city\":null,\"fantasy_data_id\":9049,\"years_exp\":11,\"hashtag\":\"#BradJones-NFL-FA-52\",\"search_first_name\":\"brad\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Brad Jones\",\"sportradar_id\":\"f7201332-06df-4ad1-b7af-3752eeae6d76\",\"pandascore_id\":null,\"yahoo_id\":9482,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"East Lansing (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bradjones\",\"birth_date\":\"1986-04-01\",\"espn_id\":12675},\"2377\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032244\",\"first_name\":\"Jamon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603325142048,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2377\",\"birth_city\":null,\"fantasy_data_id\":16833,\"years_exp\":5,\"hashtag\":\"#JamonBrown-NFL-PHI-66\",\"search_first_name\":\"jamon\",\"rotowire_id\":10277,\"rotoworld_id\":10484,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jamon Brown\",\"sportradar_id\":\"d34ef6d4-6a88-4207-9344-a867d120753f\",\"pandascore_id\":null,\"yahoo_id\":28460,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Fern Creek (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jamonbrown\",\"birth_date\":\"1993-03-15\",\"espn_id\":2576647},\"6072\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1601415946331,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6072\",\"birth_city\":null,\"fantasy_data_id\":20740,\"years_exp\":1,\"hashtag\":\"#BruceAnderson-NFL-IND-35\",\"search_first_name\":\"bruce\",\"rotowire_id\":13598,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Bruce Anderson\",\"sportradar_id\":\"60acd19b-4197-4b04-ab5b-c287ca5a0b56\",\"pandascore_id\":null,\"yahoo_id\":32475,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Newsome (FL)\",\"depth_chart_order\":20,\"stats_id\":888716,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bruceanderson\",\"birth_date\":\"1997-06-20\",\"espn_id\":3930901},\"3399\":{\"position\":\"DB\",\"injury_notes\":\"Kearse will miss 3 games due to violating the league's substance-abuse policy.\",\"birth_country\":null,\"gsis_id\":\"00-0032454\",\"first_name\":\"Jayron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606197350391,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kearse\",\"depth_chart_position\":\"SS\",\"player_id\":\"3399\",\"birth_city\":null,\"fantasy_data_id\":18160,\"years_exp\":4,\"hashtag\":\"#JayronKearse-NFL-DET-42\",\"search_first_name\":\"jayron\",\"rotowire_id\":11088,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1043,\"age\":26,\"full_name\":\"Jayron Kearse\",\"sportradar_id\":\"708e045b-17fd-4f81-87e3-8686b165a278\",\"pandascore_id\":null,\"yahoo_id\":29478,\"last_name\":\"Kearse\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"South Fort Myers (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jayronkearse\",\"birth_date\":\"1994-02-11\",\"espn_id\":3045130},\"4130\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033552\",\"first_name\":\"Brendan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1577917235531,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"langley\",\"depth_chart_position\":null,\"player_id\":\"4130\",\"birth_city\":null,\"fantasy_data_id\":18976,\"years_exp\":3,\"hashtag\":\"#BrendanLangley-NFL-FA-0\",\"search_first_name\":\"brendan\",\"rotowire_id\":12022,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brendan Langley\",\"sportradar_id\":\"dd50e8ab-518b-44a1-9c71-2bc2af74ee7c\",\"pandascore_id\":null,\"yahoo_id\":30214,\"last_name\":\"Langley\",\"metadata\":null,\"college\":\"Lamar\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":734330,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brendanlangley\",\"birth_date\":\"1994-10-16\",\"espn_id\":3043144},\"3961\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marc\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trestman\",\"depth_chart_position\":null,\"player_id\":\"3961\",\"birth_city\":null,\"fantasy_data_id\":18794,\"years_exp\":0,\"hashtag\":\"#MarcTrestman-NFL-FA-0\",\"search_first_name\":\"marc\",\"rotowire_id\":null,\"rotoworld_id\":8340,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marc Trestman\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Trestman\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"marctrestman\",\"birth_date\":null,\"espn_id\":null},\"1228\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trenton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1228\",\"birth_city\":null,\"fantasy_data_id\":14512,\"years_exp\":8,\"hashtag\":\"#TrentonRobinson-NFL-FA-39\",\"search_first_name\":\"trenton\",\"rotowire_id\":8293,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Trenton Robinson\",\"sportradar_id\":\"215fd07e-7e6a-4060-a545-3fe5fb7add4f\",\"pandascore_id\":null,\"yahoo_id\":25890,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Bay City Central (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"trentonrobinson\",\"birth_date\":\"1990-02-16\",\"espn_id\":15049},\"5810\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"5810\",\"birth_city\":null,\"fantasy_data_id\":20707,\"years_exp\":0,\"hashtag\":\"#TreyWalker-NFL-FA-0\",\"search_first_name\":\"trey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Trey Walker\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"treywalker\",\"birth_date\":\"1995-02-01\",\"espn_id\":null},\"2598\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031793\",\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535987767917,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"2598\",\"birth_city\":null,\"fantasy_data_id\":17066,\"years_exp\":5,\"hashtag\":\"#TerrellWatson-NFL-FA-42\",\"search_first_name\":\"terrell\",\"rotowire_id\":10511,\"rotoworld_id\":10675,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Terrell Watson\",\"sportradar_id\":\"ced6a2eb-a067-4865-b9e4-f6b0a925e55f\",\"pandascore_id\":null,\"yahoo_id\":29178,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Azusa Pacific\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":613358,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"terrellwatson\",\"birth_date\":\"1993-08-22\",\"espn_id\":2581598},\"1393\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030126\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1523921101145,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1393\",\"birth_city\":null,\"fantasy_data_id\":14923,\"years_exp\":7,\"hashtag\":\"#TJJohnson-NFL-FA-60\",\"search_first_name\":\"tj\",\"rotowire_id\":9574,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"T.J. Johnson\",\"sportradar_id\":\"dadcbaf3-cd13-43dd-8b7a-9f81db468872\",\"pandascore_id\":null,\"yahoo_id\":26874,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Aynor (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tjjohnson\",\"birth_date\":\"1990-07-17\",\"espn_id\":15915},\"6966\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606176016380,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leake\",\"depth_chart_position\":\"RB\",\"player_id\":\"6966\",\"birth_city\":null,\"fantasy_data_id\":21787,\"years_exp\":0,\"hashtag\":\"#JavonLeake-NFL-WAS-38\",\"search_first_name\":\"javon\",\"rotowire_id\":14361,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1782,\"age\":22,\"full_name\":\"Javon Leake\",\"sportradar_id\":\"241d5e15-f9e6-4bf2-ac36-74dcbc9cc148\",\"pandascore_id\":null,\"yahoo_id\":33037,\"last_name\":\"Leake\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Page (NC)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"javonleake\",\"birth_date\":\"1998-08-01\",\"espn_id\":4241940},\"3494\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fanaika\",\"depth_chart_position\":null,\"player_id\":\"3494\",\"birth_city\":null,\"fantasy_data_id\":18260,\"years_exp\":0,\"hashtag\":\"#JasonFanaika-NFL-FA-0\",\"search_first_name\":\"jason\",\"rotowire_id\":11032,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jason Fanaika\",\"sportradar_id\":\"2714cbcd-d5a3-485c-999a-7346ac94e296\",\"pandascore_id\":null,\"yahoo_id\":29766,\"last_name\":\"Fanaika\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jasonfanaika\",\"birth_date\":\"1992-06-17\",\"espn_id\":2517397},\"5794\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034886\",\"first_name\":\"Simeyon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"5794\",\"birth_city\":null,\"fantasy_data_id\":20693,\"years_exp\":2,\"hashtag\":\"#SimeyonRobinson-NFL-FA-79\",\"search_first_name\":\"simeyon\",\"rotowire_id\":13392,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Simeyon Robinson\",\"sportradar_id\":\"2428023c-797d-49e3-a931-1163f003b490\",\"pandascore_id\":null,\"yahoo_id\":31791,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"simeyonrobinson\",\"birth_date\":null,\"espn_id\":3049337},\"1183\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1525119901846,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nortman\",\"depth_chart_position\":null,\"player_id\":\"1183\",\"birth_city\":null,\"fantasy_data_id\":14341,\"years_exp\":8,\"hashtag\":\"#BradNortman-NFL-FA-3\",\"search_first_name\":\"brad\",\"rotowire_id\":8287,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Brad Nortman\",\"sportradar_id\":\"b6cef90b-f2c7-4a0e-aff4-6b3979afe4e2\",\"pandascore_id\":null,\"yahoo_id\":25917,\"last_name\":\"Nortman\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Brookfield Central (WI)\",\"depth_chart_order\":null,\"stats_id\":463284,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bradnortman\",\"birth_date\":\"1989-09-12\",\"espn_id\":15051},\"4805\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"4805\",\"birth_city\":null,\"fantasy_data_id\":19720,\"years_exp\":2,\"hashtag\":\"#AltonHoward-NFL-FA-17\",\"search_first_name\":\"alton\",\"rotowire_id\":12341,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alton Howard\",\"sportradar_id\":\"a6202dfd-ee93-47ce-9e7d-33ed3f062939\",\"pandascore_id\":null,\"yahoo_id\":30926,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690066,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'8\\\"\",\"search_full_name\":\"altonhoward\",\"birth_date\":\"1993-03-09\",\"espn_id\":3122122},\"4161\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033558\",\"first_name\":\"Howard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554151217834,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"4161\",\"birth_city\":null,\"fantasy_data_id\":19007,\"years_exp\":3,\"hashtag\":\"#HowardWilson-NFL-FA-0\",\"search_first_name\":\"howard\",\"rotowire_id\":12036,\"rotoworld_id\":12353,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Howard Wilson\",\"sportradar_id\":\"d461a676-a2f4-4e26-b851-60af14b00ca7\",\"pandascore_id\":null,\"yahoo_id\":30239,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":831228,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'1\\\"\",\"search_full_name\":\"howardwilson\",\"birth_date\":\"1995-10-30\",\"espn_id\":3126176},\"7399\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bejour\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"7399\",\"birth_city\":null,\"fantasy_data_id\":22384,\"years_exp\":0,\"hashtag\":\"#BejourWilson-NFL-FA-0\",\"search_first_name\":\"bejour\",\"rotowire_id\":15104,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bejour Wilson\",\"sportradar_id\":\"4c426048-a87f-4d83-831d-f97cd843657b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bejourwilson\",\"birth_date\":null,\"espn_id\":null},\"5148\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dewey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1537904103111,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jarvis\",\"depth_chart_position\":null,\"player_id\":\"5148\",\"birth_city\":null,\"fantasy_data_id\":20095,\"years_exp\":2,\"hashtag\":\"#DeweyJarvis-NFL-FA-48\",\"search_first_name\":\"dewey\",\"rotowire_id\":12813,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dewey Jarvis\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jarvis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deweyjarvis\",\"birth_date\":\"1995-04-20\",\"espn_id\":3049469},\"2958\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Takoby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cofield\",\"depth_chart_position\":null,\"player_id\":\"2958\",\"birth_city\":null,\"fantasy_data_id\":17437,\"years_exp\":1,\"hashtag\":\"#TakobyCofield-NFL-FA-69\",\"search_first_name\":\"takoby\",\"rotowire_id\":10813,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Takoby Cofield\",\"sportradar_id\":\"026464dd-7cda-47bd-b082-de3f31d056b0\",\"pandascore_id\":null,\"yahoo_id\":29006,\"last_name\":\"Cofield\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"takobycofield\",\"birth_date\":\"1992-01-22\",\"espn_id\":null},\"499\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026138\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1511205902002,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barth\",\"depth_chart_position\":null,\"player_id\":\"499\",\"birth_city\":null,\"fantasy_data_id\":10092,\"years_exp\":12,\"hashtag\":\"#ConnorBarth-NFL-FA-4\",\"search_first_name\":\"connor\",\"rotowire_id\":5849,\"rotoworld_id\":5048,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Connor Barth\",\"sportradar_id\":\"4869b8db-2e38-4327-af11-cc1e17ef3490\",\"pandascore_id\":null,\"yahoo_id\":9219,\"last_name\":\"Barth\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Hoggard (NC)\",\"depth_chart_order\":null,\"stats_id\":268490,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'11\\\"\",\"search_full_name\":\"connorbarth\",\"birth_date\":\"1986-04-11\",\"espn_id\":11737},\"886\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028063\",\"first_name\":\"Taiwan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606347303797,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RB\",\"player_id\":\"886\",\"birth_city\":null,\"fantasy_data_id\":13063,\"years_exp\":9,\"hashtag\":\"#TaiwanJones-NFL-BUF-25\",\"search_first_name\":\"taiwan\",\"rotowire_id\":7324,\"rotoworld_id\":null,\"active\":true,\"search_rank\":473,\"age\":32,\"full_name\":\"Taiwan Jones\",\"sportradar_id\":\"adadafa1-dc37-486d-8538-7db1e1b5f71e\",\"pandascore_id\":null,\"yahoo_id\":24912,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":\"Deer Valley (CA)\",\"depth_chart_order\":4,\"stats_id\":386116,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"taiwanjones\",\"birth_date\":\"1988-07-26\",\"espn_id\":14167},\"2014\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031022\",\"first_name\":\"Laurent\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1595645456205,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"duvernaytardif\",\"depth_chart_position\":null,\"player_id\":\"2014\",\"birth_city\":null,\"fantasy_data_id\":16293,\"years_exp\":6,\"hashtag\":\"#LaurentDuvernayTardif-NFL-KC-76\",\"search_first_name\":\"laurent\",\"rotowire_id\":9770,\"rotoworld_id\":9605,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Laurent Duvernay-Tardif\",\"sportradar_id\":\"1d334dc2-7fa8-4d4b-8359-b4bfd50b758e\",\"pandascore_id\":null,\"yahoo_id\":27728,\"last_name\":\"Duvernay-Tardif\",\"metadata\":null,\"college\":\"McGill\",\"high_school\":\"Collège Andre-Grasset (CAN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"laurentduvernaytardif\",\"birth_date\":\"1991-02-11\",\"espn_id\":16958},\"7156\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J'Mar\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693359828,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"7156\",\"birth_city\":null,\"fantasy_data_id\":22157,\"years_exp\":0,\"hashtag\":\"#JMarSmith-NFL-FA-0\",\"search_first_name\":\"jmar\",\"rotowire_id\":14845,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"J'Mar Smith\",\"sportradar_id\":\"0c1998f2-7fd2-4191-a05f-1f7f5b5e2ea3\",\"pandascore_id\":null,\"yahoo_id\":33016,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jmarsmith\",\"birth_date\":\"1996-09-24\",\"espn_id\":null},\"4772\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dejaun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"4772\",\"birth_city\":null,\"fantasy_data_id\":19691,\"years_exp\":2,\"hashtag\":\"#DejaunButler-NFL-FA-37\",\"search_first_name\":\"dejaun\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dejaun Butler\",\"sportradar_id\":\"1019870b-6567-4cb0-84ce-58a7417e1acb\",\"pandascore_id\":null,\"yahoo_id\":30909,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dejaunbutler\",\"birth_date\":\"1994-02-02\",\"espn_id\":3933060},\"5726\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034720\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604344528655,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"spillane\",\"depth_chart_position\":\"LILB\",\"player_id\":\"5726\",\"birth_city\":null,\"fantasy_data_id\":20646,\"years_exp\":2,\"hashtag\":\"#RobertSpillane-NFL-PIT-41\",\"search_first_name\":\"robert\",\"rotowire_id\":13306,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1503,\"age\":24,\"full_name\":\"Robert Spillane\",\"sportradar_id\":\"3b59e08c-0c3b-42c9-a4e2-9b79103ea715\",\"pandascore_id\":null,\"yahoo_id\":31708,\"last_name\":\"Spillane\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Western Michigan\",\"high_school\":\"Fenwick (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robertspillane\",\"birth_date\":\"1995-12-14\",\"espn_id\":3129446},\"4494\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alonzo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"4494\",\"birth_city\":null,\"fantasy_data_id\":19364,\"years_exp\":2,\"hashtag\":\"#AlonzoMoore-NFL-FA-83\",\"search_first_name\":\"alonzo\",\"rotowire_id\":12325,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alonzo Moore\",\"sportradar_id\":\"e1cdadae-de46-4829-9450-695dae2d7fbf\",\"pandascore_id\":null,\"yahoo_id\":30685,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651680,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alonzomoore\",\"birth_date\":\"1992-11-10\",\"espn_id\":2974323},\"7254\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Azur\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596408918801,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"kamara\",\"depth_chart_position\":null,\"player_id\":\"7254\",\"birth_city\":null,\"fantasy_data_id\":22016,\"years_exp\":0,\"hashtag\":\"#AzurKamara-NFL-DAL-0\",\"search_first_name\":\"azur\",\"rotowire_id\":14744,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Azur Kamara\",\"sportradar_id\":\"fc833ad5-955b-4129-9280-63d8eda84df2\",\"pandascore_id\":null,\"yahoo_id\":33106,\"last_name\":\"Kamara\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Central (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"azurkamara\",\"birth_date\":\"1996-01-01\",\"espn_id\":null},\"1887\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031380\",\"first_name\":\"Darqueze\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604799310675,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dennard\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1887\",\"birth_city\":null,\"fantasy_data_id\":16107,\"years_exp\":6,\"hashtag\":\"#DarquezeDennard-NFL-ATL-34\",\"search_first_name\":\"darqueze\",\"rotowire_id\":9619,\"rotoworld_id\":9435,\"active\":true,\"search_rank\":780,\"age\":29,\"full_name\":\"Darqueze Dennard\",\"sportradar_id\":\"05b308c7-13f6-4ea7-baed-4314896663cb\",\"pandascore_id\":null,\"yahoo_id\":27552,\"last_name\":\"Dennard\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Twiggs County (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darquezedennard\",\"birth_date\":\"1991-10-10\",\"espn_id\":16718},\"4424\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033390\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596582950348,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"killings\",\"depth_chart_position\":null,\"player_id\":\"4424\",\"birth_city\":null,\"fantasy_data_id\":19284,\"years_exp\":3,\"hashtag\":\"#DJKillings-NFL-LV-34\",\"search_first_name\":\"dj\",\"rotowire_id\":12421,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1247,\"age\":25,\"full_name\":\"D.J. Killings\",\"sportradar_id\":\"3390c94a-f1f2-4be0-9787-5cc9fd8c64f7\",\"pandascore_id\":null,\"yahoo_id\":30664,\"last_name\":\"Killings\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"First Coast (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"djkillings\",\"birth_date\":\"1995-08-09\",\"espn_id\":3054031},\"675\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antrel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rolle\",\"depth_chart_position\":null,\"player_id\":\"675\",\"birth_city\":null,\"fantasy_data_id\":11916,\"years_exp\":15,\"hashtag\":\"#AntrelRolle-NFL-FA-26\",\"search_first_name\":\"antrel\",\"rotowire_id\":4342,\"rotoworld_id\":3149,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Antrel Rolle\",\"sportradar_id\":\"84d8e40d-8123-4c0e-a3c1-3d86013d48c9\",\"pandascore_id\":null,\"yahoo_id\":7184,\"last_name\":\"Rolle\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"South Dade (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"antrelrolle\",\"birth_date\":\"1982-12-16\",\"espn_id\":8423},\"475\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gregory\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toler\",\"depth_chart_position\":null,\"player_id\":\"475\",\"birth_city\":null,\"fantasy_data_id\":9782,\"years_exp\":11,\"hashtag\":\"#GregoryToler-NFL-FA-20\",\"search_first_name\":\"gregory\",\"rotowire_id\":6177,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Gregory Toler\",\"sportradar_id\":\"198fedeb-2269-4978-aafb-ca38f74fc730\",\"pandascore_id\":null,\"yahoo_id\":9395,\"last_name\":\"Toler\",\"metadata\":null,\"college\":\"St. Paul's, Va.\",\"high_school\":\"Northwestern (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gregorytoler\",\"birth_date\":\"1985-01-02\",\"espn_id\":12738},\"6628\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035548\",\"first_name\":\"Ventell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603232139834,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6628\",\"birth_city\":null,\"fantasy_data_id\":21548,\"years_exp\":1,\"hashtag\":\"#VentellBryant-NFL-DAL-83\",\"search_first_name\":\"ventell\",\"rotowire_id\":14236,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ventell Bryant\",\"sportradar_id\":\"85325fdc-da47-4992-af60-a20d0b1ec980\",\"pandascore_id\":null,\"yahoo_id\":32556,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Jefferson (FL)\",\"depth_chart_order\":2,\"stats_id\":838301,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ventellbryant\",\"birth_date\":\"1996-08-24\",\"espn_id\":3138760},\"5004\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034378\",\"first_name\":\"Ito\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606262154703,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"RB\",\"player_id\":\"5004\",\"birth_city\":null,\"fantasy_data_id\":19924,\"years_exp\":2,\"hashtag\":\"#ItoSmith-NFL-ATL-25\",\"search_first_name\":\"ito\",\"rotowire_id\":12835,\"rotoworld_id\":13252,\"active\":true,\"search_rank\":215,\"age\":25,\"full_name\":\"Ito Smith\",\"sportradar_id\":\"d033bdd4-2a32-4b08-a9a7-8365933816c3\",\"pandascore_id\":null,\"yahoo_id\":31096,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"McGill-Toolen (AL)\",\"depth_chart_order\":2,\"stats_id\":835082,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"itosmith\",\"birth_date\":\"1995-09-11\",\"espn_id\":3123969},\"5345\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034424\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605566720311,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"MLB\",\"player_id\":\"5345\",\"birth_city\":null,\"fantasy_data_id\":20023,\"years_exp\":2,\"hashtag\":\"#MatthewAdams-NFL-IND-49\",\"search_first_name\":\"matthew\",\"rotowire_id\":13000,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1395,\"age\":24,\"full_name\":\"Matthew Adams\",\"sportradar_id\":\"73040fb2-2b26-444b-956e-df0927985bb2\",\"pandascore_id\":null,\"yahoo_id\":31191,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Hightower (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'0\\\"\",\"search_full_name\":\"matthewadams\",\"birth_date\":\"1995-12-12\",\"espn_id\":3126179},\"4416\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033382\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604367939644,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carr\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4416\",\"birth_city\":null,\"fantasy_data_id\":19276,\"years_exp\":3,\"hashtag\":\"#AustinCarr-NFL-NO-80\",\"search_first_name\":\"austin\",\"rotowire_id\":12228,\"rotoworld_id\":12332,\"active\":true,\"search_rank\":1246,\"age\":26,\"full_name\":\"Austin Carr\",\"sportradar_id\":\"4316bbf5-0d02-4392-9fbc-33be86f87446\",\"pandascore_id\":null,\"yahoo_id\":30656,\"last_name\":\"Carr\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Benicia (CA)\",\"depth_chart_order\":3,\"stats_id\":691828,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"austincarr\",\"birth_date\":\"1993-12-25\",\"espn_id\":2974339},\"3137\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"modkins\",\"depth_chart_position\":null,\"player_id\":\"3137\",\"birth_city\":null,\"fantasy_data_id\":17891,\"years_exp\":null,\"hashtag\":\"#CurtisModkins-NFL-FA-0\",\"search_first_name\":\"curtis\",\"rotowire_id\":null,\"rotoworld_id\":11247,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Curtis Modkins\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Modkins\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"curtismodkins\",\"birth_date\":null,\"espn_id\":null},\"7341\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"banks\",\"depth_chart_position\":null,\"player_id\":\"7341\",\"birth_city\":null,\"fantasy_data_id\":22329,\"years_exp\":0,\"hashtag\":\"#EricBanks-NFL-LAR-98\",\"search_first_name\":\"eric\",\"rotowire_id\":15015,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1981,\"age\":22,\"full_name\":\"Eric Banks\",\"sportradar_id\":\"cddaa0c5-2d55-47cf-93aa-cfa344604710\",\"pandascore_id\":null,\"yahoo_id\":33247,\"last_name\":\"Banks\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":\"East (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ericbanks\",\"birth_date\":\"1998-01-30\",\"espn_id\":4040703},\"4780\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Folarin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orimolade\",\"depth_chart_position\":null,\"player_id\":\"4780\",\"birth_city\":null,\"fantasy_data_id\":19166,\"years_exp\":2,\"hashtag\":\"#FolarinOrimolade-NFL-FA-56\",\"search_first_name\":\"folarin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Folarin Orimolade\",\"sportradar_id\":\"33eed814-16d2-4f47-8a76-a911028324d2\",\"pandascore_id\":null,\"yahoo_id\":30374,\"last_name\":\"Orimolade\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"5'11\\\"\",\"search_full_name\":\"folarinorimolade\",\"birth_date\":\"1995-11-23\",\"espn_id\":3049645},\"4386\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033362\",\"first_name\":\"Lenzy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1595714103945,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pipkins\",\"depth_chart_position\":null,\"player_id\":\"4386\",\"birth_city\":null,\"fantasy_data_id\":19243,\"years_exp\":3,\"hashtag\":\"#LenzyPipkins-NFL-FA-0\",\"search_first_name\":\"lenzy\",\"rotowire_id\":12404,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lenzy Pipkins\",\"sportradar_id\":\"db7c756b-a340-47fa-bdd5-5556fac68d20\",\"pandascore_id\":null,\"yahoo_id\":30619,\"last_name\":\"Pipkins\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652398,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lenzypipkins\",\"birth_date\":\"1993-11-07\",\"espn_id\":2972562},\"2090\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ted\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bolser\",\"depth_chart_position\":null,\"player_id\":\"2090\",\"birth_city\":null,\"fantasy_data_id\":16406,\"years_exp\":1,\"hashtag\":\"#TedBolser-NFL-FA-83\",\"search_first_name\":\"ted\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ted Bolser\",\"sportradar_id\":\"0a8f22b8-f01c-4f8d-82f5-99ebed048cd0\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bolser\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":508891,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tedbolser\",\"birth_date\":\"1990-10-22\",\"espn_id\":16827},\"15\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"willis\",\"depth_chart_position\":null,\"player_id\":\"15\",\"birth_city\":null,\"fantasy_data_id\":511,\"years_exp\":8,\"hashtag\":\"#PatrickWillis-NFL-FA-52\",\"search_first_name\":\"patrick\",\"rotowire_id\":null,\"rotoworld_id\":4171,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Patrick Willis\",\"sportradar_id\":\"f27783fb-52a4-47a1-a096-20e67a983b4c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Willis\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"patrickwillis\",\"birth_date\":\"1985-01-25\",\"espn_id\":10455},\"7007\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597009551457,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"higby\",\"depth_chart_position\":null,\"player_id\":\"7007\",\"birth_city\":null,\"fantasy_data_id\":22101,\"years_exp\":0,\"hashtag\":\"#TylerHigby-NFL-FA-0\",\"search_first_name\":\"tyler\",\"rotowire_id\":15115,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tyler Higby\",\"sportradar_id\":\"0cbc61ab-f2f9-4f0f-a368-b33fa075d75e\",\"pandascore_id\":null,\"yahoo_id\":33032,\"last_name\":\"Higby\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tylerhigby\",\"birth_date\":\"1997-01-26\",\"espn_id\":null},\"6977\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598922930100,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"strnad\",\"depth_chart_position\":null,\"player_id\":\"6977\",\"birth_city\":null,\"fantasy_data_id\":22000,\"years_exp\":0,\"hashtag\":\"#JustinStrnad-NFL-DEN-40\",\"search_first_name\":\"justin\",\"rotowire_id\":14757,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Justin Strnad\",\"sportradar_id\":\"f8f0760e-8f04-45bf-9371-fa33c945bc1c\",\"pandascore_id\":null,\"yahoo_id\":32848,\"last_name\":\"Strnad\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wake Forest\",\"high_school\":\"East Lake (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinstrnad\",\"birth_date\":\"1996-08-21\",\"espn_id\":3919548},\"7284\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"7284\",\"birth_city\":null,\"fantasy_data_id\":22280,\"years_exp\":0,\"hashtag\":\"#TravisReed-NFL-FA-0\",\"search_first_name\":\"travis\",\"rotowire_id\":15023,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1965,\"age\":23,\"full_name\":\"Travis Reed\",\"sportradar_id\":\"a2cfbc2a-4101-4683-bf58-5120e8e39f66\",\"pandascore_id\":null,\"yahoo_id\":33217,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"travisreed\",\"birth_date\":\"1997-02-14\",\"espn_id\":4363929},\"6410\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034938\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566489019575,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"6410\",\"birth_city\":null,\"fantasy_data_id\":21371,\"years_exp\":1,\"hashtag\":\"#BrianWallace-NFL-FA-79\",\"search_first_name\":\"brian\",\"rotowire_id\":13719,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brian Wallace\",\"sportradar_id\":\"af51a581-554a-418f-a3b1-5e24da5dd190\",\"pandascore_id\":null,\"yahoo_id\":32196,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brianwallace\",\"birth_date\":\"1996-02-03\",\"espn_id\":3128699},\"1413\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030460\",\"first_name\":\"Markus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536771604267,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wheaton\",\"depth_chart_position\":null,\"player_id\":\"1413\",\"birth_city\":null,\"fantasy_data_id\":14973,\"years_exp\":7,\"hashtag\":\"#MarkusWheaton-NFL-FA-80\",\"search_first_name\":\"markus\",\"rotowire_id\":8796,\"rotoworld_id\":8406,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Markus Wheaton\",\"sportradar_id\":\"f9036897-99d5-4d9a-8965-0c7e0f9e43bd\",\"pandascore_id\":null,\"yahoo_id\":26702,\"last_name\":\"Wheaton\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":null,\"stats_id\":498191,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"markuswheaton\",\"birth_date\":\"1991-02-07\",\"espn_id\":15873},\"5002\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034746\",\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606358704298,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hurst\",\"depth_chart_position\":\"NT\",\"player_id\":\"5002\",\"birth_city\":null,\"fantasy_data_id\":19921,\"years_exp\":2,\"hashtag\":\"#MauriceHurst-NFL-LV-73\",\"search_first_name\":\"maurice\",\"rotowire_id\":12878,\"rotoworld_id\":13097,\"active\":true,\"search_rank\":1341,\"age\":25,\"full_name\":\"Maurice Hurst\",\"sportradar_id\":\"81b159d5-86ac-4130-a87d-dbd5e0b211b3\",\"pandascore_id\":null,\"yahoo_id\":31110,\"last_name\":\"Hurst\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Xaverian Brothers (MA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mauricehurst\",\"birth_date\":\"1995-05-09\",\"espn_id\":3045220},\"382\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eugene\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"monroe\",\"depth_chart_position\":null,\"player_id\":\"382\",\"birth_city\":null,\"fantasy_data_id\":8655,\"years_exp\":11,\"hashtag\":\"#EugeneMonroe-NFL-FA-60\",\"search_first_name\":\"eugene\",\"rotowire_id\":6049,\"rotoworld_id\":5198,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Eugene Monroe\",\"sportradar_id\":\"14af64f4-90a6-4f56-8624-6a313966cc31\",\"pandascore_id\":null,\"yahoo_id\":9272,\"last_name\":\"Monroe\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Plainfield (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"eugenemonroe\",\"birth_date\":\"1987-04-18\",\"espn_id\":12620},\"5706\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremi\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532394001494,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"5706\",\"birth_city\":null,\"fantasy_data_id\":20619,\"years_exp\":0,\"hashtag\":\"#JeremiHall-NFL-CHI-63\",\"search_first_name\":\"jeremi\",\"rotowire_id\":13328,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jeremi Hall\",\"sportradar_id\":\"65f6cfb9-dcfd-4874-b409-0b0be99654ea\",\"pandascore_id\":null,\"yahoo_id\":31698,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeremihall\",\"birth_date\":null,\"espn_id\":3051367},\"4079\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033524\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606076419396,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4079\",\"birth_city\":null,\"fantasy_data_id\":18925,\"years_exp\":3,\"hashtag\":\"#KevinKing-NFL-GB-20\",\"search_first_name\":\"kevin\",\"rotowire_id\":12020,\"rotoworld_id\":12235,\"active\":true,\"search_rank\":1131,\"age\":25,\"full_name\":\"Kevin King\",\"sportradar_id\":\"ae0498b4-0ccb-4b11-9449-f26c621d7c79\",\"pandascore_id\":null,\"yahoo_id\":30146,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Bishop O'Dowd (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kevinking\",\"birth_date\":\"1995-05-05\",\"espn_id\":3052170},\"6570\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035336\",\"first_name\":\"Deion\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"calhoun\",\"depth_chart_position\":null,\"player_id\":\"6570\",\"birth_city\":null,\"fantasy_data_id\":21266,\"years_exp\":1,\"hashtag\":\"#DeionCalhoun-NFL-CIN-63\",\"search_first_name\":\"deion\",\"rotowire_id\":13845,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Deion Calhoun\",\"sportradar_id\":\"8b7ee20f-238e-4b6f-b43d-4f9624bf2534\",\"pandascore_id\":null,\"yahoo_id\":32432,\"last_name\":\"Calhoun\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Restoration Academy (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"deioncalhoun\",\"birth_date\":\"1996-02-20\",\"espn_id\":3115482},\"4263\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033295\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1603915828686,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcguire\",\"depth_chart_position\":\"RB\",\"player_id\":\"4263\",\"birth_city\":null,\"fantasy_data_id\":19109,\"years_exp\":3,\"hashtag\":\"#ElijahMcGuire-NFL-DAL-30\",\"search_first_name\":\"elijah\",\"rotowire_id\":11766,\"rotoworld_id\":12301,\"active\":true,\"search_rank\":1222,\"age\":26,\"full_name\":\"Elijah McGuire\",\"sportradar_id\":\"13ade86a-20c7-48fe-9d18-b3bfc135f5e9\",\"pandascore_id\":null,\"yahoo_id\":30301,\"last_name\":\"McGuire\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Vandebilt Catholic (LA)\",\"depth_chart_order\":2,\"stats_id\":736984,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'10\\\"\",\"search_full_name\":\"elijahmcguire\",\"birth_date\":\"1994-06-01\",\"espn_id\":3042494},\"1801\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pratt\",\"depth_chart_position\":null,\"player_id\":\"1801\",\"birth_city\":null,\"fantasy_data_id\":15976,\"years_exp\":1,\"hashtag\":\"#QuronPratt-NFL-FA-10\",\"search_first_name\":\"quron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Quron Pratt\",\"sportradar_id\":\"507a4c8d-5321-4cf8-bf77-922c53f5a53e\",\"pandascore_id\":null,\"yahoo_id\":27798,\"last_name\":\"Pratt\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"quronpratt\",\"birth_date\":\"1991-04-25\",\"espn_id\":17029},\"4647\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033720\",\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605539117682,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"TE\",\"player_id\":\"4647\",\"birth_city\":null,\"fantasy_data_id\":19542,\"years_exp\":3,\"hashtag\":\"#ColinThompson-NFL-CAR-86\",\"search_first_name\":\"colin\",\"rotowire_id\":12375,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1274,\"age\":26,\"full_name\":\"Colin Thompson\",\"sportradar_id\":\"1d55ba37-c09e-4945-b7ae-8d84e2357283\",\"pandascore_id\":null,\"yahoo_id\":30740,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Archbishop Wood (PA)\",\"depth_chart_order\":3,\"stats_id\":694629,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"colinthompson\",\"birth_date\":\"1993-12-15\",\"espn_id\":2980120},\"4178\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033561\",\"first_name\":\"Donnel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567352736808,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pumphrey\",\"depth_chart_position\":null,\"player_id\":\"4178\",\"birth_city\":null,\"fantasy_data_id\":19024,\"years_exp\":3,\"hashtag\":\"#DonnelPumphrey-NFL-FA-35\",\"search_first_name\":\"donnel\",\"rotowire_id\":11769,\"rotoworld_id\":12358,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Donnel Pumphrey\",\"sportradar_id\":\"d9aecfba-a416-4d99-b26a-dfe78f876b73\",\"pandascore_id\":null,\"yahoo_id\":30245,\"last_name\":\"Pumphrey\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746291,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"169\",\"height\":\"5'8\\\"\",\"search_full_name\":\"donnelpumphrey\",\"birth_date\":\"1994-12-06\",\"espn_id\":3047519},\"6582\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035554\",\"first_name\":\"Jocquez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kalili\",\"depth_chart_position\":null,\"player_id\":\"6582\",\"birth_city\":null,\"fantasy_data_id\":21553,\"years_exp\":1,\"hashtag\":\"#JocquezKalili-NFL-FA-47\",\"search_first_name\":\"jocquez\",\"rotowire_id\":14245,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jocquez Kalili\",\"sportradar_id\":\"95058b9a-e9a3-4021-a622-5bce275e3433\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kalili\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jocquezkalili\",\"birth_date\":\"1996-02-29\",\"espn_id\":3134000},\"3859\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033035\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1539882645710,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":\"RB\",\"player_id\":\"3859\",\"birth_city\":null,\"fantasy_data_id\":18680,\"years_exp\":4,\"hashtag\":\"#JalenSimmons-NFL-FA-34\",\"search_first_name\":\"jalen\",\"rotowire_id\":11340,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jalen Simmons\",\"sportradar_id\":\"c79a901b-cced-42ee-be24-dc0059c24a74\",\"pandascore_id\":null,\"yahoo_id\":29993,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":608743,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'8\\\"\",\"search_full_name\":\"jalensimmons\",\"birth_date\":\"1992-04-01\",\"espn_id\":2580343},\"2371\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032263\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1555368937591,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"poutasi\",\"depth_chart_position\":null,\"player_id\":\"2371\",\"birth_city\":null,\"fantasy_data_id\":16827,\"years_exp\":5,\"hashtag\":\"#JeremiahPoutasi-NFL-FA-74\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":10291,\"rotoworld_id\":10464,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeremiah Poutasi\",\"sportradar_id\":\"9dd63f16-866c-443a-856b-671913195f3d\",\"pandascore_id\":null,\"yahoo_id\":28454,\"last_name\":\"Poutasi\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Deseret Pines (NV)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeremiahpoutasi\",\"birth_date\":\"1994-08-07\",\"espn_id\":2971660},\"4247\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534523402562,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4247\",\"birth_city\":null,\"fantasy_data_id\":19093,\"years_exp\":3,\"hashtag\":\"#MarquezWilliams-NFL-FA-42\",\"search_first_name\":\"marquez\",\"rotowire_id\":12220,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marquez Williams\",\"sportradar_id\":\"8299eb95-6580-4bdc-989f-4a54d833dac6\",\"pandascore_id\":null,\"yahoo_id\":30353,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":790715,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marquezwilliams\",\"birth_date\":\"1994-07-16\",\"espn_id\":2985288},\"277\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fells\",\"depth_chart_position\":null,\"player_id\":\"277\",\"birth_city\":null,\"fantasy_data_id\":7007,\"years_exp\":14,\"hashtag\":\"#DanielFells-NFL-FA-85\",\"search_first_name\":\"daniel\",\"rotowire_id\":5147,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Daniel Fells\",\"sportradar_id\":\"091fc942-f6a2-4ca7-8f63-696ffc40266e\",\"pandascore_id\":null,\"yahoo_id\":8028,\"last_name\":\"Fells\",\"metadata\":null,\"college\":\"California-Davis\",\"high_school\":\"Fullerton Union (CA)\",\"depth_chart_order\":null,\"stats_id\":165870,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danielfells\",\"birth_date\":\"1983-09-23\",\"espn_id\":10287},\"4020\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1546907719681,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lafleur\",\"depth_chart_position\":null,\"player_id\":\"4020\",\"birth_city\":null,\"fantasy_data_id\":18860,\"years_exp\":0,\"hashtag\":\"#MattLafleur-NFL-FA-0\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":12165,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Matt Lafleur\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lafleur\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mattlafleur\",\"birth_date\":null,\"espn_id\":null},\"7082\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605060301222,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"keene\",\"depth_chart_position\":\"TE\",\"player_id\":\"7082\",\"birth_city\":null,\"fantasy_data_id\":21808,\"years_exp\":0,\"hashtag\":\"#DaltonKeene-NFL-NE-44\",\"search_first_name\":\"dalton\",\"rotowire_id\":14559,\"rotoworld_id\":null,\"active\":true,\"search_rank\":361,\"age\":21,\"full_name\":\"Dalton Keene\",\"sportradar_id\":\"4da5e05d-fc5c-4e87-aa38-d9cde42dd476\",\"pandascore_id\":null,\"yahoo_id\":32771,\"last_name\":\"Keene\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Virginia Tech\",\"high_school\":\"Chatfield (CO)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'4\\\"\",\"search_full_name\":\"daltonkeene\",\"birth_date\":\"1999-04-14\",\"espn_id\":4240861},\"3912\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033140\",\"first_name\":\"Darnell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1532640602001,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sankey\",\"depth_chart_position\":null,\"player_id\":\"3912\",\"birth_city\":null,\"fantasy_data_id\":18738,\"years_exp\":4,\"hashtag\":\"#DarnellSankey-NFL-FA-44\",\"search_first_name\":\"darnell\",\"rotowire_id\":11613,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darnell Sankey\",\"sportradar_id\":\"935189f4-3934-4206-a64e-c5b92f3d9c43\",\"pandascore_id\":null,\"yahoo_id\":30039,\"last_name\":\"Sankey\",\"metadata\":null,\"college\":\"Sacramento State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"darnellsankey\",\"birth_date\":\"1994-10-11\",\"espn_id\":2986701},\"2091\":{\"position\":\"CB\",\"injury_notes\":\"Breeland will miss 4 games due to violation of the substance abuse policy.\",\"birth_country\":null,\"gsis_id\":\" 00-0031052\",\"first_name\":\"Bashaud\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602013806822,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"breeland\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2091\",\"birth_city\":null,\"fantasy_data_id\":16407,\"years_exp\":6,\"hashtag\":\"#BashaudBreeland-NFL-KC-21\",\"search_first_name\":\"bashaud\",\"rotowire_id\":9648,\"rotoworld_id\":9585,\"active\":true,\"search_rank\":818,\"age\":28,\"full_name\":\"Bashaud Breeland\",\"sportradar_id\":\"ba905b34-8412-4553-9055-3460368cc608\",\"pandascore_id\":null,\"yahoo_id\":27630,\"last_name\":\"Breeland\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Allendale-Fairfax (SC)\",\"depth_chart_order\":1,\"stats_id\":560235,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bashaudbreeland\",\"birth_date\":\"1992-01-30\",\"espn_id\":16890},\"3026\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hartline\",\"depth_chart_position\":null,\"player_id\":\"3026\",\"birth_city\":null,\"fantasy_data_id\":17701,\"years_exp\":null,\"hashtag\":\"#MikeHartline-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Hartline\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hartline\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikehartline\",\"birth_date\":null,\"espn_id\":null},\"1316\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Emil\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"igwenagu\",\"depth_chart_position\":null,\"player_id\":\"1316\",\"birth_city\":null,\"fantasy_data_id\":14811,\"years_exp\":2,\"hashtag\":\"#EmilIgwenagu-NFL-FA-44\",\"search_first_name\":\"emil\",\"rotowire_id\":8601,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Emil Igwenagu\",\"sportradar_id\":\"f09abd01-9f5a-4f2c-ae39-55c2e613b114\",\"pandascore_id\":null,\"yahoo_id\":26002,\"last_name\":\"Igwenagu\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":401198,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"emiligwenagu\",\"birth_date\":\"1989-03-27\",\"espn_id\":15600},\"6854\":{\"position\":\"DE\",\"injury_notes\":\"Weaver is expected to miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1598572246655,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"weaver\",\"depth_chart_position\":null,\"player_id\":\"6854\",\"birth_city\":null,\"fantasy_data_id\":21874,\"years_exp\":0,\"hashtag\":\"#CurtisWeaver-NFL-CLE-61\",\"search_first_name\":\"curtis\",\"rotowire_id\":14409,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Curtis Weaver\",\"sportradar_id\":\"5f313f6e-4a5b-495b-8442-176c145f68c4\",\"pandascore_id\":null,\"yahoo_id\":32834,\"last_name\":\"Weaver\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"St. Anthony (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"curtisweaver\",\"birth_date\":\"1998-08-03\",\"espn_id\":4048257},\"3192\":{\"position\":\"CB\",\"injury_notes\":\"Burns will miss the 2020 season due to the injury sustained in practice.\",\"birth_country\":null,\"gsis_id\":\"00-0033103\",\"first_name\":\"Artie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597966534439,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"burns\",\"depth_chart_position\":null,\"player_id\":\"3192\",\"birth_city\":null,\"fantasy_data_id\":17953,\"years_exp\":4,\"hashtag\":\"#ArtieBurns-NFL-CHI-25\",\"search_first_name\":\"artie\",\"rotowire_id\":10928,\"rotoworld_id\":11377,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Artie Burns\",\"sportradar_id\":\"f40995fc-bd95-41f1-b9ef-4ab938c3aafa\",\"pandascore_id\":null,\"yahoo_id\":29259,\"last_name\":\"Burns\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Northwestern (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"artieburns\",\"birth_date\":\"1995-05-01\",\"espn_id\":3051921},\"4966\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034847\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597089659033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcglinchey\",\"depth_chart_position\":\"RT\",\"player_id\":\"4966\",\"birth_city\":null,\"fantasy_data_id\":19833,\"years_exp\":2,\"hashtag\":\"#MikeMcGlinchey-NFL-SF-69\",\"search_first_name\":\"mike\",\"rotowire_id\":12882,\"rotoworld_id\":13107,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mike McGlinchey\",\"sportradar_id\":\"c2b21a35-81fc-465f-9476-6e5cda608288\",\"pandascore_id\":null,\"yahoo_id\":30979,\"last_name\":\"McGlinchey\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"William Penn Charter (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'8\\\"\",\"search_full_name\":\"mikemcglinchey\",\"birth_date\":\"1995-01-12\",\"espn_id\":3052885},\"6085\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035497\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1564586415433,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allison\",\"depth_chart_position\":null,\"player_id\":\"6085\",\"birth_city\":null,\"fantasy_data_id\":20739,\"years_exp\":1,\"hashtag\":\"#JeffAllison-NFL-FA-49\",\"search_first_name\":\"jeff\",\"rotowire_id\":13838,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jeff Allison\",\"sportradar_id\":\"c5dfe8ed-dba1-46f5-821d-cb88ee7ab664\",\"pandascore_id\":null,\"yahoo_id\":32520,\"last_name\":\"Allison\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeffallison\",\"birth_date\":\"1997-03-20\",\"espn_id\":4040893},\"528\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027720\",\"first_name\":\"Geno\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605829214063,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"atkins\",\"depth_chart_position\":\"RDT\",\"player_id\":\"528\",\"birth_city\":null,\"fantasy_data_id\":11021,\"years_exp\":10,\"hashtag\":\"#GenoAtkins-NFL-CIN-97\",\"search_first_name\":\"geno\",\"rotowire_id\":6589,\"rotoworld_id\":null,\"active\":true,\"search_rank\":599,\"age\":32,\"full_name\":\"Geno Atkins\",\"sportradar_id\":\"2beaf8a8-ccf1-4500-a941-33ffc8141d60\",\"pandascore_id\":null,\"yahoo_id\":24095,\"last_name\":\"Atkins\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'1\\\"\",\"search_full_name\":\"genoatkins\",\"birth_date\":\"1988-03-28\",\"espn_id\":13311},\"29\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Letroy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"guion\",\"depth_chart_position\":null,\"player_id\":\"29\",\"birth_city\":null,\"fantasy_data_id\":804,\"years_exp\":12,\"hashtag\":\"#LetroyGuion-NFL-FA-98\",\"search_first_name\":\"letroy\",\"rotowire_id\":5794,\"rotoworld_id\":4903,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Letroy Guion\",\"sportradar_id\":\"2fd4116c-52de-41f5-9f30-16614eb424c4\",\"pandascore_id\":null,\"yahoo_id\":8929,\"last_name\":\"Guion\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Bradford (FL)\",\"depth_chart_order\":null,\"stats_id\":296455,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'4\\\"\",\"search_full_name\":\"letroyguion\",\"birth_date\":\"1987-06-21\",\"espn_id\":11386},\"2366\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032243\",\"first_name\":\"Ali\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606072218603,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marpet\",\"depth_chart_position\":\"LG\",\"player_id\":\"2366\",\"birth_city\":null,\"fantasy_data_id\":16822,\"years_exp\":5,\"hashtag\":\"#AliMarpet-NFL-TB-74\",\"search_first_name\":\"ali\",\"rotowire_id\":10272,\"rotoworld_id\":10461,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ali Marpet\",\"sportradar_id\":\"538a03f2-ae79-45e0-bb22-01b9a8517e77\",\"pandascore_id\":null,\"yahoo_id\":28449,\"last_name\":\"Marpet\",\"metadata\":null,\"college\":\"Hobart\",\"high_school\":\"Hastings (NY)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alimarpet\",\"birth_date\":\"1993-04-17\",\"espn_id\":3165702},\"5505\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034154\",\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601687440336,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tuiotimariner\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5505\",\"birth_city\":null,\"fantasy_data_id\":20233,\"years_exp\":2,\"hashtag\":\"#JacobTuiotiMariner-NFL-ATL-91\",\"search_first_name\":\"jacob\",\"rotowire_id\":13087,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1438,\"age\":24,\"full_name\":\"Jacob Tuioti-Mariner\",\"sportradar_id\":\"e47c71c1-2e10-42d0-b5f8-5651909a0ff4\",\"pandascore_id\":null,\"yahoo_id\":31352,\"last_name\":\"Tuioti-Mariner\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"St. John Bosco (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jacobtuiotimariner\",\"birth_date\":\"1996-07-25\",\"espn_id\":3134315},\"4689\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033819\",\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602122729922,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"4689\",\"birth_city\":null,\"fantasy_data_id\":19591,\"years_exp\":3,\"hashtag\":\"#JamalCarter-NFL-ATL-35\",\"search_first_name\":\"jamal\",\"rotowire_id\":11987,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1281,\"age\":26,\"full_name\":\"Jamal Carter\",\"sportradar_id\":\"1fc0af83-3c6e-4f4d-aadf-233e501c7241\",\"pandascore_id\":null,\"yahoo_id\":30848,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Southridge (FL)\",\"depth_chart_order\":null,\"stats_id\":739797,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamalcarter\",\"birth_date\":\"1994-04-12\",\"espn_id\":3051925},\"6648\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035477\",\"first_name\":\"Brock\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ruble\",\"depth_chart_position\":null,\"player_id\":\"6648\",\"birth_city\":null,\"fantasy_data_id\":21539,\"years_exp\":1,\"hashtag\":\"#BrockRuble-NFL-FA-72\",\"search_first_name\":\"brock\",\"rotowire_id\":14291,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brock Ruble\",\"sportradar_id\":\"89fc014a-7d41-40c9-90d1-1459286813e2\",\"pandascore_id\":null,\"yahoo_id\":32485,\"last_name\":\"Ruble\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'8\\\"\",\"search_full_name\":\"brockruble\",\"birth_date\":\"1996-01-07\",\"espn_id\":3122934},\"6843\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Albert\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605047161189,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"okwuegbunam\",\"depth_chart_position\":\"TE\",\"player_id\":\"6843\",\"birth_city\":null,\"fantasy_data_id\":21794,\"years_exp\":0,\"hashtag\":\"#AlbertOkwuegbunam-NFL-DEN-85\",\"search_first_name\":\"albert\",\"rotowire_id\":14369,\"rotoworld_id\":null,\"active\":true,\"search_rank\":486,\"age\":22,\"full_name\":\"Albert Okwuegbunam\",\"sportradar_id\":\"617aee8a-70be-4bdf-9a71-2e2b74e647e6\",\"pandascore_id\":null,\"yahoo_id\":32788,\"last_name\":\"Okwuegbunam\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Missouri\",\"high_school\":\"Sacred Heart Griffin (IL)\",\"depth_chart_order\":8,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"albertokwuegbunam\",\"birth_date\":\"1998-04-25\",\"espn_id\":4035115},\"2759\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perry\",\"depth_chart_position\":null,\"player_id\":\"2759\",\"birth_city\":null,\"fantasy_data_id\":17227,\"years_exp\":0,\"hashtag\":\"#NickPerry-NFL-FA-28\",\"search_first_name\":\"nick\",\"rotowire_id\":10624,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nick Perry\",\"sportradar_id\":\"b9b2bacf-4a40-4685-87a8-a16383ffe110\",\"pandascore_id\":null,\"yahoo_id\":28955,\"last_name\":\"Perry\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickperry\",\"birth_date\":\"1991-12-07\",\"espn_id\":2515955},\"6462\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035057\",\"first_name\":\"Ellis\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":\"TE\",\"player_id\":\"6462\",\"birth_city\":null,\"fantasy_data_id\":21427,\"years_exp\":1,\"hashtag\":\"#EllisRichardson-NFL-FA-45\",\"search_first_name\":\"ellis\",\"rotowire_id\":14134,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ellis Richardson\",\"sportradar_id\":\"efd6f3c3-b752-4bc2-a4f2-b776c15c3ec0\",\"pandascore_id\":null,\"yahoo_id\":32262,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":887183,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ellisrichardson\",\"birth_date\":\"1995-02-12\",\"espn_id\":3926590},\"365\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026901\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1547411185002,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"365\",\"birth_city\":null,\"fantasy_data_id\":8529,\"years_exp\":11,\"hashtag\":\"#MikeWallace-NFL-FA-14\",\"search_first_name\":\"mike\",\"rotowire_id\":6110,\"rotoworld_id\":5329,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Mike Wallace\",\"sportradar_id\":\"b37b5be9-4771-4368-988f-fb936f4fc0ad\",\"pandascore_id\":null,\"yahoo_id\":9348,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"O. Perry Walker (LA)\",\"depth_chart_order\":null,\"stats_id\":339270,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mikewallace\",\"birth_date\":\"1986-08-01\",\"espn_id\":12601},\"17\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023853\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606083335895,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"prater\",\"depth_chart_position\":\"K\",\"player_id\":\"17\",\"birth_city\":null,\"fantasy_data_id\":549,\"years_exp\":14,\"hashtag\":\"#MattPrater-NFL-DET-5\",\"search_first_name\":\"matt\",\"rotowire_id\":5051,\"rotoworld_id\":4502,\"active\":true,\"search_rank\":170,\"age\":36,\"full_name\":\"Matt Prater\",\"sportradar_id\":\"67f5e782-f91c-4536-9818-cf4a0e7e821d\",\"pandascore_id\":null,\"yahoo_id\":8565,\"last_name\":\"Prater\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Estero (FL)\",\"depth_chart_order\":1,\"stats_id\":218237,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mattprater\",\"birth_date\":\"1984-08-10\",\"espn_id\":11122},\"4384\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peck\",\"depth_chart_position\":null,\"player_id\":\"4384\",\"birth_city\":null,\"fantasy_data_id\":19241,\"years_exp\":2,\"hashtag\":\"#AaronPeck-NFL-FA-86\",\"search_first_name\":\"aaron\",\"rotowire_id\":12315,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Aaron Peck\",\"sportradar_id\":\"d369d63b-5218-4274-9055-fb778344c8b7\",\"pandascore_id\":null,\"yahoo_id\":30617,\"last_name\":\"Peck\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692933,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aaronpeck\",\"birth_date\":\"1994-10-09\",\"espn_id\":2974029},\"3492\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032694\",\"first_name\":\"Jalin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1560987945639,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"3492\",\"birth_city\":null,\"fantasy_data_id\":18257,\"years_exp\":4,\"hashtag\":\"#JalinMarshall-NFL-OAK-89\",\"search_first_name\":\"jalin\",\"rotowire_id\":10998,\"rotoworld_id\":11562,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jalin Marshall\",\"sportradar_id\":\"577c7e9d-e647-4c22-9371-e51d282f5cfd\",\"pandascore_id\":null,\"yahoo_id\":29791,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728333,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"OAK\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jalinmarshall\",\"birth_date\":\"1995-07-21\",\"espn_id\":3051400},\"7090\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darnell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605607521943,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mooney\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7090\",\"birth_city\":null,\"fantasy_data_id\":21961,\"years_exp\":0,\"hashtag\":\"#DarnellMooney-NFL-CHI-11\",\"search_first_name\":\"darnell\",\"rotowire_id\":14510,\"rotoworld_id\":null,\"active\":true,\"search_rank\":251,\"age\":23,\"full_name\":\"Darnell Mooney\",\"sportradar_id\":\"bafe8df1-66b5-4200-8fb3-ff188c25a4e2\",\"pandascore_id\":null,\"yahoo_id\":32843,\"last_name\":\"Mooney\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Gadsden City (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"172\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darnellmooney\",\"birth_date\":\"1997-10-29\",\"espn_id\":4040655},\"85\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tuck\",\"depth_chart_position\":null,\"player_id\":\"85\",\"birth_city\":null,\"fantasy_data_id\":2307,\"years_exp\":15,\"hashtag\":\"#JustinTuck-NFL-FA-91\",\"search_first_name\":\"justin\",\"rotowire_id\":4476,\"rotoworld_id\":3286,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Justin Tuck\",\"sportradar_id\":\"bbfb80d3-910b-4be2-be73-3dab3c5ce398\",\"pandascore_id\":null,\"yahoo_id\":7250,\"last_name\":\"Tuck\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Central (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justintuck\",\"birth_date\":\"1983-03-29\",\"espn_id\":8488},\"2570\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donatella\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"luckett\",\"depth_chart_position\":null,\"player_id\":\"2570\",\"birth_city\":null,\"fantasy_data_id\":17034,\"years_exp\":0,\"hashtag\":\"#DonatellaLuckett-NFL-FA-15\",\"search_first_name\":\"donatella\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Donatella Luckett\",\"sportradar_id\":\"39f20038-bc1e-4374-98b4-4e2c9fce8f9d\",\"pandascore_id\":null,\"yahoo_id\":29097,\"last_name\":\"Luckett\",\"metadata\":null,\"college\":\"Harding\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":867552,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"donatellaluckett\",\"birth_date\":\"1991-02-01\",\"espn_id\":3165703},\"2883\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2883\",\"birth_city\":null,\"fantasy_data_id\":17351,\"years_exp\":0,\"hashtag\":\"#ChaseWilliams-NFL-FA-56\",\"search_first_name\":\"chase\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chase Williams\",\"sportradar_id\":\"c34923ab-9d1b-428a-b02f-e2ebf2f9d488\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chasewilliams\",\"birth_date\":\"1991-10-16\",\"espn_id\":2512702},\"3927\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"golden\",\"depth_chart_position\":null,\"player_id\":\"3927\",\"birth_city\":null,\"fantasy_data_id\":18756,\"years_exp\":0,\"hashtag\":\"#JamalGolden-NFL-FA-42\",\"search_first_name\":\"jamal\",\"rotowire_id\":11630,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jamal Golden\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30054,\"last_name\":\"Golden\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jamalgolden\",\"birth_date\":\"1993-03-04\",\"espn_id\":null},\"5606\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gaelin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1531956001353,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elmore\",\"depth_chart_position\":null,\"player_id\":\"5606\",\"birth_city\":null,\"fantasy_data_id\":20265,\"years_exp\":2,\"hashtag\":\"#GaelinElmore-NFL-FA-69\",\"search_first_name\":\"gaelin\",\"rotowire_id\":13245,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Gaelin Elmore\",\"sportradar_id\":\"f429d041-9cbc-48c5-8659-711155712cb0\",\"pandascore_id\":null,\"yahoo_id\":31558,\"last_name\":\"Elmore\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'5\\\"\",\"search_full_name\":\"gaelinelmore\",\"birth_date\":\"1995-09-08\",\"espn_id\":3116053},\"5834\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":null,\"player_id\":\"5834\",\"birth_city\":null,\"fantasy_data_id\":8748,\"years_exp\":0,\"hashtag\":\"#SeanRyan-NFL-FA-89\",\"search_first_name\":\"sean\",\"rotowire_id\":null,\"rotoworld_id\":13053,\"active\":true,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Sean Ryan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"seanryan\",\"birth_date\":\"1980-03-27\",\"espn_id\":null},\"5102\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034395\",\"first_name\":\"Daurice\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604974830026,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fountain\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5102\",\"birth_city\":null,\"fantasy_data_id\":19981,\"years_exp\":2,\"hashtag\":\"#DauriceFountain-NFL-IND-10\",\"search_first_name\":\"daurice\",\"rotowire_id\":12672,\"rotoworld_id\":null,\"active\":true,\"search_rank\":430,\"age\":24,\"full_name\":\"Daurice Fountain\",\"sportradar_id\":\"5226f6a9-a6af-45f9-93ec-669542f3cfc9\",\"pandascore_id\":null,\"yahoo_id\":31129,\"last_name\":\"Fountain\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":\"James Madison Memorial (WI)\",\"depth_chart_order\":3,\"stats_id\":830751,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dauricefountain\",\"birth_date\":\"1995-12-22\",\"espn_id\":3120659},\"2674\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"browning\",\"depth_chart_position\":null,\"player_id\":\"2674\",\"birth_city\":null,\"fantasy_data_id\":17142,\"years_exp\":0,\"hashtag\":\"#PaulBrowning-NFL-FA-7\",\"search_first_name\":\"paul\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Paul Browning\",\"sportradar_id\":\"88e7059b-3624-4b9a-bbbe-abca05229fff\",\"pandascore_id\":null,\"yahoo_id\":29035,\"last_name\":\"Browning\",\"metadata\":null,\"college\":\"Colorado State-Pueblo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":756001,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"paulbrowning\",\"birth_date\":null,\"espn_id\":3059606},\"2834\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"obarski\",\"depth_chart_position\":null,\"player_id\":\"2834\",\"birth_city\":null,\"fantasy_data_id\":17302,\"years_exp\":1,\"hashtag\":\"#TomObarski-NFL-FA-5\",\"search_first_name\":\"tom\",\"rotowire_id\":10761,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tom Obarski\",\"sportradar_id\":\"d2bce0ed-fc46-4c15-89bb-993f65333466\",\"pandascore_id\":null,\"yahoo_id\":28976,\"last_name\":\"Obarski\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":865785,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tomobarski\",\"birth_date\":\"1993-03-12\",\"espn_id\":3165701},\"6652\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035333\",\"first_name\":\"Micah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567285806351,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"standrew\",\"depth_chart_position\":null,\"player_id\":\"6652\",\"birth_city\":null,\"fantasy_data_id\":21544,\"years_exp\":1,\"hashtag\":\"#MicahStAndrew-NFL-FA-73\",\"search_first_name\":\"micah\",\"rotowire_id\":14212,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Micah St. Andrew\",\"sportradar_id\":\"7c05af13-68e8-4aa4-b2ae-745bd0fd1e33\",\"pandascore_id\":null,\"yahoo_id\":32460,\"last_name\":\"St. Andrew\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"343\",\"height\":\"6'2\\\"\",\"search_full_name\":\"micahstandrew\",\"birth_date\":\"1996-01-10\",\"espn_id\":3124550},\"5036\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034361\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606565132027,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reid\",\"depth_chart_position\":\"FS\",\"player_id\":\"5036\",\"birth_city\":null,\"fantasy_data_id\":19866,\"years_exp\":2,\"hashtag\":\"#JustinReid-NFL-HOU-20\",\"search_first_name\":\"justin\",\"rotowire_id\":12606,\"rotoworld_id\":13133,\"active\":true,\"search_rank\":1308,\"age\":23,\"full_name\":\"Justin Reid\",\"sportradar_id\":\"bb9db665-7f9f-425d-9e4b-df78c65c8b97\",\"pandascore_id\":null,\"yahoo_id\":31038,\"last_name\":\"Reid\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Dutchtown (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justinreid\",\"birth_date\":\"1997-02-15\",\"espn_id\":3931399},\"LV\":{\"team\":\"LV\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"LV\",\"last_name\":\"Raiders\",\"injury_status\":null,\"first_name\":\"Las Vegas\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"482\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kruger\",\"depth_chart_position\":null,\"player_id\":\"482\",\"birth_city\":null,\"fantasy_data_id\":9801,\"years_exp\":11,\"hashtag\":\"#PaulKruger-NFL-FA-99\",\"search_first_name\":\"paul\",\"rotowire_id\":6062,\"rotoworld_id\":5181,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Paul Kruger\",\"sportradar_id\":\"0fa04a20-a500-4f7a-a881-6b261e01d5ca\",\"pandascore_id\":null,\"yahoo_id\":9321,\"last_name\":\"Kruger\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Timpanogos, UT, USA\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"paulkruger\",\"birth_date\":\"1986-02-15\",\"espn_id\":12437},\"5319\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034269\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596402918163,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"madison\",\"depth_chart_position\":null,\"player_id\":\"5319\",\"birth_city\":null,\"fantasy_data_id\":19936,\"years_exp\":2,\"hashtag\":\"#ColeMadison-NFL-FA-0\",\"search_first_name\":\"cole\",\"rotowire_id\":12801,\"rotoworld_id\":13221,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cole Madison\",\"sportradar_id\":\"0e20c25d-437d-45b2-86f1-73bbd2d22c0d\",\"pandascore_id\":null,\"yahoo_id\":31108,\"last_name\":\"Madison\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'5\\\"\",\"search_full_name\":\"colemadison\",\"birth_date\":\"1994-12-20\",\"espn_id\":3052065},\"625\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027256\",\"first_name\":\"Darian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565711450804,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"625\",\"birth_city\":null,\"fantasy_data_id\":11548,\"years_exp\":10,\"hashtag\":\"#DarianStewart-NFL-FA-24\",\"search_first_name\":\"darian\",\"rotowire_id\":7144,\"rotoworld_id\":6350,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Darian Stewart\",\"sportradar_id\":\"4a8190f6-039d-485b-8d51-7f98368b02e1\",\"pandascore_id\":null,\"yahoo_id\":24590,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Lee (AL)\",\"depth_chart_order\":null,\"stats_id\":332881,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darianstewart\",\"birth_date\":\"1988-08-04\",\"espn_id\":13645},\"3459\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fallin\",\"depth_chart_position\":null,\"player_id\":\"3459\",\"birth_city\":null,\"fantasy_data_id\":18223,\"years_exp\":0,\"hashtag\":\"#TaylorFallin-NFL-FA-65\",\"search_first_name\":\"taylor\",\"rotowire_id\":11409,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Taylor Fallin\",\"sportradar_id\":\"72b37886-8f0c-4f15-aee6-f09de80ec7f7\",\"pandascore_id\":null,\"yahoo_id\":29572,\"last_name\":\"Fallin\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"339\",\"height\":\"6'6\\\"\",\"search_full_name\":\"taylorfallin\",\"birth_date\":\"1992-11-02\",\"espn_id\":null},\"3848\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"townsendjr\",\"depth_chart_position\":null,\"player_id\":\"3848\",\"birth_city\":null,\"fantasy_data_id\":18668,\"years_exp\":0,\"hashtag\":\"#GregTownsendJr-NFL-FA-93\",\"search_first_name\":\"greg\",\"rotowire_id\":11523,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Greg Townsend Jr\",\"sportradar_id\":\"14146b26-3224-4ff5-a746-e4f5b5c7b5e9\",\"pandascore_id\":null,\"yahoo_id\":29974,\"last_name\":\"Townsend Jr\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gregtownsendjr\",\"birth_date\":\"1992-12-11\",\"espn_id\":2577275},\"4203\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033570\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602444919110,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"MLB\",\"player_id\":\"4203\",\"birth_city\":null,\"fantasy_data_id\":19049,\"years_exp\":3,\"hashtag\":\"#AnthonyWalker-NFL-IND-54\",\"search_first_name\":\"anthony\",\"rotowire_id\":11983,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1193,\"age\":25,\"full_name\":\"Anthony Walker\",\"sportradar_id\":\"14b52c32-e9f6-4b64-aa22-1d96bb20cf84\",\"pandascore_id\":null,\"yahoo_id\":30274,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Monsignor Edward Pace (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonywalker\",\"birth_date\":\"1995-08-08\",\"espn_id\":3045251},\"2480\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wells\",\"depth_chart_position\":null,\"player_id\":\"2480\",\"birth_city\":null,\"fantasy_data_id\":16938,\"years_exp\":1,\"hashtag\":\"#MatthewWells-NFL-FA-46\",\"search_first_name\":\"matthew\",\"rotowire_id\":10474,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Matthew Wells\",\"sportradar_id\":\"d735b838-3a01-4e91-8094-e1f6a8ecdc2b\",\"pandascore_id\":null,\"yahoo_id\":28566,\"last_name\":\"Wells\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"matthewwells\",\"birth_date\":\"1990-11-26\",\"espn_id\":2516295},\"6241\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jontrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rocquemore\",\"depth_chart_position\":null,\"player_id\":\"6241\",\"birth_city\":null,\"fantasy_data_id\":21172,\"years_exp\":0,\"hashtag\":\"#JontrellRocquemore-NFL-FA-0\",\"search_first_name\":\"jontrell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jontrell Rocquemore\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rocquemore\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jontrellrocquemore\",\"birth_date\":null,\"espn_id\":3125365},\"3080\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fisher\",\"depth_chart_position\":null,\"player_id\":\"3080\",\"birth_city\":null,\"fantasy_data_id\":17829,\"years_exp\":0,\"hashtag\":\"#JeffFisher-NFL-FA-0\",\"search_first_name\":\"jeff\",\"rotowire_id\":null,\"rotoworld_id\":8363,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jeff Fisher\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fisher\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jefffisher\",\"birth_date\":null,\"espn_id\":null},\"4083\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033543\",\"first_name\":\"Sidney\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606529429548,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4083\",\"birth_city\":null,\"fantasy_data_id\":18929,\"years_exp\":3,\"hashtag\":\"#SidneyJones-NFL-JAX-35\",\"search_first_name\":\"sidney\",\"rotowire_id\":11905,\"rotoworld_id\":12206,\"active\":true,\"search_rank\":1133,\"age\":24,\"full_name\":\"Sidney Jones\",\"sportradar_id\":\"4de23d54-2169-4b17-b0d0-c47b2edd9f73\",\"pandascore_id\":null,\"yahoo_id\":30156,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"West Covina (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sidneyjones\",\"birth_date\":\"1996-05-21\",\"espn_id\":3127299},\"100\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodson\",\"depth_chart_position\":null,\"player_id\":\"100\",\"birth_city\":null,\"fantasy_data_id\":2670,\"years_exp\":22,\"hashtag\":\"#CharlesWoodson-NFL-FA-24\",\"search_first_name\":\"charles\",\"rotowire_id\":904,\"rotoworld_id\":840,\"active\":false,\"search_rank\":9999999,\"age\":43,\"full_name\":\"Charles Woodson\",\"sportradar_id\":\"20b0aa93-45ba-439a-b46c-6f75081b543b\",\"pandascore_id\":null,\"yahoo_id\":4271,\"last_name\":\"Woodson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Ross (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"charleswoodson\",\"birth_date\":\"1976-10-07\",\"espn_id\":1442},\"690\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027812\",\"first_name\":\"Dekoda\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598805924795,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"690\",\"birth_city\":null,\"fantasy_data_id\":12063,\"years_exp\":10,\"hashtag\":\"#DekodaWatson-NFL-FA-51\",\"search_first_name\":\"dekoda\",\"rotowire_id\":6606,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Dekoda Watson\",\"sportradar_id\":\"680fd5cf-3bdc-4317-bc99-cbd97fbebeb3\",\"pandascore_id\":null,\"yahoo_id\":24193,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Aiken South (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dekodawatson\",\"birth_date\":\"1988-03-03\",\"espn_id\":13482},\"4702\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033809\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567825225166,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boykins\",\"depth_chart_position\":null,\"player_id\":\"4702\",\"birth_city\":null,\"fantasy_data_id\":19607,\"years_exp\":3,\"hashtag\":\"#JeremyBoykins-NFL-FA-0\",\"search_first_name\":\"jeremy\",\"rotowire_id\":12399,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jeremy Boykins\",\"sportradar_id\":\"b8e9269d-2310-4dcc-a225-6bcf47d8e5fc\",\"pandascore_id\":null,\"yahoo_id\":30744,\"last_name\":\"Boykins\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeremyboykins\",\"birth_date\":\"1995-05-29\",\"espn_id\":3929030},\"3317\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033039\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566434111212,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"westerman\",\"depth_chart_position\":\"LG\",\"player_id\":\"3317\",\"birth_city\":null,\"fantasy_data_id\":18078,\"years_exp\":4,\"hashtag\":\"#ChristianWesterman-NFL-FA-63\",\"search_first_name\":\"christian\",\"rotowire_id\":10895,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Christian Westerman\",\"sportradar_id\":\"258deb9a-9e98-48b8-bb86-3f2e339ecef1\",\"pandascore_id\":null,\"yahoo_id\":29395,\"last_name\":\"Westerman\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'3\\\"\",\"search_full_name\":\"christianwesterman\",\"birth_date\":\"1993-02-23\",\"espn_id\":2574570},\"3886\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033070\",\"first_name\":\"Javien\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1579112135199,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":null,\"player_id\":\"3886\",\"birth_city\":null,\"fantasy_data_id\":18708,\"years_exp\":4,\"hashtag\":\"#JavienElliott-NFL-FA-0\",\"search_first_name\":\"javien\",\"rotowire_id\":11407,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Javien Elliott\",\"sportradar_id\":\"08770f4a-4b29-490e-b76a-f60d87fdc414\",\"pandascore_id\":null,\"yahoo_id\":30014,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":824084,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"javienelliott\",\"birth_date\":\"1993-07-18\",\"espn_id\":3116598},\"7456\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Benning\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"potoae\",\"depth_chart_position\":null,\"player_id\":\"7456\",\"birth_city\":null,\"fantasy_data_id\":22434,\"years_exp\":0,\"hashtag\":\"#BenningPotoae-NFL-TB-91\",\"search_first_name\":\"benning\",\"rotowire_id\":14913,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Benning Potoa'e\",\"sportradar_id\":\"b5e33405-ea22-4fb7-97d8-8b324d6c90b9\",\"pandascore_id\":null,\"yahoo_id\":33277,\"last_name\":\"Potoa'e\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Lakes (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"benningpotoae\",\"birth_date\":\"1996-09-17\",\"espn_id\":3886826},\"6907\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601826938425,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"C\",\"player_id\":\"6907\",\"birth_city\":null,\"fantasy_data_id\":21948,\"years_exp\":0,\"hashtag\":\"#NickHarris-NFL-CLE-53\",\"search_first_name\":\"nick\",\"rotowire_id\":14552,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Nick Harris\",\"sportradar_id\":\"a21c5573-d9eb-4c4d-838a-12b63c513a1b\",\"pandascore_id\":null,\"yahoo_id\":32830,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"JSerra Catholic (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nickharris\",\"birth_date\":\"1998-11-13\",\"espn_id\":4039016},\"7243\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693357448,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davidson\",\"depth_chart_position\":null,\"player_id\":\"7243\",\"birth_city\":null,\"fantasy_data_id\":21968,\"years_exp\":0,\"hashtag\":\"#KevinDavidson-NFL-FA-0\",\"search_first_name\":\"kevin\",\"rotowire_id\":14635,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kevin Davidson\",\"sportradar_id\":\"de3351ac-e1f7-4980-8aef-1228297a9824\",\"pandascore_id\":null,\"yahoo_id\":33304,\"last_name\":\"Davidson\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kevindavidson\",\"birth_date\":\"1997-08-01\",\"espn_id\":4031232},\"2432\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032215\",\"first_name\":\"Damien\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600799120603,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"LB\",\"player_id\":\"2432\",\"birth_city\":null,\"fantasy_data_id\":16888,\"years_exp\":5,\"hashtag\":\"#DamienWilson-NFL-KC-54\",\"search_first_name\":\"damien\",\"rotowire_id\":10374,\"rotoworld_id\":null,\"active\":true,\"search_rank\":893,\"age\":27,\"full_name\":\"Damien Wilson\",\"sportradar_id\":\"96c822e6-5484-476b-8ab0-64b3cff791ef\",\"pandascore_id\":null,\"yahoo_id\":28515,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Amite County (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'0\\\"\",\"search_full_name\":\"damienwilson\",\"birth_date\":\"1993-05-28\",\"espn_id\":3040207},\"7097\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tra\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnett\",\"depth_chart_position\":null,\"player_id\":\"7097\",\"birth_city\":null,\"fantasy_data_id\":22125,\"years_exp\":0,\"hashtag\":\"#TraBarnett-NFL-FA-0\",\"search_first_name\":\"tra\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tra Barnett\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Barnett\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"trabarnett\",\"birth_date\":\"1997-09-14\",\"espn_id\":null},\"3213\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032462\",\"first_name\":\"Trevone\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1534818007821,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boykin\",\"depth_chart_position\":null,\"player_id\":\"3213\",\"birth_city\":null,\"fantasy_data_id\":17974,\"years_exp\":4,\"hashtag\":\"#TrevoneBoykin-NFL-FA-2\",\"search_first_name\":\"trevone\",\"rotowire_id\":10915,\"rotoworld_id\":11272,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Trevone Boykin\",\"sportradar_id\":\"648a6a76-32c3-45fa-b158-f77de2a9a95f\",\"pandascore_id\":null,\"yahoo_id\":29812,\"last_name\":\"Boykin\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":601071,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trevoneboykin\",\"birth_date\":\"1993-08-22\",\"espn_id\":2575910},\"6035\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cece\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":null,\"player_id\":\"6035\",\"birth_city\":null,\"fantasy_data_id\":20826,\"years_exp\":0,\"hashtag\":\"#CeceJefferson-NFL-FA-0\",\"search_first_name\":\"cece\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Cece Jefferson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cecejefferson\",\"birth_date\":null,\"espn_id\":null},\"6001\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035631\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606200051407,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sample\",\"depth_chart_position\":\"TE\",\"player_id\":\"6001\",\"birth_city\":null,\"fantasy_data_id\":20931,\"years_exp\":1,\"hashtag\":\"#DrewSample-NFL-CIN-89\",\"search_first_name\":\"drew\",\"rotowire_id\":13809,\"rotoworld_id\":14111,\"active\":true,\"search_rank\":462,\"age\":24,\"full_name\":\"Drew Sample\",\"sportradar_id\":\"15a4f552-ecaf-45bd-9006-aa5dda93bee6\",\"pandascore_id\":null,\"yahoo_id\":31884,\"last_name\":\"Sample\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Newport (WA)\",\"depth_chart_order\":1,\"stats_id\":837824,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'4\\\"\",\"search_full_name\":\"drewsample\",\"birth_date\":\"1996-04-16\",\"espn_id\":3127310},\"6942\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605226813944,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"driscoll\",\"depth_chart_position\":\"RT\",\"player_id\":\"6942\",\"birth_city\":null,\"fantasy_data_id\":21981,\"years_exp\":0,\"hashtag\":\"#JackDriscoll-NFL-PHI-63\",\"search_first_name\":\"jack\",\"rotowire_id\":14663,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jack Driscoll\",\"sportradar_id\":\"83657965-d1b5-4317-84bf-f9e471629993\",\"pandascore_id\":null,\"yahoo_id\":32815,\"last_name\":\"Driscoll\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Daniel Hand (CT)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jackdriscoll\",\"birth_date\":\"1997-04-01\",\"espn_id\":3932668},\"570\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Seyi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ajirotutu\",\"depth_chart_position\":null,\"player_id\":\"570\",\"birth_city\":null,\"fantasy_data_id\":11243,\"years_exp\":10,\"hashtag\":\"#SeyiAjirotutu-NFL-FA-16\",\"search_first_name\":\"seyi\",\"rotowire_id\":6524,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Seyi Ajirotutu\",\"sportradar_id\":\"23a08c82-042e-4289-bd39-97e8f030bfae\",\"pandascore_id\":null,\"yahoo_id\":24435,\"last_name\":\"Ajirotutu\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Oak Ridge (CA)\",\"depth_chart_order\":null,\"stats_id\":286405,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"seyiajirotutu\",\"birth_date\":\"1987-06-12\",\"espn_id\":13524},\"4536\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033627\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604533528957,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"croom\",\"depth_chart_position\":\"TE\",\"player_id\":\"4536\",\"birth_city\":null,\"fantasy_data_id\":19415,\"years_exp\":3,\"hashtag\":\"#JasonCroom-NFL-PHI-81\",\"search_first_name\":\"jason\",\"rotowire_id\":12082,\"rotoworld_id\":12709,\"active\":true,\"search_rank\":544,\"age\":26,\"full_name\":\"Jason Croom\",\"sportradar_id\":\"e17b5817-d955-42be-bb8d-e34d89f6dd71\",\"pandascore_id\":null,\"yahoo_id\":30594,\"last_name\":\"Croom\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":4,\"stats_id\":690029,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jasoncroom\",\"birth_date\":\"1994-02-28\",\"espn_id\":2972240},\"568\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lamarr\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1581811201384,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":null,\"player_id\":\"568\",\"birth_city\":null,\"fantasy_data_id\":11234,\"years_exp\":10,\"hashtag\":\"#LamarrHouston-NFL-FA-99\",\"search_first_name\":\"lamarr\",\"rotowire_id\":6591,\"rotoworld_id\":5759,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Lamarr Houston\",\"sportradar_id\":\"d8262628-2b95-46c2-a256-c95a157262eb\",\"pandascore_id\":null,\"yahoo_id\":24019,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Doherty (CO)\",\"depth_chart_order\":null,\"stats_id\":323087,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lamarrhouston\",\"birth_date\":\"1987-06-24\",\"espn_id\":13277},\"3220\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032387\",\"first_name\":\"Jarran\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605054361734,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":\"DT\",\"player_id\":\"3220\",\"birth_city\":null,\"fantasy_data_id\":17981,\"years_exp\":4,\"hashtag\":\"#JarranReed-NFL-SEA-90\",\"search_first_name\":\"jarran\",\"rotowire_id\":11217,\"rotoworld_id\":11322,\"active\":true,\"search_rank\":974,\"age\":27,\"full_name\":\"Jarran Reed\",\"sportradar_id\":\"c02b49d3-ddc1-4ffc-9f40-487199882fa5\",\"pandascore_id\":null,\"yahoo_id\":29289,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Goldsboro (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jarranreed\",\"birth_date\":\"1992-12-16\",\"espn_id\":3115312},\"684\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0021140\",\"first_name\":\"Julius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1549031156152,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peppers\",\"depth_chart_position\":null,\"player_id\":\"684\",\"birth_city\":null,\"fantasy_data_id\":11977,\"years_exp\":18,\"hashtag\":\"#JuliusPeppers-NFL-FA-90\",\"search_first_name\":\"julius\",\"rotowire_id\":2528,\"rotoworld_id\":2361,\"active\":true,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Julius Peppers\",\"sportradar_id\":\"c058f888-ff75-4f13-a9e7-3f5be65288bf\",\"pandascore_id\":null,\"yahoo_id\":5888,\"last_name\":\"Peppers\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Southern Nash (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'7\\\"\",\"search_full_name\":\"juliuspeppers\",\"birth_date\":\"1980-01-18\",\"espn_id\":3530},\"3665\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ivan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mclennan\",\"depth_chart_position\":null,\"player_id\":\"3665\",\"birth_city\":null,\"fantasy_data_id\":18465,\"years_exp\":0,\"hashtag\":\"#IvanMcLennan-NFL-FA-48\",\"search_first_name\":\"ivan\",\"rotowire_id\":11314,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ivan McLennan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29651,\"last_name\":\"McLennan\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ivanmclennan\",\"birth_date\":\"1993-06-29\",\"espn_id\":3045304},\"5155\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034493\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"willis\",\"depth_chart_position\":null,\"player_id\":\"5155\",\"birth_city\":null,\"fantasy_data_id\":20082,\"years_exp\":2,\"hashtag\":\"#CoreyWillis-NFL-FA-83\",\"search_first_name\":\"corey\",\"rotowire_id\":13224,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Corey Willis\",\"sportradar_id\":\"89751c60-6b8c-43ff-a7fa-edf7ffb2a699\",\"pandascore_id\":null,\"yahoo_id\":31327,\"last_name\":\"Willis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":729691,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"coreywillis\",\"birth_date\":\"1995-05-02\",\"espn_id\":3044711},\"4085\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033896\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605042614452,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shaheen\",\"depth_chart_position\":\"TE\",\"player_id\":\"4085\",\"birth_city\":null,\"fantasy_data_id\":18931,\"years_exp\":3,\"hashtag\":\"#AdamShaheen-NFL-MIA-80\",\"search_first_name\":\"adam\",\"rotowire_id\":11898,\"rotoworld_id\":12283,\"active\":true,\"search_rank\":406,\"age\":26,\"full_name\":\"Adam Shaheen\",\"sportradar_id\":\"87171077-4c1c-4b67-b159-2cc6242988e0\",\"pandascore_id\":null,\"yahoo_id\":30158,\"last_name\":\"Shaheen\",\"metadata\":null,\"college\":\"Ashland\",\"high_school\":\"Big Walnut (OH)\",\"depth_chart_order\":3,\"stats_id\":1049770,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'6\\\"\",\"search_full_name\":\"adamshaheen\",\"birth_date\":\"1994-10-24\",\"espn_id\":4198676},\"5848\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035662\",\"first_name\":\"Marquise\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606336801527,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5848\",\"birth_city\":null,\"fantasy_data_id\":21045,\"years_exp\":1,\"hashtag\":\"#MarquiseBrown-NFL-BAL-15\",\"search_first_name\":\"marquise\",\"rotowire_id\":13502,\"rotoworld_id\":14010,\"active\":true,\"search_rank\":59,\"age\":23,\"full_name\":\"Marquise Brown\",\"sportradar_id\":\"feeee40a-dd63-41a7-89cd-6c95b5456833\",\"pandascore_id\":null,\"yahoo_id\":31857,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Chaminade-Madonna (FL)\",\"depth_chart_order\":1,\"stats_id\":976220,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marquisebrown\",\"birth_date\":\"1997-06-04\",\"espn_id\":4241372},\"2936\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rasheed\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2936\",\"birth_city\":null,\"fantasy_data_id\":17405,\"years_exp\":null,\"hashtag\":\"#RasheedWilliams-NFL-FA-0\",\"search_first_name\":\"rasheed\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rasheed Williams\",\"sportradar_id\":\"0ca1f22e-c4bb-4eee-bcc3-3d57e9103ba1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870447,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rasheedwilliams\",\"birth_date\":null,\"espn_id\":null},\"1706\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030181\",\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606172415341,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"doyle\",\"depth_chart_position\":\"TE\",\"player_id\":\"1706\",\"birth_city\":null,\"fantasy_data_id\":15602,\"years_exp\":7,\"hashtag\":\"#JackDoyle-NFL-IND-84\",\"search_first_name\":\"jack\",\"rotowire_id\":9081,\"rotoworld_id\":9075,\"active\":true,\"search_rank\":299,\"age\":30,\"full_name\":\"Jack Doyle\",\"sportradar_id\":\"bd413539-9351-454e-9d61-4e8635d7e9f5\",\"pandascore_id\":null,\"yahoo_id\":27299,\"last_name\":\"Doyle\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Cathedral (IN)\",\"depth_chart_order\":3,\"stats_id\":477386,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jackdoyle\",\"birth_date\":\"1990-05-05\",\"espn_id\":16504},\"6745\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035336\",\"first_name\":\"Shaq\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601333111839,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"calhoun\",\"depth_chart_position\":null,\"player_id\":\"6745\",\"birth_city\":null,\"fantasy_data_id\":21662,\"years_exp\":0,\"hashtag\":\"#ShaqCalhoun-NFL-MIA-0\",\"search_first_name\":\"shaq\",\"rotowire_id\":13845,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Shaq Calhoun\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":32432,\"last_name\":\"Calhoun\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"shaqcalhoun\",\"birth_date\":\"1996-02-20\",\"espn_id\":null},\"4671\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"4671\",\"birth_city\":null,\"fantasy_data_id\":19570,\"years_exp\":2,\"hashtag\":\"#BrandonStewart-NFL-FA-39\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brandon Stewart\",\"sportradar_id\":\"0f90171d-e2b1-4b5b-97d3-3c383238897c\",\"pandascore_id\":null,\"yahoo_id\":30435,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonstewart\",\"birth_date\":null,\"espn_id\":3892783},\"5447\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034086\",\"first_name\":\"Lashard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durr\",\"depth_chart_position\":null,\"player_id\":\"5447\",\"birth_city\":null,\"fantasy_data_id\":20531,\"years_exp\":2,\"hashtag\":\"#LashardDurr-NFL-FA-36\",\"search_first_name\":\"lashard\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lashard Durr\",\"sportradar_id\":\"976fdc88-10c2-469b-8ee4-c96de6805339\",\"pandascore_id\":null,\"yahoo_id\":31368,\"last_name\":\"Durr\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lasharddurr\",\"birth_date\":\"1994-10-24\",\"espn_id\":3115496},\"2184\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031261\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606141212395,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boston\",\"depth_chart_position\":\"FS\",\"player_id\":\"2184\",\"birth_city\":null,\"fantasy_data_id\":16552,\"years_exp\":6,\"hashtag\":\"#TreBoston-NFL-CAR-33\",\"search_first_name\":\"tre\",\"rotowire_id\":9303,\"rotoworld_id\":9583,\"active\":true,\"search_rank\":834,\"age\":28,\"full_name\":\"Tre Boston\",\"sportradar_id\":\"4ca2f25d-7a0c-42e2-9b35-c9b9a025990b\",\"pandascore_id\":null,\"yahoo_id\":27656,\"last_name\":\"Boston\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"North Fort Myers (FL)\",\"depth_chart_order\":1,\"stats_id\":546085,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"treboston\",\"birth_date\":\"1992-06-25\",\"espn_id\":16877},\"2848\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"prater\",\"depth_chart_position\":null,\"player_id\":\"2848\",\"birth_city\":null,\"fantasy_data_id\":17316,\"years_exp\":1,\"hashtag\":\"#KylePrater-NFL-FA-86\",\"search_first_name\":\"kyle\",\"rotowire_id\":10572,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Prater\",\"sportradar_id\":\"964f1871-cc5c-4121-a188-060f7ea936a7\",\"pandascore_id\":null,\"yahoo_id\":29127,\"last_name\":\"Prater\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":543551,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kyleprater\",\"birth_date\":\"1992-06-21\",\"espn_id\":2510612},\"7389\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sterling\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"7389\",\"birth_city\":null,\"fantasy_data_id\":22375,\"years_exp\":0,\"hashtag\":\"#SterlingJohnson-NFL-FA-0\",\"search_first_name\":\"sterling\",\"rotowire_id\":15158,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1995,\"age\":23,\"full_name\":\"Sterling Johnson\",\"sportradar_id\":\"3c448dcb-998f-4024-9d8b-cca73a12f486\",\"pandascore_id\":null,\"yahoo_id\":33337,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sterlingjohnson\",\"birth_date\":\"1997-08-20\",\"espn_id\":3728252},\"3732\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mullaney\",\"depth_chart_position\":null,\"player_id\":\"3732\",\"birth_city\":null,\"fantasy_data_id\":18543,\"years_exp\":3,\"hashtag\":\"#RichardMullaney-NFL-FA-83\",\"search_first_name\":\"richard\",\"rotowire_id\":11471,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Richard Mullaney\",\"sportradar_id\":\"327f0b61-f467-4991-badb-71b404a00d04\",\"pandascore_id\":null,\"yahoo_id\":29803,\"last_name\":\"Mullaney\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607876,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'3\\\"\",\"search_full_name\":\"richardmullaney\",\"birth_date\":\"1993-02-23\",\"espn_id\":2577014},\"6569\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035463\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596768049723,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"pridgeon\",\"depth_chart_position\":null,\"player_id\":\"6569\",\"birth_city\":null,\"fantasy_data_id\":21241,\"years_exp\":1,\"hashtag\":\"#MalcolmPridgeon-NFL-CLE-62\",\"search_first_name\":\"malcolm\",\"rotowire_id\":14232,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Malcolm Pridgeon\",\"sportradar_id\":\"4501f87d-6436-4fa8-9f53-a8a475eb984c\",\"pandascore_id\":null,\"yahoo_id\":32516,\"last_name\":\"Pridgeon\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Central Islip (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'7\\\"\",\"search_full_name\":\"malcolmpridgeon\",\"birth_date\":\"1995-01-20\",\"espn_id\":4040626},\"3287\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032776\",\"first_name\":\"Deiondre'\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596333012191,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"3287\",\"birth_city\":null,\"fantasy_data_id\":18048,\"years_exp\":4,\"hashtag\":\"#DeiondreHall-NFL-FA-0\",\"search_first_name\":\"deiondre\",\"rotowire_id\":11050,\"rotoworld_id\":11335,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Deiondre' Hall\",\"sportradar_id\":\"27a541bc-47b6-4185-aa3d-6cb194666dbe\",\"pandascore_id\":null,\"yahoo_id\":29361,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":698448,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deiondrehall\",\"birth_date\":\"1994-05-31\",\"espn_id\":2986767},\"3224\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032389\",\"first_name\":\"Mackensie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605902402623,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":\"NB\",\"player_id\":\"3224\",\"birth_city\":null,\"fantasy_data_id\":17985,\"years_exp\":4,\"hashtag\":\"#MackensieAlexander-NFL-CIN-21\",\"search_first_name\":\"mackensie\",\"rotowire_id\":10880,\"rotoworld_id\":11269,\"active\":true,\"search_rank\":976,\"age\":27,\"full_name\":\"Mackensie Alexander\",\"sportradar_id\":\"9b14942e-0ddc-436c-a6be-5947a39589e5\",\"pandascore_id\":null,\"yahoo_id\":29287,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Immokalee (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mackensiealexander\",\"birth_date\":\"1993-11-12\",\"espn_id\":3045120},\"3324\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032976\",\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574102141956,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"drango\",\"depth_chart_position\":null,\"player_id\":\"3324\",\"birth_city\":null,\"fantasy_data_id\":18085,\"years_exp\":4,\"hashtag\":\"#SpencerDrango-NFL-FA-0\",\"search_first_name\":\"spencer\",\"rotowire_id\":11025,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Spencer Drango\",\"sportradar_id\":\"2b808ae0-ff65-43d5-9a07-b21d02e36c35\",\"pandascore_id\":null,\"yahoo_id\":29402,\"last_name\":\"Drango\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"spencerdrango\",\"birth_date\":\"1992-10-15\",\"espn_id\":2577042},\"4304\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033234\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1581711951884,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"odom\",\"depth_chart_position\":null,\"player_id\":\"4304\",\"birth_city\":null,\"fantasy_data_id\":19152,\"years_exp\":3,\"hashtag\":\"#ChrisOdom-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":12417,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Odom\",\"sportradar_id\":\"3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5\",\"pandascore_id\":null,\"yahoo_id\":30462,\"last_name\":\"Odom\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":736802,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisodom\",\"birth_date\":\"1994-09-16\",\"espn_id\":3042361},\"4595\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033747\",\"first_name\":\"Dontez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1514946901675,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":null,\"player_id\":\"4595\",\"birth_city\":null,\"fantasy_data_id\":19482,\"years_exp\":3,\"hashtag\":\"#DontezFord-NFL-FA-83\",\"search_first_name\":\"dontez\",\"rotowire_id\":12100,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dontez Ford\",\"sportradar_id\":\"edd8d94d-4998-4ea1-b11b-305bee4803ec\",\"pandascore_id\":null,\"yahoo_id\":30767,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692191,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dontezford\",\"birth_date\":\"1994-02-03\",\"espn_id\":2970410},\"774\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027245\",\"first_name\":\"Vincent\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1561580710748,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rey\",\"depth_chart_position\":null,\"player_id\":\"774\",\"birth_city\":null,\"fantasy_data_id\":12581,\"years_exp\":10,\"hashtag\":\"#VincentRey-NFL-FA-57\",\"search_first_name\":\"vincent\",\"rotowire_id\":7215,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Vincent Rey\",\"sportradar_id\":\"e232b84c-2e05-494a-98ac-69489544d16f\",\"pandascore_id\":null,\"yahoo_id\":24336,\"last_name\":\"Rey\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Bayside (NY)\",\"depth_chart_order\":null,\"stats_id\":334037,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"vincentrey\",\"birth_date\":\"1987-09-06\",\"espn_id\":13766},\"7115\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charlie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587835242621,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heck\",\"depth_chart_position\":\"RT\",\"player_id\":\"7115\",\"birth_city\":null,\"fantasy_data_id\":21947,\"years_exp\":0,\"hashtag\":\"#CharlieHeck-NFL-HOU-67\",\"search_first_name\":\"charlie\",\"rotowire_id\":14667,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Charlie Heck\",\"sportradar_id\":\"608ebe54-1b57-4775-808f-ab2e02637a75\",\"pandascore_id\":null,\"yahoo_id\":32796,\"last_name\":\"Heck\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Rockhurst (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'8\\\"\",\"search_full_name\":\"charlieheck\",\"birth_date\":\"1996-11-20\",\"espn_id\":3895840},\"3306\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032780\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606149314193,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":\"RB\",\"player_id\":\"3306\",\"birth_city\":null,\"fantasy_data_id\":18067,\"years_exp\":4,\"hashtag\":\"#JordanHoward-NFL-PHI-34\",\"search_first_name\":\"jordan\",\"rotowire_id\":10815,\"rotoworld_id\":11339,\"active\":true,\"search_rank\":74,\"age\":26,\"full_name\":\"Jordan Howard\",\"sportradar_id\":\"4b09ab09-1457-4c9d-a99d-6a03d8e76c76\",\"pandascore_id\":null,\"yahoo_id\":29384,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Gardendale (AL)\",\"depth_chart_order\":4,\"stats_id\":750802,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanhoward\",\"birth_date\":\"1994-11-02\",\"espn_id\":3060022},\"524\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"524\",\"birth_city\":null,\"fantasy_data_id\":11005,\"years_exp\":10,\"hashtag\":\"#KyleWilson-NFL-FA-24\",\"search_first_name\":\"kyle\",\"rotowire_id\":6618,\"rotoworld_id\":5776,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Kyle Wilson\",\"sportradar_id\":\"0ff30eb3-f523-424f-8822-5d3693e8a41f\",\"pandascore_id\":null,\"yahoo_id\":24004,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Piscataway (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kylewilson\",\"birth_date\":\"1987-09-08\",\"espn_id\":13237},\"2319\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031547\",\"first_name\":\"DeVante\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606502104154,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2319\",\"birth_city\":null,\"fantasy_data_id\":16775,\"years_exp\":5,\"hashtag\":\"#DeVanteParker-NFL-MIA-11\",\"search_first_name\":\"devante\",\"rotowire_id\":10152,\"rotoworld_id\":10415,\"active\":true,\"search_rank\":74,\"age\":27,\"full_name\":\"DeVante Parker\",\"sportradar_id\":\"e9ee9209-dd8f-4e4a-be3c-407756a2749c\",\"pandascore_id\":null,\"yahoo_id\":28402,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Ballard (KY)\",\"depth_chart_order\":1,\"stats_id\":602241,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'3\\\"\",\"search_full_name\":\"devanteparker\",\"birth_date\":\"1993-01-20\",\"espn_id\":2576623},\"3160\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033055\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605147308233,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ramsey\",\"depth_chart_position\":\"RCB\",\"player_id\":\"3160\",\"birth_city\":null,\"fantasy_data_id\":17919,\"years_exp\":4,\"hashtag\":\"#JalenRamsey-NFL-LAR-20\",\"search_first_name\":\"jalen\",\"rotowire_id\":11111,\"rotoworld_id\":11219,\"active\":true,\"search_rank\":946,\"age\":26,\"full_name\":\"Jalen Ramsey\",\"sportradar_id\":\"ca53fda9-d20a-4bc7-b8dc-deef28355399\",\"pandascore_id\":null,\"yahoo_id\":29239,\"last_name\":\"Ramsey\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Brentwood Academy (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jalenramsey\",\"birth_date\":\"1994-10-24\",\"espn_id\":3045373},\"7140\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lachavious\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605902702606,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":\"RG\",\"player_id\":\"7140\",\"birth_city\":null,\"fantasy_data_id\":22143,\"years_exp\":0,\"hashtag\":\"#LachaviousSimmons-NFL-CHI-73\",\"search_first_name\":\"lachavious\",\"rotowire_id\":14830,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Lachavious Simmons\",\"sportradar_id\":\"a5838673-7753-426c-a18e-5195fbfdcc37\",\"pandascore_id\":null,\"yahoo_id\":32897,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"Selma (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lachavioussimmons\",\"birth_date\":\"1996-09-12\",\"espn_id\":3912245},\"3358\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032435\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599097537637,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zettel\",\"depth_chart_position\":null,\"player_id\":\"3358\",\"birth_city\":null,\"fantasy_data_id\":18119,\"years_exp\":4,\"hashtag\":\"#AnthonyZettel-NFL-NO-92\",\"search_first_name\":\"anthony\",\"rotowire_id\":10887,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1032,\"age\":28,\"full_name\":\"Anthony Zettel\",\"sportradar_id\":\"6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee\",\"pandascore_id\":null,\"yahoo_id\":29436,\"last_name\":\"Zettel\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Ogemaw Heights (MI)\",\"depth_chart_order\":null,\"stats_id\":609502,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonyzettel\",\"birth_date\":\"1992-08-09\",\"espn_id\":2582150},\"6351\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035441\",\"first_name\":\"Corrion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ballard\",\"depth_chart_position\":null,\"player_id\":\"6351\",\"birth_city\":null,\"fantasy_data_id\":21327,\"years_exp\":1,\"hashtag\":\"#CorrionBallard-NFL-FA-35\",\"search_first_name\":\"corrion\",\"rotowire_id\":14255,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Corrion Ballard\",\"sportradar_id\":\"ed58a10c-d9c1-4ec5-8b25-0ba65aade9f4\",\"pandascore_id\":null,\"yahoo_id\":32149,\"last_name\":\"Ballard\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'3\\\"\",\"search_full_name\":\"corrionballard\",\"birth_date\":\"1997-12-15\",\"espn_id\":4243243},\"1415\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030434\",\"first_name\":\"Vince\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605367558408,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1415\",\"birth_city\":null,\"fantasy_data_id\":14975,\"years_exp\":7,\"hashtag\":\"#VinceWilliams-NFL-PIT-98\",\"search_first_name\":\"vince\",\"rotowire_id\":8970,\"rotoworld_id\":null,\"active\":true,\"search_rank\":721,\"age\":30,\"full_name\":\"Vince Williams\",\"sportradar_id\":\"0adb6bc1-17fd-4ca5-90ad-89ca06950bc8\",\"pandascore_id\":null,\"yahoo_id\":26829,\"last_name\":\"Williams\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Florida State\",\"high_school\":\"Ridge Community (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"vincewilliams\",\"birth_date\":\"1989-12-27\",\"espn_id\":15934},\"272\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026164\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"DB\"],\"news_updated\":1541453717854,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"272\",\"birth_city\":null,\"fantasy_data_id\":6828,\"years_exp\":12,\"hashtag\":\"#ChrisJohnson-NFL-FA-23\",\"search_first_name\":\"chris\",\"rotowire_id\":5627,\"rotoworld_id\":4743,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Chris Johnson\",\"sportradar_id\":\"e5e0c7f9-c4e3-4de4-8052-d9c083393a99\",\"pandascore_id\":null,\"yahoo_id\":8801,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Olympia (FL)\",\"depth_chart_order\":null,\"stats_id\":268484,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrisjohnson\",\"birth_date\":\"1985-09-23\",\"espn_id\":11258},\"3300\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032940\",\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606074919412,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"RB\",\"player_id\":\"3300\",\"birth_city\":null,\"fantasy_data_id\":18061,\"years_exp\":4,\"hashtag\":\"#DeAndreWashington-NFL-MIA-31\",\"search_first_name\":\"deandre\",\"rotowire_id\":10893,\"rotoworld_id\":11446,\"active\":true,\"search_rank\":284,\"age\":27,\"full_name\":\"DeAndre Washington\",\"sportradar_id\":\"c7b7d27f-97c3-4c12-95c4-36205175c959\",\"pandascore_id\":null,\"yahoo_id\":29377,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Thurgood Marshall (TX)\",\"depth_chart_order\":3,\"stats_id\":605335,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'8\\\"\",\"search_full_name\":\"deandrewashington\",\"birth_date\":\"1993-02-22\",\"espn_id\":2577654},\"5919\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035442\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606191016789,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holyfield\",\"depth_chart_position\":\"RB\",\"player_id\":\"5919\",\"birth_city\":null,\"fantasy_data_id\":20809,\"years_exp\":1,\"hashtag\":\"#ElijahHolyfield-NFL-PHI-33\",\"search_first_name\":\"elijah\",\"rotowire_id\":13534,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2016,\"age\":22,\"full_name\":\"Elijah Holyfield\",\"sportradar_id\":\"ebae3f19-b8bb-43d6-ae78-d21e9dc08b61\",\"pandascore_id\":null,\"yahoo_id\":32148,\"last_name\":\"Holyfield\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Woodward Academy (GA)\",\"depth_chart_order\":6,\"stats_id\":922028,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"elijahholyfield\",\"birth_date\":\"1997-11-30\",\"espn_id\":4035006},\"3720\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032633\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606275356069,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilbert\",\"depth_chart_position\":\"LDE\",\"player_id\":\"3720\",\"birth_city\":null,\"fantasy_data_id\":18528,\"years_exp\":4,\"hashtag\":\"#ReggieGilbert-NFL-JAX-93\",\"search_first_name\":\"reggie\",\"rotowire_id\":11445,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1089,\"age\":27,\"full_name\":\"Reggie Gilbert\",\"sportradar_id\":\"b14bcb8f-a563-4b68-8a4f-5ef7da8b181d\",\"pandascore_id\":null,\"yahoo_id\":29727,\"last_name\":\"Gilbert\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Arizona\",\"high_school\":\"Fairfax (AZ)\",\"depth_chart_order\":2,\"stats_id\":593546,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'3\\\"\",\"search_full_name\":\"reggiegilbert\",\"birth_date\":\"1993-04-01\",\"espn_id\":2576755},\"1027\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029653\",\"first_name\":\"Fletcher\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601221239337,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":\"LDT\",\"player_id\":\"1027\",\"birth_city\":null,\"fantasy_data_id\":13721,\"years_exp\":8,\"hashtag\":\"#FletcherCox-NFL-PHI-91\",\"search_first_name\":\"fletcher\",\"rotowire_id\":8154,\"rotoworld_id\":7431,\"active\":true,\"search_rank\":652,\"age\":29,\"full_name\":\"Fletcher Cox\",\"sportradar_id\":\"49671677-0e37-4c70-ae1b-ec36be357eb9\",\"pandascore_id\":null,\"yahoo_id\":25722,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Yazoo City (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"fletchercox\",\"birth_date\":\"1990-12-13\",\"espn_id\":14941},\"741\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Breno\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535403307115,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"giacomini\",\"depth_chart_position\":null,\"player_id\":\"741\",\"birth_city\":null,\"fantasy_data_id\":12345,\"years_exp\":12,\"hashtag\":\"#BrenoGiacomini-NFL-FA-68\",\"search_first_name\":\"breno\",\"rotowire_id\":7009,\"rotoworld_id\":4902,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Breno Giacomini\",\"sportradar_id\":\"2790db28-d487-43fa-a65e-0c80da7cb9c8\",\"pandascore_id\":null,\"yahoo_id\":8927,\"last_name\":\"Giacomini\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Malden (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brenogiacomini\",\"birth_date\":\"1985-09-27\",\"espn_id\":11384},\"6301\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035669\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"FS\",\"player_id\":\"6301\",\"birth_city\":null,\"fantasy_data_id\":21131,\"years_exp\":1,\"hashtag\":\"#NickScott-NFL-LAR-33\",\"search_first_name\":\"nick\",\"rotowire_id\":13958,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1675,\"age\":25,\"full_name\":\"Nick Scott\",\"sportradar_id\":\"4d383922-53ab-48f8-bb8a-29176ea3ffbc\",\"pandascore_id\":null,\"yahoo_id\":32075,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Fairfax (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nickscott\",\"birth_date\":\"1995-05-17\",\"espn_id\":3116179},\"4676\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darreus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1507754701637,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":null,\"player_id\":\"4676\",\"birth_city\":null,\"fantasy_data_id\":19577,\"years_exp\":2,\"hashtag\":\"#DarreusRogers-NFL-FA-1\",\"search_first_name\":\"darreus\",\"rotowire_id\":11873,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Darreus Rogers\",\"sportradar_id\":\"ed94dcd6-b8c9-4de4-9e9c-41aea4e51a37\",\"pandascore_id\":null,\"yahoo_id\":30761,\"last_name\":\"Rogers\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691064,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"darreusrogers\",\"birth_date\":\"1993-09-03\",\"espn_id\":2971617},\"5150\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Heath\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harding\",\"depth_chart_position\":null,\"player_id\":\"5150\",\"birth_city\":null,\"fantasy_data_id\":20097,\"years_exp\":0,\"hashtag\":\"#HeathHarding-NFL-ATL-24\",\"search_first_name\":\"heath\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Heath Harding\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harding\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"heathharding\",\"birth_date\":null,\"espn_id\":3052477},\"6399\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kano\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":null,\"player_id\":\"6399\",\"birth_city\":null,\"fantasy_data_id\":21405,\"years_exp\":1,\"hashtag\":\"#KanoDillon-NFL-WAS-0\",\"search_first_name\":\"kano\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kano Dillon\",\"sportradar_id\":\"f0f0b2f2-14b7-497d-a9bb-a5166c65bc56\",\"pandascore_id\":null,\"yahoo_id\":32183,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":840741,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kanodillon\",\"birth_date\":null,\"espn_id\":null},\"1748\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boggs\",\"depth_chart_position\":null,\"player_id\":\"1748\",\"birth_city\":null,\"fantasy_data_id\":15749,\"years_exp\":9,\"hashtag\":\"#TaylorBoggs-NFL-FA-57\",\"search_first_name\":\"taylor\",\"rotowire_id\":9009,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Taylor Boggs\",\"sportradar_id\":\"dbdd3f14-29a4-4060-a04e-2af906eaab8b\",\"pandascore_id\":null,\"yahoo_id\":25437,\"last_name\":\"Boggs\",\"metadata\":null,\"college\":\"Humboldt State\",\"high_school\":\"Upland (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'3\\\"\",\"search_full_name\":\"taylorboggs\",\"birth_date\":\"1987-02-20\",\"espn_id\":14725},\"6083\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035269\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606232752476,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gay\",\"depth_chart_position\":\"K\",\"player_id\":\"6083\",\"birth_city\":null,\"fantasy_data_id\":20769,\"years_exp\":1,\"hashtag\":\"#MattGay-NFL-LAR-1\",\"search_first_name\":\"matt\",\"rotowire_id\":13673,\"rotoworld_id\":14248,\"active\":true,\"search_rank\":1535,\"age\":26,\"full_name\":\"Matt Gay\",\"sportradar_id\":\"2b90e091-ef78-4753-93eb-0acf3632c206\",\"pandascore_id\":null,\"yahoo_id\":31977,\"last_name\":\"Gay\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Orem (UT)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mattgay\",\"birth_date\":\"1994-03-15\",\"espn_id\":4249087},\"6750\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tago\",\"depth_chart_position\":null,\"player_id\":\"6750\",\"birth_city\":null,\"fantasy_data_id\":21667,\"years_exp\":1,\"hashtag\":\"#LoganTago-NFL-FA-60\",\"search_first_name\":\"logan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Logan Tago\",\"sportradar_id\":\"2ec62336-03b7-4568-ac64-c535e856dd08\",\"pandascore_id\":null,\"yahoo_id\":32656,\"last_name\":\"Tago\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"logantago\",\"birth_date\":null,\"espn_id\":3884234},\"7252\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"benton\",\"depth_chart_position\":null,\"player_id\":\"7252\",\"birth_city\":null,\"fantasy_data_id\":22252,\"years_exp\":0,\"hashtag\":\"#ElijahBenton-NFL-CLE-48\",\"search_first_name\":\"elijah\",\"rotowire_id\":15132,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1958,\"age\":24,\"full_name\":\"Elijah Benton\",\"sportradar_id\":\"4a7d7bfc-9fe6-4869-a741-d5d17b177edc\",\"pandascore_id\":null,\"yahoo_id\":33301,\"last_name\":\"Benton\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":\"Liberty Christian Academy (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"elijahbenton\",\"birth_date\":\"1996-09-05\",\"espn_id\":3910402},\"6661\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035574\",\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564596618134,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":null,\"player_id\":\"6661\",\"birth_city\":null,\"fantasy_data_id\":21568,\"years_exp\":1,\"hashtag\":\"#JosephParker-NFL-FA-80\",\"search_first_name\":\"joseph\",\"rotowire_id\":14296,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joseph Parker\",\"sportradar_id\":\"5fd75ad0-0363-4203-a00f-ec500f8e82a6\",\"pandascore_id\":null,\"yahoo_id\":32590,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"Tennessee-Chattanooga\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":868201,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'9\\\"\",\"search_full_name\":\"josephparker\",\"birth_date\":\"1996-07-24\",\"espn_id\":3918323},\"5390\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034076\",\"first_name\":\"Jamar\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1557176423918,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgloster\",\"depth_chart_position\":null,\"player_id\":\"5390\",\"birth_city\":null,\"fantasy_data_id\":20363,\"years_exp\":2,\"hashtag\":\"#JamarMcGloster-NFL-FA-60\",\"search_first_name\":\"jamar\",\"rotowire_id\":12688,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jamar McGloster\",\"sportradar_id\":\"a891204c-a3dc-4d72-a72a-b004ab4d9d96\",\"pandascore_id\":null,\"yahoo_id\":31332,\"last_name\":\"McGloster\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jamarmcgloster\",\"birth_date\":\"1995-06-04\",\"espn_id\":3048635},\"6983\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599778819603,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ojemudia\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6983\",\"birth_city\":null,\"fantasy_data_id\":22080,\"years_exp\":0,\"hashtag\":\"#MichaelOjemudia-NFL-DEN-23\",\"search_first_name\":\"michael\",\"rotowire_id\":14711,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1910,\"age\":23,\"full_name\":\"Michael Ojemudia\",\"sportradar_id\":\"bc399631-6a3c-4515-9f8b-acc9a08bc434\",\"pandascore_id\":null,\"yahoo_id\":32747,\"last_name\":\"Ojemudia\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Iowa\",\"high_school\":\"Harrison (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelojemudia\",\"birth_date\":\"1997-09-12\",\"espn_id\":3894830},\"7264\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"LB\"],\"news_updated\":1599693360012,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"7264\",\"birth_city\":null,\"fantasy_data_id\":22262,\"years_exp\":0,\"hashtag\":\"#JordanJones-NFL-FA-0\",\"search_first_name\":\"jordan\",\"rotowire_id\":14900,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jordan Jones\",\"sportradar_id\":\"54682970-96ec-46f4-9130-67672707768d\",\"pandascore_id\":null,\"yahoo_id\":33228,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Prairie View A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanjones\",\"birth_date\":null,\"espn_id\":null},\"6156\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035217\",\"first_name\":\"Benny\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606159514351,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"snell\",\"depth_chart_position\":null,\"player_id\":\"6156\",\"birth_city\":null,\"fantasy_data_id\":20950,\"years_exp\":1,\"hashtag\":\"#BennySnell-NFL-PIT-24\",\"search_first_name\":\"benny\",\"rotowire_id\":13453,\"rotoworld_id\":13951,\"active\":true,\"search_rank\":158,\"age\":22,\"full_name\":\"Benny Snell\",\"sportradar_id\":\"74af3906-083e-49d1-b8c6-556101390381\",\"pandascore_id\":null,\"yahoo_id\":31954,\"last_name\":\"Snell\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Kentucky\",\"high_school\":\"Westerville Central (OH)\",\"depth_chart_order\":null,\"stats_id\":920062,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bennysnell\",\"birth_date\":\"1998-02-26\",\"espn_id\":4035072},\"895\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1514601302288,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"todman\",\"depth_chart_position\":null,\"player_id\":\"895\",\"birth_city\":null,\"fantasy_data_id\":13102,\"years_exp\":9,\"hashtag\":\"#JordanTodman-NFL-FA-22\",\"search_first_name\":\"jordan\",\"rotowire_id\":7249,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jordan Todman\",\"sportradar_id\":\"a686927a-781f-4814-a4ef-a5ab34a09062\",\"pandascore_id\":null,\"yahoo_id\":24970,\"last_name\":\"Todman\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Dartmouth (MA)\",\"depth_chart_order\":null,\"stats_id\":465102,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jordantodman\",\"birth_date\":\"1990-02-24\",\"espn_id\":14186},\"783\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027195\",\"first_name\":\"Rafael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1563554414927,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bush\",\"depth_chart_position\":null,\"player_id\":\"783\",\"birth_city\":null,\"fantasy_data_id\":12668,\"years_exp\":10,\"hashtag\":\"#RafaelBush-NFL-FA-20\",\"search_first_name\":\"rafael\",\"rotowire_id\":6909,\"rotoworld_id\":6037,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Rafael Bush\",\"sportradar_id\":\"422f9f66-97d7-4bae-9840-24b3a24655e8\",\"pandascore_id\":null,\"yahoo_id\":24259,\"last_name\":\"Bush\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Elko (SC)\",\"depth_chart_order\":null,\"stats_id\":303006,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rafaelbush\",\"birth_date\":\"1987-05-12\",\"espn_id\":13544},\"3953\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trainor\",\"depth_chart_position\":null,\"player_id\":\"3953\",\"birth_city\":null,\"fantasy_data_id\":18786,\"years_exp\":0,\"hashtag\":\"#AustinTrainor-NFL-FA-9\",\"search_first_name\":\"austin\",\"rotowire_id\":11679,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Austin Trainor\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30080,\"last_name\":\"Trainor\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":515272,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"austintrainor\",\"birth_date\":null,\"espn_id\":null},\"2327\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032146\",\"first_name\":\"Bud\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603125617546,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dupree\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"2327\",\"birth_city\":null,\"fantasy_data_id\":16783,\"years_exp\":5,\"hashtag\":\"#BudDupree-NFL-PIT-48\",\"search_first_name\":\"bud\",\"rotowire_id\":10351,\"rotoworld_id\":10382,\"active\":true,\"search_rank\":856,\"age\":27,\"full_name\":\"Bud Dupree\",\"sportradar_id\":\"48dca4c3-c6ac-4122-aee6-26f7cd259824\",\"pandascore_id\":null,\"yahoo_id\":28410,\"last_name\":\"Dupree\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Kentucky\",\"high_school\":\"Wilkinson County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'4\\\"\",\"search_full_name\":\"buddupree\",\"birth_date\":\"1993-02-12\",\"espn_id\":2576702},\"2886\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sinz\",\"depth_chart_position\":null,\"player_id\":\"2886\",\"birth_city\":null,\"fantasy_data_id\":17354,\"years_exp\":0,\"hashtag\":\"#JustinSinz-NFL-FA-44\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justin Sinz\",\"sportradar_id\":\"df34745a-ff12-4923-99b2-3c4bc37ab814\",\"pandascore_id\":null,\"yahoo_id\":28749,\"last_name\":\"Sinz\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":548424,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinsinz\",\"birth_date\":\"1991-11-03\",\"espn_id\":2511683},\"5821\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1577468102982,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quinn\",\"depth_chart_position\":null,\"player_id\":\"5821\",\"birth_city\":null,\"fantasy_data_id\":19689,\"years_exp\":0,\"hashtag\":\"#DanQuinn-NFL-FA-0\",\"search_first_name\":\"dan\",\"rotowire_id\":null,\"rotoworld_id\":9279,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dan Quinn\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Quinn\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"danquinn\",\"birth_date\":null,\"espn_id\":null},\"2933\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knox\",\"depth_chart_position\":null,\"player_id\":\"2933\",\"birth_city\":null,\"fantasy_data_id\":17402,\"years_exp\":null,\"hashtag\":\"#CoreyKnox-NFL-FA-0\",\"search_first_name\":\"corey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Corey Knox\",\"sportradar_id\":\"a7e1f49d-2185-4b0b-b6b2-3b94c497cef5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Knox\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607506,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"coreyknox\",\"birth_date\":null,\"espn_id\":null},\"2037\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1514248801214,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgill\",\"depth_chart_position\":null,\"player_id\":\"2037\",\"birth_city\":null,\"fantasy_data_id\":16324,\"years_exp\":6,\"hashtag\":\"#KeithMcGill-NFL-FA-39\",\"search_first_name\":\"keith\",\"rotowire_id\":9336,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Keith McGill\",\"sportradar_id\":\"22e3f7ee-2866-4d65-8502-5bb5fc492a13\",\"pandascore_id\":null,\"yahoo_id\":27644,\"last_name\":\"McGill\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"La Mirada (CA)\",\"depth_chart_order\":null,\"stats_id\":591932,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keithmcgill\",\"birth_date\":\"1989-03-09\",\"espn_id\":16940},\"4900\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ozzie\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newsome\",\"depth_chart_position\":null,\"player_id\":\"4900\",\"birth_city\":null,\"fantasy_data_id\":19796,\"years_exp\":0,\"hashtag\":\"#OzzieNewsome-NFL-FA-0\",\"search_first_name\":\"ozzie\",\"rotowire_id\":null,\"rotoworld_id\":9498,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ozzie Newsome\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Newsome\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ozzienewsome\",\"birth_date\":null,\"espn_id\":null},\"2543\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032071\",\"first_name\":\"Trenton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606272655470,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2543\",\"birth_city\":null,\"fantasy_data_id\":17003,\"years_exp\":5,\"hashtag\":\"#TrentonBrown-NFL-LV-77\",\"search_first_name\":\"trenton\",\"rotowire_id\":10285,\"rotoworld_id\":10616,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Trenton Brown\",\"sportradar_id\":\"173831a7-d33d-4d2a-8dd9-4e36182e23cc\",\"pandascore_id\":null,\"yahoo_id\":28632,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Westover (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"380\",\"height\":\"6'8\\\"\",\"search_full_name\":\"trentonbrown\",\"birth_date\":\"1993-04-13\",\"espn_id\":3043109},\"1469\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029762\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600226440325,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wetzel\",\"depth_chart_position\":\"RT\",\"player_id\":\"1469\",\"birth_city\":null,\"fantasy_data_id\":15063,\"years_exp\":7,\"hashtag\":\"#JohnWetzel-NFL-ATL-75\",\"search_first_name\":\"john\",\"rotowire_id\":10073,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"John Wetzel\",\"sportradar_id\":\"543a98a6-42fb-4fbc-9899-f0ee59b1a114\",\"pandascore_id\":null,\"yahoo_id\":27072,\"last_name\":\"Wetzel\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Brashear (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'7\\\"\",\"search_full_name\":\"johnwetzel\",\"birth_date\":\"1991-07-18\",\"espn_id\":16247},\"5750\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034783\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hudson\",\"depth_chart_position\":null,\"player_id\":\"5750\",\"birth_city\":null,\"fantasy_data_id\":20659,\"years_exp\":2,\"hashtag\":\"#GarrettHudson-NFL-FA-46\",\"search_first_name\":\"garrett\",\"rotowire_id\":13352,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Garrett Hudson\",\"sportradar_id\":\"72fe03ff-a2f2-4c91-9d1b-149b4778c20d\",\"pandascore_id\":null,\"yahoo_id\":31746,\"last_name\":\"Hudson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823118,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garretthudson\",\"birth_date\":\"1995-01-24\",\"espn_id\":3074230},\"1948\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031140\",\"first_name\":\"AD\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1535474409941,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"denham\",\"depth_chart_position\":null,\"player_id\":\"1948\",\"birth_city\":null,\"fantasy_data_id\":16196,\"years_exp\":6,\"hashtag\":\"#ADDenham-NFL-FA-81\",\"search_first_name\":\"ad\",\"rotowire_id\":9498,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"AD Denham\",\"sportradar_id\":\"ba519b86-8211-4b2c-8fc1-c9fd38e6e3c5\",\"pandascore_id\":null,\"yahoo_id\":28192,\"last_name\":\"Denham\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591927,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"addenham\",\"birth_date\":\"1991-07-21\",\"espn_id\":17392},\"3527\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032848\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605141008047,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"peterson\",\"depth_chart_position\":null,\"player_id\":\"3527\",\"birth_city\":null,\"fantasy_data_id\":18293,\"years_exp\":4,\"hashtag\":\"#KevinPeterson-NFL-ARI-27\",\"search_first_name\":\"kevin\",\"rotowire_id\":11101,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1061,\"age\":26,\"full_name\":\"Kevin Peterson\",\"sportradar_id\":\"30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8\",\"pandascore_id\":null,\"yahoo_id\":29924,\"last_name\":\"Peterson\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Wagoner (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kevinpeterson\",\"birth_date\":\"1994-03-22\",\"espn_id\":2977742},\"6004\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035127\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1572810661422,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":\"C\",\"player_id\":\"6004\",\"birth_city\":null,\"fantasy_data_id\":20825,\"years_exp\":1,\"hashtag\":\"#AndreJames-NFL-LV-68\",\"search_first_name\":\"andre\",\"rotowire_id\":13652,\"rotoworld_id\":14562,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Andre James\",\"sportradar_id\":\"20a45a8e-a917-439d-ba28-33b84ab2401e\",\"pandascore_id\":null,\"yahoo_id\":32345,\"last_name\":\"James\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Herriman (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrejames\",\"birth_date\":\"1997-05-02\",\"espn_id\":3932244},\"4283\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033797\",\"first_name\":\"Khalfani\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606277756643,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"muhammad\",\"depth_chart_position\":\"RB\",\"player_id\":\"4283\",\"birth_city\":null,\"fantasy_data_id\":19129,\"years_exp\":3,\"hashtag\":\"#KhalfaniMuhammad-NFL-ARI-33\",\"search_first_name\":\"khalfani\",\"rotowire_id\":12089,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1229,\"age\":26,\"full_name\":\"Khalfani Muhammad\",\"sportradar_id\":\"d16f5060-d562-492b-9ab8-4a495920e808\",\"pandascore_id\":null,\"yahoo_id\":30355,\"last_name\":\"Muhammad\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Notre Dame (CA)\",\"depth_chart_order\":6,\"stats_id\":746973,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'7\\\"\",\"search_full_name\":\"khalfanimuhammad\",\"birth_date\":\"1994-09-26\",\"espn_id\":3052143},\"912\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trattou\",\"depth_chart_position\":null,\"player_id\":\"912\",\"birth_city\":null,\"fantasy_data_id\":13153,\"years_exp\":9,\"hashtag\":\"#JustinTrattou-NFL-FA-72\",\"search_first_name\":\"justin\",\"rotowire_id\":7916,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Justin Trattou\",\"sportradar_id\":\"ad5498a5-7909-40c0-a739-da0f413a00f8\",\"pandascore_id\":null,\"yahoo_id\":25510,\"last_name\":\"Trattou\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Don Bosco Preparatory (NJ)\",\"depth_chart_order\":null,\"stats_id\":396573,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"justintrattou\",\"birth_date\":\"1988-08-28\",\"espn_id\":14673},\"6192\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1560350110679,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blewitt\",\"depth_chart_position\":null,\"player_id\":\"6192\",\"birth_city\":null,\"fantasy_data_id\":21093,\"years_exp\":0,\"hashtag\":\"#ChrisBlewitt-NFL-FA-2\",\"search_first_name\":\"chris\",\"rotowire_id\":13896,\"rotoworld_id\":null,\"active\":true,\"search_rank\":736,\"age\":24,\"full_name\":\"Chris Blewitt\",\"sportradar_id\":\"d2be306a-9244-42f7-a3f6-46595f59f850\",\"pandascore_id\":null,\"yahoo_id\":31819,\"last_name\":\"Blewitt\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"chrisblewitt\",\"birth_date\":\"1995-05-02\",\"espn_id\":3045141},\"5517\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034480\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535838931569,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"needham\",\"depth_chart_position\":null,\"player_id\":\"5517\",\"birth_city\":null,\"fantasy_data_id\":20215,\"years_exp\":2,\"hashtag\":\"#MikeNeedham-NFL-FA-49\",\"search_first_name\":\"mike\",\"rotowire_id\":13214,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Needham\",\"sportradar_id\":\"4f9cc48d-e9dc-42b0-93d7-6938ec0a8e7d\",\"pandascore_id\":null,\"yahoo_id\":31313,\"last_name\":\"Needham\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mikeneedham\",\"birth_date\":null,\"espn_id\":2987188},\"434\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"434\",\"birth_city\":null,\"fantasy_data_id\":9123,\"years_exp\":11,\"hashtag\":\"#GarrettReynolds-NFL-FA-73\",\"search_first_name\":\"garrett\",\"rotowire_id\":7069,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Garrett Reynolds\",\"sportradar_id\":\"5fdee77b-5578-4f91-a3e1-4ea7b57bf1eb\",\"pandascore_id\":null,\"yahoo_id\":9420,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Carter (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'7\\\"\",\"search_full_name\":\"garrettreynolds\",\"birth_date\":\"1987-07-01\",\"espn_id\":12718},\"2027\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031254\",\"first_name\":\"Denico\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605899402220,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"autry\",\"depth_chart_position\":null,\"player_id\":\"2027\",\"birth_city\":null,\"fantasy_data_id\":16310,\"years_exp\":6,\"hashtag\":\"#DenicoAutry-NFL-IND-96\",\"search_first_name\":\"denico\",\"rotowire_id\":9746,\"rotoworld_id\":null,\"active\":true,\"search_rank\":805,\"age\":30,\"full_name\":\"Denico Autry\",\"sportradar_id\":\"a21d1e4a-aae6-4ebe-8f70-1087151b2b50\",\"pandascore_id\":null,\"yahoo_id\":28266,\"last_name\":\"Autry\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Albemarle (NC)\",\"depth_chart_order\":null,\"stats_id\":652571,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"denicoautry\",\"birth_date\":\"1990-07-15\",\"espn_id\":17447},\"7044\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602805242505,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blackmon\",\"depth_chart_position\":\"FS\",\"player_id\":\"7044\",\"birth_city\":null,\"fantasy_data_id\":22109,\"years_exp\":0,\"hashtag\":\"#JulianBlackmon-NFL-IND-32\",\"search_first_name\":\"julian\",\"rotowire_id\":14704,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1925,\"age\":22,\"full_name\":\"Julian Blackmon\",\"sportradar_id\":\"c2ec4712-147c-49b1-b6ec-fdb298913080\",\"pandascore_id\":null,\"yahoo_id\":32755,\"last_name\":\"Blackmon\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Layton (UT)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'1\\\"\",\"search_full_name\":\"julianblackmon\",\"birth_date\":\"1998-08-24\",\"espn_id\":4035661},\"5214\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034213\",\"first_name\":\"Holton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605046514964,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"5214\",\"birth_city\":null,\"fantasy_data_id\":20164,\"years_exp\":2,\"hashtag\":\"#HoltonHill-NFL-MIN-24\",\"search_first_name\":\"holton\",\"rotowire_id\":12462,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1426,\"age\":23,\"full_name\":\"Holton Hill\",\"sportradar_id\":\"27f3694c-a9a1-4c64-ab84-45bdea45d44e\",\"pandascore_id\":null,\"yahoo_id\":31233,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Lamar (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'2\\\"\",\"search_full_name\":\"holtonhill\",\"birth_date\":\"1997-03-28\",\"espn_id\":3929847},\"1676\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ja'Gared\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"1676\",\"birth_city\":null,\"fantasy_data_id\":15482,\"years_exp\":2,\"hashtag\":\"#JaGaredDavis-NFL-FA-58\",\"search_first_name\":\"jagared\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ja'Gared Davis\",\"sportradar_id\":\"e74eacd0-548e-4ff1-a731-5fd2d22fb04f\",\"pandascore_id\":null,\"yahoo_id\":27331,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jagareddavis\",\"birth_date\":\"1990-09-11\",\"espn_id\":16559},\"4955\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4955\",\"birth_city\":null,\"fantasy_data_id\":19819,\"years_exp\":0,\"hashtag\":\"#RonaldJones-NFL-FA-0\",\"search_first_name\":\"ronald\",\"rotowire_id\":null,\"rotoworld_id\":13061,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ronald Jones\",\"sportradar_id\":\"15965c39-17be-4338-911a-8f337f48a3ce\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jones\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ronaldjones\",\"birth_date\":null,\"espn_id\":null},\"4300\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leff\",\"depth_chart_position\":null,\"player_id\":\"4300\",\"birth_city\":null,\"fantasy_data_id\":19148,\"years_exp\":2,\"hashtag\":\"#RobertLeff-NFL-FA-70\",\"search_first_name\":\"robert\",\"rotowire_id\":12174,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Robert Leff\",\"sportradar_id\":\"b5d75734-dd0f-4c1e-83e8-222f83c98f3d\",\"pandascore_id\":null,\"yahoo_id\":30458,\"last_name\":\"Leff\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'6\\\"\",\"search_full_name\":\"robertleff\",\"birth_date\":\"1994-07-11\",\"espn_id\":2971021},\"7047\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"olson\",\"depth_chart_position\":null,\"player_id\":\"7047\",\"birth_city\":null,\"fantasy_data_id\":22014,\"years_exp\":0,\"hashtag\":\"#DanteOlson-NFL-PHI-0\",\"search_first_name\":\"dante\",\"rotowire_id\":14746,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dante Olson\",\"sportradar_id\":\"98a23dfb-57eb-4b43-a2b9-c3a494f9fb7d\",\"pandascore_id\":null,\"yahoo_id\":32967,\"last_name\":\"Olson\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Cascade Christian (OR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danteolson\",\"birth_date\":\"1997-01-06\",\"espn_id\":3910385},\"6594\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035408\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1585268447758,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"6594\",\"birth_city\":null,\"fantasy_data_id\":21421,\"years_exp\":1,\"hashtag\":\"#NickMoore-NFL-BAL-60\",\"search_first_name\":\"nick\",\"rotowire_id\":13821,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Nick Moore\",\"sportradar_id\":\"32ad0298-bbc6-4b66-bd4d-e87a169ad27a\",\"pandascore_id\":null,\"yahoo_id\":32496,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Brookwood (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickmoore\",\"birth_date\":\"1992-12-09\",\"espn_id\":3915184},\"2035\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Erle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ladson\",\"depth_chart_position\":null,\"player_id\":\"2035\",\"birth_city\":null,\"fantasy_data_id\":16322,\"years_exp\":1,\"hashtag\":\"#ErleLadson-NFL-FA-69\",\"search_first_name\":\"erle\",\"rotowire_id\":10796,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Erle Ladson\",\"sportradar_id\":\"b97c2a96-2ac6-45e8-9518-2fd3f40da0dd\",\"pandascore_id\":null,\"yahoo_id\":28212,\"last_name\":\"Ladson\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"346\",\"height\":\"6'6\\\"\",\"search_full_name\":\"erleladson\",\"birth_date\":\"1991-11-27\",\"espn_id\":null},\"2619\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031994\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544914838817,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"east\",\"depth_chart_position\":null,\"player_id\":\"2619\",\"birth_city\":null,\"fantasy_data_id\":17087,\"years_exp\":5,\"hashtag\":\"#AndrewEast-NFL-FA-55\",\"search_first_name\":\"andrew\",\"rotowire_id\":10605,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Andrew East\",\"sportradar_id\":\"3a3a069f-906e-4fa5-94ad-4cfd4e47b1e8\",\"pandascore_id\":null,\"yahoo_id\":29093,\"last_name\":\"East\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andreweast\",\"birth_date\":\"1991-09-17\",\"espn_id\":2511557},\"4254\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033968\",\"first_name\":\"Stacy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557528015222,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coley\",\"depth_chart_position\":null,\"player_id\":\"4254\",\"birth_city\":null,\"fantasy_data_id\":19100,\"years_exp\":3,\"hashtag\":\"#StacyColey-NFL-FA-12\",\"search_first_name\":\"stacy\",\"rotowire_id\":11851,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Stacy Coley\",\"sportradar_id\":\"16cd3b59-18a2-40a0-9236-e222bed17044\",\"pandascore_id\":null,\"yahoo_id\":30332,\"last_name\":\"Coley\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":739798,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"stacycoley\",\"birth_date\":\"1994-05-13\",\"espn_id\":3051923},\"5966\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035048\",\"first_name\":\"Wyatt\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1597374936078,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ray\",\"depth_chart_position\":null,\"player_id\":\"5966\",\"birth_city\":null,\"fantasy_data_id\":20921,\"years_exp\":1,\"hashtag\":\"#WyattRay-NFL-TEN-57\",\"search_first_name\":\"wyatt\",\"rotowire_id\":13881,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1592,\"age\":24,\"full_name\":\"Wyatt Ray\",\"sportradar_id\":\"b84b99f3-5fac-46ed-b892-5800159edbf9\",\"pandascore_id\":null,\"yahoo_id\":32287,\"last_name\":\"Ray\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Boston College\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"wyattray\",\"birth_date\":\"1996-10-24\",\"espn_id\":3915285},\"2215\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031180\",\"first_name\":\"Kadeem\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1536693302708,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"2215\",\"birth_city\":null,\"fantasy_data_id\":16596,\"years_exp\":6,\"hashtag\":\"#KadeemEdwards-NFL-FA-78\",\"search_first_name\":\"kadeem\",\"rotowire_id\":9445,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kadeem Edwards\",\"sportradar_id\":\"3f22bb95-48f6-4ff0-a199-55257d0aaf91\",\"pandascore_id\":null,\"yahoo_id\":27671,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kadeemedwards\",\"birth_date\":\"1991-01-24\",\"espn_id\":16859},\"7441\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kemp\",\"depth_chart_position\":null,\"player_id\":\"7441\",\"birth_city\":null,\"fantasy_data_id\":22420,\"years_exp\":0,\"hashtag\":\"#BrandonKemp-NFL-TEN-66\",\"search_first_name\":\"brandon\",\"rotowire_id\":15161,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Brandon Kemp\",\"sportradar_id\":\"413b48a9-4af4-4eeb-875c-44ad76b519f5\",\"pandascore_id\":null,\"yahoo_id\":33342,\"last_name\":\"Kemp\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Valdosta State\",\"high_school\":\"Columbia (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brandonkemp\",\"birth_date\":\"1997-01-18\",\"espn_id\":4408915},\"4356\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boulware\",\"depth_chart_position\":null,\"player_id\":\"4356\",\"birth_city\":null,\"fantasy_data_id\":19213,\"years_exp\":2,\"hashtag\":\"#BenBoulware-NFL-FA-50\",\"search_first_name\":\"ben\",\"rotowire_id\":11960,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ben Boulware\",\"sportradar_id\":\"28882b33-fbb8-4015-a76f-c4b55e9cb67d\",\"pandascore_id\":null,\"yahoo_id\":30378,\"last_name\":\"Boulware\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733739,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"benboulware\",\"birth_date\":\"1994-08-07\",\"espn_id\":3045122},\"2469\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032228\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1529089801406,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cardona\",\"depth_chart_position\":null,\"player_id\":\"2469\",\"birth_city\":null,\"fantasy_data_id\":16926,\"years_exp\":5,\"hashtag\":\"#JoeCardona-NFL-NE-49\",\"search_first_name\":\"joe\",\"rotowire_id\":10467,\"rotoworld_id\":10542,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Joe Cardona\",\"sportradar_id\":\"90517709-322d-47af-9360-77775a93496b\",\"pandascore_id\":null,\"yahoo_id\":28554,\"last_name\":\"Cardona\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Navy\",\"high_school\":\"Granite Hills (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joecardona\",\"birth_date\":\"1992-04-16\",\"espn_id\":2575907},\"1441\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030117\",\"first_name\":\"Kerwynn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567218057899,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1441\",\"birth_city\":null,\"fantasy_data_id\":15010,\"years_exp\":7,\"hashtag\":\"#KerwynnWilliams-NFL-FA-30\",\"search_first_name\":\"kerwynn\",\"rotowire_id\":8766,\"rotoworld_id\":8486,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kerwynn Williams\",\"sportradar_id\":\"051ac116-6d32-4e77-91da-e0ce27d202da\",\"pandascore_id\":null,\"yahoo_id\":26853,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Valley (NV)\",\"depth_chart_order\":null,\"stats_id\":507683,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kerwynnwilliams\",\"birth_date\":\"1991-06-09\",\"espn_id\":16024},\"263\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathis\",\"depth_chart_position\":null,\"player_id\":\"263\",\"birth_city\":null,\"fantasy_data_id\":6539,\"years_exp\":17,\"hashtag\":\"#RobertMathis-NFL-FA-98\",\"search_first_name\":\"robert\",\"rotowire_id\":3163,\"rotoworld_id\":1568,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Robert Mathis\",\"sportradar_id\":\"ef5fad36-71e2-433c-885d-9562ecd60bc5\",\"pandascore_id\":null,\"yahoo_id\":6474,\"last_name\":\"Mathis\",\"metadata\":null,\"college\":\"Alabama A&M\",\"high_school\":\"McNair (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robertmathis\",\"birth_date\":\"1981-02-26\",\"espn_id\":4596},\"4202\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033568\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601649606893,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hairston\",\"depth_chart_position\":null,\"player_id\":\"4202\",\"birth_city\":null,\"fantasy_data_id\":19048,\"years_exp\":3,\"hashtag\":\"#NateHairston-NFL-BAL-25\",\"search_first_name\":\"nate\",\"rotowire_id\":12016,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1192,\"age\":26,\"full_name\":\"Nate Hairston\",\"sportradar_id\":\"aaa9228d-7399-4b53-a2e7-259438bd2959\",\"pandascore_id\":null,\"yahoo_id\":30271,\"last_name\":\"Hairston\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Governor Thomas Jefferson (MD)\",\"depth_chart_order\":null,\"stats_id\":692372,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"natehairston\",\"birth_date\":\"1994-06-30\",\"espn_id\":2976259},\"1351\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1351\",\"birth_city\":null,\"fantasy_data_id\":14870,\"years_exp\":7,\"hashtag\":\"#DukeWilliams-NFL-FA-31\",\"search_first_name\":\"duke\",\"rotowire_id\":8779,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Duke Williams\",\"sportradar_id\":\"4d5777f6-1902-4128-8fe7-5e4cd15475b0\",\"pandascore_id\":null,\"yahoo_id\":26728,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Hug (NV)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dukewilliams\",\"birth_date\":\"1990-10-15\",\"espn_id\":15884},\"1422\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalid\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wooten\",\"depth_chart_position\":null,\"player_id\":\"1422\",\"birth_city\":null,\"fantasy_data_id\":14982,\"years_exp\":1,\"hashtag\":\"#KhalidWooten-NFL-FA-36\",\"search_first_name\":\"khalid\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Khalid Wooten\",\"sportradar_id\":\"28ebc440-c6da-4c77-870a-59a02e47a468\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wooten\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"khalidwooten\",\"birth_date\":\"1990-02-19\",\"espn_id\":15942},\"1770\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030050\",\"first_name\":\"Ray-Ray\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577221505647,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"armstrong\",\"depth_chart_position\":null,\"player_id\":\"1770\",\"birth_city\":null,\"fantasy_data_id\":15827,\"years_exp\":7,\"hashtag\":\"#RayRayArmstrong-NFL-SEA-52\",\"search_first_name\":\"rayray\",\"rotowire_id\":9072,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ray-Ray Armstrong\",\"sportradar_id\":\"1886860f-ad41-41a2-befe-fc2b5d361e38\",\"pandascore_id\":null,\"yahoo_id\":27287,\"last_name\":\"Armstrong\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Sanford (FL)\",\"depth_chart_order\":null,\"stats_id\":508920,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rayrayarmstrong\",\"birth_date\":\"1991-03-05\",\"espn_id\":16463},\"7058\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaylinn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603478154675,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hawkins\",\"depth_chart_position\":\"S\",\"player_id\":\"7058\",\"birth_city\":null,\"fantasy_data_id\":21933,\"years_exp\":0,\"hashtag\":\"#JaylinnHawkins-NFL-ATL-32\",\"search_first_name\":\"jaylinn\",\"rotowire_id\":14697,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1849,\"age\":23,\"full_name\":\"Jaylinn Hawkins\",\"sportradar_id\":\"c588e277-fc9e-4187-9358-2b9e1a2b0cd9\",\"pandascore_id\":null,\"yahoo_id\":32804,\"last_name\":\"Hawkins\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Buena Park (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jaylinnhawkins\",\"birth_date\":\"1997-08-25\",\"espn_id\":3858276},\"2136\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1518052801200,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":\"WLB\",\"player_id\":\"2136\",\"birth_city\":null,\"fantasy_data_id\":16475,\"years_exp\":4,\"hashtag\":\"#JayElliott-NFL-FA-56\",\"search_first_name\":\"jay\",\"rotowire_id\":9955,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jay Elliott\",\"sportradar_id\":\"4642915e-8c37-4692-9169-fa210b6efc8c\",\"pandascore_id\":null,\"yahoo_id\":28075,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":559263,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jayelliott\",\"birth_date\":\"1991-11-11\",\"espn_id\":16991},\"63\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vonta\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leach\",\"depth_chart_position\":null,\"player_id\":\"63\",\"birth_city\":null,\"fantasy_data_id\":1760,\"years_exp\":9,\"hashtag\":\"#VontaLeach-NFL-FA-44\",\"search_first_name\":\"vonta\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Vonta Leach\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Leach\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'0\\\"\",\"search_full_name\":\"vontaleach\",\"birth_date\":\"1981-11-06\",\"espn_id\":null},\"3582\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032355\",\"first_name\":\"Chester\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1600720839368,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3582\",\"birth_city\":null,\"fantasy_data_id\":18361,\"years_exp\":4,\"hashtag\":\"#ChesterRogers-NFL-TEN-80\",\"search_first_name\":\"chester\",\"rotowire_id\":11256,\"rotoworld_id\":11753,\"active\":true,\"search_rank\":1069,\"age\":26,\"full_name\":\"Chester Rogers\",\"sportradar_id\":\"958c9833-2e55-411a-8e0e-ecc229bbeb14\",\"pandascore_id\":null,\"yahoo_id\":29609,\"last_name\":\"Rogers\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Grambling\",\"high_school\":\"Lee (AL)\",\"depth_chart_order\":3,\"stats_id\":702949,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chesterrogers\",\"birth_date\":\"1994-01-12\",\"espn_id\":2983209},\"5515\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"olsen\",\"depth_chart_position\":null,\"player_id\":\"5515\",\"birth_city\":null,\"fantasy_data_id\":20212,\"years_exp\":0,\"hashtag\":\"#AustinOlsen-NFL-ARI-68\",\"search_first_name\":\"austin\",\"rotowire_id\":13216,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Austin Olsen\",\"sportradar_id\":\"870b53b7-1a36-487c-b086-b0daf0f5ce08\",\"pandascore_id\":null,\"yahoo_id\":31316,\"last_name\":\"Olsen\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"austinolsen\",\"birth_date\":null,\"espn_id\":3049219},\"3131\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reich\",\"depth_chart_position\":null,\"player_id\":\"3131\",\"birth_city\":null,\"fantasy_data_id\":17885,\"years_exp\":0,\"hashtag\":\"#FrankReich-NFL-FA-0\",\"search_first_name\":\"frank\",\"rotowire_id\":null,\"rotoworld_id\":9327,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Frank Reich\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Reich\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"frankreich\",\"birth_date\":null,\"espn_id\":null},\"2173\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kimario\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcfadden\",\"depth_chart_position\":null,\"player_id\":\"2173\",\"birth_city\":null,\"fantasy_data_id\":16533,\"years_exp\":6,\"hashtag\":\"#KimarioMcFadden-NFL-FA-33\",\"search_first_name\":\"kimario\",\"rotowire_id\":9856,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kimario McFadden\",\"sportradar_id\":\"df5146df-8415-47b0-9321-1ce0e3a7718d\",\"pandascore_id\":null,\"yahoo_id\":28065,\"last_name\":\"McFadden\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Mundy Mills\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kimariomcfadden\",\"birth_date\":\"1991-04-13\",\"espn_id\":17213},\"1271\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0022684\",\"first_name\":\"Donnie\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1538526002778,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1271\",\"birth_city\":null,\"fantasy_data_id\":14710,\"years_exp\":16,\"hashtag\":\"#DonnieJones-NFL-FA-5\",\"search_first_name\":\"donnie\",\"rotowire_id\":4066,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Donnie Jones\",\"sportradar_id\":\"ce74af98-fcfc-446d-83fe-e875d2e8dbd9\",\"pandascore_id\":null,\"yahoo_id\":6983,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Catholic HS (LA)\",\"depth_chart_order\":null,\"stats_id\":246431,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"donniejones\",\"birth_date\":\"1980-07-05\",\"espn_id\":5749},\"1432\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelley\",\"depth_chart_position\":null,\"player_id\":\"1432\",\"birth_city\":null,\"fantasy_data_id\":14994,\"years_exp\":1,\"hashtag\":\"#JeremyKelley-NFL-FA-84\",\"search_first_name\":\"jeremy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jeremy Kelley\",\"sportradar_id\":\"c5cf1d6c-75ca-418b-b56d-17408279b071\",\"pandascore_id\":null,\"yahoo_id\":26605,\"last_name\":\"Kelley\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jeremykelley\",\"birth_date\":\"1988-06-09\",\"espn_id\":15758},\"3447\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032963\",\"first_name\":\"Cayleb\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535761331202,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"3447\",\"birth_city\":null,\"fantasy_data_id\":18211,\"years_exp\":4,\"hashtag\":\"#CaylebJones-NFL-FA-16\",\"search_first_name\":\"cayleb\",\"rotowire_id\":11015,\"rotoworld_id\":11601,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cayleb Jones\",\"sportradar_id\":\"78fcf400-c989-4dad-88ca-77cb4f0e0730\",\"pandascore_id\":null,\"yahoo_id\":29679,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691349,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"caylebjones\",\"birth_date\":\"1993-03-21\",\"espn_id\":2971719},\"2395\":{\"position\":\"NT\",\"injury_notes\":\"Davis will miss 4-games to start the 2020 season after violating the NFL performance-enhancing substance policy.\",\"birth_country\":null,\"gsis_id\":\"00-0031938\",\"first_name\":\"Carl\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604966729239,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"NT\",\"player_id\":\"2395\",\"birth_city\":null,\"fantasy_data_id\":16851,\"years_exp\":5,\"hashtag\":\"#CarlDavis-NFL-NE-98\",\"search_first_name\":\"carl\",\"rotowire_id\":10313,\"rotoworld_id\":null,\"active\":true,\"search_rank\":882,\"age\":28,\"full_name\":\"Carl Davis\",\"sportradar_id\":\"50de642a-7e6c-4625-9966-ed8fc64acfa0\",\"pandascore_id\":null,\"yahoo_id\":28478,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Adlai E. Stevenson (MI)\",\"depth_chart_order\":1,\"stats_id\":553667,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"carldavis\",\"birth_date\":\"1992-03-02\",\"espn_id\":2511690},\"1969\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dewey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"1969\",\"birth_city\":null,\"fantasy_data_id\":16230,\"years_exp\":6,\"hashtag\":\"#DeweyMcDonald-NFL-FA-41\",\"search_first_name\":\"dewey\",\"rotowire_id\":9993,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Dewey McDonald\",\"sportradar_id\":\"6c6b0866-af70-4c66-90db-d6637268e22a\",\"pandascore_id\":null,\"yahoo_id\":27908,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"California, Pa.\",\"high_school\":\"Jefferson (WV)\",\"depth_chart_order\":null,\"stats_id\":694750,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deweymcdonald\",\"birth_date\":\"1990-06-10\",\"espn_id\":17078},\"939\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028110\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1556573756637,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fusco\",\"depth_chart_position\":null,\"player_id\":\"939\",\"birth_city\":null,\"fantasy_data_id\":13261,\"years_exp\":9,\"hashtag\":\"#BrandonFusco-NFL-FA-65\",\"search_first_name\":\"brandon\",\"rotowire_id\":7444,\"rotoworld_id\":6679,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Brandon Fusco\",\"sportradar_id\":\"6499ef2a-c7a9-4f14-abeb-8cc165333249\",\"pandascore_id\":null,\"yahoo_id\":24959,\"last_name\":\"Fusco\",\"metadata\":null,\"college\":\"Slippery Rock\",\"high_school\":\"Seneca Valley (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandonfusco\",\"birth_date\":\"1988-07-26\",\"espn_id\":14208},\"6720\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"yarbrough\",\"depth_chart_position\":null,\"player_id\":\"6720\",\"birth_city\":null,\"fantasy_data_id\":21643,\"years_exp\":1,\"hashtag\":\"#JohnYarbrough-NFL-FA-64\",\"search_first_name\":\"john\",\"rotowire_id\":14335,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Yarbrough\",\"sportradar_id\":\"b54c2b51-ef5e-4cd6-95bb-90abf67c2b81\",\"pandascore_id\":null,\"yahoo_id\":32633,\"last_name\":\"Yarbrough\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johnyarbrough\",\"birth_date\":null,\"espn_id\":3912409},\"6074\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035329\",\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606269355475,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parham\",\"depth_chart_position\":\"TE\",\"player_id\":\"6074\",\"birth_city\":null,\"fantasy_data_id\":20905,\"years_exp\":1,\"hashtag\":\"#DonaldParham-NFL-LAC-89\",\"search_first_name\":\"donald\",\"rotowire_id\":13602,\"rotoworld_id\":null,\"active\":true,\"search_rank\":459,\"age\":23,\"full_name\":\"Donald Parham\",\"sportradar_id\":\"4f246e92-3d21-450f-977a-dc16892c7238\",\"pandascore_id\":null,\"yahoo_id\":32456,\"last_name\":\"Parham\",\"metadata\":null,\"college\":\"Stetson University\",\"high_school\":\"Lake Gibson (FL)\",\"depth_chart_order\":3,\"stats_id\":875649,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'8\\\"\",\"search_full_name\":\"donaldparham\",\"birth_date\":\"1997-08-16\",\"espn_id\":3912092},\"231\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"devito\",\"depth_chart_position\":null,\"player_id\":\"231\",\"birth_city\":null,\"fantasy_data_id\":5748,\"years_exp\":13,\"hashtag\":\"#MikeDevito-NFL-FA-70\",\"search_first_name\":\"mike\",\"rotowire_id\":7114,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Mike Devito\",\"sportradar_id\":\"ae03b44e-bd25-42af-8e53-ed8967bc09b5\",\"pandascore_id\":null,\"yahoo_id\":8551,\"last_name\":\"Devito\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":\"Nauset Regional (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikedevito\",\"birth_date\":\"1984-06-10\",\"espn_id\":10763},\"603\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"603\",\"birth_city\":null,\"fantasy_data_id\":11405,\"years_exp\":10,\"hashtag\":\"#CJWilson-NFL-FA-69\",\"search_first_name\":\"cj\",\"rotowire_id\":6807,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"C.J. Wilson\",\"sportradar_id\":\"de55d337-d1b1-40d9-9c47-8a1654455be6\",\"pandascore_id\":null,\"yahoo_id\":24102,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Northside (NC)\",\"depth_chart_order\":null,\"stats_id\":297414,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cjwilson\",\"birth_date\":\"1987-03-30\",\"espn_id\":13491},\"2477\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031599\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567195856172,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"artispayne\",\"depth_chart_position\":null,\"player_id\":\"2477\",\"birth_city\":null,\"fantasy_data_id\":16934,\"years_exp\":5,\"hashtag\":\"#CameronArtisPayne-NFL-FA-34\",\"search_first_name\":\"cameron\",\"rotowire_id\":10187,\"rotoworld_id\":10364,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Cameron Artis-Payne\",\"sportradar_id\":\"f413d6fb-5105-4110-b915-d92840a3e656\",\"pandascore_id\":null,\"yahoo_id\":28562,\"last_name\":\"Artis-Payne\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Harrisburg (PA)\",\"depth_chart_order\":null,\"stats_id\":727272,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cameronartispayne\",\"birth_date\":\"1990-06-23\",\"espn_id\":3043097},\"5752\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034786\",\"first_name\":\"Sherman\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"badie\",\"depth_chart_position\":null,\"player_id\":\"5752\",\"birth_city\":null,\"fantasy_data_id\":20661,\"years_exp\":2,\"hashtag\":\"#ShermanBadie-NFL-FA-45\",\"search_first_name\":\"sherman\",\"rotowire_id\":13355,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sherman Badie\",\"sportradar_id\":\"80be80e9-8b41-49ac-919e-6a184a6f8f7c\",\"pandascore_id\":null,\"yahoo_id\":31748,\"last_name\":\"Badie\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":729542,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"shermanbadie\",\"birth_date\":\"1995-01-03\",\"espn_id\":3041102},\"6747\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035746\",\"first_name\":\"Fisayo\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"awolaja\",\"depth_chart_position\":null,\"player_id\":\"6747\",\"birth_city\":null,\"fantasy_data_id\":21664,\"years_exp\":1,\"hashtag\":\"#FisayoAwolaja-NFL-FA-79\",\"search_first_name\":\"fisayo\",\"rotowire_id\":14349,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Fisayo Awolaja\",\"sportradar_id\":\"52bb89b1-5d19-43fb-bb16-e7ed48eaa17c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Awolaja\",\"metadata\":null,\"college\":\"Northern Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"fisayoawolaja\",\"birth_date\":\"1996-08-20\",\"espn_id\":3910591},\"7152\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606245353332,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sloman\",\"depth_chart_position\":\"K\",\"player_id\":\"7152\",\"birth_city\":null,\"fantasy_data_id\":22154,\"years_exp\":0,\"hashtag\":\"#SamSloman-NFL-TEN-1\",\"search_first_name\":\"sam\",\"rotowire_id\":14837,\"rotoworld_id\":null,\"active\":true,\"search_rank\":418,\"age\":23,\"full_name\":\"Sam Sloman\",\"sportradar_id\":\"e44cc736-fe98-4b80-a138-4ebc5f087335\",\"pandascore_id\":null,\"yahoo_id\":32918,\"last_name\":\"Sloman\",\"metadata\":null,\"college\":\"Miami, O.\",\"high_school\":\"Pace Academy (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'8\\\"\",\"search_full_name\":\"samsloman\",\"birth_date\":\"1997-09-19\",\"espn_id\":4038994},\"3884\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarrett\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grace\",\"depth_chart_position\":null,\"player_id\":\"3884\",\"birth_city\":null,\"fantasy_data_id\":18706,\"years_exp\":0,\"hashtag\":\"#JarrettGrace-NFL-FA-45\",\"search_first_name\":\"jarrett\",\"rotowire_id\":11343,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarrett Grace\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30011,\"last_name\":\"Grace\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jarrettgrace\",\"birth_date\":\"1992-10-08\",\"espn_id\":2579841},\"2740\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Camaron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beard\",\"depth_chart_position\":null,\"player_id\":\"2740\",\"birth_city\":null,\"fantasy_data_id\":17208,\"years_exp\":0,\"hashtag\":\"#CamaronBeard-NFL-FA-64\",\"search_first_name\":\"camaron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Camaron Beard\",\"sportradar_id\":\"bfc89918-ef05-4125-a5f2-b7d4418642b9\",\"pandascore_id\":null,\"yahoo_id\":29142,\"last_name\":\"Beard\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"camaronbeard\",\"birth_date\":\"1991-08-13\",\"espn_id\":2513059},\"1639\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029889\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600901109921,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"omameh\",\"depth_chart_position\":\"RG\",\"player_id\":\"1639\",\"birth_city\":null,\"fantasy_data_id\":15374,\"years_exp\":7,\"hashtag\":\"#PatrickOmameh-NFL-LV-78\",\"search_first_name\":\"patrick\",\"rotowire_id\":9182,\"rotoworld_id\":8996,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Patrick Omameh\",\"sportradar_id\":\"cb3b5df2-231e-4040-867e-5b6020457be8\",\"pandascore_id\":null,\"yahoo_id\":27216,\"last_name\":\"Omameh\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"St. Francis DeSales (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'4\\\"\",\"search_full_name\":\"patrickomameh\",\"birth_date\":\"1989-12-29\",\"espn_id\":16327},\"7408\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Prince\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"7408\",\"birth_city\":null,\"fantasy_data_id\":22391,\"years_exp\":0,\"hashtag\":\"#PrinceSmith-NFL-CLE-0\",\"search_first_name\":\"prince\",\"rotowire_id\":14878,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Prince Smith\",\"sportradar_id\":\"f0f3547b-f556-4aba-9b06-03df7b11e4f3\",\"pandascore_id\":null,\"yahoo_id\":32969,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"New Hampshire\",\"high_school\":\"Imhotep Institute Charter (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"princesmith\",\"birth_date\":\"1997-11-28\",\"espn_id\":null},\"25\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"felton\",\"depth_chart_position\":null,\"player_id\":\"25\",\"birth_city\":null,\"fantasy_data_id\":733,\"years_exp\":12,\"hashtag\":\"#JeromeFelton-NFL-FA-42\",\"search_first_name\":\"jerome\",\"rotowire_id\":5784,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jerome Felton\",\"sportradar_id\":\"865740d9-3838-4733-a0eb-52193f101c32\",\"pandascore_id\":null,\"yahoo_id\":8912,\"last_name\":\"Felton\",\"metadata\":null,\"college\":\"Furman\",\"high_school\":\"Sequoya (TN)\",\"depth_chart_order\":null,\"stats_id\":253055,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeromefelton\",\"birth_date\":\"1986-07-03\",\"espn_id\":11369},\"1468\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leonhardt\",\"depth_chart_position\":null,\"player_id\":\"1468\",\"birth_city\":null,\"fantasy_data_id\":15056,\"years_exp\":7,\"hashtag\":\"#BrianLeonhardt-NFL-FA-87\",\"search_first_name\":\"brian\",\"rotowire_id\":9902,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brian Leonhardt\",\"sportradar_id\":\"b34b4d3d-2920-4d85-8fa0-3179c9598c9f\",\"pandascore_id\":null,\"yahoo_id\":27065,\"last_name\":\"Leonhardt\",\"metadata\":null,\"college\":\"Bemidji State\",\"high_school\":\"Spring Lake Park\",\"depth_chart_order\":null,\"stats_id\":694691,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brianleonhardt\",\"birth_date\":\"1990-04-02\",\"espn_id\":16265},\"4206\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033465\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564531808313,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"asiata\",\"depth_chart_position\":null,\"player_id\":\"4206\",\"birth_city\":null,\"fantasy_data_id\":19052,\"years_exp\":3,\"hashtag\":\"#IsaacAsiata-NFL-FA-72\",\"search_first_name\":\"isaac\",\"rotowire_id\":11753,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Isaac Asiata\",\"sportradar_id\":\"60121cb4-ba9b-4f3d-9add-7d55890e4795\",\"pandascore_id\":null,\"yahoo_id\":30277,\"last_name\":\"Asiata\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaacasiata\",\"birth_date\":\"1992-12-29\",\"espn_id\":2575978},\"2490\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gaines\",\"depth_chart_position\":null,\"player_id\":\"2490\",\"birth_city\":null,\"fantasy_data_id\":16949,\"years_exp\":5,\"hashtag\":\"#CharlesGaines-NFL-FA-43\",\"search_first_name\":\"charles\",\"rotowire_id\":10411,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Charles Gaines\",\"sportradar_id\":\"beead76d-80cb-4f96-b78d-470b90bf2601\",\"pandascore_id\":null,\"yahoo_id\":28577,\"last_name\":\"Gaines\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Central\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"charlesgaines\",\"birth_date\":\"1992-10-03\",\"espn_id\":2576621},\"253\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"253\",\"birth_city\":null,\"fantasy_data_id\":6302,\"years_exp\":13,\"hashtag\":\"#JamesJones-NFL-FA-89\",\"search_first_name\":\"james\",\"rotowire_id\":5391,\"rotoworld_id\":4242,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"James Jones\",\"sportradar_id\":\"b5584569-4a6d-4739-a810-eec2b5edeea4\",\"pandascore_id\":null,\"yahoo_id\":8332,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Gunderson (CA)\",\"depth_chart_order\":null,\"stats_id\":218298,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesjones\",\"birth_date\":\"1984-03-31\",\"espn_id\":10522},\"5553\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034231\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1546993832969,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"5553\",\"birth_city\":null,\"fantasy_data_id\":20407,\"years_exp\":2,\"hashtag\":\"#DariusJames-NFL-FA-70\",\"search_first_name\":\"darius\",\"rotowire_id\":13133,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Darius James\",\"sportradar_id\":\"adaa09ba-2a08-4910-ab31-e6641c3c4941\",\"pandascore_id\":null,\"yahoo_id\":31752,\"last_name\":\"James\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dariusjames\",\"birth_date\":\"1993-11-30\",\"espn_id\":3046696},\"1324\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Edwin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":null,\"player_id\":\"1324\",\"birth_city\":null,\"fantasy_data_id\":14821,\"years_exp\":1,\"hashtag\":\"#EdwinBaker-NFL-FA-27\",\"search_first_name\":\"edwin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Edwin Baker\",\"sportradar_id\":\"dd4d6ebd-8e10-40c9-a3f5-a71e1aefd41b\",\"pandascore_id\":null,\"yahoo_id\":25960,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":511501,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'8\\\"\",\"search_full_name\":\"edwinbaker\",\"birth_date\":\"1991-06-01\",\"espn_id\":14892},\"4515\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4515\",\"birth_city\":null,\"fantasy_data_id\":19387,\"years_exp\":3,\"hashtag\":\"#BJJohnson-NFL-FA-0\",\"search_first_name\":\"bj\",\"rotowire_id\":12328,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"B.J. Johnson\",\"sportradar_id\":\"26ad2fc4-fd14-4428-9b02-3399b8140fa4\",\"pandascore_id\":null,\"yahoo_id\":30691,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605925,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bjjohnson\",\"birth_date\":\"1993-02-22\",\"espn_id\":2567879},\"4149\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033948\",\"first_name\":\"Jamaal\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606107613494,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"4149\",\"birth_city\":null,\"fantasy_data_id\":18995,\"years_exp\":3,\"hashtag\":\"#JamaalWilliams-NFL-GB-30\",\"search_first_name\":\"jamaal\",\"rotowire_id\":11777,\"rotoworld_id\":12298,\"active\":true,\"search_rank\":191,\"age\":25,\"full_name\":\"Jamaal Williams\",\"sportradar_id\":\"122e131c-b08c-4b10-901d-481a20aeffb8\",\"pandascore_id\":null,\"yahoo_id\":30247,\"last_name\":\"Williams\",\"metadata\":{\"injury_override_regular_2020_9\":\"COV\"},\"college\":\"Brigham Young\",\"high_school\":\"Summit (CA)\",\"depth_chart_order\":2,\"stats_id\":695311,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jamaalwilliams\",\"birth_date\":\"1995-04-03\",\"espn_id\":2980453},\"4444\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033440\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598405139635,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cioffi\",\"depth_chart_position\":null,\"player_id\":\"4444\",\"birth_city\":null,\"fantasy_data_id\":19305,\"years_exp\":3,\"hashtag\":\"#AnthonyCioffi-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":14605,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Anthony Cioffi\",\"sportradar_id\":\"7b378e5b-6414-4bc2-8ee8-c196d2ed7d78\",\"pandascore_id\":null,\"yahoo_id\":30628,\"last_name\":\"Cioffi\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"anthonycioffi\",\"birth_date\":\"1994-08-26\",\"espn_id\":3047486},\"5271\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034449\",\"first_name\":\"Buddy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605708329396,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"howell\",\"depth_chart_position\":\"RB\",\"player_id\":\"5271\",\"birth_city\":null,\"fantasy_data_id\":20318,\"years_exp\":2,\"hashtag\":\"#BuddyHowell-NFL-HOU-38\",\"search_first_name\":\"buddy\",\"rotowire_id\":13185,\"rotoworld_id\":null,\"active\":true,\"search_rank\":421,\"age\":24,\"full_name\":\"Buddy Howell\",\"sportradar_id\":\"7f5c931b-4ebd-4309-a1d2-e04a5cf782e8\",\"pandascore_id\":null,\"yahoo_id\":31537,\"last_name\":\"Howell\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Coral Gables (FL)\",\"depth_chart_order\":4,\"stats_id\":833687,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"buddyhowell\",\"birth_date\":\"1996-03-27\",\"espn_id\":3122716},\"3906\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schneider\",\"depth_chart_position\":null,\"player_id\":\"3906\",\"birth_city\":null,\"fantasy_data_id\":18732,\"years_exp\":0,\"hashtag\":\"#JohnSchneider-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":9520,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Schneider\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Schneider\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johnschneider\",\"birth_date\":null,\"espn_id\":null},\"1508\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khaseem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":null,\"player_id\":\"1508\",\"birth_city\":null,\"fantasy_data_id\":15114,\"years_exp\":3,\"hashtag\":\"#KhaseemGreene-NFL-FA-0\",\"search_first_name\":\"khaseem\",\"rotowire_id\":8709,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Khaseem Greene\",\"sportradar_id\":\"b126d858-ade0-4609-9379-bfb034a3d506\",\"pandascore_id\":null,\"yahoo_id\":26740,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'1\\\"\",\"search_full_name\":\"khaseemgreene\",\"birth_date\":\"1989-02-04\",\"espn_id\":15889},\"593\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fox\",\"depth_chart_position\":null,\"player_id\":\"593\",\"birth_city\":null,\"fantasy_data_id\":11377,\"years_exp\":10,\"hashtag\":\"#JasonFox-NFL-FA-74\",\"search_first_name\":\"jason\",\"rotowire_id\":6546,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jason Fox\",\"sportradar_id\":\"8d9cf581-fb97-448a-a0de-b4dd41927bc8\",\"pandascore_id\":null,\"yahoo_id\":24104,\"last_name\":\"Fox\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"North Crowley (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jasonfox\",\"birth_date\":\"1988-05-02\",\"espn_id\":13364},\"645\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"645\",\"birth_city\":null,\"fantasy_data_id\":11646,\"years_exp\":16,\"hashtag\":\"#DwanEdwards-NFL-FA-92\",\"search_first_name\":\"dwan\",\"rotowire_id\":3906,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Dwan Edwards\",\"sportradar_id\":\"8dc2a6f9-9ad4-4fe6-99fb-2433ee7ba73b\",\"pandascore_id\":null,\"yahoo_id\":6810,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Columbus (MT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dwanedwards\",\"birth_date\":\"1981-05-16\",\"espn_id\":5576},\"1796\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031179\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535229302474,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hart\",\"depth_chart_position\":null,\"player_id\":\"1796\",\"birth_city\":null,\"fantasy_data_id\":15969,\"years_exp\":6,\"hashtag\":\"#TaylorHart-NFL-FA-76\",\"search_first_name\":\"taylor\",\"rotowire_id\":9416,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Taylor Hart\",\"sportradar_id\":\"120a785b-d0c7-4378-a91e-87650d1340f5\",\"pandascore_id\":null,\"yahoo_id\":27669,\"last_name\":\"Hart\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Tualatin (OR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"281\",\"height\":\"6'6\\\"\",\"search_full_name\":\"taylorhart\",\"birth_date\":\"1991-02-22\",\"espn_id\":16865},\"806\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1587840343572,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"806\",\"birth_city\":null,\"fantasy_data_id\":12762,\"years_exp\":4,\"hashtag\":\"#DanielThomas-NFL-FA-30\",\"search_first_name\":\"daniel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Daniel Thomas\",\"sportradar_id\":\"edbc58f3-86c0-40d9-9e55-25b19df79d4d\",\"pandascore_id\":null,\"yahoo_id\":24849,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"danielthomas\",\"birth_date\":\"1987-10-29\",\"espn_id\":14056},\"2220\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031182\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597983334604,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pamphile\",\"depth_chart_position\":\"LG\",\"player_id\":\"2220\",\"birth_city\":null,\"fantasy_data_id\":16604,\"years_exp\":6,\"hashtag\":\"#KevinPamphile-NFL-FA-66\",\"search_first_name\":\"kevin\",\"rotowire_id\":9744,\"rotoworld_id\":9668,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kevin Pamphile\",\"sportradar_id\":\"a797919f-59d2-42d2-be96-d78312fa6b48\",\"pandascore_id\":null,\"yahoo_id\":27677,\"last_name\":\"Pamphile\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Miami Central (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kevinpamphile\",\"birth_date\":\"1990-11-27\",\"espn_id\":16835},\"6975\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrion\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":null,\"player_id\":\"6975\",\"birth_city\":null,\"fantasy_data_id\":22074,\"years_exp\":0,\"hashtag\":\"#DarrionDaniels-NFL-SF-65\",\"search_first_name\":\"darrion\",\"rotowire_id\":14551,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1905,\"age\":22,\"full_name\":\"Darrion Daniels\",\"sportradar_id\":\"9b747474-db7f-4137-a559-38402c828139\",\"pandascore_id\":null,\"yahoo_id\":33195,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Bishop Dunne (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'4\\\"\",\"search_full_name\":\"darriondaniels\",\"birth_date\":\"1997-12-04\",\"espn_id\":3919607},\"6535\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035322\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604357429826,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"becker\",\"depth_chart_position\":\"TE\",\"player_id\":\"6535\",\"birth_city\":null,\"fantasy_data_id\":21409,\"years_exp\":1,\"hashtag\":\"#NateBecker-NFL-BUF-84\",\"search_first_name\":\"nate\",\"rotowire_id\":14208,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nate Becker\",\"sportradar_id\":\"34ecc6f0-1ee7-4d66-b8e6-e66307e5c835\",\"pandascore_id\":null,\"yahoo_id\":32449,\"last_name\":\"Becker\",\"metadata\":null,\"college\":\"Miami, O.\",\"high_school\":\"Carmel (IN)\",\"depth_chart_order\":6,\"stats_id\":830983,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'5\\\"\",\"search_full_name\":\"natebecker\",\"birth_date\":\"1996-03-24\",\"espn_id\":3125999},\"1818\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031307\",\"first_name\":\"Walt\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598586047348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"aikens\",\"depth_chart_position\":null,\"player_id\":\"1818\",\"birth_city\":null,\"fantasy_data_id\":16005,\"years_exp\":6,\"hashtag\":\"#WaltAikens-NFL-FA-35\",\"search_first_name\":\"walt\",\"rotowire_id\":9587,\"rotoworld_id\":null,\"active\":true,\"search_rank\":772,\"age\":29,\"full_name\":\"Walt Aikens\",\"sportradar_id\":\"19403487-1d34-434b-8fc2-a8852167af76\",\"pandascore_id\":null,\"yahoo_id\":27653,\"last_name\":\"Aikens\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":\"Harding University (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"waltaikens\",\"birth_date\":\"1991-06-19\",\"espn_id\":16819},\"3566\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ganus\",\"depth_chart_position\":null,\"player_id\":\"3566\",\"birth_city\":null,\"fantasy_data_id\":18341,\"years_exp\":0,\"hashtag\":\"#JakeGanus-NFL-FA-56\",\"search_first_name\":\"jake\",\"rotowire_id\":11498,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jake Ganus\",\"sportradar_id\":\"2bd8dee8-269f-48d9-a0c9-ba9b3b8961e1\",\"pandascore_id\":null,\"yahoo_id\":29539,\"last_name\":\"Ganus\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakeganus\",\"birth_date\":\"1993-03-22\",\"espn_id\":2977936},\"6968\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606278956400,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":\"SS\",\"player_id\":\"6968\",\"birth_city\":null,\"fantasy_data_id\":21937,\"years_exp\":0,\"hashtag\":\"#JordanFuller-NFL-LAR-32\",\"search_first_name\":\"jordan\",\"rotowire_id\":14698,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1852,\"age\":22,\"full_name\":\"Jordan Fuller\",\"sportradar_id\":\"c72cb618-fb6b-4327-8ced-91088c936c81\",\"pandascore_id\":null,\"yahoo_id\":32869,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Old Tappan (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanfuller\",\"birth_date\":\"1998-03-04\",\"espn_id\":4040613},\"3000\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031914\",\"first_name\":\"Olsen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1576114853194,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pierre\",\"depth_chart_position\":null,\"player_id\":\"3000\",\"birth_city\":null,\"fantasy_data_id\":17529,\"years_exp\":5,\"hashtag\":\"#OlsenPierre-NFL-FA-0\",\"search_first_name\":\"olsen\",\"rotowire_id\":10615,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Olsen Pierre\",\"sportradar_id\":\"0c042513-aba2-461c-ae16-db4bf83833fa\",\"pandascore_id\":null,\"yahoo_id\":28694,\"last_name\":\"Pierre\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'4\\\"\",\"search_full_name\":\"olsenpierre\",\"birth_date\":\"1991-08-27\",\"espn_id\":2579622},\"5696\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034696\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1536258604845,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okoye\",\"depth_chart_position\":null,\"player_id\":\"5696\",\"birth_city\":null,\"fantasy_data_id\":20617,\"years_exp\":2,\"hashtag\":\"#ChrisOkoye-NFL-FA-67\",\"search_first_name\":\"chris\",\"rotowire_id\":13330,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Okoye\",\"sportradar_id\":\"7305431a-7db7-47a0-ba82-cc4faff5f278\",\"pandascore_id\":null,\"yahoo_id\":31694,\"last_name\":\"Okoye\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chrisokoye\",\"birth_date\":\"1996-06-22\",\"espn_id\":4339830},\"126\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reece\",\"depth_chart_position\":null,\"player_id\":\"126\",\"birth_city\":null,\"fantasy_data_id\":3382,\"years_exp\":12,\"hashtag\":\"#MarcelReece-NFL-FA-44\",\"search_first_name\":\"marcel\",\"rotowire_id\":5951,\"rotoworld_id\":5094,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Marcel Reece\",\"sportradar_id\":\"814418e3-4db9-4baa-8b48-f66264d6ba38\",\"pandascore_id\":null,\"yahoo_id\":9158,\"last_name\":\"Reece\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Hesperia (CA)\",\"depth_chart_order\":null,\"stats_id\":324242,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marcelreece\",\"birth_date\":\"1985-06-23\",\"espn_id\":11717},\"3747\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032677\",\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606349703645,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"littleton\",\"depth_chart_position\":\"WLB\",\"player_id\":\"3747\",\"birth_city\":null,\"fantasy_data_id\":18559,\"years_exp\":4,\"hashtag\":\"#CoryLittleton-NFL-LV-42\",\"search_first_name\":\"cory\",\"rotowire_id\":11113,\"rotoworld_id\":11826,\"active\":true,\"search_rank\":1094,\"age\":27,\"full_name\":\"Cory Littleton\",\"sportradar_id\":\"385953af-6b16-42b8-9a58-23fd8d50d935\",\"pandascore_id\":null,\"yahoo_id\":29718,\"last_name\":\"Littleton\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Mount Miguel (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'3\\\"\",\"search_full_name\":\"corylittleton\",\"birth_date\":\"1993-11-18\",\"espn_id\":2978304},\"39\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Manny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lawson\",\"depth_chart_position\":null,\"player_id\":\"39\",\"birth_city\":null,\"fantasy_data_id\":1141,\"years_exp\":14,\"hashtag\":\"#MannyLawson-NFL-FA-91\",\"search_first_name\":\"manny\",\"rotowire_id\":4904,\"rotoworld_id\":3692,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Manny Lawson\",\"sportradar_id\":\"d776dd93-2e9a-4009-95d8-81bf89f89085\",\"pandascore_id\":null,\"yahoo_id\":7771,\"last_name\":\"Lawson\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Eastern Wayne (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mannylawson\",\"birth_date\":\"1984-07-03\",\"espn_id\":9608},\"379\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Fili\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moala\",\"depth_chart_position\":null,\"player_id\":\"379\",\"birth_city\":null,\"fantasy_data_id\":8620,\"years_exp\":6,\"hashtag\":\"#FiliMoala-NFL-FA-95\",\"search_first_name\":\"fili\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Fili Moala\",\"sportradar_id\":\"dd19adfc-c0a4-4980-9452-6489ec66a5f8\",\"pandascore_id\":null,\"yahoo_id\":9320,\"last_name\":\"Moala\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"filimoala\",\"birth_date\":\"1985-06-23\",\"espn_id\":12446},\"2441\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032133\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cobb\",\"depth_chart_position\":null,\"player_id\":\"2441\",\"birth_city\":null,\"fantasy_data_id\":16898,\"years_exp\":5,\"hashtag\":\"#DavidCobb-NFL-FA-23\",\"search_first_name\":\"david\",\"rotowire_id\":10149,\"rotoworld_id\":10369,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"David Cobb\",\"sportradar_id\":\"65e4d6cc-988b-42f6-9eef-4fc70eb8f564\",\"pandascore_id\":null,\"yahoo_id\":28526,\"last_name\":\"Cobb\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Ellison\",\"depth_chart_order\":null,\"stats_id\":590769,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"5'11\\\"\",\"search_full_name\":\"davidcobb\",\"birth_date\":\"1993-06-03\",\"espn_id\":2576303},\"911\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1514609702036,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"paysinger\",\"depth_chart_position\":null,\"player_id\":\"911\",\"birth_city\":null,\"fantasy_data_id\":13147,\"years_exp\":9,\"hashtag\":\"#SpencerPaysinger-NFL-FA-56\",\"search_first_name\":\"spencer\",\"rotowire_id\":7944,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Spencer Paysinger\",\"sportradar_id\":\"284f5b6f-cb48-42b6-97be-d1957e4d0bdb\",\"pandascore_id\":null,\"yahoo_id\":25508,\"last_name\":\"Paysinger\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Beverly Hills (CA)\",\"depth_chart_order\":null,\"stats_id\":335048,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"spencerpaysinger\",\"birth_date\":\"1988-06-28\",\"espn_id\":14648},\"227\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ball\",\"depth_chart_position\":null,\"player_id\":\"227\",\"birth_city\":null,\"fantasy_data_id\":5677,\"years_exp\":13,\"hashtag\":\"#AlanBall-NFL-FA-45\",\"search_first_name\":\"alan\",\"rotowire_id\":6897,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Alan Ball\",\"sportradar_id\":\"8450a2fe-7386-4ac5-951c-a5a4dfdd733c\",\"pandascore_id\":null,\"yahoo_id\":8491,\"last_name\":\"Ball\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"St. Martin de Porres (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alanball\",\"birth_date\":\"1985-03-29\",\"espn_id\":10680},\"5496\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034554\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1533525902738,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hearns\",\"depth_chart_position\":null,\"player_id\":\"5496\",\"birth_city\":null,\"fantasy_data_id\":20489,\"years_exp\":2,\"hashtag\":\"#JamesHearns-NFL-FA-49\",\"search_first_name\":\"james\",\"rotowire_id\":12966,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"James Hearns\",\"sportradar_id\":\"b0946b90-9a41-4a88-898e-eff0894e213b\",\"pandascore_id\":null,\"yahoo_id\":31288,\"last_name\":\"Hearns\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jameshearns\",\"birth_date\":\"1993-09-20\",\"espn_id\":3056719},\"1245\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029134\",\"first_name\":\"Beau\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1604515527562,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brinkley\",\"depth_chart_position\":null,\"player_id\":\"1245\",\"birth_city\":null,\"fantasy_data_id\":14590,\"years_exp\":8,\"hashtag\":\"#BeauBrinkley-NFL-TEN-48\",\"search_first_name\":\"beau\",\"rotowire_id\":8532,\"rotoworld_id\":null,\"active\":true,\"search_rank\":692,\"age\":30,\"full_name\":\"Beau Brinkley\",\"sportradar_id\":\"f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336\",\"pandascore_id\":null,\"yahoo_id\":26016,\"last_name\":\"Brinkley\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Missouri\",\"high_school\":\"Kearney (MO)\",\"depth_chart_order\":null,\"stats_id\":463435,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"beaubrinkley\",\"birth_date\":\"1990-01-25\",\"espn_id\":15355},\"5064\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034745\",\"first_name\":\"Tracy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605224113976,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"FS\",\"player_id\":\"5064\",\"birth_city\":null,\"fantasy_data_id\":19876,\"years_exp\":2,\"hashtag\":\"#TracyWalker-NFL-DET-21\",\"search_first_name\":\"tracy\",\"rotowire_id\":12747,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1315,\"age\":25,\"full_name\":\"Tracy Walker\",\"sportradar_id\":\"6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a\",\"pandascore_id\":null,\"yahoo_id\":31052,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Brunswick (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tracywalker\",\"birth_date\":\"1995-02-01\",\"espn_id\":3042499},\"511\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marlon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"511\",\"birth_city\":null,\"fantasy_data_id\":10961,\"years_exp\":10,\"hashtag\":\"#MarlonMoore-NFL-FA-15\",\"search_first_name\":\"marlon\",\"rotowire_id\":6812,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Marlon Moore\",\"sportradar_id\":\"52b93a85-f011-4049-8268-cd4de896b6e2\",\"pandascore_id\":null,\"yahoo_id\":24280,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Natomas (CA)\",\"depth_chart_order\":null,\"stats_id\":286417,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marlonmoore\",\"birth_date\":\"1987-09-03\",\"espn_id\":13616},\"2022\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030665\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605051961678,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sorensen\",\"depth_chart_position\":\"FS\",\"player_id\":\"2022\",\"birth_city\":null,\"fantasy_data_id\":16303,\"years_exp\":6,\"hashtag\":\"#DanielSorensen-NFL-KC-49\",\"search_first_name\":\"daniel\",\"rotowire_id\":9680,\"rotoworld_id\":null,\"active\":true,\"search_rank\":802,\"age\":30,\"full_name\":\"Daniel Sorensen\",\"sportradar_id\":\"d1e46e40-5e8c-4b5a-ae03-5d0093b98633\",\"pandascore_id\":null,\"yahoo_id\":28036,\"last_name\":\"Sorensen\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Colton (CA)\",\"depth_chart_order\":1,\"stats_id\":463549,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"danielsorensen\",\"birth_date\":\"1990-03-05\",\"espn_id\":17259},\"5859\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035676\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606511727914,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5859\",\"birth_city\":null,\"fantasy_data_id\":21042,\"years_exp\":1,\"hashtag\":\"#AJBrown-NFL-TEN-11\",\"search_first_name\":\"aj\",\"rotowire_id\":13432,\"rotoworld_id\":13946,\"active\":true,\"search_rank\":41,\"age\":23,\"full_name\":\"A.J. Brown\",\"sportradar_id\":\"a9e580f2-1fbe-46fb-887c-c84089b507e4\",\"pandascore_id\":null,\"yahoo_id\":31883,\"last_name\":\"Brown\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Mississippi\",\"high_school\":\"Starkville (MS)\",\"depth_chart_order\":1,\"stats_id\":944826,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ajbrown\",\"birth_date\":\"1997-06-30\",\"espn_id\":4047646},\"2825\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roach\",\"depth_chart_position\":null,\"player_id\":\"2825\",\"birth_city\":null,\"fantasy_data_id\":17293,\"years_exp\":1,\"hashtag\":\"#TrevorRoach-NFL-FA-52\",\"search_first_name\":\"trevor\",\"rotowire_id\":10741,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Trevor Roach\",\"sportradar_id\":\"e2daffa2-38af-4fd7-9111-9166fee55ac9\",\"pandascore_id\":null,\"yahoo_id\":28978,\"last_name\":\"Roach\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trevorroach\",\"birth_date\":\"1992-03-06\",\"espn_id\":2514179},\"6927\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605459310920,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watkins\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6927\",\"birth_city\":null,\"fantasy_data_id\":21957,\"years_exp\":0,\"hashtag\":\"#QuezWatkins-NFL-PHI-80\",\"search_first_name\":\"quez\",\"rotowire_id\":14464,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Quez Watkins\",\"sportradar_id\":\"ca85137c-205c-458e-8b77-8457849f614c\",\"pandascore_id\":null,\"yahoo_id\":32870,\"last_name\":\"Watkins\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Athens (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quezwatkins\",\"birth_date\":\"1998-06-09\",\"espn_id\":4050373},\"5283\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034244\",\"first_name\":\"Ka'raun\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557850830189,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"5283\",\"birth_city\":null,\"fantasy_data_id\":20352,\"years_exp\":2,\"hashtag\":\"#KaraunWhite-NFL-FA-12\",\"search_first_name\":\"karaun\",\"rotowire_id\":12954,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ka'raun White\",\"sportradar_id\":\"dac7d7da-efaf-4bfc-bbab-9424d4a88e49\",\"pandascore_id\":null,\"yahoo_id\":31463,\"last_name\":\"White\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":880004,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"karaunwhite\",\"birth_date\":\"1993-07-04\",\"espn_id\":3916085},\"6418\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035487\",\"first_name\":\"Tariq\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":null,\"player_id\":\"6418\",\"birth_city\":null,\"fantasy_data_id\":21321,\"years_exp\":1,\"hashtag\":\"#TariqCole-NFL-FA-60\",\"search_first_name\":\"tariq\",\"rotowire_id\":14047,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tariq Cole\",\"sportradar_id\":\"992d1531-9091-486d-93d1-53e8b060e950\",\"pandascore_id\":null,\"yahoo_id\":32156,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tariqcole\",\"birth_date\":\"1996-02-09\",\"espn_id\":3127365},\"3978\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"huesman\",\"depth_chart_position\":null,\"player_id\":\"3978\",\"birth_city\":null,\"fantasy_data_id\":18813,\"years_exp\":3,\"hashtag\":\"#JacobHuesman-NFL-FA-48\",\"search_first_name\":\"jacob\",\"rotowire_id\":11728,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jacob Huesman\",\"sportradar_id\":\"00c179ec-833c-4588-8192-a89add825d7c\",\"pandascore_id\":null,\"yahoo_id\":30085,\"last_name\":\"Huesman\",\"metadata\":null,\"college\":\"Tennessee-Chattanooga\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":610344,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jacobhuesman\",\"birth_date\":\"1993-02-27\",\"espn_id\":2567767},\"6087\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035456\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"6087\",\"birth_city\":null,\"fantasy_data_id\":21002,\"years_exp\":1,\"hashtag\":\"#ChrisJohnson-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":13694,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Johnson\",\"sportradar_id\":\"e6357477-ecbf-4489-a0cd-49a6a4feb807\",\"pandascore_id\":null,\"yahoo_id\":32510,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"North Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisjohnson\",\"birth_date\":\"1995-11-12\",\"espn_id\":3117846},\"6677\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Practice Squad\",\"injury_body_part\":null,\"search_last_name\":\"forson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6677\",\"birth_city\":null,\"fantasy_data_id\":21576,\"years_exp\":1,\"hashtag\":\"#JoeForson-NFL-KC-1\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joe Forson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Forson\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joeforson\",\"birth_date\":\"1995-12-07\",\"espn_id\":null},\"6643\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557865826649,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holland\",\"depth_chart_position\":null,\"player_id\":\"6643\",\"birth_city\":null,\"fantasy_data_id\":21527,\"years_exp\":1,\"hashtag\":\"#CharlesHolland-NFL-CIN-5\",\"search_first_name\":\"charles\",\"rotowire_id\":13997,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Charles Holland\",\"sportradar_id\":\"a70ceaf4-61e2-4687-b77a-8d2f62eb1af1\",\"pandascore_id\":null,\"yahoo_id\":32467,\"last_name\":\"Holland\",\"metadata\":null,\"college\":\"-\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1166934,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'2\\\"\",\"search_full_name\":\"charlesholland\",\"birth_date\":null,\"espn_id\":4069839},\"5799\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034892\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"prince\",\"depth_chart_position\":null,\"player_id\":\"5799\",\"birth_city\":null,\"fantasy_data_id\":20698,\"years_exp\":2,\"hashtag\":\"#DariusPrince-NFL-FA-1\",\"search_first_name\":\"darius\",\"rotowire_id\":13396,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Darius Prince\",\"sportradar_id\":\"69570572-84e4-49e4-bb9b-908ac7b79abf\",\"pandascore_id\":null,\"yahoo_id\":31796,\"last_name\":\"Prince\",\"metadata\":null,\"college\":\"Penn State-Beaver\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1064935,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dariusprince\",\"birth_date\":\"1990-04-23\",\"espn_id\":4378381},\"2227\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031388\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604348129101,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"donald\",\"depth_chart_position\":\"DT\",\"player_id\":\"2227\",\"birth_city\":null,\"fantasy_data_id\":16618,\"years_exp\":6,\"hashtag\":\"#AaronDonald-NFL-LAR-99\",\"search_first_name\":\"aaron\",\"rotowire_id\":9391,\"rotoworld_id\":9356,\"active\":true,\"search_rank\":836,\"age\":29,\"full_name\":\"Aaron Donald\",\"sportradar_id\":\"8bb5c7ef-e7be-4015-8874-2f0982286acc\",\"pandascore_id\":null,\"yahoo_id\":27541,\"last_name\":\"Donald\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Penn Hills (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'1\\\"\",\"search_full_name\":\"aarondonald\",\"birth_date\":\"1991-05-23\",\"espn_id\":16716},\"6714\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035714\",\"first_name\":\"Mazzi\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599947153748,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilkins\",\"depth_chart_position\":null,\"player_id\":\"6714\",\"birth_city\":null,\"fantasy_data_id\":21639,\"years_exp\":1,\"hashtag\":\"#MazziWilkins-NFL-TB-37\",\"search_first_name\":\"mazzi\",\"rotowire_id\":13730,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1770,\"age\":25,\"full_name\":\"Mazzi Wilkins\",\"sportradar_id\":\"cd6cfc03-9ffc-4a2d-8dd3-7dac5915e637\",\"pandascore_id\":null,\"yahoo_id\":32628,\"last_name\":\"Wilkins\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Plant (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mazziwilkins\",\"birth_date\":\"1995-10-12\",\"espn_id\":3139613},\"4394\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Praise\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1533393609063,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martinoguike\",\"depth_chart_position\":null,\"player_id\":\"4394\",\"birth_city\":null,\"fantasy_data_id\":19253,\"years_exp\":2,\"hashtag\":\"#PraiseMartinOguike-NFL-FA-51\",\"search_first_name\":\"praise\",\"rotowire_id\":12874,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Praise Martin-Oguike\",\"sportradar_id\":\"fdfbc9c6-9063-43e9-a18f-717304978adb\",\"pandascore_id\":null,\"yahoo_id\":30645,\"last_name\":\"Martin-Oguike\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'1\\\"\",\"search_full_name\":\"praisemartinoguike\",\"birth_date\":\"1993-08-30\",\"espn_id\":2574816},\"3694\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mikell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"everette\",\"depth_chart_position\":null,\"player_id\":\"3694\",\"birth_city\":null,\"fantasy_data_id\":18497,\"years_exp\":0,\"hashtag\":\"#MikellEverette-NFL-FA-49\",\"search_first_name\":\"mikell\",\"rotowire_id\":11363,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mikell Everette\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29665,\"last_name\":\"Everette\",\"metadata\":null,\"college\":\"Sam Houston State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikelleverette\",\"birth_date\":\"1992-10-22\",\"espn_id\":3133389},\"5920\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035655\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1578604811569,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"FS\",\"player_id\":\"5920\",\"birth_city\":null,\"fantasy_data_id\":20791,\"years_exp\":1,\"hashtag\":\"#WillHarris-NFL-DET-25\",\"search_first_name\":\"will\",\"rotowire_id\":13805,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1547,\"age\":24,\"full_name\":\"Will Harris\",\"sportradar_id\":\"cae34950-dcb7-4021-ad21-0a8ae7cf47f1\",\"pandascore_id\":null,\"yahoo_id\":31913,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Choate Rosemary Hall (CT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"willharris\",\"birth_date\":\"1995-12-19\",\"espn_id\":3915297},\"5237\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034478\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1570645814418,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kanoff\",\"depth_chart_position\":null,\"player_id\":\"5237\",\"birth_city\":null,\"fantasy_data_id\":20209,\"years_exp\":2,\"hashtag\":\"#ChadKanoff-NFL-FA-6\",\"search_first_name\":\"chad\",\"rotowire_id\":13213,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chad Kanoff\",\"sportradar_id\":\"e187574f-622f-4477-a61a-edec81adff2f\",\"pandascore_id\":null,\"yahoo_id\":31308,\"last_name\":\"Kanoff\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":784709,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chadkanoff\",\"birth_date\":\"1994-10-06\",\"espn_id\":3050022},\"771\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gordy\",\"depth_chart_position\":null,\"player_id\":\"771\",\"birth_city\":null,\"fantasy_data_id\":12557,\"years_exp\":5,\"hashtag\":\"#JoshGordy-NFL-FA-27\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Josh Gordy\",\"sportradar_id\":\"65738678-e358-47f4-a888-39bf609c1ce8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gordy\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshgordy\",\"birth_date\":\"1987-02-09\",\"espn_id\":13370},\"4185\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033788\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606533029763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holden\",\"depth_chart_position\":null,\"player_id\":\"4185\",\"birth_city\":null,\"fantasy_data_id\":19031,\"years_exp\":3,\"hashtag\":\"#WillHolden-NFL-BAL-66\",\"search_first_name\":\"will\",\"rotowire_id\":11797,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Will Holden\",\"sportradar_id\":\"8255ee3e-cd6d-445a-8f45-7ac60fa3e794\",\"pandascore_id\":null,\"yahoo_id\":30270,\"last_name\":\"Holden\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Clay (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'7\\\"\",\"search_full_name\":\"willholden\",\"birth_date\":\"1993-09-14\",\"espn_id\":2972351},\"3389\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vadal\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533074713457,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"3389\",\"birth_city\":null,\"fantasy_data_id\":18150,\"years_exp\":3,\"hashtag\":\"#VadalAlexander-NFL-FA-74\",\"search_first_name\":\"vadal\",\"rotowire_id\":10881,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Vadal Alexander\",\"sportradar_id\":\"7e926e70-bc43-4ab7-960c-0322ab59d484\",\"pandascore_id\":null,\"yahoo_id\":29468,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'5\\\"\",\"search_full_name\":\"vadalalexander\",\"birth_date\":\"1994-03-23\",\"espn_id\":2976556},\"6749\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holland\",\"depth_chart_position\":null,\"player_id\":\"6749\",\"birth_city\":null,\"fantasy_data_id\":21666,\"years_exp\":1,\"hashtag\":\"#JordanHolland-NFL-FA-39\",\"search_first_name\":\"jordan\",\"rotowire_id\":14350,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Holland\",\"sportradar_id\":\"1d5bbb2e-6b80-4b13-98eb-5a24f46ee507\",\"pandascore_id\":null,\"yahoo_id\":32655,\"last_name\":\"Holland\",\"metadata\":null,\"college\":\"Prairie View\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jordanholland\",\"birth_date\":\"1995-03-15\",\"espn_id\":3139811},\"6978\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"corbin\",\"depth_chart_position\":null,\"player_id\":\"6978\",\"birth_city\":null,\"fantasy_data_id\":21805,\"years_exp\":0,\"hashtag\":\"#ReggieCorbin-NFL-FA-0\",\"search_first_name\":\"reggie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Reggie Corbin\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Corbin\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'8\\\"\",\"search_full_name\":\"reggiecorbin\",\"birth_date\":null,\"espn_id\":null},\"5357\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shelby\",\"depth_chart_position\":null,\"player_id\":\"5357\",\"birth_city\":null,\"fantasy_data_id\":20423,\"years_exp\":0,\"hashtag\":\"#KentShelby-NFL-FA-1\",\"search_first_name\":\"kent\",\"rotowire_id\":13060,\"rotoworld_id\":null,\"active\":true,\"search_rank\":970,\"age\":22,\"full_name\":\"Kent Shelby\",\"sportradar_id\":\"6e92ecd5-7452-4735-a7d8-edb15a424540\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Shelby\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kentshelby\",\"birth_date\":\"1995-11-18\",\"espn_id\":3050301},\"7489\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kylan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"7489\",\"birth_city\":null,\"fantasy_data_id\":22463,\"years_exp\":0,\"hashtag\":\"#KylanJohnson-NFL-MIA-59\",\"search_first_name\":\"kylan\",\"rotowire_id\":14891,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2013,\"age\":23,\"full_name\":\"Kylan Johnson\",\"sportradar_id\":\"f21aecce-d8e5-4a11-9ade-9307e55952a2\",\"pandascore_id\":null,\"yahoo_id\":33238,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Skyline (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylanjohnson\",\"birth_date\":\"1996-12-23\",\"espn_id\":3915107},\"3165\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Les\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"snead\",\"depth_chart_position\":null,\"player_id\":\"3165\",\"birth_city\":null,\"fantasy_data_id\":17924,\"years_exp\":0,\"hashtag\":\"#LesSnead-NFL-FA-0\",\"search_first_name\":\"les\",\"rotowire_id\":null,\"rotoworld_id\":9518,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Les Snead\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Snead\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"lessnead\",\"birth_date\":null,\"espn_id\":null},\"4035\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033906\",\"first_name\":\"Alvin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606513828033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kamara\",\"depth_chart_position\":\"RB\",\"player_id\":\"4035\",\"birth_city\":null,\"fantasy_data_id\":18878,\"years_exp\":3,\"hashtag\":\"#AlvinKamara-NFL-NO-41\",\"search_first_name\":\"alvin\",\"rotowire_id\":11732,\"rotoworld_id\":12172,\"active\":true,\"search_rank\":6,\"age\":25,\"full_name\":\"Alvin Kamara\",\"sportradar_id\":\"d9c857b2-97da-4fb8-a527-afbbb2a67413\",\"pandascore_id\":null,\"yahoo_id\":30180,\"last_name\":\"Kamara\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":1,\"stats_id\":750846,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alvinkamara\",\"birth_date\":\"1995-07-25\",\"espn_id\":3054850},\"4422\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532128501654,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jelks\",\"depth_chart_position\":null,\"player_id\":\"4422\",\"birth_city\":null,\"fantasy_data_id\":19282,\"years_exp\":3,\"hashtag\":\"#AndrewJelks-NFL-FA-76\",\"search_first_name\":\"andrew\",\"rotowire_id\":12310,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Andrew Jelks\",\"sportradar_id\":\"a8eb95bb-f159-4165-b918-87c9dbafdfeb\",\"pandascore_id\":null,\"yahoo_id\":30662,\"last_name\":\"Jelks\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewjelks\",\"birth_date\":\"1993-12-06\",\"espn_id\":2972353},\"6064\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035107\",\"first_name\":\"E.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ejiya\",\"depth_chart_position\":null,\"player_id\":\"6064\",\"birth_city\":null,\"fantasy_data_id\":20751,\"years_exp\":1,\"hashtag\":\"#EJEjiya-NFL-FA-57\",\"search_first_name\":\"ej\",\"rotowire_id\":14121,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"E.J. Ejiya\",\"sportradar_id\":\"ae2f82ea-f93c-4133-93d9-3404006f3035\",\"pandascore_id\":null,\"yahoo_id\":32305,\"last_name\":\"Ejiya\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ejejiya\",\"birth_date\":\"1995-10-06\",\"espn_id\":3120573},\"6264\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hayes\",\"depth_chart_position\":null,\"player_id\":\"6264\",\"birth_city\":null,\"fantasy_data_id\":21199,\"years_exp\":0,\"hashtag\":\"#JayHayes-NFL-PIT-7\",\"search_first_name\":\"jay\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jay Hayes\",\"sportradar_id\":\"6a324511-1927-4360-b97a-9c780f70c873\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hayes\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"289\",\"height\":\"\",\"search_full_name\":\"jayhayes\",\"birth_date\":null,\"espn_id\":3129298},\"65\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Domenik\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hixon\",\"depth_chart_position\":null,\"player_id\":\"65\",\"birth_city\":null,\"fantasy_data_id\":1854,\"years_exp\":8,\"hashtag\":\"#DomenikHixon-NFL-FA-87\",\"search_first_name\":\"domenik\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Domenik Hixon\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hixon\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'2\\\"\",\"search_full_name\":\"domenikhixon\",\"birth_date\":\"1984-10-08\",\"espn_id\":null},\"3530\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525379701558,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"3530\",\"birth_city\":null,\"fantasy_data_id\":18297,\"years_exp\":3,\"hashtag\":\"#DominiqueAlexander-NFL-FA-54\",\"search_first_name\":\"dominique\",\"rotowire_id\":10879,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dominique Alexander\",\"sportradar_id\":\"35120a77-a86e-496d-a1de-9abebd7d85a4\",\"pandascore_id\":null,\"yahoo_id\":29662,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747969,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dominiquealexander\",\"birth_date\":\"1995-04-20\",\"espn_id\":3052651},\"28\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"28\",\"birth_city\":null,\"fantasy_data_id\":796,\"years_exp\":8,\"hashtag\":\"#AaronRoss-NFL-FA-38\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Aaron Ross\",\"sportradar_id\":\"fef6074b-6053-482e-a1e9-9577f3a394b1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"aaronross\",\"birth_date\":\"1982-09-15\",\"espn_id\":10464},\"6563\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035433\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1596308709999,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newsome\",\"depth_chart_position\":null,\"player_id\":\"6563\",\"birth_city\":null,\"fantasy_data_id\":21191,\"years_exp\":1,\"hashtag\":\"#TylerNewsome-NFL-FA-0\",\"search_first_name\":\"tyler\",\"rotowire_id\":14265,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyler Newsome\",\"sportradar_id\":\"b24beb2f-de5d-4160-8b82-d7a5578b59af\",\"pandascore_id\":null,\"yahoo_id\":32548,\"last_name\":\"Newsome\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":839067,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylernewsome\",\"birth_date\":\"1995-07-14\",\"espn_id\":3129309},\"1445\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"gratz\",\"depth_chart_position\":null,\"player_id\":\"1445\",\"birth_city\":null,\"fantasy_data_id\":15014,\"years_exp\":7,\"hashtag\":\"#DwayneGratz-NFL-FA-36\",\"search_first_name\":\"dwayne\",\"rotowire_id\":8650,\"rotoworld_id\":8512,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Dwayne Gratz\",\"sportradar_id\":\"35e30557-137c-4802-bf5b-6c5ceaa7b822\",\"pandascore_id\":null,\"yahoo_id\":26687,\"last_name\":\"Gratz\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Piscataway (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dwaynegratz\",\"birth_date\":\"1990-03-08\",\"espn_id\":15840},\"2249\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1509483241317,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"steen\",\"depth_chart_position\":null,\"player_id\":\"2249\",\"birth_city\":null,\"fantasy_data_id\":16654,\"years_exp\":5,\"hashtag\":\"#AnthonySteen-NFL-FA-65\",\"search_first_name\":\"anthony\",\"rotowire_id\":9439,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Anthony Steen\",\"sportradar_id\":\"1fdf4878-d5dc-4767-9c3b-65ac9f5ce57a\",\"pandascore_id\":null,\"yahoo_id\":28120,\"last_name\":\"Steen\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'3\\\"\",\"search_full_name\":\"anthonysteen\",\"birth_date\":\"1990-05-09\",\"espn_id\":17260},\"1699\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tyms\",\"depth_chart_position\":null,\"player_id\":\"1699\",\"birth_city\":null,\"fantasy_data_id\":15566,\"years_exp\":4,\"hashtag\":\"#BrianTyms-NFL-FA-81\",\"search_first_name\":\"brian\",\"rotowire_id\":8612,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brian Tyms\",\"sportradar_id\":\"c21c8077-cca7-421d-b5e3-fd8ae116cc46\",\"pandascore_id\":null,\"yahoo_id\":26266,\"last_name\":\"Tyms\",\"metadata\":null,\"college\":\"Florida A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":564249,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"briantyms\",\"birth_date\":\"1989-02-21\",\"espn_id\":15252},\"545\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027743\",\"first_name\":\"Sherrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606437360993,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcmanis\",\"depth_chart_position\":\"FS\",\"player_id\":\"545\",\"birth_city\":null,\"fantasy_data_id\":11107,\"years_exp\":10,\"hashtag\":\"#SherrickMcManis-NFL-CHI-27\",\"search_first_name\":\"sherrick\",\"rotowire_id\":6732,\"rotoworld_id\":null,\"active\":true,\"search_rank\":603,\"age\":32,\"full_name\":\"Sherrick McManis\",\"sportradar_id\":\"6bc584ed-82c0-486f-962d-377be6ae8469\",\"pandascore_id\":null,\"yahoo_id\":24120,\"last_name\":\"McManis\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Richwoods (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sherrickmcmanis\",\"birth_date\":\"1987-12-19\",\"espn_id\":13419},\"6427\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035021\",\"first_name\":\"Ashton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606596934396,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dulin\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6427\",\"birth_city\":null,\"fantasy_data_id\":21349,\"years_exp\":1,\"hashtag\":\"#AshtonDulin-NFL-IND-16\",\"search_first_name\":\"ashton\",\"rotowire_id\":13854,\"rotoworld_id\":null,\"active\":true,\"search_rank\":495,\"age\":23,\"full_name\":\"Ashton Dulin\",\"sportradar_id\":\"f374262b-d642-4d05-9584-5955548ee4d1\",\"pandascore_id\":null,\"yahoo_id\":32292,\"last_name\":\"Dulin\",\"metadata\":null,\"college\":\"Malone\",\"high_school\":\"Reynoldsburg (OH)\",\"depth_chart_order\":3,\"stats_id\":1166036,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ashtondulin\",\"birth_date\":\"1997-05-15\",\"espn_id\":4061956},\"7150\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602110428586,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"DB\",\"player_id\":\"7150\",\"birth_city\":null,\"fantasy_data_id\":22152,\"years_exp\":0,\"hashtag\":\"#ChrisJackson-NFL-TEN-35\",\"search_first_name\":\"chris\",\"rotowire_id\":14835,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1939,\"age\":22,\"full_name\":\"Chris Jackson\",\"sportradar_id\":\"099c975d-104f-4bac-9815-52346771a515\",\"pandascore_id\":null,\"yahoo_id\":32913,\"last_name\":\"Jackson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Marshall\",\"high_school\":\"Florida A&M University (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisjackson\",\"birth_date\":\"1998-04-13\",\"espn_id\":4043605},\"1879\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030703\",\"first_name\":\"Sammy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seamster\",\"depth_chart_position\":null,\"player_id\":\"1879\",\"birth_city\":null,\"fantasy_data_id\":16098,\"years_exp\":6,\"hashtag\":\"#SammySeamster-NFL-FA-29\",\"search_first_name\":\"sammy\",\"rotowire_id\":9960,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sammy Seamster\",\"sportradar_id\":\"6d9fad01-7167-4291-9523-3f72d6837d4c\",\"pandascore_id\":null,\"yahoo_id\":27989,\"last_name\":\"Seamster\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Ooltewah (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sammyseamster\",\"birth_date\":\"1991-02-05\",\"espn_id\":17244},\"3351\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032432\",\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602431416801,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schweitzer\",\"depth_chart_position\":\"LG\",\"player_id\":\"3351\",\"birth_city\":null,\"fantasy_data_id\":18112,\"years_exp\":4,\"hashtag\":\"#WesSchweitzer-NFL-WAS-71\",\"search_first_name\":\"wes\",\"rotowire_id\":11230,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Wes Schweitzer\",\"sportradar_id\":\"a12890df-5475-4689-895c-6b54abc71b1f\",\"pandascore_id\":null,\"yahoo_id\":29429,\"last_name\":\"Schweitzer\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Chaparral (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"wesschweitzer\",\"birth_date\":\"1993-09-11\",\"espn_id\":2581273},\"2820\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2820\",\"birth_city\":null,\"fantasy_data_id\":17288,\"years_exp\":0,\"hashtag\":\"#DominiqueBrown-NFL-FA-32\",\"search_first_name\":\"dominique\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dominique Brown\",\"sportradar_id\":\"52b0b58e-26c9-4d7c-a054-66bab4d700a1\",\"pandascore_id\":null,\"yahoo_id\":28781,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553700,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dominiquebrown\",\"birth_date\":\"1991-12-27\",\"espn_id\":2511055},\"1323\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029391\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1535990457928,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgrath\",\"depth_chart_position\":null,\"player_id\":\"1323\",\"birth_city\":null,\"fantasy_data_id\":14820,\"years_exp\":8,\"hashtag\":\"#SeanMcGrath-NFL-FA-85\",\"search_first_name\":\"sean\",\"rotowire_id\":8606,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Sean McGrath\",\"sportradar_id\":\"5b3f26e8-4500-47c0-b985-5b5b1eed6098\",\"pandascore_id\":null,\"yahoo_id\":25992,\"last_name\":\"McGrath\",\"metadata\":null,\"college\":\"Henderson State\",\"high_school\":\"Carmel (IL)\",\"depth_chart_order\":null,\"stats_id\":343561,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'5\\\"\",\"search_full_name\":\"seanmcgrath\",\"birth_date\":\"1987-12-03\",\"espn_id\":15515},\"5620\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elijaah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"goins\",\"depth_chart_position\":null,\"player_id\":\"5620\",\"birth_city\":null,\"fantasy_data_id\":20601,\"years_exp\":1,\"hashtag\":\"#ElijaahGoins-NFL-TEN-19\",\"search_first_name\":\"elijaah\",\"rotowire_id\":13298,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Elijaah Goins\",\"sportradar_id\":\"5dd762ce-5e26-4bcc-b868-529f0ab1d1b3\",\"pandascore_id\":null,\"yahoo_id\":31608,\"last_name\":\"Goins\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":878757,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"elijaahgoins\",\"birth_date\":null,\"espn_id\":3915519},\"3667\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032592\",\"first_name\":\"Sharrod\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584714306896,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"neasman\",\"depth_chart_position\":\"FS\",\"player_id\":\"3667\",\"birth_city\":null,\"fantasy_data_id\":18467,\"years_exp\":4,\"hashtag\":\"#SharrodNeasman-NFL-ATL-41\",\"search_first_name\":\"sharrod\",\"rotowire_id\":11316,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1080,\"age\":29,\"full_name\":\"Sharrod Neasman\",\"sportradar_id\":\"90434aff-bd29-44be-8e76-056e412a9624\",\"pandascore_id\":null,\"yahoo_id\":29653,\"last_name\":\"Neasman\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Braden River (FL)\",\"depth_chart_order\":1,\"stats_id\":695105,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sharrodneasman\",\"birth_date\":\"1991-10-14\",\"espn_id\":2982866},\"1491\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":null,\"player_id\":\"1491\",\"birth_city\":null,\"fantasy_data_id\":15089,\"years_exp\":2,\"hashtag\":\"#MichaelCox-NFL-FA-29\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Michael Cox\",\"sportradar_id\":\"6c6de94b-4a6b-4a6d-9f6b-837022e99c02\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":464129,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelcox\",\"birth_date\":\"1988-11-14\",\"espn_id\":15929},\"580\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1509482341200,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"580\",\"birth_city\":null,\"fantasy_data_id\":11308,\"years_exp\":10,\"hashtag\":\"#NateAllen-NFL-FA-29\",\"search_first_name\":\"nate\",\"rotowire_id\":6647,\"rotoworld_id\":5861,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Nate Allen\",\"sportradar_id\":\"3f20dc71-e54d-469b-98db-53669c373cf6\",\"pandascore_id\":null,\"yahoo_id\":24012,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Cape Coral (FL)\",\"depth_chart_order\":null,\"stats_id\":340601,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nateallen\",\"birth_date\":\"1987-11-30\",\"espn_id\":13257},\"1653\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029992\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584570324963,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kline\",\"depth_chart_position\":\"RG\",\"player_id\":\"1653\",\"birth_city\":null,\"fantasy_data_id\":15410,\"years_exp\":7,\"hashtag\":\"#JoshKline-NFL-FA-64\",\"search_first_name\":\"josh\",\"rotowire_id\":9086,\"rotoworld_id\":9008,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Josh Kline\",\"sportradar_id\":\"ba736850-97fe-48c4-a5c8-cdbe3bf6fbd1\",\"pandascore_id\":null,\"yahoo_id\":27228,\"last_name\":\"Kline\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Mason (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshkline\",\"birth_date\":\"1989-12-29\",\"espn_id\":16403},\"6521\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035091\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harvey\",\"depth_chart_position\":null,\"player_id\":\"6521\",\"birth_city\":null,\"fantasy_data_id\":21505,\"years_exp\":1,\"hashtag\":\"#JalenHarvey-NFL-FA-43\",\"search_first_name\":\"jalen\",\"rotowire_id\":14100,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jalen Harvey\",\"sportradar_id\":\"d45eb662-6dcf-4e6a-ad14-bc610ab65deb\",\"pandascore_id\":null,\"yahoo_id\":32333,\"last_name\":\"Harvey\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jalenharvey\",\"birth_date\":\"1995-09-19\",\"espn_id\":3128785},\"891\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vincent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"891\",\"birth_city\":null,\"fantasy_data_id\":13078,\"years_exp\":9,\"hashtag\":\"#VincentBrown-NFL-FA-86\",\"search_first_name\":\"vincent\",\"rotowire_id\":7386,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Vincent Brown\",\"sportradar_id\":\"7bc7f249-a2ed-4dd9-acd2-c223778955ad\",\"pandascore_id\":null,\"yahoo_id\":24869,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Rancho Cucamonga (CA)\",\"depth_chart_order\":null,\"stats_id\":402074,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"vincentbrown\",\"birth_date\":\"1989-01-25\",\"espn_id\":14027},\"1931\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1523571301655,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ikard\",\"depth_chart_position\":null,\"player_id\":\"1931\",\"birth_city\":null,\"fantasy_data_id\":16169,\"years_exp\":6,\"hashtag\":\"#GabeIkard-NFL-FA-60\",\"search_first_name\":\"gabe\",\"rotowire_id\":9435,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Gabe Ikard\",\"sportradar_id\":\"b2573f3d-0109-4f72-9640-2e0ce8407bd7\",\"pandascore_id\":null,\"yahoo_id\":27947,\"last_name\":\"Ikard\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Bishop McGuinness (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"gabeikard\",\"birth_date\":\"1990-09-26\",\"espn_id\":17179},\"4769\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"floyd\",\"depth_chart_position\":null,\"player_id\":\"4769\",\"birth_city\":null,\"fantasy_data_id\":19685,\"years_exp\":0,\"hashtag\":\"#TevinFloyd-NFL-FA-57\",\"search_first_name\":\"tevin\",\"rotowire_id\":12302,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tevin Floyd\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30906,\"last_name\":\"Floyd\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tevinfloyd\",\"birth_date\":null,\"espn_id\":3049736},\"450\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Billy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bajema\",\"depth_chart_position\":null,\"player_id\":\"450\",\"birth_city\":null,\"fantasy_data_id\":9253,\"years_exp\":9,\"hashtag\":\"#BillyBajema-NFL-FA-86\",\"search_first_name\":\"billy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Billy Bajema\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bajema\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'5\\\"\",\"search_full_name\":\"billybajema\",\"birth_date\":\"1982-10-31\",\"espn_id\":null},\"1908\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacobbi\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdaniel\",\"depth_chart_position\":null,\"player_id\":\"1908\",\"birth_city\":null,\"fantasy_data_id\":16136,\"years_exp\":1,\"hashtag\":\"#JacobbiMcDaniel-NFL-FA-60\",\"search_first_name\":\"jacobbi\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jacobbi McDaniel\",\"sportradar_id\":\"62fc4dac-f850-4254-b2d7-9f2c94778251\",\"pandascore_id\":null,\"yahoo_id\":28236,\"last_name\":\"McDaniel\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jacobbimcdaniel\",\"birth_date\":\"1989-10-08\",\"espn_id\":17410},\"4354\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033377\",\"first_name\":\"Maurquice\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shakir\",\"depth_chart_position\":null,\"player_id\":\"4354\",\"birth_city\":null,\"fantasy_data_id\":19210,\"years_exp\":3,\"hashtag\":\"#MaurquiceShakir-NFL-FA-61\",\"search_first_name\":\"maurquice\",\"rotowire_id\":12452,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Maurquice Shakir\",\"sportradar_id\":\"b84995d5-f1b5-4d6e-84ed-66babfadee90\",\"pandascore_id\":null,\"yahoo_id\":30593,\"last_name\":\"Shakir\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'4\\\"\",\"search_full_name\":\"maurquiceshakir\",\"birth_date\":\"1993-10-14\",\"espn_id\":3122894},\"4534\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033614\",\"first_name\":\"Pasoni\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565553325358,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tasini\",\"depth_chart_position\":null,\"player_id\":\"4534\",\"birth_city\":null,\"fantasy_data_id\":19413,\"years_exp\":3,\"hashtag\":\"#PasoniTasini-NFL-FA-96\",\"search_first_name\":\"pasoni\",\"rotowire_id\":12537,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Pasoni Tasini\",\"sportradar_id\":\"c9b212ad-7893-4b0d-9d65-38b283894a5a\",\"pandascore_id\":null,\"yahoo_id\":30497,\"last_name\":\"Tasini\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"pasonitasini\",\"birth_date\":\"1993-05-31\",\"espn_id\":3122879},\"5887\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034976\",\"first_name\":\"Dru\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606342503271,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"samia\",\"depth_chart_position\":\"RG\",\"player_id\":\"5887\",\"birth_city\":null,\"fantasy_data_id\":20930,\"years_exp\":1,\"hashtag\":\"#DruSamia-NFL-MIN-73\",\"search_first_name\":\"dru\",\"rotowire_id\":13794,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dru Samia\",\"sportradar_id\":\"33f18199-2fa9-4871-b324-2547aeb4ff1a\",\"pandascore_id\":null,\"yahoo_id\":31946,\"last_name\":\"Samia\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"San Ramon Valley (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'5\\\"\",\"search_full_name\":\"drusamia\",\"birth_date\":\"1997-08-22\",\"espn_id\":3821678},\"6463\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035064\",\"first_name\":\"Lawrence\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"6463\",\"birth_city\":null,\"fantasy_data_id\":21428,\"years_exp\":1,\"hashtag\":\"#LawrenceMarshall-NFL-CHI-0\",\"search_first_name\":\"lawrence\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lawrence Marshall\",\"sportradar_id\":\"2d133844-4e02-460b-819b-d8176407dedb\",\"pandascore_id\":null,\"yahoo_id\":32258,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lawrencemarshall\",\"birth_date\":\"1995-02-12\",\"espn_id\":null},\"4144\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033858\",\"first_name\":\"Jonnu\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606503004100,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"TE\",\"player_id\":\"4144\",\"birth_city\":null,\"fantasy_data_id\":18990,\"years_exp\":3,\"hashtag\":\"#JonnuSmith-NFL-TEN-81\",\"search_first_name\":\"jonnu\",\"rotowire_id\":11807,\"rotoworld_id\":12344,\"active\":true,\"search_rank\":149,\"age\":25,\"full_name\":\"Jonnu Smith\",\"sportradar_id\":\"e4f25a37-74de-4bfb-b6c9-f50a4fab0b87\",\"pandascore_id\":null,\"yahoo_id\":30213,\"last_name\":\"Smith\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Florida International\",\"high_school\":\"West Port (FL)\",\"depth_chart_order\":1,\"stats_id\":743749,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonnusmith\",\"birth_date\":\"1995-08-22\",\"espn_id\":3054212},\"3498\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"milhouse\",\"depth_chart_position\":null,\"player_id\":\"3498\",\"birth_city\":null,\"fantasy_data_id\":18264,\"years_exp\":3,\"hashtag\":\"#GregMilhouse-NFL-FA-60\",\"search_first_name\":\"greg\",\"rotowire_id\":11589,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Greg Milhouse\",\"sportradar_id\":\"96981785-f775-4e89-bda9-514cc3ccec1d\",\"pandascore_id\":null,\"yahoo_id\":29864,\"last_name\":\"Milhouse\",\"metadata\":null,\"college\":\"Campbell\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'2\\\"\",\"search_full_name\":\"gregmilhouse\",\"birth_date\":\"1994-07-15\",\"espn_id\":2973670},\"1660\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030020\",\"first_name\":\"Brynden\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1579822822881,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"trawick\",\"depth_chart_position\":null,\"player_id\":\"1660\",\"birth_city\":null,\"fantasy_data_id\":15433,\"years_exp\":7,\"hashtag\":\"#BryndenTrawick-NFL-FA-31\",\"search_first_name\":\"brynden\",\"rotowire_id\":9093,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brynden Trawick\",\"sportradar_id\":\"3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6\",\"pandascore_id\":null,\"yahoo_id\":27269,\"last_name\":\"Trawick\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Sprayberry (GA)\",\"depth_chart_order\":null,\"stats_id\":464273,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bryndentrawick\",\"birth_date\":\"1989-10-23\",\"espn_id\":16419},\"4988\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034791\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606489803243,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chubb\",\"depth_chart_position\":\"RB\",\"player_id\":\"4988\",\"birth_city\":null,\"fantasy_data_id\":19798,\"years_exp\":2,\"hashtag\":\"#NickChubb-NFL-CLE-24\",\"search_first_name\":\"nick\",\"rotowire_id\":12886,\"rotoworld_id\":13161,\"active\":true,\"search_rank\":11,\"age\":24,\"full_name\":\"Nick Chubb\",\"sportradar_id\":\"4bd60b33-9fbf-4156-ba2b-8264ac37b418\",\"pandascore_id\":null,\"yahoo_id\":31005,\"last_name\":\"Chubb\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Cedartown (GA)\",\"depth_chart_order\":1,\"stats_id\":822857,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nickchubb\",\"birth_date\":\"1995-12-27\",\"espn_id\":3128720},\"3682\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"buchholz\",\"depth_chart_position\":null,\"player_id\":\"3682\",\"birth_city\":null,\"fantasy_data_id\":18482,\"years_exp\":0,\"hashtag\":\"#DanBuchholz-NFL-FA-0\",\"search_first_name\":\"dan\",\"rotowire_id\":11624,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dan Buchholz\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29914,\"last_name\":\"Buchholz\",\"metadata\":null,\"college\":\"Duquesne\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danbuchholz\",\"birth_date\":\"1993-08-03\",\"espn_id\":null},\"5059\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034831\",\"first_name\":\"Rasheem\",\"practice_description\":null,\"fantasy_positions\":[\"LEO\",\"LB\",\"DL\"],\"news_updated\":1604794810223,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":\"NT\",\"player_id\":\"5059\",\"birth_city\":null,\"fantasy_data_id\":19890,\"years_exp\":2,\"hashtag\":\"#RasheemGreen-NFL-SEA-94\",\"search_first_name\":\"rasheem\",\"rotowire_id\":12632,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1326,\"age\":23,\"full_name\":\"Rasheem Green\",\"sportradar_id\":\"9912fa7a-040d-40cf-99b5-0a7a28e0ba1a\",\"pandascore_id\":null,\"yahoo_id\":31049,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rasheemgreen\",\"birth_date\":\"1997-05-15\",\"espn_id\":3912562},\"6498\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035177\",\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1593380740647,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harvey\",\"depth_chart_position\":\"SAM\",\"player_id\":\"6498\",\"birth_city\":null,\"fantasy_data_id\":21511,\"years_exp\":1,\"hashtag\":\"#WillieHarvey-NFL-FA-0\",\"search_first_name\":\"willie\",\"rotowire_id\":14168,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1748,\"age\":24,\"full_name\":\"Willie Harvey\",\"sportradar_id\":\"c7f8e21d-25fa-4a9b-b4ca-ac65f548031c\",\"pandascore_id\":null,\"yahoo_id\":32377,\"last_name\":\"Harvey\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"5'11\\\"\",\"search_full_name\":\"willieharvey\",\"birth_date\":\"1996-01-09\",\"espn_id\":3128396},\"7052\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1587842441633,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reid\",\"depth_chart_position\":\"LCB\",\"player_id\":\"7052\",\"birth_city\":null,\"fantasy_data_id\":22061,\"years_exp\":0,\"hashtag\":\"#JohnReid-NFL-HOU-34\",\"search_first_name\":\"john\",\"rotowire_id\":14710,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1896,\"age\":24,\"full_name\":\"John Reid\",\"sportradar_id\":\"f113cf01-5a86-4ed9-ae34-dcdbac9e11a6\",\"pandascore_id\":null,\"yahoo_id\":32811,\"last_name\":\"Reid\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"St. Joseph's Prep (PA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'10\\\"\",\"search_full_name\":\"johnreid\",\"birth_date\":\"1996-05-15\",\"espn_id\":3929653},\"4230\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033791\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600750818722,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"FS\",\"player_id\":\"4230\",\"birth_city\":null,\"fantasy_data_id\":19076,\"years_exp\":3,\"hashtag\":\"#BrandonWilson-NFL-CIN-40\",\"search_first_name\":\"brandon\",\"rotowire_id\":12211,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1210,\"age\":26,\"full_name\":\"Brandon Wilson\",\"sportradar_id\":\"0bf5f31d-e2fe-441f-845e-7573cc21b22d\",\"pandascore_id\":null,\"yahoo_id\":30320,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Calvary Baptist Academy (LA)\",\"depth_chart_order\":2,\"stats_id\":699876,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brandonwilson\",\"birth_date\":\"1994-07-27\",\"espn_id\":2982632},\"4882\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"paton\",\"depth_chart_position\":null,\"player_id\":\"4882\",\"birth_city\":null,\"fantasy_data_id\":19782,\"years_exp\":0,\"hashtag\":\"#GeorgePaton-NFL-FA-0\",\"search_first_name\":\"george\",\"rotowire_id\":null,\"rotoworld_id\":12163,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"George Paton\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Paton\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"georgepaton\",\"birth_date\":null,\"espn_id\":null},\"6532\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035041\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fineanganofo\",\"depth_chart_position\":null,\"player_id\":\"6532\",\"birth_city\":null,\"fantasy_data_id\":21280,\"years_exp\":1,\"hashtag\":\"#BrianFineanganofo-NFL-FA-67\",\"search_first_name\":\"brian\",\"rotowire_id\":14145,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brian Fineanganofo\",\"sportradar_id\":\"630e7cfe-e952-42c3-9ffb-33192be4711a\",\"pandascore_id\":null,\"yahoo_id\":32274,\"last_name\":\"Fineanganofo\",\"metadata\":null,\"college\":\"Idaho State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brianfineanganofo\",\"birth_date\":\"1995-05-03\",\"espn_id\":3139092},\"4812\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terence\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"waugh\",\"depth_chart_position\":null,\"player_id\":\"4812\",\"birth_city\":null,\"fantasy_data_id\":19717,\"years_exp\":2,\"hashtag\":\"#TerenceWaugh-NFL-FA-49\",\"search_first_name\":\"terence\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Terence Waugh\",\"sportradar_id\":\"e674b447-54ee-4b67-ad3c-09c10b776e68\",\"pandascore_id\":null,\"yahoo_id\":30924,\"last_name\":\"Waugh\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terencewaugh\",\"birth_date\":\"1993-05-31\",\"espn_id\":3052541},\"5276\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034214\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hoppes\",\"depth_chart_position\":null,\"player_id\":\"5276\",\"birth_city\":null,\"fantasy_data_id\":20329,\"years_exp\":2,\"hashtag\":\"#TylerHoppes-NFL-FA-86\",\"search_first_name\":\"tyler\",\"rotowire_id\":13149,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyler Hoppes\",\"sportradar_id\":\"7ca9797c-592e-4d07-9932-d0562434dc22\",\"pandascore_id\":null,\"yahoo_id\":31234,\"last_name\":\"Hoppes\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":836821,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tylerhoppes\",\"birth_date\":\"1995-05-08\",\"espn_id\":3121396},\"5218\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034612\",\"first_name\":\"Demone\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605059402208,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"5218\",\"birth_city\":null,\"fantasy_data_id\":20189,\"years_exp\":2,\"hashtag\":\"#DemoneHarris-NFL-KC-52\",\"search_first_name\":\"demone\",\"rotowire_id\":13285,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1433,\"age\":24,\"full_name\":\"Demone Harris\",\"sportradar_id\":\"3180d257-5f46-4a25-b50a-3311235bc8b3\",\"pandascore_id\":null,\"yahoo_id\":31256,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Bishop Timon (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'4\\\"\",\"search_full_name\":\"demoneharris\",\"birth_date\":\"1995-12-30\",\"espn_id\":3052926},\"4686\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harrell\",\"depth_chart_position\":null,\"player_id\":\"4686\",\"birth_city\":null,\"fantasy_data_id\":19587,\"years_exp\":0,\"hashtag\":\"#AnthonyHarrell-NFL-BUF-49\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Anthony Harrell\",\"sportradar_id\":\"3c06038b-0714-425d-9b05-75ef837b1052\",\"pandascore_id\":null,\"yahoo_id\":30840,\"last_name\":\"Harrell\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonyharrell\",\"birth_date\":\"1993-03-15\",\"espn_id\":2576910},\"6982\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cheyenne\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ogrady\",\"depth_chart_position\":null,\"player_id\":\"6982\",\"birth_city\":null,\"fantasy_data_id\":21779,\"years_exp\":0,\"hashtag\":\"#CheyenneOGrady-NFL-FA-0\",\"search_first_name\":\"cheyenne\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Cheyenne O'Grady\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"O'Grady\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cheyenneogrady\",\"birth_date\":null,\"espn_id\":null},\"3820\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Micah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525043701595,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"awe\",\"depth_chart_position\":null,\"player_id\":\"3820\",\"birth_city\":null,\"fantasy_data_id\":18637,\"years_exp\":1,\"hashtag\":\"#MicahAwe-NFL-FA-44\",\"search_first_name\":\"micah\",\"rotowire_id\":11405,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Micah Awe\",\"sportradar_id\":\"c2e9802c-39b8-4fe0-8e17-384975cda11a\",\"pandascore_id\":null,\"yahoo_id\":29926,\"last_name\":\"Awe\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'0\\\"\",\"search_full_name\":\"micahawe\",\"birth_date\":\"1994-01-04\",\"espn_id\":2979171},\"4092\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033546\",\"first_name\":\"Dalvin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1578367539418,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tomlinson\",\"depth_chart_position\":\"NT\",\"player_id\":\"4092\",\"birth_city\":null,\"fantasy_data_id\":18938,\"years_exp\":3,\"hashtag\":\"#DalvinTomlinson-NFL-NYG-94\",\"search_first_name\":\"dalvin\",\"rotowire_id\":11946,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1139,\"age\":26,\"full_name\":\"Dalvin Tomlinson\",\"sportradar_id\":\"6371b42c-2783-49e8-8def-ce4d7dc91081\",\"pandascore_id\":null,\"yahoo_id\":30168,\"last_name\":\"Tomlinson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Henry County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dalvintomlinson\",\"birth_date\":\"1994-02-28\",\"espn_id\":2979860},\"1878\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pataialii\",\"depth_chart_position\":null,\"player_id\":\"1878\",\"birth_city\":null,\"fantasy_data_id\":16096,\"years_exp\":1,\"hashtag\":\"#AJPataialii-NFL-FA-79\",\"search_first_name\":\"aj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"AJ Pataiali'i\",\"sportradar_id\":\"380292b7-45f6-4a2b-9901-2ba7e8637a90\",\"pandascore_id\":null,\"yahoo_id\":27987,\"last_name\":\"Pataiali'i\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ajpataialii\",\"birth_date\":\"1990-09-13\",\"espn_id\":17301},\"1742\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brenton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515552601850,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bersin\",\"depth_chart_position\":null,\"player_id\":\"1742\",\"birth_city\":null,\"fantasy_data_id\":15714,\"years_exp\":8,\"hashtag\":\"#BrentonBersin-NFL-FA-11\",\"search_first_name\":\"brenton\",\"rotowire_id\":8417,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brenton Bersin\",\"sportradar_id\":\"76ffae7b-4ff8-40c8-abee-de24873135cd\",\"pandascore_id\":null,\"yahoo_id\":26096,\"last_name\":\"Bersin\",\"metadata\":null,\"college\":\"Wofford\",\"high_school\":\"Charlotte Latin (NC)\",\"depth_chart_order\":null,\"stats_id\":461274,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brentonbersin\",\"birth_date\":\"1990-05-09\",\"espn_id\":15547},\"2157\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isame\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"faciane\",\"depth_chart_position\":null,\"player_id\":\"2157\",\"birth_city\":null,\"fantasy_data_id\":16503,\"years_exp\":5,\"hashtag\":\"#IsameFaciane-NFL-FA-69\",\"search_first_name\":\"isame\",\"rotowire_id\":10122,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Isame Faciane\",\"sportradar_id\":\"c1061b7f-69a0-4e8c-a8db-606b12e13610\",\"pandascore_id\":null,\"yahoo_id\":27892,\"last_name\":\"Faciane\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"isamefaciane\",\"birth_date\":\"1991-05-11\",\"espn_id\":16992},\"3012\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Karl\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schmitz\",\"depth_chart_position\":null,\"player_id\":\"3012\",\"birth_city\":null,\"fantasy_data_id\":17557,\"years_exp\":0,\"hashtag\":\"#KarlSchmitz-NFL-FA-6\",\"search_first_name\":\"karl\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Karl Schmitz\",\"sportradar_id\":\"bd656c95-8189-4c5d-87df-15a341a160c6\",\"pandascore_id\":null,\"yahoo_id\":28382,\"last_name\":\"Schmitz\",\"metadata\":null,\"college\":\"Jacksonville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"karlschmitz\",\"birth_date\":null,\"espn_id\":2316853},\"3256\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033109\",\"first_name\":\"Javon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606155314770,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hargrave\",\"depth_chart_position\":\"RDT\",\"player_id\":\"3256\",\"birth_city\":null,\"fantasy_data_id\":18017,\"years_exp\":4,\"hashtag\":\"#JavonHargrave-NFL-PHI-93\",\"search_first_name\":\"javon\",\"rotowire_id\":11051,\"rotoworld_id\":11388,\"active\":true,\"search_rank\":996,\"age\":27,\"full_name\":\"Javon Hargrave\",\"sportradar_id\":\"3f8e4972-2361-4939-b5e3-c5f6c63b9f68\",\"pandascore_id\":null,\"yahoo_id\":29323,\"last_name\":\"Hargrave\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"North Rowan (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"javonhargrave\",\"birth_date\":\"1993-02-07\",\"espn_id\":2983055},\"863\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DuJuan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"863\",\"birth_city\":null,\"fantasy_data_id\":12985,\"years_exp\":9,\"hashtag\":\"#DuJuanHarris-NFL-FA-35\",\"search_first_name\":\"dujuan\",\"rotowire_id\":7658,\"rotoworld_id\":6837,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"DuJuan Harris\",\"sportradar_id\":\"7ea2fcfd-0099-4e62-8f6e-efa0197bbb99\",\"pandascore_id\":null,\"yahoo_id\":25117,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Central (FL)\",\"depth_chart_order\":null,\"stats_id\":387176,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'8\\\"\",\"search_full_name\":\"dujuanharris\",\"birth_date\":\"1988-09-03\",\"espn_id\":14255},\"6669\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jacobson\",\"depth_chart_position\":null,\"player_id\":\"6669\",\"birth_city\":null,\"fantasy_data_id\":21558,\"years_exp\":0,\"hashtag\":\"#NathanJacobson-NFL-FA-62\",\"search_first_name\":\"nathan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nathan Jacobson\",\"sportradar_id\":\"3b0d59f6-ae82-4841-a8a3-f5297116b361\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jacobson\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nathanjacobson\",\"birth_date\":null,\"espn_id\":null},\"1692\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lowell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rose\",\"depth_chart_position\":null,\"player_id\":\"1692\",\"birth_city\":null,\"fantasy_data_id\":15551,\"years_exp\":2,\"hashtag\":\"#LowellRose-NFL-FA-40\",\"search_first_name\":\"lowell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Lowell Rose\",\"sportradar_id\":\"5c7a62d3-b40a-4f8c-80bb-fe668ab849fa\",\"pandascore_id\":null,\"yahoo_id\":27218,\"last_name\":\"Rose\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lowellrose\",\"birth_date\":\"1990-03-11\",\"espn_id\":16362},\"1270\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"1270\",\"birth_city\":null,\"fantasy_data_id\":14709,\"years_exp\":8,\"hashtag\":\"#BrandonThompson-NFL-FA-97\",\"search_first_name\":\"brandon\",\"rotowire_id\":8158,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brandon Thompson\",\"sportradar_id\":\"30e0176b-7931-4864-9c06-dd72cc186195\",\"pandascore_id\":null,\"yahoo_id\":25803,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Thomasville (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonthompson\",\"birth_date\":\"1989-10-19\",\"espn_id\":14965},\"2352\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031555\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606096236854,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rowe\",\"depth_chart_position\":\"SS\",\"player_id\":\"2352\",\"birth_city\":null,\"fantasy_data_id\":16808,\"years_exp\":5,\"hashtag\":\"#EricRowe-NFL-MIA-21\",\"search_first_name\":\"eric\",\"rotowire_id\":10416,\"rotoworld_id\":10459,\"active\":true,\"search_rank\":870,\"age\":28,\"full_name\":\"Eric Rowe\",\"sportradar_id\":\"30b045f1-b8e4-4ae9-b062-5181847b508c\",\"pandascore_id\":null,\"yahoo_id\":28435,\"last_name\":\"Rowe\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Klein (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ericrowe\",\"birth_date\":\"1992-10-03\",\"espn_id\":2576002},\"5101\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034406\",\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603163454261,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cain\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5101\",\"birth_city\":null,\"fantasy_data_id\":19980,\"years_exp\":2,\"hashtag\":\"#DeonCain-NFL-PIT-17\",\"search_first_name\":\"deon\",\"rotowire_id\":12611,\"rotoworld_id\":13167,\"active\":true,\"search_rank\":353,\"age\":24,\"full_name\":\"Deon Cain\",\"sportradar_id\":\"3da67e95-bd15-409f-b5de-b2feb54efda7\",\"pandascore_id\":null,\"yahoo_id\":31155,\"last_name\":\"Cain\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Clemson\",\"high_school\":\"Tampa Bay Tech (FL)\",\"depth_chart_order\":2,\"stats_id\":867754,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deoncain\",\"birth_date\":\"1996-08-09\",\"espn_id\":3728254},\"4219\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033955\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605277552348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcnichols\",\"depth_chart_position\":\"RB\",\"player_id\":\"4219\",\"birth_city\":null,\"fantasy_data_id\":19065,\"years_exp\":3,\"hashtag\":\"#JeremyMcNichols-NFL-TEN-28\",\"search_first_name\":\"jeremy\",\"rotowire_id\":11767,\"rotoworld_id\":12174,\"active\":true,\"search_rank\":1203,\"age\":24,\"full_name\":\"Jeremy McNichols\",\"sportradar_id\":\"25cc3585-6194-4786-968a-2600db46b6c6\",\"pandascore_id\":null,\"yahoo_id\":30275,\"last_name\":\"McNichols\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Boise State\",\"high_school\":\"Santa Margarita Catholic (CA)\",\"depth_chart_order\":4,\"stats_id\":837594,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jeremymcnichols\",\"birth_date\":\"1995-12-26\",\"espn_id\":3127586},\"4075\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033880\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606196750494,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4075\",\"birth_city\":null,\"fantasy_data_id\":18921,\"years_exp\":3,\"hashtag\":\"#CharlesHarris-NFL-ATL-92\",\"search_first_name\":\"charles\",\"rotowire_id\":11918,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1128,\"age\":25,\"full_name\":\"Charles Harris\",\"sportradar_id\":\"f7d0d3ea-6de1-4adc-b431-166c6dde9cc9\",\"pandascore_id\":null,\"yahoo_id\":30135,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Lincoln Prep (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"charlesharris\",\"birth_date\":\"1995-03-06\",\"espn_id\":3051852},\"1361\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beauharnais\",\"depth_chart_position\":null,\"player_id\":\"1361\",\"birth_city\":null,\"fantasy_data_id\":14882,\"years_exp\":2,\"hashtag\":\"#SteveBeauharnais-NFL-FA-58\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Steve Beauharnais\",\"sportradar_id\":\"32df68ea-db8f-4fa4-8733-2f7ec5dff738\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Beauharnais\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stevebeauharnais\",\"birth_date\":\"1990-05-02\",\"espn_id\":15988},\"6876\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"6876\",\"birth_city\":null,\"fantasy_data_id\":22046,\"years_exp\":0,\"hashtag\":\"#AJGreen-NFL-CLE-38\",\"search_first_name\":\"aj\",\"rotowire_id\":14716,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"A.J. Green\",\"sportradar_id\":\"07dbf3ec-0d6b-42f1-a2e8-7dd437339417\",\"pandascore_id\":null,\"yahoo_id\":33306,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ajgreen\",\"birth_date\":\"1998-06-09\",\"espn_id\":4038437},\"3663\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mayes\",\"depth_chart_position\":null,\"player_id\":\"3663\",\"birth_city\":null,\"fantasy_data_id\":18463,\"years_exp\":1,\"hashtag\":\"#ChrisMayes-NFL-FA-74\",\"search_first_name\":\"chris\",\"rotowire_id\":11130,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Chris Mayes\",\"sportradar_id\":\"e49a6f7f-5843-4361-b767-57014474843b\",\"pandascore_id\":null,\"yahoo_id\":29649,\"last_name\":\"Mayes\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrismayes\",\"birth_date\":\"1991-09-27\",\"espn_id\":null},\"2087\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stanton\",\"depth_chart_position\":null,\"player_id\":\"2087\",\"birth_city\":null,\"fantasy_data_id\":16401,\"years_exp\":1,\"hashtag\":\"#JordanStanton-NFL-FA-66\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jordan Stanton\",\"sportradar_id\":\"597ab44a-86bc-4df2-95de-c31e3d4c55dc\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Stanton\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanstanton\",\"birth_date\":\"1985-09-06\",\"espn_id\":17313},\"3900\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"3900\",\"birth_city\":null,\"fantasy_data_id\":18724,\"years_exp\":0,\"hashtag\":\"#NateRobinson-NFL-FA-0\",\"search_first_name\":\"nate\",\"rotowire_id\":null,\"rotoworld_id\":12079,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nate Robinson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"naterobinson\",\"birth_date\":null,\"espn_id\":null},\"4315\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033248\",\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567539920710,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sayles\",\"depth_chart_position\":null,\"player_id\":\"4315\",\"birth_city\":null,\"fantasy_data_id\":19167,\"years_exp\":3,\"hashtag\":\"#CaseySayles-NFL-FA-74\",\"search_first_name\":\"casey\",\"rotowire_id\":12765,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Casey Sayles\",\"sportradar_id\":\"8dfbc354-6308-457c-95bc-74910878f2f2\",\"pandascore_id\":null,\"yahoo_id\":30376,\"last_name\":\"Sayles\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'4\\\"\",\"search_full_name\":\"caseysayles\",\"birth_date\":\"1995-09-04\",\"espn_id\":3053000},\"5366\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034397\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1574373336067,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"settle\",\"depth_chart_position\":\"RDT\",\"player_id\":\"5366\",\"birth_city\":null,\"fantasy_data_id\":20002,\"years_exp\":2,\"hashtag\":\"#TimSettle-NFL-WAS-97\",\"search_first_name\":\"tim\",\"rotowire_id\":12544,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1389,\"age\":23,\"full_name\":\"Tim Settle\",\"sportradar_id\":\"8442c8f8-7fbb-4a0b-8407-355c2dfdf72c\",\"pandascore_id\":null,\"yahoo_id\":31133,\"last_name\":\"Settle\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Stonewall Jackson (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"timsettle\",\"birth_date\":\"1997-07-11\",\"espn_id\":3929956},\"5426\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034082\",\"first_name\":\"McKay\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":null,\"player_id\":\"5426\",\"birth_city\":null,\"fantasy_data_id\":20315,\"years_exp\":2,\"hashtag\":\"#McKayMurphy-NFL-FA-61\",\"search_first_name\":\"mckay\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"McKay Murphy\",\"sportradar_id\":\"563471e7-202e-494d-bab7-a2493a9a6e31\",\"pandascore_id\":null,\"yahoo_id\":31392,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mckaymurphy\",\"birth_date\":\"1991-09-05\",\"espn_id\":3052510},\"5495\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034559\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602955255901,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"larkin\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5495\",\"birth_city\":null,\"fantasy_data_id\":20488,\"years_exp\":2,\"hashtag\":\"#AustinLarkin-NFL-CAR-96\",\"search_first_name\":\"austin\",\"rotowire_id\":13251,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1480,\"age\":25,\"full_name\":\"Austin Larkin\",\"sportradar_id\":\"9fe70732-0c55-42ff-a79c-9d234fbc995c\",\"pandascore_id\":null,\"yahoo_id\":31286,\"last_name\":\"Larkin\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Dougherty Valley (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austinlarkin\",\"birth_date\":\"1995-04-06\",\"espn_id\":4035726},\"3504\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scheu\",\"depth_chart_position\":null,\"player_id\":\"3504\",\"birth_city\":null,\"fantasy_data_id\":18270,\"years_exp\":3,\"hashtag\":\"#StevenScheu-NFL-FA-81\",\"search_first_name\":\"steven\",\"rotowire_id\":11195,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Steven Scheu\",\"sportradar_id\":\"fa62cdd9-8047-4556-b2b7-c1b8dadb118a\",\"pandascore_id\":null,\"yahoo_id\":29877,\"last_name\":\"Scheu\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607423,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stevenscheu\",\"birth_date\":\"1992-07-07\",\"espn_id\":2577793},\"3118\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032322\",\"first_name\":\"Dexter\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1546569937601,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccoil\",\"depth_chart_position\":null,\"player_id\":\"3118\",\"birth_city\":null,\"fantasy_data_id\":17872,\"years_exp\":4,\"hashtag\":\"#DexterMcCoil-NFL-FA-14\",\"search_first_name\":\"dexter\",\"rotowire_id\":10829,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dexter McCoil\",\"sportradar_id\":\"4cdcea81-769e-48a1-ad97-234e5ff649ea\",\"pandascore_id\":null,\"yahoo_id\":29216,\"last_name\":\"McCoil\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":509836,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dextermccoil\",\"birth_date\":\"1991-09-05\",\"espn_id\":2470860},\"3512\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Victor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1523314501138,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ochi\",\"depth_chart_position\":null,\"player_id\":\"3512\",\"birth_city\":null,\"fantasy_data_id\":18278,\"years_exp\":3,\"hashtag\":\"#VictorOchi-NFL-FA-51\",\"search_first_name\":\"victor\",\"rotowire_id\":11153,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Victor Ochi\",\"sportradar_id\":\"5e019bcd-d212-477e-b2c2-26fae93c939e\",\"pandascore_id\":null,\"yahoo_id\":29756,\"last_name\":\"Ochi\",\"metadata\":null,\"college\":\"Stony Brook\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"victorochi\",\"birth_date\":\"1993-10-02\",\"espn_id\":2565903},\"1618\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rico\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"1618\",\"birth_city\":null,\"fantasy_data_id\":15303,\"years_exp\":7,\"hashtag\":\"#RicoRichardson-NFL-FA-3\",\"search_first_name\":\"rico\",\"rotowire_id\":9201,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Rico Richardson\",\"sportradar_id\":\"0c59f26f-dad7-4e37-b690-da7b180d954c\",\"pandascore_id\":null,\"yahoo_id\":27181,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Jackson State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":507804,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ricorichardson\",\"birth_date\":\"1991-07-01\",\"espn_id\":16273},\"3466\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williamson\",\"depth_chart_position\":null,\"player_id\":\"3466\",\"birth_city\":null,\"fantasy_data_id\":18230,\"years_exp\":3,\"hashtag\":\"#AndrewWilliamson-NFL-FA-36\",\"search_first_name\":\"andrew\",\"rotowire_id\":11439,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Andrew Williamson\",\"sportradar_id\":\"d48c7af1-90d8-47c4-8a01-c0871f5e1d66\",\"pandascore_id\":null,\"yahoo_id\":29615,\"last_name\":\"Williamson\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andrewwilliamson\",\"birth_date\":\"1992-11-18\",\"espn_id\":2577803},\"607\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1519684501929,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hawley\",\"depth_chart_position\":null,\"player_id\":\"607\",\"birth_city\":null,\"fantasy_data_id\":11429,\"years_exp\":10,\"hashtag\":\"#JoeHawley-NFL-FA-68\",\"search_first_name\":\"joe\",\"rotowire_id\":6724,\"rotoworld_id\":5899,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Joe Hawley\",\"sportradar_id\":\"cad3dc25-68fe-4115-b72c-41e59a674a99\",\"pandascore_id\":null,\"yahoo_id\":24092,\"last_name\":\"Hawley\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"Esperanza (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joehawley\",\"birth_date\":\"1988-10-22\",\"espn_id\":13385},\"3434\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wells\",\"depth_chart_position\":null,\"player_id\":\"3434\",\"birth_city\":null,\"fantasy_data_id\":18198,\"years_exp\":0,\"hashtag\":\"#IanWells-NFL-FA-40\",\"search_first_name\":\"ian\",\"rotowire_id\":11345,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ian Wells\",\"sportradar_id\":\"4761cc39-de1c-4799-8957-14a5c9511289\",\"pandascore_id\":null,\"yahoo_id\":29782,\"last_name\":\"Wells\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ianwells\",\"birth_date\":\"1993-07-14\",\"espn_id\":null},\"2026\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031158\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535770229952,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"atkinson\",\"depth_chart_position\":null,\"player_id\":\"2026\",\"birth_city\":null,\"fantasy_data_id\":16309,\"years_exp\":6,\"hashtag\":\"#GeorgeAtkinson-NFL-FA-34\",\"search_first_name\":\"george\",\"rotowire_id\":9280,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"George Atkinson\",\"sportradar_id\":\"307141c3-baf9-486c-896c-5bb825f4d082\",\"pandascore_id\":null,\"yahoo_id\":28185,\"last_name\":\"Atkinson\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":610931,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"georgeatkinson\",\"birth_date\":\"1992-11-29\",\"espn_id\":17396},\"5058\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034354\",\"first_name\":\"Kemoko\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605656425060,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"turay\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5058\",\"birth_city\":null,\"fantasy_data_id\":19879,\"years_exp\":2,\"hashtag\":\"#KemokoTuray-NFL-IND-57\",\"search_first_name\":\"kemoko\",\"rotowire_id\":12799,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1317,\"age\":25,\"full_name\":\"Kemoko Turay\",\"sportradar_id\":\"d22c6b00-da97-4ccf-ae49-f06405fccc3e\",\"pandascore_id\":null,\"yahoo_id\":31022,\"last_name\":\"Turay\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Barringer (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kemokoturay\",\"birth_date\":\"1995-07-11\",\"espn_id\":3047512},\"405\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ogletree\",\"depth_chart_position\":null,\"player_id\":\"405\",\"birth_city\":null,\"fantasy_data_id\":8846,\"years_exp\":5,\"hashtag\":\"#KevinOgletree-NFL-FA-11\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kevin Ogletree\",\"sportradar_id\":\"5649ae74-aac1-433f-8f0f-ea812a285fac\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ogletree\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":306291,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kevinogletree\",\"birth_date\":\"1987-08-05\",\"espn_id\":12588},\"4409\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033332\",\"first_name\":\"Josiah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1552510855731,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"4409\",\"birth_city\":null,\"fantasy_data_id\":19269,\"years_exp\":3,\"hashtag\":\"#JosiahPrice-NFL-FA-87\",\"search_first_name\":\"josiah\",\"rotowire_id\":12975,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josiah Price\",\"sportradar_id\":\"25aca9c3-55fb-4113-9367-f0877d6f5490\",\"pandascore_id\":null,\"yahoo_id\":30441,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696179,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'3\\\"\",\"search_full_name\":\"josiahprice\",\"birth_date\":\"1993-07-19\",\"espn_id\":2979554},\"6339\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035449\",\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1597713013149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"6339\",\"birth_city\":null,\"fantasy_data_id\":21246,\"years_exp\":1,\"hashtag\":\"#JamalDavis-NFL-TEN-59\",\"search_first_name\":\"jamal\",\"rotowire_id\":13851,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1703,\"age\":25,\"full_name\":\"Jamal Davis\",\"sportradar_id\":\"60c63a9a-f44c-4f12-b724-f65bcb8cce77\",\"pandascore_id\":null,\"yahoo_id\":32503,\"last_name\":\"Davis\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Akron\",\"high_school\":\"McKinley (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jamaldavis\",\"birth_date\":\"1995-07-09\",\"espn_id\":4046907},\"2626\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"2626\",\"birth_city\":null,\"fantasy_data_id\":17094,\"years_exp\":0,\"hashtag\":\"#KevinWhite-NFL-FA-34\",\"search_first_name\":\"kevin\",\"rotowire_id\":10432,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kevin White\",\"sportradar_id\":\"aada7f5b-2b2b-456f-a3fa-7b834dbdb52b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"White\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kevinwhite\",\"birth_date\":\"1992-07-15\",\"espn_id\":2514500},\"4874\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1534987204453,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bazile\",\"depth_chart_position\":null,\"player_id\":\"4874\",\"birth_city\":null,\"fantasy_data_id\":19771,\"years_exp\":2,\"hashtag\":\"#ChrisBazile-NFL-FA-81\",\"search_first_name\":\"chris\",\"rotowire_id\":12524,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chris Bazile\",\"sportradar_id\":\"6a784a42-feec-459c-b2d0-a14a36adf817\",\"pandascore_id\":null,\"yahoo_id\":30962,\"last_name\":\"Bazile\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":824486,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisbazile\",\"birth_date\":\"1991-10-25\",\"espn_id\":3123306},\"2256\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dillon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farrell\",\"depth_chart_position\":null,\"player_id\":\"2256\",\"birth_city\":null,\"fantasy_data_id\":16665,\"years_exp\":3,\"hashtag\":\"#DillonFarrell-NFL-FA-61\",\"search_first_name\":\"dillon\",\"rotowire_id\":9969,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dillon Farrell\",\"sportradar_id\":\"698db044-537e-4fd5-90f7-f844c717ea5f\",\"pandascore_id\":null,\"yahoo_id\":28064,\"last_name\":\"Farrell\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dillonfarrell\",\"birth_date\":\"1990-09-07\",\"espn_id\":17144},\"1957\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031064\",\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1567290010680,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"savage\",\"depth_chart_position\":null,\"player_id\":\"1957\",\"birth_city\":null,\"fantasy_data_id\":16211,\"years_exp\":6,\"hashtag\":\"#TomSavage-NFL-FA-3\",\"search_first_name\":\"tom\",\"rotowire_id\":9701,\"rotoworld_id\":9418,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tom Savage\",\"sportradar_id\":\"ba2e7ff8-ed39-4fd1-85e3-d263a946a212\",\"pandascore_id\":null,\"yahoo_id\":27663,\"last_name\":\"Savage\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":511883,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tomsavage\",\"birth_date\":\"1990-04-26\",\"espn_id\":16943},\"3703\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032708\",\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1515863401704,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"3703\",\"birth_city\":null,\"fantasy_data_id\":18509,\"years_exp\":4,\"hashtag\":\"#DeonKing-NFL-FA-58\",\"search_first_name\":\"deon\",\"rotowire_id\":11371,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Deon King\",\"sportradar_id\":\"3423801e-c462-4d71-a740-28dca36bcbfa\",\"pandascore_id\":null,\"yahoo_id\":29894,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Norfolk State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deonking\",\"birth_date\":\"1993-07-02\",\"espn_id\":2978411},\"3052\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ings\",\"depth_chart_position\":null,\"player_id\":\"3052\",\"birth_city\":null,\"fantasy_data_id\":17767,\"years_exp\":0,\"hashtag\":\"#KendrickIngs-NFL-FA-14\",\"search_first_name\":\"kendrick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kendrick Ings\",\"sportradar_id\":\"64ff08e2-5057-4a9f-ab01-df411865b98c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ings\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":867912,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kendrickings\",\"birth_date\":\"1990-06-17\",\"espn_id\":null},\"2556\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031768\",\"first_name\":\"Terrence\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535852108578,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"magee\",\"depth_chart_position\":null,\"player_id\":\"2556\",\"birth_city\":null,\"fantasy_data_id\":17016,\"years_exp\":5,\"hashtag\":\"#TerrenceMagee-NFL-FA-41\",\"search_first_name\":\"terrence\",\"rotowire_id\":10195,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Terrence Magee\",\"sportradar_id\":\"03e668c4-0249-4838-b633-f2f10a6759d0\",\"pandascore_id\":null,\"yahoo_id\":28953,\"last_name\":\"Magee\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Franklinton (LA)\",\"depth_chart_order\":null,\"stats_id\":589993,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'9\\\"\",\"search_full_name\":\"terrencemagee\",\"birth_date\":\"1993-03-16\",\"espn_id\":2577283},\"7026\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gonzalez\",\"depth_chart_position\":null,\"player_id\":\"7026\",\"birth_city\":null,\"fantasy_data_id\":22102,\"years_exp\":0,\"hashtag\":\"#StevenGonzalez-NFL-FA-0\",\"search_first_name\":\"steven\",\"rotowire_id\":14804,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Steven Gonzalez\",\"sportradar_id\":\"232655ce-8f50-4d71-b2cb-a4be961e8d1b\",\"pandascore_id\":null,\"yahoo_id\":33078,\"last_name\":\"Gonzalez\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'4\\\"\",\"search_full_name\":\"stevengonzalez\",\"birth_date\":\"1997-05-11\",\"espn_id\":3929642},\"7232\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603749938954,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"7232\",\"birth_city\":null,\"fantasy_data_id\":22233,\"years_exp\":0,\"hashtag\":\"#RashadSmith-NFL-PHI-53\",\"search_first_name\":\"rashad\",\"rotowire_id\":15096,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1956,\"age\":23,\"full_name\":\"Rashad Smith\",\"sportradar_id\":\"dec323b8-fb75-4182-b03d-6c412d3d51a5\",\"pandascore_id\":null,\"yahoo_id\":33180,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Homestead (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rashadsmith\",\"birth_date\":\"1997-04-20\",\"espn_id\":4040762},\"5710\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034733\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holley\",\"depth_chart_position\":null,\"player_id\":\"5710\",\"birth_city\":null,\"fantasy_data_id\":20649,\"years_exp\":2,\"hashtag\":\"#NickHolley-NFL-FA-25\",\"search_first_name\":\"nick\",\"rotowire_id\":13340,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nick Holley\",\"sportradar_id\":\"ce367921-7e8d-46fe-b568-6116c00c5000\",\"pandascore_id\":null,\"yahoo_id\":31730,\"last_name\":\"Holley\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749832,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"nickholley\",\"birth_date\":\"1994-12-05\",\"espn_id\":3052549},\"5030\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034828\",\"first_name\":\"Harold\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606095937244,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"landry\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"5030\",\"birth_city\":null,\"fantasy_data_id\":19862,\"years_exp\":2,\"hashtag\":\"#HaroldLandry-NFL-TEN-58\",\"search_first_name\":\"harold\",\"rotowire_id\":12883,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1307,\"age\":24,\"full_name\":\"Harold Landry\",\"sportradar_id\":\"60d5e71e-e127-463b-8e6b-26a7dac3db76\",\"pandascore_id\":null,\"yahoo_id\":31011,\"last_name\":\"Landry\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Boston College\",\"high_school\":\"Pine Forest (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"haroldlandry\",\"birth_date\":\"1996-06-05\",\"espn_id\":3122793},\"3998\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1580757357846,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woods\",\"depth_chart_position\":null,\"player_id\":\"3998\",\"birth_city\":null,\"fantasy_data_id\":18837,\"years_exp\":0,\"hashtag\":\"#JoeWoods-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":12154,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Woods\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Woods\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joewoods\",\"birth_date\":null,\"espn_id\":null},\"1173\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarrett\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boykin\",\"depth_chart_position\":null,\"player_id\":\"1173\",\"birth_city\":null,\"fantasy_data_id\":14275,\"years_exp\":4,\"hashtag\":\"#JarrettBoykin-NFL-FA-17\",\"search_first_name\":\"jarrett\",\"rotowire_id\":8110,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jarrett Boykin\",\"sportradar_id\":\"8920894c-dc0e-4ed6-96e5-b96eadcf2092\",\"pandascore_id\":null,\"yahoo_id\":26083,\"last_name\":\"Boykin\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":464364,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jarrettboykin\",\"birth_date\":\"1989-11-04\",\"espn_id\":15358},\"4284\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033795\",\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596768349902,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"seaton\",\"depth_chart_position\":null,\"player_id\":\"4284\",\"birth_city\":null,\"fantasy_data_id\":19130,\"years_exp\":3,\"hashtag\":\"#BradSeaton-NFL-TB-62\",\"search_first_name\":\"brad\",\"rotowire_id\":12218,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brad Seaton\",\"sportradar_id\":\"a10ec19e-0573-4a53-9a27-5285ce9fe85f\",\"pandascore_id\":null,\"yahoo_id\":30349,\"last_name\":\"Seaton\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":\"Brunswick (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'9\\\"\",\"search_full_name\":\"bradseaton\",\"birth_date\":\"1993-11-23\",\"espn_id\":2982323},\"1190\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029208\",\"first_name\":\"Tyrunn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1547581826751,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"1190\",\"birth_city\":null,\"fantasy_data_id\":14369,\"years_exp\":8,\"hashtag\":\"#TyrunnWalker-NFL-FA-97\",\"search_first_name\":\"tyrunn\",\"rotowire_id\":8564,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tyrunn Walker\",\"sportradar_id\":\"e9cf609e-4d2a-497e-b7c5-677949820145\",\"pandascore_id\":null,\"yahoo_id\":26054,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":\"Westgate (LA)\",\"depth_chart_order\":null,\"stats_id\":554384,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tyrunnwalker\",\"birth_date\":\"1990-03-18\",\"espn_id\":15460},\"7315\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599279055321,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holly\",\"depth_chart_position\":null,\"player_id\":\"7315\",\"birth_city\":null,\"fantasy_data_id\":22309,\"years_exp\":0,\"hashtag\":\"#BobbyHolly-NFL-FA-0\",\"search_first_name\":\"bobby\",\"rotowire_id\":15092,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1976,\"age\":23,\"full_name\":\"Bobby Holly\",\"sportradar_id\":\"f4040e8a-9c3b-464d-861e-31a2c538db1f\",\"pandascore_id\":null,\"yahoo_id\":32984,\"last_name\":\"Holly\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bobbyholly\",\"birth_date\":\"1997-06-04\",\"espn_id\":4040419},\"7400\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Manasseh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359944,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"7400\",\"birth_city\":null,\"fantasy_data_id\":22385,\"years_exp\":0,\"hashtag\":\"#ManassehBailey-NFL-FA-0\",\"search_first_name\":\"manasseh\",\"rotowire_id\":14873,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Manasseh Bailey\",\"sportradar_id\":\"47b787d0-d4cb-49a3-8383-c3986bde0bdf\",\"pandascore_id\":null,\"yahoo_id\":32962,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Morgan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"manassehbailey\",\"birth_date\":\"1997-06-27\",\"espn_id\":4030747},\"3141\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ruston\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"webster\",\"depth_chart_position\":null,\"player_id\":\"3141\",\"birth_city\":null,\"fantasy_data_id\":17895,\"years_exp\":null,\"hashtag\":\"#RustonWebster-NFL-FA-0\",\"search_first_name\":\"ruston\",\"rotowire_id\":null,\"rotoworld_id\":9503,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ruston Webster\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Webster\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rustonwebster\",\"birth_date\":null,\"espn_id\":null},\"981\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028101\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598314553149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kilgore\",\"depth_chart_position\":\"C\",\"player_id\":\"981\",\"birth_city\":null,\"fantasy_data_id\":13444,\"years_exp\":9,\"hashtag\":\"#DanielKilgore-NFL-KC-67\",\"search_first_name\":\"daniel\",\"rotowire_id\":7614,\"rotoworld_id\":6669,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Daniel Kilgore\",\"sportradar_id\":\"d03aa6ca-ae90-44cb-954f-507213a73b22\",\"pandascore_id\":null,\"yahoo_id\":24950,\"last_name\":\"Kilgore\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Dobyns-Bennett (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danielkilgore\",\"birth_date\":\"1987-12-18\",\"espn_id\":14110},\"4129\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033928\",\"first_name\":\"Jourdan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600289460203,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"CB\",\"player_id\":\"4129\",\"birth_city\":null,\"fantasy_data_id\":18975,\"years_exp\":3,\"hashtag\":\"#JourdanLewis-NFL-DAL-26\",\"search_first_name\":\"jourdan\",\"rotowire_id\":12024,\"rotoworld_id\":12315,\"active\":true,\"search_rank\":1161,\"age\":25,\"full_name\":\"Jourdan Lewis\",\"sportradar_id\":\"7ff68f1d-204c-4d49-9179-ecb2514094dc\",\"pandascore_id\":null,\"yahoo_id\":30205,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Cass Tech (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jourdanlewis\",\"birth_date\":\"1995-08-31\",\"espn_id\":3045207},\"5194\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034101\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599276655094,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"flanagan\",\"depth_chart_position\":\"TE\",\"player_id\":\"5194\",\"birth_city\":null,\"fantasy_data_id\":20196,\"years_exp\":2,\"hashtag\":\"#MattFlanagan-NFL-JAX-41\",\"search_first_name\":\"matt\",\"rotowire_id\":13102,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Flanagan\",\"sportradar_id\":\"9eb60195-a390-4a96-bebd-8a761551c163\",\"pandascore_id\":null,\"yahoo_id\":31400,\"last_name\":\"Flanagan\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"West Morris Mendham (NJ)\",\"depth_chart_order\":4,\"stats_id\":746177,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mattflanagan\",\"birth_date\":\"1995-03-26\",\"espn_id\":3047488},\"2005\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031350\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1582836639344,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"2005\",\"birth_city\":null,\"fantasy_data_id\":16280,\"years_exp\":6,\"hashtag\":\"#CoreyNelson-NFL-FA-56\",\"search_first_name\":\"corey\",\"rotowire_id\":9792,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Corey Nelson\",\"sportradar_id\":\"663dae9c-0484-4eb6-a093-ae19d0a743db\",\"pandascore_id\":null,\"yahoo_id\":27770,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Skyline (TX)\",\"depth_chart_order\":null,\"stats_id\":542891,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coreynelson\",\"birth_date\":\"1992-04-22\",\"espn_id\":16902},\"184\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025394\",\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606427160356,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peterson\",\"depth_chart_position\":\"RB\",\"player_id\":\"184\",\"birth_city\":null,\"fantasy_data_id\":4807,\"years_exp\":13,\"hashtag\":\"#AdrianPeterson-NFL-DET-28\",\"search_first_name\":\"adrian\",\"rotowire_id\":5215,\"rotoworld_id\":4169,\"active\":true,\"search_rank\":139,\"age\":35,\"full_name\":\"Adrian Peterson\",\"sportradar_id\":\"ab58c0ac-a747-47e6-9b3c-505e41d2bd3d\",\"pandascore_id\":null,\"yahoo_id\":8261,\"last_name\":\"Peterson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Palestine (TX)\",\"depth_chart_order\":1,\"stats_id\":267443,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"adrianpeterson\",\"birth_date\":\"1985-03-21\",\"espn_id\":10452},\"3072\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1514321701537,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathews\",\"depth_chart_position\":null,\"player_id\":\"3072\",\"birth_city\":null,\"fantasy_data_id\":17818,\"years_exp\":4,\"hashtag\":\"#DerrickMathews-NFL-FA-39\",\"search_first_name\":\"derrick\",\"rotowire_id\":10825,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Derrick Mathews\",\"sportradar_id\":\"353fd6d4-cbab-40bc-92ee-3db0327f017a\",\"pandascore_id\":null,\"yahoo_id\":29210,\"last_name\":\"Mathews\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609755,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'0\\\"\",\"search_full_name\":\"derrickmathews\",\"birth_date\":\"1992-09-25\",\"espn_id\":2575572},\"6807\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606149314217,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"queen\",\"depth_chart_position\":\"MLB\",\"player_id\":\"6807\",\"birth_city\":null,\"fantasy_data_id\":21982,\"years_exp\":0,\"hashtag\":\"#PatrickQueen-NFL-BAL-48\",\"search_first_name\":\"patrick\",\"rotowire_id\":14508,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1865,\"age\":21,\"full_name\":\"Patrick Queen\",\"sportradar_id\":\"bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232\",\"pandascore_id\":null,\"yahoo_id\":32698,\"last_name\":\"Queen\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Livonia (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'1\\\"\",\"search_full_name\":\"patrickqueen\",\"birth_date\":\"1999-08-13\",\"espn_id\":4242207},\"3850\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"3850\",\"birth_city\":null,\"fantasy_data_id\":18671,\"years_exp\":0,\"hashtag\":\"#LouisPalmer-NFL-FA-67\",\"search_first_name\":\"louis\",\"rotowire_id\":11338,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Louis Palmer\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29980,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"louispalmer\",\"birth_date\":\"1994-12-08\",\"espn_id\":null},\"5284\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034115\",\"first_name\":\"Jeffery\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606515028109,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"RB\",\"player_id\":\"5284\",\"birth_city\":null,\"fantasy_data_id\":20360,\"years_exp\":2,\"hashtag\":\"#JefferyWilson-NFL-SF-30\",\"search_first_name\":\"jeffery\",\"rotowire_id\":12932,\"rotoworld_id\":13578,\"active\":true,\"search_rank\":312,\"age\":25,\"full_name\":\"Jeffery Wilson\",\"sportradar_id\":\"72cf3127-3953-4fd8-8049-3de1b6fa9825\",\"pandascore_id\":null,\"yahoo_id\":31394,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Elkhart (TX)\",\"depth_chart_order\":4,\"stats_id\":834195,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jefferywilson\",\"birth_date\":\"1995-11-16\",\"espn_id\":3122976},\"5259\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034624\",\"first_name\":\"Lavon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1557160821573,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":\"RB\",\"player_id\":\"5259\",\"birth_city\":null,\"fantasy_data_id\":20294,\"years_exp\":2,\"hashtag\":\"#LavonColeman-NFL-FA-24\",\"search_first_name\":\"lavon\",\"rotowire_id\":12895,\"rotoworld_id\":13734,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lavon Coleman\",\"sportradar_id\":\"fa890b86-8204-40b0-ab8a-301a35d15ad6\",\"pandascore_id\":null,\"yahoo_id\":31575,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":747892,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lavoncoleman\",\"birth_date\":\"1994-12-10\",\"espn_id\":3052163},\"5832\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034904\",\"first_name\":\"Mercy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maston\",\"depth_chart_position\":null,\"player_id\":\"5832\",\"birth_city\":null,\"fantasy_data_id\":20725,\"years_exp\":1,\"hashtag\":\"#MercyMaston-NFL-FA-9\",\"search_first_name\":\"mercy\",\"rotowire_id\":13570,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mercy Maston\",\"sportradar_id\":\"655f87b9-e129-4271-8b90-8ff3c9b9d4e9\",\"pandascore_id\":null,\"yahoo_id\":31814,\"last_name\":\"Maston\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mercymaston\",\"birth_date\":\"1992-11-10\",\"espn_id\":3042880},\"878\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028008\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603036507955,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":\"RDE\",\"player_id\":\"878\",\"birth_city\":null,\"fantasy_data_id\":13036,\"years_exp\":9,\"hashtag\":\"#JustinHouston-NFL-IND-50\",\"search_first_name\":\"justin\",\"rotowire_id\":7476,\"rotoworld_id\":6556,\"active\":true,\"search_rank\":638,\"age\":31,\"full_name\":\"Justin Houston\",\"sportradar_id\":\"98841eb4-0f2a-4073-bc91-0fa8548b305b\",\"pandascore_id\":null,\"yahoo_id\":24857,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Statesboro (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinhouston\",\"birth_date\":\"1989-01-21\",\"espn_id\":14048},\"7470\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"7470\",\"birth_city\":null,\"fantasy_data_id\":22445,\"years_exp\":0,\"hashtag\":\"#EvanAdams-NFL-FA-0\",\"search_first_name\":\"evan\",\"rotowire_id\":15139,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Evan Adams\",\"sportradar_id\":\"df80d962-901e-4ef0-8cfe-8e187e3ff254\",\"pandascore_id\":null,\"yahoo_id\":33014,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"347\",\"height\":\"6'5\\\"\",\"search_full_name\":\"evanadams\",\"birth_date\":null,\"espn_id\":null},\"1283\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029329\",\"first_name\":\"Neiko\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605734731209,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thorpe\",\"depth_chart_position\":null,\"player_id\":\"1283\",\"birth_city\":null,\"fantasy_data_id\":14730,\"years_exp\":8,\"hashtag\":\"#NeikoThorpe-NFL-SEA-23\",\"search_first_name\":\"neiko\",\"rotowire_id\":8584,\"rotoworld_id\":null,\"active\":true,\"search_rank\":697,\"age\":30,\"full_name\":\"Neiko Thorpe\",\"sportradar_id\":\"b7b3c187-7447-4d02-94b7-5d3ee64ca530\",\"pandascore_id\":null,\"yahoo_id\":26122,\"last_name\":\"Thorpe\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Tucker (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"neikothorpe\",\"birth_date\":\"1990-02-01\",\"espn_id\":15535},\"7457\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598920230095,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dereus\",\"depth_chart_position\":null,\"player_id\":\"7457\",\"birth_city\":null,\"fantasy_data_id\":22435,\"years_exp\":0,\"hashtag\":\"#MichaelDereus-NFL-FA-0\",\"search_first_name\":\"michael\",\"rotowire_id\":15121,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Michael Dereus\",\"sportradar_id\":\"e214454a-bba3-417e-a6fe-cfc8f784c7f8\",\"pandascore_id\":null,\"yahoo_id\":33013,\"last_name\":\"Dereus\",\"metadata\":null,\"college\":\"Georgetown\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michaeldereus\",\"birth_date\":\"1997-12-18\",\"espn_id\":4043814},\"620\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Preston\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":null,\"player_id\":\"620\",\"birth_city\":null,\"fantasy_data_id\":11517,\"years_exp\":10,\"hashtag\":\"#PrestonParker-NFL-FA-15\",\"search_first_name\":\"preston\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Preston Parker\",\"sportradar_id\":\"79c9c4ff-58e6-4789-bfdf-83711c1d0a7c\",\"pandascore_id\":null,\"yahoo_id\":24373,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"North Alabama\",\"high_school\":\"Atlantic (FL)\",\"depth_chart_order\":null,\"stats_id\":323500,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"prestonparker\",\"birth_date\":\"1987-02-13\",\"espn_id\":13703},\"2617\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031898\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606429260017,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"singleton\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"2617\",\"birth_city\":null,\"fantasy_data_id\":17085,\"years_exp\":5,\"hashtag\":\"#AlexSingleton-NFL-PHI-49\",\"search_first_name\":\"alex\",\"rotowire_id\":10811,\"rotoworld_id\":null,\"active\":true,\"search_rank\":916,\"age\":26,\"full_name\":\"Alex Singleton\",\"sportradar_id\":\"954d9ed8-41ed-4222-b0d8-b3cc8d1755a5\",\"pandascore_id\":null,\"yahoo_id\":28716,\"last_name\":\"Singleton\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":\"Thousand Oaks (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alexsingleton\",\"birth_date\":\"1993-12-07\",\"espn_id\":2612151},\"3616\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032883\",\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1589652017831,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"loewen\",\"depth_chart_position\":null,\"player_id\":\"3616\",\"birth_city\":null,\"fantasy_data_id\":18403,\"years_exp\":4,\"hashtag\":\"#MitchellLoewen-NFL-FA-0\",\"search_first_name\":\"mitchell\",\"rotowire_id\":11684,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1074,\"age\":27,\"full_name\":\"Mitchell Loewen\",\"sportradar_id\":\"6c5ade3f-43c4-4153-b0ef-c9772bce8101\",\"pandascore_id\":null,\"yahoo_id\":29856,\"last_name\":\"Loewen\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mitchellloewen\",\"birth_date\":\"1993-02-14\",\"espn_id\":2578754},\"3507\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032879\",\"first_name\":\"Landon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566405307738,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":null,\"player_id\":\"3507\",\"birth_city\":null,\"fantasy_data_id\":18273,\"years_exp\":4,\"hashtag\":\"#LandonTurner-NFL-FA-67\",\"search_first_name\":\"landon\",\"rotowire_id\":10965,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Landon Turner\",\"sportradar_id\":\"e710f662-a7ba-4a95-a5c8-982519ecb2ed\",\"pandascore_id\":null,\"yahoo_id\":29863,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"landonturner\",\"birth_date\":\"1993-05-15\",\"espn_id\":2577115},\"3441\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032575\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606348203377,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"skura\",\"depth_chart_position\":null,\"player_id\":\"3441\",\"birth_city\":null,\"fantasy_data_id\":18205,\"years_exp\":4,\"hashtag\":\"#MattSkura-NFL-BAL-68\",\"search_first_name\":\"matt\",\"rotowire_id\":11176,\"rotoworld_id\":11609,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Matt Skura\",\"sportradar_id\":\"7e7b5ec8-dcf4-409f-a0eb-99246b7493c5\",\"pandascore_id\":null,\"yahoo_id\":29760,\"last_name\":\"Skura\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Worthington Kilbourne (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattskura\",\"birth_date\":\"1993-02-17\",\"espn_id\":2576733},\"7076\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599312656175,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"7076\",\"birth_city\":null,\"fantasy_data_id\":21715,\"years_exp\":0,\"hashtag\":\"#JeffThomas-NFL-FA-0\",\"search_first_name\":\"jeff\",\"rotowire_id\":14382,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1776,\"age\":23,\"full_name\":\"Jeff Thomas\",\"sportradar_id\":\"a80ccad9-4e50-4796-955e-0278f0c9bd2f\",\"pandascore_id\":null,\"yahoo_id\":33022,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jeffthomas\",\"birth_date\":\"1997-06-17\",\"espn_id\":4240626},\"4869\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Winston\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moss\",\"depth_chart_position\":null,\"player_id\":\"4869\",\"birth_city\":null,\"fantasy_data_id\":19769,\"years_exp\":0,\"hashtag\":\"#WinstonMoss-NFL-FA-0\",\"search_first_name\":\"winston\",\"rotowire_id\":null,\"rotoworld_id\":13049,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Winston Moss\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Moss\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"winstonmoss\",\"birth_date\":null,\"espn_id\":null},\"440\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sherrod\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"440\",\"birth_city\":null,\"fantasy_data_id\":9166,\"years_exp\":11,\"hashtag\":\"#SherrodMartin-NFL-FA-36\",\"search_first_name\":\"sherrod\",\"rotowire_id\":6107,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Sherrod Martin\",\"sportradar_id\":\"3f03d889-ec41-4841-8f49-ba9c08293e22\",\"pandascore_id\":null,\"yahoo_id\":9323,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sherrodmartin\",\"birth_date\":\"1984-10-12\",\"espn_id\":12617},\"1606\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jumal\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rolle\",\"depth_chart_position\":null,\"player_id\":\"1606\",\"birth_city\":null,\"fantasy_data_id\":15274,\"years_exp\":7,\"hashtag\":\"#JumalRolle-NFL-FA-38\",\"search_first_name\":\"jumal\",\"rotowire_id\":9237,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jumal Rolle\",\"sportradar_id\":\"152ebb93-95a9-410a-a6c4-a93184fda16a\",\"pandascore_id\":null,\"yahoo_id\":27011,\"last_name\":\"Rolle\",\"metadata\":null,\"college\":\"Catawba\",\"high_school\":\"Beddingfield (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jumalrolle\",\"birth_date\":\"1990-05-28\",\"espn_id\":16219},\"1116\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029600\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1566761707968,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"branch\",\"depth_chart_position\":null,\"player_id\":\"1116\",\"birth_city\":null,\"fantasy_data_id\":14021,\"years_exp\":8,\"hashtag\":\"#AndreBranch-NFL-FA-49\",\"search_first_name\":\"andre\",\"rotowire_id\":8136,\"rotoworld_id\":7532,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Andre Branch\",\"sportradar_id\":\"ba384269-98b5-47ee-93bb-18a4e71ad0eb\",\"pandascore_id\":null,\"yahoo_id\":25748,\"last_name\":\"Branch\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Varina HS (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'5\\\"\",\"search_full_name\":\"andrebranch\",\"birth_date\":\"1989-07-14\",\"espn_id\":14952},\"5874\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035235\",\"first_name\":\"Kaleb\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603929929812,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcgary\",\"depth_chart_position\":\"RT\",\"player_id\":\"5874\",\"birth_city\":null,\"fantasy_data_id\":20870,\"years_exp\":1,\"hashtag\":\"#KalebMcGary-NFL-ATL-76\",\"search_first_name\":\"kaleb\",\"rotowire_id\":13748,\"rotoworld_id\":14087,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kaleb McGary\",\"sportradar_id\":\"37095914-53be-4d16-b5c7-2194dbb6d6c2\",\"pandascore_id\":null,\"yahoo_id\":31863,\"last_name\":\"McGary\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Fife (WA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kalebmcgary\",\"birth_date\":\"1995-02-22\",\"espn_id\":3127304},\"4688\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Najee\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":null,\"player_id\":\"4688\",\"birth_city\":null,\"fantasy_data_id\":19590,\"years_exp\":2,\"hashtag\":\"#NajeeMurray-NFL-FA-33\",\"search_first_name\":\"najee\",\"rotowire_id\":12247,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Najee Murray\",\"sportradar_id\":\"77082c13-bf9a-452b-ae6f-18feb96265c7\",\"pandascore_id\":null,\"yahoo_id\":30828,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'9\\\"\",\"search_full_name\":\"najeemurray\",\"birth_date\":\"1994-04-21\",\"espn_id\":2976302},\"2349\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032056\",\"first_name\":\"Hau'oli\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1535765145574,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kikaha\",\"depth_chart_position\":null,\"player_id\":\"2349\",\"birth_city\":null,\"fantasy_data_id\":16805,\"years_exp\":5,\"hashtag\":\"#HauoliKikaha-NFL-FA-44\",\"search_first_name\":\"hauoli\",\"rotowire_id\":10357,\"rotoworld_id\":10406,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Hau'oli Kikaha\",\"sportradar_id\":\"97b3d907-e5b4-4ae2-a9ae-af4dad3dd169\",\"pandascore_id\":null,\"yahoo_id\":28432,\"last_name\":\"Kikaha\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Kahuku (HI)\",\"depth_chart_order\":null,\"stats_id\":557884,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hauolikikaha\",\"birth_date\":\"1992-07-24\",\"espn_id\":2509488},\"54\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyvon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1522772101155,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"branch\",\"depth_chart_position\":null,\"player_id\":\"54\",\"birth_city\":null,\"fantasy_data_id\":1590,\"years_exp\":12,\"hashtag\":\"#TyvonBranch-NFL-FA-27\",\"search_first_name\":\"tyvon\",\"rotowire_id\":5756,\"rotoworld_id\":4871,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Tyvon Branch\",\"sportradar_id\":\"ce572d82-6f54-4317-8a1a-1c9c917972cc\",\"pandascore_id\":null,\"yahoo_id\":8877,\"last_name\":\"Branch\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Cicero-North Syracuse (NY)\",\"depth_chart_order\":null,\"stats_id\":267335,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tyvonbranch\",\"birth_date\":\"1986-12-11\",\"espn_id\":11334},\"3683\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Don\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cherry\",\"depth_chart_position\":null,\"player_id\":\"3683\",\"birth_city\":null,\"fantasy_data_id\":18483,\"years_exp\":3,\"hashtag\":\"#DonCherry-NFL-FA-48\",\"search_first_name\":\"don\",\"rotowire_id\":11608,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Don Cherry\",\"sportradar_id\":\"dca57426-d548-46cd-a16f-fb00316d9a56\",\"pandascore_id\":null,\"yahoo_id\":29917,\"last_name\":\"Cherry\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"doncherry\",\"birth_date\":\"1994-09-27\",\"espn_id\":2982305},\"LAC\":{\"team\":\"LAC\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"LAC\",\"last_name\":\"Chargers\",\"injury_status\":null,\"first_name\":\"Los Angeles\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"7406\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"riley\",\"depth_chart_position\":null,\"player_id\":\"7406\",\"birth_city\":null,\"fantasy_data_id\":22390,\"years_exp\":0,\"hashtag\":\"#ElijahRiley-NFL-PHI-48\",\"search_first_name\":\"elijah\",\"rotowire_id\":14498,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Elijah Riley\",\"sportradar_id\":\"8782ad19-a41a-455d-84f9-aa64f7038ee6\",\"pandascore_id\":null,\"yahoo_id\":32968,\"last_name\":\"Riley\",\"metadata\":null,\"college\":\"Army\",\"high_school\":\"Newfield (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"elijahriley\",\"birth_date\":\"1998-06-12\",\"espn_id\":4036924},\"3829\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"langford\",\"depth_chart_position\":null,\"player_id\":\"3829\",\"birth_city\":null,\"fantasy_data_id\":18648,\"years_exp\":3,\"hashtag\":\"#RyanLangford-NFL-FA-50\",\"search_first_name\":\"ryan\",\"rotowire_id\":11469,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ryan Langford\",\"sportradar_id\":\"eab43fc8-efb7-4317-ab15-916dfb4f5989\",\"pandascore_id\":null,\"yahoo_id\":29966,\"last_name\":\"Langford\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanlangford\",\"birth_date\":\"1993-06-10\",\"espn_id\":3128660},\"7281\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kameron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cline\",\"depth_chart_position\":null,\"player_id\":\"7281\",\"birth_city\":null,\"fantasy_data_id\":22278,\"years_exp\":0,\"hashtag\":\"#KameronCline-NFL-IND-92\",\"search_first_name\":\"kameron\",\"rotowire_id\":15021,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Kameron Cline\",\"sportradar_id\":\"8f36321c-c317-40ce-ae09-fca8694083b4\",\"pandascore_id\":null,\"yahoo_id\":33212,\"last_name\":\"Cline\",\"metadata\":null,\"college\":\"South Dakota\",\"high_school\":\"Patrick Henry (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kameroncline\",\"birth_date\":\"1998-02-19\",\"espn_id\":4041572},\"5768\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034841\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1568240728872,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"5768\",\"birth_city\":null,\"fantasy_data_id\":20675,\"years_exp\":2,\"hashtag\":\"#BrandonBryant-NFL-FA-38\",\"search_first_name\":\"brandon\",\"rotowire_id\":13360,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brandon Bryant\",\"sportradar_id\":\"4d4a1164-3864-40a9-98e1-423af86b7c92\",\"pandascore_id\":null,\"yahoo_id\":31763,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonbryant\",\"birth_date\":\"1995-12-21\",\"espn_id\":3115472},\"4570\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033657\",\"first_name\":\"Kennan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1544618744638,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilchrist\",\"depth_chart_position\":null,\"player_id\":\"4570\",\"birth_city\":null,\"fantasy_data_id\":19456,\"years_exp\":3,\"hashtag\":\"#KennanGilchrist-NFL-FA-47\",\"search_first_name\":\"kennan\",\"rotowire_id\":12497,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kennan Gilchrist\",\"sportradar_id\":\"65fc4235-1a53-45fa-8117-b40bfdcc807c\",\"pandascore_id\":null,\"yahoo_id\":30783,\"last_name\":\"Gilchrist\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kennangilchrist\",\"birth_date\":\"1994-09-16\",\"espn_id\":3049574},\"847\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Karl\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1521226201915,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"klug\",\"depth_chart_position\":null,\"player_id\":\"847\",\"birth_city\":null,\"fantasy_data_id\":12923,\"years_exp\":9,\"hashtag\":\"#KarlKlug-NFL-FA-97\",\"search_first_name\":\"karl\",\"rotowire_id\":7574,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Karl Klug\",\"sportradar_id\":\"036e4aad-af9e-42cf-8bc6-bd0ffb0b7a73\",\"pandascore_id\":null,\"yahoo_id\":24929,\"last_name\":\"Klug\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Caledonia (MN)\",\"depth_chart_order\":null,\"stats_id\":332351,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'3\\\"\",\"search_full_name\":\"karlklug\",\"birth_date\":\"1988-03-31\",\"espn_id\":14079},\"355\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leonard\",\"depth_chart_position\":null,\"player_id\":\"355\",\"birth_city\":null,\"fantasy_data_id\":8438,\"years_exp\":7,\"hashtag\":\"#BrianLeonard-NFL-FA-40\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Brian Leonard\",\"sportradar_id\":\"b3f527c8-5744-4751-8f54-1677fbb32aca\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Leonard\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":216312,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brianleonard\",\"birth_date\":\"1984-02-03\",\"espn_id\":null},\"1237\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"1237\",\"birth_city\":null,\"fantasy_data_id\":14564,\"years_exp\":1,\"hashtag\":\"#DominiqueDavis-NFL-FA-66\",\"search_first_name\":\"dominique\",\"rotowire_id\":10785,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dominique Davis\",\"sportradar_id\":\"fa59e399-7416-4217-8285-9f7df2d10ad9\",\"pandascore_id\":null,\"yahoo_id\":900005,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dominiquedavis\",\"birth_date\":\"1989-07-17\",\"espn_id\":null},\"6490\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mik'quan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1566400511923,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"deane\",\"depth_chart_position\":null,\"player_id\":\"6490\",\"birth_city\":null,\"fantasy_data_id\":21338,\"years_exp\":1,\"hashtag\":\"#MikquanDeane-NFL-FA-48\",\"search_first_name\":\"mikquan\",\"rotowire_id\":14089,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mik'quan Deane\",\"sportradar_id\":\"0445dc8c-5b8a-4def-a548-0f36c08990ab\",\"pandascore_id\":null,\"yahoo_id\":32337,\"last_name\":\"Deane\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1056620,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mikquandeane\",\"birth_date\":\"1995-07-28\",\"espn_id\":4246674},\"1984\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030821\",\"first_name\":\"Allen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596570012236,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"hurns\",\"depth_chart_position\":\"SWR\",\"player_id\":\"1984\",\"birth_city\":null,\"fantasy_data_id\":16253,\"years_exp\":6,\"hashtag\":\"#AllenHurns-NFL-MIA-17\",\"search_first_name\":\"allen\",\"rotowire_id\":9485,\"rotoworld_id\":9867,\"active\":true,\"search_rank\":794,\"age\":29,\"full_name\":\"Allen Hurns\",\"sportradar_id\":\"10952a8e-9da1-447b-a016-c699db00c5f0\",\"pandascore_id\":null,\"yahoo_id\":27874,\"last_name\":\"Hurns\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Carol City (FL)\",\"depth_chart_order\":2,\"stats_id\":540997,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"allenhurns\",\"birth_date\":\"1991-11-12\",\"espn_id\":17177},\"7106\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lawrence\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603927829429,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cager\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7106\",\"birth_city\":null,\"fantasy_data_id\":21728,\"years_exp\":0,\"hashtag\":\"#LawrenceCager-NFL-NYJ-86\",\"search_first_name\":\"lawrence\",\"rotowire_id\":14597,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Lawrence Cager\",\"sportradar_id\":\"2f2181f8-cb0a-42e4-9468-17f5f5a219cc\",\"pandascore_id\":null,\"yahoo_id\":33329,\"last_name\":\"Cager\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Calvert Hall (MD)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lawrencecager\",\"birth_date\":\"1997-08-20\",\"espn_id\":3917849},\"5789\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034880\",\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bazata\",\"depth_chart_position\":null,\"player_id\":\"5789\",\"birth_city\":null,\"fantasy_data_id\":20691,\"years_exp\":2,\"hashtag\":\"#NathanBazata-NFL-FA-73\",\"search_first_name\":\"nathan\",\"rotowire_id\":13387,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nathan Bazata\",\"sportradar_id\":\"dd20b476-52fe-48e1-a614-3854c6b3989c\",\"pandascore_id\":null,\"yahoo_id\":31788,\"last_name\":\"Bazata\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nathanbazata\",\"birth_date\":\"1994-07-15\",\"espn_id\":3040172},\"4687\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Abner\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"logan\",\"depth_chart_position\":null,\"player_id\":\"4687\",\"birth_city\":null,\"fantasy_data_id\":19588,\"years_exp\":2,\"hashtag\":\"#AbnerLogan-NFL-FA-46\",\"search_first_name\":\"abner\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Abner Logan\",\"sportradar_id\":\"a5d5cb4c-bda9-443a-a9cb-6d14eeb49094\",\"pandascore_id\":null,\"yahoo_id\":30841,\"last_name\":\"Logan\",\"metadata\":null,\"college\":\"Albany (NY)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"abnerlogan\",\"birth_date\":\"1993-07-24\",\"espn_id\":2976223},\"1372\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030573\",\"first_name\":\"Sheldon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605575420632,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":\"LDT\",\"player_id\":\"1372\",\"birth_city\":null,\"fantasy_data_id\":14894,\"years_exp\":7,\"hashtag\":\"#SheldonRichardson-NFL-CLE-98\",\"search_first_name\":\"sheldon\",\"rotowire_id\":8670,\"rotoworld_id\":8314,\"active\":true,\"search_rank\":714,\"age\":29,\"full_name\":\"Sheldon Richardson\",\"sportradar_id\":\"81e211e1-547a-4475-bcf6-8c8ffde057f5\",\"pandascore_id\":null,\"yahoo_id\":26636,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Gateway Tech (MO)\",\"depth_chart_order\":1,\"stats_id\":605269,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sheldonrichardson\",\"birth_date\":\"1990-11-29\",\"espn_id\":15811},\"4726\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nico\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marley\",\"depth_chart_position\":null,\"player_id\":\"4726\",\"birth_city\":null,\"fantasy_data_id\":19636,\"years_exp\":2,\"hashtag\":\"#NicoMarley-NFL-FA-46\",\"search_first_name\":\"nico\",\"rotowire_id\":12257,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nico Marley\",\"sportradar_id\":\"b0af4e12-6905-4be2-ab5c-58934cb9612c\",\"pandascore_id\":null,\"yahoo_id\":30862,\"last_name\":\"Marley\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'8\\\"\",\"search_full_name\":\"nicomarley\",\"birth_date\":\"1995-01-05\",\"espn_id\":3041099},\"5853\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035695\",\"first_name\":\"Trayvon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605320155675,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mullen\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5853\",\"birth_city\":null,\"fantasy_data_id\":20887,\"years_exp\":1,\"hashtag\":\"#TrayvonMullen-NFL-LV-27\",\"search_first_name\":\"trayvon\",\"rotowire_id\":13572,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1580,\"age\":23,\"full_name\":\"Trayvon Mullen\",\"sportradar_id\":\"c5e92aff-ce1e-4ce0-b838-6149f8ce875f\",\"pandascore_id\":null,\"yahoo_id\":31872,\"last_name\":\"Mullen\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Coconut Creek (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trayvonmullen\",\"birth_date\":\"1997-09-20\",\"espn_id\":4035458},\"2141\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031019\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606175115599,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"linsley\",\"depth_chart_position\":\"C\",\"player_id\":\"2141\",\"birth_city\":null,\"fantasy_data_id\":16481,\"years_exp\":6,\"hashtag\":\"#CoreyLinsley-NFL-GB-63\",\"search_first_name\":\"corey\",\"rotowire_id\":9702,\"rotoworld_id\":9674,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Corey Linsley\",\"sportradar_id\":\"8a55e15e-9385-4648-8123-bc5f50f6b304\",\"pandascore_id\":null,\"yahoo_id\":27689,\"last_name\":\"Linsley\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Boardman (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"coreylinsley\",\"birth_date\":\"1991-07-27\",\"espn_id\":16864},\"781\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Teddy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1533581102247,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"781\",\"birth_city\":null,\"fantasy_data_id\":12643,\"years_exp\":10,\"hashtag\":\"#TeddyWilliams-NFL-FA-21\",\"search_first_name\":\"teddy\",\"rotowire_id\":8581,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Teddy Williams\",\"sportradar_id\":\"09d857ac-02ec-4a93-86af-1f8384386dc8\",\"pandascore_id\":null,\"yahoo_id\":24746,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":\"John Tyler (TX)\",\"depth_chart_order\":null,\"stats_id\":556603,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"teddywilliams\",\"birth_date\":\"1988-07-03\",\"espn_id\":13922},\"2931\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deshon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foxx\",\"depth_chart_position\":null,\"player_id\":\"2931\",\"birth_city\":null,\"fantasy_data_id\":17400,\"years_exp\":4,\"hashtag\":\"#DeshonFoxx-NFL-FA-86\",\"search_first_name\":\"deshon\",\"rotowire_id\":10841,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Deshon Foxx\",\"sportradar_id\":\"d85a0444-d669-4d3f-805a-c0de1a973491\",\"pandascore_id\":null,\"yahoo_id\":29128,\"last_name\":\"Foxx\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604732,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'10\\\"\",\"search_full_name\":\"deshonfoxx\",\"birth_date\":\"1992-11-27\",\"espn_id\":2576608},\"1193\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029418\",\"first_name\":\"Najee\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603929929808,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"goode\",\"depth_chart_position\":null,\"player_id\":\"1193\",\"birth_city\":null,\"fantasy_data_id\":14377,\"years_exp\":8,\"hashtag\":\"#NajeeGoode-NFL-IND-52\",\"search_first_name\":\"najee\",\"rotowire_id\":8317,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Najee Goode\",\"sportradar_id\":\"9552a04c-6468-41e0-bc5c-c91efedf2fc3\",\"pandascore_id\":null,\"yahoo_id\":25850,\"last_name\":\"Goode\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Benedictine (OH)\",\"depth_chart_order\":null,\"stats_id\":403301,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'0\\\"\",\"search_full_name\":\"najeegoode\",\"birth_date\":\"1989-06-04\",\"espn_id\":15068},\"2518\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032171\",\"first_name\":\"Hayes\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567106442019,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pullard\",\"depth_chart_position\":null,\"player_id\":\"2518\",\"birth_city\":null,\"fantasy_data_id\":16978,\"years_exp\":5,\"hashtag\":\"#HayesPullard-NFL-FA-50\",\"search_first_name\":\"hayes\",\"rotowire_id\":10371,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Hayes Pullard\",\"sportradar_id\":\"5a5ff009-7591-4a42-b7cd-07a77af5b939\",\"pandascore_id\":null,\"yahoo_id\":28607,\"last_name\":\"Pullard\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Crenshaw (CA)\",\"depth_chart_order\":null,\"stats_id\":555682,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"hayespullard\",\"birth_date\":\"1992-04-18\",\"espn_id\":2510601},\"417\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lance\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"louis\",\"depth_chart_position\":null,\"player_id\":\"417\",\"birth_city\":null,\"fantasy_data_id\":8980,\"years_exp\":11,\"hashtag\":\"#LanceLouis-NFL-FA-60\",\"search_first_name\":\"lance\",\"rotowire_id\":7084,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Lance Louis\",\"sportradar_id\":\"b3c13e59-e42d-434f-9c2d-57ee9a9e6949\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Louis\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Landry (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lancelouis\",\"birth_date\":\"1985-04-24\",\"espn_id\":12684},\"1862\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"saunders\",\"depth_chart_position\":null,\"player_id\":\"1862\",\"birth_city\":null,\"fantasy_data_id\":16074,\"years_exp\":2,\"hashtag\":\"#JalenSaunders-NFL-FA-18\",\"search_first_name\":\"jalen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jalen Saunders\",\"sportradar_id\":\"138853f6-cf14-4dbc-8059-5d875a821dae\",\"pandascore_id\":null,\"yahoo_id\":27632,\"last_name\":\"Saunders\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":562370,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"165\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jalensaunders\",\"birth_date\":\"1992-09-30\",\"espn_id\":16928},\"7327\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"7327\",\"birth_city\":null,\"fantasy_data_id\":22319,\"years_exp\":0,\"hashtag\":\"#TJSmith-NFL-LAC-77\",\"search_first_name\":\"tj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"T.J. Smith\",\"sportradar_id\":\"39fd7f0b-4be2-4fe4-b228-65c9e5442552\",\"pandascore_id\":null,\"yahoo_id\":32991,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Colquitt County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tjsmith\",\"birth_date\":\"1997-04-19\",\"espn_id\":3916917},\"2908\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"willis\",\"depth_chart_position\":null,\"player_id\":\"2908\",\"birth_city\":null,\"fantasy_data_id\":17376,\"years_exp\":1,\"hashtag\":\"#AustinWillis-NFL-FA-1\",\"search_first_name\":\"austin\",\"rotowire_id\":10639,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Willis\",\"sportradar_id\":\"4fb50dd4-3db4-4975-9e8a-2e5e7d605ea2\",\"pandascore_id\":null,\"yahoo_id\":29083,\"last_name\":\"Willis\",\"metadata\":null,\"college\":\"Emporia State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870766,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"austinwillis\",\"birth_date\":\"1992-04-13\",\"espn_id\":3895385},\"1029\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029567\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606507226524,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"foles\",\"depth_chart_position\":\"QB\",\"player_id\":\"1029\",\"birth_city\":null,\"fantasy_data_id\":13723,\"years_exp\":8,\"hashtag\":\"#NickFoles-NFL-CHI-9\",\"search_first_name\":\"nick\",\"rotowire_id\":8066,\"rotoworld_id\":7475,\"active\":true,\"search_rank\":221,\"age\":31,\"full_name\":\"Nick Foles\",\"sportradar_id\":\"c8232b55-6617-4dd9-a7cf-cf14cd9a29ab\",\"pandascore_id\":null,\"yahoo_id\":25798,\"last_name\":\"Foles\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Westlake (TX)\",\"depth_chart_order\":3,\"stats_id\":403189,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":\"Doubtful\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'6\\\"\",\"search_full_name\":\"nickfoles\",\"birth_date\":\"1989-01-20\",\"espn_id\":14877},\"144\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flynn\",\"depth_chart_position\":null,\"player_id\":\"144\",\"birth_city\":null,\"fantasy_data_id\":3895,\"years_exp\":12,\"hashtag\":\"#MattFlynn-NFL-FA-3\",\"search_first_name\":\"matt\",\"rotowire_id\":5658,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Matt Flynn\",\"sportradar_id\":\"53e3389f-6db2-41d6-bddf-e1246cb776fb\",\"pandascore_id\":null,\"yahoo_id\":8986,\"last_name\":\"Flynn\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Lee (TX)\",\"depth_chart_order\":null,\"stats_id\":225233,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mattflynn\",\"birth_date\":\"1985-06-20\",\"espn_id\":11443},\"3666\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mims\",\"depth_chart_position\":null,\"player_id\":\"3666\",\"birth_city\":null,\"fantasy_data_id\":18466,\"years_exp\":0,\"hashtag\":\"#DavidMims-NFL-FA-38\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Mims\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29652,\"last_name\":\"Mims\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"davidmims\",\"birth_date\":\"1993-08-06\",\"espn_id\":null},\"4808\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swain\",\"depth_chart_position\":null,\"player_id\":\"4808\",\"birth_city\":null,\"fantasy_data_id\":19488,\"years_exp\":2,\"hashtag\":\"#MauriceSwain-NFL-FA-74\",\"search_first_name\":\"maurice\",\"rotowire_id\":12177,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Maurice Swain\",\"sportradar_id\":\"ff0efed3-bb4d-4061-ab19-b4c0e5b5610c\",\"pandascore_id\":null,\"yahoo_id\":30774,\"last_name\":\"Swain\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mauriceswain\",\"birth_date\":\"1995-07-25\",\"espn_id\":3892697},\"3930\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"3930\",\"birth_city\":null,\"fantasy_data_id\":18760,\"years_exp\":1,\"hashtag\":\"#KevinWhite-NFL-FA-38\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kevin White\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":28833,\"last_name\":\"White\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kevinwhite\",\"birth_date\":\"1992-07-15\",\"espn_id\":null},\"1917\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ethan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hemer\",\"depth_chart_position\":null,\"player_id\":\"1917\",\"birth_city\":null,\"fantasy_data_id\":16148,\"years_exp\":1,\"hashtag\":\"#EthanHemer-NFL-FA-79\",\"search_first_name\":\"ethan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ethan Hemer\",\"sportradar_id\":\"8ed5bda6-de67-4671-8b53-c55cac3531cb\",\"pandascore_id\":null,\"yahoo_id\":27811,\"last_name\":\"Hemer\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ethanhemer\",\"birth_date\":\"1990-06-25\",\"espn_id\":17004},\"7192\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daishawn\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1589044809489,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"7192\",\"birth_city\":null,\"fantasy_data_id\":22194,\"years_exp\":0,\"hashtag\":\"#DaishawnDixon-NFL-FA-0\",\"search_first_name\":\"daishawn\",\"rotowire_id\":15138,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Daishawn Dixon\",\"sportradar_id\":\"d4def490-22f5-499f-84bc-8078a2a7f64d\",\"pandascore_id\":null,\"yahoo_id\":32998,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daishawndixon\",\"birth_date\":\"1997-06-19\",\"espn_id\":null},\"6116\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035265\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604082339259,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cominsky\",\"depth_chart_position\":\"RDT\",\"player_id\":\"6116\",\"birth_city\":null,\"fantasy_data_id\":21009,\"years_exp\":1,\"hashtag\":\"#JohnCominsky-NFL-ATL-50\",\"search_first_name\":\"john\",\"rotowire_id\":13798,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1632,\"age\":25,\"full_name\":\"John Cominsky\",\"sportradar_id\":\"c41a772c-8458-4f5d-b7b5-8c2a23406fa3\",\"pandascore_id\":null,\"yahoo_id\":31967,\"last_name\":\"Cominsky\",\"metadata\":null,\"college\":\"Charleston, W. Va.\",\"high_school\":\"Barberton (OH)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johncominsky\",\"birth_date\":\"1995-11-22\",\"espn_id\":4411771},\"4783\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Noor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"4783\",\"birth_city\":null,\"fantasy_data_id\":19694,\"years_exp\":2,\"hashtag\":\"#NoorDavis-NFL-FA-58\",\"search_first_name\":\"noor\",\"rotowire_id\":12361,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Noor Davis\",\"sportradar_id\":\"b8df928d-2fd2-4f06-938d-a23874fe109b\",\"pandascore_id\":null,\"yahoo_id\":30911,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'4\\\"\",\"search_full_name\":\"noordavis\",\"birth_date\":\"1994-12-15\",\"espn_id\":2978260},\"4470\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033424\",\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1566407107660,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bullough\",\"depth_chart_position\":null,\"player_id\":\"4470\",\"birth_city\":null,\"fantasy_data_id\":19338,\"years_exp\":3,\"hashtag\":\"#RileyBullough-NFL-FA-51\",\"search_first_name\":\"riley\",\"rotowire_id\":11964,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Riley Bullough\",\"sportradar_id\":\"63de92e7-69a9-494f-b2a6-43aa67ad325c\",\"pandascore_id\":null,\"yahoo_id\":30471,\"last_name\":\"Bullough\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696156,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rileybullough\",\"birth_date\":\"1993-11-23\",\"espn_id\":2979532},\"5501\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034228\",\"first_name\":\"Lord\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535836503036,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hyeamang\",\"depth_chart_position\":null,\"player_id\":\"5501\",\"birth_city\":null,\"fantasy_data_id\":20408,\"years_exp\":2,\"hashtag\":\"#LordHyeamang-NFL-FA-71\",\"search_first_name\":\"lord\",\"rotowire_id\":13153,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Lord Hyeamang\",\"sportradar_id\":\"9ebd9a70-74d1-4df8-90e6-3de18368a4c5\",\"pandascore_id\":null,\"yahoo_id\":31446,\"last_name\":\"Hyeamang\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lordhyeamang\",\"birth_date\":\"1996-12-31\",\"espn_id\":3118188},\"2206\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kilgore\",\"depth_chart_position\":null,\"player_id\":\"2206\",\"birth_city\":null,\"fantasy_data_id\":16579,\"years_exp\":0,\"hashtag\":\"#LoganKilgore-NFL-FA-5\",\"search_first_name\":\"logan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Logan Kilgore\",\"sportradar_id\":\"e4160991-9923-4744-a87f-bd2ba6736e72\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kilgore\",\"metadata\":null,\"college\":\"Middle Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"logankilgore\",\"birth_date\":\"1990-05-24\",\"espn_id\":null},\"3945\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"3945\",\"birth_city\":null,\"fantasy_data_id\":18778,\"years_exp\":0,\"hashtag\":\"#DariusWhite-NFL-FA-6\",\"search_first_name\":\"darius\",\"rotowire_id\":11667,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Darius White\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30075,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555865,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dariuswhite\",\"birth_date\":null,\"espn_id\":2512186},\"2867\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Undisclosed\",\"search_last_name\":\"mcfarland\",\"depth_chart_position\":null,\"player_id\":\"2867\",\"birth_city\":null,\"fantasy_data_id\":17335,\"years_exp\":1,\"hashtag\":\"#MikeMcFarland-NFL-FA-80\",\"search_first_name\":\"mike\",\"rotowire_id\":10502,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mike McFarland\",\"sportradar_id\":\"f427389b-0b46-4e22-898a-e71953f1c6d7\",\"pandascore_id\":null,\"yahoo_id\":28895,\"last_name\":\"McFarland\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557189,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mikemcfarland\",\"birth_date\":\"1991-11-15\",\"espn_id\":2577494},\"6307\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035444\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606344303331,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kunaszyk\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"6307\",\"birth_city\":null,\"fantasy_data_id\":21207,\"years_exp\":1,\"hashtag\":\"#JordanKunaszyk-NFL-WAS-59\",\"search_first_name\":\"jordan\",\"rotowire_id\":14257,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1695,\"age\":24,\"full_name\":\"Jordan Kunaszyk\",\"sportradar_id\":\"fceeeac9-470d-4864-bc19-36c5d03013b0\",\"pandascore_id\":null,\"yahoo_id\":32151,\"last_name\":\"Kunaszyk\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Roseville (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordankunaszyk\",\"birth_date\":\"1996-10-15\",\"espn_id\":4035866},\"6670\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035550\",\"first_name\":\"Sterling\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sheffield\",\"depth_chart_position\":null,\"player_id\":\"6670\",\"birth_city\":null,\"fantasy_data_id\":21550,\"years_exp\":1,\"hashtag\":\"#SterlingSheffield-NFL-FA-51\",\"search_first_name\":\"sterling\",\"rotowire_id\":13543,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Sterling Sheffield\",\"sportradar_id\":\"fbf333a7-12c2-44da-8705-994abaadd67a\",\"pandascore_id\":null,\"yahoo_id\":32558,\"last_name\":\"Sheffield\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sterlingsheffield\",\"birth_date\":\"1996-11-30\",\"espn_id\":3912679},\"5424\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034540\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584053716607,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"CB\",\"player_id\":\"5424\",\"birth_city\":null,\"fantasy_data_id\":20066,\"years_exp\":2,\"hashtag\":\"#TonyBrown-NFL-CIN-27\",\"search_first_name\":\"tony\",\"rotowire_id\":12906,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1408,\"age\":25,\"full_name\":\"Tony Brown\",\"sportradar_id\":\"d5a270bd-6f41-4637-ae09-d5534f1a4d3e\",\"pandascore_id\":null,\"yahoo_id\":31671,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Ozen (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tonybrown\",\"birth_date\":\"1995-07-13\",\"espn_id\":3115308},\"4972\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034771\",\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605033013778,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rudolph\",\"depth_chart_position\":\"QB\",\"player_id\":\"4972\",\"birth_city\":null,\"fantasy_data_id\":19850,\"years_exp\":2,\"hashtag\":\"#MasonRudolph-NFL-PIT-2\",\"search_first_name\":\"mason\",\"rotowire_id\":12629,\"rotoworld_id\":13075,\"active\":true,\"search_rank\":467,\"age\":25,\"full_name\":\"Mason Rudolph\",\"sportradar_id\":\"be4ca0ad-f3d6-4b98-a37f-79d0cbc06390\",\"pandascore_id\":null,\"yahoo_id\":31046,\"last_name\":\"Rudolph\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Oklahoma State\",\"high_school\":\"Northwestern (SC)\",\"depth_chart_order\":2,\"stats_id\":823220,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"masonrudolph\",\"birth_date\":\"1995-07-17\",\"espn_id\":3116407},\"3944\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khaynin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mosleysmith\",\"depth_chart_position\":null,\"player_id\":\"3944\",\"birth_city\":null,\"fantasy_data_id\":18777,\"years_exp\":0,\"hashtag\":\"#KhayninMosleySmith-NFL-FA-0\",\"search_first_name\":\"khaynin\",\"rotowire_id\":11671,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Khaynin Mosley-Smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30074,\"last_name\":\"Mosley-Smith\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khayninmosleysmith\",\"birth_date\":\"1991-07-18\",\"espn_id\":null},\"6379\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035099\",\"first_name\":\"Khari\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1602864946248,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blasingame\",\"depth_chart_position\":\"RB\",\"player_id\":\"6379\",\"birth_city\":null,\"fantasy_data_id\":21310,\"years_exp\":1,\"hashtag\":\"#KhariBlasingame-NFL-TEN-41\",\"search_first_name\":\"khari\",\"rotowire_id\":13998,\"rotoworld_id\":null,\"active\":true,\"search_rank\":436,\"age\":24,\"full_name\":\"Khari Blasingame\",\"sportradar_id\":\"bd12a2c0-e6ce-460b-9f09-27b75c306608\",\"pandascore_id\":null,\"yahoo_id\":32140,\"last_name\":\"Blasingame\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Vanderbilt\",\"high_school\":\"Buckhorn (AL)\",\"depth_chart_order\":5,\"stats_id\":835845,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khariblasingame\",\"birth_date\":\"1996-07-01\",\"espn_id\":3122154},\"1943\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lacoltan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bester\",\"depth_chart_position\":null,\"player_id\":\"1943\",\"birth_city\":null,\"fantasy_data_id\":16188,\"years_exp\":0,\"hashtag\":\"#LacoltanBester-NFL-FA-12\",\"search_first_name\":\"lacoltan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Lacoltan Bester\",\"sportradar_id\":\"913c6e07-eaa0-4fdf-8dda-4ca259e71389\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bester\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lacoltanbester\",\"birth_date\":null,\"espn_id\":null},\"4973\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034830\",\"first_name\":\"Hayden\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606512028025,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hurst\",\"depth_chart_position\":\"TE\",\"player_id\":\"4973\",\"birth_city\":null,\"fantasy_data_id\":19843,\"years_exp\":2,\"hashtag\":\"#HaydenHurst-NFL-ATL-81\",\"search_first_name\":\"hayden\",\"rotowire_id\":12467,\"rotoworld_id\":13098,\"active\":true,\"search_rank\":99,\"age\":27,\"full_name\":\"Hayden Hurst\",\"sportradar_id\":\"1b125fc4-5dd9-4eb9-a42f-048e61ca42b7\",\"pandascore_id\":null,\"yahoo_id\":30995,\"last_name\":\"Hurst\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"The Bolles School (FL)\",\"depth_chart_order\":1,\"stats_id\":881956,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"haydenhurst\",\"birth_date\":\"1993-08-24\",\"espn_id\":3924365},\"1471\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030516\",\"first_name\":\"Brice\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1565373354875,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"1471\",\"birth_city\":null,\"fantasy_data_id\":15066,\"years_exp\":7,\"hashtag\":\"#BriceButler-NFL-FA-17\",\"search_first_name\":\"brice\",\"rotowire_id\":8912,\"rotoworld_id\":8608,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brice Butler\",\"sportradar_id\":\"26b9c11d-c557-4bef-b990-65498858df47\",\"pandascore_id\":null,\"yahoo_id\":26832,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":null,\"stats_id\":459330,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bricebutler\",\"birth_date\":\"1990-01-29\",\"espn_id\":15896},\"4935\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"4935\",\"birth_city\":null,\"fantasy_data_id\":19555,\"years_exp\":1,\"hashtag\":\"#CharlesWalker-NFL-PHI-0\",\"search_first_name\":\"charles\",\"rotowire_id\":11949,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Charles Walker\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30714,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"charleswalker\",\"birth_date\":null,\"espn_id\":null},\"544\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027872\",\"first_name\":\"Kareem\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604451046528,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"SS\",\"player_id\":\"544\",\"birth_city\":null,\"fantasy_data_id\":11105,\"years_exp\":10,\"hashtag\":\"#KareemJackson-NFL-DEN-22\",\"search_first_name\":\"kareem\",\"rotowire_id\":6622,\"rotoworld_id\":5732,\"active\":true,\"search_rank\":602,\"age\":32,\"full_name\":\"Kareem Jackson\",\"sportradar_id\":\"f7b49d9d-2ce4-459f-8065-fa3b52d28069\",\"pandascore_id\":null,\"yahoo_id\":23995,\"last_name\":\"Jackson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Alabama\",\"high_school\":\"Westside (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kareemjackson\",\"birth_date\":\"1988-04-10\",\"espn_id\":13254},\"6668\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035568\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sigler\",\"depth_chart_position\":null,\"player_id\":\"6668\",\"birth_city\":null,\"fantasy_data_id\":21557,\"years_exp\":1,\"hashtag\":\"#TylerSigler-NFL-FA-39\",\"search_first_name\":\"tyler\",\"rotowire_id\":14250,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tyler Sigler\",\"sportradar_id\":\"e634c38b-d446-4111-a7e5-3c46345f55b0\",\"pandascore_id\":null,\"yahoo_id\":32568,\"last_name\":\"Sigler\",\"metadata\":null,\"college\":\"-\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylersigler\",\"birth_date\":\"1996-03-26\",\"espn_id\":4331772},\"4485\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033508\",\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1598218512756,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stanback\",\"depth_chart_position\":null,\"player_id\":\"4485\",\"birth_city\":null,\"fantasy_data_id\":19353,\"years_exp\":3,\"hashtag\":\"#WilliamStanback-NFL-FA-0\",\"search_first_name\":\"william\",\"rotowire_id\":12344,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"William Stanback\",\"sportradar_id\":\"7e199884-1db9-4684-b308-a20ca28c646c\",\"pandascore_id\":null,\"yahoo_id\":30696,\"last_name\":\"Stanback\",\"metadata\":null,\"college\":\"Virginia Union\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746220,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'0\\\"\",\"search_full_name\":\"williamstanback\",\"birth_date\":\"1994-07-06\",\"espn_id\":3054030},\"5450\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034090\",\"first_name\":\"Skai\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596586250311,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"5450\",\"birth_city\":null,\"fantasy_data_id\":20428,\"years_exp\":2,\"hashtag\":\"#SkaiMoore-NFL-IND-55\",\"search_first_name\":\"skai\",\"rotowire_id\":12967,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1470,\"age\":25,\"full_name\":\"Skai Moore\",\"sportradar_id\":\"6bfc1107-7883-47db-85ef-3f8f24222a20\",\"pandascore_id\":null,\"yahoo_id\":31372,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"NSU University School (FL)\",\"depth_chart_order\":null,\"stats_id\":744603,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"skaimoore\",\"birth_date\":\"1995-01-08\",\"espn_id\":3048912},\"6360\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035201\",\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"6360\",\"birth_city\":null,\"fantasy_data_id\":21292,\"years_exp\":1,\"hashtag\":\"#ChandlerMiller-NFL-FA-61\",\"search_first_name\":\"chandler\",\"rotowire_id\":14028,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chandler Miller\",\"sportradar_id\":\"fd8d401a-0c57-4078-a29e-2ad3b07e06ad\",\"pandascore_id\":null,\"yahoo_id\":32117,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chandlermiller\",\"birth_date\":\"1996-04-16\",\"espn_id\":3126288},\"2387\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031564\",\"first_name\":\"Lorenzo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1546464928467,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mauldin\",\"depth_chart_position\":null,\"player_id\":\"2387\",\"birth_city\":null,\"fantasy_data_id\":16843,\"years_exp\":5,\"hashtag\":\"#LorenzoMauldin-NFL-FA-55\",\"search_first_name\":\"lorenzo\",\"rotowire_id\":10358,\"rotoworld_id\":10487,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Lorenzo Mauldin\",\"sportradar_id\":\"0af18f1a-0f65-49a0-a09e-b37cfd875286\",\"pandascore_id\":null,\"yahoo_id\":28470,\"last_name\":\"Mauldin\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Maynard Jackson (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lorenzomauldin\",\"birth_date\":\"1992-10-01\",\"espn_id\":2576646},\"5937\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035216\",\"first_name\":\"Diontae\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606269654570,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5937\",\"birth_city\":null,\"fantasy_data_id\":21077,\"years_exp\":1,\"hashtag\":\"#DiontaeJohnson-NFL-PIT-18\",\"search_first_name\":\"diontae\",\"rotowire_id\":13472,\"rotoworld_id\":14126,\"active\":true,\"search_rank\":100,\"age\":24,\"full_name\":\"Diontae Johnson\",\"sportradar_id\":\"244c00c7-fe9a-4f4f-adff-1d5b9c8877e7\",\"pandascore_id\":null,\"yahoo_id\":31898,\"last_name\":\"Johnson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Toledo\",\"high_school\":\"Earl J. Lennard (FL)\",\"depth_chart_order\":1,\"stats_id\":891115,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'10\\\"\",\"search_full_name\":\"diontaejohnson\",\"birth_date\":\"1996-07-05\",\"espn_id\":3932905},\"2944\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031744\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1596388516924,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"lacosse\",\"depth_chart_position\":\"TE\",\"player_id\":\"2944\",\"birth_city\":null,\"fantasy_data_id\":17415,\"years_exp\":5,\"hashtag\":\"#MattLaCosse-NFL-NE-83\",\"search_first_name\":\"matt\",\"rotowire_id\":10727,\"rotoworld_id\":10980,\"active\":true,\"search_rank\":938,\"age\":28,\"full_name\":\"Matt LaCosse\",\"sportradar_id\":\"25e58aee-1b33-4468-9a81-6586426b91d5\",\"pandascore_id\":null,\"yahoo_id\":28875,\"last_name\":\"LaCosse\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Illinois\",\"high_school\":\"Naperville North (IL)\",\"depth_chart_order\":4,\"stats_id\":606055,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mattlacosse\",\"birth_date\":\"1992-09-21\",\"espn_id\":2576179},\"BAL\":{\"team\":\"BAL\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"BAL\",\"last_name\":\"Ravens\",\"injury_status\":null,\"first_name\":\"Baltimore\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"3477\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533686425518,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"3477\",\"birth_city\":null,\"fantasy_data_id\":18242,\"years_exp\":4,\"hashtag\":\"#JackAllen-NFL-FA-66\",\"search_first_name\":\"jack\",\"rotowire_id\":10883,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jack Allen\",\"sportradar_id\":\"dcf8b629-163a-4931-9bec-ecf8ed570434\",\"pandascore_id\":null,\"yahoo_id\":29838,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jackallen\",\"birth_date\":\"1992-09-24\",\"espn_id\":2576254},\"6368\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1566779711644,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowman\",\"depth_chart_position\":null,\"player_id\":\"6368\",\"birth_city\":null,\"fantasy_data_id\":21249,\"years_exp\":1,\"hashtag\":\"#ShaneBowman-NFL-FA-70\",\"search_first_name\":\"shane\",\"rotowire_id\":14038,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shane Bowman\",\"sportradar_id\":\"11384038-e4ee-408c-859b-acfb5f9f6c0e\",\"pandascore_id\":null,\"yahoo_id\":32087,\"last_name\":\"Bowman\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"shanebowman\",\"birth_date\":\"1995-07-29\",\"espn_id\":3127288},\"892\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1508257264151,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gachkar\",\"depth_chart_position\":null,\"player_id\":\"892\",\"birth_city\":null,\"fantasy_data_id\":13083,\"years_exp\":9,\"hashtag\":\"#AndrewGachkar-NFL-FA-57\",\"search_first_name\":\"andrew\",\"rotowire_id\":7633,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Andrew Gachkar\",\"sportradar_id\":\"1289bd74-f0e2-4097-bca6-a4200ffd9171\",\"pandascore_id\":null,\"yahoo_id\":25021,\"last_name\":\"Gachkar\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Blue Valley West (KS)\",\"depth_chart_order\":null,\"stats_id\":406402,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andrewgachkar\",\"birth_date\":\"1988-11-04\",\"espn_id\":14141},\"2424\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032246\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599011734202,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"donnal\",\"depth_chart_position\":null,\"player_id\":\"2424\",\"birth_city\":null,\"fantasy_data_id\":16880,\"years_exp\":5,\"hashtag\":\"#AndrewDonnal-NFL-FA-76\",\"search_first_name\":\"andrew\",\"rotowire_id\":10286,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Andrew Donnal\",\"sportradar_id\":\"3f142dc8-b7a7-433d-9b70-efdd0a8a0a6a\",\"pandascore_id\":null,\"yahoo_id\":28507,\"last_name\":\"Donnal\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Anthony Wayne (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewdonnal\",\"birth_date\":\"1992-03-03\",\"espn_id\":2511692},\"4260\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033965\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565412904924,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bisnowaty\",\"depth_chart_position\":null,\"player_id\":\"4260\",\"birth_city\":null,\"fantasy_data_id\":19106,\"years_exp\":3,\"hashtag\":\"#AdamBisnowaty-NFL-FA-76\",\"search_first_name\":\"adam\",\"rotowire_id\":11757,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Adam Bisnowaty\",\"sportradar_id\":\"907dee94-20a5-4ded-a25f-c5783c41a44e\",\"pandascore_id\":null,\"yahoo_id\":30313,\"last_name\":\"Bisnowaty\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'6\\\"\",\"search_full_name\":\"adambisnowaty\",\"birth_date\":\"1993-12-14\",\"espn_id\":2970255},\"3569\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Denzell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perine\",\"depth_chart_position\":null,\"player_id\":\"3569\",\"birth_city\":null,\"fantasy_data_id\":18344,\"years_exp\":0,\"hashtag\":\"#DenzellPerine-NFL-FA-62\",\"search_first_name\":\"denzell\",\"rotowire_id\":11503,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Denzell Perine\",\"sportradar_id\":\"46c70828-71fc-426b-bc0f-bc60d278a75b\",\"pandascore_id\":null,\"yahoo_id\":29541,\"last_name\":\"Perine\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"denzellperine\",\"birth_date\":\"1993-03-28\",\"espn_id\":2589340},\"3393\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1530304801510,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":null,\"player_id\":\"3393\",\"birth_city\":null,\"fantasy_data_id\":18154,\"years_exp\":4,\"hashtag\":\"#DevinFuller-NFL-FA-13\",\"search_first_name\":\"devin\",\"rotowire_id\":11198,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Devin Fuller\",\"sportradar_id\":\"c5c88abd-6bf8-4eec-be52-53177cb9d54b\",\"pandascore_id\":null,\"yahoo_id\":29472,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691033,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"devinfuller\",\"birth_date\":\"1994-01-29\",\"espn_id\":2971574},\"3519\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032659\",\"first_name\":\"Roger\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564587015146,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"3519\",\"birth_city\":null,\"fantasy_data_id\":18285,\"years_exp\":4,\"hashtag\":\"#RogerLewis-NFL-FA-8\",\"search_first_name\":\"roger\",\"rotowire_id\":10843,\"rotoworld_id\":11532,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Roger Lewis\",\"sportradar_id\":\"8284f00c-d46a-4cc7-a870-204ddfb4176e\",\"pandascore_id\":null,\"yahoo_id\":29855,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":822756,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rogerlewis\",\"birth_date\":\"1993-11-27\",\"espn_id\":3125745},\"4312\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"4312\",\"birth_city\":null,\"fantasy_data_id\":19163,\"years_exp\":2,\"hashtag\":\"#KevinDavis-NFL-FA-60\",\"search_first_name\":\"kevin\",\"rotowire_id\":11967,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kevin Davis\",\"sportradar_id\":\"ccf26726-7bdd-4384-886b-3dad855c0f9d\",\"pandascore_id\":null,\"yahoo_id\":30369,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevindavis\",\"birth_date\":\"1993-11-21\",\"espn_id\":2973601},\"5383\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034489\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566365705218,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tolliver\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5383\",\"birth_city\":null,\"fantasy_data_id\":20462,\"years_exp\":2,\"hashtag\":\"#JalenTolliver-NFL-FA-88\",\"search_first_name\":\"jalen\",\"rotowire_id\":13220,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jalen Tolliver\",\"sportradar_id\":\"56143424-550f-4929-8e0f-13ebf556f8e2\",\"pandascore_id\":null,\"yahoo_id\":31322,\"last_name\":\"Tolliver\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":1115408,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jalentolliver\",\"birth_date\":\"1995-12-30\",\"espn_id\":4329491},\"3133\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kathryn\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"3133\",\"birth_city\":null,\"fantasy_data_id\":17887,\"years_exp\":null,\"hashtag\":\"#KathrynSmith-NFL-FA-0\",\"search_first_name\":\"kathryn\",\"rotowire_id\":null,\"rotoworld_id\":11248,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kathryn Smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kathrynsmith\",\"birth_date\":null,\"espn_id\":null},\"2100\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Silas\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redd\",\"depth_chart_position\":null,\"player_id\":\"2100\",\"birth_city\":null,\"fantasy_data_id\":16421,\"years_exp\":3,\"hashtag\":\"#SilasRedd-NFL-FA-32\",\"search_first_name\":\"silas\",\"rotowire_id\":9532,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Silas Redd\",\"sportradar_id\":\"5b9ad1f8-a881-4150-ac62-8c471d2e4a68\",\"pandascore_id\":null,\"yahoo_id\":28176,\"last_name\":\"Redd\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":543285,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"silasredd\",\"birth_date\":\"1992-03-01\",\"espn_id\":17352},\"4086\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033782\",\"first_name\":\"DeMarcus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603586457661,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4086\",\"birth_city\":null,\"fantasy_data_id\":18932,\"years_exp\":3,\"hashtag\":\"#DeMarcusWalker-NFL-DEN-57\",\"search_first_name\":\"demarcus\",\"rotowire_id\":11950,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1135,\"age\":26,\"full_name\":\"DeMarcus Walker\",\"sportradar_id\":\"e1048910-1b5f-4d91-8702-f5ad06844b24\",\"pandascore_id\":null,\"yahoo_id\":30164,\"last_name\":\"Walker\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida State\",\"high_school\":\"Sandalwood (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"demarcuswalker\",\"birth_date\":\"1994-09-30\",\"espn_id\":3045377},\"4957\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Moubarak\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1532723102406,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"djeri\",\"depth_chart_position\":null,\"player_id\":\"4957\",\"birth_city\":null,\"fantasy_data_id\":19821,\"years_exp\":1,\"hashtag\":\"#MoubarakDjeri-NFL-ARI-61\",\"search_first_name\":\"moubarak\",\"rotowire_id\":12978,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Moubarak Djeri\",\"sportradar_id\":\"75f445e3-0fc9-45e5-8f1e-767022f0332a\",\"pandascore_id\":null,\"yahoo_id\":30969,\"last_name\":\"Djeri\",\"metadata\":null,\"college\":\"no college\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"moubarakdjeri\",\"birth_date\":null,\"espn_id\":4325329},\"6635\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035407\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"LG\",\"player_id\":\"6635\",\"birth_city\":null,\"fantasy_data_id\":21424,\"years_exp\":1,\"hashtag\":\"#DerrickKelly-NFL-NO-68\",\"search_first_name\":\"derrick\",\"rotowire_id\":14285,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrick Kelly\",\"sportradar_id\":\"962bcc09-65ae-47e1-a3ba-39290a1e95c9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"East Gadsden (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"derrickkelly\",\"birth_date\":\"1995-08-23\",\"espn_id\":3122925},\"7278\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"7278\",\"birth_city\":null,\"fantasy_data_id\":22275,\"years_exp\":0,\"hashtag\":\"#JanJohnson-NFL-FA-0\",\"search_first_name\":\"jan\",\"rotowire_id\":14855,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jan Johnson\",\"sportradar_id\":\"0a5c0e59-34b8-4131-bb9c-e70caff8a4e0\",\"pandascore_id\":null,\"yahoo_id\":33158,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'2\\\"\",\"search_full_name\":\"janjohnson\",\"birth_date\":\"1996-04-09\",\"espn_id\":3929644},\"489\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meredith\",\"depth_chart_position\":null,\"player_id\":\"489\",\"birth_city\":null,\"fantasy_data_id\":9892,\"years_exp\":11,\"hashtag\":\"#JamonMeredith-NFL-FA-79\",\"search_first_name\":\"jamon\",\"rotowire_id\":6329,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jamon Meredith\",\"sportradar_id\":\"ac2ab3a9-9a1f-4197-ac96-3de277dbcf6c\",\"pandascore_id\":null,\"yahoo_id\":9426,\"last_name\":\"Meredith\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Hillcrest (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jamonmeredith\",\"birth_date\":\"1986-05-11\",\"espn_id\":12696},\"536\":{\"position\":\"WR\",\"injury_notes\":\"Brown will miss 8 games due to multiple violations of the NFL's Personal Conduct Policy.\",\"birth_country\":null,\"gsis_id\":\"00-0027793\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606518627487,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"SWR\",\"player_id\":\"536\",\"birth_city\":null,\"fantasy_data_id\":11056,\"years_exp\":10,\"hashtag\":\"#AntonioBrown-NFL-TB-81\",\"search_first_name\":\"antonio\",\"rotowire_id\":6454,\"rotoworld_id\":5698,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Antonio Brown\",\"sportradar_id\":\"16e33176-b73e-49b7-b0aa-c405b47a706e\",\"pandascore_id\":null,\"yahoo_id\":24171,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Norland (FL)\",\"depth_chart_order\":1,\"stats_id\":406214,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"antoniobrown\",\"birth_date\":\"1988-07-10\",\"espn_id\":13934},\"4551\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033633\",\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566215406235,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gentry\",\"depth_chart_position\":null,\"player_id\":\"4551\",\"birth_city\":null,\"fantasy_data_id\":19431,\"years_exp\":3,\"hashtag\":\"#TannerGentry-NFL-FA-19\",\"search_first_name\":\"tanner\",\"rotowire_id\":12353,\"rotoworld_id\":12470,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tanner Gentry\",\"sportradar_id\":\"47520723-6d02-4c3b-b786-a7dfcea15efc\",\"pandascore_id\":null,\"yahoo_id\":30720,\"last_name\":\"Gentry\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728964,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tannergentry\",\"birth_date\":\"1994-12-18\",\"espn_id\":3043841},\"4233\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033862\",\"first_name\":\"Zane\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606016113982,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gonzalez\",\"depth_chart_position\":\"K\",\"player_id\":\"4233\",\"birth_city\":null,\"fantasy_data_id\":19079,\"years_exp\":3,\"hashtag\":\"#ZaneGonzalez-NFL-ARI-5\",\"search_first_name\":\"zane\",\"rotowire_id\":11831,\"rotoworld_id\":12425,\"active\":true,\"search_rank\":165,\"age\":25,\"full_name\":\"Zane Gonzalez\",\"sportradar_id\":\"cd0f4ef0-9914-4125-be4d-804a72350ceb\",\"pandascore_id\":null,\"yahoo_id\":30337,\"last_name\":\"Gonzalez\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Deer Park (TX)\",\"depth_chart_order\":1,\"stats_id\":732774,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"zanegonzalez\",\"birth_date\":\"1995-05-07\",\"espn_id\":3043234},\"1698\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonas\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"1698\",\"birth_city\":null,\"fantasy_data_id\":15565,\"years_exp\":8,\"hashtag\":\"#JonasGray-NFL-FA-34\",\"search_first_name\":\"jonas\",\"rotowire_id\":8079,\"rotoworld_id\":7695,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jonas Gray\",\"sportradar_id\":\"c52dd837-4eef-43ba-8a4f-5c876b2a48f5\",\"pandascore_id\":null,\"yahoo_id\":26273,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Detroit Country Day (MI)\",\"depth_chart_order\":null,\"stats_id\":469202,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonasgray\",\"birth_date\":\"1990-06-27\",\"espn_id\":15364},\"2613\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032094\",\"first_name\":\"Tyrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606485903804,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"MIKE\",\"player_id\":\"2613\",\"birth_city\":null,\"fantasy_data_id\":17081,\"years_exp\":5,\"hashtag\":\"#TyrellAdams-NFL-HOU-50\",\"search_first_name\":\"tyrell\",\"rotowire_id\":10835,\"rotoworld_id\":null,\"active\":true,\"search_rank\":914,\"age\":28,\"full_name\":\"Tyrell Adams\",\"sportradar_id\":\"4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4\",\"pandascore_id\":null,\"yahoo_id\":29111,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":\"Mays (GA)\",\"depth_chart_order\":1,\"stats_id\":871175,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tyrelladams\",\"birth_date\":\"1992-04-11\",\"espn_id\":3895228},\"5818\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Freddie\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1577670019215,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kitchens\",\"depth_chart_position\":null,\"player_id\":\"5818\",\"birth_city\":null,\"fantasy_data_id\":20714,\"years_exp\":0,\"hashtag\":\"#FreddieKitchens-NFL-FA-0\",\"search_first_name\":\"freddie\",\"rotowire_id\":null,\"rotoworld_id\":13939,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Freddie Kitchens\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kitchens\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"freddiekitchens\",\"birth_date\":null,\"espn_id\":null},\"1956\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031085\",\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535746264047,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"prosch\",\"depth_chart_position\":null,\"player_id\":\"1956\",\"birth_city\":null,\"fantasy_data_id\":16210,\"years_exp\":6,\"hashtag\":\"#JayProsch-NFL-FA-45\",\"search_first_name\":\"jay\",\"rotowire_id\":9774,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jay Prosch\",\"sportradar_id\":\"0719b89b-85f5-4be2-a335-596e81d93913\",\"pandascore_id\":null,\"yahoo_id\":27739,\"last_name\":\"Prosch\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"UMS-Wright (AL)\",\"depth_chart_order\":null,\"stats_id\":543641,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jayprosch\",\"birth_date\":\"1992-08-21\",\"espn_id\":16875},\"2555\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"christian\",\"depth_chart_position\":null,\"player_id\":\"2555\",\"birth_city\":null,\"fantasy_data_id\":17015,\"years_exp\":4,\"hashtag\":\"#GeraldChristian-NFL-FA-82\",\"search_first_name\":\"gerald\",\"rotowire_id\":10256,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Gerald Christian\",\"sportradar_id\":\"c70afdfe-50ef-4b28-8b93-5c153b45c992\",\"pandascore_id\":null,\"yahoo_id\":28644,\"last_name\":\"Christian\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542794,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"geraldchristian\",\"birth_date\":\"1993-12-28\",\"espn_id\":2512192},\"2574\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gardner\",\"depth_chart_position\":null,\"player_id\":\"2574\",\"birth_city\":null,\"fantasy_data_id\":17039,\"years_exp\":0,\"hashtag\":\"#DevinGardner-NFL-FA-0\",\"search_first_name\":\"devin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Devin Gardner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gardner\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'4\\\"\",\"search_full_name\":\"devingardner\",\"birth_date\":\"1991-12-14\",\"espn_id\":2512212},\"3973\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033868\",\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606152312804,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"garrett\",\"depth_chart_position\":null,\"player_id\":\"3973\",\"birth_city\":null,\"fantasy_data_id\":18807,\"years_exp\":3,\"hashtag\":\"#MylesGarrett-NFL-CLE-95\",\"search_first_name\":\"myles\",\"rotowire_id\":11914,\"rotoworld_id\":12133,\"active\":true,\"search_rank\":1111,\"age\":24,\"full_name\":\"Myles Garrett\",\"sportradar_id\":\"a85a0ba9-674c-4f37-a944-474fc6cdf557\",\"pandascore_id\":null,\"yahoo_id\":30114,\"last_name\":\"Garrett\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Arlington Martin (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mylesgarrett\",\"birth_date\":\"1995-12-29\",\"espn_id\":3122132},\"1290\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029159\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1565449514216,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kearse\",\"depth_chart_position\":null,\"player_id\":\"1290\",\"birth_city\":null,\"fantasy_data_id\":14749,\"years_exp\":8,\"hashtag\":\"#JermaineKearse-NFL-FA-18\",\"search_first_name\":\"jermaine\",\"rotowire_id\":8100,\"rotoworld_id\":7727,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jermaine Kearse\",\"sportradar_id\":\"7e5b8212-df93-4069-b3f0-be4b5cb47389\",\"pandascore_id\":null,\"yahoo_id\":25991,\"last_name\":\"Kearse\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Lakes (WA)\",\"depth_chart_order\":null,\"stats_id\":459347,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jermainekearse\",\"birth_date\":\"1990-02-06\",\"espn_id\":15428},\"7359\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nakia\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606263955003,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffinstewart\",\"depth_chart_position\":\"TE\",\"player_id\":\"7359\",\"birth_city\":null,\"fantasy_data_id\":22347,\"years_exp\":0,\"hashtag\":\"#NakiaGriffinStewart-NFL-NYG-87\",\"search_first_name\":\"nakia\",\"rotowire_id\":15110,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nakia Griffin-Stewart\",\"sportradar_id\":\"789c00d3-a9e2-47fb-9a8f-45af1fe39fbe\",\"pandascore_id\":null,\"yahoo_id\":33031,\"last_name\":\"Griffin-Stewart\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Tenafly (NJ)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nakiagriffinstewart\",\"birth_date\":\"1996-11-12\",\"espn_id\":3930035},\"4250\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033967\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534341317632,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":null,\"player_id\":\"4250\",\"birth_city\":null,\"fantasy_data_id\":19096,\"years_exp\":3,\"hashtag\":\"#SamRogers-NFL-FA-36\",\"search_first_name\":\"sam\",\"rotowire_id\":11771,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sam Rogers\",\"sportradar_id\":\"aa87a5e5-f90b-408e-b8b4-39f28204f8bf\",\"pandascore_id\":null,\"yahoo_id\":30318,\"last_name\":\"Rogers\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742426,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"5'10\\\"\",\"search_full_name\":\"samrogers\",\"birth_date\":\"1995-04-12\",\"espn_id\":3045472},\"6025\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035277\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599192055026,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"6025\",\"birth_city\":null,\"fantasy_data_id\":20822,\"years_exp\":1,\"hashtag\":\"#MichaelJackson-NFL-NE-28\",\"search_first_name\":\"michael\",\"rotowire_id\":13704,\"rotoworld_id\":14147,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Michael Jackson\",\"sportradar_id\":\"63fd7882-5d20-426e-9834-e85c0ebb4d5b\",\"pandascore_id\":null,\"yahoo_id\":31990,\"last_name\":\"Jackson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Miami\",\"high_school\":\"Spain Park (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaeljackson\",\"birth_date\":\"1997-01-10\",\"espn_id\":3917853},\"1364\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030421\",\"first_name\":\"Jamie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606197050296,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":\"SLB\",\"player_id\":\"1364\",\"birth_city\":null,\"fantasy_data_id\":14885,\"years_exp\":7,\"hashtag\":\"#JamieCollins-NFL-DET-58\",\"search_first_name\":\"jamie\",\"rotowire_id\":8715,\"rotoworld_id\":8499,\"active\":true,\"search_rank\":711,\"age\":31,\"full_name\":\"Jamie Collins\",\"sportradar_id\":\"ca760cb5-83dd-4415-acc8-ef8b508ba976\",\"pandascore_id\":null,\"yahoo_id\":26675,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Franklin County (MS)\",\"depth_chart_order\":1,\"stats_id\":512963,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamiecollins\",\"birth_date\":\"1989-10-20\",\"espn_id\":15830},\"2552\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Xzavier\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dickson\",\"depth_chart_position\":null,\"player_id\":\"2552\",\"birth_city\":null,\"fantasy_data_id\":17012,\"years_exp\":0,\"hashtag\":\"#XzavierDickson-NFL-FA-91\",\"search_first_name\":\"xzavier\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Xzavier Dickson\",\"sportradar_id\":\"9174d5ab-22f3-46f9-bac0-865f2c1d97fe\",\"pandascore_id\":null,\"yahoo_id\":28641,\"last_name\":\"Dickson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"xzavierdickson\",\"birth_date\":\"1992-09-11\",\"espn_id\":2578470},\"166\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cribbs\",\"depth_chart_position\":null,\"player_id\":\"166\",\"birth_city\":null,\"fantasy_data_id\":4291,\"years_exp\":11,\"hashtag\":\"#JoshuaCribbs-NFL-CLE-16\",\"search_first_name\":\"joshua\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Joshua Cribbs\",\"sportradar_id\":\"cc275b47-1dfc-4125-80de-8781f773fe1c\",\"pandascore_id\":null,\"yahoo_id\":7448,\"last_name\":\"Cribbs\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":161779,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshuacribbs\",\"birth_date\":\"1983-06-09\",\"espn_id\":null},\"1384\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jayson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dimanche\",\"depth_chart_position\":null,\"player_id\":\"1384\",\"birth_city\":null,\"fantasy_data_id\":14910,\"years_exp\":7,\"hashtag\":\"#JaysonDiManche-NFL-FA-46\",\"search_first_name\":\"jayson\",\"rotowire_id\":9077,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jayson DiManche\",\"sportradar_id\":\"c20e46ba-cb2c-4b92-95e3-d134c6ed242d\",\"pandascore_id\":null,\"yahoo_id\":27113,\"last_name\":\"DiManche\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":\"Hamilton West (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jaysondimanche\",\"birth_date\":\"1990-09-22\",\"espn_id\":16256},\"2547\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1525710601381,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":null,\"player_id\":\"2547\",\"birth_city\":null,\"fantasy_data_id\":17007,\"years_exp\":4,\"hashtag\":\"#RyanMurphy-NFL-FA-36\",\"search_first_name\":\"ryan\",\"rotowire_id\":10508,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan Murphy\",\"sportradar_id\":\"b4156edf-aba4-42e0-bce4-2363a2dd1a20\",\"pandascore_id\":null,\"yahoo_id\":28636,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557863,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryanmurphy\",\"birth_date\":\"1992-10-14\",\"espn_id\":2517020},\"59\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025580\",\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606151113562,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crosby\",\"depth_chart_position\":\"K\",\"player_id\":\"59\",\"birth_city\":null,\"fantasy_data_id\":1694,\"years_exp\":13,\"hashtag\":\"#MasonCrosby-NFL-GB-2\",\"search_first_name\":\"mason\",\"rotowire_id\":5363,\"rotoworld_id\":4182,\"active\":true,\"search_rank\":389,\"age\":36,\"full_name\":\"Mason Crosby\",\"sportradar_id\":\"e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8\",\"pandascore_id\":null,\"yahoo_id\":8447,\"last_name\":\"Crosby\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Georgetown (TX)\",\"depth_chart_order\":1,\"stats_id\":214574,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"masoncrosby\",\"birth_date\":\"1984-09-03\",\"espn_id\":10636},\"7451\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gill\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"7451\",\"birth_city\":null,\"fantasy_data_id\":22429,\"years_exp\":0,\"hashtag\":\"#CamGill-NFL-TB-49\",\"search_first_name\":\"cam\",\"rotowire_id\":14917,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2005,\"age\":22,\"full_name\":\"Cam Gill\",\"sportradar_id\":\"112b95ea-d080-4aa7-bedc-5755c6c6b80c\",\"pandascore_id\":null,\"yahoo_id\":33272,\"last_name\":\"Gill\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":\"Chapel Hill (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"camgill\",\"birth_date\":\"1997-12-14\",\"espn_id\":4034496},\"1394\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"1394\",\"birth_city\":null,\"fantasy_data_id\":14924,\"years_exp\":6,\"hashtag\":\"#SeanPorter-NFL-FA-32\",\"search_first_name\":\"sean\",\"rotowire_id\":8714,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Sean Porter\",\"sportradar_id\":\"2fd7c33f-ed75-40d0-9a77-128d1a069d47\",\"pandascore_id\":null,\"yahoo_id\":26741,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'1\\\"\",\"search_full_name\":\"seanporter\",\"birth_date\":\"1991-01-12\",\"espn_id\":15986},\"6934\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587939888104,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bredeson\",\"depth_chart_position\":\"LG\",\"player_id\":\"6934\",\"birth_city\":null,\"fantasy_data_id\":21990,\"years_exp\":0,\"hashtag\":\"#BenBredeson-NFL-BAL-67\",\"search_first_name\":\"ben\",\"rotowire_id\":14470,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Ben Bredeson\",\"sportradar_id\":\"ab3ce81f-6625-45d3-aa6d-79f95ae4f503\",\"pandascore_id\":null,\"yahoo_id\":32813,\"last_name\":\"Bredeson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Arrowhead (WI)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benbredeson\",\"birth_date\":\"1998-02-20\",\"espn_id\":4046551},\"827\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028118\",\"first_name\":\"Tyrod\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606074319208,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"QB\",\"player_id\":\"827\",\"birth_city\":null,\"fantasy_data_id\":12831,\"years_exp\":9,\"hashtag\":\"#TyrodTaylor-NFL-LAC-5\",\"search_first_name\":\"tyrod\",\"rotowire_id\":7357,\"rotoworld_id\":6509,\"active\":true,\"search_rank\":202,\"age\":31,\"full_name\":\"Tyrod Taylor\",\"sportradar_id\":\"7f3ef024-eb34-46af-8b9e-544cdf09378f\",\"pandascore_id\":null,\"yahoo_id\":24967,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Hampton (VA)\",\"depth_chart_order\":2,\"stats_id\":399579,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tyrodtaylor\",\"birth_date\":\"1989-08-03\",\"espn_id\":14163},\"2260\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031337\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567103738813,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"2260\",\"birth_city\":null,\"fantasy_data_id\":16671,\"years_exp\":6,\"hashtag\":\"#MarcusMartin-NFL-DET-60\",\"search_first_name\":\"marcus\",\"rotowire_id\":9434,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marcus Martin\",\"sportradar_id\":\"b05edab1-92b7-45f0-a6a8-4ded382332f3\",\"pandascore_id\":null,\"yahoo_id\":27598,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Crenshaw (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marcusmartin\",\"birth_date\":\"1993-11-29\",\"espn_id\":16788},\"463\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sen'Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marks\",\"depth_chart_position\":null,\"player_id\":\"463\",\"birth_city\":null,\"fantasy_data_id\":9555,\"years_exp\":11,\"hashtag\":\"#SenDerrickMarks-NFL-FA-75\",\"search_first_name\":\"senderrick\",\"rotowire_id\":6069,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Sen'Derrick Marks\",\"sportradar_id\":\"36a2829a-eb59-46be-9ef3-20d3955fd49d\",\"pandascore_id\":null,\"yahoo_id\":9326,\"last_name\":\"Marks\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Vigor (AL)\",\"depth_chart_order\":null,\"stats_id\":300543,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'2\\\"\",\"search_full_name\":\"senderrickmarks\",\"birth_date\":\"1987-02-23\",\"espn_id\":12445},\"6499\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035175\",\"first_name\":\"Jhavonte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dean\",\"depth_chart_position\":null,\"player_id\":\"6499\",\"birth_city\":null,\"fantasy_data_id\":21512,\"years_exp\":1,\"hashtag\":\"#JhavonteDean-NFL-FA-36\",\"search_first_name\":\"jhavonte\",\"rotowire_id\":14167,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jhavonte Dean\",\"sportradar_id\":\"f2d31944-cc46-46e0-bdeb-5cd99ab366a4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dean\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jhavontedean\",\"birth_date\":\"1995-12-14\",\"espn_id\":4240629},\"4701\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033816\",\"first_name\":\"Victor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1572536737114,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"salako\",\"depth_chart_position\":null,\"player_id\":\"4701\",\"birth_city\":null,\"fantasy_data_id\":19605,\"years_exp\":3,\"hashtag\":\"#VictorSalako-NFL-BUF-62\",\"search_first_name\":\"victor\",\"rotowire_id\":12245,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Victor Salako\",\"sportradar_id\":\"62c07124-0252-4553-99cc-9d0f1d647742\",\"pandascore_id\":null,\"yahoo_id\":30853,\"last_name\":\"Salako\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Grissom (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'5\\\"\",\"search_full_name\":\"victorsalako\",\"birth_date\":\"1993-11-04\",\"espn_id\":2977954},\"4123\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033901\",\"first_name\":\"Ethan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605745243621,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pocic\",\"depth_chart_position\":\"C\",\"player_id\":\"4123\",\"birth_city\":null,\"fantasy_data_id\":18969,\"years_exp\":3,\"hashtag\":\"#EthanPocic-NFL-SEA-77\",\"search_first_name\":\"ethan\",\"rotowire_id\":11814,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ethan Pocic\",\"sportradar_id\":\"736c12de-b7be-4c12-bed2-57856b7c8449\",\"pandascore_id\":null,\"yahoo_id\":30171,\"last_name\":\"Pocic\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Lemont (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ethanpocic\",\"birth_date\":\"1995-08-05\",\"espn_id\":3042738},\"1759\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"donnell\",\"depth_chart_position\":null,\"player_id\":\"1759\",\"birth_city\":null,\"fantasy_data_id\":15782,\"years_exp\":8,\"hashtag\":\"#LarryDonnell-NFL-FA-84\",\"search_first_name\":\"larry\",\"rotowire_id\":9114,\"rotoworld_id\":7512,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Larry Donnell\",\"sportradar_id\":\"6c218456-f94f-4235-b21a-8ffd87c82949\",\"pandascore_id\":null,\"yahoo_id\":25703,\"last_name\":\"Donnell\",\"metadata\":null,\"college\":\"Grambling\",\"high_school\":\"Carroll (AL)\",\"depth_chart_order\":null,\"stats_id\":402962,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"larrydonnell\",\"birth_date\":\"1988-11-01\",\"espn_id\":15707},\"1488\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030403\",\"first_name\":\"B.W.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598589947553,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":\"LCB\",\"player_id\":\"1488\",\"birth_city\":null,\"fantasy_data_id\":15086,\"years_exp\":7,\"hashtag\":\"#BWWebb-NFL-FA-23\",\"search_first_name\":\"bw\",\"rotowire_id\":8830,\"rotoworld_id\":null,\"active\":true,\"search_rank\":727,\"age\":30,\"full_name\":\"B.W. Webb\",\"sportradar_id\":\"113045ba-c7e5-4a91-a089-bc1bbcf55008\",\"pandascore_id\":null,\"yahoo_id\":26737,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Warwick (VA)\",\"depth_chart_order\":3,\"stats_id\":507534,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bwwebb\",\"birth_date\":\"1990-05-03\",\"espn_id\":15939},\"1247\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Griff\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535657410167,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"whalen\",\"depth_chart_position\":null,\"player_id\":\"1247\",\"birth_city\":null,\"fantasy_data_id\":14594,\"years_exp\":8,\"hashtag\":\"#GriffWhalen-NFL-FA-13\",\"search_first_name\":\"griff\",\"rotowire_id\":8359,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Griff Whalen\",\"sportradar_id\":\"4d079a3a-eaf1-4a78-961d-4e187f7bfbe8\",\"pandascore_id\":null,\"yahoo_id\":26218,\"last_name\":\"Whalen\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Sylvania Southview (OH)\",\"depth_chart_order\":null,\"stats_id\":461203,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"griffwhalen\",\"birth_date\":\"1990-03-01\",\"espn_id\":15360},\"2943\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weisman\",\"depth_chart_position\":null,\"player_id\":\"2943\",\"birth_city\":null,\"fantasy_data_id\":17414,\"years_exp\":0,\"hashtag\":\"#MarkWeisman-NFL-FA-35\",\"search_first_name\":\"mark\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mark Weisman\",\"sportradar_id\":\"3321df20-edb0-4628-9333-f1240f160bb1\",\"pandascore_id\":null,\"yahoo_id\":28981,\"last_name\":\"Weisman\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":593233,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"markweisman\",\"birth_date\":\"1991-10-28\",\"espn_id\":null},\"1826\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030869\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604535929122,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"larsen\",\"depth_chart_position\":\"C\",\"player_id\":\"1826\",\"birth_city\":null,\"fantasy_data_id\":16021,\"years_exp\":6,\"hashtag\":\"#TylerLarsen-NFL-CAR-69\",\"search_first_name\":\"tyler\",\"rotowire_id\":9433,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tyler Larsen\",\"sportradar_id\":\"1b1e5bef-13e9-4814-b7ef-7970cbf103b8\",\"pandascore_id\":null,\"yahoo_id\":28105,\"last_name\":\"Larsen\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Jordan (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tylerlarsen\",\"birth_date\":\"1991-07-08\",\"espn_id\":17196},\"7386\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596074411932,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elmore\",\"depth_chart_position\":null,\"player_id\":\"7386\",\"birth_city\":null,\"fantasy_data_id\":22372,\"years_exp\":0,\"hashtag\":\"#MalcolmElmore-NFL-FA-0\",\"search_first_name\":\"malcolm\",\"rotowire_id\":15009,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Malcolm Elmore\",\"sportradar_id\":\"b563d70d-c708-4feb-bd08-aa695ebb74e0\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Elmore\",\"metadata\":null,\"college\":\"Central Methodist\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"malcolmelmore\",\"birth_date\":\"1998-03-17\",\"espn_id\":null},\"6991\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Erroll\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"6991\",\"birth_city\":null,\"fantasy_data_id\":22099,\"years_exp\":0,\"hashtag\":\"#ErrollThompson-NFL-FA-0\",\"search_first_name\":\"erroll\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Erroll Thompson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"errollthompson\",\"birth_date\":null,\"espn_id\":null},\"4328\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lane\",\"depth_chart_position\":null,\"player_id\":\"4328\",\"birth_city\":null,\"fantasy_data_id\":19181,\"years_exp\":2,\"hashtag\":\"#JeromeLane-NFL-FA-6\",\"search_first_name\":\"jerome\",\"rotowire_id\":11686,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jerome Lane\",\"sportradar_id\":\"9cab6a71-0d75-4206-81b3-c808f1889bea\",\"pandascore_id\":null,\"yahoo_id\":30528,\"last_name\":\"Lane\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":743835,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeromelane\",\"birth_date\":\"1996-03-09\",\"espn_id\":3052561},\"1974\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030850\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606139112404,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parkey\",\"depth_chart_position\":\"K\",\"player_id\":\"1974\",\"birth_city\":null,\"fantasy_data_id\":16236,\"years_exp\":6,\"hashtag\":\"#CodyParkey-NFL-CLE-2\",\"search_first_name\":\"cody\",\"rotowire_id\":9943,\"rotoworld_id\":9893,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cody Parkey\",\"sportradar_id\":\"4b99ead5-0f79-4899-84a7-075c08890698\",\"pandascore_id\":null,\"yahoo_id\":27911,\"last_name\":\"Parkey\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Jupiter (FL)\",\"depth_chart_order\":1,\"stats_id\":557135,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"codyparkey\",\"birth_date\":\"1992-02-19\",\"espn_id\":17082},\"3858\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Miles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shuler\",\"depth_chart_position\":null,\"player_id\":\"3858\",\"birth_city\":null,\"fantasy_data_id\":18679,\"years_exp\":0,\"hashtag\":\"#MilesShuler-NFL-FA-12\",\"search_first_name\":\"miles\",\"rotowire_id\":11339,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Miles Shuler\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29992,\"last_name\":\"Shuler\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"milesshuler\",\"birth_date\":\"1993-09-26\",\"espn_id\":2582387},\"5212\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034215\",\"first_name\":\"Hercules\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1604762449863,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mataafa\",\"depth_chart_position\":\"DT\",\"player_id\":\"5212\",\"birth_city\":null,\"fantasy_data_id\":20162,\"years_exp\":2,\"hashtag\":\"#HerculesMataafa-NFL-MIN-51\",\"search_first_name\":\"hercules\",\"rotowire_id\":12499,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1425,\"age\":25,\"full_name\":\"Hercules Mata'afa\",\"sportradar_id\":\"1146776b-e591-4f81-8a56-459c1845bead\",\"pandascore_id\":null,\"yahoo_id\":31235,\"last_name\":\"Mata'afa\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Lahainaluna (HI)\",\"depth_chart_order\":3,\"stats_id\":835935,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'2\\\"\",\"search_full_name\":\"herculesmataafa\",\"birth_date\":\"1995-09-18\",\"espn_id\":3127274},\"5866\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035532\",\"first_name\":\"Deionte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606276555982,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"5866\",\"birth_city\":null,\"fantasy_data_id\":20729,\"years_exp\":1,\"hashtag\":\"#DeionteThompson-NFL-ARI-22\",\"search_first_name\":\"deionte\",\"rotowire_id\":13586,\"rotoworld_id\":13982,\"active\":true,\"search_rank\":1516,\"age\":23,\"full_name\":\"Deionte Thompson\",\"sportradar_id\":\"db3a0416-6758-485d-89e1-806af99e0991\",\"pandascore_id\":null,\"yahoo_id\":31971,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"West Orange-Stark (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deiontethompson\",\"birth_date\":\"1997-02-11\",\"espn_id\":3859100},\"7070\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Parker\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"braun\",\"depth_chart_position\":null,\"player_id\":\"7070\",\"birth_city\":null,\"fantasy_data_id\":22114,\"years_exp\":0,\"hashtag\":\"#ParkerBraun-NFL-FA-0\",\"search_first_name\":\"parker\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Parker Braun\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Braun\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"parkerbraun\",\"birth_date\":null,\"espn_id\":null},\"4571\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033658\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600202138547,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jarwin\",\"depth_chart_position\":\"TE\",\"player_id\":\"4571\",\"birth_city\":null,\"fantasy_data_id\":19457,\"years_exp\":3,\"hashtag\":\"#BlakeJarwin-NFL-DAL-89\",\"search_first_name\":\"blake\",\"rotowire_id\":12179,\"rotoworld_id\":12507,\"active\":true,\"search_rank\":151,\"age\":26,\"full_name\":\"Blake Jarwin\",\"sportradar_id\":\"43e8a6ac-d451-4dbd-b145-797764f91494\",\"pandascore_id\":null,\"yahoo_id\":30784,\"last_name\":\"Jarwin\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Tuttle (OK)\",\"depth_chart_order\":1,\"stats_id\":711965,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"blakejarwin\",\"birth_date\":\"1994-07-16\",\"espn_id\":2991767},\"5288\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034611\",\"first_name\":\"Donnie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1575334546605,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ernsberger\",\"depth_chart_position\":\"TE\",\"player_id\":\"5288\",\"birth_city\":null,\"fantasy_data_id\":20370,\"years_exp\":2,\"hashtag\":\"#DonnieErnsberger-NFL-FA-86\",\"search_first_name\":\"donnie\",\"rotowire_id\":12948,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Donnie Ernsberger\",\"sportradar_id\":\"d9fcbb62-399e-46c8-8a74-b5f3d96a3fa0\",\"pandascore_id\":null,\"yahoo_id\":31255,\"last_name\":\"Ernsberger\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":840708,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"donnieernsberger\",\"birth_date\":\"1996-10-13\",\"espn_id\":3129455},\"2846\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"2846\",\"birth_city\":null,\"fantasy_data_id\":17314,\"years_exp\":0,\"hashtag\":\"#MarquezClark-NFL-FA-87\",\"search_first_name\":\"marquez\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marquez Clark\",\"sportradar_id\":\"3f4b85e5-1506-4dc8-95ff-ed70694b3492\",\"pandascore_id\":null,\"yahoo_id\":28818,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Central Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652839,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marquezclark\",\"birth_date\":\"1991-11-26\",\"espn_id\":3893001},\"4278\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033297\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606104011422,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4278\",\"birth_city\":null,\"fantasy_data_id\":19124,\"years_exp\":3,\"hashtag\":\"#DJJones-NFL-SF-93\",\"search_first_name\":\"dj\",\"rotowire_id\":12209,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1227,\"age\":25,\"full_name\":\"D.J. Jones\",\"sportradar_id\":\"d2e2b313-6769-48c6-a217-d167f04068df\",\"pandascore_id\":null,\"yahoo_id\":30310,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Wren (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'0\\\"\",\"search_full_name\":\"djjones\",\"birth_date\":\"1995-01-19\",\"espn_id\":3894915},\"1427\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"montgomery\",\"depth_chart_position\":null,\"player_id\":\"1427\",\"birth_city\":null,\"fantasy_data_id\":14987,\"years_exp\":2,\"hashtag\":\"#SamMontgomery-NFL-FA-70\",\"search_first_name\":\"sam\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Sam Montgomery\",\"sportradar_id\":\"c7094ebc-e44c-45d9-a9c2-fba9ce05824d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Montgomery\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sammontgomery\",\"birth_date\":\"1990-05-25\",\"espn_id\":15857},\"6096\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035023\",\"first_name\":\"Jamell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567099838178,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garciawilliams\",\"depth_chart_position\":null,\"player_id\":\"6096\",\"birth_city\":null,\"fantasy_data_id\":20765,\"years_exp\":1,\"hashtag\":\"#JamellGarciaWilliams-NFL-FA-71\",\"search_first_name\":\"jamell\",\"rotowire_id\":14073,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jamell Garcia-Williams\",\"sportradar_id\":\"0643e15e-76f5-4eea-a08e-d35eba7f13f7\",\"pandascore_id\":null,\"yahoo_id\":32320,\"last_name\":\"Garcia-Williams\",\"metadata\":null,\"college\":\"UAB\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'8\\\"\",\"search_full_name\":\"jamellgarciawilliams\",\"birth_date\":\"1997-01-24\",\"espn_id\":4239787},\"629\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"629\",\"birth_city\":null,\"fantasy_data_id\":11572,\"years_exp\":10,\"hashtag\":\"#DanWilliams-NFL-FA-90\",\"search_first_name\":\"dan\",\"rotowire_id\":6584,\"rotoworld_id\":5779,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Dan Williams\",\"sportradar_id\":\"6b9e783e-54a4-488f-9c98-79358f65d056\",\"pandascore_id\":null,\"yahoo_id\":24001,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"East (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danwilliams\",\"birth_date\":\"1987-06-01\",\"espn_id\":13235},\"1167\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"1167\",\"birth_city\":null,\"fantasy_data_id\":14253,\"years_exp\":3,\"hashtag\":\"#RichardCrawford-NFL-FA-35\",\"search_first_name\":\"richard\",\"rotowire_id\":8340,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Richard Crawford\",\"sportradar_id\":\"b29a21bd-7266-4fb3-b2e1-6c195c1425cf\",\"pandascore_id\":null,\"yahoo_id\":25923,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"richardcrawford\",\"birth_date\":\"1990-08-01\",\"espn_id\":15129},\"6069\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035399\",\"first_name\":\"Stanley\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605912903440,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6069\",\"birth_city\":null,\"fantasy_data_id\":20886,\"years_exp\":1,\"hashtag\":\"#StanleyMorgan-NFL-CIN-17\",\"search_first_name\":\"stanley\",\"rotowire_id\":13877,\"rotoworld_id\":null,\"active\":true,\"search_rank\":523,\"age\":24,\"full_name\":\"Stanley Morgan\",\"sportradar_id\":\"8f32cbe6-9c50-4bf7-9e68-057d718fb490\",\"pandascore_id\":null,\"yahoo_id\":32469,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"St. Augustine (LA)\",\"depth_chart_order\":3,\"stats_id\":866112,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"stanleymorgan\",\"birth_date\":\"1996-09-07\",\"espn_id\":3699902},\"2509\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gallik\",\"depth_chart_position\":null,\"player_id\":\"2509\",\"birth_city\":null,\"fantasy_data_id\":16968,\"years_exp\":5,\"hashtag\":\"#AndyGallik-NFL-FA-69\",\"search_first_name\":\"andy\",\"rotowire_id\":10293,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Andy Gallik\",\"sportradar_id\":\"1fd4e88c-cdf1-40c7-aed7-01782feb23b4\",\"pandascore_id\":null,\"yahoo_id\":28596,\"last_name\":\"Gallik\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Brother Rice (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andygallik\",\"birth_date\":\"1991-09-24\",\"espn_id\":2512369},\"7476\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcswain\",\"depth_chart_position\":null,\"player_id\":\"7476\",\"birth_city\":null,\"fantasy_data_id\":22451,\"years_exp\":0,\"hashtag\":\"#TrevorMcSwain-NFL-FA-0\",\"search_first_name\":\"trevor\",\"rotowire_id\":14819,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Trevor McSwain\",\"sportradar_id\":\"92732073-30ea-4b5c-8007-18437df21a46\",\"pandascore_id\":null,\"yahoo_id\":33178,\"last_name\":\"McSwain\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'6\\\"\",\"search_full_name\":\"trevormcswain\",\"birth_date\":\"1996-11-04\",\"espn_id\":3917802},\"4155\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033511\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1577639417531,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harlow\",\"depth_chart_position\":null,\"player_id\":\"4155\",\"birth_city\":null,\"fantasy_data_id\":19001,\"years_exp\":3,\"hashtag\":\"#SeanHarlow-NFL-ATL-64\",\"search_first_name\":\"sean\",\"rotowire_id\":11796,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sean Harlow\",\"sportradar_id\":\"f4f08533-c692-4aba-84fe-fc21101c7bda\",\"pandascore_id\":null,\"yahoo_id\":30249,\"last_name\":\"Harlow\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"San Clemente (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'4\\\"\",\"search_full_name\":\"seanharlow\",\"birth_date\":\"1995-03-28\",\"espn_id\":3045286},\"6181\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035259\",\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604962528861,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"wesco\",\"depth_chart_position\":\"TE\",\"player_id\":\"6181\",\"birth_city\":null,\"fantasy_data_id\":20977,\"years_exp\":1,\"hashtag\":\"#TrevonWesco-NFL-NYJ-85\",\"search_first_name\":\"trevon\",\"rotowire_id\":13828,\"rotoworld_id\":null,\"active\":true,\"search_rank\":501,\"age\":25,\"full_name\":\"Trevon Wesco\",\"sportradar_id\":\"f6c34178-e063-444b-96b3-df6b3cf66419\",\"pandascore_id\":null,\"yahoo_id\":31953,\"last_name\":\"Wesco\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Musselman (WV)\",\"depth_chart_order\":4,\"stats_id\":919456,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trevonwesco\",\"birth_date\":\"1995-09-12\",\"espn_id\":4039253},\"6616\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035027\",\"first_name\":\"Jegs\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599693591273,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jegede\",\"depth_chart_position\":null,\"player_id\":\"6616\",\"birth_city\":null,\"fantasy_data_id\":21485,\"years_exp\":1,\"hashtag\":\"#JegsJegede-NFL-FA-0\",\"search_first_name\":\"jegs\",\"rotowire_id\":14095,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jegs Jegede\",\"sportradar_id\":\"4ce9600e-ee43-4b0a-becc-c8de646ff451\",\"pandascore_id\":null,\"yahoo_id\":32296,\"last_name\":\"Jegede\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jegsjegede\",\"birth_date\":\"1994-05-24\",\"espn_id\":4408860},\"4734\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zeek\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bigger\",\"depth_chart_position\":null,\"player_id\":\"4734\",\"birth_city\":null,\"fantasy_data_id\":19648,\"years_exp\":2,\"hashtag\":\"#ZeekBigger-NFL-FA-56\",\"search_first_name\":\"zeek\",\"rotowire_id\":12268,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zeek Bigger\",\"sportradar_id\":\"1e5c9ec9-972f-4cef-85e9-19a9c5c0e651\",\"pandascore_id\":null,\"yahoo_id\":30883,\"last_name\":\"Bigger\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'0\\\"\",\"search_full_name\":\"zeekbigger\",\"birth_date\":\"1992-11-06\",\"espn_id\":2575516},\"1563\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029794\",\"first_name\":\"Daren\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603839654959,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bates\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"1563\",\"birth_city\":null,\"fantasy_data_id\":15206,\"years_exp\":7,\"hashtag\":\"#DarenBates-NFL-TEN-56\",\"search_first_name\":\"daren\",\"rotowire_id\":9073,\"rotoworld_id\":null,\"active\":true,\"search_rank\":745,\"age\":30,\"full_name\":\"Daren Bates\",\"sportradar_id\":\"2c8e1238-0125-484e-b4f2-c0d08b5ef952\",\"pandascore_id\":null,\"yahoo_id\":27166,\"last_name\":\"Bates\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Auburn\",\"high_school\":\"Olive Branch (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darenbates\",\"birth_date\":\"1990-11-27\",\"espn_id\":16299},\"1317\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barden\",\"depth_chart_position\":null,\"player_id\":\"1317\",\"birth_city\":null,\"fantasy_data_id\":14812,\"years_exp\":2,\"hashtag\":\"#BrandonBarden-NFL-FA-85\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Barden\",\"sportradar_id\":\"7cc50283-9349-49cf-8d6f-b4b388c0e41d\",\"pandascore_id\":null,\"yahoo_id\":26013,\"last_name\":\"Barden\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandonbarden\",\"birth_date\":\"1989-03-15\",\"espn_id\":15195},\"4067\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033539\",\"first_name\":\"Jarrad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606348503836,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"MLB\",\"player_id\":\"4067\",\"birth_city\":null,\"fantasy_data_id\":18913,\"years_exp\":3,\"hashtag\":\"#JarradDavis-NFL-DET-40\",\"search_first_name\":\"jarrad\",\"rotowire_id\":11966,\"rotoworld_id\":12239,\"active\":true,\"search_rank\":1121,\"age\":26,\"full_name\":\"Jarrad Davis\",\"sportradar_id\":\"808fe9a2-51dc-4d22-8f09-da1857b5a699\",\"pandascore_id\":null,\"yahoo_id\":30134,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Camden County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jarraddavis\",\"birth_date\":\"1994-11-16\",\"espn_id\":3054951},\"420\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquand\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manuel\",\"depth_chart_position\":null,\"player_id\":\"420\",\"birth_city\":null,\"fantasy_data_id\":9028,\"years_exp\":0,\"hashtag\":\"#MarquandManuel-NFL-FA-40\",\"search_first_name\":\"marquand\",\"rotowire_id\":null,\"rotoworld_id\":2518,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Marquand Manuel\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manuel\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marquandmanuel\",\"birth_date\":\"1979-07-11\",\"espn_id\":null},\"6544\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035136\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adeoye\",\"depth_chart_position\":null,\"player_id\":\"6544\",\"birth_city\":null,\"fantasy_data_id\":21515,\"years_exp\":1,\"hashtag\":\"#AaronAdeoye-NFL-BAL-51\",\"search_first_name\":\"aaron\",\"rotowire_id\":14177,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1749,\"age\":27,\"full_name\":\"Aaron Adeoye\",\"sportradar_id\":\"171e1cf6-8bcc-46f1-8afe-47756967611c\",\"pandascore_id\":null,\"yahoo_id\":32387,\"last_name\":\"Adeoye\",\"metadata\":null,\"college\":\"Southeast Missouri\",\"high_school\":\"Marion (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"aaronadeoye\",\"birth_date\":\"1993-08-26\",\"espn_id\":2579634},\"5831\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034901\",\"first_name\":\"Bryant\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599275454959,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":null,\"player_id\":\"5831\",\"birth_city\":null,\"fantasy_data_id\":20726,\"years_exp\":1,\"hashtag\":\"#BryantMitchell-NFL-FA-0\",\"search_first_name\":\"bryant\",\"rotowire_id\":13576,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Bryant Mitchell\",\"sportradar_id\":\"efc94096-abe3-46eb-803a-ecab1d56e28f\",\"pandascore_id\":null,\"yahoo_id\":31816,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Northwestern State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747276,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bryantmitchell\",\"birth_date\":\"1992-08-16\",\"espn_id\":3050661},\"6388\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035604\",\"first_name\":\"Romello\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brooker\",\"depth_chart_position\":null,\"player_id\":\"6388\",\"birth_city\":null,\"fantasy_data_id\":21296,\"years_exp\":1,\"hashtag\":\"#RomelloBrooker-NFL-FA-84\",\"search_first_name\":\"romello\",\"rotowire_id\":14010,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Romello Brooker\",\"sportradar_id\":\"d428cfea-10ea-40b8-a4aa-423e5839fb0d\",\"pandascore_id\":null,\"yahoo_id\":32127,\"last_name\":\"Brooker\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":831245,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"romellobrooker\",\"birth_date\":\"1995-12-11\",\"espn_id\":3126196},\"4468\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033421\",\"first_name\":\"Antony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605561919666,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"auclair\",\"depth_chart_position\":\"TE\",\"player_id\":\"4468\",\"birth_city\":null,\"fantasy_data_id\":19335,\"years_exp\":3,\"hashtag\":\"#AntonyAuclair-NFL-TB-82\",\"search_first_name\":\"antony\",\"rotowire_id\":12230,\"rotoworld_id\":null,\"active\":true,\"search_rank\":569,\"age\":27,\"full_name\":\"Antony Auclair\",\"sportradar_id\":\"d6647491-8a3c-4f9f-999c-823823bd478d\",\"pandascore_id\":null,\"yahoo_id\":30468,\"last_name\":\"Auclair\",\"metadata\":null,\"college\":\"Laval, Can.\",\"high_school\":\"Champlain-Lennoxville (CAN)\",\"depth_chart_order\":3,\"stats_id\":1050026,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'6\\\"\",\"search_full_name\":\"antonyauclair\",\"birth_date\":\"1993-05-28\",\"espn_id\":4081127},\"1064\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028912\",\"first_name\":\"Vontaze\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1582578933280,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burfict\",\"depth_chart_position\":null,\"player_id\":\"1064\",\"birth_city\":null,\"fantasy_data_id\":13860,\"years_exp\":8,\"hashtag\":\"#VontazeBurfict-NFL-FA-55\",\"search_first_name\":\"vontaze\",\"rotowire_id\":8522,\"rotoworld_id\":7435,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Vontaze Burfict\",\"sportradar_id\":\"a62a2950-521e-4670-a4cf-47f6863fc0d1\",\"pandascore_id\":null,\"yahoo_id\":26238,\"last_name\":\"Burfict\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Centennial (CA)\",\"depth_chart_order\":null,\"stats_id\":507431,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"vontazeburfict\",\"birth_date\":\"1990-09-24\",\"espn_id\":15246},\"1910\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1515518401584,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shaw\",\"depth_chart_position\":null,\"player_id\":\"1910\",\"birth_city\":null,\"fantasy_data_id\":16139,\"years_exp\":6,\"hashtag\":\"#ConnorShaw-NFL-FA-0\",\"search_first_name\":\"connor\",\"rotowire_id\":9325,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Connor Shaw\",\"sportradar_id\":\"6d382acb-98ce-42a8-94e4-656ee5702982\",\"pandascore_id\":null,\"yahoo_id\":28024,\"last_name\":\"Shaw\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542914,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"connorshaw\",\"birth_date\":\"1991-09-19\",\"espn_id\":17247},\"7364\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":null,\"player_id\":\"7364\",\"birth_city\":null,\"fantasy_data_id\":22352,\"years_exp\":0,\"hashtag\":\"#BlakeLynch-NFL-MIN-48\",\"search_first_name\":\"blake\",\"rotowire_id\":14906,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1988,\"age\":23,\"full_name\":\"Blake Lynch\",\"sportradar_id\":\"299cb403-1cea-48da-baaa-b55510a6b78b\",\"pandascore_id\":null,\"yahoo_id\":33034,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Gilmer (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"blakelynch\",\"birth_date\":\"1997-02-14\",\"espn_id\":3892773},\"2413\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032130\",\"first_name\":\"Jalston\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1542158729564,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fowler\",\"depth_chart_position\":null,\"player_id\":\"2413\",\"birth_city\":null,\"fantasy_data_id\":16869,\"years_exp\":5,\"hashtag\":\"#JalstonFowler-NFL-FA-40\",\"search_first_name\":\"jalston\",\"rotowire_id\":10203,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jalston Fowler\",\"sportradar_id\":\"0f062def-77f5-4362-86cb-4bdb63a59eba\",\"pandascore_id\":null,\"yahoo_id\":28496,\"last_name\":\"Fowler\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Vigor (AL)\",\"depth_chart_order\":null,\"stats_id\":543757,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jalstonfowler\",\"birth_date\":\"1990-07-26\",\"espn_id\":2515931},\"5293\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034669\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602015608284,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"veasy\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5293\",\"birth_city\":null,\"fantasy_data_id\":20376,\"years_exp\":2,\"hashtag\":\"#JordanVeasy-NFL-WAS-14\",\"search_first_name\":\"jordan\",\"rotowire_id\":13304,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Veasy\",\"sportradar_id\":\"fb815f81-3759-4194-bff9-1982fb2dd9a0\",\"pandascore_id\":null,\"yahoo_id\":31626,\"last_name\":\"Veasy\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Gadsden City (AL)\",\"depth_chart_order\":3,\"stats_id\":911523,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanveasy\",\"birth_date\":\"1995-06-23\",\"espn_id\":4035853},\"5123\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034164\",\"first_name\":\"Trenton\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605292853357,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cannon\",\"depth_chart_position\":\"RB\",\"player_id\":\"5123\",\"birth_city\":null,\"fantasy_data_id\":20040,\"years_exp\":2,\"hashtag\":\"#TrentonCannon-NFL-CAR-36\",\"search_first_name\":\"trenton\",\"rotowire_id\":12997,\"rotoworld_id\":13304,\"active\":true,\"search_rank\":411,\"age\":26,\"full_name\":\"Trenton Cannon\",\"sportradar_id\":\"b89c853a-6bd8-42ec-ae52-a11831923631\",\"pandascore_id\":null,\"yahoo_id\":31174,\"last_name\":\"Cannon\",\"metadata\":null,\"college\":\"Virginia State\",\"high_school\":\"Kecoughtan (VA)\",\"depth_chart_order\":4,\"stats_id\":1075216,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"trentoncannon\",\"birth_date\":\"1994-07-23\",\"espn_id\":4261020},\"3289\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033076\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1595985904833,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kindred\",\"depth_chart_position\":\"FS\",\"player_id\":\"3289\",\"birth_city\":null,\"fantasy_data_id\":18050,\"years_exp\":4,\"hashtag\":\"#DerrickKindred-NFL-FA-0\",\"search_first_name\":\"derrick\",\"rotowire_id\":11093,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1009,\"age\":26,\"full_name\":\"Derrick Kindred\",\"sportradar_id\":\"822e1946-3df1-4a25-b967-291a0c435cf5\",\"pandascore_id\":null,\"yahoo_id\":29363,\"last_name\":\"Kindred\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":691322,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'10\\\"\",\"search_full_name\":\"derrickkindred\",\"birth_date\":\"1993-12-15\",\"espn_id\":2971550},\"2983\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032042\",\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603980032860,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"riley\",\"depth_chart_position\":\"FS\",\"player_id\":\"2983\",\"birth_city\":null,\"fantasy_data_id\":17488,\"years_exp\":5,\"hashtag\":\"#CurtisRiley-NFL-MIN-37\",\"search_first_name\":\"curtis\",\"rotowire_id\":10658,\"rotoworld_id\":null,\"active\":true,\"search_rank\":939,\"age\":28,\"full_name\":\"Curtis Riley\",\"sportradar_id\":\"dfa638bd-7c3a-4269-8b39-b9e6b2148a41\",\"pandascore_id\":null,\"yahoo_id\":29062,\"last_name\":\"Riley\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"University (FL)\",\"depth_chart_order\":3,\"stats_id\":566136,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"curtisriley\",\"birth_date\":\"1992-07-18\",\"espn_id\":2525492},\"982\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604358930064,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"RB\",\"player_id\":\"982\",\"birth_city\":null,\"fantasy_data_id\":13446,\"years_exp\":9,\"hashtag\":\"#BruceMiller-NFL-JAX-49\",\"search_first_name\":\"bruce\",\"rotowire_id\":7505,\"rotoworld_id\":6713,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Bruce Miller\",\"sportradar_id\":\"9be8224a-4a19-4f6a-a2be-ecbd3a24868c\",\"pandascore_id\":null,\"yahoo_id\":24998,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Woodstock (GA)\",\"depth_chart_order\":5,\"stats_id\":324654,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"Sus\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brucemiller\",\"birth_date\":\"1987-08-06\",\"espn_id\":14083},\"2237\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030986\",\"first_name\":\"Ethan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1581780958155,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"westbrooks\",\"depth_chart_position\":\"LDE\",\"player_id\":\"2237\",\"birth_city\":null,\"fantasy_data_id\":16637,\"years_exp\":6,\"hashtag\":\"#EthanWestbrooks-NFL-FA-63\",\"search_first_name\":\"ethan\",\"rotowire_id\":9685,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ethan Westbrooks\",\"sportradar_id\":\"bb29cf6c-17a4-4106-9b9c-47d2d9c0e6b9\",\"pandascore_id\":null,\"yahoo_id\":27972,\"last_name\":\"Westbrooks\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"Franklin (CA)\",\"depth_chart_order\":3,\"stats_id\":794258,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ethanwestbrooks\",\"birth_date\":\"1990-11-15\",\"espn_id\":17285},\"1955\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeoffrey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pagan\",\"depth_chart_position\":null,\"player_id\":\"1955\",\"birth_city\":null,\"fantasy_data_id\":16209,\"years_exp\":6,\"hashtag\":\"#JeoffreyPagan-NFL-FA-97\",\"search_first_name\":\"jeoffrey\",\"rotowire_id\":9293,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeoffrey Pagan\",\"sportradar_id\":\"0d335fca-1766-4696-887d-47a09ef7e497\",\"pandascore_id\":null,\"yahoo_id\":27705,\"last_name\":\"Pagan\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Asheville (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeoffreypagan\",\"birth_date\":\"1992-06-10\",\"espn_id\":16947},\"1579\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stepfan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"1579\",\"birth_city\":null,\"fantasy_data_id\":15230,\"years_exp\":7,\"hashtag\":\"#StepfanTaylor-NFL-FA-30\",\"search_first_name\":\"stepfan\",\"rotowire_id\":8759,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Stepfan Taylor\",\"sportradar_id\":\"01547e57-de64-4860-a521-525509dacf5b\",\"pandascore_id\":null,\"yahoo_id\":26763,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Mansfield (TX)\",\"depth_chart_order\":null,\"stats_id\":503203,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'9\\\"\",\"search_full_name\":\"stepfantaylor\",\"birth_date\":\"1991-06-09\",\"espn_id\":15981},\"2007\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryn\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"renner\",\"depth_chart_position\":null,\"player_id\":\"2007\",\"birth_city\":null,\"fantasy_data_id\":16282,\"years_exp\":6,\"hashtag\":\"#BrynRenner-NFL-FA-8\",\"search_first_name\":\"bryn\",\"rotowire_id\":9681,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Bryn Renner\",\"sportradar_id\":\"85b834b5-c48b-42c0-a8a8-2d56190eecbc\",\"pandascore_id\":null,\"yahoo_id\":27829,\"last_name\":\"Renner\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"West Springfield (VA)\",\"depth_chart_order\":null,\"stats_id\":498821,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brynrenner\",\"birth_date\":\"1990-01-22\",\"espn_id\":17033},\"2528\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032139\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1580275801751,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"koyack\",\"depth_chart_position\":null,\"player_id\":\"2528\",\"birth_city\":null,\"fantasy_data_id\":16988,\"years_exp\":5,\"hashtag\":\"#BenKoyack-NFL-FA-0\",\"search_first_name\":\"ben\",\"rotowire_id\":10254,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ben Koyack\",\"sportradar_id\":\"666e3121-3daa-4413-b1ec-8e728f7cc645\",\"pandascore_id\":null,\"yahoo_id\":28617,\"last_name\":\"Koyack\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":610943,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'5\\\"\",\"search_full_name\":\"benkoyack\",\"birth_date\":\"1993-04-09\",\"espn_id\":2579846},\"2600\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seale\",\"depth_chart_position\":null,\"player_id\":\"2600\",\"birth_city\":null,\"fantasy_data_id\":17068,\"years_exp\":0,\"hashtag\":\"#RickySeale-NFL-FA-44\",\"search_first_name\":\"ricky\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ricky Seale\",\"sportradar_id\":\"69ba440e-84e1-4ab6-b5c9-75fc9504c89d\",\"pandascore_id\":null,\"yahoo_id\":29199,\"last_name\":\"Seale\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553101,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'9\\\"\",\"search_full_name\":\"rickyseale\",\"birth_date\":null,\"espn_id\":2517786},\"7147\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thakarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597639235355,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"keyes\",\"depth_chart_position\":\"RCB\",\"player_id\":\"7147\",\"birth_city\":null,\"fantasy_data_id\":22149,\"years_exp\":0,\"hashtag\":\"#ThakariusKeyes-NFL-KC-29\",\"search_first_name\":\"thakarius\",\"rotowire_id\":14579,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1936,\"age\":23,\"full_name\":\"Thakarius Keyes\",\"sportradar_id\":\"04401033-2785-4a87-b19a-312f45a53502\",\"pandascore_id\":null,\"yahoo_id\":32907,\"last_name\":\"Keyes\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Laurel (MS)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"thakariuskeyes\",\"birth_date\":\"1997-11-09\",\"espn_id\":4040652},\"3702\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032707\",\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599598841240,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3702\",\"birth_city\":null,\"fantasy_data_id\":18508,\"years_exp\":4,\"hashtag\":\"#AndyJones-NFL-FA-0\",\"search_first_name\":\"andy\",\"rotowire_id\":11269,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1085,\"age\":26,\"full_name\":\"Andy Jones\",\"sportradar_id\":\"c57b1184-e381-40cc-b603-f703e10d3fad\",\"pandascore_id\":null,\"yahoo_id\":29893,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Jacksonville\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":704246,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andyjones\",\"birth_date\":\"1994-06-28\",\"espn_id\":2982761},\"1767\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garth\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gerhart\",\"depth_chart_position\":null,\"player_id\":\"1767\",\"birth_city\":null,\"fantasy_data_id\":15819,\"years_exp\":2,\"hashtag\":\"#GarthGerhart-NFL-FA-62\",\"search_first_name\":\"garth\",\"rotowire_id\":9968,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Garth Gerhart\",\"sportradar_id\":\"a581d7ef-8b7b-41ac-82ea-a8ad75c4b4f2\",\"pandascore_id\":null,\"yahoo_id\":26371,\"last_name\":\"Gerhart\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'1\\\"\",\"search_full_name\":\"garthgerhart\",\"birth_date\":\"1988-10-21\",\"espn_id\":15174},\"2505\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031610\",\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606515327236,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"waller\",\"depth_chart_position\":\"TE\",\"player_id\":\"2505\",\"birth_city\":null,\"fantasy_data_id\":16964,\"years_exp\":5,\"hashtag\":\"#DarrenWaller-NFL-LV-83\",\"search_first_name\":\"darren\",\"rotowire_id\":10215,\"rotoworld_id\":10433,\"active\":true,\"search_rank\":65,\"age\":28,\"full_name\":\"Darren Waller\",\"sportradar_id\":\"14c97c9f-26e8-4944-9299-f90de6aeada3\",\"pandascore_id\":null,\"yahoo_id\":28592,\"last_name\":\"Waller\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"North Cobb (GA)\",\"depth_chart_order\":1,\"stats_id\":600191,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"darrenwaller\",\"birth_date\":\"1992-09-13\",\"espn_id\":2576925},\"3245\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033097\",\"first_name\":\"Shon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596768349892,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"3245\",\"birth_city\":null,\"fantasy_data_id\":18006,\"years_exp\":4,\"hashtag\":\"#ShonColeman-NFL-SF-78\",\"search_first_name\":\"shon\",\"rotowire_id\":10975,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Shon Coleman\",\"sportradar_id\":\"a3cf95a2-4994-4ee4-a07d-b27004183a6c\",\"pandascore_id\":null,\"yahoo_id\":29310,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Olive Branch (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"shoncoleman\",\"birth_date\":\"1991-11-25\",\"espn_id\":2574573},\"211\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daryl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"211\",\"birth_city\":null,\"fantasy_data_id\":5353,\"years_exp\":16,\"hashtag\":\"#DarylSmith-NFL-FA-51\",\"search_first_name\":\"daryl\",\"rotowire_id\":3779,\"rotoworld_id\":40,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Daryl Smith\",\"sportradar_id\":\"e25da45a-e39e-4f78-8ee2-d6d45f2f7caa\",\"pandascore_id\":null,\"yahoo_id\":6798,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Dougherty (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darylsmith\",\"birth_date\":\"1982-03-14\",\"espn_id\":5564},\"67\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1511844301803,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":null,\"player_id\":\"67\",\"birth_city\":null,\"fantasy_data_id\":1903,\"years_exp\":12,\"hashtag\":\"#PatSims-NFL-FA-92\",\"search_first_name\":\"pat\",\"rotowire_id\":5601,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Pat Sims\",\"sportradar_id\":\"1f20aaed-7f06-45c8-a868-bb5fee0be950\",\"pandascore_id\":null,\"yahoo_id\":8854,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Dillard (FL)\",\"depth_chart_order\":null,\"stats_id\":263116,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'2\\\"\",\"search_full_name\":\"patsims\",\"birth_date\":\"1985-11-29\",\"espn_id\":11311},\"3218\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032889\",\"first_name\":\"A'Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604250018872,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"DT\",\"player_id\":\"3218\",\"birth_city\":null,\"fantasy_data_id\":17979,\"years_exp\":4,\"hashtag\":\"#AShawnRobinson-NFL-LAR-94\",\"search_first_name\":\"ashawn\",\"rotowire_id\":11162,\"rotoworld_id\":null,\"active\":true,\"search_rank\":973,\"age\":25,\"full_name\":\"A'Shawn Robinson\",\"sportradar_id\":\"3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd\",\"pandascore_id\":null,\"yahoo_id\":29280,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Arlington Heights (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ashawnrobinson\",\"birth_date\":\"1995-03-21\",\"espn_id\":3054857},\"80\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"80\",\"birth_city\":null,\"fantasy_data_id\":2240,\"years_exp\":12,\"hashtag\":\"#EdReed-NFL-FA-22\",\"search_first_name\":\"ed\",\"rotowire_id\":null,\"rotoworld_id\":2222,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Ed Reed\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"edreed\",\"birth_date\":\"1978-09-11\",\"espn_id\":null},\"393\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gradkowski\",\"depth_chart_position\":null,\"player_id\":\"393\",\"birth_city\":null,\"fantasy_data_id\":8769,\"years_exp\":11,\"hashtag\":\"#BruceGradkowski-NFL-FA-5\",\"search_first_name\":\"bruce\",\"rotowire_id\":4830,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Bruce Gradkowski\",\"sportradar_id\":\"12815867-476b-4c85-a2eb-6a6a54cf563e\",\"pandascore_id\":null,\"yahoo_id\":7943,\"last_name\":\"Gradkowski\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":161130,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brucegradkowski\",\"birth_date\":\"1983-01-27\",\"espn_id\":9780},\"6119\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035707\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606283756646,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"LILB\",\"player_id\":\"6119\",\"birth_city\":null,\"fantasy_data_id\":20981,\"years_exp\":1,\"hashtag\":\"#DevinWhite-NFL-TB-45\",\"search_first_name\":\"devin\",\"rotowire_id\":13611,\"rotoworld_id\":13947,\"active\":true,\"search_rank\":1618,\"age\":22,\"full_name\":\"Devin White\",\"sportradar_id\":\"37849d01-7d7e-4a35-8840-e17cacd73d85\",\"pandascore_id\":null,\"yahoo_id\":31837,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"North Webster (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"devinwhite\",\"birth_date\":\"1998-02-17\",\"espn_id\":4035434},\"1565\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029764\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604193611418,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"FS\",\"player_id\":\"1565\",\"birth_city\":null,\"fantasy_data_id\":15208,\"years_exp\":7,\"hashtag\":\"#CodyDavis-NFL-NE-22\",\"search_first_name\":\"cody\",\"rotowire_id\":9173,\"rotoworld_id\":8897,\"active\":true,\"search_rank\":746,\"age\":31,\"full_name\":\"Cody Davis\",\"sportradar_id\":\"4f454037-be8e-4575-b332-5e40f4788970\",\"pandascore_id\":null,\"yahoo_id\":27105,\"last_name\":\"Davis\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas Tech\",\"high_school\":\"Stephenville (TX)\",\"depth_chart_order\":3,\"stats_id\":461491,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"codydavis\",\"birth_date\":\"1989-06-06\",\"espn_id\":16286},\"246\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023564\",\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1576956354416,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sproles\",\"depth_chart_position\":null,\"player_id\":\"246\",\"birth_city\":null,\"fantasy_data_id\":6198,\"years_exp\":15,\"hashtag\":\"#DarrenSproles-NFL-FA-43\",\"search_first_name\":\"darren\",\"rotowire_id\":4320,\"rotoworld_id\":3221,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Darren Sproles\",\"sportradar_id\":\"15b156b5-30cc-4070-b60a-1c09e62c5a9b\",\"pandascore_id\":null,\"yahoo_id\":7306,\"last_name\":\"Sproles\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Olathe North (KS)\",\"depth_chart_order\":null,\"stats_id\":164505,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'6\\\"\",\"search_full_name\":\"darrensproles\",\"birth_date\":\"1983-06-20\",\"espn_id\":8544},\"2222\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031418\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1584374115144,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"seferianjenkins\",\"depth_chart_position\":null,\"player_id\":\"2222\",\"birth_city\":null,\"fantasy_data_id\":16608,\"years_exp\":6,\"hashtag\":\"#AustinSeferianJenkins-NFL-FA-88\",\"search_first_name\":\"austin\",\"rotowire_id\":9241,\"rotoworld_id\":9400,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Austin Seferian-Jenkins\",\"sportradar_id\":\"e78261de-af00-4530-824c-500addbe9f98\",\"pandascore_id\":null,\"yahoo_id\":27566,\"last_name\":\"Seferian-Jenkins\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Gig Harbor (WA)\",\"depth_chart_order\":null,\"stats_id\":593347,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'5\\\"\",\"search_full_name\":\"austinseferianjenkins\",\"birth_date\":\"1992-09-29\",\"espn_id\":16795},\"5066\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034262\",\"first_name\":\"P.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606091136763,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"5066\",\"birth_city\":null,\"fantasy_data_id\":19889,\"years_exp\":2,\"hashtag\":\"#PJHall-NFL-HOU-96\",\"search_first_name\":\"pj\",\"rotowire_id\":12728,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1325,\"age\":25,\"full_name\":\"P.J. Hall\",\"sportradar_id\":\"b4974d96-a831-4914-9de6-6758a4ae12dd\",\"pandascore_id\":null,\"yahoo_id\":31027,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Sam Houston State\",\"high_school\":\"Seguin (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'0\\\"\",\"search_full_name\":\"pjhall\",\"birth_date\":\"1995-04-05\",\"espn_id\":3050754},\"3025\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"LT\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"3025\",\"birth_city\":null,\"fantasy_data_id\":17700,\"years_exp\":null,\"hashtag\":\"#LTSmith-NFL-FA-0\",\"search_first_name\":\"lt\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"LT Smith\",\"sportradar_id\":\"c8c70618-6c09-4ed9-810f-63235d89231d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":564413,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ltsmith\",\"birth_date\":null,\"espn_id\":null},\"6912\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Davion\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587792037068,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"6912\",\"birth_city\":null,\"fantasy_data_id\":21987,\"years_exp\":0,\"hashtag\":\"#DavionTaylor-NFL-PHI-52\",\"search_first_name\":\"davion\",\"rotowire_id\":14751,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1869,\"age\":22,\"full_name\":\"Davion Taylor\",\"sportradar_id\":\"423b3b98-da9a-4786-84c9-0662ec0ce11f\",\"pandascore_id\":null,\"yahoo_id\":32773,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"South Pike (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"daviontaylor\",\"birth_date\":\"1998-08-05\",\"espn_id\":4360645},\"490\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026544\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604886922005,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"daniel\",\"depth_chart_position\":\"QB\",\"player_id\":\"490\",\"birth_city\":null,\"fantasy_data_id\":9902,\"years_exp\":11,\"hashtag\":\"#ChaseDaniel-NFL-DET-4\",\"search_first_name\":\"chase\",\"rotowire_id\":6162,\"rotoworld_id\":5170,\"active\":true,\"search_rank\":477,\"age\":34,\"full_name\":\"Chase Daniel\",\"sportradar_id\":\"0045a36c-f464-49e0-a25a-9210edc94bc1\",\"pandascore_id\":null,\"yahoo_id\":9678,\"last_name\":\"Daniel\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Carroll (TX)\",\"depth_chart_order\":2,\"stats_id\":300101,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chasedaniel\",\"birth_date\":\"1986-10-07\",\"espn_id\":12471},\"2824\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032008\",\"first_name\":\"Donteea\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535949407546,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dye\",\"depth_chart_position\":null,\"player_id\":\"2824\",\"birth_city\":null,\"fantasy_data_id\":17292,\"years_exp\":5,\"hashtag\":\"#DonteeaDye-NFL-FA-15\",\"search_first_name\":\"donteea\",\"rotowire_id\":10702,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Donteea Dye\",\"sportradar_id\":\"81c5b714-d8ef-4fca-9dd4-cc34feb803e2\",\"pandascore_id\":null,\"yahoo_id\":29069,\"last_name\":\"Dye\",\"metadata\":null,\"college\":\"Heidelberg\",\"high_school\":\"Fairfield (OH)\",\"depth_chart_order\":null,\"stats_id\":870722,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"donteeadye\",\"birth_date\":\"1993-08-20\",\"espn_id\":3894952},\"503\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026858\",\"first_name\":\"Graham\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606495804222,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"gano\",\"depth_chart_position\":\"K\",\"player_id\":\"503\",\"birth_city\":null,\"fantasy_data_id\":10333,\"years_exp\":11,\"hashtag\":\"#GrahamGano-NFL-NYG-5\",\"search_first_name\":\"graham\",\"rotowire_id\":6045,\"rotoworld_id\":5468,\"active\":true,\"search_rank\":415,\"age\":33,\"full_name\":\"Graham Gano\",\"sportradar_id\":\"63f8a401-f308-4463-9d0b-4335b98da682\",\"pandascore_id\":null,\"yahoo_id\":9526,\"last_name\":\"Gano\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Tate (FL)\",\"depth_chart_order\":1,\"stats_id\":296451,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"grahamgano\",\"birth_date\":\"1987-04-09\",\"espn_id\":12460},\"368\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027136\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597447506747,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccourty\",\"depth_chart_position\":\"LCB\",\"player_id\":\"368\",\"birth_city\":null,\"fantasy_data_id\":8550,\"years_exp\":11,\"hashtag\":\"#JasonMcCourty-NFL-NE-30\",\"search_first_name\":\"jason\",\"rotowire_id\":6221,\"rotoworld_id\":5414,\"active\":true,\"search_rank\":595,\"age\":33,\"full_name\":\"Jason McCourty\",\"sportradar_id\":\"7c73efae-bf01-4226-a2f8-ec6243da9b99\",\"pandascore_id\":null,\"yahoo_id\":9467,\"last_name\":\"McCourty\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Rutgers\",\"high_school\":\"St. Joseph (NJ)\",\"depth_chart_order\":1,\"stats_id\":300593,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jasonmccourty\",\"birth_date\":\"1987-08-13\",\"espn_id\":12691},\"500\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Billy\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cundiff\",\"depth_chart_position\":null,\"player_id\":\"500\",\"birth_city\":null,\"fantasy_data_id\":10145,\"years_exp\":18,\"hashtag\":\"#BillyCundiff-NFL-FA-8\",\"search_first_name\":\"billy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Billy Cundiff\",\"sportradar_id\":\"5fc8485a-e32a-451b-a16f-5d6a655b7e14\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cundiff\",\"metadata\":null,\"college\":\"Drake\",\"high_school\":\"Harlan Community (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"billycundiff\",\"birth_date\":\"1980-03-30\",\"espn_id\":4245},\"7101\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606140912492,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"RB\",\"player_id\":\"7101\",\"birth_city\":null,\"fantasy_data_id\":21775,\"years_exp\":0,\"hashtag\":\"#RodneySmith-NFL-CAR-35\",\"search_first_name\":\"rodney\",\"rotowire_id\":14435,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1780,\"age\":24,\"full_name\":\"Rodney Smith\",\"sportradar_id\":\"ee96c74a-7a51-478a-99f9-97ddaaac1e34\",\"pandascore_id\":null,\"yahoo_id\":33153,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Mundy's Mill (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rodneysmith\",\"birth_date\":\"1996-02-28\",\"espn_id\":null},\"5724\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"este\",\"depth_chart_position\":null,\"player_id\":\"5724\",\"birth_city\":null,\"fantasy_data_id\":20644,\"years_exp\":2,\"hashtag\":\"#JosephEste-NFL-FA-38\",\"search_first_name\":\"joseph\",\"rotowire_id\":13337,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joseph Este\",\"sportradar_id\":\"85d1b9d2-3034-4e4f-aa67-a86cfc6a24b8\",\"pandascore_id\":null,\"yahoo_id\":31707,\"last_name\":\"Este\",\"metadata\":null,\"college\":\"Tennessee-Martin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"josepheste\",\"birth_date\":\"1994-06-25\",\"espn_id\":4030612},\"5363\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034417\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603324841614,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pryor\",\"depth_chart_position\":\"LG\",\"player_id\":\"5363\",\"birth_city\":null,\"fantasy_data_id\":20043,\"years_exp\":2,\"hashtag\":\"#MattPryor-NFL-PHI-69\",\"search_first_name\":\"matt\",\"rotowire_id\":12998,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Pryor\",\"sportradar_id\":\"782c4f21-74b8-4fb1-b9a9-f908e4de81b1\",\"pandascore_id\":null,\"yahoo_id\":31176,\"last_name\":\"Pryor\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Lakewood (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattpryor\",\"birth_date\":\"1994-12-16\",\"espn_id\":3055886},\"5741\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034736\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603411249235,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":\"SS\",\"player_id\":\"5741\",\"birth_city\":null,\"fantasy_data_id\":20316,\"years_exp\":2,\"hashtag\":\"#StevenParker-NFL-DAL-40\",\"search_first_name\":\"steven\",\"rotowire_id\":13342,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1451,\"age\":24,\"full_name\":\"Steven Parker\",\"sportradar_id\":\"43211a61-4d89-4982-bbf1-9b932316b571\",\"pandascore_id\":null,\"yahoo_id\":31733,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Jenks (OK)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stevenparker\",\"birth_date\":\"1995-12-14\",\"espn_id\":3116387},\"7228\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ahmad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359959,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wagner\",\"depth_chart_position\":null,\"player_id\":\"7228\",\"birth_city\":null,\"fantasy_data_id\":22229,\"years_exp\":0,\"hashtag\":\"#AhmadWagner-NFL-FA-0\",\"search_first_name\":\"ahmad\",\"rotowire_id\":14880,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ahmad Wagner\",\"sportradar_id\":\"0cdcabee-0c9b-4226-b20b-a15ab96dda36\",\"pandascore_id\":null,\"yahoo_id\":33182,\"last_name\":\"Wagner\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ahmadwagner\",\"birth_date\":\"1996-12-21\",\"espn_id\":3935018},\"3784\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032859\",\"first_name\":\"Destiny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1573596655837,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vaeao\",\"depth_chart_position\":null,\"player_id\":\"3784\",\"birth_city\":null,\"fantasy_data_id\":18597,\"years_exp\":4,\"hashtag\":\"#DestinyVaeao-NFL-FA-75\",\"search_first_name\":\"destiny\",\"rotowire_id\":11541,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Destiny Vaeao\",\"sportradar_id\":\"04ac7d14-68fc-4d70-b0f0-334dce9c1c45\",\"pandascore_id\":null,\"yahoo_id\":29687,\"last_name\":\"Vaeao\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'3\\\"\",\"search_full_name\":\"destinyvaeao\",\"birth_date\":\"1994-01-15\",\"espn_id\":2978355},\"5547\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034306\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"5547\",\"birth_city\":null,\"fantasy_data_id\":20577,\"years_exp\":2,\"hashtag\":\"#RyanSmith-NFL-FA-48\",\"search_first_name\":\"ryan\",\"rotowire_id\":13162,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Smith\",\"sportradar_id\":\"e15d7337-d967-4350-a829-b15395b1dc2a\",\"pandascore_id\":null,\"yahoo_id\":31501,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Miami (OH)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":831727,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryansmith\",\"birth_date\":\"1996-01-13\",\"espn_id\":3125991},\"1544\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"renfree\",\"depth_chart_position\":null,\"player_id\":\"1544\",\"birth_city\":null,\"fantasy_data_id\":15182,\"years_exp\":7,\"hashtag\":\"#SeanRenfree-NFL-FA-13\",\"search_first_name\":\"sean\",\"rotowire_id\":8917,\"rotoworld_id\":8478,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sean Renfree\",\"sportradar_id\":\"9ea8eb0a-32f3-4eab-992f-71e607ec65eb\",\"pandascore_id\":null,\"yahoo_id\":26872,\"last_name\":\"Renfree\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Notre Dame Prep (AZ)\",\"depth_chart_order\":null,\"stats_id\":463951,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'5\\\"\",\"search_full_name\":\"seanrenfree\",\"birth_date\":\"1990-04-28\",\"espn_id\":15894},\"7117\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"L'Jarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606059017364,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sneed\",\"depth_chart_position\":\"RCB\",\"player_id\":\"7117\",\"birth_city\":null,\"fantasy_data_id\":21934,\"years_exp\":0,\"hashtag\":\"#LJariusSneed-NFL-KC-38\",\"search_first_name\":\"ljarius\",\"rotowire_id\":14688,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1850,\"age\":23,\"full_name\":\"L'Jarius Sneed\",\"sportradar_id\":\"92b059b3-6b1b-4db4-a535-ceba629176d1\",\"pandascore_id\":null,\"yahoo_id\":32808,\"last_name\":\"Sneed\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Minden (LA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ljariussneed\",\"birth_date\":\"1997-01-21\",\"espn_id\":4040432},\"1390\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030290\",\"first_name\":\"Cobi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534785320902,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"1390\",\"birth_city\":null,\"fantasy_data_id\":14920,\"years_exp\":7,\"hashtag\":\"#CobiHamilton-NFL-FA-1\",\"search_first_name\":\"cobi\",\"rotowire_id\":8799,\"rotoworld_id\":8597,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Cobi Hamilton\",\"sportradar_id\":\"d48f6897-5e58-4233-b199-feeeb8600613\",\"pandascore_id\":null,\"yahoo_id\":26820,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":512068,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cobihamilton\",\"birth_date\":\"1990-11-13\",\"espn_id\":15983},\"5012\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034753\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606513828033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"andrews\",\"depth_chart_position\":\"TE\",\"player_id\":\"5012\",\"birth_city\":null,\"fantasy_data_id\":19803,\"years_exp\":2,\"hashtag\":\"#MarkAndrews-NFL-BAL-89\",\"search_first_name\":\"mark\",\"rotowire_id\":12559,\"rotoworld_id\":13182,\"active\":true,\"search_rank\":42,\"age\":25,\"full_name\":\"Mark Andrews\",\"sportradar_id\":\"0618f387-9b72-4270-8b8f-dec4cccc9e4a\",\"pandascore_id\":null,\"yahoo_id\":31056,\"last_name\":\"Andrews\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Desert Mountain (AZ)\",\"depth_chart_order\":1,\"stats_id\":820699,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"markandrews\",\"birth_date\":\"1995-09-06\",\"espn_id\":3116365},\"429\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Percy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1587562248647,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harvin\",\"depth_chart_position\":null,\"player_id\":\"429\",\"birth_city\":null,\"fantasy_data_id\":9079,\"years_exp\":11,\"hashtag\":\"#PercyHarvin-NFL-FA-11\",\"search_first_name\":\"percy\",\"rotowire_id\":5974,\"rotoworld_id\":5197,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Percy Harvin\",\"sportradar_id\":\"3752af7b-f40d-4f82-8072-4fb84d15090d\",\"pandascore_id\":null,\"yahoo_id\":9286,\"last_name\":\"Harvin\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Landstown (VA)\",\"depth_chart_order\":null,\"stats_id\":329777,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"percyharvin\",\"birth_date\":\"1988-05-28\",\"espn_id\":12569},\"122\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Miles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"austin\",\"depth_chart_position\":null,\"player_id\":\"122\",\"birth_city\":null,\"fantasy_data_id\":3330,\"years_exp\":14,\"hashtag\":\"#MilesAustin-NFL-FA-19\",\"search_first_name\":\"miles\",\"rotowire_id\":4890,\"rotoworld_id\":4059,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Miles Austin\",\"sportradar_id\":\"acf68a6a-3439-4ad6-8937-2562f4eba62b\",\"pandascore_id\":null,\"yahoo_id\":8021,\"last_name\":\"Austin\",\"metadata\":null,\"college\":\"Monmouth, N.J.\",\"high_school\":\"Garfield (NJ)\",\"depth_chart_order\":null,\"stats_id\":222199,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"milesaustin\",\"birth_date\":\"1984-06-30\",\"espn_id\":10147},\"1888\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"feigt\",\"depth_chart_position\":null,\"player_id\":\"1888\",\"birth_city\":null,\"fantasy_data_id\":16108,\"years_exp\":1,\"hashtag\":\"#CurtisFeigt-NFL-FA-62\",\"search_first_name\":\"curtis\",\"rotowire_id\":10117,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Curtis Feigt\",\"sportradar_id\":\"bc16836f-59b6-48c9-9d40-a624550d47a5\",\"pandascore_id\":null,\"yahoo_id\":28017,\"last_name\":\"Feigt\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'6\\\"\",\"search_full_name\":\"curtisfeigt\",\"birth_date\":\"1989-11-23\",\"espn_id\":null},\"5722\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034710\",\"first_name\":\"Darvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598916029797,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kidsyjr\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5722\",\"birth_city\":null,\"fantasy_data_id\":20478,\"years_exp\":2,\"hashtag\":\"#DarvinKidsyJr-NFL-FA-0\",\"search_first_name\":\"darvin\",\"rotowire_id\":13321,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1479,\"age\":25,\"full_name\":\"Darvin Kidsy Jr.\",\"sportradar_id\":\"c99cb557-3364-4755-a353-82737ba1de6b\",\"pandascore_id\":null,\"yahoo_id\":31722,\"last_name\":\"Kidsy Jr.\",\"metadata\":null,\"college\":\"Texas Southern\",\"high_school\":null,\"depth_chart_order\":12,\"stats_id\":743761,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"darvinkidsyjr\",\"birth_date\":\"1995-03-19\",\"espn_id\":3051650},\"4473\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"4473\",\"birth_city\":null,\"fantasy_data_id\":19341,\"years_exp\":0,\"hashtag\":\"#AlexGray-NFL-TB-34\",\"search_first_name\":\"alex\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Alex Gray\",\"sportradar_id\":\"d149dad5-b0b6-45fe-be2b-68479b1295d1\",\"pandascore_id\":null,\"yahoo_id\":30474,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alexgray\",\"birth_date\":\"1993-09-15\",\"espn_id\":2973659},\"5032\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034364\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606481703398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"akins\",\"depth_chart_position\":\"TE\",\"player_id\":\"5032\",\"birth_city\":null,\"fantasy_data_id\":19903,\"years_exp\":2,\"hashtag\":\"#JordanAkins-NFL-HOU-88\",\"search_first_name\":\"jordan\",\"rotowire_id\":12568,\"rotoworld_id\":null,\"active\":true,\"search_rank\":416,\"age\":28,\"full_name\":\"Jordan Akins\",\"sportradar_id\":\"0cb5a32a-a340-4671-ba2a-93f5fa6aee8d\",\"pandascore_id\":null,\"yahoo_id\":31068,\"last_name\":\"Akins\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Union Grove (GA)\",\"depth_chart_order\":1,\"stats_id\":838396,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanakins\",\"birth_date\":\"1992-04-19\",\"espn_id\":3128452},\"6947\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K'Von\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603935930224,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":\"FS\",\"player_id\":\"6947\",\"birth_city\":null,\"fantasy_data_id\":21938,\"years_exp\":0,\"hashtag\":\"#KVonWallace-NFL-PHI-42\",\"search_first_name\":\"kvon\",\"rotowire_id\":14686,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1853,\"age\":23,\"full_name\":\"K'Von Wallace\",\"sportradar_id\":\"789af1aa-253e-4fda-a93b-cef346bd91b3\",\"pandascore_id\":null,\"yahoo_id\":32797,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Highland Springs (VA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kvonwallace\",\"birth_date\":\"1997-07-25\",\"espn_id\":4035463},\"2138\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031080\",\"first_name\":\"Demetri\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1591228827591,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"goodson\",\"depth_chart_position\":null,\"player_id\":\"2138\",\"birth_city\":null,\"fantasy_data_id\":16477,\"years_exp\":6,\"hashtag\":\"#DemetriGoodson-NFL-FA-39\",\"search_first_name\":\"demetri\",\"rotowire_id\":9699,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Demetri Goodson\",\"sportradar_id\":\"5161ce0c-a12d-4daa-9176-eb9edee80c37\",\"pandascore_id\":null,\"yahoo_id\":27725,\"last_name\":\"Goodson\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Klein Collins (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"demetrigoodson\",\"birth_date\":\"1989-06-11\",\"espn_id\":16949},\"6900\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606188316701,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"greenard\",\"depth_chart_position\":\"JACK\",\"player_id\":\"6900\",\"birth_city\":null,\"fantasy_data_id\":21879,\"years_exp\":0,\"hashtag\":\"#JonathanGreenard-NFL-HOU-52\",\"search_first_name\":\"jonathan\",\"rotowire_id\":14550,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1805,\"age\":23,\"full_name\":\"Jonathan Greenard\",\"sportradar_id\":\"bc69c92c-58ff-44b2-a18b-07a08ee78dc6\",\"pandascore_id\":null,\"yahoo_id\":32760,\"last_name\":\"Greenard\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Hiram (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonathangreenard\",\"birth_date\":\"1997-05-25\",\"espn_id\":3916409},\"3176\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033058\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606407058066,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ragland\",\"depth_chart_position\":\"SLB\",\"player_id\":\"3176\",\"birth_city\":null,\"fantasy_data_id\":17937,\"years_exp\":4,\"hashtag\":\"#ReggieRagland-NFL-DET-59\",\"search_first_name\":\"reggie\",\"rotowire_id\":11109,\"rotoworld_id\":11320,\"active\":true,\"search_rank\":952,\"age\":27,\"full_name\":\"Reggie Ragland\",\"sportradar_id\":\"cda62c8b-89dd-4c03-a86d-dba70541693a\",\"pandascore_id\":null,\"yahoo_id\":29275,\"last_name\":\"Ragland\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Bob Jones (AL)\",\"depth_chart_order\":2,\"stats_id\":694601,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'2\\\"\",\"search_full_name\":\"reggieragland\",\"birth_date\":\"1993-09-23\",\"espn_id\":2979855},\"5616\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034665\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1532295301650,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ramsay\",\"depth_chart_position\":null,\"player_id\":\"5616\",\"birth_city\":null,\"fantasy_data_id\":20381,\"years_exp\":2,\"hashtag\":\"#MikeRamsay-NFL-FA-70\",\"search_first_name\":\"mike\",\"rotowire_id\":13301,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mike Ramsay\",\"sportradar_id\":\"1a4d1d61-ea6e-4c11-80f5-a6b807932db0\",\"pandascore_id\":null,\"yahoo_id\":31613,\"last_name\":\"Ramsay\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mikeramsay\",\"birth_date\":\"1995-03-16\",\"espn_id\":3048672},\"297\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eddie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"royal\",\"depth_chart_position\":null,\"player_id\":\"297\",\"birth_city\":null,\"fantasy_data_id\":7389,\"years_exp\":12,\"hashtag\":\"#EddieRoyal-NFL-FA-19\",\"search_first_name\":\"eddie\",\"rotowire_id\":5690,\"rotoworld_id\":4853,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Eddie Royal\",\"sportradar_id\":\"c66754c7-a259-4ebb-86d5-b3d68340ad18\",\"pandascore_id\":null,\"yahoo_id\":8819,\"last_name\":\"Royal\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Westfield (VA)\",\"depth_chart_order\":null,\"stats_id\":246667,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"eddieroyal\",\"birth_date\":\"1986-05-21\",\"espn_id\":11276},\"5453\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034117\",\"first_name\":\"Colton\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1584653435225,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jumper\",\"depth_chart_position\":null,\"player_id\":\"5453\",\"birth_city\":null,\"fantasy_data_id\":20334,\"years_exp\":2,\"hashtag\":\"#ColtonJumper-NFL-FA-0\",\"search_first_name\":\"colton\",\"rotowire_id\":13105,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Colton Jumper\",\"sportradar_id\":\"ebb3f664-8f39-448b-89aa-422f4aa9e312\",\"pandascore_id\":null,\"yahoo_id\":31412,\"last_name\":\"Jumper\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'2\\\"\",\"search_full_name\":\"coltonjumper\",\"birth_date\":\"1994-11-26\",\"espn_id\":3115352},\"4509\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"casher\",\"depth_chart_position\":null,\"player_id\":\"4509\",\"birth_city\":null,\"fantasy_data_id\":19381,\"years_exp\":2,\"hashtag\":\"#ChrisCasher-NFL-FA-48\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Chris Casher\",\"sportradar_id\":\"7e7e29d2-8ebd-471e-bc94-49dce3311ae5\",\"pandascore_id\":null,\"yahoo_id\":30699,\"last_name\":\"Casher\",\"metadata\":null,\"college\":\"Faulkner\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chriscasher\",\"birth_date\":null,\"espn_id\":2969917},\"1059\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1507712701784,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rainey\",\"depth_chart_position\":null,\"player_id\":\"1059\",\"birth_city\":null,\"fantasy_data_id\":13852,\"years_exp\":8,\"hashtag\":\"#BobbyRainey-NFL-FA-31\",\"search_first_name\":\"bobby\",\"rotowire_id\":8413,\"rotoworld_id\":8173,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Bobby Rainey\",\"sportradar_id\":\"56185079-5d0a-416d-9dd8-932a58bc9df7\",\"pandascore_id\":null,\"yahoo_id\":26455,\"last_name\":\"Rainey\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Griffin (GA)\",\"depth_chart_order\":null,\"stats_id\":404983,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'8\\\"\",\"search_full_name\":\"bobbyrainey\",\"birth_date\":\"1987-10-16\",\"espn_id\":15501},\"7011\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carter\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600899609416,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coughlin\",\"depth_chart_position\":\"SAM\",\"player_id\":\"7011\",\"birth_city\":null,\"fantasy_data_id\":21902,\"years_exp\":0,\"hashtag\":\"#CarterCoughlin-NFL-NYG-49\",\"search_first_name\":\"carter\",\"rotowire_id\":14580,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1826,\"age\":23,\"full_name\":\"Carter Coughlin\",\"sportradar_id\":\"d2f9e776-11e2-47ce-82fd-60908aeb2769\",\"pandascore_id\":null,\"yahoo_id\":32888,\"last_name\":\"Coughlin\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Eden Prairie (MN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cartercoughlin\",\"birth_date\":\"1997-07-21\",\"espn_id\":4034766},\"1966\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lankford\",\"depth_chart_position\":null,\"player_id\":\"1966\",\"birth_city\":null,\"fantasy_data_id\":16227,\"years_exp\":1,\"hashtag\":\"#RyanLankford-NFL-FA-85\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Lankford\",\"sportradar_id\":\"2a8fe747-62c1-4a1b-bcb8-7cb5f234faa5\",\"pandascore_id\":null,\"yahoo_id\":28104,\"last_name\":\"Lankford\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":543637,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ryanlankford\",\"birth_date\":\"1991-12-09\",\"espn_id\":17195},\"5248\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034184\",\"first_name\":\"Gus\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606509927588,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":\"RB\",\"player_id\":\"5248\",\"birth_city\":null,\"fantasy_data_id\":20239,\"years_exp\":2,\"hashtag\":\"#GusEdwards-NFL-BAL-35\",\"search_first_name\":\"gus\",\"rotowire_id\":13123,\"rotoworld_id\":13606,\"active\":true,\"search_rank\":224,\"age\":25,\"full_name\":\"Gus Edwards\",\"sportradar_id\":\"3ffc3993-461e-4477-9def-c9633b7feac1\",\"pandascore_id\":null,\"yahoo_id\":31424,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Tottenville (NY)\",\"depth_chart_order\":3,\"stats_id\":739799,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"gusedwards\",\"birth_date\":\"1995-04-13\",\"espn_id\":3051926},\"2112\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031095\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leno\",\"depth_chart_position\":\"LT\",\"player_id\":\"2112\",\"birth_city\":null,\"fantasy_data_id\":16436,\"years_exp\":6,\"hashtag\":\"#CharlesLeno-NFL-CHI-72\",\"search_first_name\":\"charles\",\"rotowire_id\":9631,\"rotoworld_id\":9725,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Charles Leno\",\"sportradar_id\":\"40a38dc1-6355-4467-9064-07e2d063f558\",\"pandascore_id\":null,\"yahoo_id\":27774,\"last_name\":\"Leno\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"San Leandro (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"charlesleno\",\"birth_date\":\"1991-10-09\",\"espn_id\":16848},\"1988\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031369\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605836119638,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"linder\",\"depth_chart_position\":\"C\",\"player_id\":\"1988\",\"birth_city\":null,\"fantasy_data_id\":16259,\"years_exp\":6,\"hashtag\":\"#BrandonLinder-NFL-JAX-65\",\"search_first_name\":\"brandon\",\"rotowire_id\":9443,\"rotoworld_id\":9650,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Linder\",\"sportradar_id\":\"f5eaf900-592e-4a3a-8514-4426dce7d3c3\",\"pandascore_id\":null,\"yahoo_id\":27621,\"last_name\":\"Linder\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brandonlinder\",\"birth_date\":\"1992-01-25\",\"espn_id\":16770},\"4707\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534623026604,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"judd\",\"depth_chart_position\":null,\"player_id\":\"4707\",\"birth_city\":null,\"fantasy_data_id\":19614,\"years_exp\":3,\"hashtag\":\"#AkeemJudd-NFL-FA-36\",\"search_first_name\":\"akeem\",\"rotowire_id\":12129,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Akeem Judd\",\"sportradar_id\":\"015af24c-5327-4d6a-84ea-088bbc9f747c\",\"pandascore_id\":null,\"yahoo_id\":30751,\"last_name\":\"Judd\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":837933,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"5'11\\\"\",\"search_full_name\":\"akeemjudd\",\"birth_date\":\"1992-12-11\",\"espn_id\":3128756},\"1436\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justice\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cunningham\",\"depth_chart_position\":null,\"player_id\":\"1436\",\"birth_city\":null,\"fantasy_data_id\":15005,\"years_exp\":7,\"hashtag\":\"#JusticeCunningham-NFL-FA-48\",\"search_first_name\":\"justice\",\"rotowire_id\":8919,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Justice Cunningham\",\"sportradar_id\":\"648efe4b-d3de-4105-8340-eab0552cb6fa\",\"pandascore_id\":null,\"yahoo_id\":26877,\"last_name\":\"Cunningham\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Central (SC)\",\"depth_chart_order\":null,\"stats_id\":504318,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justicecunningham\",\"birth_date\":\"1991-01-14\",\"espn_id\":15991},\"1329\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028237\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602628548959,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hogan\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1329\",\"birth_city\":null,\"fantasy_data_id\":14828,\"years_exp\":9,\"hashtag\":\"#ChrisHogan-NFL-NYJ-15\",\"search_first_name\":\"chris\",\"rotowire_id\":8469,\"rotoworld_id\":6902,\"active\":true,\"search_rank\":260,\"age\":33,\"full_name\":\"Chris Hogan\",\"sportradar_id\":\"8fc65820-f565-44e2-8635-3e1cdf165bf6\",\"pandascore_id\":null,\"yahoo_id\":25178,\"last_name\":\"Hogan\",\"metadata\":null,\"college\":\"Monmouth, N.J.\",\"high_school\":\"Ramapo (NJ)\",\"depth_chart_order\":3,\"stats_id\":564913,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrishogan\",\"birth_date\":\"1987-10-24\",\"espn_id\":14402},\"7066\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603928429864,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"osborn\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7066\",\"birth_city\":null,\"fantasy_data_id\":21714,\"years_exp\":0,\"hashtag\":\"#KJOsborn-NFL-MIN-17\",\"search_first_name\":\"kj\",\"rotowire_id\":14641,\"rotoworld_id\":null,\"active\":true,\"search_rank\":350,\"age\":23,\"full_name\":\"K.J. Osborn\",\"sportradar_id\":\"3bf5c049-9daa-43ba-9758-c6c895a9d462\",\"pandascore_id\":null,\"yahoo_id\":32846,\"last_name\":\"Osborn\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kjosborn\",\"birth_date\":\"1997-06-10\",\"espn_id\":3916566},\"5688\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034644\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"montelus\",\"depth_chart_position\":null,\"player_id\":\"5688\",\"birth_city\":null,\"fantasy_data_id\":20276,\"years_exp\":2,\"hashtag\":\"#JohnMontelus-NFL-FA-64\",\"search_first_name\":\"john\",\"rotowire_id\":13198,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"John Montelus\",\"sportradar_id\":\"4086e06c-747e-433d-85e1-5b38443c0c78\",\"pandascore_id\":null,\"yahoo_id\":31639,\"last_name\":\"Montelus\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnmontelus\",\"birth_date\":\"1995-09-08\",\"espn_id\":3052887},\"1853\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"IK\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"enemkpali\",\"depth_chart_position\":null,\"player_id\":\"1853\",\"birth_city\":null,\"fantasy_data_id\":16062,\"years_exp\":6,\"hashtag\":\"#IKEnemkpali-NFL-FA-54\",\"search_first_name\":\"ik\",\"rotowire_id\":9695,\"rotoworld_id\":9700,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"IK Enemkpali\",\"sportradar_id\":\"463105d7-8a5c-4af9-98e6-e8e5fe7b6f2b\",\"pandascore_id\":null,\"yahoo_id\":27738,\"last_name\":\"Enemkpali\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Pflugerville (TX)\",\"depth_chart_order\":null,\"stats_id\":509691,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ikenemkpali\",\"birth_date\":\"1991-07-03\",\"espn_id\":16858},\"4007\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jim\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"irsay\",\"depth_chart_position\":null,\"player_id\":\"4007\",\"birth_city\":null,\"fantasy_data_id\":18846,\"years_exp\":0,\"hashtag\":\"#JimIrsay-NFL-FA-0\",\"search_first_name\":\"jim\",\"rotowire_id\":null,\"rotoworld_id\":9454,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jim Irsay\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Irsay\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jimirsay\",\"birth_date\":null,\"espn_id\":null},\"2695\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lynden\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trail\",\"depth_chart_position\":null,\"player_id\":\"2695\",\"birth_city\":null,\"fantasy_data_id\":17163,\"years_exp\":5,\"hashtag\":\"#LyndenTrail-NFL-FA-0\",\"search_first_name\":\"lynden\",\"rotowire_id\":10814,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Lynden Trail\",\"sportradar_id\":\"c053932e-a020-4f91-9c22-2e9bd33eaae2\",\"pandascore_id\":null,\"yahoo_id\":28901,\"last_name\":\"Trail\",\"metadata\":null,\"college\":\"Norfolk State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'6\\\"\",\"search_full_name\":\"lyndentrail\",\"birth_date\":\"1991-03-19\",\"espn_id\":2516070},\"4003\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Woody\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4003\",\"birth_city\":null,\"fantasy_data_id\":18842,\"years_exp\":0,\"hashtag\":\"#WoodyJohnson-NFL-FA-0\",\"search_first_name\":\"woody\",\"rotowire_id\":null,\"rotoworld_id\":9463,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Woody Johnson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"woodyjohnson\",\"birth_date\":null,\"espn_id\":null},\"4639\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jessamen\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1524177301304,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunker\",\"depth_chart_position\":null,\"player_id\":\"4639\",\"birth_city\":null,\"fantasy_data_id\":19534,\"years_exp\":2,\"hashtag\":\"#JessamenDunker-NFL-FA-65\",\"search_first_name\":\"jessamen\",\"rotowire_id\":11790,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jessamen Dunker\",\"sportradar_id\":\"dce5fc9f-2631-4284-94a2-03f0055c8e21\",\"pandascore_id\":null,\"yahoo_id\":30731,\"last_name\":\"Dunker\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jessamendunker\",\"birth_date\":\"1993-01-18\",\"espn_id\":3074320},\"4182\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033527\",\"first_name\":\"Montae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584994232614,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nicholson\",\"depth_chart_position\":\"SS\",\"player_id\":\"4182\",\"birth_city\":null,\"fantasy_data_id\":19028,\"years_exp\":3,\"hashtag\":\"#MontaeNicholson-NFL-FA-0\",\"search_first_name\":\"montae\",\"rotowire_id\":12003,\"rotoworld_id\":12351,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Montae Nicholson\",\"sportradar_id\":\"5455b3f0-9ee0-41cb-9409-13303f5e6c8b\",\"pandascore_id\":null,\"yahoo_id\":30236,\"last_name\":\"Nicholson\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"montaenicholson\",\"birth_date\":\"1995-12-04\",\"espn_id\":3134683},\"6988\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Raymond\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1600618806284,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"calais\",\"depth_chart_position\":\"RB\",\"player_id\":\"6988\",\"birth_city\":null,\"fantasy_data_id\":21855,\"years_exp\":0,\"hashtag\":\"#RaymondCalais-NFL-LAR-30\",\"search_first_name\":\"raymond\",\"rotowire_id\":14625,\"rotoworld_id\":null,\"active\":true,\"search_rank\":441,\"age\":22,\"full_name\":\"Raymond Calais\",\"sportradar_id\":\"748d5fdf-8a06-4cc1-a8b1-257f4377236a\",\"pandascore_id\":null,\"yahoo_id\":32915,\"last_name\":\"Calais\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Cecilia (LA)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"raymondcalais\",\"birth_date\":\"1998-04-02\",\"espn_id\":null},\"6215\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035263\",\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1572561339423,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"LG\",\"player_id\":\"6215\",\"birth_city\":null,\"fantasy_data_id\":21112,\"years_exp\":1,\"hashtag\":\"#WesMartin-NFL-WAS-67\",\"search_first_name\":\"wes\",\"rotowire_id\":13983,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Wes Martin\",\"sportradar_id\":\"0a3aad9f-54db-4f86-92d3-c2faab45c046\",\"pandascore_id\":null,\"yahoo_id\":31963,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Milton-Union (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"wesmartin\",\"birth_date\":\"1996-05-09\",\"espn_id\":3128263},\"5629\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034603\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604625609118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"toliver\",\"depth_chart_position\":null,\"player_id\":\"5629\",\"birth_city\":null,\"fantasy_data_id\":20111,\"years_exp\":2,\"hashtag\":\"#KevinToliver-NFL-DEN-26\",\"search_first_name\":\"kevin\",\"rotowire_id\":12597,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1420,\"age\":25,\"full_name\":\"Kevin Toliver\",\"sportradar_id\":\"3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814\",\"pandascore_id\":null,\"yahoo_id\":31667,\"last_name\":\"Toliver\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Louisiana State\",\"high_school\":\"Trinity Christian Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevintoliver\",\"birth_date\":\"1995-11-24\",\"espn_id\":3843234},\"4886\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Collin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bevins\",\"depth_chart_position\":null,\"player_id\":\"4886\",\"birth_city\":null,\"fantasy_data_id\":19399,\"years_exp\":1,\"hashtag\":\"#CollinBevins-NFL-CLE-11\",\"search_first_name\":\"collin\",\"rotowire_id\":12615,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Collin Bevins\",\"sportradar_id\":\"20c539f1-acf9-4908-9981-a3e680676ca3\",\"pandascore_id\":null,\"yahoo_id\":30483,\"last_name\":\"Bevins\",\"metadata\":null,\"college\":\"NW Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"276\",\"height\":\"6'5\\\"\",\"search_full_name\":\"collinbevins\",\"birth_date\":null,\"espn_id\":2971505},\"6543\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035391\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598590247525,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilkins\",\"depth_chart_position\":null,\"player_id\":\"6543\",\"birth_city\":null,\"fantasy_data_id\":21441,\"years_exp\":1,\"hashtag\":\"#KevinWilkins-NFL-FA-0\",\"search_first_name\":\"kevin\",\"rotowire_id\":13617,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1734,\"age\":25,\"full_name\":\"Kevin Wilkins\",\"sportradar_id\":\"cb6653b6-39ae-4581-81fe-b275b20aec6e\",\"pandascore_id\":null,\"yahoo_id\":32410,\"last_name\":\"Wilkins\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevinwilkins\",\"birth_date\":\"1995-04-10\",\"espn_id\":3127379},\"663\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022943\",\"first_name\":\"Benjamin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1584377415560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"663\",\"birth_city\":null,\"fantasy_data_id\":11756,\"years_exp\":16,\"hashtag\":\"#BenjaminWatson-NFL-FA-84\",\"search_first_name\":\"benjamin\",\"rotowire_id\":3872,\"rotoworld_id\":48,\"active\":true,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Benjamin Watson\",\"sportradar_id\":\"d81844de-54c3-42ee-9850-072dc4131b6f\",\"pandascore_id\":null,\"yahoo_id\":6791,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Northwestern (SC)\",\"depth_chart_order\":null,\"stats_id\":246082,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"benjaminwatson\",\"birth_date\":\"1980-12-18\",\"espn_id\":5557},\"970\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"970\",\"birth_city\":null,\"fantasy_data_id\":13402,\"years_exp\":3,\"hashtag\":\"#DavidCarter-NFL-FA-77\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"David Carter\",\"sportradar_id\":\"2bfeb3e8-4541-4eb8-95db-f4f067047556\",\"pandascore_id\":null,\"yahoo_id\":24971,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidcarter\",\"birth_date\":\"1987-12-10\",\"espn_id\":14093},\"6259\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035405\",\"first_name\":\"Darnell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holland\",\"depth_chart_position\":null,\"player_id\":\"6259\",\"birth_city\":null,\"fantasy_data_id\":21194,\"years_exp\":1,\"hashtag\":\"#DarnellHolland-NFL-NO-0\",\"search_first_name\":\"darnell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Darnell Holland\",\"sportradar_id\":\"f6cc5ed6-81bc-4636-a8d4-88c47529a061\",\"pandascore_id\":null,\"yahoo_id\":32493,\"last_name\":\"Holland\",\"metadata\":null,\"college\":\"Kennesaw State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":874217,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"darnellholland\",\"birth_date\":null,\"espn_id\":3911993},\"4403\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033325\",\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1526498101360,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bradley\",\"depth_chart_position\":null,\"player_id\":\"4403\",\"birth_city\":null,\"fantasy_data_id\":19262,\"years_exp\":2,\"hashtag\":\"#DylanBradley-NFL-FA-63\",\"search_first_name\":\"dylan\",\"rotowire_id\":12604,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dylan Bradley\",\"sportradar_id\":\"2fa2b6af-de4a-48f7-9548-47333df7fbe0\",\"pandascore_id\":null,\"yahoo_id\":30429,\"last_name\":\"Bradley\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dylanbradley\",\"birth_date\":\"1995-02-04\",\"espn_id\":3059973},\"18\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gosder\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cherilus\",\"depth_chart_position\":null,\"player_id\":\"18\",\"birth_city\":null,\"fantasy_data_id\":558,\"years_exp\":12,\"hashtag\":\"#GosderCherilus-NFL-FA-78\",\"search_first_name\":\"gosder\",\"rotowire_id\":5711,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Gosder Cherilus\",\"sportradar_id\":\"d552daac-a3c9-42e0-84f9-cbbe42b8be01\",\"pandascore_id\":null,\"yahoo_id\":8794,\"last_name\":\"Cherilus\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Somerville (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'7\\\"\",\"search_full_name\":\"gosdercherilus\",\"birth_date\":\"1984-06-28\",\"espn_id\":11251},\"6519\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035181\",\"first_name\":\"Darrius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606076119259,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shepherd\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6519\",\"birth_city\":null,\"fantasy_data_id\":21513,\"years_exp\":1,\"hashtag\":\"#DarriusShepherd-NFL-GB-82\",\"search_first_name\":\"darrius\",\"rotowire_id\":13924,\"rotoworld_id\":null,\"active\":true,\"search_rank\":334,\"age\":25,\"full_name\":\"Darrius Shepherd\",\"sportradar_id\":\"4bfd6f35-f0ac-4c43-a023-f8236df31deb\",\"pandascore_id\":null,\"yahoo_id\":32378,\"last_name\":\"Shepherd\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Blue Springs (MO)\",\"depth_chart_order\":2,\"stats_id\":831003,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darriusshepherd\",\"birth_date\":\"1995-11-01\",\"espn_id\":3120588},\"6126\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034970\",\"first_name\":\"Irv\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606519827465,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"TE\",\"player_id\":\"6126\",\"birth_city\":null,\"fantasy_data_id\":20949,\"years_exp\":1,\"hashtag\":\"#IrvSmith-NFL-MIN-84\",\"search_first_name\":\"irv\",\"rotowire_id\":13583,\"rotoworld_id\":14052,\"active\":true,\"search_rank\":314,\"age\":22,\"full_name\":\"Irv Smith\",\"sportradar_id\":\"ed0e6a30-83d5-4f4b-bf49-f7ff80e21304\",\"pandascore_id\":null,\"yahoo_id\":31882,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Brother Martin (LA)\",\"depth_chart_order\":3,\"stats_id\":944428,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":\"Doubtful\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"irvsmith\",\"birth_date\":\"1998-08-09\",\"espn_id\":4040980},\"4213\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033577\",\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604085639507,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gerry\",\"depth_chart_position\":null,\"player_id\":\"4213\",\"birth_city\":null,\"fantasy_data_id\":19059,\"years_exp\":3,\"hashtag\":\"#NathanGerry-NFL-PHI-47\",\"search_first_name\":\"nathan\",\"rotowire_id\":11990,\"rotoworld_id\":12391,\"active\":true,\"search_rank\":1199,\"age\":25,\"full_name\":\"Nathan Gerry\",\"sportradar_id\":\"8a6672c9-79b9-4c49-9d7c-0061a1141a7c\",\"pandascore_id\":null,\"yahoo_id\":30297,\"last_name\":\"Gerry\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Washington (SD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nathangerry\",\"birth_date\":\"1995-02-23\",\"espn_id\":3040475},\"6261\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035019\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588717502922,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whitejr\",\"depth_chart_position\":null,\"player_id\":\"6261\",\"birth_city\":null,\"fantasy_data_id\":21196,\"years_exp\":1,\"hashtag\":\"#ReggieWhiteJr-NFL-FA-0\",\"search_first_name\":\"reggie\",\"rotowire_id\":13926,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Reggie White Jr.\",\"sportradar_id\":\"adcd3d89-a2f8-4bd1-adfe-8e47bf42ea4d\",\"pandascore_id\":null,\"yahoo_id\":32244,\"last_name\":\"White Jr.\",\"metadata\":null,\"college\":\"Monmouth (NJ)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830113,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"reggiewhitejr\",\"birth_date\":\"1996-03-10\",\"espn_id\":3121225},\"4290\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beane\",\"depth_chart_position\":null,\"player_id\":\"4290\",\"birth_city\":null,\"fantasy_data_id\":19136,\"years_exp\":0,\"hashtag\":\"#BrandonBeane-NFL-FA-0\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":12559,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brandon Beane\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Beane\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"brandonbeane\",\"birth_date\":null,\"espn_id\":null},\"5847\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035683\",\"first_name\":\"Dexter\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603036507976,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawrence\",\"depth_chart_position\":\"DE\",\"player_id\":\"5847\",\"birth_city\":null,\"fantasy_data_id\":20852,\"years_exp\":1,\"hashtag\":\"#DexterLawrence-NFL-NYG-97\",\"search_first_name\":\"dexter\",\"rotowire_id\":13568,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1565,\"age\":23,\"full_name\":\"Dexter Lawrence\",\"sportradar_id\":\"31bd7a4c-8eaf-4ea3-871c-b44420c804f8\",\"pandascore_id\":null,\"yahoo_id\":31849,\"last_name\":\"Lawrence\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Wake Forest (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"342\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dexterlawrence\",\"birth_date\":\"1997-11-12\",\"espn_id\":4035483},\"6970\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1606262455386,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sullivan\",\"depth_chart_position\":\"TE\",\"player_id\":\"6970\",\"birth_city\":null,\"fantasy_data_id\":21865,\"years_exp\":0,\"hashtag\":\"#StephenSullivan-NFL-SEA-48\",\"search_first_name\":\"stephen\",\"rotowire_id\":14570,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1795,\"age\":24,\"full_name\":\"Stephen Sullivan\",\"sportradar_id\":\"a41b8454-0326-4c56-87a2-f2aac3814961\",\"pandascore_id\":null,\"yahoo_id\":32921,\"last_name\":\"Sullivan\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Donaldsonville (LA)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stephensullivan\",\"birth_date\":\"1996-11-28\",\"espn_id\":4035426},\"6730\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035735\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603917328922,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taamu\",\"depth_chart_position\":\"QB\",\"player_id\":\"6730\",\"birth_city\":null,\"fantasy_data_id\":21612,\"years_exp\":1,\"hashtag\":\"#JordanTaamu-NFL-KC-8\",\"search_first_name\":\"jordan\",\"rotowire_id\":13629,\"rotoworld_id\":14821,\"active\":true,\"search_rank\":1767,\"age\":22,\"full_name\":\"Jordan Ta'amu\",\"sportradar_id\":\"c14f8faa-62db-4fb2-a7b1-d9b5998ce604\",\"pandascore_id\":null,\"yahoo_id\":32642,\"last_name\":\"Ta'amu\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Pearl City (HI)\",\"depth_chart_order\":7,\"stats_id\":974470,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordantaamu\",\"birth_date\":\"1997-12-10\",\"espn_id\":4242418},\"4749\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"posey\",\"depth_chart_position\":null,\"player_id\":\"4749\",\"birth_city\":null,\"fantasy_data_id\":19667,\"years_exp\":2,\"hashtag\":\"#CameronPosey-NFL-FA-9\",\"search_first_name\":\"cameron\",\"rotowire_id\":12288,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cameron Posey\",\"sportradar_id\":\"507b7b96-eb51-445d-81c4-b59696f3caa0\",\"pandascore_id\":null,\"yahoo_id\":30900,\"last_name\":\"Posey\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692239,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cameronposey\",\"birth_date\":\"1993-10-27\",\"espn_id\":2977776},\"5929\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035474\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603745438527,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5929\",\"birth_city\":null,\"fantasy_data_id\":20830,\"years_exp\":1,\"hashtag\":\"#AnthonyJohnson-NFL-PIT-83\",\"search_first_name\":\"anthony\",\"rotowire_id\":13788,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Johnson\",\"sportradar_id\":\"e0dc9dce-fe33-4092-b6bd-6af3cbcb762e\",\"pandascore_id\":null,\"yahoo_id\":32482,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"South Pointe (SC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"anthonyjohnson\",\"birth_date\":\"1995-01-29\",\"espn_id\":4049301},\"6398\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034933\",\"first_name\":\"Ahmad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597612813487,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gooden\",\"depth_chart_position\":null,\"player_id\":\"6398\",\"birth_city\":null,\"fantasy_data_id\":21361,\"years_exp\":1,\"hashtag\":\"#AhmadGooden-NFL-BUF-52\",\"search_first_name\":\"ahmad\",\"rotowire_id\":14063,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1723,\"age\":25,\"full_name\":\"Ahmad Gooden\",\"sportradar_id\":\"a1d54aed-e9e7-4a77-95c5-5d62be8fe75c\",\"pandascore_id\":null,\"yahoo_id\":32192,\"last_name\":\"Gooden\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Talladega (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ahmadgooden\",\"birth_date\":\"1995-10-27\",\"espn_id\":3127075},\"4018\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033897\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605987908032,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mixon\",\"depth_chart_position\":\"RB\",\"player_id\":\"4018\",\"birth_city\":null,\"fantasy_data_id\":18858,\"years_exp\":3,\"hashtag\":\"#JoeMixon-NFL-CIN-28\",\"search_first_name\":\"joe\",\"rotowire_id\":11707,\"rotoworld_id\":12147,\"active\":true,\"search_rank\":10,\"age\":24,\"full_name\":\"Joe Mixon\",\"sportradar_id\":\"7797f36e-87e8-4282-b6d2-bdb1774fc3b3\",\"pandascore_id\":null,\"yahoo_id\":30161,\"last_name\":\"Mixon\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Freedom (CA)\",\"depth_chart_order\":4,\"stats_id\":820727,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joemixon\",\"birth_date\":\"1996-07-24\",\"espn_id\":3116385},\"2838\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harman\",\"depth_chart_position\":null,\"player_id\":\"2838\",\"birth_city\":null,\"fantasy_data_id\":17306,\"years_exp\":0,\"hashtag\":\"#TrevorHarman-NFL-FA-84\",\"search_first_name\":\"trevor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trevor Harman\",\"sportradar_id\":\"f88a2a48-b6b8-45d3-b29a-7a6c0f3f676b\",\"pandascore_id\":null,\"yahoo_id\":28805,\"last_name\":\"Harman\",\"metadata\":null,\"college\":\"Shippensburg\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870341,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trevorharman\",\"birth_date\":\"1991-10-22\",\"espn_id\":3892580},\"5210\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034220\",\"first_name\":\"Korey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535753142467,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robertson\",\"depth_chart_position\":null,\"player_id\":\"5210\",\"birth_city\":null,\"fantasy_data_id\":20160,\"years_exp\":2,\"hashtag\":\"#KoreyRobertson-NFL-FA-18\",\"search_first_name\":\"korey\",\"rotowire_id\":12501,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Korey Robertson\",\"sportradar_id\":\"43ed9941-a21d-46a6-aed8-e8b3f8e643a7\",\"pandascore_id\":null,\"yahoo_id\":31240,\"last_name\":\"Robertson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835077,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"koreyrobertson\",\"birth_date\":\"1995-06-22\",\"espn_id\":3123968},\"4069\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033540\",\"first_name\":\"Takkarist\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606523127840,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mckinley\",\"depth_chart_position\":null,\"player_id\":\"4069\",\"birth_city\":null,\"fantasy_data_id\":18915,\"years_exp\":3,\"hashtag\":\"#TakkaristMcKinley-NFL-LV-98\",\"search_first_name\":\"takkarist\",\"rotowire_id\":11928,\"rotoworld_id\":12232,\"active\":true,\"search_rank\":1122,\"age\":25,\"full_name\":\"Takkarist McKinley\",\"sportradar_id\":\"dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf\",\"pandascore_id\":null,\"yahoo_id\":30139,\"last_name\":\"McKinley\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Kennedy (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"takkaristmckinley\",\"birth_date\":\"1995-11-02\",\"espn_id\":3152371},\"525\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027557\",\"first_name\":\"Morgan\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1606530629771,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":null,\"player_id\":\"525\",\"birth_city\":null,\"fantasy_data_id\":11008,\"years_exp\":10,\"hashtag\":\"#MorganCox-NFL-BAL-46\",\"search_first_name\":\"morgan\",\"rotowire_id\":7075,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Morgan Cox\",\"sportradar_id\":\"513df09d-7d3a-44a8-873c-34f2fe46326b\",\"pandascore_id\":null,\"yahoo_id\":24362,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Evangelical Christian (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'4\\\"\",\"search_full_name\":\"morgancox\",\"birth_date\":\"1986-04-26\",\"espn_id\":13848},\"2662\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"botticelli\",\"depth_chart_position\":null,\"player_id\":\"2662\",\"birth_city\":null,\"fantasy_data_id\":17130,\"years_exp\":0,\"hashtag\":\"#CameronBotticelli-NFL-FA-67\",\"search_first_name\":\"cameron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cameron Botticelli\",\"sportradar_id\":\"79f02eef-1275-4793-9168-7b71bcab7646\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Botticelli\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cameronbotticelli\",\"birth_date\":\"1991-10-19\",\"espn_id\":2515429},\"7092\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604972430089,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"finke\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7092\",\"birth_city\":null,\"fantasy_data_id\":21966,\"years_exp\":0,\"hashtag\":\"#ChrisFinke-NFL-SF-7\",\"search_first_name\":\"chris\",\"rotowire_id\":14637,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Finke\",\"sportradar_id\":\"4bee96b0-c9d6-4440-96a4-fffe5f14b3b7\",\"pandascore_id\":null,\"yahoo_id\":33196,\"last_name\":\"Finke\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Archbishop Alter (OH)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'9\\\"\",\"search_full_name\":\"chrisfinke\",\"birth_date\":\"1996-05-02\",\"espn_id\":null},\"5736\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034726\",\"first_name\":\"Dallin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601686840320,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leavitt\",\"depth_chart_position\":\"FS\",\"player_id\":\"5736\",\"birth_city\":null,\"fantasy_data_id\":20642,\"years_exp\":2,\"hashtag\":\"#DallinLeavitt-NFL-LV-32\",\"search_first_name\":\"dallin\",\"rotowire_id\":13318,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1502,\"age\":26,\"full_name\":\"Dallin Leavitt\",\"sportradar_id\":\"c281fdc7-76a9-4734-a13d-19ad354c67db\",\"pandascore_id\":null,\"yahoo_id\":31723,\"last_name\":\"Leavitt\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Central Catholic (OR)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dallinleavitt\",\"birth_date\":\"1994-08-08\",\"espn_id\":3053801},\"7402\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goodjones\",\"depth_chart_position\":null,\"player_id\":\"7402\",\"birth_city\":null,\"fantasy_data_id\":22387,\"years_exp\":0,\"hashtag\":\"#JulianGoodJones-NFL-FA-0\",\"search_first_name\":\"julian\",\"rotowire_id\":14874,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Julian Good-Jones\",\"sportradar_id\":\"1203d3a1-126f-445a-9184-08fa5814e797\",\"pandascore_id\":null,\"yahoo_id\":32963,\"last_name\":\"Good-Jones\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'5\\\"\",\"search_full_name\":\"juliangoodjones\",\"birth_date\":\"1997-03-02\",\"espn_id\":3917949},\"3778\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032962\",\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":null,\"player_id\":\"3778\",\"birth_city\":null,\"fantasy_data_id\":18591,\"years_exp\":4,\"hashtag\":\"#DarrellGreene-NFL-FA-78\",\"search_first_name\":\"darrell\",\"rotowire_id\":11046,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Darrell Greene\",\"sportradar_id\":\"7e93123a-caf3-4915-bb8a-e1199257f8de\",\"pandascore_id\":null,\"yahoo_id\":29676,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'3\\\"\",\"search_full_name\":\"darrellgreene\",\"birth_date\":\"1992-10-29\",\"espn_id\":2582006},\"5955\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034983\",\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606515027240,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"renfrow\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5955\",\"birth_city\":null,\"fantasy_data_id\":20924,\"years_exp\":1,\"hashtag\":\"#HunterRenfrow-NFL-LV-13\",\"search_first_name\":\"hunter\",\"rotowire_id\":13749,\"rotoworld_id\":14062,\"active\":true,\"search_rank\":178,\"age\":24,\"full_name\":\"Hunter Renfrow\",\"sportradar_id\":\"34c523c7-bc58-49f0-a9cc-f9edd91fe00f\",\"pandascore_id\":null,\"yahoo_id\":31981,\"last_name\":\"Renfrow\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Socastee (SC)\",\"depth_chart_order\":1,\"stats_id\":841649,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"hunterrenfrow\",\"birth_date\":\"1995-12-21\",\"espn_id\":3135321},\"1025\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029416\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boykin\",\"depth_chart_position\":null,\"player_id\":\"1025\",\"birth_city\":null,\"fantasy_data_id\":13718,\"years_exp\":8,\"hashtag\":\"#BrandonBoykin-NFL-FA-35\",\"search_first_name\":\"brandon\",\"rotowire_id\":8166,\"rotoworld_id\":7492,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brandon Boykin\",\"sportradar_id\":\"56e7b803-c110-4ff8-b097-7e3a7e7c0a9c\",\"pandascore_id\":null,\"yahoo_id\":25833,\"last_name\":\"Boykin\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Fayette County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brandonboykin\",\"birth_date\":\"1990-07-13\",\"espn_id\":15057},\"739\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"739\",\"birth_city\":null,\"fantasy_data_id\":12335,\"years_exp\":6,\"hashtag\":\"#TrentEdwards-NFL-FA-5\",\"search_first_name\":\"trent\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Trent Edwards\",\"sportradar_id\":\"b6fd76a2-0cc1-4323-8379-d8d28d524098\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'4\\\"\",\"search_full_name\":\"trentedwards\",\"birth_date\":\"1983-10-30\",\"espn_id\":null},\"27\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerod\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mayo\",\"depth_chart_position\":null,\"player_id\":\"27\",\"birth_city\":null,\"fantasy_data_id\":761,\"years_exp\":12,\"hashtag\":\"#JerodMayo-NFL-FA-51\",\"search_first_name\":\"jerod\",\"rotowire_id\":5604,\"rotoworld_id\":4804,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jerod Mayo\",\"sportradar_id\":\"28a2a255-9227-4a5f-a4ec-0ee4b2bf629b\",\"pandascore_id\":null,\"yahoo_id\":8787,\"last_name\":\"Mayo\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Kecoughtan HS (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jerodmayo\",\"birth_date\":\"1986-02-23\",\"espn_id\":11244},\"3782\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Myke\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tavarres\",\"depth_chart_position\":\"SLB\",\"player_id\":\"3782\",\"birth_city\":null,\"fantasy_data_id\":18595,\"years_exp\":0,\"hashtag\":\"#MykeTavarres-NFL-FA-45\",\"search_first_name\":\"myke\",\"rotowire_id\":11539,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Myke Tavarres\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29685,\"last_name\":\"Tavarres\",\"metadata\":null,\"college\":\"Incarnate Word\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"myketavarres\",\"birth_date\":\"1992-11-18\",\"espn_id\":3046426},\"2823\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rannell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515005701310,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"2823\",\"birth_city\":null,\"fantasy_data_id\":17291,\"years_exp\":5,\"hashtag\":\"#RannellHall-NFL-FA-16\",\"search_first_name\":\"rannell\",\"rotowire_id\":10231,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rannell Hall\",\"sportradar_id\":\"8a227f89-c1f2-4b34-945d-da77ce5fbfec\",\"pandascore_id\":null,\"yahoo_id\":28787,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Carol City (FL)\",\"depth_chart_order\":null,\"stats_id\":609961,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rannellhall\",\"birth_date\":\"1993-01-30\",\"espn_id\":2581464},\"109\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lansanah\",\"depth_chart_position\":null,\"player_id\":\"109\",\"birth_city\":null,\"fantasy_data_id\":2957,\"years_exp\":12,\"hashtag\":\"#DannyLansanah-NFL-FA-51\",\"search_first_name\":\"danny\",\"rotowire_id\":9160,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Danny Lansanah\",\"sportradar_id\":\"e97d7bc9-0906-404c-8090-98ea7b75bbee\",\"pandascore_id\":null,\"yahoo_id\":9136,\"last_name\":\"Lansanah\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Harrisburg (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dannylansanah\",\"birth_date\":\"1985-08-28\",\"espn_id\":11762},\"3697\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rose\",\"depth_chart_position\":null,\"player_id\":\"3697\",\"birth_city\":null,\"fantasy_data_id\":18500,\"years_exp\":0,\"hashtag\":\"#KyleRose-NFL-FA-63\",\"search_first_name\":\"kyle\",\"rotowire_id\":11367,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyle Rose\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29670,\"last_name\":\"Rose\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylerose\",\"birth_date\":\"1992-10-02\",\"espn_id\":null},\"1332\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ifeanyi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1520886001587,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"momah\",\"depth_chart_position\":null,\"player_id\":\"1332\",\"birth_city\":null,\"fantasy_data_id\":14847,\"years_exp\":6,\"hashtag\":\"#IfeanyiMomah-NFL-FA-80\",\"search_first_name\":\"ifeanyi\",\"rotowire_id\":8836,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ifeanyi Momah\",\"sportradar_id\":\"b48a2c0a-f3cf-412d-9078-0313680d49e0\",\"pandascore_id\":null,\"yahoo_id\":26614,\"last_name\":\"Momah\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":399316,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'7\\\"\",\"search_full_name\":\"ifeanyimomah\",\"birth_date\":\"1989-10-23\",\"espn_id\":15775},\"6885\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ke'Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606175715348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vaughn\",\"depth_chart_position\":\"RB\",\"player_id\":\"6885\",\"birth_city\":null,\"fantasy_data_id\":21788,\"years_exp\":0,\"hashtag\":\"#KeShawnVaughn-NFL-TB-30\",\"search_first_name\":\"keshawn\",\"rotowire_id\":14557,\"rotoworld_id\":null,\"active\":true,\"search_rank\":231,\"age\":23,\"full_name\":\"Ke'Shawn Vaughn\",\"sportradar_id\":\"4b0a90db-f007-4ac1-8542-b531342b9da5\",\"pandascore_id\":null,\"yahoo_id\":32746,\"last_name\":\"Vaughn\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Pearl-Cohn (TN)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keshawnvaughn\",\"birth_date\":\"1997-05-04\",\"espn_id\":3917612},\"7158\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693359878,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":null,\"player_id\":\"7158\",\"birth_city\":null,\"fantasy_data_id\":22159,\"years_exp\":0,\"hashtag\":\"#RileyNeal-NFL-FA-0\",\"search_first_name\":\"riley\",\"rotowire_id\":14859,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Riley Neal\",\"sportradar_id\":\"8e4cd763-30ec-4a00-9dc2-5567a80a3191\",\"pandascore_id\":null,\"yahoo_id\":32928,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rileyneal\",\"birth_date\":\"1996-10-02\",\"espn_id\":null},\"4612\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033771\",\"first_name\":\"Rickey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hatley\",\"depth_chart_position\":null,\"player_id\":\"4612\",\"birth_city\":null,\"fantasy_data_id\":19502,\"years_exp\":3,\"hashtag\":\"#RickeyHatley-NFL-FA-94\",\"search_first_name\":\"rickey\",\"rotowire_id\":12485,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rickey Hatley\",\"sportradar_id\":\"19667595-1b93-48ff-878c-5f245636173c\",\"pandascore_id\":null,\"yahoo_id\":30810,\"last_name\":\"Hatley\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rickeyhatley\",\"birth_date\":\"1994-03-29\",\"espn_id\":2971436},\"5603\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034453\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moten\",\"depth_chart_position\":null,\"player_id\":\"5603\",\"birth_city\":null,\"fantasy_data_id\":20323,\"years_exp\":2,\"hashtag\":\"#AnthonyMoten-NFL-FA-43\",\"search_first_name\":\"anthony\",\"rotowire_id\":13268,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Moten\",\"sportradar_id\":\"2be11ce3-61f2-42b4-ba82-f22c62e9363d\",\"pandascore_id\":null,\"yahoo_id\":31541,\"last_name\":\"Moten\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonymoten\",\"birth_date\":\"1995-07-12\",\"espn_id\":3123079},\"4970\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034342\",\"first_name\":\"Quenton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599850515988,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":\"LG\",\"player_id\":\"4970\",\"birth_city\":null,\"fantasy_data_id\":19831,\"years_exp\":2,\"hashtag\":\"#QuentonNelson-NFL-IND-56\",\"search_first_name\":\"quenton\",\"rotowire_id\":12503,\"rotoworld_id\":13099,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Quenton Nelson\",\"sportradar_id\":\"d3fee51d-67f5-413b-a4b2-bde86b97babe\",\"pandascore_id\":null,\"yahoo_id\":30976,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Red Bank Catholic (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'5\\\"\",\"search_full_name\":\"quentonnelson\",\"birth_date\":\"1996-03-19\",\"espn_id\":3129308},\"653\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"purdum\",\"depth_chart_position\":null,\"player_id\":\"653\",\"birth_city\":null,\"fantasy_data_id\":11703,\"years_exp\":11,\"hashtag\":\"#TannerPurdum-NFL-FA-46\",\"search_first_name\":\"tanner\",\"rotowire_id\":7118,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Tanner Purdum\",\"sportradar_id\":\"f92e76f6-83c7-482a-abe3-608a42459ed6\",\"pandascore_id\":null,\"yahoo_id\":9799,\"last_name\":\"Purdum\",\"metadata\":null,\"college\":\"Baker\",\"high_school\":\"Ava (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tannerpurdum\",\"birth_date\":\"1984-08-15\",\"espn_id\":12605},\"5191\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034325\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600122605804,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stallworth\",\"depth_chart_position\":\"NT\",\"player_id\":\"5191\",\"birth_city\":null,\"fantasy_data_id\":20169,\"years_exp\":2,\"hashtag\":\"#TaylorStallworth-NFL-IND-76\",\"search_first_name\":\"taylor\",\"rotowire_id\":13170,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1428,\"age\":25,\"full_name\":\"Taylor Stallworth\",\"sportradar_id\":\"4ab9df5a-3e40-4402-9f68-bbc659a94784\",\"pandascore_id\":null,\"yahoo_id\":31526,\"last_name\":\"Stallworth\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Murphy (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"taylorstallworth\",\"birth_date\":\"1995-08-18\",\"espn_id\":3126489},\"4152\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033951\",\"first_name\":\"Marlon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1600263903586,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":\"RB\",\"player_id\":\"4152\",\"birth_city\":null,\"fantasy_data_id\":18998,\"years_exp\":3,\"hashtag\":\"#MarlonMack-NFL-IND-25\",\"search_first_name\":\"marlon\",\"rotowire_id\":11765,\"rotoworld_id\":12308,\"active\":true,\"search_rank\":69,\"age\":24,\"full_name\":\"Marlon Mack\",\"sportradar_id\":\"413f7971-4d5b-496d-a11b-f623e9bc3b7c\",\"pandascore_id\":null,\"yahoo_id\":30256,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Booker (FL)\",\"depth_chart_order\":6,\"stats_id\":840760,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marlonmack\",\"birth_date\":\"1996-03-07\",\"espn_id\":3139605},\"35\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bishop\",\"depth_chart_position\":null,\"player_id\":\"35\",\"birth_city\":null,\"fantasy_data_id\":1003,\"years_exp\":8,\"hashtag\":\"#DesmondBishop-NFL-FA-0\",\"search_first_name\":\"desmond\",\"rotowire_id\":5944,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Desmond Bishop\",\"sportradar_id\":\"f8155833-0f2f-4237-bdac-98e1a5c67651\",\"pandascore_id\":null,\"yahoo_id\":8446,\"last_name\":\"Bishop\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"desmondbishop\",\"birth_date\":\"1984-07-24\",\"espn_id\":10635},\"3757\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":\"SLB\",\"player_id\":\"3757\",\"birth_city\":null,\"fantasy_data_id\":18569,\"years_exp\":0,\"hashtag\":\"#TylerGray-NFL-FA-57\",\"search_first_name\":\"tyler\",\"rotowire_id\":11586,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyler Gray\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29827,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylergray\",\"birth_date\":\"1993-02-17\",\"espn_id\":2972899},\"1705\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Micanor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"regis\",\"depth_chart_position\":null,\"player_id\":\"1705\",\"birth_city\":null,\"fantasy_data_id\":15600,\"years_exp\":1,\"hashtag\":\"#MicanorRegis-NFL-FA-72\",\"search_first_name\":\"micanor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Micanor Regis\",\"sportradar_id\":\"009289e8-6f87-4d0f-8976-709dfa33aa11\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Regis\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"micanorregis\",\"birth_date\":\"1989-11-03\",\"espn_id\":15152},\"3463\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032611\",\"first_name\":\"Jhurell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1554472516175,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pressley\",\"depth_chart_position\":null,\"player_id\":\"3463\",\"birth_city\":null,\"fantasy_data_id\":18227,\"years_exp\":4,\"hashtag\":\"#JhurellPressley-NFL-FA-27\",\"search_first_name\":\"jhurell\",\"rotowire_id\":11197,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jhurell Pressley\",\"sportradar_id\":\"38a9afff-33b0-4c29-a66e-8ba4d22c0d29\",\"pandascore_id\":null,\"yahoo_id\":29542,\"last_name\":\"Pressley\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":623805,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jhurellpressley\",\"birth_date\":\"1992-05-20\",\"espn_id\":2974212},\"403\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"403\",\"birth_city\":null,\"fantasy_data_id\":8840,\"years_exp\":12,\"hashtag\":\"#MikeJenkins-NFL-FA-43\",\"search_first_name\":\"mike\",\"rotowire_id\":5614,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Mike Jenkins\",\"sportradar_id\":\"ddf524fd-1056-4d69-9c51-14cc57f598b8\",\"pandascore_id\":null,\"yahoo_id\":8802,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Southeast (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikejenkins\",\"birth_date\":\"1985-03-22\",\"espn_id\":11259},\"1738\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blanchard\",\"depth_chart_position\":null,\"player_id\":\"1738\",\"birth_city\":null,\"fantasy_data_id\":15695,\"years_exp\":2,\"hashtag\":\"#MattBlanchard-NFL-FA-2\",\"search_first_name\":\"matt\",\"rotowire_id\":8384,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Blanchard\",\"sportradar_id\":\"69cecc2c-bf54-4e93-8655-cb3ef87c04a6\",\"pandascore_id\":null,\"yahoo_id\":26463,\"last_name\":\"Blanchard\",\"metadata\":null,\"college\":\"Wisconsin - Whitewater\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":634358,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattblanchard\",\"birth_date\":\"1989-03-21\",\"espn_id\":15645},\"804\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clyde\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gates\",\"depth_chart_position\":null,\"player_id\":\"804\",\"birth_city\":null,\"fantasy_data_id\":12754,\"years_exp\":4,\"hashtag\":\"#ClydeGates-NFL-FA-10\",\"search_first_name\":\"clyde\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Clyde Gates\",\"sportradar_id\":\"26dd8e50-8f7a-43d6-8a98-addaaeb8194b\",\"pandascore_id\":null,\"yahoo_id\":24898,\"last_name\":\"Gates\",\"metadata\":null,\"college\":\"Abilene Christian\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557952,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"clydegates\",\"birth_date\":\"1986-06-13\",\"espn_id\":14209},\"6683\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035575\",\"first_name\":\"D'Andre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"payne\",\"depth_chart_position\":null,\"player_id\":\"6683\",\"birth_city\":null,\"fantasy_data_id\":21582,\"years_exp\":1,\"hashtag\":\"#DAndrePayne-NFL-FA-28\",\"search_first_name\":\"dandre\",\"rotowire_id\":14298,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"D'Andre Payne\",\"sportradar_id\":\"2b76130f-5a38-429e-a620-9c5b1cd557b7\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Payne\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dandrepayne\",\"birth_date\":\"1996-05-17\",\"espn_id\":3115329},\"691\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0023645\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1557450610790,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"691\",\"birth_city\":null,\"fantasy_data_id\":12083,\"years_exp\":15,\"hashtag\":\"#DerekAnderson-NFL-FA-3\",\"search_first_name\":\"derek\",\"rotowire_id\":4313,\"rotoworld_id\":3233,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Derek Anderson\",\"sportradar_id\":\"72fbe462-91c5-4c84-9640-e8ad7cad6447\",\"pandascore_id\":null,\"yahoo_id\":7389,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Scappoose (OR)\",\"depth_chart_order\":null,\"stats_id\":159904,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'6\\\"\",\"search_full_name\":\"derekanderson\",\"birth_date\":\"1983-06-15\",\"espn_id\":8627},\"6038\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035578\",\"first_name\":\"Damian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"prince\",\"depth_chart_position\":null,\"player_id\":\"6038\",\"birth_city\":null,\"fantasy_data_id\":20916,\"years_exp\":1,\"hashtag\":\"#DamianPrince-NFL-FA-64\",\"search_first_name\":\"damian\",\"rotowire_id\":14277,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Damian Prince\",\"sportradar_id\":\"93d8047f-24c5-4a8f-827b-b3ddacebc561\",\"pandascore_id\":null,\"yahoo_id\":32571,\"last_name\":\"Prince\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'4\\\"\",\"search_full_name\":\"damianprince\",\"birth_date\":\"1996-04-16\",\"espn_id\":3128311},\"3087\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1539965402796,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccoy\",\"depth_chart_position\":null,\"player_id\":\"3087\",\"birth_city\":null,\"fantasy_data_id\":17837,\"years_exp\":0,\"hashtag\":\"#MikeMcCoy-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":8360,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike McCoy\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McCoy\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikemccoy\",\"birth_date\":null,\"espn_id\":null},\"864\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"TJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heath\",\"depth_chart_position\":null,\"player_id\":\"864\",\"birth_city\":null,\"fantasy_data_id\":12986,\"years_exp\":2,\"hashtag\":\"#TJHeath-NFL-FA-35\",\"search_first_name\":\"tj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"TJ Heath\",\"sportradar_id\":\"1a33b11c-7023-46bc-b9b6-8ee10e58207b\",\"pandascore_id\":null,\"yahoo_id\":25118,\"last_name\":\"Heath\",\"metadata\":null,\"college\":\"Jacksonville State - AL\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tjheath\",\"birth_date\":\"1987-09-11\",\"espn_id\":14259},\"2935\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"2935\",\"birth_city\":null,\"fantasy_data_id\":17404,\"years_exp\":null,\"hashtag\":\"#RickyCollins-NFL-FA-0\",\"search_first_name\":\"ricky\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ricky Collins\",\"sportradar_id\":\"65b31ab4-b896-42d5-a5ef-e450c30c94d0\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Collins\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":847319,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rickycollins\",\"birth_date\":null,\"espn_id\":null},\"7128\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587851742576,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"penisini\",\"depth_chart_position\":\"LDT\",\"player_id\":\"7128\",\"birth_city\":null,\"fantasy_data_id\":21883,\"years_exp\":0,\"hashtag\":\"#JohnPenisini-NFL-DET-91\",\"search_first_name\":\"john\",\"rotowire_id\":14719,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1809,\"age\":23,\"full_name\":\"John Penisini\",\"sportradar_id\":\"00a28b92-3567-45bc-9fdb-61276dc57755\",\"pandascore_id\":null,\"yahoo_id\":32867,\"last_name\":\"Penisini\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"West Jordan (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnpenisini\",\"birth_date\":\"1997-05-31\",\"espn_id\":4243257},\"715\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wendell\",\"depth_chart_position\":null,\"player_id\":\"715\",\"birth_city\":null,\"fantasy_data_id\":12233,\"years_exp\":12,\"hashtag\":\"#RyanWendell-NFL-FA-62\",\"search_first_name\":\"ryan\",\"rotowire_id\":6977,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Ryan Wendell\",\"sportradar_id\":\"10616740-2c72-4207-b8ed-9da09ecba854\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wendell\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Diamond Bar (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryanwendell\",\"birth_date\":\"1986-03-04\",\"espn_id\":11786},\"7267\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willington\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"previlon\",\"depth_chart_position\":null,\"player_id\":\"7267\",\"birth_city\":null,\"fantasy_data_id\":22265,\"years_exp\":0,\"hashtag\":\"#WillingtonPrevilon-NFL-GB-99\",\"search_first_name\":\"willington\",\"rotowire_id\":15073,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1961,\"age\":23,\"full_name\":\"Willington Previlon\",\"sportradar_id\":\"5616e0f0-8306-43a8-8347-e5b8e26f8cbf\",\"pandascore_id\":null,\"yahoo_id\":33230,\"last_name\":\"Previlon\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Orange (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"willingtonprevilon\",\"birth_date\":\"1997-05-19\",\"espn_id\":3930048},\"3791\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jered\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"3791\",\"birth_city\":null,\"fantasy_data_id\":18605,\"years_exp\":0,\"hashtag\":\"#JeredBell-NFL-FA-40\",\"search_first_name\":\"jered\",\"rotowire_id\":11550,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jered Bell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29763,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeredbell\",\"birth_date\":\"1992-01-19\",\"espn_id\":2511318},\"5757\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034801\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601841040027,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"woods\",\"depth_chart_position\":\"LILB\",\"player_id\":\"5757\",\"birth_city\":null,\"fantasy_data_id\":20664,\"years_exp\":2,\"hashtag\":\"#JoshWoods-NFL-CHI-55\",\"search_first_name\":\"josh\",\"rotowire_id\":13361,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1506,\"age\":24,\"full_name\":\"Josh Woods\",\"sportradar_id\":\"abdf27dc-a54d-427c-a745-173f1c485292\",\"pandascore_id\":null,\"yahoo_id\":31753,\"last_name\":\"Woods\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"McDonogh (MD)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshwoods\",\"birth_date\":\"1996-07-01\",\"espn_id\":3128303},\"1896\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lavelle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"westbrooks\",\"depth_chart_position\":null,\"player_id\":\"1896\",\"birth_city\":null,\"fantasy_data_id\":16119,\"years_exp\":1,\"hashtag\":\"#LavelleWestbrooks-NFL-FA-22\",\"search_first_name\":\"lavelle\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Lavelle Westbrooks\",\"sportradar_id\":\"1a53edb6-5190-4fa7-bd7d-41bb483ebca6\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Westbrooks\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lavellewestbrooks\",\"birth_date\":null,\"espn_id\":16936},\"3865\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033022\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606276555983,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":\"SS\",\"player_id\":\"3865\",\"birth_city\":null,\"fantasy_data_id\":18687,\"years_exp\":4,\"hashtag\":\"#ChrisEdwards-NFL-SF-46\",\"search_first_name\":\"chris\",\"rotowire_id\":11516,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Chris Edwards\",\"sportradar_id\":\"55473843-5bc3-4673-9175-3d7203aef040\",\"pandascore_id\":null,\"yahoo_id\":29997,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Southfield (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisedwards\",\"birth_date\":\"1992-12-23\",\"espn_id\":3124889},\"1217\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"LaRon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"byrd\",\"depth_chart_position\":null,\"player_id\":\"1217\",\"birth_city\":null,\"fantasy_data_id\":14471,\"years_exp\":3,\"hashtag\":\"#LaRonByrd-NFL-FA-86\",\"search_first_name\":\"laron\",\"rotowire_id\":8518,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"LaRon Byrd\",\"sportradar_id\":\"d120cfe1-1bd3-499c-a662-66b564f8651b\",\"pandascore_id\":null,\"yahoo_id\":26135,\"last_name\":\"Byrd\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":464626,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"laronbyrd\",\"birth_date\":\"1989-08-18\",\"espn_id\":15536},\"478\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lardarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565483126428,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":null,\"player_id\":\"478\",\"birth_city\":null,\"fantasy_data_id\":9788,\"years_exp\":11,\"hashtag\":\"#LardariusWebb-NFL-FA-21\",\"search_first_name\":\"lardarius\",\"rotowire_id\":6218,\"rotoworld_id\":5331,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Lardarius Webb\",\"sportradar_id\":\"c5340727-9e60-4928-aa01-ba4ba5baca83\",\"pandascore_id\":null,\"yahoo_id\":9352,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"Nicholls State\",\"high_school\":\"Beauregard (AL)\",\"depth_chart_order\":null,\"stats_id\":268399,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"lardariuswebb\",\"birth_date\":\"1985-10-12\",\"espn_id\":12747},\"7517\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":null,\"player_id\":\"7517\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#DuplicatePlayer-NFL-FA-12\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":null,\"age\":22,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"St. Aloysius (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":\"1998-07-12\",\"espn_id\":null},\"634\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1559169639610,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"634\",\"birth_city\":null,\"fantasy_data_id\":11582,\"years_exp\":10,\"hashtag\":\"#AnthonyDavis-NFL-FA-76\",\"search_first_name\":\"anthony\",\"rotowire_id\":6441,\"rotoworld_id\":5608,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Anthony Davis\",\"sportradar_id\":\"02f3eb16-982c-48ff-b731-7456812ab200\",\"pandascore_id\":null,\"yahoo_id\":23986,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'5\\\"\",\"search_full_name\":\"anthonydavis\",\"birth_date\":\"1989-10-11\",\"espn_id\":13253},\"4335\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033275\",\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606438860811,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"QB\",\"player_id\":\"4335\",\"birth_city\":null,\"fantasy_data_id\":19191,\"years_exp\":3,\"hashtag\":\"#PhillipWalker-NFL-CAR-6\",\"search_first_name\":\"phillip\",\"rotowire_id\":12371,\"rotoworld_id\":12666,\"active\":true,\"search_rank\":393,\"age\":25,\"full_name\":\"Phillip Walker\",\"sportradar_id\":\"0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c\",\"pandascore_id\":null,\"yahoo_id\":30538,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Elizabeth (NJ)\",\"depth_chart_order\":2,\"stats_id\":749164,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"phillipwalker\",\"birth_date\":\"1995-02-26\",\"espn_id\":3051308},\"3216\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032386\",\"first_name\":\"Kamalei\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602708952008,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"correa\",\"depth_chart_position\":\"SLB\",\"player_id\":\"3216\",\"birth_city\":null,\"fantasy_data_id\":17977,\"years_exp\":4,\"hashtag\":\"#KamaleiCorrea-NFL-JAX-55\",\"search_first_name\":\"kamalei\",\"rotowire_id\":10982,\"rotoworld_id\":null,\"active\":true,\"search_rank\":971,\"age\":26,\"full_name\":\"Kamalei Correa\",\"sportradar_id\":\"08c01429-e747-48f1-b38c-8e712fa53c8e\",\"pandascore_id\":null,\"yahoo_id\":29276,\"last_name\":\"Correa\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Boise State\",\"high_school\":\"St. Louis (HI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kamaleicorrea\",\"birth_date\":\"1994-04-27\",\"espn_id\":3042874},\"3817\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032832\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539130805966,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tucker\",\"depth_chart_position\":null,\"player_id\":\"3817\",\"birth_city\":null,\"fantasy_data_id\":18633,\"years_exp\":4,\"hashtag\":\"#MarcusTucker-NFL-FA-16\",\"search_first_name\":\"marcus\",\"rotowire_id\":11547,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marcus Tucker\",\"sportradar_id\":\"cdd5db05-31b2-4d37-be93-cc60b6457fde\",\"pandascore_id\":null,\"yahoo_id\":29904,\"last_name\":\"Tucker\",\"metadata\":null,\"college\":\"Northern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":915351,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marcustucker\",\"birth_date\":\"1992-06-24\",\"espn_id\":4012737},\"371\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027022\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1571115644925,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barwin\",\"depth_chart_position\":null,\"player_id\":\"371\",\"birth_city\":null,\"fantasy_data_id\":8565,\"years_exp\":11,\"hashtag\":\"#ConnorBarwin-NFL-FA-53\",\"search_first_name\":\"connor\",\"rotowire_id\":6074,\"rotoworld_id\":5267,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Connor Barwin\",\"sportradar_id\":\"9f98ec9c-fac4-48f2-996c-9c7558f64221\",\"pandascore_id\":null,\"yahoo_id\":9310,\"last_name\":\"Barwin\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"University of Detroit Jesuit (MI)\",\"depth_chart_order\":null,\"stats_id\":285191,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"connorbarwin\",\"birth_date\":\"1986-10-15\",\"espn_id\":12449},\"3910\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pete\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1545859508786,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carroll\",\"depth_chart_position\":null,\"player_id\":\"3910\",\"birth_city\":null,\"fantasy_data_id\":18736,\"years_exp\":0,\"hashtag\":\"#PeteCarroll-NFL-FA-0\",\"search_first_name\":\"pete\",\"rotowire_id\":null,\"rotoworld_id\":8362,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Pete Carroll\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Carroll\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"petecarroll\",\"birth_date\":null,\"espn_id\":null},\"2700\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Levi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"norwood\",\"depth_chart_position\":null,\"player_id\":\"2700\",\"birth_city\":null,\"fantasy_data_id\":17168,\"years_exp\":1,\"hashtag\":\"#LeviNorwood-NFL-FA-18\",\"search_first_name\":\"levi\",\"rotowire_id\":10534,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Levi Norwood\",\"sportradar_id\":\"89290310-e176-4f2c-a2b7-772437dfb720\",\"pandascore_id\":null,\"yahoo_id\":28696,\"last_name\":\"Norwood\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557244,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"levinorwood\",\"birth_date\":\"1992-06-16\",\"espn_id\":2513009},\"5130\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034686\",\"first_name\":\"Auden\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606580433017,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"tate\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5130\",\"birth_city\":null,\"fantasy_data_id\":20057,\"years_exp\":2,\"hashtag\":\"#AudenTate-NFL-CIN-19\",\"search_first_name\":\"auden\",\"rotowire_id\":12569,\"rotoworld_id\":13352,\"active\":true,\"search_rank\":384,\"age\":23,\"full_name\":\"Auden Tate\",\"sportradar_id\":\"75a646ac-b2d2-42d9-91c7-3b00fdf71ef9\",\"pandascore_id\":null,\"yahoo_id\":31223,\"last_name\":\"Tate\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Wharton (FL)\",\"depth_chart_order\":2,\"stats_id\":883459,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'5\\\"\",\"search_full_name\":\"audentate\",\"birth_date\":\"1997-02-03\",\"espn_id\":3921564},\"4844\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":null,\"player_id\":\"4844\",\"birth_city\":null,\"fantasy_data_id\":19747,\"years_exp\":2,\"hashtag\":\"#ElijahMitchell-NFL-FA-34\",\"search_first_name\":\"elijah\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Elijah Mitchell\",\"sportradar_id\":\"66338ca6-9ebb-48a1-8b35-9bd40edfa5e5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"161\",\"height\":\"5'8\\\"\",\"search_full_name\":\"elijahmitchell\",\"birth_date\":\"1995-03-31\",\"espn_id\":3052304},\"4251\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033963\",\"first_name\":\"Tanzel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599408659936,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smart\",\"depth_chart_position\":null,\"player_id\":\"4251\",\"birth_city\":null,\"fantasy_data_id\":19097,\"years_exp\":3,\"hashtag\":\"#TanzelSmart-NFL-NYJ-79\",\"search_first_name\":\"tanzel\",\"rotowire_id\":11941,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1217,\"age\":26,\"full_name\":\"Tanzel Smart\",\"sportradar_id\":\"243b786c-744d-4a6b-9a8a-0b4e5fd2ad18\",\"pandascore_id\":null,\"yahoo_id\":30302,\"last_name\":\"Smart\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Scotlandville Magnet (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tanzelsmart\",\"birth_date\":\"1994-11-06\",\"espn_id\":3041112},\"1538\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029786\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1552502454303,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schraeder\",\"depth_chart_position\":null,\"player_id\":\"1538\",\"birth_city\":null,\"fantasy_data_id\":15170,\"years_exp\":7,\"hashtag\":\"#RyanSchraeder-NFL-FA-73\",\"search_first_name\":\"ryan\",\"rotowire_id\":9090,\"rotoworld_id\":8829,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ryan Schraeder\",\"sportradar_id\":\"e965df63-0d31-42d7-b93e-3f2778647a61\",\"pandascore_id\":null,\"yahoo_id\":27033,\"last_name\":\"Schraeder\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":\"Maize (KS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'7\\\"\",\"search_full_name\":\"ryanschraeder\",\"birth_date\":\"1988-05-04\",\"espn_id\":16222},\"6187\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035716\",\"first_name\":\"Aca'Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604451946986,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ware\",\"depth_chart_position\":\"RB\",\"player_id\":\"6187\",\"birth_city\":null,\"fantasy_data_id\":20973,\"years_exp\":1,\"hashtag\":\"#AcaCedricWare-NFL-TB-33\",\"search_first_name\":\"acacedric\",\"rotowire_id\":13599,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aca'Cedric Ware\",\"sportradar_id\":\"5c651ad4-7aea-46d9-83c3-3d0cc35c7723\",\"pandascore_id\":null,\"yahoo_id\":32629,\"last_name\":\"Ware\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Cedar Hill (TX)\",\"depth_chart_order\":7,\"stats_id\":880043,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"acacedricware\",\"birth_date\":\"1997-06-29\",\"espn_id\":3912551},\"493\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"skuta\",\"depth_chart_position\":null,\"player_id\":\"493\",\"birth_city\":null,\"fantasy_data_id\":9956,\"years_exp\":11,\"hashtag\":\"#DanSkuta-NFL-FA-57\",\"search_first_name\":\"dan\",\"rotowire_id\":7086,\"rotoworld_id\":5553,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Dan Skuta\",\"sportradar_id\":\"5844516e-b49c-4b52-b8e8-98486ad0e9c7\",\"pandascore_id\":null,\"yahoo_id\":9567,\"last_name\":\"Skuta\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":\"Carman-Ainsworth (MI)\",\"depth_chart_order\":null,\"stats_id\":458931,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"danskuta\",\"birth_date\":\"1986-04-21\",\"espn_id\":12932},\"6793\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tristan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597685136788,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wirfs\",\"depth_chart_position\":\"RT\",\"player_id\":\"6793\",\"birth_city\":null,\"fantasy_data_id\":22033,\"years_exp\":0,\"hashtag\":\"#TristanWirfs-NFL-TB-78\",\"search_first_name\":\"tristan\",\"rotowire_id\":14616,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Tristan Wirfs\",\"sportradar_id\":\"e39240b4-cac5-453f-b99f-6bbbdd1c9c82\",\"pandascore_id\":null,\"yahoo_id\":32683,\"last_name\":\"Wirfs\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Mount Vernon (IA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tristanwirfs\",\"birth_date\":\"1999-01-24\",\"espn_id\":4240589},\"1389\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reid\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fragel\",\"depth_chart_position\":null,\"player_id\":\"1389\",\"birth_city\":null,\"fantasy_data_id\":14919,\"years_exp\":7,\"hashtag\":\"#ReidFragel-NFL-FA-79\",\"search_first_name\":\"reid\",\"rotowire_id\":8828,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Reid Fragel\",\"sportradar_id\":\"18aad947-37c8-49f9-8c1a-c564d9ab521b\",\"pandascore_id\":null,\"yahoo_id\":26863,\"last_name\":\"Fragel\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Gross Point South (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'8\\\"\",\"search_full_name\":\"reidfragel\",\"birth_date\":\"1991-02-22\",\"espn_id\":16006},\"5189\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034173\",\"first_name\":\"Eddy\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1601489409740,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"pineiro\",\"depth_chart_position\":\"K\",\"player_id\":\"5189\",\"birth_city\":null,\"fantasy_data_id\":20149,\"years_exp\":2,\"hashtag\":\"#EddyPineiro-NFL-CHI-15\",\"search_first_name\":\"eddy\",\"rotowire_id\":12582,\"rotoworld_id\":13655,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Eddy Pineiro\",\"sportradar_id\":\"1c50997f-c56e-47f9-a750-33ab100ed28b\",\"pandascore_id\":null,\"yahoo_id\":31482,\"last_name\":\"Pineiro\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Sunset (FL)\",\"depth_chart_order\":2,\"stats_id\":910383,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'11\\\"\",\"search_full_name\":\"eddypineiro\",\"birth_date\":\"1995-09-13\",\"espn_id\":4034949},\"5001\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034383\",\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606491904324,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schultz\",\"depth_chart_position\":\"TE\",\"player_id\":\"5001\",\"birth_city\":null,\"fantasy_data_id\":19920,\"years_exp\":2,\"hashtag\":\"#DaltonSchultz-NFL-DAL-86\",\"search_first_name\":\"dalton\",\"rotowire_id\":12514,\"rotoworld_id\":13198,\"active\":true,\"search_rank\":438,\"age\":24,\"full_name\":\"Dalton Schultz\",\"sportradar_id\":\"8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a\",\"pandascore_id\":null,\"yahoo_id\":31107,\"last_name\":\"Schultz\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Bingham (UT)\",\"depth_chart_order\":2,\"stats_id\":830523,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daltonschultz\",\"birth_date\":\"1996-07-11\",\"espn_id\":3117256},\"4586\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dontrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"4586\",\"birth_city\":null,\"fantasy_data_id\":19473,\"years_exp\":2,\"hashtag\":\"#DontrellNelson-NFL-FA-46\",\"search_first_name\":\"dontrell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dontrell Nelson\",\"sportradar_id\":\"73dcf37e-d96f-493a-846b-4a1a8383ce8a\",\"pandascore_id\":null,\"yahoo_id\":30820,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dontrellnelson\",\"birth_date\":\"1995-06-25\",\"espn_id\":3050490},\"5526\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034203\",\"first_name\":\"Darious\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604327726865,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"CB\",\"player_id\":\"5526\",\"birth_city\":null,\"fantasy_data_id\":20570,\"years_exp\":2,\"hashtag\":\"#DariousWilliams-NFL-LAR-31\",\"search_first_name\":\"darious\",\"rotowire_id\":13132,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1493,\"age\":27,\"full_name\":\"Darious Williams\",\"sportradar_id\":\"a40a9b55-7850-4572-8197-f57a5354f921\",\"pandascore_id\":null,\"yahoo_id\":31422,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Creekside (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dariouswilliams\",\"birth_date\":\"1993-03-15\",\"espn_id\":4239833},\"5585\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033774\",\"first_name\":\"TJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1552526760819,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mutcherson\",\"depth_chart_position\":null,\"player_id\":\"5585\",\"birth_city\":null,\"fantasy_data_id\":19505,\"years_exp\":3,\"hashtag\":\"#TJMutcherson-NFL-FA-0\",\"search_first_name\":\"tj\",\"rotowire_id\":13165,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"TJ Mutcherson\",\"sportradar_id\":\"2e51f768-6b00-4fcb-a4d2-7c909121b2c0\",\"pandascore_id\":null,\"yahoo_id\":30807,\"last_name\":\"Mutcherson\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tjmutcherson\",\"birth_date\":\"1992-07-27\",\"espn_id\":2971519},\"3905\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mandel\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"3905\",\"birth_city\":null,\"fantasy_data_id\":18731,\"years_exp\":0,\"hashtag\":\"#MandelDixon-NFL-FA-49\",\"search_first_name\":\"mandel\",\"rotowire_id\":11606,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mandel Dixon\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30035,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":824442,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mandeldixon\",\"birth_date\":\"1993-04-21\",\"espn_id\":null},\"409\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"King\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dunlap\",\"depth_chart_position\":null,\"player_id\":\"409\",\"birth_city\":null,\"fantasy_data_id\":8900,\"years_exp\":12,\"hashtag\":\"#KingDunlap-NFL-FA-77\",\"search_first_name\":\"king\",\"rotowire_id\":6953,\"rotoworld_id\":4968,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"King Dunlap\",\"sportradar_id\":\"ed29a999-303a-454a-a696-2f43dcc23f0a\",\"pandascore_id\":null,\"yahoo_id\":9007,\"last_name\":\"Dunlap\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Brentwood (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'9\\\"\",\"search_full_name\":\"kingdunlap\",\"birth_date\":\"1985-09-14\",\"espn_id\":11464},\"1223\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028903\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1576187457870,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"celek\",\"depth_chart_position\":\"TE\",\"player_id\":\"1223\",\"birth_city\":null,\"fantasy_data_id\":14496,\"years_exp\":8,\"hashtag\":\"#GarrettCelek-NFL-FA-88\",\"search_first_name\":\"garrett\",\"rotowire_id\":8516,\"rotoworld_id\":null,\"active\":true,\"search_rank\":689,\"age\":32,\"full_name\":\"Garrett Celek\",\"sportradar_id\":\"16cc9ade-f9ad-4d32-b5b9-d7568ee80f58\",\"pandascore_id\":null,\"yahoo_id\":26253,\"last_name\":\"Celek\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"LaSalle (OH)\",\"depth_chart_order\":4,\"stats_id\":403184,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'5\\\"\",\"search_full_name\":\"garrettcelek\",\"birth_date\":\"1988-05-29\",\"espn_id\":15204},\"4710\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Giovanni\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pascascio\",\"depth_chart_position\":null,\"player_id\":\"4710\",\"birth_city\":null,\"fantasy_data_id\":19617,\"years_exp\":2,\"hashtag\":\"#GiovanniPascascio-NFL-FA-12\",\"search_first_name\":\"giovanni\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Giovanni Pascascio\",\"sportradar_id\":\"8d2f1592-e68a-4b28-83d5-fcb056afac5e\",\"pandascore_id\":null,\"yahoo_id\":30754,\"last_name\":\"Pascascio\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830876,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"giovannipascascio\",\"birth_date\":\"1994-11-10\",\"espn_id\":3116662},\"3135\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wash\",\"depth_chart_position\":null,\"player_id\":\"3135\",\"birth_city\":null,\"fantasy_data_id\":17889,\"years_exp\":0,\"hashtag\":\"#ToddWash-NFL-FA-0\",\"search_first_name\":\"todd\",\"rotowire_id\":null,\"rotoworld_id\":11249,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Todd Wash\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wash\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"toddwash\",\"birth_date\":null,\"espn_id\":null},\"7448\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leverett\",\"depth_chart_position\":null,\"player_id\":\"7448\",\"birth_city\":null,\"fantasy_data_id\":22426,\"years_exp\":0,\"hashtag\":\"#NickLeverett-NFL-TB-60\",\"search_first_name\":\"nick\",\"rotowire_id\":14915,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nick Leverett\",\"sportradar_id\":\"ca8fe3b0-337f-4354-9010-3951127786a6\",\"pandascore_id\":null,\"yahoo_id\":33292,\"last_name\":\"Leverett\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Concord (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickleverett\",\"birth_date\":\"1997-01-11\",\"espn_id\":3920591},\"4091\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033894\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606131012148,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"FS\",\"player_id\":\"4091\",\"birth_city\":null,\"fantasy_data_id\":18937,\"years_exp\":3,\"hashtag\":\"#MarcusWilliams-NFL-NO-43\",\"search_first_name\":\"marcus\",\"rotowire_id\":12199,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1138,\"age\":24,\"full_name\":\"Marcus Williams\",\"sportradar_id\":\"662bf69e-10eb-4c2e-970e-1a13f1c7fa07\",\"pandascore_id\":null,\"yahoo_id\":30155,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Eastvale Eleanor Roosevelt (CA)\",\"depth_chart_order\":1,\"stats_id\":826338,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marcuswilliams\",\"birth_date\":\"1996-09-08\",\"espn_id\":3122882},\"2160\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030937\",\"first_name\":\"Zac\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1595795116052,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kerin\",\"depth_chart_position\":\"LG\",\"player_id\":\"2160\",\"birth_city\":null,\"fantasy_data_id\":16507,\"years_exp\":6,\"hashtag\":\"#ZacKerin-NFL-FA-69\",\"search_first_name\":\"zac\",\"rotowire_id\":10123,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zac Kerin\",\"sportradar_id\":\"a54b3a65-476d-4913-8f64-9b85ef61e310\",\"pandascore_id\":null,\"yahoo_id\":27888,\"last_name\":\"Kerin\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Olentangy (OH)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zackerin\",\"birth_date\":\"1991-08-13\",\"espn_id\":17013},\"1024\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ventrone\",\"depth_chart_position\":null,\"player_id\":\"1024\",\"birth_city\":null,\"fantasy_data_id\":13700,\"years_exp\":10,\"hashtag\":\"#RossVentrone-NFL-FA-35\",\"search_first_name\":\"ross\",\"rotowire_id\":6976,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ross Ventrone\",\"sportradar_id\":\"9c01cafb-5662-40df-acd3-9bea4be83175\",\"pandascore_id\":null,\"yahoo_id\":24297,\"last_name\":\"Ventrone\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":\"Chartiers Valley (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'8\\\"\",\"search_full_name\":\"rossventrone\",\"birth_date\":\"1986-09-27\",\"espn_id\":13658},\"6336\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035445\",\"first_name\":\"Jesse\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aniebonam\",\"depth_chart_position\":null,\"player_id\":\"6336\",\"birth_city\":null,\"fantasy_data_id\":21243,\"years_exp\":1,\"hashtag\":\"#JesseAniebonam-NFL-FA-69\",\"search_first_name\":\"jesse\",\"rotowire_id\":13975,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jesse Aniebonam\",\"sportradar_id\":\"199c8ea9-eaca-405c-bb4f-e2738e59294b\",\"pandascore_id\":null,\"yahoo_id\":32499,\"last_name\":\"Aniebonam\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jesseaniebonam\",\"birth_date\":\"1996-01-05\",\"espn_id\":3128308},\"135\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023742\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1534861201953,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":null,\"player_id\":\"135\",\"birth_city\":null,\"fantasy_data_id\":3764,\"years_exp\":14,\"hashtag\":\"#JonRyan-NFL-FA-9\",\"search_first_name\":\"jon\",\"rotowire_id\":7975,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Jon Ryan\",\"sportradar_id\":\"f6b48c8b-66ac-47a3-aafc-5addce6a6d82\",\"pandascore_id\":null,\"yahoo_id\":8020,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":\"Regina, Can.\",\"high_school\":\"Sheldon-Williams Collegiate (SK)\",\"depth_chart_order\":null,\"stats_id\":88998,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonryan\",\"birth_date\":\"1981-11-26\",\"espn_id\":10238},\"302\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"koenen\",\"depth_chart_position\":null,\"player_id\":\"302\",\"birth_city\":null,\"fantasy_data_id\":7507,\"years_exp\":11,\"hashtag\":\"#MichaelKoenen-NFL-FA-9\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Michael Koenen\",\"sportradar_id\":\"0306d316-2da0-4adb-ab62-f61a1c0d2088\",\"pandascore_id\":null,\"yahoo_id\":7439,\"last_name\":\"Koenen\",\"metadata\":null,\"college\":\"Western Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michaelkoenen\",\"birth_date\":\"1982-07-13\",\"espn_id\":9263},\"2876\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2876\",\"birth_city\":null,\"fantasy_data_id\":17344,\"years_exp\":1,\"hashtag\":\"#EdWilliams-NFL-FA-19\",\"search_first_name\":\"ed\",\"rotowire_id\":10619,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ed Williams\",\"sportradar_id\":\"bb308d90-efe4-4279-ad7d-cae7e52e18c0\",\"pandascore_id\":null,\"yahoo_id\":29176,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Fort Hays State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":510017,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"edwilliams\",\"birth_date\":\"1991-03-14\",\"espn_id\":2469745},\"1727\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"1727\",\"birth_city\":null,\"fantasy_data_id\":15663,\"years_exp\":1,\"hashtag\":\"#DominiqueHamilton-NFL-FA-97\",\"search_first_name\":\"dominique\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dominique Hamilton\",\"sportradar_id\":\"80461cd1-c269-483e-b273-86174de06b8f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dominiquehamilton\",\"birth_date\":\"1989-01-18\",\"espn_id\":15286},\"5006\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034268\",\"first_name\":\"J'Mon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599184254707,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5006\",\"birth_city\":null,\"fantasy_data_id\":19935,\"years_exp\":2,\"hashtag\":\"#JMonMoore-NFL-FA-0\",\"search_first_name\":\"jmon\",\"rotowire_id\":12811,\"rotoworld_id\":13181,\"active\":true,\"search_rank\":1354,\"age\":25,\"full_name\":\"J'Mon Moore\",\"sportradar_id\":\"c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb\",\"pandascore_id\":null,\"yahoo_id\":31103,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":12,\"stats_id\":744582,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jmonmoore\",\"birth_date\":\"1995-05-23\",\"espn_id\":3051857},\"7216\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Giovanni\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693357455,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ricci\",\"depth_chart_position\":\"TE\",\"player_id\":\"7216\",\"birth_city\":null,\"fantasy_data_id\":21732,\"years_exp\":0,\"hashtag\":\"#GiovanniRicci-NFL-CAR-85\",\"search_first_name\":\"giovanni\",\"rotowire_id\":14785,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Giovanni Ricci\",\"sportradar_id\":\"689de342-1d99-4a4d-976d-f6573ef3a8c2\",\"pandascore_id\":null,\"yahoo_id\":33151,\"last_name\":\"Ricci\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Loveland (OH)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"giovanniricci\",\"birth_date\":\"1996-10-16\",\"espn_id\":3916749},\"6500\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035178\",\"first_name\":\"Sterling\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shippy\",\"depth_chart_position\":null,\"player_id\":\"6500\",\"birth_city\":null,\"fantasy_data_id\":21350,\"years_exp\":1,\"hashtag\":\"#SterlingShippy-NFL-FA-76\",\"search_first_name\":\"sterling\",\"rotowire_id\":14161,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sterling Shippy\",\"sportradar_id\":\"06a22cdc-f773-4424-a8e6-e49ca822ed1e\",\"pandascore_id\":null,\"yahoo_id\":32370,\"last_name\":\"Shippy\",\"metadata\":null,\"college\":\"Alcorn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sterlingshippy\",\"birth_date\":\"1995-08-24\",\"espn_id\":3131528},\"1214\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029576\",\"first_name\":\"Blair\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1567284307017,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walsh\",\"depth_chart_position\":null,\"player_id\":\"1214\",\"birth_city\":null,\"fantasy_data_id\":14463,\"years_exp\":8,\"hashtag\":\"#BlairWalsh-NFL-FA-16\",\"search_first_name\":\"blair\",\"rotowire_id\":8177,\"rotoworld_id\":7620,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Blair Walsh\",\"sportradar_id\":\"afac3e25-d72d-43f7-be4b-d33ed91a0bf8\",\"pandascore_id\":null,\"yahoo_id\":25885,\"last_name\":\"Walsh\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Cardinal Gibbons (FL)\",\"depth_chart_order\":null,\"stats_id\":458095,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"blairwalsh\",\"birth_date\":\"1990-01-08\",\"espn_id\":15058},\"3590\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032354\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598923230298,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"redmond\",\"depth_chart_position\":\"C\",\"player_id\":\"3590\",\"birth_city\":null,\"fantasy_data_id\":18370,\"years_exp\":4,\"hashtag\":\"#AdamRedmond-NFL-DAL-51\",\"search_first_name\":\"adam\",\"rotowire_id\":11426,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Adam Redmond\",\"sportradar_id\":\"1b379101-6c8f-42d4-843c-9a3cc44993ff\",\"pandascore_id\":null,\"yahoo_id\":29608,\"last_name\":\"Redmond\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"Walsh Jesuit (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"adamredmond\",\"birth_date\":\"1993-05-19\",\"espn_id\":2566609},\"1426\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030564\",\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606505126380,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hopkins\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1426\",\"birth_city\":null,\"fantasy_data_id\":14986,\"years_exp\":7,\"hashtag\":\"#DeAndreHopkins-NFL-ARI-10\",\"search_first_name\":\"deandre\",\"rotowire_id\":8619,\"rotoworld_id\":8404,\"active\":true,\"search_rank\":23,\"age\":28,\"full_name\":\"DeAndre Hopkins\",\"sportradar_id\":\"5c48ade7-4b9a-4757-9643-87a6e3839e2b\",\"pandascore_id\":null,\"yahoo_id\":26650,\"last_name\":\"Hopkins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"D.W. Daniel (SC)\",\"depth_chart_order\":1,\"stats_id\":560241,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deandrehopkins\",\"birth_date\":\"1992-06-06\",\"espn_id\":15795},\"PHI\":{\"team\":\"PHI\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"PHI\",\"last_name\":\"Eagles\",\"injury_status\":null,\"first_name\":\"Philadelphia\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"1758\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kashif\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"1758\",\"birth_city\":null,\"fantasy_data_id\":15779,\"years_exp\":1,\"hashtag\":\"#KashifMoore-NFL-FA-89\",\"search_first_name\":\"kashif\",\"rotowire_id\":8512,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kashif Moore\",\"sportradar_id\":\"202e49e5-7659-4b6f-afe1-e290fcd8c0db\",\"pandascore_id\":null,\"yahoo_id\":26245,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":400923,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kashifmoore\",\"birth_date\":\"1988-11-21\",\"espn_id\":15180},\"821\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028278\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603744838338,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bynes\",\"depth_chart_position\":\"LB\",\"player_id\":\"821\",\"birth_city\":null,\"fantasy_data_id\":12815,\"years_exp\":9,\"hashtag\":\"#JoshBynes-NFL-CIN-56\",\"search_first_name\":\"josh\",\"rotowire_id\":7740,\"rotoworld_id\":7076,\"active\":true,\"search_rank\":627,\"age\":31,\"full_name\":\"Josh Bynes\",\"sportradar_id\":\"87745a22-9ce8-4a5a-8935-dcc102ce4b18\",\"pandascore_id\":null,\"yahoo_id\":25358,\"last_name\":\"Bynes\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Anderson (FL)\",\"depth_chart_order\":1,\"stats_id\":401769,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshbynes\",\"birth_date\":\"1989-08-24\",\"espn_id\":14519},\"4054\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033217\",\"first_name\":\"Mo\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606172715508,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"aliecox\",\"depth_chart_position\":\"TE\",\"player_id\":\"4054\",\"birth_city\":null,\"fantasy_data_id\":18900,\"years_exp\":3,\"hashtag\":\"#MoAlieCox-NFL-IND-81\",\"search_first_name\":\"mo\",\"rotowire_id\":12196,\"rotoworld_id\":12221,\"active\":true,\"search_rank\":445,\"age\":27,\"full_name\":\"Mo Alie-Cox\",\"sportradar_id\":\"8809c0dd-786b-4255-a7d0-333c9498c19a\",\"pandascore_id\":null,\"yahoo_id\":30112,\"last_name\":\"Alie-Cox\",\"metadata\":null,\"college\":\"Virginia Commonwealth\",\"high_school\":\"Middleburg Academy (VA)\",\"depth_chart_order\":2,\"stats_id\":712506,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'5\\\"\",\"search_full_name\":\"moaliecox\",\"birth_date\":\"1993-09-19\",\"espn_id\":2998565},\"6135\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035284\",\"first_name\":\"D'Andre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601421346728,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6135\",\"birth_city\":null,\"fantasy_data_id\":20972,\"years_exp\":1,\"hashtag\":\"#DAndreWalker-NFL-SEA-59\",\"search_first_name\":\"dandre\",\"rotowire_id\":13737,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1614,\"age\":23,\"full_name\":\"D'Andre Walker\",\"sportradar_id\":\"a1ed2859-499b-4dbb-96b7-0d8728290de6\",\"pandascore_id\":null,\"yahoo_id\":32000,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Langston Hughes (GA)\",\"depth_chart_order\":2,\"stats_id\":879096,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dandrewalker\",\"birth_date\":\"1997-01-23\",\"espn_id\":3915196},\"3473\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032518\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603134618193,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zimmer\",\"depth_chart_position\":\"LDT\",\"player_id\":\"3473\",\"birth_city\":null,\"fantasy_data_id\":18237,\"years_exp\":4,\"hashtag\":\"#JustinZimmer-NFL-BUF-61\",\"search_first_name\":\"justin\",\"rotowire_id\":11327,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1055,\"age\":28,\"full_name\":\"Justin Zimmer\",\"sportradar_id\":\"f125395e-820f-40d7-9775-ac101292719d\",\"pandascore_id\":null,\"yahoo_id\":29559,\"last_name\":\"Zimmer\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":\"Greenville (MI)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinzimmer\",\"birth_date\":\"1992-10-23\",\"espn_id\":3057899},\"4441\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chauncey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"briggs\",\"depth_chart_position\":null,\"player_id\":\"4441\",\"birth_city\":null,\"fantasy_data_id\":19302,\"years_exp\":2,\"hashtag\":\"#ChaunceyBriggs-NFL-FA-64\",\"search_first_name\":\"chauncey\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chauncey Briggs\",\"sportradar_id\":\"26d7184e-d481-4c1f-a1c9-95ae51508bc9\",\"pandascore_id\":null,\"yahoo_id\":30625,\"last_name\":\"Briggs\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chaunceybriggs\",\"birth_date\":\"1994-07-08\",\"espn_id\":2980454},\"3939\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colvin\",\"depth_chart_position\":\"RDT\",\"player_id\":\"3939\",\"birth_city\":null,\"fantasy_data_id\":18772,\"years_exp\":0,\"hashtag\":\"#ZachColvin-NFL-FA-77\",\"search_first_name\":\"zach\",\"rotowire_id\":11660,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Zach Colvin\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30069,\"last_name\":\"Colvin\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'3\\\"\",\"search_full_name\":\"zachcolvin\",\"birth_date\":\"1993-01-23\",\"espn_id\":null},\"1220\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029546\",\"first_name\":\"Senio\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606356003987,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelemete\",\"depth_chart_position\":\"LG\",\"player_id\":\"1220\",\"birth_city\":null,\"fantasy_data_id\":14481,\"years_exp\":8,\"hashtag\":\"#SenioKelemete-NFL-HOU-64\",\"search_first_name\":\"senio\",\"rotowire_id\":8305,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Senio Kelemete\",\"sportradar_id\":\"0a821a41-cff9-4b6d-9140-301a09edf895\",\"pandascore_id\":null,\"yahoo_id\":25861,\"last_name\":\"Kelemete\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Evergreen (WA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"seniokelemete\",\"birth_date\":\"1990-05-10\",\"espn_id\":15123},\"4946\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reese\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dismukes\",\"depth_chart_position\":null,\"player_id\":\"4946\",\"birth_city\":null,\"fantasy_data_id\":17801,\"years_exp\":0,\"hashtag\":\"#ReeseDismukes-NFL-FA-0\",\"search_first_name\":\"reese\",\"rotowire_id\":10290,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Reese Dismukes\",\"sportradar_id\":\"2b023022-ca00-4c14-b7f8-4a10080ac8f5\",\"pandascore_id\":null,\"yahoo_id\":28664,\"last_name\":\"Dismukes\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"reesedismukes\",\"birth_date\":\"1992-10-20\",\"espn_id\":null},\"6020\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035115\",\"first_name\":\"Te'von\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coney\",\"depth_chart_position\":\"MLB\",\"player_id\":\"6020\",\"birth_city\":null,\"fantasy_data_id\":21010,\"years_exp\":1,\"hashtag\":\"#TevonConey-NFL-FA-0\",\"search_first_name\":\"tevon\",\"rotowire_id\":13799,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Te'von Coney\",\"sportradar_id\":\"c3f75363-b89a-4d6f-be40-e10ee2704c6c\",\"pandascore_id\":null,\"yahoo_id\":32340,\"last_name\":\"Coney\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":867664,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tevonconey\",\"birth_date\":\"1997-06-10\",\"espn_id\":3862861},\"4750\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033992\",\"first_name\":\"Lance\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602106228342,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lenoir\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4750\",\"birth_city\":null,\"fantasy_data_id\":19668,\"years_exp\":3,\"hashtag\":\"#LanceLenoir-NFL-SEA-13\",\"search_first_name\":\"lance\",\"rotowire_id\":12287,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lance Lenoir\",\"sportradar_id\":\"4f4f888c-08d3-4ea8-ab8f-0ddcf8bf195e\",\"pandascore_id\":null,\"yahoo_id\":30899,\"last_name\":\"Lenoir\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":\"Crete-Monee (IL)\",\"depth_chart_order\":3,\"stats_id\":748115,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lancelenoir\",\"birth_date\":\"1995-02-09\",\"espn_id\":3049249},\"268\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023436\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606444560207,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"QB\",\"player_id\":\"268\",\"birth_city\":null,\"fantasy_data_id\":6739,\"years_exp\":15,\"hashtag\":\"#AlexSmith-NFL-WAS-11\",\"search_first_name\":\"alex\",\"rotowire_id\":4306,\"rotoworld_id\":3119,\"active\":true,\"search_rank\":425,\"age\":36,\"full_name\":\"Alex Smith\",\"sportradar_id\":\"2fda010a-8c62-4c07-b601-4ba03f57e6af\",\"pandascore_id\":null,\"yahoo_id\":7177,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Helix (CA)\",\"depth_chart_order\":1,\"stats_id\":217357,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexsmith\",\"birth_date\":\"1984-05-07\",\"espn_id\":8416},\"1926\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zumwalt\",\"depth_chart_position\":null,\"player_id\":\"1926\",\"birth_city\":null,\"fantasy_data_id\":16161,\"years_exp\":3,\"hashtag\":\"#JordanZumwalt-NFL-FA-49\",\"search_first_name\":\"jordan\",\"rotowire_id\":10655,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Zumwalt\",\"sportradar_id\":\"82bf36ef-3689-4492-90de-36de8726114e\",\"pandascore_id\":null,\"yahoo_id\":27720,\"last_name\":\"Zumwalt\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanzumwalt\",\"birth_date\":\"1991-10-13\",\"espn_id\":16874},\"5260\":{\"position\":\"WR\",\"injury_notes\":\"Smith is expected to be out for 5-8 weeks following surgery.\",\"birth_country\":null,\"gsis_id\":\"00-0034631\",\"first_name\":\"Vyncint\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605906303049,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5260\",\"birth_city\":null,\"fantasy_data_id\":20295,\"years_exp\":2,\"hashtag\":\"#VyncintSmith-NFL-NYJ-17\",\"search_first_name\":\"vyncint\",\"rotowire_id\":12979,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Vyncint Smith\",\"sportradar_id\":\"a63918a5-da89-40d9-8518-30a3e0e46da1\",\"pandascore_id\":null,\"yahoo_id\":31588,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Limestone\",\"high_school\":\"Westwood (SC)\",\"depth_chart_order\":2,\"stats_id\":850603,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vyncintsmith\",\"birth_date\":\"1996-06-09\",\"espn_id\":3155188},\"932\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sherrod\",\"depth_chart_position\":null,\"player_id\":\"932\",\"birth_city\":null,\"fantasy_data_id\":13244,\"years_exp\":5,\"hashtag\":\"#DerekSherrod-NFL-FA-78\",\"search_first_name\":\"derek\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Derek Sherrod\",\"sportradar_id\":\"7ff9bc26-5cbf-4891-b7c8-3a3e804e77cb\",\"pandascore_id\":null,\"yahoo_id\":24819,\"last_name\":\"Sherrod\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dereksherrod\",\"birth_date\":\"1989-04-23\",\"espn_id\":13972},\"3589\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032353\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584061217123,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"milton\",\"depth_chart_position\":\"LCB\",\"player_id\":\"3589\",\"birth_city\":null,\"fantasy_data_id\":18369,\"years_exp\":4,\"hashtag\":\"#ChrisMilton-NFL-TEN-30\",\"search_first_name\":\"chris\",\"rotowire_id\":11420,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1070,\"age\":28,\"full_name\":\"Chris Milton\",\"sportradar_id\":\"3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3\",\"pandascore_id\":null,\"yahoo_id\":29607,\"last_name\":\"Milton\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Georgia Tech\",\"high_school\":\"Charlton County (GA)\",\"depth_chart_order\":2,\"stats_id\":599683,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrismilton\",\"birth_date\":\"1992-09-15\",\"espn_id\":2576895},\"6324\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034964\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1595797518793,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gant\",\"depth_chart_position\":null,\"player_id\":\"6324\",\"birth_city\":null,\"fantasy_data_id\":21229,\"years_exp\":1,\"hashtag\":\"#MalikGant-NFL-FA-0\",\"search_first_name\":\"malik\",\"rotowire_id\":13578,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Malik Gant\",\"sportradar_id\":\"be382b2e-a4ef-4c83-a054-7bc75b0e0d99\",\"pandascore_id\":null,\"yahoo_id\":32228,\"last_name\":\"Gant\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malikgant\",\"birth_date\":\"1997-05-29\",\"espn_id\":3931774},\"5813\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adarius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"5813\",\"birth_city\":null,\"fantasy_data_id\":20710,\"years_exp\":0,\"hashtag\":\"#AdariusTaylor-NFL-FA-0\",\"search_first_name\":\"adarius\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Adarius Taylor\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"adariustaylor\",\"birth_date\":\"1990-09-21\",\"espn_id\":null},\"2916\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ify\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"umodu\",\"depth_chart_position\":null,\"player_id\":\"2916\",\"birth_city\":null,\"fantasy_data_id\":17384,\"years_exp\":0,\"hashtag\":\"#IfyUmodu-NFL-FA-85\",\"search_first_name\":\"ify\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ify Umodu\",\"sportradar_id\":\"95740c9e-a408-4306-a9a7-15e76811d3f2\",\"pandascore_id\":null,\"yahoo_id\":29145,\"last_name\":\"Umodu\",\"metadata\":null,\"college\":\"Northern Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":550851,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ifyumodu\",\"birth_date\":\"1992-07-22\",\"espn_id\":2506632},\"4600\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Noel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomasjr\",\"depth_chart_position\":null,\"player_id\":\"4600\",\"birth_city\":null,\"fantasy_data_id\":19489,\"years_exp\":2,\"hashtag\":\"#NoelThomasJr-NFL-FA-12\",\"search_first_name\":\"noel\",\"rotowire_id\":11882,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Noel Thomas Jr.\",\"sportradar_id\":\"3c77bb81-2789-49de-8bcd-44a926d91f45\",\"pandascore_id\":null,\"yahoo_id\":30775,\"last_name\":\"Thomas Jr.\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728452,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"noelthomasjr\",\"birth_date\":\"1994-09-18\",\"espn_id\":3045194},\"1331\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"jerodeddie\",\"depth_chart_position\":null,\"player_id\":\"1331\",\"birth_city\":null,\"fantasy_data_id\":14838,\"years_exp\":8,\"hashtag\":\"#TonyJerodEddie-NFL-FA-63\",\"search_first_name\":\"tony\",\"rotowire_id\":8379,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tony Jerod-Eddie\",\"sportradar_id\":\"5179c215-aa58-4c3d-9383-814dd37bab83\",\"pandascore_id\":null,\"yahoo_id\":26339,\"last_name\":\"Jerod-Eddie\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tonyjerodeddie\",\"birth_date\":\"1990-03-29\",\"espn_id\":15430},\"1753\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaako\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aaitui\",\"depth_chart_position\":null,\"player_id\":\"1753\",\"birth_city\":null,\"fantasy_data_id\":15770,\"years_exp\":1,\"hashtag\":\"#IsaakoAaitui-NFL-FA-97\",\"search_first_name\":\"isaako\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Isaako Aaitui\",\"sportradar_id\":\"2e001653-1c76-4fa9-bc19-dbe32a92d43f\",\"pandascore_id\":null,\"yahoo_id\":25685,\"last_name\":\"Aaitui\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"isaakoaaitui\",\"birth_date\":\"1987-01-25\",\"espn_id\":14856},\"1175\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029261\",\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606521028688,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hayward\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1175\",\"birth_city\":null,\"fantasy_data_id\":14285,\"years_exp\":8,\"hashtag\":\"#CaseyHayward-NFL-LAC-26\",\"search_first_name\":\"casey\",\"rotowire_id\":8172,\"rotoworld_id\":7529,\"active\":true,\"search_rank\":679,\"age\":31,\"full_name\":\"Casey Hayward\",\"sportradar_id\":\"a278c39e-7d4d-48c2-8145-2f8ad882ebeb\",\"pandascore_id\":null,\"yahoo_id\":25772,\"last_name\":\"Hayward\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Perry (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"caseyhayward\",\"birth_date\":\"1989-09-09\",\"espn_id\":14966},\"2369\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031559\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601335811791,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"richards\",\"depth_chart_position\":\"FS\",\"player_id\":\"2369\",\"birth_city\":null,\"fantasy_data_id\":16825,\"years_exp\":5,\"hashtag\":\"#JordanRichards-NFL-BAL-28\",\"search_first_name\":\"jordan\",\"rotowire_id\":10399,\"rotoworld_id\":null,\"active\":true,\"search_rank\":877,\"age\":27,\"full_name\":\"Jordan Richards\",\"sportradar_id\":\"13f716fb-7249-4b0a-9858-8af8cb83f78b\",\"pandascore_id\":null,\"yahoo_id\":28452,\"last_name\":\"Richards\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Folsom (CA)\",\"depth_chart_order\":2,\"stats_id\":598975,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordanrichards\",\"birth_date\":\"1993-01-21\",\"espn_id\":2577139},\"2062\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031348\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603252536000,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hitchens\",\"depth_chart_position\":\"LB\",\"player_id\":\"2062\",\"birth_city\":null,\"fantasy_data_id\":16364,\"years_exp\":6,\"hashtag\":\"#AnthonyHitchens-NFL-KC-53\",\"search_first_name\":\"anthony\",\"rotowire_id\":9643,\"rotoworld_id\":9658,\"active\":true,\"search_rank\":812,\"age\":28,\"full_name\":\"Anthony Hitchens\",\"sportradar_id\":\"919cdf12-3811-49d1-a7a5-65ff29a59434\",\"pandascore_id\":null,\"yahoo_id\":27647,\"last_name\":\"Hitchens\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Clearview (OH)\",\"depth_chart_order\":1,\"stats_id\":553657,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"anthonyhitchens\",\"birth_date\":\"1992-06-10\",\"espn_id\":16883},\"1459\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030523\",\"first_name\":\"Kayvon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584993332426,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"webster\",\"depth_chart_position\":null,\"player_id\":\"1459\",\"birth_city\":null,\"fantasy_data_id\":15041,\"years_exp\":7,\"hashtag\":\"#KayvonWebster-NFL-FA-38\",\"search_first_name\":\"kayvon\",\"rotowire_id\":8905,\"rotoworld_id\":8522,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kayvon Webster\",\"sportradar_id\":\"42cbcd13-4fbc-4cea-905b-85d2c0b0ff55\",\"pandascore_id\":null,\"yahoo_id\":26713,\"last_name\":\"Webster\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Pace (FL)\",\"depth_chart_order\":null,\"stats_id\":504268,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kayvonwebster\",\"birth_date\":\"1991-02-01\",\"espn_id\":15872},\"7375\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"7375\",\"birth_city\":null,\"fantasy_data_id\":22363,\"years_exp\":0,\"hashtag\":\"#KeithWashington-NFL-NO-38\",\"search_first_name\":\"keith\",\"rotowire_id\":14964,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Keith Washington\",\"sportradar_id\":\"9c1cc275-861d-481f-9688-b65c170fb8df\",\"pandascore_id\":null,\"yahoo_id\":33121,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Prattville (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keithwashington\",\"birth_date\":\"1996-12-20\",\"espn_id\":3929920},\"1133\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wylie\",\"depth_chart_position\":null,\"player_id\":\"1133\",\"birth_city\":null,\"fantasy_data_id\":14087,\"years_exp\":2,\"hashtag\":\"#DevonWylie-NFL-FA-19\",\"search_first_name\":\"devon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Devon Wylie\",\"sportradar_id\":\"1ff79671-c6be-44a7-a307-5e3a1ce968ad\",\"pandascore_id\":null,\"yahoo_id\":25817,\"last_name\":\"Wylie\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":406248,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'9\\\"\",\"search_full_name\":\"devonwylie\",\"birth_date\":\"1988-09-02\",\"espn_id\":14923},\"1743\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029336\",\"first_name\":\"Brittan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1571696715255,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"golden\",\"depth_chart_position\":null,\"player_id\":\"1743\",\"birth_city\":null,\"fantasy_data_id\":15725,\"years_exp\":8,\"hashtag\":\"#BrittanGolden-NFL-FA-83\",\"search_first_name\":\"brittan\",\"rotowire_id\":8260,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Brittan Golden\",\"sportradar_id\":\"5d0270d1-8172-4403-a2b3-69055d0bcbb1\",\"pandascore_id\":null,\"yahoo_id\":25970,\"last_name\":\"Golden\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"Denver City (TX)\",\"depth_chart_order\":null,\"stats_id\":615893,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brittangolden\",\"birth_date\":\"1988-07-20\",\"espn_id\":15564},\"6694\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035628\",\"first_name\":\"D'Ernest\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606138812138,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6694\",\"birth_city\":null,\"fantasy_data_id\":21593,\"years_exp\":1,\"hashtag\":\"#DErnestJohnson-NFL-CLE-30\",\"search_first_name\":\"dernest\",\"rotowire_id\":12678,\"rotoworld_id\":null,\"active\":true,\"search_rank\":368,\"age\":24,\"full_name\":\"D'Ernest Johnson\",\"sportradar_id\":\"f46e812f-14c6-4af8-9316-01a880adebc5\",\"pandascore_id\":null,\"yahoo_id\":32608,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Immokalee (FL)\",\"depth_chart_order\":5,\"stats_id\":839043,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dernestjohnson\",\"birth_date\":\"1996-02-27\",\"espn_id\":3139602},\"7287\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603401648280,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hammond\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7287\",\"birth_city\":null,\"fantasy_data_id\":22283,\"years_exp\":0,\"hashtag\":\"#JoshHammond-NFL-JAX-81\",\"search_first_name\":\"josh\",\"rotowire_id\":14784,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Josh Hammond\",\"sportradar_id\":\"32494eca-34f8-4d7f-88ee-e3319128e8e0\",\"pandascore_id\":null,\"yahoo_id\":33127,\"last_name\":\"Hammond\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Hallandale (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshhammond\",\"birth_date\":\"1998-07-24\",\"espn_id\":4034944},\"4258\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033300\",\"first_name\":\"Conor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605919803946,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcdermott\",\"depth_chart_position\":\"RG\",\"player_id\":\"4258\",\"birth_city\":null,\"fantasy_data_id\":19104,\"years_exp\":3,\"hashtag\":\"#ConorMcDermott-NFL-NYJ-69\",\"search_first_name\":\"conor\",\"rotowire_id\":11810,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Conor McDermott\",\"sportradar_id\":\"6993aad2-269c-4211-bee7-2fcd324288c5\",\"pandascore_id\":null,\"yahoo_id\":30324,\"last_name\":\"McDermott\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"The Ensworth School (TN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'8\\\"\",\"search_full_name\":\"conormcdermott\",\"birth_date\":\"1992-10-19\",\"espn_id\":2971584},\"7088\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599407159831,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RB\",\"player_id\":\"7088\",\"birth_city\":null,\"fantasy_data_id\":21839,\"years_exp\":0,\"hashtag\":\"#XavierJones-NFL-LAR-35\",\"search_first_name\":\"xavier\",\"rotowire_id\":14925,\"rotoworld_id\":null,\"active\":true,\"search_rank\":492,\"age\":23,\"full_name\":\"Xavier Jones\",\"sportradar_id\":\"70110b01-060d-443d-b799-5d4edc9272de\",\"pandascore_id\":null,\"yahoo_id\":33297,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Spring (TX)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"xavierjones\",\"birth_date\":\"1997-08-24\",\"espn_id\":3916209},\"5408\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034609\",\"first_name\":\"Sergio\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1580256060302,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"5408\",\"birth_city\":null,\"fantasy_data_id\":20505,\"years_exp\":2,\"hashtag\":\"#SergioBailey-NFL-FA-83\",\"search_first_name\":\"sergio\",\"rotowire_id\":13069,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Sergio Bailey\",\"sportradar_id\":\"df45a0dc-ab7f-4e42-a091-b49b37a266bd\",\"pandascore_id\":null,\"yahoo_id\":900326,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sergiobailey\",\"birth_date\":\"1994-08-21\",\"espn_id\":null},\"5773\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034854\",\"first_name\":\"Khadarel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606089638704,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hodge\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5773\",\"birth_city\":null,\"fantasy_data_id\":20679,\"years_exp\":2,\"hashtag\":\"#KhadarelHodge-NFL-CLE-12\",\"search_first_name\":\"khadarel\",\"rotowire_id\":13418,\"rotoworld_id\":null,\"active\":true,\"search_rank\":358,\"age\":25,\"full_name\":\"Khadarel Hodge\",\"sportradar_id\":\"6f124753-5c6c-454b-97c7-0f9b4d14e7c2\",\"pandascore_id\":null,\"yahoo_id\":31769,\"last_name\":\"Hodge\",\"metadata\":null,\"college\":\"Prairie View\",\"high_school\":\"Mendenhall (MS)\",\"depth_chart_order\":1,\"stats_id\":757521,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"khadarelhodge\",\"birth_date\":\"1995-01-03\",\"espn_id\":3047876},\"5946\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035699\",\"first_name\":\"Jamel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606518628320,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dean\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5946\",\"birth_city\":null,\"fantasy_data_id\":21064,\"years_exp\":1,\"hashtag\":\"#JamelDean-NFL-TB-35\",\"search_first_name\":\"jamel\",\"rotowire_id\":13483,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1655,\"age\":24,\"full_name\":\"Jamel Dean\",\"sportradar_id\":\"278a0811-98b8-42d2-96e9-160b7f364ae0\",\"pandascore_id\":null,\"yahoo_id\":31926,\"last_name\":\"Dean\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Cocoa (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jameldean\",\"birth_date\":\"1996-10-15\",\"espn_id\":3873935},\"3318\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032784\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1597698636184,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hogan\",\"depth_chart_position\":null,\"player_id\":\"3318\",\"birth_city\":null,\"fantasy_data_id\":18079,\"years_exp\":4,\"hashtag\":\"#KevinHogan-NFL-FA-9\",\"search_first_name\":\"kevin\",\"rotowire_id\":11058,\"rotoworld_id\":11300,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kevin Hogan\",\"sportradar_id\":\"cd571cfc-9b44-4b69-a801-431db9aaa85e\",\"pandascore_id\":null,\"yahoo_id\":29396,\"last_name\":\"Hogan\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":598962,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kevinhogan\",\"birth_date\":\"1992-10-20\",\"espn_id\":2577128},\"667\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026564\",\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603845955521,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mclendon\",\"depth_chart_position\":\"NT\",\"player_id\":\"667\",\"birth_city\":null,\"fantasy_data_id\":11767,\"years_exp\":11,\"hashtag\":\"#SteveMcLendon-NFL-TB-96\",\"search_first_name\":\"steve\",\"rotowire_id\":7168,\"rotoworld_id\":5684,\"active\":true,\"search_rank\":618,\"age\":34,\"full_name\":\"Steve McLendon\",\"sportradar_id\":\"cee49408-2e91-487a-a8ec-d3314ebf539d\",\"pandascore_id\":null,\"yahoo_id\":9673,\"last_name\":\"McLendon\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Carroll (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stevemclendon\",\"birth_date\":\"1986-01-03\",\"espn_id\":12895},\"2881\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"slavin\",\"depth_chart_position\":null,\"player_id\":\"2881\",\"birth_city\":null,\"fantasy_data_id\":17349,\"years_exp\":1,\"hashtag\":\"#TylerSlavin-NFL-FA-13\",\"search_first_name\":\"tyler\",\"rotowire_id\":10861,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyler Slavin\",\"sportradar_id\":\"f02407dd-c6d9-4c88-885b-0fcf87fcbb33\",\"pandascore_id\":null,\"yahoo_id\":29002,\"last_name\":\"Slavin\",\"metadata\":null,\"college\":\"New Mexico Highlands\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542556,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylerslavin\",\"birth_date\":\"1992-01-29\",\"espn_id\":2516911},\"748\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"748\",\"birth_city\":null,\"fantasy_data_id\":12412,\"years_exp\":9,\"hashtag\":\"#MikeWilliams-NFL-FA-15\",\"search_first_name\":\"mike\",\"rotowire_id\":6513,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mike Williams\",\"sportradar_id\":\"8d10b45b-8847-4c16-bfab-c8122e5f57e2\",\"pandascore_id\":null,\"yahoo_id\":24076,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikewilliams\",\"birth_date\":\"1987-05-18\",\"espn_id\":13489},\"5951\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034980\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606012210162,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5951\",\"birth_city\":null,\"fantasy_data_id\":20833,\"years_exp\":1,\"hashtag\":\"#IsaiahJohnson-NFL-LV-31\",\"search_first_name\":\"isaiah\",\"rotowire_id\":13793,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1558,\"age\":24,\"full_name\":\"Isaiah Johnson\",\"sportradar_id\":\"079575a5-029c-4960-bd45-66cd63f659fb\",\"pandascore_id\":null,\"yahoo_id\":31961,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Rudder (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"isaiahjohnson\",\"birth_date\":\"1995-12-20\",\"espn_id\":3126182},\"156\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025557\",\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534088707204,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gay\",\"depth_chart_position\":null,\"player_id\":\"156\",\"birth_city\":null,\"fantasy_data_id\":4122,\"years_exp\":13,\"hashtag\":\"#WilliamGay-NFL-FA-25\",\"search_first_name\":\"william\",\"rotowire_id\":6211,\"rotoworld_id\":4319,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"William Gay\",\"sportradar_id\":\"a2907a39-139b-483f-8369-e278c26a6951\",\"pandascore_id\":null,\"yahoo_id\":8424,\"last_name\":\"Gay\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"James R. Rickards (FL)\",\"depth_chart_order\":null,\"stats_id\":229499,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"williamgay\",\"birth_date\":\"1985-01-01\",\"espn_id\":10613},\"1682\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cierre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wood\",\"depth_chart_position\":null,\"player_id\":\"1682\",\"birth_city\":null,\"fantasy_data_id\":15498,\"years_exp\":7,\"hashtag\":\"#CierreWood-NFL-FA-41\",\"search_first_name\":\"cierre\",\"rotowire_id\":8629,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Cierre Wood\",\"sportradar_id\":\"37c05a5b-aead-4e8e-ac3d-47c8570f6a96\",\"pandascore_id\":null,\"yahoo_id\":27313,\"last_name\":\"Wood\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Santa Clara (CA)\",\"depth_chart_order\":null,\"stats_id\":509563,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cierrewood\",\"birth_date\":\"1991-02-21\",\"espn_id\":16496},\"4044\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"linehan\",\"depth_chart_position\":null,\"player_id\":\"4044\",\"birth_city\":null,\"fantasy_data_id\":18888,\"years_exp\":0,\"hashtag\":\"#ScottLinehan-NFL-FA-0\",\"search_first_name\":\"scott\",\"rotowire_id\":null,\"rotoworld_id\":9343,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Scott Linehan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Linehan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"scottlinehan\",\"birth_date\":null,\"espn_id\":null},\"4351\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033375\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606410657746,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patrick\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4351\",\"birth_city\":null,\"fantasy_data_id\":19207,\"years_exp\":3,\"hashtag\":\"#TimPatrick-NFL-DEN-81\",\"search_first_name\":\"tim\",\"rotowire_id\":12061,\"rotoworld_id\":12501,\"active\":true,\"search_rank\":241,\"age\":27,\"full_name\":\"Tim Patrick\",\"sportradar_id\":\"2a443351-5e63-4a49-819e-912b51a745f2\",\"pandascore_id\":null,\"yahoo_id\":30511,\"last_name\":\"Patrick\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Utah\",\"high_school\":\"University City (CA)\",\"depth_chart_order\":1,\"stats_id\":838179,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'4\\\"\",\"search_full_name\":\"timpatrick\",\"birth_date\":\"1993-11-23\",\"espn_id\":3134353},\"4136\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033551\",\"first_name\":\"Rasul\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606064418409,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"douglas\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4136\",\"birth_city\":null,\"fantasy_data_id\":18982,\"years_exp\":3,\"hashtag\":\"#RasulDouglas-NFL-CAR-24\",\"search_first_name\":\"rasul\",\"rotowire_id\":12013,\"rotoworld_id\":12277,\"active\":true,\"search_rank\":1166,\"age\":26,\"full_name\":\"Rasul Douglas\",\"sportradar_id\":\"ff89ab1d-4c9c-4e8b-943d-6a9305c5793e\",\"pandascore_id\":null,\"yahoo_id\":30212,\"last_name\":\"Douglas\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"East Orange (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rasuldouglas\",\"birth_date\":\"1994-08-29\",\"espn_id\":3943270},\"3542\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deandre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reaves\",\"depth_chart_position\":null,\"player_id\":\"3542\",\"birth_city\":null,\"fantasy_data_id\":18310,\"years_exp\":0,\"hashtag\":\"#DeandreReaves-NFL-FA-88\",\"search_first_name\":\"deandre\",\"rotowire_id\":11488,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Deandre Reaves\",\"sportradar_id\":\"e7f679fc-6809-478a-ba62-76ce8930ac40\",\"pandascore_id\":null,\"yahoo_id\":29529,\"last_name\":\"Reaves\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696409,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"deandrereaves\",\"birth_date\":\"1992-04-30\",\"espn_id\":2979200},\"561\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cassius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vaughn\",\"depth_chart_position\":null,\"player_id\":\"561\",\"birth_city\":null,\"fantasy_data_id\":11199,\"years_exp\":10,\"hashtag\":\"#CassiusVaughn-NFL-FA-20\",\"search_first_name\":\"cassius\",\"rotowire_id\":7172,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Cassius Vaughn\",\"sportradar_id\":\"0fedaa7f-31e9-4084-9546-24b9555c8261\",\"pandascore_id\":null,\"yahoo_id\":24382,\"last_name\":\"Vaughn\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Memphis East (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cassiusvaughn\",\"birth_date\":\"1987-11-03\",\"espn_id\":13797},\"6373\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035491\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599596141319,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6373\",\"birth_city\":null,\"fantasy_data_id\":21318,\"years_exp\":1,\"hashtag\":\"#AJRichardson-NFL-ARI-83\",\"search_first_name\":\"aj\",\"rotowire_id\":14043,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"A.J. Richardson\",\"sportradar_id\":\"3ad7f1fa-2389-4cea-94a1-28c5479ca542\",\"pandascore_id\":null,\"yahoo_id\":32159,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Narbonne (CA)\",\"depth_chart_order\":3,\"stats_id\":824132,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ajrichardson\",\"birth_date\":\"1995-06-02\",\"espn_id\":3124369},\"4274\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033589\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606523729188,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4274\",\"birth_city\":null,\"fantasy_data_id\":19120,\"years_exp\":3,\"hashtag\":\"#DavidMoore-NFL-SEA-83\",\"search_first_name\":\"david\",\"rotowire_id\":12216,\"rotoworld_id\":12427,\"active\":true,\"search_rank\":249,\"age\":25,\"full_name\":\"David Moore\",\"sportradar_id\":\"aecc1809-4628-4c3a-8b2b-c8f2858d2492\",\"pandascore_id\":null,\"yahoo_id\":30339,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"East Central\",\"high_school\":\"Gainesville (TX)\",\"depth_chart_order\":1,\"stats_id\":1049915,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidmoore\",\"birth_date\":\"1995-01-15\",\"espn_id\":4212909},\"5201\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034632\",\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535742407291,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swanson\",\"depth_chart_position\":null,\"player_id\":\"5201\",\"birth_city\":null,\"fantasy_data_id\":20136,\"years_exp\":2,\"hashtag\":\"#TerrySwanson-NFL-FA-42\",\"search_first_name\":\"terry\",\"rotowire_id\":13021,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Terry Swanson\",\"sportradar_id\":\"878d42bc-8f58-41b2-9179-46a0c834e219\",\"pandascore_id\":null,\"yahoo_id\":31590,\"last_name\":\"Swanson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":833513,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"terryswanson\",\"birth_date\":\"1996-08-06\",\"espn_id\":3126113},\"7403\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"juriga\",\"depth_chart_position\":\"C\",\"player_id\":\"7403\",\"birth_city\":null,\"fantasy_data_id\":22388,\"years_exp\":0,\"hashtag\":\"#LukeJuriga-NFL-PHI-74\",\"search_first_name\":\"luke\",\"rotowire_id\":14876,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Luke Juriga\",\"sportradar_id\":\"1144d517-25dd-4b04-b316-d0bfc0d0c36f\",\"pandascore_id\":null,\"yahoo_id\":32965,\"last_name\":\"Juriga\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Marmion Academy (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lukejuriga\",\"birth_date\":\"1997-06-07\",\"espn_id\":3916744},\"3581\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lucas\",\"depth_chart_position\":null,\"player_id\":\"3581\",\"birth_city\":null,\"fantasy_data_id\":18360,\"years_exp\":4,\"hashtag\":\"#MarquisLucas-NFL-FA-0\",\"search_first_name\":\"marquis\",\"rotowire_id\":11325,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marquis Lucas\",\"sportradar_id\":\"fc0325d2-cc5e-48f6-a494-506bb14c8df1\",\"pandascore_id\":null,\"yahoo_id\":29554,\"last_name\":\"Lucas\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marquislucas\",\"birth_date\":\"1993-03-25\",\"espn_id\":2581819},\"5713\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034701\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"5713\",\"birth_city\":null,\"fantasy_data_id\":20625,\"years_exp\":2,\"hashtag\":\"#MikeJones-NFL-FA-23\",\"search_first_name\":\"mike\",\"rotowire_id\":13313,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Jones\",\"sportradar_id\":\"47abba7f-63e6-41e5-ac8f-9b3f274db595\",\"pandascore_id\":null,\"yahoo_id\":31703,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'9\\\"\",\"search_full_name\":\"mikejones\",\"birth_date\":null,\"espn_id\":3920576},\"3907\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kerbyson\",\"depth_chart_position\":null,\"player_id\":\"3907\",\"birth_city\":null,\"fantasy_data_id\":18733,\"years_exp\":0,\"hashtag\":\"#KylerKerbyson-NFL-FA-60\",\"search_first_name\":\"kyler\",\"rotowire_id\":11607,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kyler Kerbyson\",\"sportradar_id\":\"31836178-f327-4cce-b739-7feb3a5d3300\",\"pandascore_id\":null,\"yahoo_id\":30036,\"last_name\":\"Kerbyson\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylerkerbyson\",\"birth_date\":null,\"espn_id\":null},\"5538\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034254\",\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lauina\",\"depth_chart_position\":null,\"player_id\":\"5538\",\"birth_city\":null,\"fantasy_data_id\":20571,\"years_exp\":2,\"hashtag\":\"#FredLauina-NFL-FA-60\",\"search_first_name\":\"fred\",\"rotowire_id\":13144,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Fred Lauina\",\"sportradar_id\":\"19dd5977-ff82-4fa9-baa3-643a0c49e615\",\"pandascore_id\":null,\"yahoo_id\":31458,\"last_name\":\"Lauina\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"fredlauina\",\"birth_date\":\"1995-05-17\",\"espn_id\":3056493},\"7293\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luq\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596205816344,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barcoo\",\"depth_chart_position\":\"LCB\",\"player_id\":\"7293\",\"birth_city\":null,\"fantasy_data_id\":22289,\"years_exp\":0,\"hashtag\":\"#LuqBarcoo-NFL-JAX-36\",\"search_first_name\":\"luq\",\"rotowire_id\":14950,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1970,\"age\":22,\"full_name\":\"Luq Barcoo\",\"sportradar_id\":\"56d8015b-aed7-4a46-868e-a85672cde790\",\"pandascore_id\":null,\"yahoo_id\":33115,\"last_name\":\"Barcoo\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Castle Park (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'1\\\"\",\"search_full_name\":\"luqbarcoo\",\"birth_date\":\"1998-07-27\",\"espn_id\":4361499},\"7439\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605385859365,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hudson\",\"depth_chart_position\":\"TE\",\"player_id\":\"7439\",\"birth_city\":null,\"fantasy_data_id\":22418,\"years_exp\":0,\"hashtag\":\"#TommyHudson-NFL-TEN-89\",\"search_first_name\":\"tommy\",\"rotowire_id\":15159,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tommy Hudson\",\"sportradar_id\":\"62d557bc-ee99-4703-83f8-e7b1ca0c89e7\",\"pandascore_id\":null,\"yahoo_id\":33340,\"last_name\":\"Hudson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Arizona State\",\"high_school\":\"Archbishop Mitty (CA)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tommyhudson\",\"birth_date\":\"1997-02-22\",\"espn_id\":3675550},\"6832\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kalija\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603230339760,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lipscomb\",\"depth_chart_position\":null,\"player_id\":\"6832\",\"birth_city\":null,\"fantasy_data_id\":21716,\"years_exp\":0,\"hashtag\":\"#KalijaLipscomb-NFL-GB-81\",\"search_first_name\":\"kalija\",\"rotowire_id\":14640,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kalija Lipscomb\",\"sportradar_id\":\"528b6f5c-7043-4c5a-bb04-7314b1e0f155\",\"pandascore_id\":null,\"yahoo_id\":32946,\"last_name\":\"Lipscomb\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Jesuit (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kalijalipscomb\",\"birth_date\":\"1997-10-06\",\"espn_id\":4035277},\"188\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022803\",\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1579739719326,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"manning\",\"depth_chart_position\":null,\"player_id\":\"188\",\"birth_city\":null,\"fantasy_data_id\":4932,\"years_exp\":16,\"hashtag\":\"#EliManning-NFL-FA-10\",\"search_first_name\":\"eli\",\"rotowire_id\":3763,\"rotoworld_id\":1657,\"active\":true,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Eli Manning\",\"sportradar_id\":\"6cb6226e-f08c-4192-95f1-69709ed686c6\",\"pandascore_id\":null,\"yahoo_id\":6760,\"last_name\":\"Manning\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Isidore Newman (LA)\",\"depth_chart_order\":null,\"stats_id\":246051,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'5\\\"\",\"search_full_name\":\"elimanning\",\"birth_date\":\"1981-01-03\",\"espn_id\":5526},\"2317\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032143\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606417258878,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shelton\",\"depth_chart_position\":\"LDT\",\"player_id\":\"2317\",\"birth_city\":null,\"fantasy_data_id\":16773,\"years_exp\":5,\"hashtag\":\"#DannyShelton-NFL-DET-71\",\"search_first_name\":\"danny\",\"rotowire_id\":10310,\"rotoworld_id\":10339,\"active\":true,\"search_rank\":852,\"age\":27,\"full_name\":\"Danny Shelton\",\"sportradar_id\":\"cb491475-1814-4914-9777-fb865ae0d70b\",\"pandascore_id\":null,\"yahoo_id\":28400,\"last_name\":\"Shelton\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Auburn (WA)\",\"depth_chart_order\":1,\"stats_id\":608018,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dannyshelton\",\"birth_date\":\"1993-08-20\",\"espn_id\":2578384},\"4897\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dean\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pees\",\"depth_chart_position\":null,\"player_id\":\"4897\",\"birth_city\":null,\"fantasy_data_id\":19767,\"years_exp\":0,\"hashtag\":\"#DeanPees-NFL-FA-0\",\"search_first_name\":\"dean\",\"rotowire_id\":null,\"rotoworld_id\":9488,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dean Pees\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pees\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"deanpees\",\"birth_date\":null,\"espn_id\":null},\"3609\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"3609\",\"birth_city\":null,\"fantasy_data_id\":18396,\"years_exp\":0,\"hashtag\":\"#ChrisKing-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":11618,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris King\",\"sportradar_id\":\"41ce26a1-1afc-4c4f-976f-48c87a526c36\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Duquesne\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisking\",\"birth_date\":\"1993-12-13\",\"espn_id\":null},\"6017\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035475\",\"first_name\":\"DaMarkus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599409559842,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lodge\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6017\",\"birth_city\":null,\"fantasy_data_id\":20860,\"years_exp\":1,\"hashtag\":\"#DaMarkusLodge-NFL-FA-0\",\"search_first_name\":\"damarkus\",\"rotowire_id\":13658,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"DaMarkus Lodge\",\"sportradar_id\":\"aa916eb5-53cf-4895-b979-540f433be2e1\",\"pandascore_id\":null,\"yahoo_id\":32483,\"last_name\":\"Lodge\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":884088,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"damarkuslodge\",\"birth_date\":\"1997-05-12\",\"espn_id\":3930064},\"5633\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034595\",\"first_name\":\"Nyles\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1534894224546,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"5633\",\"birth_city\":null,\"fantasy_data_id\":20261,\"years_exp\":2,\"hashtag\":\"#NylesMorgan-NFL-FA-60\",\"search_first_name\":\"nyles\",\"rotowire_id\":13239,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nyles Morgan\",\"sportradar_id\":\"8044439b-4873-4d1a-ba45-0e3365d889cc\",\"pandascore_id\":null,\"yahoo_id\":31661,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nylesmorgan\",\"birth_date\":null,\"espn_id\":3129306},\"2705\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":null,\"player_id\":\"2705\",\"birth_city\":null,\"fantasy_data_id\":17173,\"years_exp\":0,\"hashtag\":\"#AnthonyJefferson-NFL-FA-46\",\"search_first_name\":\"anthony\",\"rotowire_id\":10620,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Jefferson\",\"sportradar_id\":\"f07bdacd-b899-46e3-8189-435f224a4017\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonyjefferson\",\"birth_date\":\"1992-05-11\",\"espn_id\":2510861},\"3439\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032701\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596771350105,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"brendel\",\"depth_chart_position\":null,\"player_id\":\"3439\",\"birth_city\":null,\"fantasy_data_id\":18203,\"years_exp\":4,\"hashtag\":\"#JakeBrendel-NFL-SF-64\",\"search_first_name\":\"jake\",\"rotowire_id\":10918,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jake Brendel\",\"sportradar_id\":\"658f1215-e84a-4170-aaea-a6e8bacc8ff5\",\"pandascore_id\":null,\"yahoo_id\":29887,\"last_name\":\"Brendel\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Plano East (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jakebrendel\",\"birth_date\":\"1992-09-10\",\"espn_id\":2577185},\"3610\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032503\",\"first_name\":\"Givens\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"3610\",\"birth_city\":null,\"fantasy_data_id\":18397,\"years_exp\":4,\"hashtag\":\"#GivensPrice-NFL-FA-78\",\"search_first_name\":\"givens\",\"rotowire_id\":11298,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Givens Price\",\"sportradar_id\":\"a4bf7889-f726-4bb7-a390-c962d6cc04bf\",\"pandascore_id\":null,\"yahoo_id\":29583,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"givensprice\",\"birth_date\":\"1994-10-03\",\"espn_id\":2576355},\"7165\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dickinson\",\"depth_chart_position\":null,\"player_id\":\"7165\",\"birth_city\":null,\"fantasy_data_id\":22167,\"years_exp\":0,\"hashtag\":\"#DrewDickinson-NFL-FA-0\",\"search_first_name\":\"drew\",\"rotowire_id\":15100,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Drew Dickinson\",\"sportradar_id\":\"5c43378f-ff09-466d-b767-150d3c3e620e\",\"pandascore_id\":null,\"yahoo_id\":33076,\"last_name\":\"Dickinson\",\"metadata\":null,\"college\":\"Findlay\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"drewdickinson\",\"birth_date\":\"1997-05-05\",\"espn_id\":null},\"873\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rahim\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"873\",\"birth_city\":null,\"fantasy_data_id\":13024,\"years_exp\":9,\"hashtag\":\"#RahimMoore-NFL-FA-20\",\"search_first_name\":\"rahim\",\"rotowire_id\":7524,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Rahim Moore\",\"sportradar_id\":\"6d54b233-5b67-4e16-9b4d-7e32f28abd07\",\"pandascore_id\":null,\"yahoo_id\":24832,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Susan Miller Dorsey (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rahimmoore\",\"birth_date\":\"1990-02-11\",\"espn_id\":14050},\"1994\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031264\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599407459902,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1994\",\"birth_city\":null,\"fantasy_data_id\":16265,\"years_exp\":6,\"hashtag\":\"#ChrisSmith-NFL-LV-92\",\"search_first_name\":\"chris\",\"rotowire_id\":9409,\"rotoworld_id\":null,\"active\":true,\"search_rank\":796,\"age\":28,\"full_name\":\"Chris Smith\",\"sportradar_id\":\"df08d4a5-2979-469d-9775-ed34fc3f43ee\",\"pandascore_id\":null,\"yahoo_id\":27687,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"West Rowan (NC)\",\"depth_chart_order\":null,\"stats_id\":555584,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrissmith\",\"birth_date\":\"1992-02-11\",\"espn_id\":16917},\"2001\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031102\",\"first_name\":\"Kapri\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1573325156096,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bibbs\",\"depth_chart_position\":null,\"player_id\":\"2001\",\"birth_city\":null,\"fantasy_data_id\":16273,\"years_exp\":6,\"hashtag\":\"#KapriBibbs-NFL-FA-22\",\"search_first_name\":\"kapri\",\"rotowire_id\":9238,\"rotoworld_id\":9581,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kapri Bibbs\",\"sportradar_id\":\"4402b8d5-d6bf-43d0-9198-651506abba76\",\"pandascore_id\":null,\"yahoo_id\":27821,\"last_name\":\"Bibbs\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Plainfield North (IL)\",\"depth_chart_order\":null,\"stats_id\":590943,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kapribibbs\",\"birth_date\":\"1993-01-10\",\"espn_id\":16969},\"1388\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030549\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606519228505,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"eifert\",\"depth_chart_position\":\"TE\",\"player_id\":\"1388\",\"birth_city\":null,\"fantasy_data_id\":14918,\"years_exp\":7,\"hashtag\":\"#TylerEifert-NFL-JAX-88\",\"search_first_name\":\"tyler\",\"rotowire_id\":8782,\"rotoworld_id\":8408,\"active\":true,\"search_rank\":339,\"age\":30,\"full_name\":\"Tyler Eifert\",\"sportradar_id\":\"14ecf9dd-3a77-4847-8e62-407cd1182f1c\",\"pandascore_id\":null,\"yahoo_id\":26644,\"last_name\":\"Eifert\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Bishop Dwenger (IN)\",\"depth_chart_order\":1,\"stats_id\":508968,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tylereifert\",\"birth_date\":\"1990-09-08\",\"espn_id\":15788},\"3551\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wittek\",\"depth_chart_position\":null,\"player_id\":\"3551\",\"birth_city\":null,\"fantasy_data_id\":18322,\"years_exp\":0,\"hashtag\":\"#MaxWittek-NFL-FA-6\",\"search_first_name\":\"max\",\"rotowire_id\":11485,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Max Wittek\",\"sportradar_id\":\"2fb8d62d-f01c-4477-af7f-bd93e40fb3c2\",\"pandascore_id\":null,\"yahoo_id\":29515,\"last_name\":\"Wittek\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591848,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"maxwittek\",\"birth_date\":\"1993-07-31\",\"espn_id\":2577244},\"2426\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031944\",\"first_name\":\"Doran\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grant\",\"depth_chart_position\":null,\"player_id\":\"2426\",\"birth_city\":null,\"fantasy_data_id\":16882,\"years_exp\":5,\"hashtag\":\"#DoranGrant-NFL-FA-35\",\"search_first_name\":\"doran\",\"rotowire_id\":10421,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Doran Grant\",\"sportradar_id\":\"207d740a-6c64-449a-bd24-b90aa85934d3\",\"pandascore_id\":null,\"yahoo_id\":28509,\"last_name\":\"Grant\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Vincent-St. Mary (OH)\",\"depth_chart_order\":null,\"stats_id\":606479,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dorangrant\",\"birth_date\":\"1992-11-30\",\"espn_id\":2576385},\"3445\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032980\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606173015246,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3445\",\"birth_city\":null,\"fantasy_data_id\":18209,\"years_exp\":4,\"hashtag\":\"#MarcusJohnson-NFL-IND-83\",\"search_first_name\":\"marcus\",\"rotowire_id\":11534,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1052,\"age\":26,\"full_name\":\"Marcus Johnson\",\"sportradar_id\":\"fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c\",\"pandascore_id\":null,\"yahoo_id\":29678,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Clear Springs (TX)\",\"depth_chart_order\":2,\"stats_id\":691348,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marcusjohnson\",\"birth_date\":\"1994-08-05\",\"espn_id\":2971718},\"2676\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031728\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1539882652330,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vigil\",\"depth_chart_position\":null,\"player_id\":\"2676\",\"birth_city\":null,\"fantasy_data_id\":17144,\"years_exp\":5,\"hashtag\":\"#ZachVigil-NFL-FA-56\",\"search_first_name\":\"zach\",\"rotowire_id\":10381,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Vigil\",\"sportradar_id\":\"775d6455-bc3c-4fd0-9adf-ae105f71fc95\",\"pandascore_id\":null,\"yahoo_id\":28916,\"last_name\":\"Vigil\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Clearfield (UT)\",\"depth_chart_order\":null,\"stats_id\":544486,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zachvigil\",\"birth_date\":\"1991-03-28\",\"espn_id\":2517389},\"6467\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035073\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597375836171,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"6467\",\"birth_city\":null,\"fantasy_data_id\":21466,\"years_exp\":1,\"hashtag\":\"#JonathanHarris-NFL-DEN-92\",\"search_first_name\":\"jonathan\",\"rotowire_id\":14144,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1741,\"age\":24,\"full_name\":\"Jonathan Harris\",\"sportradar_id\":\"29815a83-1d6b-4e1b-b1c6-9bf44e7166c9\",\"pandascore_id\":null,\"yahoo_id\":32254,\"last_name\":\"Harris\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Lindenwood\",\"high_school\":\"Waubonsie Valley (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonathanharris\",\"birth_date\":\"1996-08-04\",\"espn_id\":4422407},\"4786\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jhajuan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1508894461535,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seales\",\"depth_chart_position\":null,\"player_id\":\"4786\",\"birth_city\":null,\"fantasy_data_id\":19438,\"years_exp\":3,\"hashtag\":\"#JhajuanSeales-NFL-FA-0\",\"search_first_name\":\"jhajuan\",\"rotowire_id\":12180,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jhajuan Seales\",\"sportradar_id\":\"38561e86-2763-49ee-bd08-b74b0f6b24b3\",\"pandascore_id\":null,\"yahoo_id\":30727,\"last_name\":\"Seales\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jhajuanseales\",\"birth_date\":\"1993-11-26\",\"espn_id\":2977745},\"5229\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034093\",\"first_name\":\"Henre'\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567821923486,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toliver\",\"depth_chart_position\":null,\"player_id\":\"5229\",\"birth_city\":null,\"fantasy_data_id\":20143,\"years_exp\":2,\"hashtag\":\"#HenreToliver-NFL-FA-0\",\"search_first_name\":\"henre\",\"rotowire_id\":12960,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Henre' Toliver\",\"sportradar_id\":\"b0a7f6dc-0409-43fb-81c7-fbd8629445a3\",\"pandascore_id\":null,\"yahoo_id\":31375,\"last_name\":\"Toliver\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"henretoliver\",\"birth_date\":\"1996-10-21\",\"espn_id\":3128687},\"303\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026327\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1551901840169,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sullivan\",\"depth_chart_position\":null,\"player_id\":\"303\",\"birth_city\":null,\"fantasy_data_id\":7509,\"years_exp\":12,\"hashtag\":\"#JohnSullivan-NFL-FA-65\",\"search_first_name\":\"john\",\"rotowire_id\":6404,\"rotoworld_id\":4930,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"John Sullivan\",\"sportradar_id\":\"7f87c105-e608-4911-8897-31cc5a443175\",\"pandascore_id\":null,\"yahoo_id\":8964,\"last_name\":\"Sullivan\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Greenwich (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnsullivan\",\"birth_date\":\"1985-08-08\",\"espn_id\":11421},\"6524\":{\"position\":\"WR\",\"injury_notes\":\"Jordan has landed on the injured reserve list due to an unspecified injury.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamire\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1558277108110,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jordan\",\"depth_chart_position\":null,\"player_id\":\"6524\",\"birth_city\":null,\"fantasy_data_id\":21381,\"years_exp\":1,\"hashtag\":\"#JamireJordan-NFL-KC-1\",\"search_first_name\":\"jamire\",\"rotowire_id\":14181,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jamire Jordan\",\"sportradar_id\":\"91bd5e05-4549-4202-bf7b-6bbd335d038d\",\"pandascore_id\":null,\"yahoo_id\":32361,\"last_name\":\"Jordan\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":838444,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"167\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jamirejordan\",\"birth_date\":null,\"espn_id\":3124538},\"6146\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034988\",\"first_name\":\"Kaden\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606316761010,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"TE\",\"player_id\":\"6146\",\"birth_city\":null,\"fantasy_data_id\":20946,\"years_exp\":1,\"hashtag\":\"#KadenSmith-NFL-NYG-82\",\"search_first_name\":\"kaden\",\"rotowire_id\":13516,\"rotoworld_id\":null,\"active\":true,\"search_rank\":469,\"age\":23,\"full_name\":\"Kaden Smith\",\"sportradar_id\":\"7bb7f5e7-f00e-47d8-954d-90bf5baf4292\",\"pandascore_id\":null,\"yahoo_id\":32008,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Marcus (TX)\",\"depth_chart_order\":3,\"stats_id\":924018,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kadensmith\",\"birth_date\":\"1997-04-24\",\"espn_id\":4044452},\"4925\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wade\",\"depth_chart_position\":null,\"player_id\":\"4925\",\"birth_city\":null,\"fantasy_data_id\":19313,\"years_exp\":1,\"hashtag\":\"#JordanWade-NFL-OAK-0\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jordan Wade\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30636,\"last_name\":\"Wade\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"OAK\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanwade\",\"birth_date\":null,\"espn_id\":null},\"2977\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Collin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rahrig\",\"depth_chart_position\":null,\"player_id\":\"2977\",\"birth_city\":null,\"fantasy_data_id\":17475,\"years_exp\":1,\"hashtag\":\"#CollinRahrig-NFL-FA-64\",\"search_first_name\":\"collin\",\"rotowire_id\":10742,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Collin Rahrig\",\"sportradar_id\":\"f2d5cb5d-f14e-462a-92f8-bb14215c9c32\",\"pandascore_id\":null,\"yahoo_id\":28668,\"last_name\":\"Rahrig\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'2\\\"\",\"search_full_name\":\"collinrahrig\",\"birth_date\":\"1991-10-31\",\"espn_id\":null},\"3615\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sione\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"houma\",\"depth_chart_position\":null,\"player_id\":\"3615\",\"birth_city\":null,\"fantasy_data_id\":18402,\"years_exp\":0,\"hashtag\":\"#SioneHouma-NFL-FA-39\",\"search_first_name\":\"sione\",\"rotowire_id\":11505,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Sione Houma\",\"sportradar_id\":\"1fceb08d-a00b-4e4e-9b51-4193967f6597\",\"pandascore_id\":null,\"yahoo_id\":29851,\"last_name\":\"Houma\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696133,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sionehouma\",\"birth_date\":\"1994-06-21\",\"espn_id\":2977614},\"5372\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034384\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606431660165,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"5372\",\"birth_city\":null,\"fantasy_data_id\":19953,\"years_exp\":2,\"hashtag\":\"#DJReed-NFL-SEA-29\",\"search_first_name\":\"dj\",\"rotowire_id\":12505,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1364,\"age\":24,\"full_name\":\"D.J. Reed\",\"sportradar_id\":\"17664e93-8236-4eb0-9505-4e71f43b5a7d\",\"pandascore_id\":null,\"yahoo_id\":31112,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Independence (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"djreed\",\"birth_date\":\"1996-11-11\",\"espn_id\":3139387},\"2148\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khyri\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1514049301397,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thornton\",\"depth_chart_position\":null,\"player_id\":\"2148\",\"birth_city\":null,\"fantasy_data_id\":16493,\"years_exp\":6,\"hashtag\":\"#KhyriThornton-NFL-FA-95\",\"search_first_name\":\"khyri\",\"rotowire_id\":9606,\"rotoworld_id\":9562,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Khyri Thornton\",\"sportradar_id\":\"9d634077-7caf-4bd8-9cd7-661f016311bf\",\"pandascore_id\":null,\"yahoo_id\":27613,\"last_name\":\"Thornton\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Bay (FL)\",\"depth_chart_order\":null,\"stats_id\":512985,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"khyrithornton\",\"birth_date\":\"1989-11-21\",\"espn_id\":16756},\"5126\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034442\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1549494024042,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"proehl\",\"depth_chart_position\":null,\"player_id\":\"5126\",\"birth_city\":null,\"fantasy_data_id\":20052,\"years_exp\":2,\"hashtag\":\"#AustinProehl-NFL-FA-87\",\"search_first_name\":\"austin\",\"rotowire_id\":13016,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Proehl\",\"sportradar_id\":\"fc7f8c60-4fc2-45d1-9611-e803dbb1611e\",\"pandascore_id\":null,\"yahoo_id\":31225,\"last_name\":\"Proehl\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823135,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'11\\\"\",\"search_full_name\":\"austinproehl\",\"birth_date\":\"1995-10-11\",\"espn_id\":3116680},\"4747\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stevie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"donatell\",\"depth_chart_position\":null,\"player_id\":\"4747\",\"birth_city\":null,\"fantasy_data_id\":19665,\"years_exp\":2,\"hashtag\":\"#StevieDonatell-NFL-FA-87\",\"search_first_name\":\"stevie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Stevie Donatell\",\"sportradar_id\":\"28f28af2-db5b-4c4f-b54b-3dd0651d21a6\",\"pandascore_id\":null,\"yahoo_id\":30897,\"last_name\":\"Donatell\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691675,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'5\\\"\",\"search_full_name\":\"steviedonatell\",\"birth_date\":\"1994-03-05\",\"espn_id\":2970133},\"5202\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034628\",\"first_name\":\"Jaryd\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1581394856442,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jonessmith\",\"depth_chart_position\":\"RT\",\"player_id\":\"5202\",\"birth_city\":null,\"fantasy_data_id\":20137,\"years_exp\":2,\"hashtag\":\"#JarydJonesSmith-NFL-LV-72\",\"search_first_name\":\"jaryd\",\"rotowire_id\":12679,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jaryd Jones-Smith\",\"sportradar_id\":\"c0561c0e-ca00-48bf-a38b-2636451c1640\",\"pandascore_id\":null,\"yahoo_id\":31583,\"last_name\":\"Jones-Smith\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"West Catholic (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jarydjonessmith\",\"birth_date\":\"1995-09-03\",\"espn_id\":3045160},\"3398\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lawler\",\"depth_chart_position\":null,\"player_id\":\"3398\",\"birth_city\":null,\"fantasy_data_id\":18159,\"years_exp\":3,\"hashtag\":\"#KennyLawler-NFL-FA-11\",\"search_first_name\":\"kenny\",\"rotowire_id\":10749,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kenny Lawler\",\"sportradar_id\":\"bd0d16ba-cb86-4f49-8064-bb17cedef96b\",\"pandascore_id\":null,\"yahoo_id\":29477,\"last_name\":\"Lawler\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690968,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kennylawler\",\"birth_date\":\"1994-06-25\",\"espn_id\":2978201},\"5082\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034276\",\"first_name\":\"Simeon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600125303710,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"5082\",\"birth_city\":null,\"fantasy_data_id\":19971,\"years_exp\":2,\"hashtag\":\"#SimeonThomas-NFL-WAS-38\",\"search_first_name\":\"simeon\",\"rotowire_id\":12991,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1375,\"age\":26,\"full_name\":\"Simeon Thomas\",\"sportradar_id\":\"c0520c25-b89b-4f4b-a905-dd0c5612cf88\",\"pandascore_id\":null,\"yahoo_id\":31158,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Carol City (FL)\",\"depth_chart_order\":null,\"stats_id\":736989,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'3\\\"\",\"search_full_name\":\"simeonthomas\",\"birth_date\":\"1993-09-22\",\"espn_id\":3042496},\"5619\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034654\",\"first_name\":\"Dalyn\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605141607536,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dawkins\",\"depth_chart_position\":\"RB\",\"player_id\":\"5619\",\"birth_city\":null,\"fantasy_data_id\":20600,\"years_exp\":2,\"hashtag\":\"#DalynDawkins-NFL-DET-28\",\"search_first_name\":\"dalyn\",\"rotowire_id\":13293,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1497,\"age\":25,\"full_name\":\"Dalyn Dawkins\",\"sportradar_id\":\"12c39c1f-d579-4bd5-b736-62afd23b8208\",\"pandascore_id\":null,\"yahoo_id\":31620,\"last_name\":\"Dawkins\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Trinity (KY)\",\"depth_chart_order\":5,\"stats_id\":749064,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'7\\\"\",\"search_full_name\":\"dalyndawkins\",\"birth_date\":\"1994-12-12\",\"espn_id\":3052449},\"3736\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arturo\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"uzdavinis\",\"depth_chart_position\":null,\"player_id\":\"3736\",\"birth_city\":null,\"fantasy_data_id\":18547,\"years_exp\":3,\"hashtag\":\"#ArturoUzdavinis-NFL-FA-65\",\"search_first_name\":\"arturo\",\"rotowire_id\":11478,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Arturo Uzdavinis\",\"sportradar_id\":\"23df9fc6-0fc7-4ad8-9f64-e4c8b939859f\",\"pandascore_id\":null,\"yahoo_id\":29809,\"last_name\":\"Uzdavinis\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'7\\\"\",\"search_full_name\":\"arturouzdavinis\",\"birth_date\":\"1992-11-02\",\"espn_id\":2575421},\"3415\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032580\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1578183630781,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RCB\",\"player_id\":\"3415\",\"birth_city\":null,\"fantasy_data_id\":18177,\"years_exp\":4,\"hashtag\":\"#JonathanJones-NFL-NE-31\",\"search_first_name\":\"jonathan\",\"rotowire_id\":11081,\"rotoworld_id\":11638,\"active\":true,\"search_rank\":1047,\"age\":27,\"full_name\":\"Jonathan Jones\",\"sportradar_id\":\"537c88d4-c403-43f4-94a1-fdccea0ee24a\",\"pandascore_id\":null,\"yahoo_id\":29875,\"last_name\":\"Jones\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Auburn\",\"high_school\":\"Carrollton (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathanjones\",\"birth_date\":\"1993-09-20\",\"espn_id\":2971027},\"805\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kearse\",\"depth_chart_position\":null,\"player_id\":\"805\",\"birth_city\":null,\"fantasy_data_id\":12758,\"years_exp\":9,\"hashtag\":\"#FrankKearse-NFL-FA-72\",\"search_first_name\":\"frank\",\"rotowire_id\":7584,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Frank Kearse\",\"sportradar_id\":\"519b3fe8-6054-48dd-8c34-2517ffcff90d\",\"pandascore_id\":null,\"yahoo_id\":25018,\"last_name\":\"Kearse\",\"metadata\":null,\"college\":\"Alabama A&M\",\"high_school\":\"Savannah (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"frankkearse\",\"birth_date\":\"1988-10-28\",\"espn_id\":14176},\"2245\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031044\",\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1565135426471,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"niklas\",\"depth_chart_position\":null,\"player_id\":\"2245\",\"birth_city\":null,\"fantasy_data_id\":16648,\"years_exp\":6,\"hashtag\":\"#TroyNiklas-NFL-FA-89\",\"search_first_name\":\"troy\",\"rotowire_id\":9292,\"rotoworld_id\":9319,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Troy Niklas\",\"sportradar_id\":\"2b159c76-53d6-4670-b341-392bc7d6d5f2\",\"pandascore_id\":null,\"yahoo_id\":27580,\"last_name\":\"Niklas\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Servite (CA)\",\"depth_chart_order\":null,\"stats_id\":610949,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'6\\\"\",\"search_full_name\":\"troyniklas\",\"birth_date\":\"1992-09-18\",\"espn_id\":16797},\"3282\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032405\",\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1557177924283,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beavers\",\"depth_chart_position\":null,\"player_id\":\"3282\",\"birth_city\":null,\"fantasy_data_id\":18043,\"years_exp\":4,\"hashtag\":\"#WillieBeavers-NFL-ATL-71\",\"search_first_name\":\"willie\",\"rotowire_id\":10904,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Willie Beavers\",\"sportradar_id\":\"e4250936-5b20-4f18-80cd-7a0b8fa7964a\",\"pandascore_id\":null,\"yahoo_id\":29355,\"last_name\":\"Beavers\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Southfield-Lathrup (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'5\\\"\",\"search_full_name\":\"williebeavers\",\"birth_date\":\"1993-10-02\",\"espn_id\":2587711},\"1203\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029681\",\"first_name\":\"Janoris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606131012148,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":\"LCB\",\"player_id\":\"1203\",\"birth_city\":null,\"fantasy_data_id\":14412,\"years_exp\":8,\"hashtag\":\"#JanorisJenkins-NFL-NO-20\",\"search_first_name\":\"janoris\",\"rotowire_id\":8164,\"rotoworld_id\":6473,\"active\":true,\"search_rank\":684,\"age\":32,\"full_name\":\"Janoris Jenkins\",\"sportradar_id\":\"be7e6d3f-a5d5-4ba9-b694-5bdacab75606\",\"pandascore_id\":null,\"yahoo_id\":25749,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"North Alabama\",\"high_school\":\"Pahokee (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"janorisjenkins\",\"birth_date\":\"1988-10-29\",\"espn_id\":14974},\"2159\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Undisclosed\",\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"2159\",\"birth_city\":null,\"fantasy_data_id\":16506,\"years_exp\":1,\"hashtag\":\"#KendallJames-NFL-FA-36\",\"search_first_name\":\"kendall\",\"rotowire_id\":9688,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kendall James\",\"sportradar_id\":\"f58def24-67c6-4052-9147-052173797dc3\",\"pandascore_id\":null,\"yahoo_id\":27712,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kendalljames\",\"birth_date\":\"1991-06-29\",\"espn_id\":16854},\"JAX\":{\"team\":\"JAX\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"JAX\",\"last_name\":\"Jaguars\",\"injury_status\":null,\"first_name\":\"Jacksonville\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"6320\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035325\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1586992538062,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"duhart\",\"depth_chart_position\":null,\"player_id\":\"6320\",\"birth_city\":null,\"fantasy_data_id\":21224,\"years_exp\":1,\"hashtag\":\"#JonathanDuhart-NFL-FA-0\",\"search_first_name\":\"jonathan\",\"rotowire_id\":13710,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jonathan Duhart\",\"sportradar_id\":\"596eeb31-4af3-48aa-a87e-59aa2f497fb9\",\"pandascore_id\":null,\"yahoo_id\":32452,\"last_name\":\"Duhart\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835022,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonathanduhart\",\"birth_date\":\"1996-06-26\",\"espn_id\":3123226},\"1104\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029673\",\"first_name\":\"DeVier\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535753791251,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"posey\",\"depth_chart_position\":null,\"player_id\":\"1104\",\"birth_city\":null,\"fantasy_data_id\":13981,\"years_exp\":8,\"hashtag\":\"#DeVierPosey-NFL-FA-85\",\"search_first_name\":\"devier\",\"rotowire_id\":8104,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"DeVier Posey\",\"sportradar_id\":\"9d99148c-0898-4ba1-9454-c5efbdc01f33\",\"pandascore_id\":null,\"yahoo_id\":25778,\"last_name\":\"Posey\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":464363,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"devierposey\",\"birth_date\":\"1990-03-15\",\"espn_id\":14969},\"5879\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035651\",\"first_name\":\"Jaylon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1579813823674,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":\"RUSH\",\"player_id\":\"5879\",\"birth_city\":null,\"fantasy_data_id\":20755,\"years_exp\":1,\"hashtag\":\"#JaylonFerguson-NFL-BAL-45\",\"search_first_name\":\"jaylon\",\"rotowire_id\":13468,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1529,\"age\":24,\"full_name\":\"Jaylon Ferguson\",\"sportradar_id\":\"4706e72c-c7ef-4fa0-b16b-e864a1085dd7\",\"pandascore_id\":null,\"yahoo_id\":31917,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"West Feliciana (LA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jaylonferguson\",\"birth_date\":\"1995-12-14\",\"espn_id\":3122766},\"2780\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wild\",\"depth_chart_position\":null,\"player_id\":\"2780\",\"birth_city\":null,\"fantasy_data_id\":17248,\"years_exp\":1,\"hashtag\":\"#IanWild-NFL-FA-38\",\"search_first_name\":\"ian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ian Wild\",\"sportradar_id\":\"50a0f069-e88f-42cc-bae5-a85ff327a79b\",\"pandascore_id\":null,\"yahoo_id\":26131,\"last_name\":\"Wild\",\"metadata\":null,\"college\":\"Mercyhurst\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ianwild\",\"birth_date\":\"1990-03-13\",\"espn_id\":15266},\"3062\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"payton\",\"depth_chart_position\":null,\"player_id\":\"3062\",\"birth_city\":null,\"fantasy_data_id\":17796,\"years_exp\":0,\"hashtag\":\"#SeanPayton-NFL-FA-0\",\"search_first_name\":\"sean\",\"rotowire_id\":null,\"rotoworld_id\":8355,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Sean Payton\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Payton\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"seanpayton\",\"birth_date\":null,\"espn_id\":null},\"3077\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boras\",\"depth_chart_position\":null,\"player_id\":\"3077\",\"birth_city\":null,\"fantasy_data_id\":17824,\"years_exp\":0,\"hashtag\":\"#RobBoras-NFL-FA-0\",\"search_first_name\":\"rob\",\"rotowire_id\":null,\"rotoworld_id\":11202,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rob Boras\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Boras\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"robboras\",\"birth_date\":null,\"espn_id\":null},\"2072\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jocquel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"skinner\",\"depth_chart_position\":null,\"player_id\":\"2072\",\"birth_city\":null,\"fantasy_data_id\":16377,\"years_exp\":1,\"hashtag\":\"#JocquelSkinner-NFL-FA-47\",\"search_first_name\":\"jocquel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jocquel Skinner\",\"sportradar_id\":\"fe11b6c1-43bd-42ab-9264-ca25b70ad49d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Skinner\",\"metadata\":null,\"college\":\"Bethel (TN)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jocquelskinner\",\"birth_date\":\"1988-05-26\",\"espn_id\":17340},\"5896\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035326\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1570479055029,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lamar\",\"depth_chart_position\":null,\"player_id\":\"5896\",\"birth_city\":null,\"fantasy_data_id\":20851,\"years_exp\":1,\"hashtag\":\"#TreLamar-NFL-FA-59\",\"search_first_name\":\"tre\",\"rotowire_id\":13571,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tre Lamar\",\"sportradar_id\":\"48a49ac2-640c-4ef5-9192-4ba6ccc306ea\",\"pandascore_id\":null,\"yahoo_id\":32453,\"last_name\":\"Lamar\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":913532,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trelamar\",\"birth_date\":\"1997-10-08\",\"espn_id\":4035474},\"2990\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031420\",\"first_name\":\"Kasey\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1572390015052,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redfern\",\"depth_chart_position\":null,\"player_id\":\"2990\",\"birth_city\":null,\"fantasy_data_id\":17501,\"years_exp\":6,\"hashtag\":\"#KaseyRedfern-NFL-FA-1\",\"search_first_name\":\"kasey\",\"rotowire_id\":10131,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kasey Redfern\",\"sportradar_id\":\"728a0b65-0f9d-4af3-944b-b12cd74243bb\",\"pandascore_id\":null,\"yahoo_id\":28307,\"last_name\":\"Redfern\",\"metadata\":null,\"college\":\"Wofford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553515,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kaseyredfern\",\"birth_date\":\"1991-09-26\",\"espn_id\":17495},\"3030\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kai\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"delacruz\",\"depth_chart_position\":null,\"player_id\":\"3030\",\"birth_city\":null,\"fantasy_data_id\":17717,\"years_exp\":null,\"hashtag\":\"#KaiDeLaCruz-NFL-FA-0\",\"search_first_name\":\"kai\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kai De La Cruz\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"De La Cruz\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553723,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kaidelacruz\",\"birth_date\":null,\"espn_id\":null},\"1689\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030035\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606509327693,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"thielen\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1689\",\"birth_city\":null,\"fantasy_data_id\":15534,\"years_exp\":7,\"hashtag\":\"#AdamThielen-NFL-MIN-19\",\"search_first_name\":\"adam\",\"rotowire_id\":8986,\"rotoworld_id\":9054,\"active\":true,\"search_rank\":32,\"age\":30,\"full_name\":\"Adam Thielen\",\"sportradar_id\":\"2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4\",\"pandascore_id\":null,\"yahoo_id\":27277,\"last_name\":\"Thielen\",\"metadata\":null,\"college\":\"Minn. State-Mankato\",\"high_school\":\"Detroit Lakes (MN)\",\"depth_chart_order\":2,\"stats_id\":733643,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"adamthielen\",\"birth_date\":\"1990-08-22\",\"espn_id\":16460},\"2785\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gus\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2785\",\"birth_city\":null,\"fantasy_data_id\":17253,\"years_exp\":1,\"hashtag\":\"#GusJohnson-NFL-FA-49\",\"search_first_name\":\"gus\",\"rotowire_id\":10607,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Gus Johnson\",\"sportradar_id\":\"43159df0-6104-443a-ae90-6c267e6c27ef\",\"pandascore_id\":null,\"yahoo_id\":28965,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":601864,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"5'10\\\"\",\"search_full_name\":\"gusjohnson\",\"birth_date\":\"1993-08-10\",\"espn_id\":2568174},\"2060\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"JC\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"copeland\",\"depth_chart_position\":null,\"player_id\":\"2060\",\"birth_city\":null,\"fantasy_data_id\":16360,\"years_exp\":1,\"hashtag\":\"#JCCopeland-NFL-FA-48\",\"search_first_name\":\"jc\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"JC Copeland\",\"sportradar_id\":\"24986a79-652d-4302-8516-44d7388acbe5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Copeland\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":540508,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"271\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jccopeland\",\"birth_date\":\"1991-07-21\",\"espn_id\":17326},\"1675\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030400\",\"first_name\":\"Marlon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539882634050,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"1675\",\"birth_city\":null,\"fantasy_data_id\":15479,\"years_exp\":7,\"hashtag\":\"#MarlonBrown-NFL-FA-81\",\"search_first_name\":\"marlon\",\"rotowire_id\":8936,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Marlon Brown\",\"sportradar_id\":\"ffec1b11-6b1b-482d-86f0-3bf4f6391dbf\",\"pandascore_id\":null,\"yahoo_id\":27422,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Harding Academy (TN)\",\"depth_chart_order\":null,\"stats_id\":512103,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'5\\\"\",\"search_full_name\":\"marlonbrown\",\"birth_date\":\"1991-04-22\",\"espn_id\":16581},\"3911\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashaun\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simonise\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3911\",\"birth_city\":null,\"fantasy_data_id\":18737,\"years_exp\":0,\"hashtag\":\"#RashaunSimonise-NFL-FA-13\",\"search_first_name\":\"rashaun\",\"rotowire_id\":11602,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rashaun Simonise\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30040,\"last_name\":\"Simonise\",\"metadata\":null,\"college\":\"Calgary, Canada\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":925022,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rashaunsimonise\",\"birth_date\":\"1995-05-31\",\"espn_id\":4036547},\"3091\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1577813731004,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marrone\",\"depth_chart_position\":null,\"player_id\":\"3091\",\"birth_city\":null,\"fantasy_data_id\":17841,\"years_exp\":0,\"hashtag\":\"#DougMarrone-NFL-FA-0\",\"search_first_name\":\"doug\",\"rotowire_id\":null,\"rotoworld_id\":8368,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Doug Marrone\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Marrone\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dougmarrone\",\"birth_date\":null,\"espn_id\":null},\"6721\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jawuan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"6721\",\"birth_city\":null,\"fantasy_data_id\":21642,\"years_exp\":1,\"hashtag\":\"#JawuanJohnson-NFL-FA-46\",\"search_first_name\":\"jawuan\",\"rotowire_id\":13569,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jawuan Johnson\",\"sportradar_id\":\"d2efe0f7-7fd2-429a-be4b-9f80ab4b31be\",\"pandascore_id\":null,\"yahoo_id\":32632,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jawuanjohnson\",\"birth_date\":null,\"espn_id\":3126021},\"5238\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1527812401401,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ramesh\",\"depth_chart_position\":null,\"player_id\":\"5238\",\"birth_city\":null,\"fantasy_data_id\":20210,\"years_exp\":1,\"hashtag\":\"#AustinRamesh-NFL-ARI-45\",\"search_first_name\":\"austin\",\"rotowire_id\":13076,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1011,\"age\":null,\"full_name\":\"Austin Ramesh\",\"sportradar_id\":\"2510a6c1-aabd-4d23-ae14-166c19f898e7\",\"pandascore_id\":null,\"yahoo_id\":31319,\"last_name\":\"Ramesh\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":745908,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'1\\\"\",\"search_full_name\":\"austinramesh\",\"birth_date\":null,\"espn_id\":3053124},\"5601\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034454\",\"first_name\":\"Jamiyus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1569292236267,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pittman\",\"depth_chart_position\":null,\"player_id\":\"5601\",\"birth_city\":null,\"fantasy_data_id\":20321,\"years_exp\":2,\"hashtag\":\"#JamiyusPittman-NFL-FA-65\",\"search_first_name\":\"jamiyus\",\"rotowire_id\":12756,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jamiyus Pittman\",\"sportradar_id\":\"456fb5aa-5ecd-4cf4-819a-a7708ed8f0e3\",\"pandascore_id\":null,\"yahoo_id\":31542,\"last_name\":\"Pittman\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamiyuspittman\",\"birth_date\":\"1994-10-23\",\"espn_id\":3128455},\"3711\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quinshad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"3711\",\"birth_city\":null,\"fantasy_data_id\":18517,\"years_exp\":0,\"hashtag\":\"#QuinshadDavis-NFL-FA-1\",\"search_first_name\":\"quinshad\",\"rotowire_id\":11206,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Quinshad Davis\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29774,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691601,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"quinshaddavis\",\"birth_date\":\"1994-05-24\",\"espn_id\":2970000},\"1368\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030083\",\"first_name\":\"Oday\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1585100746353,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"aboushi\",\"depth_chart_position\":\"LG\",\"player_id\":\"1368\",\"birth_city\":null,\"fantasy_data_id\":14890,\"years_exp\":7,\"hashtag\":\"#OdayAboushi-NFL-DET-76\",\"search_first_name\":\"oday\",\"rotowire_id\":8730,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Oday Aboushi\",\"sportradar_id\":\"d46e3db5-f89f-4211-b8a7-baeb1a35df46\",\"pandascore_id\":null,\"yahoo_id\":26764,\"last_name\":\"Aboushi\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Xaverian (NY)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"odayaboushi\",\"birth_date\":\"1991-06-05\",\"espn_id\":15972},\"1169\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029665\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606439760979,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":\"QB\",\"player_id\":\"1169\",\"birth_city\":null,\"fantasy_data_id\":14257,\"years_exp\":8,\"hashtag\":\"#RobertGriffin-NFL-BAL-3\",\"search_first_name\":\"robert\",\"rotowire_id\":8023,\"rotoworld_id\":7406,\"active\":true,\"search_rank\":484,\"age\":30,\"full_name\":\"Robert Griffin\",\"sportradar_id\":\"8dfb370d-460c-4bfc-9d62-888687248783\",\"pandascore_id\":null,\"yahoo_id\":25712,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Copperas Cove (TX)\",\"depth_chart_order\":2,\"stats_id\":450794,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robertgriffin\",\"birth_date\":\"1990-02-12\",\"espn_id\":14875},\"3460\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1535493930353,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"3460\",\"birth_city\":null,\"fantasy_data_id\":18224,\"years_exp\":4,\"hashtag\":\"#RossMartin-NFL-FA-7\",\"search_first_name\":\"ross\",\"rotowire_id\":11457,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ross Martin\",\"sportradar_id\":\"118c6c2c-1001-4524-851d-53db1f735d3c\",\"pandascore_id\":null,\"yahoo_id\":29793,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691494,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"rossmartin\",\"birth_date\":\"1993-07-03\",\"espn_id\":2969886},\"647\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023516\",\"first_name\":\"Richie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606174521860,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"incognito\",\"depth_chart_position\":null,\"player_id\":\"647\",\"birth_city\":null,\"fantasy_data_id\":11664,\"years_exp\":15,\"hashtag\":\"#RichieIncognito-NFL-LV-64\",\"search_first_name\":\"richie\",\"rotowire_id\":4532,\"rotoworld_id\":3291,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Richie Incognito\",\"sportradar_id\":\"58b30f9c-384f-4e36-9e79-d4442ce8bb31\",\"pandascore_id\":null,\"yahoo_id\":7257,\"last_name\":\"Incognito\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Mountain Ridge (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'3\\\"\",\"search_full_name\":\"richieincognito\",\"birth_date\":\"1983-07-05\",\"espn_id\":8495},\"1233\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029255\",\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604375740470,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wagner\",\"depth_chart_position\":\"MLB\",\"player_id\":\"1233\",\"birth_city\":null,\"fantasy_data_id\":14534,\"years_exp\":8,\"hashtag\":\"#BobbyWagner-NFL-SEA-54\",\"search_first_name\":\"bobby\",\"rotowire_id\":8208,\"rotoworld_id\":7533,\"active\":true,\"search_rank\":690,\"age\":30,\"full_name\":\"Bobby Wagner\",\"sportradar_id\":\"706bc0ab-7200-47e9-9b09-726110eb83dc\",\"pandascore_id\":null,\"yahoo_id\":25757,\"last_name\":\"Wagner\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Colony (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bobbywagner\",\"birth_date\":\"1990-06-27\",\"espn_id\":14979},\"2113\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031079\",\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1552958714162,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"odonnell\",\"depth_chart_position\":null,\"player_id\":\"2113\",\"birth_city\":null,\"fantasy_data_id\":16438,\"years_exp\":6,\"hashtag\":\"#PatODonnell-NFL-CHI-16\",\"search_first_name\":\"pat\",\"rotowire_id\":9769,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Pat O'Donnell\",\"sportradar_id\":\"ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f\",\"pandascore_id\":null,\"yahoo_id\":27719,\"last_name\":\"O'Donnell\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Palm Beach Central (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'4\\\"\",\"search_full_name\":\"patodonnell\",\"birth_date\":\"1991-02-22\",\"espn_id\":16863},\"6659\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035567\",\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606059320238,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":\"RB\",\"player_id\":\"6659\",\"birth_city\":null,\"fantasy_data_id\":21564,\"years_exp\":1,\"hashtag\":\"#CraigReynolds-NFL-JAX-42\",\"search_first_name\":\"craig\",\"rotowire_id\":13960,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1762,\"age\":24,\"full_name\":\"Craig Reynolds\",\"sportradar_id\":\"0deb1dc9-0945-470d-8352-220d26d03d7d\",\"pandascore_id\":null,\"yahoo_id\":32596,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Kutztown\",\"high_school\":\"Abington (PA)\",\"depth_chart_order\":8,\"stats_id\":1167356,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"craigreynolds\",\"birth_date\":\"1996-06-15\",\"espn_id\":4421446},\"3276\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032401\",\"first_name\":\"De'Vondre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605831014136,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":\"LILB\",\"player_id\":\"3276\",\"birth_city\":null,\"fantasy_data_id\":18037,\"years_exp\":4,\"hashtag\":\"#DeVondreCampbell-NFL-ARI-59\",\"search_first_name\":\"devondre\",\"rotowire_id\":10935,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1004,\"age\":27,\"full_name\":\"De'Vondre Campbell\",\"sportradar_id\":\"25a643a9-3b59-4739-8430-2713a818fb69\",\"pandascore_id\":null,\"yahoo_id\":29349,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Cypress Lake (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'4\\\"\",\"search_full_name\":\"devondrecampbell\",\"birth_date\":\"1993-07-01\",\"espn_id\":3040180},\"7141\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sterling\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1596389716779,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hofrichter\",\"depth_chart_position\":null,\"player_id\":\"7141\",\"birth_city\":null,\"fantasy_data_id\":22144,\"years_exp\":0,\"hashtag\":\"#SterlingHofrichter-NFL-ATL-4\",\"search_first_name\":\"sterling\",\"rotowire_id\":14653,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Sterling Hofrichter\",\"sportradar_id\":\"aecf0860-27aa-49ac-b133-69fe2c4c63e1\",\"pandascore_id\":null,\"yahoo_id\":32898,\"last_name\":\"Hofrichter\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Armwood (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'9\\\"\",\"search_full_name\":\"sterlinghofrichter\",\"birth_date\":\"1996-12-05\",\"espn_id\":3916449},\"2493\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032116\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565479523336,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"philon\",\"depth_chart_position\":null,\"player_id\":\"2493\",\"birth_city\":null,\"fantasy_data_id\":16952,\"years_exp\":5,\"hashtag\":\"#DariusPhilon-NFL-FA-93\",\"search_first_name\":\"darius\",\"rotowire_id\":10330,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Darius Philon\",\"sportradar_id\":\"61b04d13-ebdb-49eb-9f5a-ea85355d6360\",\"pandascore_id\":null,\"yahoo_id\":28580,\"last_name\":\"Philon\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Vigor (AL)\",\"depth_chart_order\":null,\"stats_id\":693831,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dariusphilon\",\"birth_date\":\"1994-01-22\",\"espn_id\":2980071},\"6327\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035506\",\"first_name\":\"Jamey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1570591506017,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mosley\",\"depth_chart_position\":null,\"player_id\":\"6327\",\"birth_city\":null,\"fantasy_data_id\":21233,\"years_exp\":1,\"hashtag\":\"#JameyMosley-NFL-FA-49\",\"search_first_name\":\"jamey\",\"rotowire_id\":14226,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jamey Mosley\",\"sportradar_id\":\"d01f2455-60cc-486f-b8c4-9716f9e85b1b\",\"pandascore_id\":null,\"yahoo_id\":32529,\"last_name\":\"Mosley\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jameymosley\",\"birth_date\":\"1996-03-28\",\"espn_id\":3126363},\"4019\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1578266433857,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garrett\",\"depth_chart_position\":null,\"player_id\":\"4019\",\"birth_city\":null,\"fantasy_data_id\":18859,\"years_exp\":0,\"hashtag\":\"#JasonGarrett-NFL-FA-0\",\"search_first_name\":\"jason\",\"rotowire_id\":null,\"rotoworld_id\":8343,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jason Garrett\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Garrett\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jasongarrett\",\"birth_date\":null,\"espn_id\":null},\"6440\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1564269905207,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"6440\",\"birth_city\":null,\"fantasy_data_id\":21351,\"years_exp\":1,\"hashtag\":\"#JordanThompson-NFL-FA-76\",\"search_first_name\":\"jordan\",\"rotowire_id\":14098,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jordan Thompson\",\"sportradar_id\":\"724382b2-3c59-491d-a1e1-bc576fe277bf\",\"pandascore_id\":null,\"yahoo_id\":32300,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanthompson\",\"birth_date\":null,\"espn_id\":3915989},\"6786\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"CeeDee\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606491904324,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lamb\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6786\",\"birth_city\":null,\"fantasy_data_id\":21679,\"years_exp\":0,\"hashtag\":\"#CeeDeeLamb-NFL-DAL-88\",\"search_first_name\":\"ceedee\",\"rotowire_id\":14411,\"rotoworld_id\":null,\"active\":true,\"search_rank\":95,\"age\":21,\"full_name\":\"CeeDee Lamb\",\"sportradar_id\":\"a72ea15b-5199-4101-a300-846e1c655add\",\"pandascore_id\":null,\"yahoo_id\":32687,\"last_name\":\"Lamb\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Foster (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ceedeelamb\",\"birth_date\":\"1999-04-08\",\"espn_id\":4241389},\"130\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1520622300991,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weems\",\"depth_chart_position\":null,\"player_id\":\"130\",\"birth_city\":null,\"fantasy_data_id\":3601,\"years_exp\":13,\"hashtag\":\"#EricWeems-NFL-FA-14\",\"search_first_name\":\"eric\",\"rotowire_id\":5954,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Eric Weems\",\"sportradar_id\":\"1a5a14e3-0299-4926-b232-a0a109a5f5db\",\"pandascore_id\":null,\"yahoo_id\":8609,\"last_name\":\"Weems\",\"metadata\":null,\"college\":\"Bethune-Cookman\",\"high_school\":\"Seavreeze (FL)\",\"depth_chart_order\":null,\"stats_id\":232451,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ericweems\",\"birth_date\":\"1985-07-04\",\"espn_id\":10770},\"585\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027297\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1545423916603,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"585\",\"birth_city\":null,\"fantasy_data_id\":11319,\"years_exp\":10,\"hashtag\":\"#AustinHoward-NFL-FA-78\",\"search_first_name\":\"austin\",\"rotowire_id\":6955,\"rotoworld_id\":6330,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Austin Howard\",\"sportradar_id\":\"2fc398c0-2e7c-47ad-bf3f-803c2dcf11ce\",\"pandascore_id\":null,\"yahoo_id\":24570,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":\"Central (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'7\\\"\",\"search_full_name\":\"austinhoward\",\"birth_date\":\"1987-03-22\",\"espn_id\":13585},\"4243\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033305\",\"first_name\":\"Malachi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564341612771,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dupre\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4243\",\"birth_city\":null,\"fantasy_data_id\":19089,\"years_exp\":3,\"hashtag\":\"#MalachiDupre-NFL-FA-8\",\"search_first_name\":\"malachi\",\"rotowire_id\":11854,\"rotoworld_id\":12336,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malachi Dupre\",\"sportradar_id\":\"e0a27785-ab78-4d51-8a8e-8fb9896956fd\",\"pandascore_id\":null,\"yahoo_id\":30360,\"last_name\":\"Dupre\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":822012,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malachidupre\",\"birth_date\":\"1995-10-12\",\"espn_id\":3115366},\"83\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026289\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1528822201316,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hightower\",\"depth_chart_position\":null,\"player_id\":\"83\",\"birth_city\":null,\"fantasy_data_id\":2262,\"years_exp\":12,\"hashtag\":\"#TimHightower-NFL-FA-22\",\"search_first_name\":\"tim\",\"rotowire_id\":5785,\"rotoworld_id\":4901,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Tim Hightower\",\"sportradar_id\":\"c1ffd69d-92d7-4e12-8fd3-db9977d6dcf4\",\"pandascore_id\":null,\"yahoo_id\":8926,\"last_name\":\"Hightower\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Episcopal (VA)\",\"depth_chart_order\":null,\"stats_id\":262666,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"timhightower\",\"birth_date\":\"1986-05-23\",\"espn_id\":11383},\"7132\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605384959458,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hanson\",\"depth_chart_position\":null,\"player_id\":\"7132\",\"birth_city\":null,\"fantasy_data_id\":21942,\"years_exp\":0,\"hashtag\":\"#JakeHanson-NFL-GB-67\",\"search_first_name\":\"jake\",\"rotowire_id\":14666,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jake Hanson\",\"sportradar_id\":\"4d224244-dbb8-49db-b8d9-8bb974cea82e\",\"pandascore_id\":null,\"yahoo_id\":32878,\"last_name\":\"Hanson\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Eureka (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jakehanson\",\"birth_date\":\"1997-04-29\",\"espn_id\":3915139},\"4518\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033514\",\"first_name\":\"Emanuel\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1534541106897,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"byrd\",\"depth_chart_position\":null,\"player_id\":\"4518\",\"birth_city\":null,\"fantasy_data_id\":19390,\"years_exp\":3,\"hashtag\":\"#EmanuelByrd-NFL-FA-49\",\"search_first_name\":\"emanuel\",\"rotowire_id\":12333,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Emanuel Byrd\",\"sportradar_id\":\"f14bbebf-5021-4813-8daf-7c8db6542aac\",\"pandascore_id\":null,\"yahoo_id\":30702,\"last_name\":\"Byrd\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":868036,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'3\\\"\",\"search_full_name\":\"emanuelbyrd\",\"birth_date\":\"1994-12-09\",\"espn_id\":3931761},\"5942\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035531\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606342802935,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5942\",\"birth_city\":null,\"fantasy_data_id\":21048,\"years_exp\":1,\"hashtag\":\"#AustinBryant-NFL-DET-94\",\"search_first_name\":\"austin\",\"rotowire_id\":13843,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1647,\"age\":24,\"full_name\":\"Austin Bryant\",\"sportradar_id\":\"5314292d-aac5-4fe1-be7e-8f2ddf2d45a8\",\"pandascore_id\":null,\"yahoo_id\":31949,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Thomas County Central (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'6\\\"\",\"search_full_name\":\"austinbryant\",\"birth_date\":\"1996-11-12\",\"espn_id\":3728253},\"5571\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeromy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"irwin\",\"depth_chart_position\":null,\"player_id\":\"5571\",\"birth_city\":null,\"fantasy_data_id\":20333,\"years_exp\":0,\"hashtag\":\"#JeromyIrwin-NFL-NO-79\",\"search_first_name\":\"jeromy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jeromy Irwin\",\"sportradar_id\":\"c3251cfd-0b08-4833-811f-7ce6a4b9acef\",\"pandascore_id\":null,\"yahoo_id\":31516,\"last_name\":\"Irwin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeromyirwin\",\"birth_date\":\"1993-07-08\",\"espn_id\":2979620},\"2218\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"2218\",\"birth_city\":null,\"fantasy_data_id\":16600,\"years_exp\":1,\"hashtag\":\"#KeithLewis-NFL-FA-42\",\"search_first_name\":\"keith\",\"rotowire_id\":10017,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Keith Lewis\",\"sportradar_id\":\"f6479d40-7c0d-4100-930d-6c53c3e0b83b\",\"pandascore_id\":null,\"yahoo_id\":28039,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Virginia-Lynchburg\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keithlewis\",\"birth_date\":\"1990-07-25\",\"espn_id\":17199},\"1613\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Otha\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":null,\"player_id\":\"1613\",\"birth_city\":null,\"fantasy_data_id\":15295,\"years_exp\":6,\"hashtag\":\"#OthaFoster-NFL-FA-42\",\"search_first_name\":\"otha\",\"rotowire_id\":11742,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Otha Foster\",\"sportradar_id\":\"347b180f-0093-43a0-8f5b-3643b472abb8\",\"pandascore_id\":null,\"yahoo_id\":27172,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"West Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"othafoster\",\"birth_date\":\"1988-09-02\",\"espn_id\":16258},\"5458\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034873\",\"first_name\":\"Du'vonta\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lampkin\",\"depth_chart_position\":null,\"player_id\":\"5458\",\"birth_city\":null,\"fantasy_data_id\":20244,\"years_exp\":2,\"hashtag\":\"#DuvontaLampkin-NFL-FA-97\",\"search_first_name\":\"duvonta\",\"rotowire_id\":12573,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Du'vonta Lampkin\",\"sportradar_id\":\"a548290f-bfaf-48b0-aa8d-4f8c71a1ff80\",\"pandascore_id\":null,\"yahoo_id\":31248,\"last_name\":\"Lampkin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"duvontalampkin\",\"birth_date\":\"1997-01-07\",\"espn_id\":3929841},\"1865\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030691\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"1865\",\"birth_city\":null,\"fantasy_data_id\":16080,\"years_exp\":6,\"hashtag\":\"#JeremyButler-NFL-FA-17\",\"search_first_name\":\"jeremy\",\"rotowire_id\":9736,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jeremy Butler\",\"sportradar_id\":\"c273a0f0-d4e7-47f6-82b2-00050ade8b16\",\"pandascore_id\":null,\"yahoo_id\":27976,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Tennessee-Martin\",\"high_school\":\"Booker (FL)\",\"depth_chart_order\":null,\"stats_id\":607462,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeremybutler\",\"birth_date\":\"1991-04-22\",\"espn_id\":17122},\"7122\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Broderick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602718254230,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"DT\",\"player_id\":\"7122\",\"birth_city\":null,\"fantasy_data_id\":21886,\"years_exp\":0,\"hashtag\":\"#BroderickWashington-NFL-BAL-96\",\"search_first_name\":\"broderick\",\"rotowire_id\":14720,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1812,\"age\":23,\"full_name\":\"Broderick Washington\",\"sportradar_id\":\"6f695364-f31f-420d-8baa-434539e2b12d\",\"pandascore_id\":null,\"yahoo_id\":32840,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Longview (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"broderickwashington\",\"birth_date\":\"1996-12-04\",\"espn_id\":3915837},\"3258\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032394\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606254954763,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vannett\",\"depth_chart_position\":\"TE\",\"player_id\":\"3258\",\"birth_city\":null,\"fantasy_data_id\":18019,\"years_exp\":4,\"hashtag\":\"#NickVannett-NFL-DEN-88\",\"search_first_name\":\"nick\",\"rotowire_id\":10949,\"rotoworld_id\":11329,\"active\":true,\"search_rank\":442,\"age\":27,\"full_name\":\"Nick Vannett\",\"sportradar_id\":\"c731aa8a-778b-4ccd-a19f-517eb66f47b7\",\"pandascore_id\":null,\"yahoo_id\":29328,\"last_name\":\"Vannett\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Ohio State\",\"high_school\":\"Central (OH)\",\"depth_chart_order\":2,\"stats_id\":606488,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'6\\\"\",\"search_full_name\":\"nickvannett\",\"birth_date\":\"1993-03-06\",\"espn_id\":2576399},\"4223\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033792\",\"first_name\":\"Rudy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605915903853,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":\"SS\",\"player_id\":\"4223\",\"birth_city\":null,\"fantasy_data_id\":19069,\"years_exp\":3,\"hashtag\":\"#RudyFord-NFL-PHI-36\",\"search_first_name\":\"rudy\",\"rotowire_id\":11989,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1205,\"age\":26,\"full_name\":\"Rudy Ford\",\"sportradar_id\":\"b12174ec-fea9-4e05-b54f-c00e10920245\",\"pandascore_id\":null,\"yahoo_id\":30321,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"New Hope (AL)\",\"depth_chart_order\":2,\"stats_id\":746881,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rudyford\",\"birth_date\":\"1994-11-01\",\"espn_id\":3051901},\"6895\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quintez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605913803419,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cephus\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6895\",\"birth_city\":null,\"fantasy_data_id\":21729,\"years_exp\":0,\"hashtag\":\"#QuintezCephus-NFL-DET-87\",\"search_first_name\":\"quintez\",\"rotowire_id\":14466,\"rotoworld_id\":null,\"active\":true,\"search_rank\":307,\"age\":22,\"full_name\":\"Quintez Cephus\",\"sportradar_id\":\"3bd012f5-1fdf-4ed7-b660-5013122df93f\",\"pandascore_id\":null,\"yahoo_id\":32836,\"last_name\":\"Cephus\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Stratford Academy (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"quintezcephus\",\"birth_date\":\"1998-04-01\",\"espn_id\":4035793},\"69\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Santana\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moss\",\"depth_chart_position\":null,\"player_id\":\"69\",\"birth_city\":null,\"fantasy_data_id\":1944,\"years_exp\":14,\"hashtag\":\"#SantanaMoss-NFL-FA-89\",\"search_first_name\":\"santana\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Santana Moss\",\"sportradar_id\":\"8cef3644-bd81-4645-b5d0-0a15ea8d6548\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Moss\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"santanamoss\",\"birth_date\":\"1979-06-01\",\"espn_id\":2564},\"3267\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032771\",\"first_name\":\"Parker\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596208216557,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ehinger\",\"depth_chart_position\":null,\"player_id\":\"3267\",\"birth_city\":null,\"fantasy_data_id\":18028,\"years_exp\":4,\"hashtag\":\"#ParkerEhinger-NFL-FA-0\",\"search_first_name\":\"parker\",\"rotowire_id\":11028,\"rotoworld_id\":11428,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Parker Ehinger\",\"sportradar_id\":\"c9e9ca73-6605-42cb-ab44-2230dcea187a\",\"pandascore_id\":null,\"yahoo_id\":29339,\"last_name\":\"Ehinger\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"parkerehinger\",\"birth_date\":\"1992-12-30\",\"espn_id\":2576569},\"6826\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605588922172,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kmet\",\"depth_chart_position\":\"TE\",\"player_id\":\"6826\",\"birth_city\":null,\"fantasy_data_id\":21772,\"years_exp\":0,\"hashtag\":\"#ColeKmet-NFL-CHI-85\",\"search_first_name\":\"cole\",\"rotowire_id\":14436,\"rotoworld_id\":null,\"active\":true,\"search_rank\":347,\"age\":21,\"full_name\":\"Cole Kmet\",\"sportradar_id\":\"036feeb6-9a22-43c5-a8e3-7ac611d8ff49\",\"pandascore_id\":null,\"yahoo_id\":32713,\"last_name\":\"Kmet\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"St. Viator (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'6\\\"\",\"search_full_name\":\"colekmet\",\"birth_date\":\"1999-03-10\",\"espn_id\":4258595},\"6066\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035381\",\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596309610239,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alfieri\",\"depth_chart_position\":\"WILL\",\"player_id\":\"6066\",\"birth_city\":null,\"fantasy_data_id\":20735,\"years_exp\":1,\"hashtag\":\"#JoeyAlfieri-NFL-FA-0\",\"search_first_name\":\"joey\",\"rotowire_id\":14020,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1519,\"age\":24,\"full_name\":\"Joey Alfieri\",\"sportradar_id\":\"6f896917-eb15-41ad-9e0f-18ca8e8969b4\",\"pandascore_id\":null,\"yahoo_id\":32401,\"last_name\":\"Alfieri\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joeyalfieri\",\"birth_date\":\"1996-03-06\",\"espn_id\":3117242},\"5063\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034677\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603572056348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"DT\",\"player_id\":\"5063\",\"birth_city\":null,\"fantasy_data_id\":19881,\"years_exp\":2,\"hashtag\":\"#JustinJones-NFL-LAC-93\",\"search_first_name\":\"justin\",\"rotowire_id\":12785,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1319,\"age\":24,\"full_name\":\"Justin Jones\",\"sportradar_id\":\"c82a3f67-90b7-4cc8-ac3b-e6cf469cc541\",\"pandascore_id\":null,\"yahoo_id\":31054,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"South Cobb (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinjones\",\"birth_date\":\"1996-08-28\",\"espn_id\":3116746},\"2124\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maxwell\",\"depth_chart_position\":null,\"player_id\":\"2124\",\"birth_city\":null,\"fantasy_data_id\":16460,\"years_exp\":1,\"hashtag\":\"#JacobMaxwell-NFL-FA-87\",\"search_first_name\":\"jacob\",\"rotowire_id\":9927,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jacob Maxwell\",\"sportradar_id\":\"683b4512-b3f8-474a-95e0-e9273aa69c22\",\"pandascore_id\":null,\"yahoo_id\":28003,\"last_name\":\"Maxwell\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jacobmaxwell\",\"birth_date\":\"1991-01-04\",\"espn_id\":17207},\"5213\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034210\",\"first_name\":\"Garret\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1546293347582,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dooley\",\"depth_chart_position\":null,\"player_id\":\"5213\",\"birth_city\":null,\"fantasy_data_id\":20163,\"years_exp\":2,\"hashtag\":\"#GarretDooley-NFL-FA-58\",\"search_first_name\":\"garret\",\"rotowire_id\":12796,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Garret Dooley\",\"sportradar_id\":\"80990455-df2a-4d7a-92a2-7828f4f9c777\",\"pandascore_id\":null,\"yahoo_id\":31230,\"last_name\":\"Dooley\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"garretdooley\",\"birth_date\":\"1994-12-01\",\"espn_id\":3045261},\"1858\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031414\",\"first_name\":\"Dexter\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1541460329217,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcdougle\",\"depth_chart_position\":null,\"player_id\":\"1858\",\"birth_city\":null,\"fantasy_data_id\":16068,\"years_exp\":6,\"hashtag\":\"#DexterMcDougle-NFL-FA-34\",\"search_first_name\":\"dexter\",\"rotowire_id\":9690,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dexter McDougle\",\"sportradar_id\":\"ebfdad99-5262-4d16-9024-85583947d544\",\"pandascore_id\":null,\"yahoo_id\":27608,\"last_name\":\"McDougle\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Stafford (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dextermcdougle\",\"birth_date\":\"1991-04-08\",\"espn_id\":16805},\"5927\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035659\",\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606441560042,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mclaurin\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5927\",\"birth_city\":null,\"fantasy_data_id\":20873,\"years_exp\":1,\"hashtag\":\"#TerryMcLaurin-NFL-WAS-17\",\"search_first_name\":\"terry\",\"rotowire_id\":13536,\"rotoworld_id\":14121,\"active\":true,\"search_rank\":52,\"age\":25,\"full_name\":\"Terry McLaurin\",\"sportradar_id\":\"7e8c4641-2beb-4213-ba22-69fe0307005f\",\"pandascore_id\":null,\"yahoo_id\":31908,\"last_name\":\"McLaurin\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Indianapolis Cathedral (IN)\",\"depth_chart_order\":1,\"stats_id\":836116,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"terrymclaurin\",\"birth_date\":\"1995-09-15\",\"espn_id\":3121422},\"344\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027150\",\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606321261240,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"edelman\",\"depth_chart_position\":\"RWR\",\"player_id\":\"344\",\"birth_city\":null,\"fantasy_data_id\":8355,\"years_exp\":11,\"hashtag\":\"#JulianEdelman-NFL-NE-11\",\"search_first_name\":\"julian\",\"rotowire_id\":6141,\"rotoworld_id\":5440,\"active\":true,\"search_rank\":92,\"age\":34,\"full_name\":\"Julian Edelman\",\"sportradar_id\":\"2bb70d56-a79a-4fa1-ae37-99858a3ffd55\",\"pandascore_id\":null,\"yahoo_id\":9496,\"last_name\":\"Edelman\",\"metadata\":{\"injury_override_regular_2020_8\":\"IR\"},\"college\":\"Kent State\",\"high_school\":\"Woodside (CA)\",\"depth_chart_order\":3,\"stats_id\":334733,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"julianedelman\",\"birth_date\":\"1986-05-22\",\"espn_id\":12649},\"5480\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034526\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597362035556,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reavis\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5480\",\"birth_city\":null,\"fantasy_data_id\":20461,\"years_exp\":2,\"hashtag\":\"#CJReavis-NFL-FA-0\",\"search_first_name\":\"cj\",\"rotowire_id\":13044,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1476,\"age\":24,\"full_name\":\"C.J. Reavis\",\"sportradar_id\":\"bc41be9e-edb3-4582-b2eb-c7177dd6d979\",\"pandascore_id\":null,\"yahoo_id\":31273,\"last_name\":\"Reavis\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"cjreavis\",\"birth_date\":\"1995-11-27\",\"espn_id\":3124080},\"7297\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Yasir\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"durant\",\"depth_chart_position\":\"LG\",\"player_id\":\"7297\",\"birth_city\":null,\"fantasy_data_id\":21998,\"years_exp\":0,\"hashtag\":\"#YasirDurant-NFL-KC-79\",\"search_first_name\":\"yasir\",\"rotowire_id\":14664,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Yasir Durant\",\"sportradar_id\":\"ed37f30a-de45-4af6-b7b5-5f218bf786ab\",\"pandascore_id\":null,\"yahoo_id\":32949,\"last_name\":\"Durant\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Imhotep Institute Charter (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'7\\\"\",\"search_full_name\":\"yasirdurant\",\"birth_date\":\"1998-05-21\",\"espn_id\":4241213},\"1374\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030066\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604864419310,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"winters\",\"depth_chart_position\":\"RG\",\"player_id\":\"1374\",\"birth_city\":null,\"fantasy_data_id\":14896,\"years_exp\":7,\"hashtag\":\"#BrianWinters-NFL-BUF-66\",\"search_first_name\":\"brian\",\"rotowire_id\":8738,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brian Winters\",\"sportradar_id\":\"1bdb2a2a-62bc-4043-8c80-f9b501d2003d\",\"pandascore_id\":null,\"yahoo_id\":26695,\"last_name\":\"Winters\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Hudson (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brianwinters\",\"birth_date\":\"1991-07-10\",\"espn_id\":15879},\"694\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"694\",\"birth_city\":null,\"fantasy_data_id\":12101,\"years_exp\":7,\"hashtag\":\"#ReggieWalker-NFL-FA-52\",\"search_first_name\":\"reggie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Reggie Walker\",\"sportradar_id\":\"89be4a71-66f0-4566-8e85-372e8b4e6412\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'0\\\"\",\"search_full_name\":\"reggiewalker\",\"birth_date\":\"1986-12-15\",\"espn_id\":12905},\"4347\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":\"Out (Definitely Will Not Play)\",\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henry\",\"depth_chart_position\":null,\"player_id\":\"4347\",\"birth_city\":null,\"fantasy_data_id\":19203,\"years_exp\":0,\"hashtag\":\"#DanielHenry-NFL-BAL-40\",\"search_first_name\":\"daniel\",\"rotowire_id\":12300,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Daniel Henry\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30590,\"last_name\":\"Henry\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":\"Out\",\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"danielhenry\",\"birth_date\":\"1994-08-30\",\"espn_id\":2986883},\"7496\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602886505215,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"westbrookikhine\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7496\",\"birth_city\":null,\"fantasy_data_id\":21734,\"years_exp\":0,\"hashtag\":\"#NickWestbrookIkhine-NFL-TEN-15\",\"search_first_name\":\"nick\",\"rotowire_id\":14750,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nick Westbrook-Ikhine\",\"sportradar_id\":\"5e63e674-adf3-4f4e-929e-4a0ff2cfb1df\",\"pandascore_id\":null,\"yahoo_id\":33348,\"last_name\":\"Westbrook-Ikhine\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Indiana\",\"high_school\":\"Lake Mary (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickwestbrookikhine\",\"birth_date\":\"1997-03-21\",\"espn_id\":3929785},\"3082\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gus\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bradley\",\"depth_chart_position\":null,\"player_id\":\"3082\",\"birth_city\":null,\"fantasy_data_id\":17832,\"years_exp\":0,\"hashtag\":\"#GusBradley-NFL-FA-0\",\"search_first_name\":\"gus\",\"rotowire_id\":null,\"rotoworld_id\":8349,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Gus Bradley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bradley\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"gusbradley\",\"birth_date\":null,\"espn_id\":null},\"287\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"287\",\"birth_city\":null,\"fantasy_data_id\":7236,\"years_exp\":9,\"hashtag\":\"#BradSmith-NFL-FA-16\",\"search_first_name\":\"brad\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Brad Smith\",\"sportradar_id\":\"39af9fa1-2ede-4596-90c4-7e1052300496\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bradsmith\",\"birth_date\":\"1983-12-12\",\"espn_id\":9689},\"5656\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034459\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"5656\",\"birth_city\":null,\"fantasy_data_id\":20543,\"years_exp\":2,\"hashtag\":\"#AaronEvans-NFL-FA-63\",\"search_first_name\":\"aaron\",\"rotowire_id\":12668,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Aaron Evans\",\"sportradar_id\":\"93d973b3-06c3-4d22-b7b2-5430f53622d3\",\"pandascore_id\":null,\"yahoo_id\":31569,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aaronevans\",\"birth_date\":\"1995-01-07\",\"espn_id\":3054041},\"5481\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"welsh\",\"depth_chart_position\":null,\"player_id\":\"5481\",\"birth_city\":null,\"fantasy_data_id\":20390,\"years_exp\":1,\"hashtag\":\"#SeanWelsh-NFL-WAS-55\",\"search_first_name\":\"sean\",\"rotowire_id\":12806,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Sean Welsh\",\"sportradar_id\":\"c87b35d3-1e67-4944-867f-71101f2c4a9a\",\"pandascore_id\":null,\"yahoo_id\":31408,\"last_name\":\"Welsh\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'3\\\"\",\"search_full_name\":\"seanwelsh\",\"birth_date\":\"1994-10-13\",\"espn_id\":3040163},\"6601\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035519\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605055261607,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":\"DT\",\"player_id\":\"6601\",\"birth_city\":null,\"fantasy_data_id\":21535,\"years_exp\":1,\"hashtag\":\"#IsaiahMack-NFL-NE-94\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14204,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1755,\"age\":24,\"full_name\":\"Isaiah Mack\",\"sportradar_id\":\"b22c91a2-e11c-4ca2-8dd1-54c6bce8225c\",\"pandascore_id\":null,\"yahoo_id\":32425,\"last_name\":\"Mack\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Chattanooga\",\"high_school\":\"Northwest Whitfield (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'1\\\"\",\"search_full_name\":\"isaiahmack\",\"birth_date\":\"1996-03-19\",\"espn_id\":3131784},\"6075\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035562\",\"first_name\":\"Jesper\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1599368758780,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"horsted\",\"depth_chart_position\":\"TE\",\"player_id\":\"6075\",\"birth_city\":null,\"fantasy_data_id\":20812,\"years_exp\":1,\"hashtag\":\"#JesperHorsted-NFL-CHI-87\",\"search_first_name\":\"jesper\",\"rotowire_id\":13639,\"rotoworld_id\":null,\"active\":true,\"search_rank\":461,\"age\":23,\"full_name\":\"Jesper Horsted\",\"sportradar_id\":\"48c56733-6644-42ee-9020-07bd2deba1ad\",\"pandascore_id\":null,\"yahoo_id\":32576,\"last_name\":\"Horsted\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":\"Roseville (MN)\",\"depth_chart_order\":5,\"stats_id\":881708,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jesperhorsted\",\"birth_date\":\"1997-02-27\",\"espn_id\":3940587},\"2465\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032113\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1533697228439,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"2465\",\"birth_city\":null,\"fantasy_data_id\":16922,\"years_exp\":4,\"hashtag\":\"#KennyBell-NFL-FA-13\",\"search_first_name\":\"kenny\",\"rotowire_id\":10219,\"rotoworld_id\":10538,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kenny Bell\",\"sportradar_id\":\"16b3f403-d14e-44f4-9046-0d8ede0687ce\",\"pandascore_id\":null,\"yahoo_id\":28550,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":540610,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kennybell\",\"birth_date\":\"1992-02-25\",\"espn_id\":2514150},\"4341\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033274\",\"first_name\":\"Fish\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584654935272,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smithson\",\"depth_chart_position\":null,\"player_id\":\"4341\",\"birth_city\":null,\"fantasy_data_id\":19197,\"years_exp\":3,\"hashtag\":\"#FishSmithson-NFL-FA-0\",\"search_first_name\":\"fish\",\"rotowire_id\":12478,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Fish Smithson\",\"sportradar_id\":\"36bbcd0f-c3a1-4656-850d-6f0c7497a483\",\"pandascore_id\":null,\"yahoo_id\":30508,\"last_name\":\"Smithson\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"fishsmithson\",\"birth_date\":\"1994-03-18\",\"espn_id\":3892785},\"1192\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029562\",\"first_name\":\"Lavonte\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606279556489,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"david\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1192\",\"birth_city\":null,\"fantasy_data_id\":14375,\"years_exp\":8,\"hashtag\":\"#LavonteDavid-NFL-TB-54\",\"search_first_name\":\"lavonte\",\"rotowire_id\":8184,\"rotoworld_id\":7539,\"active\":true,\"search_rank\":682,\"age\":30,\"full_name\":\"Lavonte David\",\"sportradar_id\":\"9a612961-9fdf-47d0-b7ca-32b55adb1f61\",\"pandascore_id\":null,\"yahoo_id\":25768,\"last_name\":\"David\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Northwestern (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lavontedavid\",\"birth_date\":\"1990-01-23\",\"espn_id\":14985},\"2351\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032057\",\"first_name\":\"Jaquiski\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605225613914,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"tartt\",\"depth_chart_position\":null,\"player_id\":\"2351\",\"birth_city\":null,\"fantasy_data_id\":16807,\"years_exp\":5,\"hashtag\":\"#JaquiskiTartt-NFL-SF-29\",\"search_first_name\":\"jaquiski\",\"rotowire_id\":10451,\"rotoworld_id\":null,\"active\":true,\"search_rank\":869,\"age\":28,\"full_name\":\"Jaquiski Tartt\",\"sportradar_id\":\"92da4f95-8f58-4379-b236-ee4ab8ff5daf\",\"pandascore_id\":null,\"yahoo_id\":28434,\"last_name\":\"Tartt\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Davidson (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jaquiskitartt\",\"birth_date\":\"1992-02-18\",\"espn_id\":2509844},\"588\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"melton\",\"depth_chart_position\":null,\"player_id\":\"588\",\"birth_city\":null,\"fantasy_data_id\":11357,\"years_exp\":11,\"hashtag\":\"#HenryMelton-NFL-FA-69\",\"search_first_name\":\"henry\",\"rotowire_id\":7082,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Henry Melton\",\"sportradar_id\":\"61f30bba-8f64-4c5a-afee-f8b25c182844\",\"pandascore_id\":null,\"yahoo_id\":9369,\"last_name\":\"Melton\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Grapevine (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"henrymelton\",\"birth_date\":\"1986-10-11\",\"espn_id\":12695},\"5449\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034085\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597190413111,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"5449\",\"birth_city\":null,\"fantasy_data_id\":20302,\"years_exp\":2,\"hashtag\":\"#ChrisCooper-NFL-DEN-34\",\"search_first_name\":\"chris\",\"rotowire_id\":13410,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1449,\"age\":26,\"full_name\":\"Chris Cooper\",\"sportradar_id\":\"18911a2e-1c57-49cc-b7a1-c2cbc599264f\",\"pandascore_id\":null,\"yahoo_id\":31367,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Stony Brook\",\"high_school\":\"Iona Prep (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"chriscooper\",\"birth_date\":\"1994-03-17\",\"espn_id\":3912343},\"5486\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"5486\",\"birth_city\":null,\"fantasy_data_id\":20124,\"years_exp\":0,\"hashtag\":\"#BryceJohnson-NFL-DAL-61\",\"search_first_name\":\"bryce\",\"rotowire_id\":13250,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bryce Johnson\",\"sportradar_id\":\"f924544a-115b-455c-aca6-d5ee1d45401c\",\"pandascore_id\":null,\"yahoo_id\":31287,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brycejohnson\",\"birth_date\":null,\"espn_id\":4331784},\"4395\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033405\",\"first_name\":\"Torry\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603638605914,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mctyer\",\"depth_chart_position\":null,\"player_id\":\"4395\",\"birth_city\":null,\"fantasy_data_id\":19254,\"years_exp\":3,\"hashtag\":\"#TorryMcTyer-NFL-CIN-20\",\"search_first_name\":\"torry\",\"rotowire_id\":12040,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1241,\"age\":25,\"full_name\":\"Torry McTyer\",\"sportradar_id\":\"46e11bbc-8d8a-4b32-96a0-d059472b8fc6\",\"pandascore_id\":null,\"yahoo_id\":30646,\"last_name\":\"McTyer\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"Cathedral (CA)\",\"depth_chart_order\":null,\"stats_id\":751845,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"torrymctyer\",\"birth_date\":\"1995-04-10\",\"espn_id\":3058965},\"5576\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034296\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601403916088,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"niemann\",\"depth_chart_position\":\"LB\",\"player_id\":\"5576\",\"birth_city\":null,\"fantasy_data_id\":20498,\"years_exp\":2,\"hashtag\":\"#BenNiemann-NFL-KC-56\",\"search_first_name\":\"ben\",\"rotowire_id\":13179,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1482,\"age\":25,\"full_name\":\"Ben Niemann\",\"sportradar_id\":\"46689e7b-4a03-463b-9978-1496ab89313e\",\"pandascore_id\":null,\"yahoo_id\":31495,\"last_name\":\"Niemann\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Sycamore (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'2\\\"\",\"search_full_name\":\"benniemann\",\"birth_date\":\"1995-07-27\",\"espn_id\":3140643},\"2957\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ernst\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brunjr\",\"depth_chart_position\":null,\"player_id\":\"2957\",\"birth_city\":null,\"fantasy_data_id\":17436,\"years_exp\":0,\"hashtag\":\"#ErnstBrunJr-NFL-FA-40\",\"search_first_name\":\"ernst\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ernst Brun Jr\",\"sportradar_id\":\"d01fcbd9-51b4-4c39-b0e4-e1813adfcf5a\",\"pandascore_id\":null,\"yahoo_id\":29196,\"last_name\":\"Brun Jr\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":599088,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ernstbrunjr\",\"birth_date\":\"1990-12-04\",\"espn_id\":null},\"6646\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Durndraus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"6646\",\"birth_city\":null,\"fantasy_data_id\":21537,\"years_exp\":1,\"hashtag\":\"#DurndrausBryant-NFL-FA-70\",\"search_first_name\":\"durndraus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Durndraus Bryant\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'1\\\"\",\"search_full_name\":\"durndrausbryant\",\"birth_date\":null,\"espn_id\":null},\"4538\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquavius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534986620935,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"4538\",\"birth_city\":null,\"fantasy_data_id\":19417,\"years_exp\":3,\"hashtag\":\"#MarquaviusLewis-NFL-FA-97\",\"search_first_name\":\"marquavius\",\"rotowire_id\":12160,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marquavius Lewis\",\"sportradar_id\":\"c4c9af1c-bb25-4a74-bbd4-7bb2921c2016\",\"pandascore_id\":null,\"yahoo_id\":30596,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marquaviuslewis\",\"birth_date\":\"1992-10-11\",\"espn_id\":3894931},\"5807\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034898\",\"first_name\":\"Jaboree\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"5807\",\"birth_city\":null,\"fantasy_data_id\":20705,\"years_exp\":2,\"hashtag\":\"#JaboreeWilliams-NFL-FA-6\",\"search_first_name\":\"jaboree\",\"rotowire_id\":13402,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jaboree Williams\",\"sportradar_id\":\"27a44c07-9e5c-4332-9ad1-7e66ddf0e9c7\",\"pandascore_id\":null,\"yahoo_id\":31802,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaboreewilliams\",\"birth_date\":\"1996-01-29\",\"espn_id\":3124103},\"2489\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"steward\",\"depth_chart_position\":null,\"player_id\":\"2489\",\"birth_city\":null,\"fantasy_data_id\":16948,\"years_exp\":5,\"hashtag\":\"#TonySteward-NFL-FA-97\",\"search_first_name\":\"tony\",\"rotowire_id\":10477,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tony Steward\",\"sportradar_id\":\"634edfaf-81f7-4603-af30-0f08f58269ad\",\"pandascore_id\":null,\"yahoo_id\":28576,\"last_name\":\"Steward\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tonysteward\",\"birth_date\":\"1992-09-19\",\"espn_id\":2576504},\"1031\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029419\",\"first_name\":\"Dennis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587935155704,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"RT\",\"player_id\":\"1031\",\"birth_city\":null,\"fantasy_data_id\":13730,\"years_exp\":8,\"hashtag\":\"#DennisKelly-NFL-TEN-71\",\"search_first_name\":\"dennis\",\"rotowire_id\":8314,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Dennis Kelly\",\"sportradar_id\":\"1306d6f4-5de3-4bec-9c86-3e5ab8e2d081\",\"pandascore_id\":null,\"yahoo_id\":25863,\"last_name\":\"Kelly\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Purdue\",\"high_school\":\"Marian Central Catholic (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'8\\\"\",\"search_full_name\":\"denniskelly\",\"birth_date\":\"1990-01-16\",\"espn_id\":15054},\"592\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jahvid\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"best\",\"depth_chart_position\":null,\"player_id\":\"592\",\"birth_city\":null,\"fantasy_data_id\":11373,\"years_exp\":3,\"hashtag\":\"#JahvidBest-NFL-FA-44\",\"search_first_name\":\"jahvid\",\"rotowire_id\":null,\"rotoworld_id\":5630,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jahvid Best\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Best\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jahvidbest\",\"birth_date\":\"1989-01-30\",\"espn_id\":null},\"5867\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035702\",\"first_name\":\"Dalton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603654830446,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"risner\",\"depth_chart_position\":\"LG\",\"player_id\":\"5867\",\"birth_city\":null,\"fantasy_data_id\":20926,\"years_exp\":1,\"hashtag\":\"#DaltonRisner-NFL-DEN-66\",\"search_first_name\":\"dalton\",\"rotowire_id\":13545,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dalton Risner\",\"sportradar_id\":\"570c17a4-c14a-45a0-afda-93ef879b2604\",\"pandascore_id\":null,\"yahoo_id\":31873,\"last_name\":\"Risner\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Kansas State\",\"high_school\":\"Wiggins (CO)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daltonrisner\",\"birth_date\":\"1995-07-13\",\"espn_id\":3125082},\"6751\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Teez\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tabor\",\"depth_chart_position\":null,\"player_id\":\"6751\",\"birth_city\":null,\"fantasy_data_id\":21668,\"years_exp\":0,\"hashtag\":\"#TeezTabor-NFL-FA-0\",\"search_first_name\":\"teez\",\"rotowire_id\":null,\"rotoworld_id\":12292,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Teez Tabor\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tabor\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820437,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"teeztabor\",\"birth_date\":null,\"espn_id\":null},\"3881\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mariel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"3881\",\"birth_city\":null,\"fantasy_data_id\":18703,\"years_exp\":3,\"hashtag\":\"#MarielCooper-NFL-FA-25\",\"search_first_name\":\"mariel\",\"rotowire_id\":11274,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mariel Cooper\",\"sportradar_id\":\"4c77ce39-da0c-4325-a820-a9fd7822f499\",\"pandascore_id\":null,\"yahoo_id\":30010,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Citadel\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marielcooper\",\"birth_date\":\"1993-01-10\",\"espn_id\":2580324},\"1227\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029278\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604188546227,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"looney\",\"depth_chart_position\":\"C\",\"player_id\":\"1227\",\"birth_city\":null,\"fantasy_data_id\":14505,\"years_exp\":8,\"hashtag\":\"#JoeLooney-NFL-DAL-73\",\"search_first_name\":\"joe\",\"rotowire_id\":8291,\"rotoworld_id\":7573,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Joe Looney\",\"sportradar_id\":\"0e581a51-e705-45e2-85d3-bc2c073e626e\",\"pandascore_id\":null,\"yahoo_id\":25827,\"last_name\":\"Looney\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Lake Worth (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joelooney\",\"birth_date\":\"1990-08-31\",\"espn_id\":15108},\"5916\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035664\",\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606195848988,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":\"RB\",\"player_id\":\"5916\",\"birth_city\":null,\"fantasy_data_id\":20798,\"years_exp\":1,\"hashtag\":\"#DarrellHenderson-NFL-LAR-27\",\"search_first_name\":\"darrell\",\"rotowire_id\":13450,\"rotoworld_id\":14039,\"active\":true,\"search_rank\":117,\"age\":23,\"full_name\":\"Darrell Henderson\",\"sportradar_id\":\"380c4d9b-d4c8-456c-ba50-25519edde899\",\"pandascore_id\":null,\"yahoo_id\":31902,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"South Panola (MS)\",\"depth_chart_order\":1,\"stats_id\":914372,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'8\\\"\",\"search_full_name\":\"darrellhenderson\",\"birth_date\":\"1997-08-19\",\"espn_id\":4039359},\"1125\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1508275263155,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1125\",\"birth_city\":null,\"fantasy_data_id\":14049,\"years_exp\":8,\"hashtag\":\"#StevenJohnson-NFL-FA-58\",\"search_first_name\":\"steven\",\"rotowire_id\":8429,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Steven Johnson\",\"sportradar_id\":\"8311d109-e84c-439e-ac14-2f27bd1b4def\",\"pandascore_id\":null,\"yahoo_id\":25980,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Strath Haven (PA)\",\"depth_chart_order\":null,\"stats_id\":447561,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stevenjohnson\",\"birth_date\":\"1988-03-28\",\"espn_id\":15733},\"418\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"delmas\",\"depth_chart_position\":null,\"player_id\":\"418\",\"birth_city\":null,\"fantasy_data_id\":9002,\"years_exp\":6,\"hashtag\":\"#LouisDelmas-NFL-FA-25\",\"search_first_name\":\"louis\",\"rotowire_id\":6092,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Louis Delmas\",\"sportradar_id\":\"7d35421a-f68b-4de2-8152-d5830f5cca3e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Delmas\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"louisdelmas\",\"birth_date\":\"1987-04-11\",\"espn_id\":12528},\"2214\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031273\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606245953740,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brate\",\"depth_chart_position\":\"TE\",\"player_id\":\"2214\",\"birth_city\":null,\"fantasy_data_id\":16593,\"years_exp\":6,\"hashtag\":\"#CameronBrate-NFL-TB-84\",\"search_first_name\":\"cameron\",\"rotowire_id\":10008,\"rotoworld_id\":10193,\"active\":true,\"search_rank\":374,\"age\":29,\"full_name\":\"Cameron Brate\",\"sportradar_id\":\"5afe93fd-0caf-4cca-83fc-7f405bebfa3e\",\"pandascore_id\":null,\"yahoo_id\":28267,\"last_name\":\"Brate\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"Naperville Central (IL)\",\"depth_chart_order\":2,\"stats_id\":552926,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronbrate\",\"birth_date\":\"1991-07-03\",\"espn_id\":17453},\"1241\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Winston\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"guy\",\"depth_chart_position\":null,\"player_id\":\"1241\",\"birth_city\":null,\"fantasy_data_id\":14582,\"years_exp\":8,\"hashtag\":\"#WinstonGuy-NFL-FA-27\",\"search_first_name\":\"winston\",\"rotowire_id\":8362,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Winston Guy\",\"sportradar_id\":\"c122fac9-b0fd-4d25-a0c5-e1e29a0a144c\",\"pandascore_id\":null,\"yahoo_id\":25891,\"last_name\":\"Guy\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Catholic (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"winstonguy\",\"birth_date\":\"1990-04-23\",\"espn_id\":15073},\"1751\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Toben\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"opurum\",\"depth_chart_position\":null,\"player_id\":\"1751\",\"birth_city\":null,\"fantasy_data_id\":15765,\"years_exp\":7,\"hashtag\":\"#TobenOpurum-NFL-FA-45\",\"search_first_name\":\"toben\",\"rotowire_id\":8994,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Toben Opurum\",\"sportradar_id\":\"2ef64271-172a-42fa-bd60-0055b79fa593\",\"pandascore_id\":null,\"yahoo_id\":27431,\"last_name\":\"Opurum\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Plano East (TX)\",\"depth_chart_order\":null,\"stats_id\":497254,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tobenopurum\",\"birth_date\":\"1990-11-18\",\"espn_id\":16598},\"1840\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031185\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599605755718,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"halapio\",\"depth_chart_position\":null,\"player_id\":\"1840\",\"birth_city\":null,\"fantasy_data_id\":16044,\"years_exp\":6,\"hashtag\":\"#JonHalapio-NFL-DEN-75\",\"search_first_name\":\"jon\",\"rotowire_id\":9442,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jon Halapio\",\"sportradar_id\":\"726c066b-4ce6-4af3-85b2-7ec34807166a\",\"pandascore_id\":null,\"yahoo_id\":27707,\"last_name\":\"Halapio\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"St. Petersburg Catholic (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonhalapio\",\"birth_date\":\"1991-06-23\",\"espn_id\":16842},\"1580\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030504\",\"first_name\":\"Earl\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1570647312244,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watford\",\"depth_chart_position\":null,\"player_id\":\"1580\",\"birth_city\":null,\"fantasy_data_id\":15231,\"years_exp\":7,\"hashtag\":\"#EarlWatford-NFL-FA-71\",\"search_first_name\":\"earl\",\"rotowire_id\":9092,\"rotoworld_id\":8538,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Earl Watford\",\"sportradar_id\":\"f6244333-6b6a-4e61-bc2c-cb6ffc2f318a\",\"pandascore_id\":null,\"yahoo_id\":26739,\"last_name\":\"Watford\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Simon Gratz (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"earlwatford\",\"birth_date\":\"1990-06-24\",\"espn_id\":15901},\"1895\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031288\",\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1584411009671,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccarron\",\"depth_chart_position\":\"QB\",\"player_id\":\"1895\",\"birth_city\":null,\"fantasy_data_id\":16116,\"years_exp\":6,\"hashtag\":\"#AJMcCarron-NFL-HOU-2\",\"search_first_name\":\"aj\",\"rotowire_id\":9319,\"rotoworld_id\":9290,\"active\":true,\"search_rank\":480,\"age\":30,\"full_name\":\"AJ McCarron\",\"sportradar_id\":\"d4b30988-e8c5-4689-8037-f79a0d3c2774\",\"pandascore_id\":null,\"yahoo_id\":27692,\"last_name\":\"McCarron\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"St. Paul's Episcopal (AL)\",\"depth_chart_order\":2,\"stats_id\":508649,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ajmccarron\",\"birth_date\":\"1990-09-13\",\"espn_id\":16810},\"740\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stokley\",\"depth_chart_position\":null,\"player_id\":\"740\",\"birth_city\":null,\"fantasy_data_id\":12343,\"years_exp\":15,\"hashtag\":\"#BrandonStokley-NFL-FA-80\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":41,\"full_name\":\"Brandon Stokley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Stokley\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandonstokley\",\"birth_date\":\"1976-06-23\",\"espn_id\":null},\"2127\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mohammed\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seisay\",\"depth_chart_position\":null,\"player_id\":\"2127\",\"birth_city\":null,\"fantasy_data_id\":16464,\"years_exp\":3,\"hashtag\":\"#MohammedSeisay-NFL-FA-26\",\"search_first_name\":\"mohammed\",\"rotowire_id\":9992,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mohammed Seisay\",\"sportradar_id\":\"5e48dcbb-2167-4210-9b30-a5fe10ece0b5\",\"pandascore_id\":null,\"yahoo_id\":28009,\"last_name\":\"Seisay\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mohammedseisay\",\"birth_date\":\"1990-05-22\",\"espn_id\":17245},\"3678\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032569\",\"first_name\":\"Wil\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606346402279,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lutz\",\"depth_chart_position\":\"K\",\"player_id\":\"3678\",\"birth_city\":null,\"fantasy_data_id\":18478,\"years_exp\":4,\"hashtag\":\"#WilLutz-NFL-NO-3\",\"search_first_name\":\"wil\",\"rotowire_id\":11309,\"rotoworld_id\":11877,\"active\":true,\"search_rank\":157,\"age\":26,\"full_name\":\"Wil Lutz\",\"sportradar_id\":\"c4cf84d0-6022-4ac1-a9ba-85587921c53f\",\"pandascore_id\":null,\"yahoo_id\":29754,\"last_name\":\"Lutz\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"Northgate (GA)\",\"depth_chart_order\":1,\"stats_id\":700299,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"willutz\",\"birth_date\":\"1994-07-07\",\"espn_id\":2985659},\"1918\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031314\",\"first_name\":\"Wesley\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1557260442526,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"C\",\"player_id\":\"1918\",\"birth_city\":null,\"fantasy_data_id\":16150,\"years_exp\":6,\"hashtag\":\"#WesleyJohnson-NFL-FA-61\",\"search_first_name\":\"wesley\",\"rotowire_id\":9428,\"rotoworld_id\":9681,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Wesley Johnson\",\"sportradar_id\":\"00eb19cd-bd8f-4f2a-98e7-a718d50ad66a\",\"pandascore_id\":null,\"yahoo_id\":27701,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Montgomery Bell Academy (TN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"wesleyjohnson\",\"birth_date\":\"1991-01-09\",\"espn_id\":16846},\"308\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"JohnnieLee\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"higgins\",\"depth_chart_position\":null,\"player_id\":\"308\",\"birth_city\":null,\"fantasy_data_id\":7613,\"years_exp\":5,\"hashtag\":\"#JohnnieLeeHiggins-NFL-FA-17\",\"search_first_name\":\"johnnielee\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"JohnnieLee Higgins\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Higgins\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johnnieleehiggins\",\"birth_date\":\"1983-09-08\",\"espn_id\":null},\"5432\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034104\",\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606323660595,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5432\",\"birth_city\":null,\"fantasy_data_id\":20529,\"years_exp\":2,\"hashtag\":\"#CamSims-NFL-WAS-89\",\"search_first_name\":\"cam\",\"rotowire_id\":13101,\"rotoworld_id\":null,\"active\":true,\"search_rank\":529,\"age\":24,\"full_name\":\"Cam Sims\",\"sportradar_id\":\"f4f11bc2-2fe6-4da8-a83c-63085788e789\",\"pandascore_id\":null,\"yahoo_id\":31405,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Ouachita Parish (LA)\",\"depth_chart_order\":1,\"stats_id\":824541,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'5\\\"\",\"search_full_name\":\"camsims\",\"birth_date\":\"1996-01-06\",\"espn_id\":3115314},\"3567\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Theiren\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cockran\",\"depth_chart_position\":null,\"player_id\":\"3567\",\"birth_city\":null,\"fantasy_data_id\":18342,\"years_exp\":0,\"hashtag\":\"#TheirenCockran-NFL-FA-67\",\"search_first_name\":\"theiren\",\"rotowire_id\":11497,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Theiren Cockran\",\"sportradar_id\":\"8aa595b5-49a1-4a3f-8d79-be3123e110b0\",\"pandascore_id\":null,\"yahoo_id\":29538,\"last_name\":\"Cockran\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'5\\\"\",\"search_full_name\":\"theirencockran\",\"birth_date\":\"1992-09-10\",\"espn_id\":null},\"5025\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034779\",\"first_name\":\"Ronnie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606522529043,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harrison\",\"depth_chart_position\":\"SS\",\"player_id\":\"5025\",\"birth_city\":null,\"fantasy_data_id\":19904,\"years_exp\":2,\"hashtag\":\"#RonnieHarrison-NFL-CLE-33\",\"search_first_name\":\"ronnie\",\"rotowire_id\":12625,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1335,\"age\":23,\"full_name\":\"Ronnie Harrison\",\"sportradar_id\":\"9b96ef63-04bd-41ae-b59c-acc0f2561d19\",\"pandascore_id\":null,\"yahoo_id\":31063,\"last_name\":\"Harrison\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Florida State University School (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ronnieharrison\",\"birth_date\":\"1997-04-18\",\"espn_id\":3859006},\"5119\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034794\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606145414010,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":\"K\",\"player_id\":\"5119\",\"birth_city\":null,\"fantasy_data_id\":20033,\"years_exp\":2,\"hashtag\":\"#JasonSanders-NFL-MIA-7\",\"search_first_name\":\"jason\",\"rotowire_id\":13007,\"rotoworld_id\":null,\"active\":true,\"search_rank\":405,\"age\":25,\"full_name\":\"Jason Sanders\",\"sportradar_id\":\"5ffb654f-0de5-424b-aa2f-ad511deb5b51\",\"pandascore_id\":null,\"yahoo_id\":31199,\"last_name\":\"Sanders\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":\"Villa Park (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jasonsanders\",\"birth_date\":\"1995-11-16\",\"espn_id\":3124679},\"2274\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jackson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jeffcoat\",\"depth_chart_position\":null,\"player_id\":\"2274\",\"birth_city\":null,\"fantasy_data_id\":16687,\"years_exp\":6,\"hashtag\":\"#JacksonJeffcoat-NFL-FA-53\",\"search_first_name\":\"jackson\",\"rotowire_id\":9278,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jackson Jeffcoat\",\"sportradar_id\":\"dae22eb4-d7f3-4e46-9f33-b3169076f076\",\"pandascore_id\":null,\"yahoo_id\":27805,\"last_name\":\"Jeffcoat\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Plano West (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacksonjeffcoat\",\"birth_date\":\"1990-12-26\",\"espn_id\":17008},\"3281\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033051\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606130111566,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"onyemata\",\"depth_chart_position\":\"LDT\",\"player_id\":\"3281\",\"birth_city\":null,\"fantasy_data_id\":18042,\"years_exp\":4,\"hashtag\":\"#DavidOnyemata-NFL-NO-93\",\"search_first_name\":\"david\",\"rotowire_id\":11219,\"rotoworld_id\":11435,\"active\":true,\"search_rank\":1007,\"age\":28,\"full_name\":\"David Onyemata\",\"sportradar_id\":\"08d27d1a-e039-4ccc-9ba7-65a22f6002fd\",\"pandascore_id\":null,\"yahoo_id\":29354,\"last_name\":\"Onyemata\",\"metadata\":null,\"college\":\"Manitoba, Can.\",\"high_school\":\"Chrisland (NGA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davidonyemata\",\"birth_date\":\"1992-11-13\",\"espn_id\":4002046},\"3786\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032466\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606339502875,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fant\",\"depth_chart_position\":\"RT\",\"player_id\":\"3786\",\"birth_city\":null,\"fantasy_data_id\":18599,\"years_exp\":4,\"hashtag\":\"#GeorgeFant-NFL-NYJ-76\",\"search_first_name\":\"george\",\"rotowire_id\":11559,\"rotoworld_id\":11913,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"George Fant\",\"sportradar_id\":\"eb7f7d43-7837-400c-828c-bd5d609bca41\",\"pandascore_id\":null,\"yahoo_id\":29815,\"last_name\":\"Fant\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Warren Central (KY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"Doubtful\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'5\\\"\",\"search_full_name\":\"georgefant\",\"birth_date\":\"1992-07-19\",\"espn_id\":2583951},\"GB\":{\"team\":\"GB\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"GB\",\"last_name\":\"Packers\",\"injury_status\":null,\"first_name\":\"Green Bay\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"4836\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"langford\",\"depth_chart_position\":null,\"player_id\":\"4836\",\"birth_city\":null,\"fantasy_data_id\":19739,\"years_exp\":null,\"hashtag\":\"#RyanLangford-NFL-ARI-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Langford\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Langford\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ryanlangford\",\"birth_date\":\"1993-06-10\",\"espn_id\":null},\"6853\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Van\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606232154625,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6853\",\"birth_city\":null,\"fantasy_data_id\":21739,\"years_exp\":0,\"hashtag\":\"#VanJefferson-NFL-LAR-12\",\"search_first_name\":\"van\",\"rotowire_id\":14430,\"rotoworld_id\":null,\"active\":true,\"search_rank\":296,\"age\":24,\"full_name\":\"Van Jefferson\",\"sportradar_id\":\"8e1285f7-6e4c-41e4-aac9-92e09f9f32b2\",\"pandascore_id\":null,\"yahoo_id\":32727,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Ravenwood (TN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'2\\\"\",\"search_full_name\":\"vanjefferson\",\"birth_date\":\"1996-07-26\",\"espn_id\":3930066},\"7071\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"molson\",\"depth_chart_position\":null,\"player_id\":\"7071\",\"birth_city\":null,\"fantasy_data_id\":22115,\"years_exp\":0,\"hashtag\":\"#JJMolson-NFL-FA-0\",\"search_first_name\":\"jj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"J.J. Molson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Molson\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jjmolson\",\"birth_date\":null,\"espn_id\":null},\"3771\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Helva\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"matungulu\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3771\",\"birth_city\":null,\"fantasy_data_id\":18584,\"years_exp\":0,\"hashtag\":\"#HelvaMatungulu-NFL-FA-61\",\"search_first_name\":\"helva\",\"rotowire_id\":11458,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Helva Matungulu\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29796,\"last_name\":\"Matungulu\",\"metadata\":null,\"college\":\"Western Carolina\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'5\\\"\",\"search_full_name\":\"helvamatungulu\",\"birth_date\":\"1992-04-10\",\"espn_id\":null},\"5476\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034522\",\"first_name\":\"KC\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605408661010,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcdermott\",\"depth_chart_position\":\"LG\",\"player_id\":\"5476\",\"birth_city\":null,\"fantasy_data_id\":20457,\"years_exp\":2,\"hashtag\":\"#KCMcDermott-NFL-JAX-62\",\"search_first_name\":\"kc\",\"rotowire_id\":12687,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"KC McDermott\",\"sportradar_id\":\"3fa9a860-a1ee-4355-ab3e-ba81490a4385\",\"pandascore_id\":null,\"yahoo_id\":31269,\"last_name\":\"McDermott\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Palm Beach Central (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kcmcdermott\",\"birth_date\":\"1996-04-18\",\"espn_id\":3123064},\"6112\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035724\",\"first_name\":\"Martez\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ivey\",\"depth_chart_position\":null,\"player_id\":\"6112\",\"birth_city\":null,\"fantasy_data_id\":21076,\"years_exp\":1,\"hashtag\":\"#MartezIvey-NFL-FA-63\",\"search_first_name\":\"martez\",\"rotowire_id\":13604,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Martez Ivey\",\"sportradar_id\":\"4cac4ec4-d719-4f77-a714-0a8ed45be814\",\"pandascore_id\":null,\"yahoo_id\":32635,\"last_name\":\"Ivey\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"martezivey\",\"birth_date\":\"1995-07-25\",\"espn_id\":3915102},\"2926\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Earnest\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pettway\",\"depth_chart_position\":null,\"player_id\":\"2926\",\"birth_city\":null,\"fantasy_data_id\":17395,\"years_exp\":null,\"hashtag\":\"#EarnestPettway-NFL-FA-0\",\"search_first_name\":\"earnest\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Earnest Pettway\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pettway\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":599153,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"earnestpettway\",\"birth_date\":null,\"espn_id\":null},\"6118\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035718\",\"first_name\":\"Quinnen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605906903041,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RDE\",\"player_id\":\"6118\",\"birth_city\":null,\"fantasy_data_id\":20989,\"years_exp\":1,\"hashtag\":\"#QuinnenWilliams-NFL-NYJ-95\",\"search_first_name\":\"quinnen\",\"rotowire_id\":13584,\"rotoworld_id\":14011,\"active\":true,\"search_rank\":1623,\"age\":22,\"full_name\":\"Quinnen Williams\",\"sportradar_id\":\"b8e0fa49-1122-4e97-9fe2-d90f6b7cb444\",\"pandascore_id\":null,\"yahoo_id\":31835,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Wenonah (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'3\\\"\",\"search_full_name\":\"quinnenwilliams\",\"birth_date\":\"1997-12-21\",\"espn_id\":4040982},\"5600\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034447\",\"first_name\":\"Lucas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1537921503966,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gravelle\",\"depth_chart_position\":null,\"player_id\":\"5600\",\"birth_city\":null,\"fantasy_data_id\":20319,\"years_exp\":2,\"hashtag\":\"#LucasGravelle-NFL-FA-49\",\"search_first_name\":\"lucas\",\"rotowire_id\":13264,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lucas Gravelle\",\"sportradar_id\":\"4db7ca4c-e0b3-4652-b311-6711c816c96c\",\"pandascore_id\":null,\"yahoo_id\":31535,\"last_name\":\"Gravelle\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lucasgravelle\",\"birth_date\":\"1995-07-28\",\"espn_id\":3894905},\"1002\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cromartiesmith\",\"depth_chart_position\":null,\"player_id\":\"1002\",\"birth_city\":null,\"fantasy_data_id\":13537,\"years_exp\":2,\"hashtag\":\"#DamonCromartieSmith-NFL-FA-32\",\"search_first_name\":\"damon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Damon Cromartie-Smith\",\"sportradar_id\":\"e15c91fe-34cb-484d-9d0d-335a333f626f\",\"pandascore_id\":null,\"yahoo_id\":24316,\"last_name\":\"Cromartie-Smith\",\"metadata\":null,\"college\":\"Texas - El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"damoncromartiesmith\",\"birth_date\":\"1987-02-19\",\"espn_id\":13345},\"4774\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"De'Mard\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"llorens\",\"depth_chart_position\":null,\"player_id\":\"4774\",\"birth_city\":null,\"fantasy_data_id\":19629,\"years_exp\":2,\"hashtag\":\"#DeMardLlorens-NFL-FA-37\",\"search_first_name\":\"demard\",\"rotowire_id\":12397,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"De'Mard Llorens\",\"sportradar_id\":\"abcb9503-376e-4335-9bdc-4a63c3975a15\",\"pandascore_id\":null,\"yahoo_id\":30866,\"last_name\":\"Llorens\",\"metadata\":null,\"college\":\"Northwestern St. (LA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747294,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"demardllorens\",\"birth_date\":\"1994-02-01\",\"espn_id\":3050667},\"1044\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029561\",\"first_name\":\"Cordy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584127224988,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"glenn\",\"depth_chart_position\":\"LT\",\"player_id\":\"1044\",\"birth_city\":null,\"fantasy_data_id\":13762,\"years_exp\":8,\"hashtag\":\"#CordyGlenn-NFL-FA-77\",\"search_first_name\":\"cordy\",\"rotowire_id\":8124,\"rotoworld_id\":7482,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Cordy Glenn\",\"sportradar_id\":\"c2187fda-5e33-4854-b3f8-c0c1c5fbfb35\",\"pandascore_id\":null,\"yahoo_id\":25751,\"last_name\":\"Glenn\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Riverdale (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'6\\\"\",\"search_full_name\":\"cordyglenn\",\"birth_date\":\"1989-09-18\",\"espn_id\":14971},\"1735\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1518660302879,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mulumba\",\"depth_chart_position\":null,\"player_id\":\"1735\",\"birth_city\":null,\"fantasy_data_id\":15686,\"years_exp\":7,\"hashtag\":\"#AndyMulumba-NFL-FA-49\",\"search_first_name\":\"andy\",\"rotowire_id\":9103,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Andy Mulumba\",\"sportradar_id\":\"0c44881a-1cb3-4e28-9cc7-5b602dc69927\",\"pandascore_id\":null,\"yahoo_id\":27355,\"last_name\":\"Mulumba\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":\"Cegep du Vieux Montreal (QC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andymulumba\",\"birth_date\":\"1990-01-31\",\"espn_id\":16560},\"4826\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pace\",\"depth_chart_position\":null,\"player_id\":\"4826\",\"birth_city\":null,\"fantasy_data_id\":19730,\"years_exp\":2,\"hashtag\":\"#KendallPace-NFL-FA-66\",\"search_first_name\":\"kendall\",\"rotowire_id\":12368,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kendall Pace\",\"sportradar_id\":\"ba68c6e1-18d3-4f35-8cb0-d4398404a556\",\"pandascore_id\":null,\"yahoo_id\":30937,\"last_name\":\"Pace\",\"metadata\":null,\"college\":\"Columbia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kendallpace\",\"birth_date\":null,\"espn_id\":3118180},\"5580\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034302\",\"first_name\":\"Frankie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606059616582,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"luvu\",\"depth_chart_position\":\"RILB\",\"player_id\":\"5580\",\"birth_city\":null,\"fantasy_data_id\":20411,\"years_exp\":2,\"hashtag\":\"#FrankieLuvu-NFL-NYJ-50\",\"search_first_name\":\"frankie\",\"rotowire_id\":13159,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1468,\"age\":24,\"full_name\":\"Frankie Luvu\",\"sportradar_id\":\"717ebb17-f54f-4052-b9fb-af641a25ebe2\",\"pandascore_id\":null,\"yahoo_id\":31503,\"last_name\":\"Luvu\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Tafuna (ASM)\",\"depth_chart_order\":3,\"stats_id\":835933,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"frankieluvu\",\"birth_date\":\"1996-09-19\",\"espn_id\":3127273},\"5986\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035257\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1596469523480,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"5986\",\"birth_city\":null,\"fantasy_data_id\":20877,\"years_exp\":1,\"hashtag\":\"#ChristianMiller-NFL-CAR-55\",\"search_first_name\":\"christian\",\"rotowire_id\":13762,\"rotoworld_id\":14152,\"active\":true,\"search_rank\":1574,\"age\":24,\"full_name\":\"Christian Miller\",\"sportradar_id\":\"6c1cd007-fea3-47bb-a8b1-4e4c040a2d94\",\"pandascore_id\":null,\"yahoo_id\":31947,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Spring Valley (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"christianmiller\",\"birth_date\":\"1996-06-16\",\"espn_id\":3126362},\"1258\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029111\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1543431333694,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shelby\",\"depth_chart_position\":null,\"player_id\":\"1258\",\"birth_city\":null,\"fantasy_data_id\":14645,\"years_exp\":8,\"hashtag\":\"#DerrickShelby-NFL-FA-90\",\"search_first_name\":\"derrick\",\"rotowire_id\":8470,\"rotoworld_id\":8017,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Derrick Shelby\",\"sportradar_id\":\"86a412bb-7db6-4c6a-86b0-499afd326fd9\",\"pandascore_id\":null,\"yahoo_id\":26297,\"last_name\":\"Shelby\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Hightower (TX)\",\"depth_chart_order\":null,\"stats_id\":383524,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'2\\\"\",\"search_full_name\":\"derrickshelby\",\"birth_date\":\"1989-03-04\",\"espn_id\":15278},\"4369\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033345\",\"first_name\":\"Kent\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565729707029,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perkins\",\"depth_chart_position\":null,\"player_id\":\"4369\",\"birth_city\":null,\"fantasy_data_id\":19226,\"years_exp\":3,\"hashtag\":\"#KentPerkins-NFL-FA-76\",\"search_first_name\":\"kent\",\"rotowire_id\":12482,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kent Perkins\",\"sportradar_id\":\"6e480446-348b-430a-b2d0-dca65cbe9fb1\",\"pandascore_id\":null,\"yahoo_id\":30584,\"last_name\":\"Perkins\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kentperkins\",\"birth_date\":\"1994-11-19\",\"espn_id\":3046702},\"861\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bradfield\",\"depth_chart_position\":null,\"player_id\":\"861\",\"birth_city\":null,\"fantasy_data_id\":12979,\"years_exp\":5,\"hashtag\":\"#CameronBradfield-NFL-FA-78\",\"search_first_name\":\"cameron\",\"rotowire_id\":10029,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Cameron Bradfield\",\"sportradar_id\":\"69ad2b65-7d43-4915-a60c-151f3b26ebf3\",\"pandascore_id\":null,\"yahoo_id\":25109,\"last_name\":\"Bradfield\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cameronbradfield\",\"birth_date\":\"1987-09-14\",\"espn_id\":14226},\"2047\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ducre\",\"depth_chart_position\":null,\"player_id\":\"2047\",\"birth_city\":null,\"fantasy_data_id\":16339,\"years_exp\":6,\"hashtag\":\"#GregDucre-NFL-FA-38\",\"search_first_name\":\"greg\",\"rotowire_id\":10000,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Greg Ducre\",\"sportradar_id\":\"1d3184b0-e438-40ff-a56e-5092693249c6\",\"pandascore_id\":null,\"yahoo_id\":27848,\"last_name\":\"Ducre\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Crenshaw (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"gregducre\",\"birth_date\":\"1992-01-22\",\"espn_id\":16989},\"2128\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031284\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1558209925823,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"swanson\",\"depth_chart_position\":null,\"player_id\":\"2128\",\"birth_city\":null,\"fantasy_data_id\":16465,\"years_exp\":6,\"hashtag\":\"#TravisSwanson-NFL-FA-66\",\"search_first_name\":\"travis\",\"rotowire_id\":9430,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Travis Swanson\",\"sportradar_id\":\"ed6cf80a-b7d1-4a99-8a29-63b5c620bcd4\",\"pandascore_id\":null,\"yahoo_id\":27604,\"last_name\":\"Swanson\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Kingwood (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'5\\\"\",\"search_full_name\":\"travisswanson\",\"birth_date\":\"1991-01-30\",\"espn_id\":16752},\"5882\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035663\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605579321313,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"rapp\",\"depth_chart_position\":null,\"player_id\":\"5882\",\"birth_city\":null,\"fantasy_data_id\":20919,\"years_exp\":1,\"hashtag\":\"#TaylorRapp-NFL-LAR-24\",\"search_first_name\":\"taylor\",\"rotowire_id\":13507,\"rotoworld_id\":14078,\"active\":true,\"search_rank\":1591,\"age\":22,\"full_name\":\"Taylor Rapp\",\"sportradar_id\":\"1cccc54a-c168-4359-bfbc-30556db0ca73\",\"pandascore_id\":null,\"yahoo_id\":31893,\"last_name\":\"Rapp\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Sehome (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"taylorrapp\",\"birth_date\":\"1997-12-22\",\"espn_id\":4039007},\"6748\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035747\",\"first_name\":\"Bryson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allenwilliams\",\"depth_chart_position\":null,\"player_id\":\"6748\",\"birth_city\":null,\"fantasy_data_id\":21665,\"years_exp\":1,\"hashtag\":\"#BrysonAllenWilliams-NFL-FA-48\",\"search_first_name\":\"bryson\",\"rotowire_id\":13837,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Bryson Allen-Williams\",\"sportradar_id\":\"b3768244-a2ee-4ab8-9c2e-4e83ac020821\",\"pandascore_id\":null,\"yahoo_id\":32654,\"last_name\":\"Allen-Williams\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brysonallenwilliams\",\"birth_date\":\"1996-10-15\",\"espn_id\":3126478},\"5286\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034608\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1535652631382,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"5286\",\"birth_city\":null,\"fantasy_data_id\":20368,\"years_exp\":2,\"hashtag\":\"#AustinAllen-NFL-FA-8\",\"search_first_name\":\"austin\",\"rotowire_id\":12913,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Austin Allen\",\"sportradar_id\":\"b8a2180f-a864-4358-ae73-c1ce006a4a7a\",\"pandascore_id\":null,\"yahoo_id\":31252,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744416,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"austinallen\",\"birth_date\":\"1994-08-21\",\"espn_id\":3046412},\"3053\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdermott\",\"depth_chart_position\":null,\"player_id\":\"3053\",\"birth_city\":null,\"fantasy_data_id\":17768,\"years_exp\":1,\"hashtag\":\"#ShaneMcDermott-NFL-FA-64\",\"search_first_name\":\"shane\",\"rotowire_id\":10760,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Shane McDermott\",\"sportradar_id\":\"4cad9de4-4819-4191-b97e-66d2ecc0099b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McDermott\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"shanemcdermott\",\"birth_date\":\"1992-02-18\",\"espn_id\":null},\"3240\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033083\",\"first_name\":\"Darian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600095061285,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"SS\",\"player_id\":\"3240\",\"birth_city\":null,\"fantasy_data_id\":18001,\"years_exp\":4,\"hashtag\":\"#DarianThompson-NFL-DAL-23\",\"search_first_name\":\"darian\",\"rotowire_id\":10957,\"rotoworld_id\":11336,\"active\":true,\"search_rank\":988,\"age\":27,\"full_name\":\"Darian Thompson\",\"sportradar_id\":\"3ec4f630-592c-4848-a76c-c30ecc090ecb\",\"pandascore_id\":null,\"yahoo_id\":29305,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Paraclete (CA)\",\"depth_chart_order\":2,\"stats_id\":590936,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darianthompson\",\"birth_date\":\"1993-09-22\",\"espn_id\":2573317},\"5871\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035248\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606249553903,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"5871\",\"birth_city\":null,\"fantasy_data_id\":20738,\"years_exp\":1,\"hashtag\":\"#ZachAllen-NFL-ARI-94\",\"search_first_name\":\"zach\",\"rotowire_id\":13742,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1522,\"age\":23,\"full_name\":\"Zach Allen\",\"sportradar_id\":\"f68685e7-9904-47bc-b39a-e1c813435385\",\"pandascore_id\":null,\"yahoo_id\":31897,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"New Canaan (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"281\",\"height\":\"6'4\\\"\",\"search_full_name\":\"zachallen\",\"birth_date\":\"1997-08-20\",\"espn_id\":3915282},\"3168\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032953\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1592160628517,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hackenberg\",\"depth_chart_position\":null,\"player_id\":\"3168\",\"birth_city\":null,\"fantasy_data_id\":17927,\"years_exp\":4,\"hashtag\":\"#ChristianHackenberg-NFL-FA-5\",\"search_first_name\":\"christian\",\"rotowire_id\":10733,\"rotoworld_id\":11297,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Christian Hackenberg\",\"sportradar_id\":\"8f924766-111c-4cf2-a13b-2221e1013909\",\"pandascore_id\":null,\"yahoo_id\":29284,\"last_name\":\"Hackenberg\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748555,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'4\\\"\",\"search_full_name\":\"christianhackenberg\",\"birth_date\":\"1995-02-14\",\"espn_id\":3057986},\"5352\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"5352\",\"birth_city\":null,\"fantasy_data_id\":20404,\"years_exp\":0,\"hashtag\":\"#RyanGreen-NFL-FA-7\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Green\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ryangreen\",\"birth_date\":\"1994-04-19\",\"espn_id\":3045357},\"5174\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034121\",\"first_name\":\"Tegray\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scales\",\"depth_chart_position\":null,\"player_id\":\"5174\",\"birth_city\":null,\"fantasy_data_id\":20155,\"years_exp\":2,\"hashtag\":\"#TegrayScales-NFL-PIT-46\",\"search_first_name\":\"tegray\",\"rotowire_id\":12704,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tegray Scales\",\"sportradar_id\":\"80637f09-673d-45fe-b874-bdb1a9c20ee6\",\"pandascore_id\":null,\"yahoo_id\":31410,\"last_name\":\"Scales\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Colerain (OH)\",\"depth_chart_order\":null,\"stats_id\":838212,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tegrayscales\",\"birth_date\":\"1996-05-10\",\"espn_id\":3128268},\"6329\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"battle\",\"depth_chart_position\":null,\"player_id\":\"6329\",\"birth_city\":null,\"fantasy_data_id\":21235,\"years_exp\":1,\"hashtag\":\"#JohnBattle-NFL-PIT-21\",\"search_first_name\":\"john\",\"rotowire_id\":13841,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"John Battle\",\"sportradar_id\":\"051ccf4e-e2b9-474b-b0c1-d5f6c0aebb63\",\"pandascore_id\":null,\"yahoo_id\":32521,\"last_name\":\"Battle\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Louisiana State\",\"high_school\":\"Hallandale (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnbattle\",\"birth_date\":\"1995-08-21\",\"espn_id\":3115371},\"1608\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030170\",\"first_name\":\"Rontez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1573099221348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miles\",\"depth_chart_position\":null,\"player_id\":\"1608\",\"birth_city\":null,\"fantasy_data_id\":15280,\"years_exp\":7,\"hashtag\":\"#RontezMiles-NFL-FA-45\",\"search_first_name\":\"rontez\",\"rotowire_id\":9194,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Rontez Miles\",\"sportradar_id\":\"2592f1d6-3cc5-4e32-b6fb-18ad517be491\",\"pandascore_id\":null,\"yahoo_id\":26989,\"last_name\":\"Miles\",\"metadata\":null,\"college\":\"California, Pa.\",\"high_school\":\"Woodland Hills (PA)\",\"depth_chart_order\":null,\"stats_id\":401167,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rontezmiles\",\"birth_date\":\"1988-11-25\",\"espn_id\":16206},\"6314\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035357\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604196611459,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"6314\",\"birth_city\":null,\"fantasy_data_id\":21216,\"years_exp\":1,\"hashtag\":\"#CameronLewis-NFL-BUF-47\",\"search_first_name\":\"cameron\",\"rotowire_id\":14253,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1697,\"age\":23,\"full_name\":\"Cameron Lewis\",\"sportradar_id\":\"d5dee97b-aa96-4fa6-868f-b6dc1f66245c\",\"pandascore_id\":null,\"yahoo_id\":32416,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Consortium Prep (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"cameronlewis\",\"birth_date\":\"1997-04-13\",\"espn_id\":3916577},\"7427\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693360103,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mabry\",\"depth_chart_position\":\"TE\",\"player_id\":\"7427\",\"birth_city\":null,\"fantasy_data_id\":22407,\"years_exp\":0,\"hashtag\":\"#TylerMabry-NFL-SEA-85\",\"search_first_name\":\"tyler\",\"rotowire_id\":14928,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tyler Mabry\",\"sportradar_id\":\"bad1a0c1-7ea2-4898-b5d9-ad1aec45c8b1\",\"pandascore_id\":null,\"yahoo_id\":33286,\"last_name\":\"Mabry\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tylermabry\",\"birth_date\":\"1996-11-21\",\"espn_id\":3916587},\"4793\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034012\",\"first_name\":\"Peli\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1526343301574,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anau\",\"depth_chart_position\":null,\"player_id\":\"4793\",\"birth_city\":null,\"fantasy_data_id\":19703,\"years_exp\":3,\"hashtag\":\"#PeliAnau-NFL-FA-63\",\"search_first_name\":\"peli\",\"rotowire_id\":12329,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Peli Anau\",\"sportradar_id\":\"7c71541b-048b-43de-8b27-1c9cfd43f0c0\",\"pandascore_id\":null,\"yahoo_id\":30917,\"last_name\":\"Anau\",\"metadata\":null,\"college\":\"Northern Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"pelianau\",\"birth_date\":\"1993-10-26\",\"espn_id\":null},\"6936\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1595477741983,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"charlton\",\"depth_chart_position\":null,\"player_id\":\"6936\",\"birth_city\":null,\"fantasy_data_id\":22093,\"years_exp\":0,\"hashtag\":\"#JosephCharlton-NFL-CAR-3\",\"search_first_name\":\"joseph\",\"rotowire_id\":14652,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Joseph Charlton\",\"sportradar_id\":\"9a76c690-1946-4860-9564-a0b7b9bbaf0a\",\"pandascore_id\":null,\"yahoo_id\":33360,\"last_name\":\"Charlton\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"A.C. Flora\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'5\\\"\",\"search_full_name\":\"josephcharlton\",\"birth_date\":\"1997-04-07\",\"espn_id\":3924357},\"7422\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ronnell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perkins\",\"depth_chart_position\":null,\"player_id\":\"7422\",\"birth_city\":null,\"fantasy_data_id\":22402,\"years_exp\":0,\"hashtag\":\"#RonnellPerkins-NFL-FA-0\",\"search_first_name\":\"ronnell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ronnell Perkins\",\"sportradar_id\":\"3d85768d-d23c-4a33-895b-4bb1054b9a56\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Perkins\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ronnellperkins\",\"birth_date\":null,\"espn_id\":null},\"5079\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034683\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605408061050,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"5079\",\"birth_city\":null,\"fantasy_data_id\":19968,\"years_exp\":2,\"hashtag\":\"#DariusPhillips-NFL-CIN-23\",\"search_first_name\":\"darius\",\"rotowire_id\":12774,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1373,\"age\":25,\"full_name\":\"Darius Phillips\",\"sportradar_id\":\"12178d3d-49d3-4cb4-88b9-cc8f044bb684\",\"pandascore_id\":null,\"yahoo_id\":31140,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Robichaud (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dariusphillips\",\"birth_date\":\"1995-06-26\",\"espn_id\":3042785},\"1041\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"1041\",\"birth_city\":null,\"fantasy_data_id\":13757,\"years_exp\":8,\"hashtag\":\"#RonBrooks-NFL-FA-33\",\"search_first_name\":\"ron\",\"rotowire_id\":8273,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ron Brooks\",\"sportradar_id\":\"41db5056-d8e4-4da0-9c05-037adab1d502\",\"pandascore_id\":null,\"yahoo_id\":25834,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"MacArthur (TX)\",\"depth_chart_order\":null,\"stats_id\":381630,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ronbrooks\",\"birth_date\":\"1988-10-16\",\"espn_id\":15008},\"4500\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033500\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565569235763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lauderdale\",\"depth_chart_position\":null,\"player_id\":\"4500\",\"birth_city\":null,\"fantasy_data_id\":19372,\"years_exp\":3,\"hashtag\":\"#AndrewLauderdale-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":12284,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Andrew Lauderdale\",\"sportradar_id\":\"eebb987d-dbe0-4d3a-95a4-33144c6bb53a\",\"pandascore_id\":null,\"yahoo_id\":30413,\"last_name\":\"Lauderdale\",\"metadata\":null,\"college\":\"New Hampshire\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewlauderdale\",\"birth_date\":\"1993-11-22\",\"espn_id\":2969125},\"2828\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Erick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dargan\",\"depth_chart_position\":null,\"player_id\":\"2828\",\"birth_city\":null,\"fantasy_data_id\":17296,\"years_exp\":0,\"hashtag\":\"#ErickDargan-NFL-FA-42\",\"search_first_name\":\"erick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Erick Dargan\",\"sportradar_id\":\"99a282a5-4d3c-499f-95ea-6811f3e28921\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dargan\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'11\\\"\",\"search_full_name\":\"erickdargan\",\"birth_date\":\"1992-07-28\",\"espn_id\":2516980},\"960\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Allen\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bradford\",\"depth_chart_position\":null,\"player_id\":\"960\",\"birth_city\":null,\"fantasy_data_id\":13352,\"years_exp\":9,\"hashtag\":\"#AllenBradford-NFL-FA-53\",\"search_first_name\":\"allen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Allen Bradford\",\"sportradar_id\":\"4050e4f0-4281-4d43-9b7c-738f48fb7788\",\"pandascore_id\":null,\"yahoo_id\":24974,\"last_name\":\"Bradford\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Colton (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"5'11\\\"\",\"search_full_name\":\"allenbradford\",\"birth_date\":\"1988-08-31\",\"espn_id\":14103},\"5137\":{\"position\":\"WR\",\"injury_notes\":\"James Jr. is out due to an offseason training injury.\",\"birth_country\":null,\"gsis_id\":\"00-0034286\",\"first_name\":\"Richie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606508426663,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5137\",\"birth_city\":null,\"fantasy_data_id\":20077,\"years_exp\":2,\"hashtag\":\"#RichieJames-NFL-SF-13\",\"search_first_name\":\"richie\",\"rotowire_id\":12579,\"rotoworld_id\":null,\"active\":true,\"search_rank\":316,\"age\":25,\"full_name\":\"Richie James\",\"sportradar_id\":\"4aae1781-1eec-48c0-b41f-e4fee61c3c32\",\"pandascore_id\":null,\"yahoo_id\":31210,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Riverview (FL)\",\"depth_chart_order\":1,\"stats_id\":822644,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"richiejames\",\"birth_date\":\"1995-09-05\",\"espn_id\":3122899},\"6382\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035110\",\"first_name\":\"Tito\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"odenigbo\",\"depth_chart_position\":null,\"player_id\":\"6382\",\"birth_city\":null,\"fantasy_data_id\":21313,\"years_exp\":1,\"hashtag\":\"#TitoOdenigbo-NFL-FA-60\",\"search_first_name\":\"tito\",\"rotowire_id\":14156,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tito Odenigbo\",\"sportradar_id\":\"b88049ec-946f-4723-bc82-ce5803c652be\",\"pandascore_id\":null,\"yahoo_id\":32146,\"last_name\":\"Odenigbo\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"titoodenigbo\",\"birth_date\":\"1996-07-13\",\"espn_id\":3115929},\"514\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"deaderick\",\"depth_chart_position\":null,\"player_id\":\"514\",\"birth_city\":null,\"fantasy_data_id\":10971,\"years_exp\":6,\"hashtag\":\"#BrandonDeaderick-NFL-FA-98\",\"search_first_name\":\"brandon\",\"rotowire_id\":6823,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Brandon Deaderick\",\"sportradar_id\":\"d6c17683-c409-4f05-aedc-e46a7073046d\",\"pandascore_id\":null,\"yahoo_id\":24223,\"last_name\":\"Deaderick\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandondeaderick\",\"birth_date\":\"1987-08-19\",\"espn_id\":13351},\"3370\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032443\",\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598326553642,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":null,\"player_id\":\"3370\",\"birth_city\":null,\"fantasy_data_id\":18131,\"years_exp\":4,\"hashtag\":\"#JoeyHunt-NFL-IND-68\",\"search_first_name\":\"joey\",\"rotowire_id\":11235,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joey Hunt\",\"sportradar_id\":\"30e8767e-a208-494d-b684-4f1905e0ac10\",\"pandascore_id\":null,\"yahoo_id\":29449,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"El Campo (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joeyhunt\",\"birth_date\":\"1994-02-22\",\"espn_id\":2971563},\"1194\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029087\",\"first_name\":\"Leonard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1546137029440,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1194\",\"birth_city\":null,\"fantasy_data_id\":14381,\"years_exp\":8,\"hashtag\":\"#LeonardJohnson-NFL-FA-27\",\"search_first_name\":\"leonard\",\"rotowire_id\":8170,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Leonard Johnson\",\"sportradar_id\":\"2023386f-584e-4cd3-b4e6-491cda3fee31\",\"pandascore_id\":null,\"yahoo_id\":26043,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Largo (FL)\",\"depth_chart_order\":null,\"stats_id\":462232,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'10\\\"\",\"search_full_name\":\"leonardjohnson\",\"birth_date\":\"1990-03-30\",\"espn_id\":15398},\"1825\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031382\",\"first_name\":\"Jarvis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606492503434,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"landry\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1825\",\"birth_city\":null,\"fantasy_data_id\":16020,\"years_exp\":6,\"hashtag\":\"#JarvisLandry-NFL-CLE-80\",\"search_first_name\":\"jarvis\",\"rotowire_id\":9454,\"rotoworld_id\":9405,\"active\":true,\"search_rank\":90,\"age\":28,\"full_name\":\"Jarvis Landry\",\"sportradar_id\":\"06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4\",\"pandascore_id\":null,\"yahoo_id\":27591,\"last_name\":\"Landry\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Lutcher (LA)\",\"depth_chart_order\":1,\"stats_id\":589991,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jarvislandry\",\"birth_date\":\"1992-11-28\",\"espn_id\":16790},\"988\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028434\",\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557721207964,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"baldwin\",\"depth_chart_position\":null,\"player_id\":\"988\",\"birth_city\":null,\"fantasy_data_id\":13460,\"years_exp\":9,\"hashtag\":\"#DougBaldwin-NFL-FA-89\",\"search_first_name\":\"doug\",\"rotowire_id\":7963,\"rotoworld_id\":6825,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Doug Baldwin\",\"sportradar_id\":\"e1b29179-074b-4c91-8797-763b76ac618a\",\"pandascore_id\":null,\"yahoo_id\":25105,\"last_name\":\"Baldwin\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Gulf Breeze (FL)\",\"depth_chart_order\":null,\"stats_id\":399777,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dougbaldwin\",\"birth_date\":\"1988-09-21\",\"espn_id\":14221},\"3983\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dave\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toub\",\"depth_chart_position\":null,\"player_id\":\"3983\",\"birth_city\":null,\"fantasy_data_id\":18818,\"years_exp\":0,\"hashtag\":\"#DaveToub-NFL-FA-0\",\"search_first_name\":\"dave\",\"rotowire_id\":null,\"rotoworld_id\":12136,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dave Toub\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Toub\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"davetoub\",\"birth_date\":null,\"espn_id\":null},\"5309\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034441\",\"first_name\":\"Rod\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571280056791,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"5309\",\"birth_city\":null,\"fantasy_data_id\":20058,\"years_exp\":1,\"hashtag\":\"#RodTaylor-NFL-CIN-64\",\"search_first_name\":\"rod\",\"rotowire_id\":12939,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Rod Taylor\",\"sportradar_id\":\"29f9a81f-f31f-4ace-80b2-cf5270c96611\",\"pandascore_id\":null,\"yahoo_id\":31222,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rodtaylor\",\"birth_date\":\"1994-10-26\",\"espn_id\":3128752},\"5900\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035267\",\"first_name\":\"Shareef\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601763613760,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"5900\",\"birth_city\":null,\"fantasy_data_id\":20879,\"years_exp\":1,\"hashtag\":\"#ShareefMiller-NFL-PHI-55\",\"search_first_name\":\"shareef\",\"rotowire_id\":13499,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1576,\"age\":23,\"full_name\":\"Shareef Miller\",\"sportradar_id\":\"26d3edb9-e572-4272-835a-21b63200ea64\",\"pandascore_id\":null,\"yahoo_id\":31970,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"George Washington (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'4\\\"\",\"search_full_name\":\"shareefmiller\",\"birth_date\":\"1997-03-14\",\"espn_id\":3929648},\"7245\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605645625195,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wieting\",\"depth_chart_position\":\"TE\",\"player_id\":\"7245\",\"birth_city\":null,\"fantasy_data_id\":22245,\"years_exp\":0,\"hashtag\":\"#NateWieting-NFL-NYG-87\",\"search_first_name\":\"nate\",\"rotowire_id\":14929,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nate Wieting\",\"sportradar_id\":\"a60a44ba-e1e0-4f05-b0d6-b0d483121c23\",\"pandascore_id\":null,\"yahoo_id\":33314,\"last_name\":\"Wieting\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Rockford Lutheran (IL)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"natewieting\",\"birth_date\":\"1997-02-20\",\"espn_id\":3894852},\"3362\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032436\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606415758341,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"driskel\",\"depth_chart_position\":\"QB\",\"player_id\":\"3362\",\"birth_city\":null,\"fantasy_data_id\":18123,\"years_exp\":4,\"hashtag\":\"#JeffDriskel-NFL-DEN-9\",\"search_first_name\":\"jeff\",\"rotowire_id\":11026,\"rotoworld_id\":11340,\"active\":true,\"search_rank\":483,\"age\":27,\"full_name\":\"Jeff Driskel\",\"sportradar_id\":\"4d517d8f-fe4d-4c89-9a2a-fee836ba4a71\",\"pandascore_id\":null,\"yahoo_id\":29441,\"last_name\":\"Driskel\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Louisiana Tech\",\"high_school\":\"Hagerty (FL)\",\"depth_chart_order\":4,\"stats_id\":592538,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jeffdriskel\",\"birth_date\":\"1993-04-23\",\"espn_id\":2574630},\"5863\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035246\",\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605817512212,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"arcegawhiteside\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5863\",\"birth_city\":null,\"fantasy_data_id\":20742,\"years_exp\":1,\"hashtag\":\"#JJArcegaWhiteside-NFL-PHI-19\",\"search_first_name\":\"jj\",\"rotowire_id\":13529,\"rotoworld_id\":13976,\"active\":true,\"search_rank\":277,\"age\":23,\"full_name\":\"J.J. Arcega-Whiteside\",\"sportradar_id\":\"0cc1a941-1a6d-4a4a-8c7c-88157165c126\",\"pandascore_id\":null,\"yahoo_id\":31889,\"last_name\":\"Arcega-Whiteside\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Dorman (SC)\",\"depth_chart_order\":3,\"stats_id\":884921,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jjarcegawhiteside\",\"birth_date\":\"1996-12-31\",\"espn_id\":3931397},\"5647\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034502\",\"first_name\":\"Grant\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599338157426,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haley\",\"depth_chart_position\":null,\"player_id\":\"5647\",\"birth_city\":null,\"fantasy_data_id\":20339,\"years_exp\":2,\"hashtag\":\"#GrantHaley-NFL-NO-34\",\"search_first_name\":\"grant\",\"rotowire_id\":12675,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1456,\"age\":24,\"full_name\":\"Grant Haley\",\"sportradar_id\":\"66dbd211-6835-4c06-9e4d-9f74cffac250\",\"pandascore_id\":null,\"yahoo_id\":31555,\"last_name\":\"Haley\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"The Lovett School (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"granthaley\",\"birth_date\":\"1996-01-06\",\"espn_id\":3116166},\"5305\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034811\",\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596169819724,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"5305\",\"birth_city\":null,\"fantasy_data_id\":20029,\"years_exp\":2,\"hashtag\":\"#TrevonYoung-NFL-CLE-59\",\"search_first_name\":\"trevon\",\"rotowire_id\":12962,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trevon Young\",\"sportradar_id\":\"36b878c8-7d53-4e90-8403-6f67fa911a2e\",\"pandascore_id\":null,\"yahoo_id\":31175,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Lincoln (IA)\",\"depth_chart_order\":null,\"stats_id\":820896,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'4\\\"\",\"search_full_name\":\"trevonyoung\",\"birth_date\":\"1995-04-01\",\"espn_id\":3116667},\"1991\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashaad\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"1991\",\"birth_city\":null,\"fantasy_data_id\":16262,\"years_exp\":5,\"hashtag\":\"#RashaadReynolds-NFL-FA-43\",\"search_first_name\":\"rashaad\",\"rotowire_id\":9667,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Rashaad Reynolds\",\"sportradar_id\":\"d4d12579-5cb3-4d50-98a1-11fce2dee8f6\",\"pandascore_id\":null,\"yahoo_id\":27879,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rashaadreynolds\",\"birth_date\":\"1991-02-02\",\"espn_id\":17240},\"4875\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bettcher\",\"depth_chart_position\":null,\"player_id\":\"4875\",\"birth_city\":null,\"fantasy_data_id\":19776,\"years_exp\":0,\"hashtag\":\"#JamesBettcher-NFL-FA-0\",\"search_first_name\":\"james\",\"rotowire_id\":null,\"rotoworld_id\":10351,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"James Bettcher\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bettcher\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jamesbettcher\",\"birth_date\":null,\"espn_id\":null},\"527\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dennis\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pitta\",\"depth_chart_position\":null,\"player_id\":\"527\",\"birth_city\":null,\"fantasy_data_id\":11017,\"years_exp\":9,\"hashtag\":\"#DennisPitta-NFL-FA-88\",\"search_first_name\":\"dennis\",\"rotowire_id\":6533,\"rotoworld_id\":5837,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Dennis Pitta\",\"sportradar_id\":\"e2577abf-7f24-4987-89f5-51676c39c2f6\",\"pandascore_id\":null,\"yahoo_id\":24089,\"last_name\":\"Pitta\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":246928,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dennispitta\",\"birth_date\":\"1985-06-29\",\"espn_id\":13231},\"337\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clemons\",\"depth_chart_position\":null,\"player_id\":\"337\",\"birth_city\":null,\"fantasy_data_id\":8321,\"years_exp\":11,\"hashtag\":\"#ChrisClemons-NFL-FA-29\",\"search_first_name\":\"chris\",\"rotowire_id\":6330,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Chris Clemons\",\"sportradar_id\":\"05cdefdb-1055-420e-a94b-e3ed364719e1\",\"pandascore_id\":null,\"yahoo_id\":9429,\"last_name\":\"Clemons\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"DeSoto (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrisclemons\",\"birth_date\":\"1985-09-15\",\"espn_id\":12645},\"6033\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035219\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605745243616,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"buggs\",\"depth_chart_position\":null,\"player_id\":\"6033\",\"birth_city\":null,\"fantasy_data_id\":21049,\"years_exp\":1,\"hashtag\":\"#IsaiahBuggs-NFL-PIT-96\",\"search_first_name\":\"isaiah\",\"rotowire_id\":13755,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1648,\"age\":24,\"full_name\":\"Isaiah Buggs\",\"sportradar_id\":\"5ec1f072-8ce0-449d-bbc0-5e8160836007\",\"pandascore_id\":null,\"yahoo_id\":32024,\"last_name\":\"Buggs\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Alabama\",\"high_school\":\"Ruston (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaiahbuggs\",\"birth_date\":\"1996-08-24\",\"espn_id\":4241451},\"7051\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Grayland\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602627049640,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"arnold\",\"depth_chart_position\":null,\"player_id\":\"7051\",\"birth_city\":null,\"fantasy_data_id\":22065,\"years_exp\":0,\"hashtag\":\"#GraylandArnold-NFL-PHI-37\",\"search_first_name\":\"grayland\",\"rotowire_id\":14491,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Grayland Arnold\",\"sportradar_id\":\"d6969476-95dc-42e4-9cd1-a1e8ae6973ff\",\"pandascore_id\":null,\"yahoo_id\":32961,\"last_name\":\"Arnold\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Kountze (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"graylandarnold\",\"birth_date\":\"1997-09-04\",\"espn_id\":4035389},\"1492\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0030063\",\"first_name\":\"Johnathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606011909598,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hankins\",\"depth_chart_position\":\"NT\",\"player_id\":\"1492\",\"birth_city\":null,\"fantasy_data_id\":15090,\"years_exp\":7,\"hashtag\":\"#JohnathanHankins-NFL-LV-90\",\"search_first_name\":\"johnathan\",\"rotowire_id\":8669,\"rotoworld_id\":8433,\"active\":true,\"search_rank\":729,\"age\":28,\"full_name\":\"Johnathan Hankins\",\"sportradar_id\":\"9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8\",\"pandascore_id\":null,\"yahoo_id\":26672,\"last_name\":\"Hankins\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Southeastern (MI)\",\"depth_chart_order\":1,\"stats_id\":553681,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnathanhankins\",\"birth_date\":\"1992-03-30\",\"espn_id\":15841},\"640\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccoy\",\"depth_chart_position\":null,\"player_id\":\"640\",\"birth_city\":null,\"fantasy_data_id\":11603,\"years_exp\":10,\"hashtag\":\"#AnthonyMcCoy-NFL-FA-85\",\"search_first_name\":\"anthony\",\"rotowire_id\":6531,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Anthony McCoy\",\"sportradar_id\":\"ab0c4c63-df42-4825-8921-3fd1a842c3df\",\"pandascore_id\":null,\"yahoo_id\":24161,\"last_name\":\"McCoy\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Bullard (CA)\",\"depth_chart_order\":null,\"stats_id\":322836,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'5\\\"\",\"search_full_name\":\"anthonymccoy\",\"birth_date\":\"1987-12-28\",\"espn_id\":13414},\"1954\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nix\",\"depth_chart_position\":null,\"player_id\":\"1954\",\"birth_city\":null,\"fantasy_data_id\":16208,\"years_exp\":6,\"hashtag\":\"#LouisNix-NFL-FA-97\",\"search_first_name\":\"louis\",\"rotowire_id\":9252,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Louis Nix\",\"sportradar_id\":\"3b25039e-8631-4b9f-b4ec-dd185e164480\",\"pandascore_id\":null,\"yahoo_id\":27611,\"last_name\":\"Nix\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Jacksonville Raines (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'2\\\"\",\"search_full_name\":\"louisnix\",\"birth_date\":\"1991-07-31\",\"espn_id\":16806},\"7425\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693359878,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"carr\",\"depth_chart_position\":\"RB\",\"player_id\":\"7425\",\"birth_city\":null,\"fantasy_data_id\":22405,\"years_exp\":0,\"hashtag\":\"#PatrickCarr-NFL-SEA-39\",\"search_first_name\":\"patrick\",\"rotowire_id\":14857,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Patrick Carr\",\"sportradar_id\":\"01d96b53-488d-4d98-8623-b2b29c7ebfbf\",\"pandascore_id\":null,\"yahoo_id\":33281,\"last_name\":\"Carr\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"The Woodlands (TX)\",\"depth_chart_order\":9,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"patrickcarr\",\"birth_date\":\"1995-09-22\",\"espn_id\":3915427},\"937\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ballard\",\"depth_chart_position\":\"LWR\",\"player_id\":\"937\",\"birth_city\":null,\"fantasy_data_id\":13256,\"years_exp\":9,\"hashtag\":\"#ChristianBallard-NFL-FA-99\",\"search_first_name\":\"christian\",\"rotowire_id\":null,\"rotoworld_id\":11231,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Christian Ballard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ballard\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'4\\\"\",\"search_full_name\":\"christianballard\",\"birth_date\":\"1989-01-03\",\"espn_id\":null},\"3066\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chudzinski\",\"depth_chart_position\":null,\"player_id\":\"3066\",\"birth_city\":null,\"fantasy_data_id\":17806,\"years_exp\":null,\"hashtag\":\"#RobChudzinski-NFL-FA-0\",\"search_first_name\":\"rob\",\"rotowire_id\":null,\"rotoworld_id\":8342,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rob Chudzinski\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Chudzinski\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"robchudzinski\",\"birth_date\":null,\"espn_id\":null},\"4280\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033971\",\"first_name\":\"Stevie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565210436497,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tuikolovatu\",\"depth_chart_position\":null,\"player_id\":\"4280\",\"birth_city\":null,\"fantasy_data_id\":19126,\"years_exp\":3,\"hashtag\":\"#StevieTuikolovatu-NFL-FA-96\",\"search_first_name\":\"stevie\",\"rotowire_id\":12215,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Stevie Tu'ikolovatu\",\"sportradar_id\":\"d75903d3-b3c5-405d-a99b-d625bb063d82\",\"pandascore_id\":null,\"yahoo_id\":30336,\"last_name\":\"Tu'ikolovatu\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733270,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stevietuikolovatu\",\"birth_date\":\"1991-06-28\",\"espn_id\":3052515},\"208\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0021206\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606326361867,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccown\",\"depth_chart_position\":\"QB\",\"player_id\":\"208\",\"birth_city\":null,\"fantasy_data_id\":5282,\"years_exp\":18,\"hashtag\":\"#JoshMcCown-NFL-HOU-3\",\"search_first_name\":\"josh\",\"rotowire_id\":2513,\"rotoworld_id\":2090,\"active\":true,\"search_rank\":593,\"age\":41,\"full_name\":\"Josh McCown\",\"sportradar_id\":\"a261fd0a-b096-4db7-bd51-2f13bde485da\",\"pandascore_id\":null,\"yahoo_id\":5967,\"last_name\":\"McCown\",\"metadata\":null,\"college\":\"Sam Houston State\",\"high_school\":\"Jacksonville (TX)\",\"depth_chart_order\":3,\"stats_id\":81059,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshmccown\",\"birth_date\":\"1979-07-04\",\"espn_id\":3609},\"6754\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1603147520719,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gable\",\"depth_chart_position\":null,\"player_id\":\"6754\",\"birth_city\":null,\"fantasy_data_id\":21673,\"years_exp\":0,\"hashtag\":\"#JoshGable-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":14373,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Josh Gable\",\"sportradar_id\":\"ccb22507-fd47-4ab1-a379-6dea4d510ad4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gable\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joshgable\",\"birth_date\":null,\"espn_id\":null},\"523\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcknight\",\"depth_chart_position\":null,\"player_id\":\"523\",\"birth_city\":null,\"fantasy_data_id\":10999,\"years_exp\":4,\"hashtag\":\"#JoeMcKnight-NFL-FA-30\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Joe McKnight\",\"sportradar_id\":\"143e26d7-daaf-4d4f-a3b4-efb897338e53\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McKnight\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joemcknight\",\"birth_date\":\"1988-04-16\",\"espn_id\":13209},\"4696\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033838\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":1606431360504,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"edmunds\",\"depth_chart_position\":\"RB\",\"player_id\":\"4696\",\"birth_city\":null,\"fantasy_data_id\":19599,\"years_exp\":3,\"hashtag\":\"#TreyEdmunds-NFL-PIT-33\",\"search_first_name\":\"trey\",\"rotowire_id\":12433,\"rotoworld_id\":12935,\"active\":true,\"search_rank\":538,\"age\":25,\"full_name\":\"Trey Edmunds\",\"sportradar_id\":\"9b4e4d1d-ad88-4c10-b1c0-b9116755c184\",\"pandascore_id\":null,\"yahoo_id\":30850,\"last_name\":\"Edmunds\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Maryland\",\"high_school\":\"Dan River (VA)\",\"depth_chart_order\":7,\"stats_id\":691645,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"treyedmunds\",\"birth_date\":\"1994-12-30\",\"espn_id\":2970090},\"110\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024333\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606149314216,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gostkowski\",\"depth_chart_position\":\"K\",\"player_id\":\"110\",\"birth_city\":null,\"fantasy_data_id\":2982,\"years_exp\":14,\"hashtag\":\"#StephenGostkowski-NFL-TEN-3\",\"search_first_name\":\"stephen\",\"rotowire_id\":4932,\"rotoworld_id\":3937,\"active\":true,\"search_rank\":172,\"age\":36,\"full_name\":\"Stephen Gostkowski\",\"sportradar_id\":\"a527b7db-0b52-4379-9e4c-2e08c1fe1bed\",\"pandascore_id\":null,\"yahoo_id\":7867,\"last_name\":\"Gostkowski\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Memphis\",\"high_school\":\"Madison Central (MS)\",\"depth_chart_order\":1,\"stats_id\":177862,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stephengostkowski\",\"birth_date\":\"1984-01-28\",\"espn_id\":9704},\"5313\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034380\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1589651417408,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":\"RT\",\"player_id\":\"5313\",\"birth_city\":null,\"fantasy_data_id\":19938,\"years_exp\":2,\"hashtag\":\"#WillRichardson-NFL-JAX-76\",\"search_first_name\":\"will\",\"rotowire_id\":12635,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Will Richardson\",\"sportradar_id\":\"ca8b966f-3c0b-4219-a28d-0c020c365ff4\",\"pandascore_id\":null,\"yahoo_id\":31099,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Hugh M. Cummings (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'6\\\"\",\"search_full_name\":\"willrichardson\",\"birth_date\":\"1996-01-04\",\"espn_id\":3116739},\"4093\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033892\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603677633410,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"maye\",\"depth_chart_position\":\"FS\",\"player_id\":\"4093\",\"birth_city\":null,\"fantasy_data_id\":18939,\"years_exp\":3,\"hashtag\":\"#MarcusMaye-NFL-NYJ-20\",\"search_first_name\":\"marcus\",\"rotowire_id\":12001,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1140,\"age\":27,\"full_name\":\"Marcus Maye\",\"sportradar_id\":\"dfbbaf35-08d6-4f58-8577-c2e53a492454\",\"pandascore_id\":null,\"yahoo_id\":30152,\"last_name\":\"Maye\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Holy Trinity (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcusmaye\",\"birth_date\":\"1993-03-09\",\"espn_id\":2980110},\"4271\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033588\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604711446800,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rochell\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4271\",\"birth_city\":null,\"fantasy_data_id\":19117,\"years_exp\":3,\"hashtag\":\"#IsaacRochell-NFL-LAC-98\",\"search_first_name\":\"isaac\",\"rotowire_id\":11939,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1225,\"age\":25,\"full_name\":\"Isaac Rochell\",\"sportradar_id\":\"f89332c7-decb-438a-bf7c-220d6c28e098\",\"pandascore_id\":null,\"yahoo_id\":30338,\"last_name\":\"Rochell\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Eagle's Landing Christian (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"isaacrochell\",\"birth_date\":\"1995-04-22\",\"espn_id\":3052894},\"6322\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035182\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564358416945,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ubosi\",\"depth_chart_position\":null,\"player_id\":\"6322\",\"birth_city\":null,\"fantasy_data_id\":21226,\"years_exp\":1,\"hashtag\":\"#XavierUbosi-NFL-FA-89\",\"search_first_name\":\"xavier\",\"rotowire_id\":13593,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Xavier Ubosi\",\"sportradar_id\":\"93f30885-c363-491d-aac5-66981387ddd2\",\"pandascore_id\":null,\"yahoo_id\":32388,\"last_name\":\"Ubosi\",\"metadata\":null,\"college\":\"UAB\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":978262,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"xavierubosi\",\"birth_date\":\"1994-02-02\",\"espn_id\":4239830},\"7078\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605117306220,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"7078\",\"birth_city\":null,\"fantasy_data_id\":22090,\"years_exp\":0,\"hashtag\":\"#TonyBrown-NFL-WAS-12\",\"search_first_name\":\"tony\",\"rotowire_id\":14603,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tony Brown\",\"sportradar_id\":\"eb626cc4-10ec-4385-933e-eea81e2dbfbc\",\"pandascore_id\":null,\"yahoo_id\":33303,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"La Mirada (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tonybrown\",\"birth_date\":\"1997-08-08\",\"espn_id\":3915821},\"3382\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032448\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605385559512,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"weatherly\",\"depth_chart_position\":null,\"player_id\":\"3382\",\"birth_city\":null,\"fantasy_data_id\":18143,\"years_exp\":4,\"hashtag\":\"#StephenWeatherly-NFL-CAR-91\",\"search_first_name\":\"stephen\",\"rotowire_id\":10894,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1040,\"age\":26,\"full_name\":\"Stephen Weatherly\",\"sportradar_id\":\"6ef5045f-9215-4354-a1af-3f86e4c4a03d\",\"pandascore_id\":null,\"yahoo_id\":29461,\"last_name\":\"Weatherly\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Shiloh (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stephenweatherly\",\"birth_date\":\"1994-03-19\",\"espn_id\":2972362},\"4336\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4336\",\"birth_city\":null,\"fantasy_data_id\":19192,\"years_exp\":2,\"hashtag\":\"#ChristianBrown-NFL-FA-64\",\"search_first_name\":\"christian\",\"rotowire_id\":12065,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Christian Brown\",\"sportradar_id\":\"6805d38b-9398-4fcd-a582-57b146e97328\",\"pandascore_id\":null,\"yahoo_id\":30384,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christianbrown\",\"birth_date\":\"1993-08-31\",\"espn_id\":2978879},\"818\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028064\",\"first_name\":\"Bilal\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1577663119481,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":\"RB\",\"player_id\":\"818\",\"birth_city\":null,\"fantasy_data_id\":12800,\"years_exp\":9,\"hashtag\":\"#BilalPowell-NFL-FA-29\",\"search_first_name\":\"bilal\",\"rotowire_id\":7367,\"rotoworld_id\":6594,\"active\":true,\"search_rank\":626,\"age\":31,\"full_name\":\"Bilal Powell\",\"sportradar_id\":\"4a38cda2-e92f-47f8-b324-0c34e09d83f2\",\"pandascore_id\":null,\"yahoo_id\":24913,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Lake Gibson (FL)\",\"depth_chart_order\":4,\"stats_id\":403060,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bilalpowell\",\"birth_date\":\"1988-10-27\",\"espn_id\":14129},\"6596\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1565709650531,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclendon\",\"depth_chart_position\":\"QB\",\"player_id\":\"6596\",\"birth_city\":null,\"fantasy_data_id\":21563,\"years_exp\":1,\"hashtag\":\"#JalanMcClendon-NFL-FA-2\",\"search_first_name\":\"jalan\",\"rotowire_id\":13596,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jalan McClendon\",\"sportradar_id\":\"f54f3a6d-6a42-46ca-9b1f-7567f3e1288a\",\"pandascore_id\":null,\"yahoo_id\":32584,\"last_name\":\"McClendon\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":832110,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jalanmcclendon\",\"birth_date\":null,\"espn_id\":3116715},\"3766\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032643\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567826124015,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunter\",\"depth_chart_position\":null,\"player_id\":\"3766\",\"birth_city\":null,\"fantasy_data_id\":18578,\"years_exp\":4,\"hashtag\":\"#MichaelHunter-NFL-FA-25\",\"search_first_name\":\"michael\",\"rotowire_id\":11529,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Hunter\",\"sportradar_id\":\"1413a204-0c2e-40d4-b1fe-15ada63dfb4a\",\"pandascore_id\":null,\"yahoo_id\":29848,\"last_name\":\"Hunter\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelhunter\",\"birth_date\":\"1993-04-19\",\"espn_id\":2578305},\"5246\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roh\",\"depth_chart_position\":null,\"player_id\":\"5246\",\"birth_city\":null,\"fantasy_data_id\":20229,\"years_exp\":1,\"hashtag\":\"#JakeRoh-NFL-FA-48\",\"search_first_name\":\"jake\",\"rotowire_id\":13081,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1019,\"age\":null,\"full_name\":\"Jake Roh\",\"sportradar_id\":\"57793947-fce1-49a5-997a-10ed6ce5baff\",\"pandascore_id\":null,\"yahoo_id\":31345,\"last_name\":\"Roh\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728838,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jakeroh\",\"birth_date\":null,\"espn_id\":3042888},\"5884\":{\"position\":\"WR\",\"injury_notes\":\"Harmon suffered the injury during training and will miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\" 00-0035297\",\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599352258105,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"harmon\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5884\",\"birth_city\":null,\"fantasy_data_id\":20789,\"years_exp\":1,\"hashtag\":\"#KelvinHarmon-NFL-WAS-13\",\"search_first_name\":\"kelvin\",\"rotowire_id\":13428,\"rotoworld_id\":13943,\"active\":true,\"search_rank\":1546,\"age\":23,\"full_name\":\"Kelvin Harmon\",\"sportradar_id\":\"d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6\",\"pandascore_id\":null,\"yahoo_id\":32038,\"last_name\":\"Harmon\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Palmyra (NJ)\",\"depth_chart_order\":4,\"stats_id\":920809,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kelvinharmon\",\"birth_date\":\"1996-12-15\",\"espn_id\":4036163},\"3381\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032800\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596674415067,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodard\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3381\",\"birth_city\":null,\"fantasy_data_id\":18142,\"years_exp\":4,\"hashtag\":\"#JonathanWoodard-NFL-FA-0\",\"search_first_name\":\"jonathan\",\"rotowire_id\":11241,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1039,\"age\":26,\"full_name\":\"Jonathan Woodard\",\"sportradar_id\":\"e93e7aee-b38f-43d1-ab96-6eeb7c6f1392\",\"pandascore_id\":null,\"yahoo_id\":29460,\"last_name\":\"Woodard\",\"metadata\":null,\"college\":\"Central Arkansas\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonathanwoodard\",\"birth_date\":\"1993-09-19\",\"espn_id\":2567970},\"1519\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030065\",\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1595985004270,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"warford\",\"depth_chart_position\":\"RG\",\"player_id\":\"1519\",\"birth_city\":null,\"fantasy_data_id\":15128,\"years_exp\":7,\"hashtag\":\"#LarryWarford-NFL-FA-67\",\"search_first_name\":\"larry\",\"rotowire_id\":8703,\"rotoworld_id\":8420,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Larry Warford\",\"sportradar_id\":\"d54a562d-0571-4960-a903-6e98415ead6a\",\"pandascore_id\":null,\"yahoo_id\":26688,\"last_name\":\"Warford\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Madison Central (KY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'3\\\"\",\"search_full_name\":\"larrywarford\",\"birth_date\":\"1991-06-18\",\"espn_id\":15870},\"1256\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"egnew\",\"depth_chart_position\":null,\"player_id\":\"1256\",\"birth_city\":null,\"fantasy_data_id\":14641,\"years_exp\":3,\"hashtag\":\"#MichaelEgnew-NFL-FA-84\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Egnew\",\"sportradar_id\":\"11f099aa-48e9-4f78-a3cc-e0d2730a3872\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Egnew\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":463433,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelegnew\",\"birth_date\":\"1989-11-01\",\"espn_id\":14903},\"2901\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcome\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kennedy\",\"depth_chart_position\":null,\"player_id\":\"2901\",\"birth_city\":null,\"fantasy_data_id\":17369,\"years_exp\":null,\"hashtag\":\"#MalcomeKennedy-NFL-FA-0\",\"search_first_name\":\"malcome\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Malcome Kennedy\",\"sportradar_id\":\"26fede95-1c57-4312-9fdb-dcc94a6412c4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kennedy\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556533,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"malcomekennedy\",\"birth_date\":null,\"espn_id\":null},\"6425\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justice\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powers\",\"depth_chart_position\":null,\"player_id\":\"6425\",\"birth_city\":null,\"fantasy_data_id\":21408,\"years_exp\":0,\"hashtag\":\"#JusticePowers-NFL-FA-57\",\"search_first_name\":\"justice\",\"rotowire_id\":14052,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Justice Powers\",\"sportradar_id\":\"e394ceed-c6a1-44c7-a80a-a8d2cd12d088\",\"pandascore_id\":null,\"yahoo_id\":32177,\"last_name\":\"Powers\",\"metadata\":null,\"college\":\"UAB\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justicepowers\",\"birth_date\":\"1996-04-07\",\"espn_id\":4239813},\"3005\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031832\",\"first_name\":\"Lavon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1577973038738,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hooks\",\"depth_chart_position\":null,\"player_id\":\"3005\",\"birth_city\":null,\"fantasy_data_id\":17538,\"years_exp\":5,\"hashtag\":\"#LavonHooks-NFL-FA-0\",\"search_first_name\":\"lavon\",\"rotowire_id\":10870,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Lavon Hooks\",\"sportradar_id\":\"af52bc9b-b734-43a8-af8d-daad398db79e\",\"pandascore_id\":null,\"yahoo_id\":28928,\"last_name\":\"Hooks\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lavonhooks\",\"birth_date\":\"1992-01-23\",\"espn_id\":3042645},\"2457\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031947\",\"first_name\":\"Tyeler\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600986013748,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davison\",\"depth_chart_position\":\"RDT\",\"player_id\":\"2457\",\"birth_city\":null,\"fantasy_data_id\":16914,\"years_exp\":5,\"hashtag\":\"#TyelerDavison-NFL-ATL-96\",\"search_first_name\":\"tyeler\",\"rotowire_id\":10325,\"rotoworld_id\":null,\"active\":true,\"search_rank\":898,\"age\":28,\"full_name\":\"Tyeler Davison\",\"sportradar_id\":\"be07b323-a23c-4589-9fe0-29ae6a537de9\",\"pandascore_id\":null,\"yahoo_id\":28542,\"last_name\":\"Davison\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Desert Mountain (AZ)\",\"depth_chart_order\":1,\"stats_id\":562339,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tyelerdavison\",\"birth_date\":\"1992-09-03\",\"espn_id\":2517230},\"1199\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":null,\"player_id\":\"1199\",\"birth_city\":null,\"fantasy_data_id\":14403,\"years_exp\":8,\"hashtag\":\"#MattDaniels-NFL-FA-30\",\"search_first_name\":\"matt\",\"rotowire_id\":8524,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Matt Daniels\",\"sportradar_id\":\"274e943a-b4bd-469b-8fba-f4d24202931a\",\"pandascore_id\":null,\"yahoo_id\":26345,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Fayette County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mattdaniels\",\"birth_date\":\"1989-09-27\",\"espn_id\":15147},\"1716\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029068\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1526067001449,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"1716\",\"birth_city\":null,\"fantasy_data_id\":15631,\"years_exp\":8,\"hashtag\":\"#DerrickColeman-NFL-FA-32\",\"search_first_name\":\"derrick\",\"rotowire_id\":8247,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Derrick Coleman\",\"sportradar_id\":\"e0a63251-5428-43a1-88c1-c000215ac5ce\",\"pandascore_id\":null,\"yahoo_id\":26299,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Troy (CA)\",\"depth_chart_order\":null,\"stats_id\":461705,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"derrickcoleman\",\"birth_date\":\"1990-10-18\",\"espn_id\":15351},\"5108\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034412\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1570899936186,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"falk\",\"depth_chart_position\":null,\"player_id\":\"5108\",\"birth_city\":null,\"fantasy_data_id\":20004,\"years_exp\":2,\"hashtag\":\"#LukeFalk-NFL-FA-8\",\"search_first_name\":\"luke\",\"rotowire_id\":12770,\"rotoworld_id\":13215,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Luke Falk\",\"sportradar_id\":\"b88e39e6-3247-4f85-9909-c18d373eaeee\",\"pandascore_id\":null,\"yahoo_id\":31169,\"last_name\":\"Falk\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749541,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lukefalk\",\"birth_date\":\"1994-12-28\",\"espn_id\":3052061},\"4382\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033358\",\"first_name\":\"Izaah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lunsford\",\"depth_chart_position\":null,\"player_id\":\"4382\",\"birth_city\":null,\"fantasy_data_id\":19239,\"years_exp\":3,\"hashtag\":\"#IzaahLunsford-NFL-FA-66\",\"search_first_name\":\"izaah\",\"rotowire_id\":12595,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Izaah Lunsford\",\"sportradar_id\":\"73cf139b-927e-43e0-9e4d-6f48cff0ab9d\",\"pandascore_id\":null,\"yahoo_id\":30615,\"last_name\":\"Lunsford\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"izaahlunsford\",\"birth_date\":\"1993-10-21\",\"espn_id\":2972118},\"4461\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033316\",\"first_name\":\"Lorenzo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532988316299,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jerome\",\"depth_chart_position\":null,\"player_id\":\"4461\",\"birth_city\":null,\"fantasy_data_id\":19327,\"years_exp\":3,\"hashtag\":\"#LorenzoJerome-NFL-FA-40\",\"search_first_name\":\"lorenzo\",\"rotowire_id\":11995,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lorenzo Jerome\",\"sportradar_id\":\"be6c0952-4400-48bb-8a67-95c00f8aaab7\",\"pandascore_id\":null,\"yahoo_id\":30560,\"last_name\":\"Jerome\",\"metadata\":null,\"college\":\"St. Francis (PA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":756881,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'10\\\"\",\"search_full_name\":\"lorenzojerome\",\"birth_date\":\"1995-01-20\",\"espn_id\":3050534},\"1424\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bonner\",\"depth_chart_position\":null,\"player_id\":\"1424\",\"birth_city\":null,\"fantasy_data_id\":14984,\"years_exp\":3,\"hashtag\":\"#AlanBonner-NFL-FA-16\",\"search_first_name\":\"alan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alan Bonner\",\"sportradar_id\":\"d2a7d37d-045a-4086-bbee-48d2cfb43a19\",\"pandascore_id\":null,\"yahoo_id\":26818,\"last_name\":\"Bonner\",\"metadata\":null,\"college\":\"Jacksonville State - AL\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":513592,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alanbonner\",\"birth_date\":\"1990-11-05\",\"espn_id\":16003},\"2411\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031569\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1561583717685,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"langford\",\"depth_chart_position\":null,\"player_id\":\"2411\",\"birth_city\":null,\"fantasy_data_id\":16867,\"years_exp\":5,\"hashtag\":\"#JeremyLangford-NFL-FA-43\",\"search_first_name\":\"jeremy\",\"rotowire_id\":10186,\"rotoworld_id\":10473,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeremy Langford\",\"sportradar_id\":\"6512b90e-d6b3-4719-bb0c-a75f97673f37\",\"pandascore_id\":null,\"yahoo_id\":28494,\"last_name\":\"Langford\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"John Glenn (MI)\",\"depth_chart_order\":null,\"stats_id\":557370,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeremylangford\",\"birth_date\":\"1991-12-06\",\"espn_id\":2515416},\"23\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022127\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606147513255,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"witten\",\"depth_chart_position\":\"TE\",\"player_id\":\"23\",\"birth_city\":null,\"fantasy_data_id\":722,\"years_exp\":17,\"hashtag\":\"#JasonWitten-NFL-LV-82\",\"search_first_name\":\"jason\",\"rotowire_id\":3086,\"rotoworld_id\":1990,\"active\":true,\"search_rank\":378,\"age\":38,\"full_name\":\"Jason Witten\",\"sportradar_id\":\"e38c9b1b-7c51-48a2-ac1d-a752502e8930\",\"pandascore_id\":null,\"yahoo_id\":6405,\"last_name\":\"Witten\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Elizabethton (TN)\",\"depth_chart_order\":2,\"stats_id\":184571,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jasonwitten\",\"birth_date\":\"1982-05-06\",\"espn_id\":4527},\"4479\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1527103801505,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sperbeck\",\"depth_chart_position\":null,\"player_id\":\"4479\",\"birth_city\":null,\"fantasy_data_id\":19347,\"years_exp\":1,\"hashtag\":\"#ThomasSperbeck-NFL-TB-83\",\"search_first_name\":\"thomas\",\"rotowire_id\":12324,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1125,\"age\":24,\"full_name\":\"Thomas Sperbeck\",\"sportradar_id\":\"04e6911c-7569-4d36-9d74-9c49616de1d5\",\"pandascore_id\":null,\"yahoo_id\":30480,\"last_name\":\"Sperbeck\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728840,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'0\\\"\",\"search_full_name\":\"thomassperbeck\",\"birth_date\":\"1994-10-20\",\"espn_id\":3042890},\"1636\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029878\",\"first_name\":\"MarQueis\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599676507506,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"1636\",\"birth_city\":null,\"fantasy_data_id\":15371,\"years_exp\":7,\"hashtag\":\"#MarQueisGray-NFL-FA-48\",\"search_first_name\":\"marqueis\",\"rotowire_id\":8980,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"MarQueis Gray\",\"sportradar_id\":\"fda00e5c-b7df-487a-9a24-5e4087c575e1\",\"pandascore_id\":null,\"yahoo_id\":27213,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Ben Davis (IN)\",\"depth_chart_order\":null,\"stats_id\":464295,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marqueisgray\",\"birth_date\":\"1989-11-07\",\"espn_id\":16323},\"6796\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mekhi\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605746743812,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"becton\",\"depth_chart_position\":\"LT\",\"player_id\":\"6796\",\"birth_city\":null,\"fantasy_data_id\":22009,\"years_exp\":0,\"hashtag\":\"#MekhiBecton-NFL-NYJ-77\",\"search_first_name\":\"mekhi\",\"rotowire_id\":14391,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Mekhi Becton\",\"sportradar_id\":\"8639eb45-a9dd-4b3b-91f1-01319af3bdd0\",\"pandascore_id\":null,\"yahoo_id\":32681,\"last_name\":\"Becton\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Highland Springs (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"355\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mekhibecton\",\"birth_date\":\"1999-04-18\",\"espn_id\":4240090},\"2357\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031557\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605828013971,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"2357\",\"birth_city\":null,\"fantasy_data_id\":16813,\"years_exp\":5,\"hashtag\":\"#JordanPhillips-NFL-ARI-97\",\"search_first_name\":\"jordan\",\"rotowire_id\":10311,\"rotoworld_id\":10457,\"active\":true,\"search_rank\":874,\"age\":28,\"full_name\":\"Jordan Phillips\",\"sportradar_id\":\"023af11a-3aa1-4266-b163-31cf6369ef3b\",\"pandascore_id\":null,\"yahoo_id\":28440,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Circle (KS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"341\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jordanphillips\",\"birth_date\":\"1992-09-21\",\"espn_id\":2577466},\"261\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hawk\",\"depth_chart_position\":null,\"player_id\":\"261\",\"birth_city\":null,\"fantasy_data_id\":6506,\"years_exp\":14,\"hashtag\":\"#AJHawk-NFL-FA-54\",\"search_first_name\":\"aj\",\"rotowire_id\":4813,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"A.J. Hawk\",\"sportradar_id\":\"af8457a7-6cbe-4e2f-8bdf-2a34cba56f40\",\"pandascore_id\":null,\"yahoo_id\":7754,\"last_name\":\"Hawk\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Centerville (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ajhawk\",\"birth_date\":\"1984-01-06\",\"espn_id\":9591},\"1114\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029707\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blackmon\",\"depth_chart_position\":null,\"player_id\":\"1114\",\"birth_city\":null,\"fantasy_data_id\":14019,\"years_exp\":7,\"hashtag\":\"#JustinBlackmon-NFL-FA-14\",\"search_first_name\":\"justin\",\"rotowire_id\":8006,\"rotoworld_id\":7402,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Justin Blackmon\",\"sportradar_id\":\"1d352cd4-86c0-4741-9d8b-c131e05997cc\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Blackmon\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justinblackmon\",\"birth_date\":\"1990-01-09\",\"espn_id\":14907},\"4653\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randall\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532465401454,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goforth\",\"depth_chart_position\":null,\"player_id\":\"4653\",\"birth_city\":null,\"fantasy_data_id\":19551,\"years_exp\":2,\"hashtag\":\"#RandallGoforth-NFL-FA-35\",\"search_first_name\":\"randall\",\"rotowire_id\":12321,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Randall Goforth\",\"sportradar_id\":\"c32985ba-5db5-4f36-be86-c8b6d7d882c2\",\"pandascore_id\":null,\"yahoo_id\":30710,\"last_name\":\"Goforth\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'9\\\"\",\"search_full_name\":\"randallgoforth\",\"birth_date\":\"1994-01-27\",\"espn_id\":2971575},\"159\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwight\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1524176401685,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"freeney\",\"depth_chart_position\":null,\"player_id\":\"159\",\"birth_city\":null,\"fantasy_data_id\":4131,\"years_exp\":18,\"hashtag\":\"#DwightFreeney-NFL-FA-93\",\"search_first_name\":\"dwight\",\"rotowire_id\":2537,\"rotoworld_id\":1517,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Dwight Freeney\",\"sportradar_id\":\"e77c194a-dfc8-4584-8bc1-a8b2adef859d\",\"pandascore_id\":null,\"yahoo_id\":5897,\"last_name\":\"Freeney\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Bloomfield (CT)\",\"depth_chart_order\":null,\"stats_id\":80989,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dwightfreeney\",\"birth_date\":\"1980-02-19\",\"espn_id\":3539},\"1912\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031375\",\"first_name\":\"Terrance\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534889741464,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"west\",\"depth_chart_position\":null,\"player_id\":\"1912\",\"birth_city\":null,\"fantasy_data_id\":16142,\"years_exp\":6,\"hashtag\":\"#TerranceWest-NFL-FA-38\",\"search_first_name\":\"terrance\",\"rotowire_id\":9282,\"rotoworld_id\":9406,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Terrance West\",\"sportradar_id\":\"46d5a560-8260-44d7-a8db-8adb6fd8f2e9\",\"pandascore_id\":null,\"yahoo_id\":27622,\"last_name\":\"West\",\"metadata\":null,\"college\":\"Towson\",\"high_school\":\"Northwestern (MD)\",\"depth_chart_order\":null,\"stats_id\":595842,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'10\\\"\",\"search_full_name\":\"terrancewest\",\"birth_date\":\"1991-01-28\",\"espn_id\":16783},\"1176\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dezman\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moses\",\"depth_chart_position\":null,\"player_id\":\"1176\",\"birth_city\":null,\"fantasy_data_id\":14292,\"years_exp\":8,\"hashtag\":\"#DezmanMoses-NFL-FA-54\",\"search_first_name\":\"dezman\",\"rotowire_id\":8523,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Dezman Moses\",\"sportradar_id\":\"6d99869d-a87a-4117-a1bf-c3df6fdfdcd7\",\"pandascore_id\":null,\"yahoo_id\":26432,\"last_name\":\"Moses\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"Willingboro (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dezmanmoses\",\"birth_date\":\"1989-01-04\",\"espn_id\":15272},\"5258\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gibson\",\"depth_chart_position\":null,\"player_id\":\"5258\",\"birth_city\":null,\"fantasy_data_id\":20284,\"years_exp\":0,\"hashtag\":\"#DamonGibson-NFL-FA-9\",\"search_first_name\":\"damon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Damon Gibson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gibson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'4\\\"\",\"search_full_name\":\"damongibson\",\"birth_date\":null,\"espn_id\":4294228},\"172\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024239\",\"first_name\":\"Johnathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605140707827,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":\"LCB\",\"player_id\":\"172\",\"birth_city\":null,\"fantasy_data_id\":4490,\"years_exp\":14,\"hashtag\":\"#JohnathanJoseph-NFL-ARI-25\",\"search_first_name\":\"johnathan\",\"rotowire_id\":4768,\"rotoworld_id\":3693,\"active\":true,\"search_rank\":590,\"age\":36,\"full_name\":\"Johnathan Joseph\",\"sportradar_id\":\"06dab231-dbbd-4ccb-8233-3c2d70318ee3\",\"pandascore_id\":null,\"yahoo_id\":7773,\"last_name\":\"Joseph\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"South Carolina\",\"high_school\":\"Northwestern (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johnathanjoseph\",\"birth_date\":\"1984-04-16\",\"espn_id\":9610},\"2919\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"2919\",\"birth_city\":null,\"fantasy_data_id\":17387,\"years_exp\":1,\"hashtag\":\"#TylerMcDonald-NFL-FA-15\",\"search_first_name\":\"tyler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyler McDonald\",\"sportradar_id\":\"f618949f-5dc8-4727-bd7f-72bdc8f24949\",\"pandascore_id\":null,\"yahoo_id\":28318,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":563521,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylermcdonald\",\"birth_date\":\"1991-05-09\",\"espn_id\":null},\"6207\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"6207\",\"birth_city\":null,\"fantasy_data_id\":21104,\"years_exp\":0,\"hashtag\":\"#JordanMartin-NFL-FA-2\",\"search_first_name\":\"jordan\",\"rotowire_id\":12685,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jordan Martin\",\"sportradar_id\":\"80c67a1b-22e2-4fff-aced-dce279c7d10f\",\"pandascore_id\":null,\"yahoo_id\":31830,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanmartin\",\"birth_date\":\"1995-01-25\",\"espn_id\":3059922},\"4132\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033929\",\"first_name\":\"Montravius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606411858348,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"4132\",\"birth_city\":null,\"fantasy_data_id\":18978,\"years_exp\":3,\"hashtag\":\"#MontraviusAdams-NFL-GB-90\",\"search_first_name\":\"montravius\",\"rotowire_id\":11752,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1162,\"age\":25,\"full_name\":\"Montravius Adams\",\"sportradar_id\":\"794760c3-b654-48fa-ba3c-3b07fdb4c03e\",\"pandascore_id\":null,\"yahoo_id\":30206,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Dooly County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"montraviusadams\",\"birth_date\":\"1995-07-24\",\"espn_id\":3051894},\"5728\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034722\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"calhoun\",\"depth_chart_position\":null,\"player_id\":\"5728\",\"birth_city\":null,\"fantasy_data_id\":20639,\"years_exp\":2,\"hashtag\":\"#KendallCalhoun-NFL-FA-62\",\"search_first_name\":\"kendall\",\"rotowire_id\":13319,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kendall Calhoun\",\"sportradar_id\":\"32a0db4b-3c70-49b5-8921-ed99310691cf\",\"pandascore_id\":null,\"yahoo_id\":31725,\"last_name\":\"Calhoun\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'7\\\"\",\"search_full_name\":\"kendallcalhoun\",\"birth_date\":\"1994-12-27\",\"espn_id\":4037476},\"446\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"E.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"biggers\",\"depth_chart_position\":null,\"player_id\":\"446\",\"birth_city\":null,\"fantasy_data_id\":9214,\"years_exp\":11,\"hashtag\":\"#EJBiggers-NFL-FA-39\",\"search_first_name\":\"ej\",\"rotowire_id\":6159,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"E.J. Biggers\",\"sportradar_id\":\"8b462d54-830b-4808-affc-08f07f860d40\",\"pandascore_id\":null,\"yahoo_id\":9481,\"last_name\":\"Biggers\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"North Miami Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ejbiggers\",\"birth_date\":\"1987-06-13\",\"espn_id\":12633},\"7204\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":1603602959951,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilliam\",\"depth_chart_position\":\"TE\",\"player_id\":\"7204\",\"birth_city\":null,\"fantasy_data_id\":22206,\"years_exp\":0,\"hashtag\":\"#ReggieGilliam-NFL-BUF-86\",\"search_first_name\":\"reggie\",\"rotowire_id\":14844,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1950,\"age\":23,\"full_name\":\"Reggie Gilliam\",\"sportradar_id\":\"4475bb8a-b5a6-4527-bfc7-8e7e03900984\",\"pandascore_id\":null,\"yahoo_id\":33357,\"last_name\":\"Gilliam\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Westland (OH)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"reggiegilliam\",\"birth_date\":\"1997-08-20\",\"espn_id\":4039505},\"NYG\":{\"team\":\"NYG\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"NYG\",\"last_name\":\"Giants\",\"injury_status\":null,\"first_name\":\"New York\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"7057\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Baylen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"buchanan\",\"depth_chart_position\":null,\"player_id\":\"7057\",\"birth_city\":null,\"fantasy_data_id\":22111,\"years_exp\":0,\"hashtag\":\"#BaylenBuchanan-NFL-FA-0\",\"search_first_name\":\"baylen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Baylen Buchanan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Buchanan\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"baylenbuchanan\",\"birth_date\":null,\"espn_id\":null},\"5793\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Davond\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dade\",\"depth_chart_position\":null,\"player_id\":\"5793\",\"birth_city\":null,\"fantasy_data_id\":20471,\"years_exp\":2,\"hashtag\":\"#DavondDade-NFL-FA-46\",\"search_first_name\":\"davond\",\"rotowire_id\":13388,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Davond Dade\",\"sportradar_id\":\"7421cd81-9b89-499a-9c8f-08a97cd873fd\",\"pandascore_id\":null,\"yahoo_id\":31790,\"last_name\":\"Dade\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davonddade\",\"birth_date\":\"1994-10-19\",\"espn_id\":3045643},\"286\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1558032615659,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowe\",\"depth_chart_position\":null,\"player_id\":\"286\",\"birth_city\":null,\"fantasy_data_id\":7203,\"years_exp\":13,\"hashtag\":\"#DwayneBowe-NFL-FA-80\",\"search_first_name\":\"dwayne\",\"rotowire_id\":5278,\"rotoworld_id\":4184,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Dwayne Bowe\",\"sportradar_id\":\"2e35b163-2fef-4659-b9d8-5916dbe06179\",\"pandascore_id\":null,\"yahoo_id\":8277,\"last_name\":\"Bowe\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Norland (FL)\",\"depth_chart_order\":null,\"stats_id\":225224,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dwaynebowe\",\"birth_date\":\"1984-09-21\",\"espn_id\":10467},\"5434\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034098\",\"first_name\":\"Quin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599328857237,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blanding\",\"depth_chart_position\":\"FS\",\"player_id\":\"5434\",\"birth_city\":null,\"fantasy_data_id\":20532,\"years_exp\":2,\"hashtag\":\"#QuinBlanding-NFL-FA-0\",\"search_first_name\":\"quin\",\"rotowire_id\":12816,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1487,\"age\":24,\"full_name\":\"Quin Blanding\",\"sportradar_id\":\"f58c28b8-262c-44b3-ab15-992c362e3f43\",\"pandascore_id\":null,\"yahoo_id\":31395,\"last_name\":\"Blanding\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":836244,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quinblanding\",\"birth_date\":\"1996-05-01\",\"espn_id\":3124020},\"4172\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033944\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605056761849,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gedeon\",\"depth_chart_position\":null,\"player_id\":\"4172\",\"birth_city\":null,\"fantasy_data_id\":19018,\"years_exp\":3,\"hashtag\":\"#BenGedeon-NFL-MIN-42\",\"search_first_name\":\"ben\",\"rotowire_id\":11972,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1182,\"age\":26,\"full_name\":\"Ben Gedeon\",\"sportradar_id\":\"1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc\",\"pandascore_id\":null,\"yahoo_id\":30233,\"last_name\":\"Gedeon\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Hudson (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bengedeon\",\"birth_date\":\"1994-10-16\",\"espn_id\":3045212},\"3578\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Claudell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"louis\",\"depth_chart_position\":null,\"player_id\":\"3578\",\"birth_city\":null,\"fantasy_data_id\":18357,\"years_exp\":0,\"hashtag\":\"#ClaudellLouis-NFL-FA-74\",\"search_first_name\":\"claudell\",\"rotowire_id\":11625,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Claudell Louis\",\"sportradar_id\":\"f6590d31-2c86-4c88-8fdd-de580488fb7a\",\"pandascore_id\":null,\"yahoo_id\":29553,\"last_name\":\"Louis\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'5\\\"\",\"search_full_name\":\"claudelllouis\",\"birth_date\":\"1990-10-27\",\"espn_id\":null},\"454\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ogbonnaya\",\"depth_chart_position\":null,\"player_id\":\"454\",\"birth_city\":null,\"fantasy_data_id\":9277,\"years_exp\":5,\"hashtag\":\"#ChrisOgbonnaya-NFL-FA-26\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Chris Ogbonnaya\",\"sportradar_id\":\"46217a1a-fda1-441b-b218-8fde5a4cd788\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ogbonnaya\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":268226,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisogbonnaya\",\"birth_date\":\"1986-05-05\",\"espn_id\":12517},\"4143\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033938\",\"first_name\":\"Kendell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1595993406182,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beckwith\",\"depth_chart_position\":\"RILB\",\"player_id\":\"4143\",\"birth_city\":null,\"fantasy_data_id\":18989,\"years_exp\":3,\"hashtag\":\"#KendellBeckwith-NFL-FA-0\",\"search_first_name\":\"kendell\",\"rotowire_id\":11958,\"rotoworld_id\":12329,\"active\":true,\"search_rank\":1170,\"age\":25,\"full_name\":\"Kendell Beckwith\",\"sportradar_id\":\"4123860b-90a2-425e-ba0b-051aad7c327e\",\"pandascore_id\":null,\"yahoo_id\":30220,\"last_name\":\"Beckwith\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":727743,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kendellbeckwith\",\"birth_date\":\"1994-12-02\",\"espn_id\":3042733},\"6590\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035552\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1565659243102,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colubiale\",\"depth_chart_position\":null,\"player_id\":\"6590\",\"birth_city\":null,\"fantasy_data_id\":21352,\"years_exp\":1,\"hashtag\":\"#MichaelColubiale-NFL-FA-86\",\"search_first_name\":\"michael\",\"rotowire_id\":14249,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Michael Colubiale\",\"sportradar_id\":\"ef0395e2-8019-4fdc-afdd-714e62cef5fb\",\"pandascore_id\":null,\"yahoo_id\":32564,\"last_name\":\"Colubiale\",\"metadata\":null,\"college\":\"UCF\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":753739,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelcolubiale\",\"birth_date\":\"1995-02-09\",\"espn_id\":3065510},\"2492\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"JaCorey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shepherd\",\"depth_chart_position\":null,\"player_id\":\"2492\",\"birth_city\":null,\"fantasy_data_id\":16951,\"years_exp\":4,\"hashtag\":\"#JaCoreyShepherd-NFL-FA-33\",\"search_first_name\":\"jacorey\",\"rotowire_id\":10424,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"JaCorey Shepherd\",\"sportradar_id\":\"0ad606f7-30b4-47ac-8954-2feda07ba599\",\"pandascore_id\":null,\"yahoo_id\":28578,\"last_name\":\"Shepherd\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":590535,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jacoreyshepherd\",\"birth_date\":\"1993-02-10\",\"espn_id\":2577237},\"3421\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032344\",\"first_name\":\"Sterling\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1563655528328,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"3421\",\"birth_city\":null,\"fantasy_data_id\":18185,\"years_exp\":4,\"hashtag\":\"#SterlingBailey-NFL-FA-71\",\"search_first_name\":\"sterling\",\"rotowire_id\":10874,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Sterling Bailey\",\"sportradar_id\":\"41cc3ce0-53fb-4a83-8612-00b527328e75\",\"pandascore_id\":null,\"yahoo_id\":29596,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sterlingbailey\",\"birth_date\":\"1992-09-13\",\"espn_id\":2578530},\"1038\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029585\",\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1602801042286,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1038\",\"birth_city\":null,\"fantasy_data_id\":13749,\"years_exp\":8,\"hashtag\":\"#ChandlerJones-NFL-ARI-55\",\"search_first_name\":\"chandler\",\"rotowire_id\":8140,\"rotoworld_id\":7429,\"active\":true,\"search_rank\":657,\"age\":30,\"full_name\":\"Chandler Jones\",\"sportradar_id\":\"5197def5-f444-4561-ad28-7aac10dc748e\",\"pandascore_id\":null,\"yahoo_id\":25731,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Union-Endicott (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chandlerjones\",\"birth_date\":\"1990-02-27\",\"espn_id\":14927},\"1882\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"urschel\",\"depth_chart_position\":null,\"player_id\":\"1882\",\"birth_city\":null,\"fantasy_data_id\":16101,\"years_exp\":6,\"hashtag\":\"#JohnUrschel-NFL-FA-64\",\"search_first_name\":\"john\",\"rotowire_id\":9446,\"rotoworld_id\":9567,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"John Urschel\",\"sportradar_id\":\"29889672-5f01-41d8-a1e0-4060e6971e85\",\"pandascore_id\":null,\"yahoo_id\":27703,\"last_name\":\"Urschel\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Canisius (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnurschel\",\"birth_date\":\"1991-06-24\",\"espn_id\":16868},\"477\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leach\",\"depth_chart_position\":null,\"player_id\":\"477\",\"birth_city\":null,\"fantasy_data_id\":9784,\"years_exp\":20,\"hashtag\":\"#MikeLeach-NFL-FA-82\",\"search_first_name\":\"mike\",\"rotowire_id\":3759,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":43,\"full_name\":\"Mike Leach\",\"sportradar_id\":\"84dab0f0-9a3f-4839-9970-7461ce728bea\",\"pandascore_id\":null,\"yahoo_id\":5381,\"last_name\":\"Leach\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Jefferson Township (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mikeleach\",\"birth_date\":\"1976-10-18\",\"espn_id\":2482},\"136\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"montgomery\",\"depth_chart_position\":null,\"player_id\":\"136\",\"birth_city\":null,\"fantasy_data_id\":3765,\"years_exp\":14,\"hashtag\":\"#WillMontgomery-NFL-FA-64\",\"search_first_name\":\"will\",\"rotowire_id\":7197,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Will Montgomery\",\"sportradar_id\":\"1133c99a-972c-440e-a969-95c46565d033\",\"pandascore_id\":null,\"yahoo_id\":7983,\"last_name\":\"Montgomery\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Centreville (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'3\\\"\",\"search_full_name\":\"willmontgomery\",\"birth_date\":\"1983-02-13\",\"espn_id\":9820},\"3044\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031647\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bunche\",\"depth_chart_position\":null,\"player_id\":\"3044\",\"birth_city\":null,\"fantasy_data_id\":17756,\"years_exp\":5,\"hashtag\":\"#MalcolmBunche-NFL-FA-66\",\"search_first_name\":\"malcolm\",\"rotowire_id\":10765,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Malcolm Bunche\",\"sportradar_id\":\"a04c2eb7-52a1-42db-9960-f97486cfe417\",\"pandascore_id\":null,\"yahoo_id\":28647,\"last_name\":\"Bunche\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"malcolmbunche\",\"birth_date\":\"1991-10-16\",\"espn_id\":2512571},\"1053\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029040\",\"first_name\":\"Damon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606170616237,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harrison\",\"depth_chart_position\":\"DT\",\"player_id\":\"1053\",\"birth_city\":null,\"fantasy_data_id\":13816,\"years_exp\":8,\"hashtag\":\"#DamonHarrison-NFL-SEA-59\",\"search_first_name\":\"damon\",\"rotowire_id\":8486,\"rotoworld_id\":7885,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Damon Harrison\",\"sportradar_id\":\"e85680db-639d-49cd-ae29-28e5cd4ac9a8\",\"pandascore_id\":null,\"yahoo_id\":26153,\"last_name\":\"Harrison\",\"metadata\":null,\"college\":\"William Penn\",\"high_school\":\"Lake Charles Boston (LA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'3\\\"\",\"search_full_name\":\"damonharrison\",\"birth_date\":\"1988-11-29\",\"espn_id\":15380},\"2748\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"monangai\",\"depth_chart_position\":null,\"player_id\":\"2748\",\"birth_city\":null,\"fantasy_data_id\":17216,\"years_exp\":1,\"hashtag\":\"#KevinMonangai-NFL-FA-39\",\"search_first_name\":\"kevin\",\"rotowire_id\":10766,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kevin Monangai\",\"sportradar_id\":\"2d424c27-e3ff-4d64-8945-e8dd51a8710f\",\"pandascore_id\":null,\"yahoo_id\":29171,\"last_name\":\"Monangai\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":599149,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kevinmonangai\",\"birth_date\":\"1993-03-04\",\"espn_id\":2565602},\"5087\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034162\",\"first_name\":\"J.K.\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1606077020156,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"5087\",\"birth_city\":null,\"fantasy_data_id\":19977,\"years_exp\":2,\"hashtag\":\"#JKScott-NFL-GB-6\",\"search_first_name\":\"jk\",\"rotowire_id\":12822,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"J.K. Scott\",\"sportradar_id\":\"5067e5ee-bae8-411e-bc05-011a88a3d954\",\"pandascore_id\":null,\"yahoo_id\":31142,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Mullen (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jkscott\",\"birth_date\":\"1995-10-30\",\"espn_id\":3126368},\"6981\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tipa\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"galeai\",\"depth_chart_position\":null,\"player_id\":\"6981\",\"birth_city\":null,\"fantasy_data_id\":21891,\"years_exp\":0,\"hashtag\":\"#TipaGaleai-NFL-GB-50\",\"search_first_name\":\"tipa\",\"rotowire_id\":15072,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tipa Galeai\",\"sportradar_id\":\"fa797d7d-4537-4e2e-8fd1-cd8831894092\",\"pandascore_id\":null,\"yahoo_id\":33225,\"last_name\":\"Galeai\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Trinity (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tipagaleai\",\"birth_date\":\"1997-02-26\",\"espn_id\":3676832},\"2909\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Beau\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gardner\",\"depth_chart_position\":null,\"player_id\":\"2909\",\"birth_city\":null,\"fantasy_data_id\":17377,\"years_exp\":0,\"hashtag\":\"#BeauGardner-NFL-FA-86\",\"search_first_name\":\"beau\",\"rotowire_id\":10642,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Beau Gardner\",\"sportradar_id\":\"57cfbffe-ed6b-417d-9ca6-8ffcc2ab4d55\",\"pandascore_id\":null,\"yahoo_id\":28821,\"last_name\":\"Gardner\",\"metadata\":null,\"college\":\"Northern Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":612192,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"beaugardner\",\"birth_date\":\"1989-12-27\",\"espn_id\":null},\"4529\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033608\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604679944568,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"4529\",\"birth_city\":null,\"fantasy_data_id\":19407,\"years_exp\":3,\"hashtag\":\"#RyanLewis-NFL-NYG-37\",\"search_first_name\":\"ryan\",\"rotowire_id\":12929,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1260,\"age\":26,\"full_name\":\"Ryan Lewis\",\"sportradar_id\":\"ba95b150-fad0-4a8d-b15d-a5e318d95b7f\",\"pandascore_id\":null,\"yahoo_id\":30491,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Eastlake (WA)\",\"depth_chart_order\":null,\"stats_id\":692336,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ryanlewis\",\"birth_date\":\"1994-04-15\",\"espn_id\":2970264},\"3467\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032669\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606277756643,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bertolet\",\"depth_chart_position\":\"K\",\"player_id\":\"3467\",\"birth_city\":null,\"fantasy_data_id\":18231,\"years_exp\":4,\"hashtag\":\"#TaylorBertolet-NFL-CAR-1\",\"search_first_name\":\"taylor\",\"rotowire_id\":11568,\"rotoworld_id\":11586,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Taylor Bertolet\",\"sportradar_id\":\"63e63ae6-5a88-4b04-a3a0-5e0cb0404f95\",\"pandascore_id\":null,\"yahoo_id\":29712,\"last_name\":\"Bertolet\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Exeter Township (PA)\",\"depth_chart_order\":3,\"stats_id\":593584,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"taylorbertolet\",\"birth_date\":\"1992-10-24\",\"espn_id\":2578718},\"5631\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034585\",\"first_name\":\"Dejon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567284307019,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"5631\",\"birth_city\":null,\"fantasy_data_id\":20259,\"years_exp\":2,\"hashtag\":\"#DejonAllen-NFL-FA-62\",\"search_first_name\":\"dejon\",\"rotowire_id\":12741,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dejon Allen\",\"sportradar_id\":\"297bd882-4641-42c0-a612-d3db66d6093c\",\"pandascore_id\":null,\"yahoo_id\":31656,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746231,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dejonallen\",\"birth_date\":\"1994-05-05\",\"espn_id\":3046392},\"3980\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033201\",\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1566854426798,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"3980\",\"birth_city\":null,\"fantasy_data_id\":18815,\"years_exp\":3,\"hashtag\":\"#CoryCarter-NFL-FA-7\",\"search_first_name\":\"cory\",\"rotowire_id\":12424,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cory Carter\",\"sportradar_id\":\"68969959-6910-49f3-b08a-05cabe34336e\",\"pandascore_id\":null,\"yahoo_id\":30086,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Texas Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"corycarter\",\"birth_date\":\"1994-03-05\",\"espn_id\":2996095},\"2618\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030500\",\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":\"RDT\",\"player_id\":\"2618\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":7,\"hashtag\":\"#DuplicatePlayer-NFL-FA-97\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":720,\"age\":30,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Minor (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":\"1990-02-21\",\"espn_id\":null},\"1022\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thaddeus\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"1022\",\"birth_city\":null,\"fantasy_data_id\":13697,\"years_exp\":10,\"hashtag\":\"#ThaddeusLewis-NFL-FA-7\",\"search_first_name\":\"thaddeus\",\"rotowire_id\":6847,\"rotoworld_id\":6083,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Thaddeus Lewis\",\"sportradar_id\":\"bd1016ca-9683-4f4a-afdc-d07a3e03f057\",\"pandascore_id\":null,\"yahoo_id\":24311,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Hialeah-Miami Lakes (FL)\",\"depth_chart_order\":null,\"stats_id\":334032,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'2\\\"\",\"search_full_name\":\"thaddeuslewis\",\"birth_date\":\"1987-11-19\",\"espn_id\":13606},\"3309\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032782\",\"first_name\":\"Wendell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599495903351,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smallwood\",\"depth_chart_position\":\"RB\",\"player_id\":\"3309\",\"birth_city\":null,\"fantasy_data_id\":18070,\"years_exp\":4,\"hashtag\":\"#WendellSmallwood-NFL-PIT-29\",\"search_first_name\":\"wendell\",\"rotowire_id\":10806,\"rotoworld_id\":11451,\"active\":true,\"search_rank\":423,\"age\":26,\"full_name\":\"Wendell Smallwood\",\"sportradar_id\":\"c7d0a740-fcf2-4971-b1b6-43761d984bf9\",\"pandascore_id\":null,\"yahoo_id\":29387,\"last_name\":\"Smallwood\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"West Virginia\",\"high_school\":\"Eastern Christian Academy (MD)\",\"depth_chart_order\":6,\"stats_id\":728035,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'10\\\"\",\"search_full_name\":\"wendellsmallwood\",\"birth_date\":\"1994-01-20\",\"espn_id\":3042429},\"7209\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"7209\",\"birth_city\":null,\"fantasy_data_id\":22212,\"years_exp\":0,\"hashtag\":\"#GarrettTaylor-NFL-FA-0\",\"search_first_name\":\"garrett\",\"rotowire_id\":14790,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Garrett Taylor\",\"sportradar_id\":\"e8501155-901b-4ae5-929c-354b46c64c1f\",\"pandascore_id\":null,\"yahoo_id\":33328,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"garretttaylor\",\"birth_date\":\"1996-11-07\",\"espn_id\":null},\"6230\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035452\",\"first_name\":\"Javier\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"6230\",\"birth_city\":null,\"fantasy_data_id\":21153,\"years_exp\":1,\"hashtag\":\"#JavierEdwards-NFL-FA-60\",\"search_first_name\":\"javier\",\"rotowire_id\":14218,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Javier Edwards\",\"sportradar_id\":\"859229d6-d9c9-4d5b-87f9-2f5a2145cf12\",\"pandascore_id\":null,\"yahoo_id\":32506,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"343\",\"height\":\"6'1\\\"\",\"search_full_name\":\"javieredwards\",\"birth_date\":\"1996-10-27\",\"espn_id\":4243164},\"3662\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devonte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3662\",\"birth_city\":null,\"fantasy_data_id\":18461,\"years_exp\":3,\"hashtag\":\"#DevonteJohnson-NFL-FA-33\",\"search_first_name\":\"devonte\",\"rotowire_id\":11308,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Devonte Johnson\",\"sportradar_id\":\"611b2e63-c5bf-4c5a-a829-2ed8cd778e8e\",\"pandascore_id\":null,\"yahoo_id\":29647,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Weber State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"devontejohnson\",\"birth_date\":\"1993-01-03\",\"espn_id\":2565729},\"6534\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035332\",\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596991249823,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"DE\",\"player_id\":\"6534\",\"birth_city\":null,\"fantasy_data_id\":21412,\"years_exp\":1,\"hashtag\":\"#RaySmith-NFL-MIA-77\",\"search_first_name\":\"ray\",\"rotowire_id\":13939,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ray Smith\",\"sportradar_id\":\"f24fb71b-8799-48d8-aa5c-510a40cfaeed\",\"pandascore_id\":null,\"yahoo_id\":32459,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Cathedral Catholic (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'1\\\"\",\"search_full_name\":\"raysmith\",\"birth_date\":\"1997-01-18\",\"espn_id\":3915309},\"3815\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryson\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1525728601417,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keeton\",\"depth_chart_position\":null,\"player_id\":\"3815\",\"birth_city\":null,\"fantasy_data_id\":18631,\"years_exp\":3,\"hashtag\":\"#BrysonKeeton-NFL-FA-37\",\"search_first_name\":\"bryson\",\"rotowire_id\":11456,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bryson Keeton\",\"sportradar_id\":\"e7ae052f-17e3-4d08-b772-37e0e8312715\",\"pandascore_id\":null,\"yahoo_id\":29936,\"last_name\":\"Keeton\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brysonkeeton\",\"birth_date\":\"1993-02-24\",\"espn_id\":2573948},\"5267\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034560\",\"first_name\":\"JJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566688556189,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"5267\",\"birth_city\":null,\"fantasy_data_id\":20310,\"years_exp\":2,\"hashtag\":\"#JJJones-NFL-FA-84\",\"search_first_name\":\"jj\",\"rotowire_id\":13055,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"JJ Jones\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31683,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1116519,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jjjones\",\"birth_date\":\"1992-12-06\",\"espn_id\":4329471},\"2533\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dezmin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"2533\",\"birth_city\":null,\"fantasy_data_id\":16993,\"years_exp\":5,\"hashtag\":\"#DezminLewis-NFL-FA-13\",\"search_first_name\":\"dezmin\",\"rotowire_id\":10221,\"rotoworld_id\":10607,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Dezmin Lewis\",\"sportradar_id\":\"af8f72c9-0e3f-4f10-b44d-0e5b6e04864b\",\"pandascore_id\":null,\"yahoo_id\":28622,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Central Arkansas\",\"high_school\":\"North Mesquite\",\"depth_chart_order\":null,\"stats_id\":601648,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dezminlewis\",\"birth_date\":\"1992-12-05\",\"espn_id\":2567965},\"1392\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030449\",\"first_name\":\"Margus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606066218964,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":\"NT\",\"player_id\":\"1392\",\"birth_city\":null,\"fantasy_data_id\":14922,\"years_exp\":7,\"hashtag\":\"#MargusHunt-NFL-CIN-70\",\"search_first_name\":\"margus\",\"rotowire_id\":8659,\"rotoworld_id\":8427,\"active\":true,\"search_rank\":717,\"age\":33,\"full_name\":\"Margus Hunt\",\"sportradar_id\":\"19269eae-f3f2-47ac-b755-843489f29f65\",\"pandascore_id\":null,\"yahoo_id\":26676,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'8\\\"\",\"search_full_name\":\"margushunt\",\"birth_date\":\"1987-07-14\",\"espn_id\":15844},\"5433\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034105\",\"first_name\":\"Ranthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"texada\",\"depth_chart_position\":null,\"player_id\":\"5433\",\"birth_city\":null,\"fantasy_data_id\":20530,\"years_exp\":2,\"hashtag\":\"#RanthonyTexada-NFL-FA-32\",\"search_first_name\":\"ranthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ranthony Texada\",\"sportradar_id\":\"98649d6d-839b-48eb-a92d-e57f82807841\",\"pandascore_id\":null,\"yahoo_id\":31406,\"last_name\":\"Texada\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ranthonytexada\",\"birth_date\":\"1995-05-16\",\"espn_id\":3040007},\"2893\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Triston\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wade\",\"depth_chart_position\":null,\"player_id\":\"2893\",\"birth_city\":null,\"fantasy_data_id\":17361,\"years_exp\":0,\"hashtag\":\"#TristonWade-NFL-FA-38\",\"search_first_name\":\"triston\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Triston Wade\",\"sportradar_id\":\"ddf21b99-7bef-462e-81de-f0a16b842cf5\",\"pandascore_id\":null,\"yahoo_id\":28719,\"last_name\":\"Wade\",\"metadata\":null,\"college\":\"Texas San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"165\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tristonwade\",\"birth_date\":\"1993-05-19\",\"espn_id\":2580002},\"796\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hairston\",\"depth_chart_position\":null,\"player_id\":\"796\",\"birth_city\":null,\"fantasy_data_id\":12730,\"years_exp\":9,\"hashtag\":\"#ChrisHairston-NFL-FA-75\",\"search_first_name\":\"chris\",\"rotowire_id\":7618,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Chris Hairston\",\"sportradar_id\":\"ea307f9e-a72e-4577-b4d3-fd1dbaf0e57a\",\"pandascore_id\":null,\"yahoo_id\":24909,\"last_name\":\"Hairston\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Carver (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chrishairston\",\"birth_date\":\"1989-04-26\",\"espn_id\":14134},\"5630\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034600\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orr\",\"depth_chart_position\":null,\"player_id\":\"5630\",\"birth_city\":null,\"fantasy_data_id\":20112,\"years_exp\":2,\"hashtag\":\"#NickOrr-NFL-FA-46\",\"search_first_name\":\"nick\",\"rotowire_id\":13241,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick Orr\",\"sportradar_id\":\"4659f9a0-22c4-4004-8d59-a5727bbafa25\",\"pandascore_id\":null,\"yahoo_id\":31664,\"last_name\":\"Orr\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"nickorr\",\"birth_date\":\"1995-10-06\",\"espn_id\":3116423},\"610\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1512431401919,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"weatherspoon\",\"depth_chart_position\":null,\"player_id\":\"610\",\"birth_city\":null,\"fantasy_data_id\":11443,\"years_exp\":10,\"hashtag\":\"#SeanWeatherspoon-NFL-FA-56\",\"search_first_name\":\"sean\",\"rotowire_id\":6598,\"rotoworld_id\":5796,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Sean Weatherspoon\",\"sportradar_id\":\"f5695563-cd94-4617-a719-d6dc6eb18eae\",\"pandascore_id\":null,\"yahoo_id\":23994,\"last_name\":\"Weatherspoon\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Jasper (TX)\",\"depth_chart_order\":null,\"stats_id\":333842,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'2\\\"\",\"search_full_name\":\"seanweatherspoon\",\"birth_date\":\"1987-12-29\",\"espn_id\":13243},\"2453\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"2453\",\"birth_city\":null,\"fantasy_data_id\":16910,\"years_exp\":4,\"hashtag\":\"#CedricThompson-NFL-FA-41\",\"search_first_name\":\"cedric\",\"rotowire_id\":10460,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cedric Thompson\",\"sportradar_id\":\"5392469b-efb8-429d-a443-4782d40feb6b\",\"pandascore_id\":null,\"yahoo_id\":28538,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cedricthompson\",\"birth_date\":\"1993-02-10\",\"espn_id\":2576327},\"6196\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035728\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599429360845,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wade\",\"depth_chart_position\":\"RB\",\"player_id\":\"6196\",\"birth_city\":null,\"fantasy_data_id\":21097,\"years_exp\":1,\"hashtag\":\"#ChristianWade-NFL-BUF-45\",\"search_first_name\":\"christian\",\"rotowire_id\":13930,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1658,\"age\":29,\"full_name\":\"Christian Wade\",\"sportradar_id\":\"a511be63-5fc1-4e67-b798-fc801e3c166d\",\"pandascore_id\":null,\"yahoo_id\":31822,\"last_name\":\"Wade\",\"metadata\":null,\"college\":\"No College\",\"high_school\":\"Royal Grammar (GBR)\",\"depth_chart_order\":5,\"stats_id\":1164428,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'9\\\"\",\"search_full_name\":\"christianwade\",\"birth_date\":\"1991-05-15\",\"espn_id\":4420894},\"4166\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033563\",\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605613822833,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watkins\",\"depth_chart_position\":\"DE\",\"player_id\":\"4166\",\"birth_city\":null,\"fantasy_data_id\":19012,\"years_exp\":3,\"hashtag\":\"#CarlosWatkins-NFL-HOU-91\",\"search_first_name\":\"carlos\",\"rotowire_id\":11951,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1178,\"age\":26,\"full_name\":\"Carlos Watkins\",\"sportradar_id\":\"1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf\",\"pandascore_id\":null,\"yahoo_id\":30255,\"last_name\":\"Watkins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Chase (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'3\\\"\",\"search_full_name\":\"carloswatkins\",\"birth_date\":\"1993-12-05\",\"espn_id\":2977681},\"5472\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034849\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"5472\",\"birth_city\":null,\"fantasy_data_id\":20303,\"years_exp\":2,\"hashtag\":\"#TonyAdams-NFL-FA-68\",\"search_first_name\":\"tony\",\"rotowire_id\":12655,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tony Adams\",\"sportradar_id\":\"b9d781a5-8049-48d8-a2eb-9b7ef61f22ec\",\"pandascore_id\":null,\"yahoo_id\":31260,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tonyadams\",\"birth_date\":\"1995-12-28\",\"espn_id\":3116734},\"5149\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034153\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603242340794,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"5149\",\"birth_city\":null,\"fantasy_data_id\":20096,\"years_exp\":2,\"hashtag\":\"#EmmanuelSmith-NFL-KC-43\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":13063,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Emmanuel Smith\",\"sportradar_id\":\"ff984603-4e6f-4095-a0c7-11dbf89cb189\",\"pandascore_id\":null,\"yahoo_id\":31354,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Oakland (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"emmanuelsmith\",\"birth_date\":\"1995-07-25\",\"espn_id\":3122169},\"6258\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035346\",\"first_name\":\"Nik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1580182545899,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"needham\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6258\",\"birth_city\":null,\"fantasy_data_id\":21192,\"years_exp\":1,\"hashtag\":\"#NikNeedham-NFL-MIA-40\",\"search_first_name\":\"nik\",\"rotowire_id\":14077,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1692,\"age\":24,\"full_name\":\"Nik Needham\",\"sportradar_id\":\"03e6a751-5206-4f9e-8ffa-f92672f7c159\",\"pandascore_id\":null,\"yahoo_id\":32443,\"last_name\":\"Needham\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Buena Park (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nikneedham\",\"birth_date\":\"1996-11-04\",\"espn_id\":3124702},\"4989\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034261\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571178350637,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"corbett\",\"depth_chart_position\":\"RG\",\"player_id\":\"4989\",\"birth_city\":null,\"fantasy_data_id\":19851,\"years_exp\":2,\"hashtag\":\"#AustinCorbett-NFL-LAR-63\",\"search_first_name\":\"austin\",\"rotowire_id\":12853,\"rotoworld_id\":13109,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Corbett\",\"sportradar_id\":\"9290324b-eb17-423b-8019-e5d26839fd45\",\"pandascore_id\":null,\"yahoo_id\":31003,\"last_name\":\"Corbett\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Edward C. Reed (NV)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austincorbett\",\"birth_date\":\"1995-09-05\",\"espn_id\":3056608},\"2101\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lache\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seastrunk\",\"depth_chart_position\":null,\"player_id\":\"2101\",\"birth_city\":null,\"fantasy_data_id\":16423,\"years_exp\":1,\"hashtag\":\"#LacheSeastrunk-NFL-FA-36\",\"search_first_name\":\"lache\",\"rotowire_id\":9275,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Lache Seastrunk\",\"sportradar_id\":\"c7dc0b97-a8be-4be3-899a-58ab461d8770\",\"pandascore_id\":null,\"yahoo_id\":27714,\"last_name\":\"Seastrunk\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555569,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'9\\\"\",\"search_full_name\":\"lacheseastrunk\",\"birth_date\":\"1991-07-29\",\"espn_id\":16885},\"4193\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033565\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1549576237100,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"4193\",\"birth_city\":null,\"fantasy_data_id\":19039,\"years_exp\":3,\"hashtag\":\"#JordanMorgan-NFL-FA-66\",\"search_first_name\":\"jordan\",\"rotowire_id\":11811,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Morgan\",\"sportradar_id\":\"8f738734-fb58-412f-a549-27295e3183b6\",\"pandascore_id\":null,\"yahoo_id\":30260,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Kutztown\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanmorgan\",\"birth_date\":\"1994-05-13\",\"espn_id\":4081809},\"5883\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035244\",\"first_name\":\"Lonnie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606189216530,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"SS\",\"player_id\":\"5883\",\"birth_city\":null,\"fantasy_data_id\":20840,\"years_exp\":1,\"hashtag\":\"#LonnieJohnson-NFL-HOU-32\",\"search_first_name\":\"lonnie\",\"rotowire_id\":13820,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1561,\"age\":25,\"full_name\":\"Lonnie Johnson\",\"sportradar_id\":\"acbf5978-d7da-4d01-8f1d-22dd65d4484c\",\"pandascore_id\":null,\"yahoo_id\":31886,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"West Side Leadership Academy (IN)\",\"depth_chart_order\":2,\"stats_id\":976145,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lonniejohnson\",\"birth_date\":\"1995-11-04\",\"espn_id\":4240780},\"1493\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herman\",\"depth_chart_position\":null,\"player_id\":\"1493\",\"birth_city\":null,\"fantasy_data_id\":15091,\"years_exp\":1,\"hashtag\":\"#EricHerman-NFL-FA-60\",\"search_first_name\":\"eric\",\"rotowire_id\":9232,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Eric Herman\",\"sportradar_id\":\"70b9e8f0-d1b8-4029-870b-2b6b5f6c8f5d\",\"pandascore_id\":null,\"yahoo_id\":26848,\"last_name\":\"Herman\",\"metadata\":null,\"college\":\"Ohio University\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ericherman\",\"birth_date\":\"1989-10-05\",\"espn_id\":15945},\"872\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mohamed\",\"depth_chart_position\":null,\"player_id\":\"872\",\"birth_city\":null,\"fantasy_data_id\":13023,\"years_exp\":9,\"hashtag\":\"#MikeMohamed-NFL-FA-98\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Mike Mohamed\",\"sportradar_id\":\"39c8aa65-ce4d-4235-884c-12cff3706521\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mohamed\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Brawley (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikemohamed\",\"birth_date\":\"1988-03-11\",\"espn_id\":14097},\"1951\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1521133801329,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fiedorowicz\",\"depth_chart_position\":null,\"player_id\":\"1951\",\"birth_city\":null,\"fantasy_data_id\":16200,\"years_exp\":6,\"hashtag\":\"#CJFiedorowicz-NFL-FA-87\",\"search_first_name\":\"cj\",\"rotowire_id\":9269,\"rotoworld_id\":9613,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"C.J. Fiedorowicz\",\"sportradar_id\":\"048ff76e-1243-4e80-bfec-7b6dee148132\",\"pandascore_id\":null,\"yahoo_id\":27593,\"last_name\":\"Fiedorowicz\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Johnsburg (IL)\",\"depth_chart_order\":null,\"stats_id\":553670,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cjfiedorowicz\",\"birth_date\":\"1991-10-22\",\"espn_id\":16766},\"7004\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashard\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606318861040,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lawrence\",\"depth_chart_position\":null,\"player_id\":\"7004\",\"birth_city\":null,\"fantasy_data_id\":21885,\"years_exp\":0,\"hashtag\":\"#RashardLawrence-NFL-ARI-92\",\"search_first_name\":\"rashard\",\"rotowire_id\":14717,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1811,\"age\":22,\"full_name\":\"Rashard Lawrence\",\"sportradar_id\":\"6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65\",\"pandascore_id\":null,\"yahoo_id\":32801,\"last_name\":\"Lawrence\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Neville (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rashardlawrence\",\"birth_date\":\"1998-08-27\",\"espn_id\":4035452},\"1386\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030456\",\"first_name\":\"Giovani\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606512927144,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bernard\",\"depth_chart_position\":\"RB\",\"player_id\":\"1386\",\"birth_city\":null,\"fantasy_data_id\":14916,\"years_exp\":7,\"hashtag\":\"#GiovaniBernard-NFL-CIN-25\",\"search_first_name\":\"giovani\",\"rotowire_id\":8622,\"rotoworld_id\":8389,\"active\":true,\"search_rank\":209,\"age\":29,\"full_name\":\"Giovani Bernard\",\"sportradar_id\":\"24cf6148-f0af-4103-a215-e06956764953\",\"pandascore_id\":null,\"yahoo_id\":26660,\"last_name\":\"Bernard\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":1,\"stats_id\":546076,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"giovanibernard\",\"birth_date\":\"1991-11-22\",\"espn_id\":15826},\"1667\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029958\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1533928503407,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"terrell\",\"depth_chart_position\":null,\"player_id\":\"1667\",\"birth_city\":null,\"fantasy_data_id\":15453,\"years_exp\":7,\"hashtag\":\"#StevenTerrell-NFL-FA-45\",\"search_first_name\":\"steven\",\"rotowire_id\":9192,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Steven Terrell\",\"sportradar_id\":\"f4ce175a-0408-4215-8a64-2cac3679d151\",\"pandascore_id\":null,\"yahoo_id\":26978,\"last_name\":\"Terrell\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":511408,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"steventerrell\",\"birth_date\":\"1990-09-21\",\"espn_id\":16450},\"1517\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030107\",\"first_name\":\"Theo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606015810697,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"riddick\",\"depth_chart_position\":\"RB\",\"player_id\":\"1517\",\"birth_city\":null,\"fantasy_data_id\":15126,\"years_exp\":7,\"hashtag\":\"#TheoRiddick-NFL-LV-35\",\"search_first_name\":\"theo\",\"rotowire_id\":8763,\"rotoworld_id\":8485,\"active\":true,\"search_rank\":456,\"age\":29,\"full_name\":\"Theo Riddick\",\"sportradar_id\":\"62d4e94c-443f-44ed-9404-c6d6bdd9aa64\",\"pandascore_id\":null,\"yahoo_id\":26822,\"last_name\":\"Riddick\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Immaculata (NJ)\",\"depth_chart_order\":5,\"stats_id\":508985,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'9\\\"\",\"search_full_name\":\"theoriddick\",\"birth_date\":\"1991-05-04\",\"espn_id\":15994},\"5412\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034546\",\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1541549439413,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"golditch\",\"depth_chart_position\":null,\"player_id\":\"5412\",\"birth_city\":null,\"fantasy_data_id\":20425,\"years_exp\":2,\"hashtag\":\"#ZackGolditch-NFL-FA-61\",\"search_first_name\":\"zack\",\"rotowire_id\":13048,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Zack Golditch\",\"sportradar_id\":\"9b1fd0a4-6a45-4388-bf1e-bf4162e84056\",\"pandascore_id\":null,\"yahoo_id\":31677,\"last_name\":\"Golditch\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zackgolditch\",\"birth_date\":\"1995-02-22\",\"espn_id\":3042907},\"1490\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030542\",\"first_name\":\"Terrance\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1568151057144,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1490\",\"birth_city\":null,\"fantasy_data_id\":15088,\"years_exp\":7,\"hashtag\":\"#TerranceWilliams-NFL-FA-83\",\"search_first_name\":\"terrance\",\"rotowire_id\":8794,\"rotoworld_id\":8401,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Terrance Williams\",\"sportradar_id\":\"3c2db5b7-77bf-4c52-bb77-b0fe3cf89e5e\",\"pandascore_id\":null,\"yahoo_id\":26697,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"White (TX)\",\"depth_chart_order\":null,\"stats_id\":460107,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terrancewilliams\",\"birth_date\":\"1989-09-18\",\"espn_id\":15878},\"4532\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033612\",\"first_name\":\"Sojourn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1591045230508,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shelton\",\"depth_chart_position\":null,\"player_id\":\"4532\",\"birth_city\":null,\"fantasy_data_id\":19411,\"years_exp\":3,\"hashtag\":\"#SojournShelton-NFL-FA-0\",\"search_first_name\":\"sojourn\",\"rotowire_id\":12029,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sojourn Shelton\",\"sportradar_id\":\"6311b3ee-d514-415a-941c-4bda88a6bb55\",\"pandascore_id\":null,\"yahoo_id\":30495,\"last_name\":\"Shelton\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"168\",\"height\":\"5'9\\\"\",\"search_full_name\":\"sojournshelton\",\"birth_date\":\"1994-12-25\",\"espn_id\":3045278},\"807\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"807\",\"birth_city\":null,\"fantasy_data_id\":12763,\"years_exp\":9,\"hashtag\":\"#JimmyWilson-NFL-FA-38\",\"search_first_name\":\"jimmy\",\"rotowire_id\":7617,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jimmy Wilson\",\"sportradar_id\":\"25cec667-f621-49da-8edb-666470d63250\",\"pandascore_id\":null,\"yahoo_id\":25022,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Point Loma (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jimmywilson\",\"birth_date\":\"1986-07-30\",\"espn_id\":14059},\"6394\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Romell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1563637825629,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"guerrier\",\"depth_chart_position\":null,\"player_id\":\"6394\",\"birth_city\":null,\"fantasy_data_id\":21404,\"years_exp\":1,\"hashtag\":\"#RomellGuerrier-NFL-FA-83\",\"search_first_name\":\"romell\",\"rotowire_id\":14059,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Romell Guerrier\",\"sportradar_id\":\"259fdebe-0372-4e76-b1d7-a80fbab76c85\",\"pandascore_id\":null,\"yahoo_id\":32193,\"last_name\":\"Guerrier\",\"metadata\":null,\"college\":\"Florida Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":955363,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'10\\\"\",\"search_full_name\":\"romellguerrier\",\"birth_date\":null,\"espn_id\":4264340},\"1530\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030113\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567894204895,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1530\",\"birth_city\":null,\"fantasy_data_id\":15141,\"years_exp\":7,\"hashtag\":\"#CharlesJohnson-NFL-FA-84\",\"search_first_name\":\"charles\",\"rotowire_id\":8913,\"rotoworld_id\":8615,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Charles Johnson\",\"sportradar_id\":\"be08946a-31ea-46da-b572-19c1e1948d14\",\"pandascore_id\":null,\"yahoo_id\":26839,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":\"Lloyd Memorial (KY)\",\"depth_chart_order\":null,\"stats_id\":386696,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"charlesjohnson\",\"birth_date\":\"1989-02-27\",\"espn_id\":15885},\"3895\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033094\",\"first_name\":\"Marvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606344603236,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3895\",\"birth_city\":null,\"fantasy_data_id\":18717,\"years_exp\":4,\"hashtag\":\"#MarvinHall-NFL-DET-17\",\"search_first_name\":\"marvin\",\"rotowire_id\":11517,\"rotoworld_id\":null,\"active\":true,\"search_rank\":274,\"age\":27,\"full_name\":\"Marvin Hall\",\"sportradar_id\":\"1283923a-9716-4936-920a-a57f019bb2e8\",\"pandascore_id\":null,\"yahoo_id\":30023,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Dorsey (CA)\",\"depth_chart_order\":1,\"stats_id\":607435,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marvinhall\",\"birth_date\":\"1993-04-10\",\"espn_id\":2578369},\"2729\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031731\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1565306161387,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grant\",\"depth_chart_position\":null,\"player_id\":\"2729\",\"birth_city\":null,\"fantasy_data_id\":17197,\"years_exp\":5,\"hashtag\":\"#CoreyGrant-NFL-FA-35\",\"search_first_name\":\"corey\",\"rotowire_id\":10196,\"rotoworld_id\":10678,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Corey Grant\",\"sportradar_id\":\"af944a80-eba7-479d-b3b1-73279abdc67a\",\"pandascore_id\":null,\"yahoo_id\":28847,\"last_name\":\"Grant\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Opelika (AL)\",\"depth_chart_order\":null,\"stats_id\":557163,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"coreygrant\",\"birth_date\":\"1991-12-19\",\"espn_id\":2515934},\"4790\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wheelwright\",\"depth_chart_position\":null,\"player_id\":\"4790\",\"birth_city\":null,\"fantasy_data_id\":19545,\"years_exp\":2,\"hashtag\":\"#RobertWheelwright-NFL-FA-82\",\"search_first_name\":\"robert\",\"rotowire_id\":12326,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Robert Wheelwright\",\"sportradar_id\":\"e3eb6db0-646b-4af4-b4ef-d98d9882b726\",\"pandascore_id\":null,\"yahoo_id\":30742,\"last_name\":\"Wheelwright\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742491,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robertwheelwright\",\"birth_date\":\"1994-12-14\",\"espn_id\":3045283},\"4796\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daikiel\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shortsjr\",\"depth_chart_position\":null,\"player_id\":\"4796\",\"birth_city\":null,\"fantasy_data_id\":19710,\"years_exp\":0,\"hashtag\":\"#DaikielShortsJr-NFL-BUF-0\",\"search_first_name\":\"daikiel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Daikiel Shorts Jr.\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30602,\"last_name\":\"Shorts Jr.\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"daikielshortsjr\",\"birth_date\":null,\"espn_id\":null},\"6806\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.K.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606161914501,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"dobbins\",\"depth_chart_position\":\"RB\",\"player_id\":\"6806\",\"birth_city\":null,\"fantasy_data_id\":21674,\"years_exp\":0,\"hashtag\":\"#JKDobbins-NFL-BAL-27\",\"search_first_name\":\"jk\",\"rotowire_id\":14418,\"rotoworld_id\":null,\"active\":true,\"search_rank\":63,\"age\":21,\"full_name\":\"J.K. Dobbins\",\"sportradar_id\":\"a57b9914-4315-4295-98b4-9b348c52d6a1\",\"pandascore_id\":null,\"yahoo_id\":32725,\"last_name\":\"Dobbins\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"La Grange (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jkdobbins\",\"birth_date\":\"1998-12-17\",\"espn_id\":4241985},\"7390\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Domenique\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596331511920,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"7390\",\"birth_city\":null,\"fantasy_data_id\":22376,\"years_exp\":0,\"hashtag\":\"#DomeniqueDavis-NFL-FA-0\",\"search_first_name\":\"domenique\",\"rotowire_id\":15157,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1996,\"age\":24,\"full_name\":\"Domenique Davis\",\"sportradar_id\":\"b4065c2b-1b40-4497-af11-f36fd9454d61\",\"pandascore_id\":null,\"yahoo_id\":33332,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"North Carolina-Pembroke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"domeniquedavis\",\"birth_date\":\"1996-02-28\",\"espn_id\":null},\"3988\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barry\",\"depth_chart_position\":null,\"player_id\":\"3988\",\"birth_city\":null,\"fantasy_data_id\":18823,\"years_exp\":0,\"hashtag\":\"#JoeBarry-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":10324,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Barry\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Barry\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joebarry\",\"birth_date\":null,\"espn_id\":null},\"99\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Allen\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barbre\",\"depth_chart_position\":null,\"player_id\":\"99\",\"birth_city\":null,\"fantasy_data_id\":2663,\"years_exp\":13,\"hashtag\":\"#AllenBarbre-NFL-FA-73\",\"search_first_name\":\"allen\",\"rotowire_id\":6343,\"rotoworld_id\":4454,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Allen Barbre\",\"sportradar_id\":\"21c07256-4cd8-4bf0-abcf-0d2682af2538\",\"pandascore_id\":null,\"yahoo_id\":8373,\"last_name\":\"Barbre\",\"metadata\":null,\"college\":\"Missouri Southern\",\"high_school\":\"East Newton (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"allenbarbre\",\"birth_date\":\"1984-06-22\",\"espn_id\":10563},\"5464\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034201\",\"first_name\":\"De'Lance\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1589760325995,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":null,\"player_id\":\"5464\",\"birth_city\":null,\"fantasy_data_id\":20562,\"years_exp\":2,\"hashtag\":\"#DeLanceTurner-NFL-FA-0\",\"search_first_name\":\"delance\",\"rotowire_id\":13130,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1491,\"age\":25,\"full_name\":\"De'Lance Turner\",\"sportradar_id\":\"b928bd74-ad93-4251-9c96-300bfa04857e\",\"pandascore_id\":null,\"yahoo_id\":31425,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Alcorn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":887450,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'11\\\"\",\"search_full_name\":\"delanceturner\",\"birth_date\":\"1995-08-23\",\"espn_id\":3928461},\"3885\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":\"LILB\",\"player_id\":\"3885\",\"birth_city\":null,\"fantasy_data_id\":18707,\"years_exp\":0,\"hashtag\":\"#JamesRoss-NFL-FA-59\",\"search_first_name\":\"james\",\"rotowire_id\":11280,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"James Ross\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30012,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jamesross\",\"birth_date\":\"1994-06-26\",\"espn_id\":2977608},\"1712\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mabin\",\"depth_chart_position\":null,\"player_id\":\"1712\",\"birth_city\":null,\"fantasy_data_id\":15623,\"years_exp\":2,\"hashtag\":\"#JordanMabin-NFL-FA-24\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jordan Mabin\",\"sportradar_id\":\"c41602e2-5d4b-478a-a0d4-4320b9aeb76e\",\"pandascore_id\":null,\"yahoo_id\":26516,\"last_name\":\"Mabin\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordanmabin\",\"birth_date\":\"1988-10-31\",\"espn_id\":15571},\"5995\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034975\",\"first_name\":\"Justice\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606260354589,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"RB\",\"player_id\":\"5995\",\"birth_city\":null,\"fantasy_data_id\":20802,\"years_exp\":1,\"hashtag\":\"#JusticeHill-NFL-BAL-43\",\"search_first_name\":\"justice\",\"rotowire_id\":13427,\"rotoworld_id\":13944,\"active\":true,\"search_rank\":264,\"age\":23,\"full_name\":\"Justice Hill\",\"sportradar_id\":\"528e71ec-8fb3-4928-ace5-fc5ffbf26eb3\",\"pandascore_id\":null,\"yahoo_id\":31945,\"last_name\":\"Hill\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Oklahoma State\",\"high_school\":\"Booker T. Washington (OK)\",\"depth_chart_order\":4,\"stats_id\":923109,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"justicehill\",\"birth_date\":\"1997-11-14\",\"espn_id\":4038441},\"1780\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1780\",\"birth_city\":null,\"fantasy_data_id\":15869,\"years_exp\":4,\"hashtag\":\"#RyanRobinson-NFL-FA-44\",\"search_first_name\":\"ryan\",\"rotowire_id\":9117,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan Robinson\",\"sportradar_id\":\"95120c7f-4375-40a7-90b8-7066c216ad08\",\"pandascore_id\":null,\"yahoo_id\":27406,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanrobinson\",\"birth_date\":\"1990-12-09\",\"espn_id\":16531},\"3669\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032596\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605828615627,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"poole\",\"depth_chart_position\":null,\"player_id\":\"3669\",\"birth_city\":null,\"fantasy_data_id\":18469,\"years_exp\":4,\"hashtag\":\"#BrianPoole-NFL-NYJ-34\",\"search_first_name\":\"brian\",\"rotowire_id\":11319,\"rotoworld_id\":11805,\"active\":true,\"search_rank\":1081,\"age\":28,\"full_name\":\"Brian Poole\",\"sportradar_id\":\"901c84c7-ef46-4c9f-9941-ac8becc02986\",\"pandascore_id\":null,\"yahoo_id\":29655,\"last_name\":\"Poole\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Southeast (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brianpoole\",\"birth_date\":\"1992-10-20\",\"espn_id\":2980115},\"3419\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curt\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maggitt\",\"depth_chart_position\":null,\"player_id\":\"3419\",\"birth_city\":null,\"fantasy_data_id\":18182,\"years_exp\":0,\"hashtag\":\"#CurtMaggitt-NFL-FA-92\",\"search_first_name\":\"curt\",\"rotowire_id\":11123,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Curt Maggitt\",\"sportradar_id\":\"420f3d44-d5c5-45c1-9a44-becd8223b986\",\"pandascore_id\":null,\"yahoo_id\":29603,\"last_name\":\"Maggitt\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":598681,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'4\\\"\",\"search_full_name\":\"curtmaggitt\",\"birth_date\":\"1993-02-04\",\"espn_id\":2577719},\"6506\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035176\",\"first_name\":\"Trayone\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1565030739005,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":\"RB\",\"player_id\":\"6506\",\"birth_city\":null,\"fantasy_data_id\":21283,\"years_exp\":1,\"hashtag\":\"#TrayoneGray-NFL-FA-43\",\"search_first_name\":\"trayone\",\"rotowire_id\":14166,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Trayone Gray\",\"sportradar_id\":\"bbd96f73-7fab-4047-bde6-b66b0228a06a\",\"pandascore_id\":null,\"yahoo_id\":32376,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":839549,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trayonegray\",\"birth_date\":\"1995-12-14\",\"espn_id\":3135736},\"6864\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalid\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598332253686,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kareem\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6864\",\"birth_city\":null,\"fantasy_data_id\":21876,\"years_exp\":0,\"hashtag\":\"#KhalidKareem-NFL-CIN-90\",\"search_first_name\":\"khalid\",\"rotowire_id\":14684,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1804,\"age\":22,\"full_name\":\"Khalid Kareem\",\"sportradar_id\":\"3f4fe254-f18f-4b56-83e0-c37cfc72c7f7\",\"pandascore_id\":null,\"yahoo_id\":32817,\"last_name\":\"Kareem\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Harrison (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"khalidkareem\",\"birth_date\":\"1998-04-28\",\"espn_id\":4039029},\"2997\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Qumain\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"black\",\"depth_chart_position\":null,\"player_id\":\"2997\",\"birth_city\":null,\"fantasy_data_id\":17525,\"years_exp\":0,\"hashtag\":\"#QumainBlack-NFL-FA-39\",\"search_first_name\":\"qumain\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Qumain Black\",\"sportradar_id\":\"c95fc411-605f-45bb-982d-7f7bab523f30\",\"pandascore_id\":null,\"yahoo_id\":28706,\"last_name\":\"Black\",\"metadata\":null,\"college\":\"East Central Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"qumainblack\",\"birth_date\":\"1992-05-28\",\"espn_id\":3892401},\"1907\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1552834853016,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manziel\",\"depth_chart_position\":null,\"player_id\":\"1907\",\"birth_city\":null,\"fantasy_data_id\":16135,\"years_exp\":6,\"hashtag\":\"#JohnnyManziel-NFL-FA-2\",\"search_first_name\":\"johnny\",\"rotowire_id\":9246,\"rotoworld_id\":9271,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Johnny Manziel\",\"sportradar_id\":\"7ebbfdef-1185-4896-a323-e6d5669a8345\",\"pandascore_id\":null,\"yahoo_id\":27550,\"last_name\":\"Manziel\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Tivy (TX)\",\"depth_chart_order\":null,\"stats_id\":593578,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnnymanziel\",\"birth_date\":\"1992-12-06\",\"espn_id\":16736},\"7268\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Krys\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604693145687,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"7268\",\"birth_city\":null,\"fantasy_data_id\":22266,\"years_exp\":0,\"hashtag\":\"#KrysBarnes-NFL-GB-51\",\"search_first_name\":\"krys\",\"rotowire_id\":14572,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1962,\"age\":22,\"full_name\":\"Krys Barnes\",\"sportradar_id\":\"fc081a72-124d-4648-86a4-45aebb95a5ba\",\"pandascore_id\":null,\"yahoo_id\":33221,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Liberty (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"krysbarnes\",\"birth_date\":\"1998-04-02\",\"espn_id\":4035817},\"7332\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgill\",\"depth_chart_position\":null,\"player_id\":\"7332\",\"birth_city\":null,\"fantasy_data_id\":22324,\"years_exp\":0,\"hashtag\":\"#KevinMcGill-NFL-FA-0\",\"search_first_name\":\"kevin\",\"rotowire_id\":15084,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Kevin McGill\",\"sportradar_id\":\"547cf474-e1f1-4c45-ab1a-f98e2a341767\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McGill\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevinmcgill\",\"birth_date\":\"1998-01-06\",\"espn_id\":4039321},\"1298\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027539\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1604248818738,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"levine\",\"depth_chart_position\":\"SS\",\"player_id\":\"1298\",\"birth_city\":null,\"fantasy_data_id\":14767,\"years_exp\":10,\"hashtag\":\"#AnthonyLevine-NFL-BAL-41\",\"search_first_name\":\"anthony\",\"rotowire_id\":7013,\"rotoworld_id\":null,\"active\":true,\"search_rank\":700,\"age\":33,\"full_name\":\"Anthony Levine\",\"sportradar_id\":\"04e8ea8f-8424-4196-a0fd-7dff3740c734\",\"pandascore_id\":null,\"yahoo_id\":24677,\"last_name\":\"Levine\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"Richard J. Reynolds (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonylevine\",\"birth_date\":\"1987-03-27\",\"espn_id\":13845},\"288\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dorenbos\",\"depth_chart_position\":null,\"player_id\":\"288\",\"birth_city\":null,\"fantasy_data_id\":7238,\"years_exp\":17,\"hashtag\":\"#JonDorenbos-NFL-FA-46\",\"search_first_name\":\"jon\",\"rotowire_id\":4800,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Jon Dorenbos\",\"sportradar_id\":\"afee9848-e105-4185-9187-5939fd6e2783\",\"pandascore_id\":null,\"yahoo_id\":6607,\"last_name\":\"Dorenbos\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Pacifica (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jondorenbos\",\"birth_date\":\"1980-07-21\",\"espn_id\":4902},\"2030\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dowling\",\"depth_chart_position\":null,\"player_id\":\"2030\",\"birth_city\":null,\"fantasy_data_id\":16314,\"years_exp\":6,\"hashtag\":\"#JonathanDowling-NFL-FA-31\",\"search_first_name\":\"jonathan\",\"rotowire_id\":9651,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jonathan Dowling\",\"sportradar_id\":\"87347e6c-2edc-4f05-98c3-889c39c07e82\",\"pandascore_id\":null,\"yahoo_id\":27775,\"last_name\":\"Dowling\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Southeast (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonathandowling\",\"birth_date\":\"1991-12-08\",\"espn_id\":16918},\"1140\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"1140\",\"birth_city\":null,\"fantasy_data_id\":14125,\"years_exp\":8,\"hashtag\":\"#MikeHarris-NFL-FA-79\",\"search_first_name\":\"mike\",\"rotowire_id\":8548,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mike Harris\",\"sportradar_id\":\"6a7c8fb3-2d21-4fc2-a2d5-bee1ab74f21b\",\"pandascore_id\":null,\"yahoo_id\":26193,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Duarte (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"338\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mikeharris\",\"birth_date\":\"1988-12-05\",\"espn_id\":15573},\"1708\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Peyton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1513814101568,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"1708\",\"birth_city\":null,\"fantasy_data_id\":15607,\"years_exp\":8,\"hashtag\":\"#PeytonThompson-NFL-FA-25\",\"search_first_name\":\"peyton\",\"rotowire_id\":8840,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Peyton Thompson\",\"sportradar_id\":\"c5c12462-4a66-469c-a847-b64aa493dfd7\",\"pandascore_id\":null,\"yahoo_id\":26180,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Granite Bay (CA)\",\"depth_chart_order\":null,\"stats_id\":466564,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'10\\\"\",\"search_full_name\":\"peytonthompson\",\"birth_date\":\"1990-09-26\",\"espn_id\":15156},\"7503\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605650425617,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"7503\",\"birth_city\":null,\"fantasy_data_id\":22473,\"years_exp\":0,\"hashtag\":\"#ConnorDavis-NFL-NYJ-0\",\"search_first_name\":\"connor\",\"rotowire_id\":15172,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Connor Davis\",\"sportradar_id\":\"da9fbb26-ca12-41a7-955e-a8abe04d19f0\",\"pandascore_id\":null,\"yahoo_id\":33362,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Stony Brook\",\"high_school\":\"Fallston (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'8\\\"\",\"search_full_name\":\"connordavis\",\"birth_date\":\"1994-10-20\",\"espn_id\":null},\"5241\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034132\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606113611042,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blake\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5241\",\"birth_city\":null,\"fantasy_data_id\":20224,\"years_exp\":2,\"hashtag\":\"#ChristianBlake-NFL-ATL-13\",\"search_first_name\":\"christian\",\"rotowire_id\":13083,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1436,\"age\":24,\"full_name\":\"Christian Blake\",\"sportradar_id\":\"d90a2ae8-cbd6-40cd-a545-3501c93c0822\",\"pandascore_id\":null,\"yahoo_id\":31347,\"last_name\":\"Blake\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Cardinal Gibbons (FL)\",\"depth_chart_order\":2,\"stats_id\":837503,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'1\\\"\",\"search_full_name\":\"christianblake\",\"birth_date\":\"1996-06-08\",\"espn_id\":3126002},\"762\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"starks\",\"depth_chart_position\":null,\"player_id\":\"762\",\"birth_city\":null,\"fantasy_data_id\":12506,\"years_exp\":10,\"hashtag\":\"#JamesStarks-NFL-FA-44\",\"search_first_name\":\"james\",\"rotowire_id\":6487,\"rotoworld_id\":5823,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"James Starks\",\"sportradar_id\":\"de070f62-4494-4a98-8a76-0929c19be685\",\"pandascore_id\":null,\"yahoo_id\":24169,\"last_name\":\"Starks\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Niagara Falls (NY)\",\"depth_chart_order\":null,\"stats_id\":287659,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesstarks\",\"birth_date\":\"1986-02-25\",\"espn_id\":13214},\"1496\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030585\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1577045762022,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pugh\",\"depth_chart_position\":\"LG\",\"player_id\":\"1496\",\"birth_city\":null,\"fantasy_data_id\":15094,\"years_exp\":7,\"hashtag\":\"#JustinPugh-NFL-ARI-67\",\"search_first_name\":\"justin\",\"rotowire_id\":8733,\"rotoworld_id\":8473,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Justin Pugh\",\"sportradar_id\":\"b6fe2eb8-3692-450a-98b3-11e47c8b6711\",\"pandascore_id\":null,\"yahoo_id\":26642,\"last_name\":\"Pugh\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Council Rock South (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justinpugh\",\"birth_date\":\"1990-08-15\",\"espn_id\":15808},\"5142\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034131\",\"first_name\":\"Kurt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606188016532,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"benkert\",\"depth_chart_position\":\"QB\",\"player_id\":\"5142\",\"birth_city\":null,\"fantasy_data_id\":20089,\"years_exp\":2,\"hashtag\":\"#KurtBenkert-NFL-ATL-6\",\"search_first_name\":\"kurt\",\"rotowire_id\":12819,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1416,\"age\":25,\"full_name\":\"Kurt Benkert\",\"sportradar_id\":\"bd684ac3-89d5-4b6b-84df-2a4a9b04cae1\",\"pandascore_id\":null,\"yahoo_id\":31336,\"last_name\":\"Benkert\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Cape Coral (FL)\",\"depth_chart_order\":3,\"stats_id\":728991,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kurtbenkert\",\"birth_date\":\"1995-07-17\",\"espn_id\":3040535},\"1149\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029137\",\"first_name\":\"Alshon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606347302746,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jeffery\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1149\",\"birth_city\":null,\"fantasy_data_id\":14187,\"years_exp\":8,\"hashtag\":\"#AlshonJeffery-NFL-PHI-17\",\"search_first_name\":\"alshon\",\"rotowire_id\":8029,\"rotoworld_id\":7441,\"active\":true,\"search_rank\":161,\"age\":30,\"full_name\":\"Alshon Jeffery\",\"sportradar_id\":\"5c529c33-8a1d-413a-b635-880ac86f30c1\",\"pandascore_id\":null,\"yahoo_id\":25755,\"last_name\":\"Jeffery\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"South Carolina\",\"high_school\":\"Calhoun County (SC)\",\"depth_chart_order\":2,\"stats_id\":504323,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alshonjeffery\",\"birth_date\":\"1990-02-14\",\"espn_id\":14912},\"7416\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"7416\",\"birth_city\":null,\"fantasy_data_id\":22397,\"years_exp\":0,\"hashtag\":\"#LeoLewis-NFL-FA-0\",\"search_first_name\":\"leo\",\"rotowire_id\":15010,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Leo Lewis\",\"sportradar_id\":\"c5ab1d16-3483-426c-bffe-5dd2131557f2\",\"pandascore_id\":null,\"yahoo_id\":32934,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"leolewis\",\"birth_date\":\"1996-11-25\",\"espn_id\":3917288},\"4597\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033750\",\"first_name\":\"Leo\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596161119160,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"koloamatangi\",\"depth_chart_position\":null,\"player_id\":\"4597\",\"birth_city\":null,\"fantasy_data_id\":19485,\"years_exp\":3,\"hashtag\":\"#LeoKoloamatangi-NFL-NYJ-63\",\"search_first_name\":\"leo\",\"rotowire_id\":12519,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Leo Koloamatangi\",\"sportradar_id\":\"441ff2e1-53bd-47dd-b44a-0f97e0b97d9a\",\"pandascore_id\":null,\"yahoo_id\":30770,\"last_name\":\"Koloamatangi\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Sacred Heart Prep (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"leokoloamatangi\",\"birth_date\":\"1994-05-09\",\"espn_id\":2980597},\"6838\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marlon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605161109233,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davidson\",\"depth_chart_position\":\"RDT\",\"player_id\":\"6838\",\"birth_city\":null,\"fantasy_data_id\":21884,\"years_exp\":0,\"hashtag\":\"#MarlonDavidson-NFL-ATL-90\",\"search_first_name\":\"marlon\",\"rotowire_id\":14540,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1810,\"age\":22,\"full_name\":\"Marlon Davidson\",\"sportradar_id\":\"73afc75b-68f0-4cb0-823d-5bfe33969766\",\"pandascore_id\":null,\"yahoo_id\":32717,\"last_name\":\"Davidson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Greenville (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marlondavidson\",\"birth_date\":\"1998-05-11\",\"espn_id\":4035494},\"7009\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trishton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601222739922,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7009\",\"birth_city\":null,\"fantasy_data_id\":21725,\"years_exp\":0,\"hashtag\":\"#TrishtonJackson-NFL-LAR-83\",\"search_first_name\":\"trishton\",\"rotowire_id\":14402,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1777,\"age\":22,\"full_name\":\"Trishton Jackson\",\"sportradar_id\":\"9a2cd41e-a6e8-42d6-aad4-65c42939d733\",\"pandascore_id\":null,\"yahoo_id\":33253,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"West Bloomfield (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trishtonjackson\",\"birth_date\":\"1998-03-09\",\"espn_id\":4046715},\"5138\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034099\",\"first_name\":\"Martez\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1557525014740,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":\"RB\",\"player_id\":\"5138\",\"birth_city\":null,\"fantasy_data_id\":20078,\"years_exp\":2,\"hashtag\":\"#MartezCarter-NFL-FA-35\",\"search_first_name\":\"martez\",\"rotowire_id\":12893,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Martez Carter\",\"sportradar_id\":\"77002a9a-fa1d-4040-b7d5-976159aae433\",\"pandascore_id\":null,\"yahoo_id\":31396,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":844831,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"martezcarter\",\"birth_date\":\"1993-03-08\",\"espn_id\":3140525},\"712\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javier\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"arenas\",\"depth_chart_position\":null,\"player_id\":\"712\",\"birth_city\":null,\"fantasy_data_id\":12211,\"years_exp\":6,\"hashtag\":\"#JavierArenas-NFL-FA-21\",\"search_first_name\":\"javier\",\"rotowire_id\":6629,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Javier Arenas\",\"sportradar_id\":\"c339de02-4efb-4b2c-8eb7-44f52ac4516c\",\"pandascore_id\":null,\"yahoo_id\":24025,\"last_name\":\"Arenas\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'9\\\"\",\"search_full_name\":\"javierarenas\",\"birth_date\":\"1987-10-28\",\"espn_id\":13259},\"2772\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"henry\",\"depth_chart_position\":null,\"player_id\":\"2772\",\"birth_city\":null,\"fantasy_data_id\":17240,\"years_exp\":5,\"hashtag\":\"#MitchellHenry-NFL-FA-85\",\"search_first_name\":\"mitchell\",\"rotowire_id\":10659,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mitchell Henry\",\"sportradar_id\":\"090232d2-ad68-4c22-8340-1a3422dd16b6\",\"pandascore_id\":null,\"yahoo_id\":28927,\"last_name\":\"Henry\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Elizabethtown (KY)\",\"depth_chart_order\":null,\"stats_id\":604175,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mitchellhenry\",\"birth_date\":\"1992-12-11\",\"espn_id\":2573419},\"6198\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034916\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ankrah\",\"depth_chart_position\":null,\"player_id\":\"6198\",\"birth_city\":null,\"fantasy_data_id\":21099,\"years_exp\":1,\"hashtag\":\"#AndrewAnkrah-NFL-FA-47\",\"search_first_name\":\"andrew\",\"rotowire_id\":13935,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Andrew Ankrah\",\"sportradar_id\":\"7bca471d-9352-4fd7-ac8c-42efcdcf3c27\",\"pandascore_id\":null,\"yahoo_id\":31824,\"last_name\":\"Ankrah\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andrewankrah\",\"birth_date\":\"1996-12-31\",\"espn_id\":3049326},\"3651\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Geno\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"matiassmith\",\"depth_chart_position\":null,\"player_id\":\"3651\",\"birth_city\":null,\"fantasy_data_id\":18444,\"years_exp\":0,\"hashtag\":\"#GenoMatiasSmith-NFL-FA-39\",\"search_first_name\":\"geno\",\"rotowire_id\":11391,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Geno Matias-Smith\",\"sportradar_id\":\"ca584a3b-7b0f-49bc-9ba3-2b645c0fa2b8\",\"pandascore_id\":null,\"yahoo_id\":29639,\"last_name\":\"Matias-Smith\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"genomatiassmith\",\"birth_date\":\"1994-05-09\",\"espn_id\":2979858},\"6406\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034924\",\"first_name\":\"Juwann\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596169219903,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bushellbeatty\",\"depth_chart_position\":\"RG\",\"player_id\":\"6406\",\"birth_city\":null,\"fantasy_data_id\":21402,\"years_exp\":1,\"hashtag\":\"#JuwannBushellBeatty-NFL-FA-0\",\"search_first_name\":\"juwann\",\"rotowire_id\":13724,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Juwann Bushell-Beatty\",\"sportradar_id\":\"01be8423-2835-4450-80c1-4e462bbfb661\",\"pandascore_id\":null,\"yahoo_id\":32182,\"last_name\":\"Bushell-Beatty\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'5\\\"\",\"search_full_name\":\"juwannbushellbeatty\",\"birth_date\":\"1996-06-18\",\"espn_id\":3115977},\"6824\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donovan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606138513045,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peoplesjones\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6824\",\"birth_city\":null,\"fantasy_data_id\":21754,\"years_exp\":0,\"hashtag\":\"#DonovanPeoplesJones-NFL-CLE-11\",\"search_first_name\":\"donovan\",\"rotowire_id\":14457,\"rotoworld_id\":null,\"active\":true,\"search_rank\":294,\"age\":21,\"full_name\":\"Donovan Peoples-Jones\",\"sportradar_id\":\"924edb03-29a9-42ae-92dd-ef7e8a498095\",\"pandascore_id\":null,\"yahoo_id\":32857,\"last_name\":\"Peoples-Jones\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Cass Tech (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"donovanpeoplesjones\",\"birth_date\":\"1999-02-19\",\"espn_id\":4258195},\"330\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023534\",\"first_name\":\"Dustin\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1603467353563,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"colquitt\",\"depth_chart_position\":null,\"player_id\":\"330\",\"birth_city\":null,\"fantasy_data_id\":8243,\"years_exp\":15,\"hashtag\":\"#DustinColquitt-NFL-PIT-4\",\"search_first_name\":\"dustin\",\"rotowire_id\":4442,\"rotoworld_id\":3212,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Dustin Colquitt\",\"sportradar_id\":\"cdf8908a-7092-4054-a49c-a9884211aaa1\",\"pandascore_id\":null,\"yahoo_id\":7275,\"last_name\":\"Colquitt\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Tennessee\",\"high_school\":\"Bearden (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dustincolquitt\",\"birth_date\":\"1982-05-06\",\"espn_id\":8513},\"4555\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"4555\",\"birth_city\":null,\"fantasy_data_id\":19436,\"years_exp\":0,\"hashtag\":\"#AndyPhillips-NFL-FA-17\",\"search_first_name\":\"andy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":709,\"age\":28,\"full_name\":\"Andy Phillips\",\"sportradar_id\":\"4ab7602d-d537-48d7-93f0-add1b6b860aa\",\"pandascore_id\":null,\"yahoo_id\":30725,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"andyphillips\",\"birth_date\":\"1989-05-18\",\"espn_id\":2971658},\"IND\":{\"team\":\"IND\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"IND\",\"last_name\":\"Colts\",\"injury_status\":null,\"first_name\":\"Indianapolis\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"2434\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031578\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1591919109250,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":null,\"player_id\":\"2434\",\"birth_city\":null,\"fantasy_data_id\":16890,\"years_exp\":5,\"hashtag\":\"#JakeRyan-NFL-FA-47\",\"search_first_name\":\"jake\",\"rotowire_id\":10367,\"rotoworld_id\":null,\"active\":true,\"search_rank\":894,\"age\":28,\"full_name\":\"Jake Ryan\",\"sportradar_id\":\"2f901553-926f-44c4-8ef0-1f0ff2d772cf\",\"pandascore_id\":null,\"yahoo_id\":28517,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"St. Ignatius (OH)\",\"depth_chart_order\":null,\"stats_id\":558642,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakeryan\",\"birth_date\":\"1992-02-27\",\"espn_id\":2515337},\"1673\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Da'Rick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":null,\"player_id\":\"1673\",\"birth_city\":null,\"fantasy_data_id\":15470,\"years_exp\":2,\"hashtag\":\"#DaRickRogers-NFL-FA-16\",\"search_first_name\":\"darick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Da'Rick Rogers\",\"sportradar_id\":\"1771b1d1-272b-496f-b34b-4f50dd99f831\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rogers\",\"metadata\":null,\"college\":\"Tennessee Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542841,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darickrogers\",\"birth_date\":\"1991-06-18\",\"espn_id\":null},\"842\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028001\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596570912673,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"gilbert\",\"depth_chart_position\":null,\"player_id\":\"842\",\"birth_city\":null,\"fantasy_data_id\":12897,\"years_exp\":9,\"hashtag\":\"#MarcusGilbert-NFL-ARI-76\",\"search_first_name\":\"marcus\",\"rotowire_id\":7552,\"rotoworld_id\":6617,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Marcus Gilbert\",\"sportradar_id\":\"cb332cbe-4490-48c6-9a21-046475206e07\",\"pandascore_id\":null,\"yahoo_id\":24850,\"last_name\":\"Gilbert\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'6\\\"\",\"search_full_name\":\"marcusgilbert\",\"birth_date\":\"1988-02-15\",\"espn_id\":13998},\"2775\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jermauria\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rasco\",\"depth_chart_position\":null,\"player_id\":\"2775\",\"birth_city\":null,\"fantasy_data_id\":17243,\"years_exp\":1,\"hashtag\":\"#JermauriaRasco-NFL-FA-45\",\"search_first_name\":\"jermauria\",\"rotowire_id\":10380,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jermauria Rasco\",\"sportradar_id\":\"475ac0bb-7782-4aba-9c5b-ba8be27ee1b3\",\"pandascore_id\":null,\"yahoo_id\":28931,\"last_name\":\"Rasco\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jermauriarasco\",\"birth_date\":\"1992-10-05\",\"espn_id\":2577297},\"3403\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032455\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584548722534,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blythe\",\"depth_chart_position\":\"C\",\"player_id\":\"3403\",\"birth_city\":null,\"fantasy_data_id\":18164,\"years_exp\":4,\"hashtag\":\"#AustinBlythe-NFL-LAR-66\",\"search_first_name\":\"austin\",\"rotowire_id\":10909,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Austin Blythe\",\"sportradar_id\":\"eb6c7e5d-987f-480d-9618-43f56e0b565f\",\"pandascore_id\":null,\"yahoo_id\":29482,\"last_name\":\"Blythe\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Williamsburg (IA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austinblythe\",\"birth_date\":\"1992-06-16\",\"espn_id\":2582448},\"814\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027994\",\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1536283502186,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"vereen\",\"depth_chart_position\":null,\"player_id\":\"814\",\"birth_city\":null,\"fantasy_data_id\":12780,\"years_exp\":9,\"hashtag\":\"#ShaneVereen-NFL-FA-35\",\"search_first_name\":\"shane\",\"rotowire_id\":7250,\"rotoworld_id\":6445,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Shane Vereen\",\"sportradar_id\":\"600ae879-d95a-4ac4-ae4e-72c05a05f1ad\",\"pandascore_id\":null,\"yahoo_id\":24843,\"last_name\":\"Vereen\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Valencia (CA)\",\"depth_chart_order\":null,\"stats_id\":401726,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"shanevereen\",\"birth_date\":\"1989-03-02\",\"espn_id\":14017},\"975\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"McLeod\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1598278814239,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bethelthompson\",\"depth_chart_position\":null,\"player_id\":\"975\",\"birth_city\":null,\"fantasy_data_id\":13429,\"years_exp\":1,\"hashtag\":\"#McLeodBethelThompson-NFL-FA-4\",\"search_first_name\":\"mcleod\",\"rotowire_id\":8051,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"McLeod Bethel-Thompson\",\"sportradar_id\":\"08747f6d-ce8f-4510-bf10-98451dab51e1\",\"pandascore_id\":null,\"yahoo_id\":25483,\"last_name\":\"Bethel-Thompson\",\"metadata\":null,\"college\":\"Cal - Sacramento\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":333425,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mcleodbethelthompson\",\"birth_date\":\"1988-07-03\",\"espn_id\":14594},\"4660\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033696\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600825524078,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"culkin\",\"depth_chart_position\":\"TE\",\"player_id\":\"4660\",\"birth_city\":null,\"fantasy_data_id\":19559,\"years_exp\":3,\"hashtag\":\"#SeanCulkin-NFL-BAL-80\",\"search_first_name\":\"sean\",\"rotowire_id\":12405,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1275,\"age\":27,\"full_name\":\"Sean Culkin\",\"sportradar_id\":\"5cc0007b-4561-4ff2-8fa7-242bec47dc5a\",\"pandascore_id\":null,\"yahoo_id\":30420,\"last_name\":\"Culkin\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Christian (FL)\",\"depth_chart_order\":6,\"stats_id\":689866,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"seanculkin\",\"birth_date\":\"1993-06-11\",\"espn_id\":2971426},\"373\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1548793504577,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cushing\",\"depth_chart_position\":null,\"player_id\":\"373\",\"birth_city\":null,\"fantasy_data_id\":8571,\"years_exp\":11,\"hashtag\":\"#BrianCushing-NFL-FA-56\",\"search_first_name\":\"brian\",\"rotowire_id\":6071,\"rotoworld_id\":5206,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Brian Cushing\",\"sportradar_id\":\"f52bebd5-4f53-4f82-b91f-12761b2fd8b7\",\"pandascore_id\":null,\"yahoo_id\":9279,\"last_name\":\"Cushing\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Bergen Catholic (NJ)\",\"depth_chart_order\":null,\"stats_id\":297119,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"briancushing\",\"birth_date\":\"1987-01-24\",\"espn_id\":12453},\"5746\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaheed\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535508024891,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"salmon\",\"depth_chart_position\":null,\"player_id\":\"5746\",\"birth_city\":null,\"fantasy_data_id\":20655,\"years_exp\":2,\"hashtag\":\"#ShaheedSalmon-NFL-FA-56\",\"search_first_name\":\"shaheed\",\"rotowire_id\":13347,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Shaheed Salmon\",\"sportradar_id\":\"dead9e38-70e0-4bfd-9071-8e431bc7c133\",\"pandascore_id\":null,\"yahoo_id\":31742,\"last_name\":\"Salmon\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"shaheedsalmon\",\"birth_date\":\"1996-04-22\",\"espn_id\":3127065},\"6944\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tremayne\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587939894095,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anchrum\",\"depth_chart_position\":\"LT\",\"player_id\":\"6944\",\"birth_city\":null,\"fantasy_data_id\":21983,\"years_exp\":0,\"hashtag\":\"#TremayneAnchrum-NFL-LAR-72\",\"search_first_name\":\"tremayne\",\"rotowire_id\":14606,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tremayne Anchrum\",\"sportradar_id\":\"14ab97c3-4ace-4bb6-99de-3b22dcf610fe\",\"pandascore_id\":null,\"yahoo_id\":32920,\"last_name\":\"Anchrum\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"McEachern (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tremayneanchrum\",\"birth_date\":\"1998-06-24\",\"espn_id\":4035478},\"4630\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"I'Tavius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1519413301760,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathers\",\"depth_chart_position\":null,\"player_id\":\"4630\",\"birth_city\":null,\"fantasy_data_id\":19524,\"years_exp\":3,\"hashtag\":\"#ITaviusMathers-NFL-FA-43\",\"search_first_name\":\"itavius\",\"rotowire_id\":12270,\"rotoworld_id\":12546,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"I'Tavius Mathers\",\"sportradar_id\":\"e1e048b9-ddc7-48c5-83cb-c6d03d9dea01\",\"pandascore_id\":null,\"yahoo_id\":30403,\"last_name\":\"Mathers\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694667,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"itaviusmathers\",\"birth_date\":\"1993-11-19\",\"espn_id\":2980384},\"809\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ras-I\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dowling\",\"depth_chart_position\":null,\"player_id\":\"809\",\"birth_city\":null,\"fantasy_data_id\":12767,\"years_exp\":3,\"hashtag\":\"#RasIDowling-NFL-FA-37\",\"search_first_name\":\"rasi\",\"rotowire_id\":7512,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ras-I Dowling\",\"sportradar_id\":\"c513c82d-4da9-4df7-a303-12a5308e3e22\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dowling\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rasidowling\",\"birth_date\":\"1988-05-09\",\"espn_id\":14038},\"329\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023449\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1556826603643,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"329\",\"birth_city\":null,\"fantasy_data_id\":8231,\"years_exp\":15,\"hashtag\":\"#DerrickJohnson-NFL-FA-56\",\"search_first_name\":\"derrick\",\"rotowire_id\":4486,\"rotoworld_id\":3172,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Derrick Johnson\",\"sportradar_id\":\"e3896096-bafa-4c02-bd35-372c4002b3d7\",\"pandascore_id\":null,\"yahoo_id\":7191,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Waco (TX)\",\"depth_chart_order\":null,\"stats_id\":161681,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derrickjohnson\",\"birth_date\":\"1982-11-22\",\"espn_id\":8430},\"4088\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033544\",\"first_name\":\"Quincy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604772951063,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"4088\",\"birth_city\":null,\"fantasy_data_id\":18934,\"years_exp\":3,\"hashtag\":\"#QuincyWilson-NFL-NYG-27\",\"search_first_name\":\"quincy\",\"rotowire_id\":12037,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1136,\"age\":24,\"full_name\":\"Quincy Wilson\",\"sportradar_id\":\"41ca30bb-890b-4d30-ae2a-2b12eee9423a\",\"pandascore_id\":null,\"yahoo_id\":30159,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"University School (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'2\\\"\",\"search_full_name\":\"quincywilson\",\"birth_date\":\"1996-08-16\",\"espn_id\":3121660},\"2511\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031615\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1571936731924,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ringo\",\"depth_chart_position\":null,\"player_id\":\"2511\",\"birth_city\":null,\"fantasy_data_id\":16970,\"years_exp\":5,\"hashtag\":\"#ChristianRingo-NFL-NO-79\",\"search_first_name\":\"christian\",\"rotowire_id\":10486,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Christian Ringo\",\"sportradar_id\":\"0c158936-9c0c-4ee4-a51c-4f937d3d163f\",\"pandascore_id\":null,\"yahoo_id\":28598,\"last_name\":\"Ringo\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Forest Hill (MS)\",\"depth_chart_order\":null,\"stats_id\":608408,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'1\\\"\",\"search_full_name\":\"christianringo\",\"birth_date\":\"1992-03-10\",\"espn_id\":2574023},\"3579\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marshall\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morgan\",\"depth_chart_position\":null,\"player_id\":\"3579\",\"birth_city\":null,\"fantasy_data_id\":18358,\"years_exp\":0,\"hashtag\":\"#MarshallMorgan-NFL-FA-9\",\"search_first_name\":\"marshall\",\"rotowire_id\":11326,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marshall Morgan\",\"sportradar_id\":\"8b8f9f11-fb57-440d-a441-24c7b099ef0a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Morgan\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694649,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marshallmorgan\",\"birth_date\":\"1993-11-28\",\"espn_id\":null},\"3698\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"skov\",\"depth_chart_position\":null,\"player_id\":\"3698\",\"birth_city\":null,\"fantasy_data_id\":18501,\"years_exp\":0,\"hashtag\":\"#PatrickSkov-NFL-FA-48\",\"search_first_name\":\"patrick\",\"rotowire_id\":11368,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Patrick Skov\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29671,\"last_name\":\"Skov\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":598978,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"patrickskov\",\"birth_date\":\"1992-07-21\",\"espn_id\":null},\"2770\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Harold\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spears\",\"depth_chart_position\":null,\"player_id\":\"2770\",\"birth_city\":null,\"fantasy_data_id\":17238,\"years_exp\":0,\"hashtag\":\"#HaroldSpears-NFL-FA-49\",\"search_first_name\":\"harold\",\"rotowire_id\":10587,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Harold Spears\",\"sportradar_id\":\"8f5db5c1-b57b-4d3d-aa5e-ac70012eace1\",\"pandascore_id\":null,\"yahoo_id\":28765,\"last_name\":\"Spears\",\"metadata\":null,\"college\":\"New Hampshire\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":552243,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"haroldspears\",\"birth_date\":\"1992-03-09\",\"espn_id\":2507292},\"7398\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606020310247,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"7398\",\"birth_city\":null,\"fantasy_data_id\":22383,\"years_exp\":0,\"hashtag\":\"#ReggieWalker-NFL-ARI-56\",\"search_first_name\":\"reggie\",\"rotowire_id\":15102,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1998,\"age\":24,\"full_name\":\"Reggie Walker\",\"sportradar_id\":\"75513062-bfe5-4e32-af04-04a805c0fd8d\",\"pandascore_id\":null,\"yahoo_id\":33086,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Ponchatoula (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"reggiewalker\",\"birth_date\":\"1996-04-22\",\"espn_id\":4046605},\"1944\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031075\",\"first_name\":\"Alfred\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1576621823394,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"blue\",\"depth_chart_position\":null,\"player_id\":\"1944\",\"birth_city\":null,\"fantasy_data_id\":16189,\"years_exp\":6,\"hashtag\":\"#AlfredBlue-NFL-FA-23\",\"search_first_name\":\"alfred\",\"rotowire_id\":9360,\"rotoworld_id\":9685,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Alfred Blue\",\"sportradar_id\":\"cbf1cdba-d165-45f7-a695-5e0971dd9042\",\"pandascore_id\":null,\"yahoo_id\":27709,\"last_name\":\"Blue\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Hahnville (LA)\",\"depth_chart_order\":null,\"stats_id\":540506,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alfredblue\",\"birth_date\":\"1991-04-27\",\"espn_id\":16921},\"4919\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"latham\",\"depth_chart_position\":null,\"player_id\":\"4919\",\"birth_city\":null,\"fantasy_data_id\":18863,\"years_exp\":1,\"hashtag\":\"#JoshLatham-NFL-NYJ-0\",\"search_first_name\":\"josh\",\"rotowire_id\":11744,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Josh Latham\",\"sportradar_id\":\"c40d096f-62de-4e4c-a694-0249689c2fe8\",\"pandascore_id\":null,\"yahoo_id\":30089,\"last_name\":\"Latham\",\"metadata\":null,\"college\":\"Sacramento State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshlatham\",\"birth_date\":\"1993-09-20\",\"espn_id\":null},\"6998\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gage\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cervenka\",\"depth_chart_position\":null,\"player_id\":\"6998\",\"birth_city\":null,\"fantasy_data_id\":22100,\"years_exp\":0,\"hashtag\":\"#GageCervenka-NFL-FA-0\",\"search_first_name\":\"gage\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Gage Cervenka\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cervenka\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gagecervenka\",\"birth_date\":null,\"espn_id\":null},\"3862\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donovan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3862\",\"birth_city\":null,\"fantasy_data_id\":18684,\"years_exp\":0,\"hashtag\":\"#DonovanWilliams-NFL-FA-60\",\"search_first_name\":\"donovan\",\"rotowire_id\":11358,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Donovan Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29995,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'2\\\"\",\"search_full_name\":\"donovanwilliams\",\"birth_date\":\"1993-09-21\",\"espn_id\":null},\"3934\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033164\",\"first_name\":\"Troymaine\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606236353186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pope\",\"depth_chart_position\":\"RB\",\"player_id\":\"3934\",\"birth_city\":null,\"fantasy_data_id\":18764,\"years_exp\":4,\"hashtag\":\"#TroymainePope-NFL-LAC-35\",\"search_first_name\":\"troymaine\",\"rotowire_id\":11642,\"rotoworld_id\":12111,\"active\":true,\"search_rank\":1110,\"age\":27,\"full_name\":\"Troymaine Pope\",\"sportradar_id\":\"5a9401fc-e43e-43e8-9e63-dadecb12491b\",\"pandascore_id\":null,\"yahoo_id\":30061,\"last_name\":\"Pope\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":\"Anniston (AL)\",\"depth_chart_order\":4,\"stats_id\":700813,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"troymainepope\",\"birth_date\":\"1993-11-26\",\"espn_id\":2983319},\"6331\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035123\",\"first_name\":\"Koa\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farmer\",\"depth_chart_position\":null,\"player_id\":\"6331\",\"birth_city\":null,\"fantasy_data_id\":21237,\"years_exp\":1,\"hashtag\":\"#KoaFarmer-NFL-FA-46\",\"search_first_name\":\"koa\",\"rotowire_id\":14115,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Koa Farmer\",\"sportradar_id\":\"ca8107bb-0548-49ba-8f76-2a65f93c4dce\",\"pandascore_id\":null,\"yahoo_id\":32343,\"last_name\":\"Farmer\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"koafarmer\",\"birth_date\":\"1996-02-21\",\"espn_id\":3116162},\"5841\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035230\",\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601665548231,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"oliver\",\"depth_chart_position\":\"LDT\",\"player_id\":\"5841\",\"birth_city\":null,\"fantasy_data_id\":20898,\"years_exp\":1,\"hashtag\":\"#EdOliver-NFL-BUF-91\",\"search_first_name\":\"ed\",\"rotowire_id\":13653,\"rotoworld_id\":14016,\"active\":true,\"search_rank\":1584,\"age\":22,\"full_name\":\"Ed Oliver\",\"sportradar_id\":\"adabdc56-278f-48b9-a003-1329b7f2f663\",\"pandascore_id\":null,\"yahoo_id\":31841,\"last_name\":\"Oliver\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Westfield (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'1\\\"\",\"search_full_name\":\"edoliver\",\"birth_date\":\"1997-12-12\",\"espn_id\":4039303},\"6315\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035352\",\"first_name\":\"Tyrel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603599358713,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dodson\",\"depth_chart_position\":null,\"player_id\":\"6315\",\"birth_city\":null,\"fantasy_data_id\":21218,\"years_exp\":1,\"hashtag\":\"#TyrelDodson-NFL-BUF-53\",\"search_first_name\":\"tyrel\",\"rotowire_id\":13512,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1698,\"age\":22,\"full_name\":\"Tyrel Dodson\",\"sportradar_id\":\"1881d1a7-218b-4690-9065-497946d1ec1e\",\"pandascore_id\":null,\"yahoo_id\":32411,\"last_name\":\"Dodson\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Centennial (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tyreldodson\",\"birth_date\":\"1998-06-25\",\"espn_id\":4035232},\"5843\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035525\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603466153261,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bush\",\"depth_chart_position\":null,\"player_id\":\"5843\",\"birth_city\":null,\"fantasy_data_id\":21054,\"years_exp\":1,\"hashtag\":\"#DevinBush-NFL-PIT-55\",\"search_first_name\":\"devin\",\"rotowire_id\":13461,\"rotoworld_id\":14063,\"active\":true,\"search_rank\":1652,\"age\":22,\"full_name\":\"Devin Bush\",\"sportradar_id\":\"ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf\",\"pandascore_id\":null,\"yahoo_id\":31842,\"last_name\":\"Bush\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Michigan\",\"high_school\":\"Charles W. Flanagan (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"5'11\\\"\",\"search_full_name\":\"devinbush\",\"birth_date\":\"1998-07-18\",\"espn_id\":4036261},\"1054\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"1054\",\"birth_city\":null,\"fantasy_data_id\":13817,\"years_exp\":4,\"hashtag\":\"#StephenHill-NFL-FA-87\",\"search_first_name\":\"stephen\",\"rotowire_id\":8034,\"rotoworld_id\":7445,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Stephen Hill\",\"sportradar_id\":\"512c64d9-c14a-404a-bd33-7f9a90e53d9a\",\"pandascore_id\":null,\"yahoo_id\":25753,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":498805,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"stephenhill\",\"birth_date\":\"1991-04-25\",\"espn_id\":14910},\"7373\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cumberlander\",\"depth_chart_position\":null,\"player_id\":\"7373\",\"birth_city\":null,\"fantasy_data_id\":22361,\"years_exp\":0,\"hashtag\":\"#GusCumberlander-NFL-FA-0\",\"search_first_name\":\"gus\",\"rotowire_id\":14960,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1991,\"age\":null,\"full_name\":\"Gus Cumberlander\",\"sportradar_id\":\"b64006d0-bf10-46de-ab3d-b4e4e2789481\",\"pandascore_id\":null,\"yahoo_id\":33110,\"last_name\":\"Cumberlander\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'7\\\"\",\"search_full_name\":\"guscumberlander\",\"birth_date\":null,\"espn_id\":null},\"7435\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693359979,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scarlett\",\"depth_chart_position\":null,\"player_id\":\"7435\",\"birth_city\":null,\"fantasy_data_id\":22414,\"years_exp\":0,\"hashtag\":\"#CameronScarlett-NFL-FA-0\",\"search_first_name\":\"cameron\",\"rotowire_id\":14887,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Cameron Scarlett\",\"sportradar_id\":\"0ff73dee-f160-492d-b7c8-7d23b15e141d\",\"pandascore_id\":null,\"yahoo_id\":33345,\"last_name\":\"Scarlett\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'0\\\"\",\"search_full_name\":\"cameronscarlett\",\"birth_date\":\"1996-10-09\",\"espn_id\":3931401},\"3742\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032670\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1565471128283,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chubb\",\"depth_chart_position\":null,\"player_id\":\"3742\",\"birth_city\":null,\"fantasy_data_id\":18554,\"years_exp\":4,\"hashtag\":\"#BrandonChubb-NFL-FA-41\",\"search_first_name\":\"brandon\",\"rotowire_id\":11570,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Chubb\",\"sportradar_id\":\"e549984f-1414-4468-9645-4766ba767510\",\"pandascore_id\":null,\"yahoo_id\":29713,\"last_name\":\"Chubb\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonchubb\",\"birth_date\":\"1993-10-21\",\"espn_id\":2577919},\"5473\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034520\",\"first_name\":\"Lyndon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588285244072,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"5473\",\"birth_city\":null,\"fantasy_data_id\":20304,\"years_exp\":2,\"hashtag\":\"#LyndonJohnson-NFL-FA-0\",\"search_first_name\":\"lyndon\",\"rotowire_id\":13042,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lyndon Johnson\",\"sportradar_id\":\"0ae84f6d-1523-4ae8-883a-149539dcd7b3\",\"pandascore_id\":null,\"yahoo_id\":31267,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lyndonjohnson\",\"birth_date\":\"1994-05-23\",\"espn_id\":3914155},\"7210\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604519127860,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hinton\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7210\",\"birth_city\":null,\"fantasy_data_id\":22213,\"years_exp\":0,\"hashtag\":\"#KendallHinton-NFL-DEN-2\",\"search_first_name\":\"kendall\",\"rotowire_id\":14593,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kendall Hinton\",\"sportradar_id\":\"0830e644-2d6e-446b-9da6-57d7e3472fcd\",\"pandascore_id\":null,\"yahoo_id\":32929,\"last_name\":\"Hinton\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Southern Durham (NC)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kendallhinton\",\"birth_date\":\"1997-02-19\",\"espn_id\":3700815},\"2044\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brelan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chancellor\",\"depth_chart_position\":null,\"player_id\":\"2044\",\"birth_city\":null,\"fantasy_data_id\":16336,\"years_exp\":0,\"hashtag\":\"#BrelanChancellor-NFL-FA-6\",\"search_first_name\":\"brelan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brelan Chancellor\",\"sportradar_id\":\"dd01994b-94fd-487b-9ed2-3b788f80665b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Chancellor\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":559327,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'8\\\"\",\"search_full_name\":\"brelanchancellor\",\"birth_date\":\"1992-08-06\",\"espn_id\":null},\"920\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"royster\",\"depth_chart_position\":null,\"player_id\":\"920\",\"birth_city\":null,\"fantasy_data_id\":13172,\"years_exp\":3,\"hashtag\":\"#EvanRoyster-NFL-FA-26\",\"search_first_name\":\"evan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Evan Royster\",\"sportradar_id\":\"f60331a0-29ac-4cde-96c7-270154ff7d48\",\"pandascore_id\":null,\"yahoo_id\":24964,\"last_name\":\"Royster\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"evanroyster\",\"birth_date\":\"1987-11-26\",\"espn_id\":14105},\"5457\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034195\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lacouture\",\"depth_chart_position\":null,\"player_id\":\"5457\",\"birth_city\":null,\"fantasy_data_id\":20243,\"years_exp\":2,\"hashtag\":\"#ChristianLacouture-NFL-FA-91\",\"search_first_name\":\"christian\",\"rotowire_id\":12862,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Christian Lacouture\",\"sportradar_id\":\"6c9c6852-1f41-4e03-83c2-9c4d78e35342\",\"pandascore_id\":null,\"yahoo_id\":31428,\"last_name\":\"Lacouture\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"christianlacouture\",\"birth_date\":\"1994-09-04\",\"espn_id\":3042743},\"5675\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shockley\",\"depth_chart_position\":null,\"player_id\":\"5675\",\"birth_city\":null,\"fantasy_data_id\":20202,\"years_exp\":0,\"hashtag\":\"#EdShockley-NFL-DAL-42\",\"search_first_name\":\"ed\",\"rotowire_id\":13256,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ed Shockley\",\"sportradar_id\":\"88cee4cf-92d9-4ed0-aaee-cc866bf3785a\",\"pandascore_id\":null,\"yahoo_id\":31291,\"last_name\":\"Shockley\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"5'11\\\"\",\"search_full_name\":\"edshockley\",\"birth_date\":\"1995-06-01\",\"espn_id\":3120866},\"5846\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035640\",\"first_name\":\"DK\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605852358070,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"metcalf\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5846\",\"birth_city\":null,\"fantasy_data_id\":20875,\"years_exp\":1,\"hashtag\":\"#DKMetcalf-NFL-SEA-14\",\"search_first_name\":\"dk\",\"rotowire_id\":13424,\"rotoworld_id\":13940,\"active\":true,\"search_rank\":43,\"age\":22,\"full_name\":\"DK Metcalf\",\"sportradar_id\":\"754faf0f-40f7-45f0-b23b-6ce990ecaf26\",\"pandascore_id\":null,\"yahoo_id\":31896,\"last_name\":\"Metcalf\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Oxford (MS)\",\"depth_chart_order\":1,\"stats_id\":945633,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dkmetcalf\",\"birth_date\":\"1997-12-14\",\"espn_id\":4047650},\"5754\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034788\",\"first_name\":\"Jaeden\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605063002195,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":\"TE\",\"player_id\":\"5754\",\"birth_city\":null,\"fantasy_data_id\":20662,\"years_exp\":2,\"hashtag\":\"#JaedenGraham-NFL-ATL-87\",\"search_first_name\":\"jaeden\",\"rotowire_id\":13356,\"rotoworld_id\":null,\"active\":true,\"search_rank\":536,\"age\":25,\"full_name\":\"Jaeden Graham\",\"sportradar_id\":\"97e65d1d-c738-4812-840e-030f0242bc29\",\"pandascore_id\":null,\"yahoo_id\":31749,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"Yale\",\"high_school\":\"Cherry Creek (CO)\",\"depth_chart_order\":2,\"stats_id\":832316,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jaedengraham\",\"birth_date\":\"1995-10-10\",\"espn_id\":3118954},\"6055\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035615\",\"first_name\":\"Natrez\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605057661987,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patrick\",\"depth_chart_position\":null,\"player_id\":\"6055\",\"birth_city\":null,\"fantasy_data_id\":20907,\"years_exp\":1,\"hashtag\":\"#NatrezPatrick-NFL-LAR-57\",\"search_first_name\":\"natrez\",\"rotowire_id\":13973,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1588,\"age\":23,\"full_name\":\"Natrez Patrick\",\"sportradar_id\":\"92e78492-1e80-453e-ab31-862e12ffe7d7\",\"pandascore_id\":null,\"yahoo_id\":32134,\"last_name\":\"Patrick\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Mays (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"natrezpatrick\",\"birth_date\":\"1997-07-09\",\"espn_id\":3728310},\"2422\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032062\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606336503107,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":\"TE\",\"player_id\":\"2422\",\"birth_city\":null,\"fantasy_data_id\":16878,\"years_exp\":5,\"hashtag\":\"#BlakeBell-NFL-DAL-80\",\"search_first_name\":\"blake\",\"rotowire_id\":10248,\"rotoworld_id\":null,\"active\":true,\"search_rank\":476,\"age\":29,\"full_name\":\"Blake Bell\",\"sportradar_id\":\"0cc4e449-185a-4b08-9f07-c907ad0c3e05\",\"pandascore_id\":null,\"yahoo_id\":28505,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Bishop Carroll (KS)\",\"depth_chart_order\":3,\"stats_id\":542871,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'6\\\"\",\"search_full_name\":\"blakebell\",\"birth_date\":\"1991-08-07\",\"espn_id\":2514206},\"2199\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031255\",\"first_name\":\"Kasim\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1572497732686,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edebali\",\"depth_chart_position\":\"RDE\",\"player_id\":\"2199\",\"birth_city\":null,\"fantasy_data_id\":16570,\"years_exp\":6,\"hashtag\":\"#KasimEdebali-NFL-FA-95\",\"search_first_name\":\"kasim\",\"rotowire_id\":9378,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kasim Edebali\",\"sportradar_id\":\"25a958c9-4035-43ad-8c9c-1309ea592e66\",\"pandascore_id\":null,\"yahoo_id\":27923,\"last_name\":\"Edebali\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Kimball Union (NH)\",\"depth_chart_order\":3,\"stats_id\":498200,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kasimedebali\",\"birth_date\":\"1989-08-17\",\"espn_id\":17141},\"4644\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033717\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539882716289,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rudolph\",\"depth_chart_position\":null,\"player_id\":\"4644\",\"birth_city\":null,\"fantasy_data_id\":19539,\"years_exp\":3,\"hashtag\":\"#TravisRudolph-NFL-FA-19\",\"search_first_name\":\"travis\",\"rotowire_id\":11875,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Travis Rudolph\",\"sportradar_id\":\"a1318e21-5a41-4cdd-ad84-e42fa7cbecac\",\"pandascore_id\":null,\"yahoo_id\":30737,\"last_name\":\"Rudolph\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835008,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"travisrudolph\",\"birth_date\":\"1995-09-15\",\"espn_id\":3122935},\"1928\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"andrews\",\"depth_chart_position\":null,\"player_id\":\"1928\",\"birth_city\":null,\"fantasy_data_id\":16163,\"years_exp\":6,\"hashtag\":\"#AntonioAndrews-NFL-FA-26\",\"search_first_name\":\"antonio\",\"rotowire_id\":9525,\"rotoworld_id\":9576,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Antonio Andrews\",\"sportradar_id\":\"162195c8-191e-45ff-a769-1e799a13f038\",\"pandascore_id\":null,\"yahoo_id\":27946,\"last_name\":\"Andrews\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Fort Campbell (KY)\",\"depth_chart_order\":null,\"stats_id\":564565,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'10\\\"\",\"search_full_name\":\"antonioandrews\",\"birth_date\":\"1992-08-17\",\"espn_id\":17105},\"2175\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030743\",\"first_name\":\"Bernard\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539882645715,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reedy\",\"depth_chart_position\":null,\"player_id\":\"2175\",\"birth_city\":null,\"fantasy_data_id\":16536,\"years_exp\":6,\"hashtag\":\"#BernardReedy-NFL-FA-18\",\"search_first_name\":\"bernard\",\"rotowire_id\":9733,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Bernard Reedy\",\"sportradar_id\":\"3a0c7a30-c924-4bfa-a844-14eb394969da\",\"pandascore_id\":null,\"yahoo_id\":28071,\"last_name\":\"Reedy\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":559281,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'8\\\"\",\"search_full_name\":\"bernardreedy\",\"birth_date\":\"1991-12-31\",\"espn_id\":17032},\"4058\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033870\",\"first_name\":\"Solomon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600880108258,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"4058\",\"birth_city\":null,\"fantasy_data_id\":18904,\"years_exp\":3,\"hashtag\":\"#SolomonThomas-NFL-SF-94\",\"search_first_name\":\"solomon\",\"rotowire_id\":11945,\"rotoworld_id\":12227,\"active\":true,\"search_rank\":1116,\"age\":25,\"full_name\":\"Solomon Thomas\",\"sportradar_id\":\"74473bcc-5bdb-4650-8549-8a8a12874cbf\",\"pandascore_id\":null,\"yahoo_id\":30116,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Coppell (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'2\\\"\",\"search_full_name\":\"solomonthomas\",\"birth_date\":\"1995-08-26\",\"espn_id\":3117258},\"5622\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534347303712,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilkerson\",\"depth_chart_position\":null,\"player_id\":\"5622\",\"birth_city\":null,\"fantasy_data_id\":20597,\"years_exp\":2,\"hashtag\":\"#JalenWilkerson-NFL-FA-64\",\"search_first_name\":\"jalen\",\"rotowire_id\":12605,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jalen Wilkerson\",\"sportradar_id\":\"f4540b61-802a-4d06-978e-d2cb30a63ee8\",\"pandascore_id\":null,\"yahoo_id\":31594,\"last_name\":\"Wilkerson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jalenwilkerson\",\"birth_date\":\"1995-12-21\",\"espn_id\":3921572},\"88\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024421\",\"first_name\":\"Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584547222392,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bethea\",\"depth_chart_position\":\"FS\",\"player_id\":\"88\",\"birth_city\":null,\"fantasy_data_id\":2379,\"years_exp\":14,\"hashtag\":\"#AntoineBethea-NFL-FA-41\",\"search_first_name\":\"antoine\",\"rotowire_id\":4972,\"rotoworld_id\":3998,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Antoine Bethea\",\"sportradar_id\":\"7a2612f3-ea18-444c-95ee-f1ca597d6fb0\",\"pandascore_id\":null,\"yahoo_id\":7956,\"last_name\":\"Bethea\",\"metadata\":null,\"college\":\"Howard\",\"high_school\":\"Denbigh (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"antoinebethea\",\"birth_date\":\"1984-07-27\",\"espn_id\":9793},\"2224\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031393\",\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1598590847627,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"2224\",\"birth_city\":null,\"fantasy_data_id\":16613,\"years_exp\":6,\"hashtag\":\"#MauriceAlexander-NFL-FA-41\",\"search_first_name\":\"maurice\",\"rotowire_id\":9642,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Maurice Alexander\",\"sportradar_id\":\"959852b0-ce24-4c89-abff-ded427cbfbdf\",\"pandascore_id\":null,\"yahoo_id\":27638,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Eureka (MO)\",\"depth_chart_order\":null,\"stats_id\":593247,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mauricealexander\",\"birth_date\":\"1991-02-16\",\"espn_id\":16937},\"6836\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603083313055,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"terrell\",\"depth_chart_position\":\"NB\",\"player_id\":\"6836\",\"birth_city\":null,\"fantasy_data_id\":22075,\"years_exp\":0,\"hashtag\":\"#AJTerrell-NFL-ATL-24\",\"search_first_name\":\"aj\",\"rotowire_id\":14526,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1906,\"age\":22,\"full_name\":\"A.J. Terrell\",\"sportradar_id\":\"1eae2610-be1d-4f53-82a2-28cf4a2db352\",\"pandascore_id\":null,\"yahoo_id\":32686,\"last_name\":\"Terrell\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Westlake (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ajterrell\",\"birth_date\":\"1998-09-23\",\"espn_id\":4239995},\"125\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026190\",\"first_name\":\"Calais\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606495804225,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"125\",\"birth_city\":null,\"fantasy_data_id\":3341,\"years_exp\":12,\"hashtag\":\"#CalaisCampbell-NFL-BAL-93\",\"search_first_name\":\"calais\",\"rotowire_id\":5587,\"rotoworld_id\":4628,\"active\":true,\"search_rank\":589,\"age\":34,\"full_name\":\"Calais Campbell\",\"sportradar_id\":\"0333b8f0-3aab-45aa-a684-6d402a309413\",\"pandascore_id\":null,\"yahoo_id\":8827,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Denver South (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'8\\\"\",\"search_full_name\":\"calaiscampbell\",\"birth_date\":\"1986-09-01\",\"espn_id\":11284},\"7443\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Teair\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604807411056,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tart\",\"depth_chart_position\":\"DT\",\"player_id\":\"7443\",\"birth_city\":null,\"fantasy_data_id\":22422,\"years_exp\":0,\"hashtag\":\"#TeairTart-NFL-TEN-93\",\"search_first_name\":\"teair\",\"rotowire_id\":14985,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2002,\"age\":23,\"full_name\":\"Teair Tart\",\"sportradar_id\":\"a78206af-6d78-4b4c-90e3-dc4bd62ac80b\",\"pandascore_id\":null,\"yahoo_id\":33347,\"last_name\":\"Tart\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Florida International\",\"high_school\":\"West Philadelphia (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"teairtart\",\"birth_date\":\"1997-02-28\",\"espn_id\":4374269},\"3536\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marcordes\",\"depth_chart_position\":null,\"player_id\":\"3536\",\"birth_city\":null,\"fantasy_data_id\":18303,\"years_exp\":0,\"hashtag\":\"#TylerMarcordes-NFL-FA-44\",\"search_first_name\":\"tyler\",\"rotowire_id\":11481,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyler Marcordes\",\"sportradar_id\":\"5499ffe5-b9a2-415e-a4d3-0d811240762a\",\"pandascore_id\":null,\"yahoo_id\":29523,\"last_name\":\"Marcordes\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tylermarcordes\",\"birth_date\":\"1992-10-09\",\"espn_id\":null},\"2391\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032187\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605384358554,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RB\",\"player_id\":\"2391\",\"birth_city\":null,\"fantasy_data_id\":16847,\"years_exp\":5,\"hashtag\":\"#DavidJohnson-NFL-HOU-31\",\"search_first_name\":\"david\",\"rotowire_id\":10148,\"rotoworld_id\":10404,\"active\":true,\"search_rank\":27,\"age\":28,\"full_name\":\"David Johnson\",\"sportradar_id\":\"2c8670ae-0c23-4d20-9d2b-f4c3e25f8938\",\"pandascore_id\":null,\"yahoo_id\":28474,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":\"Clinton (IA)\",\"depth_chart_order\":5,\"stats_id\":552409,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidjohnson\",\"birth_date\":\"1991-12-16\",\"espn_id\":2508176},\"990\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durham\",\"depth_chart_position\":null,\"player_id\":\"990\",\"birth_city\":null,\"fantasy_data_id\":13463,\"years_exp\":5,\"hashtag\":\"#KrisDurham-NFL-FA-17\",\"search_first_name\":\"kris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kris Durham\",\"sportradar_id\":\"1bedceda-238d-4943-ad4e-6ba8d1ae0449\",\"pandascore_id\":null,\"yahoo_id\":24894,\"last_name\":\"Durham\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":323197,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'6\\\"\",\"search_full_name\":\"krisdurham\",\"birth_date\":\"1988-03-17\",\"espn_id\":14095},\"357\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"357\",\"birth_city\":null,\"fantasy_data_id\":8445,\"years_exp\":3,\"hashtag\":\"#TomNelson-NFL-FA-26\",\"search_first_name\":\"tom\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tom Nelson\",\"sportradar_id\":\"c5c3a126-f0fd-4435-b0d2-b4e04ce69711\",\"pandascore_id\":null,\"yahoo_id\":9531,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tomnelson\",\"birth_date\":\"1986-12-04\",\"espn_id\":12928},\"4406\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lunt\",\"depth_chart_position\":null,\"player_id\":\"4406\",\"birth_city\":null,\"fantasy_data_id\":19266,\"years_exp\":1,\"hashtag\":\"#WesLunt-NFL-MIN-3\",\"search_first_name\":\"wes\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Wes Lunt\",\"sportradar_id\":\"fafe3f73-1208-409e-a7ff-e4c1c4e8cb80\",\"pandascore_id\":null,\"yahoo_id\":30436,\"last_name\":\"Lunt\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651289,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'4\\\"\",\"search_full_name\":\"weslunt\",\"birth_date\":\"1993-10-07\",\"espn_id\":2977737},\"1772\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"talley\",\"depth_chart_position\":null,\"player_id\":\"1772\",\"birth_city\":null,\"fantasy_data_id\":15836,\"years_exp\":1,\"hashtag\":\"#JTalley-NFL-FA-89\",\"search_first_name\":\"j\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"J Talley\",\"sportradar_id\":\"f672c538-b76c-4737-a62b-0c06a24d2347\",\"pandascore_id\":null,\"yahoo_id\":26403,\"last_name\":\"Talley\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":401205,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jtalley\",\"birth_date\":\"1989-06-09\",\"espn_id\":15518},\"6023\":{\"position\":\"CB\",\"injury_notes\":\"Marshall has a major injury and is expected to miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\" 00-0034979\",\"first_name\":\"Iman\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605223513831,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"6023\",\"birth_city\":null,\"fantasy_data_id\":20867,\"years_exp\":1,\"hashtag\":\"#ImanMarshall-NFL-BAL-37\",\"search_first_name\":\"iman\",\"rotowire_id\":13654,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Iman Marshall\",\"sportradar_id\":\"0b93712a-3c39-4d73-aca5-ca04ed05bd59\",\"pandascore_id\":null,\"yahoo_id\":31959,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":null,\"stats_id\":880035,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"imanmarshall\",\"birth_date\":\"1997-02-27\",\"espn_id\":3912545},\"1229\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaye\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"1229\",\"birth_city\":null,\"fantasy_data_id\":14519,\"years_exp\":8,\"hashtag\":\"#JayeHoward-NFL-FA-95\",\"search_first_name\":\"jaye\",\"rotowire_id\":8343,\"rotoworld_id\":7571,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jaye Howard\",\"sportradar_id\":\"011f2a35-7f2b-4e62-8fe9-4c46f4e23a50\",\"pandascore_id\":null,\"yahoo_id\":25824,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Jones (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jayehoward\",\"birth_date\":\"1988-12-20\",\"espn_id\":15005},\"4467\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033323\",\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4467\",\"birth_city\":null,\"fantasy_data_id\":19334,\"years_exp\":3,\"hashtag\":\"#DarrellWilliams-NFL-FA-76\",\"search_first_name\":\"darrell\",\"rotowire_id\":14176,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Darrell Williams\",\"sportradar_id\":\"e4c61c4e-a9ae-418d-9469-4add053e541b\",\"pandascore_id\":null,\"yahoo_id\":30567,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'6\\\"\",\"search_full_name\":\"darrellwilliams\",\"birth_date\":\"1993-03-24\",\"espn_id\":2573414},\"1303\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027925\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1588018261151,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"develin\",\"depth_chart_position\":\"RB\",\"player_id\":\"1303\",\"birth_city\":null,\"fantasy_data_id\":14783,\"years_exp\":10,\"hashtag\":\"#JamesDevelin-NFL-FA-0\",\"search_first_name\":\"james\",\"rotowire_id\":8588,\"rotoworld_id\":6449,\"active\":true,\"search_rank\":701,\"age\":32,\"full_name\":\"James Develin\",\"sportradar_id\":\"9d04accc-a404-406f-b93c-0878410e55a6\",\"pandascore_id\":null,\"yahoo_id\":24760,\"last_name\":\"Develin\",\"metadata\":null,\"college\":\"Brown\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":340282,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamesdevelin\",\"birth_date\":\"1988-07-23\",\"espn_id\":13940},\"6567\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035400\",\"first_name\":\"Keaton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1568912452294,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sutherland\",\"depth_chart_position\":\"RG\",\"player_id\":\"6567\",\"birth_city\":null,\"fantasy_data_id\":21222,\"years_exp\":1,\"hashtag\":\"#KeatonSutherland-NFL-CIN-65\",\"search_first_name\":\"keaton\",\"rotowire_id\":13720,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Keaton Sutherland\",\"sportradar_id\":\"be44e57a-7623-4b1c-a6fd-7a30795bb8ac\",\"pandascore_id\":null,\"yahoo_id\":32470,\"last_name\":\"Sutherland\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Marcus (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"keatonsutherland\",\"birth_date\":\"1997-02-12\",\"espn_id\":3895869},\"6560\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035431\",\"first_name\":\"Koda\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596321611080,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"6560\",\"birth_city\":null,\"fantasy_data_id\":21160,\"years_exp\":1,\"hashtag\":\"#KodaMartin-NFL-ARI-60\",\"search_first_name\":\"koda\",\"rotowire_id\":13963,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Koda Martin\",\"sportradar_id\":\"1dc22599-4ce9-49c2-bc8a-179a50e13cc1\",\"pandascore_id\":null,\"yahoo_id\":32546,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Manvel (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kodamartin\",\"birth_date\":\"1995-08-21\",\"espn_id\":3122145},\"3293\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032410\",\"first_name\":\"Rashard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605744643498,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"3293\",\"birth_city\":null,\"fantasy_data_id\":18054,\"years_exp\":4,\"hashtag\":\"#RashardRobinson-NFL-DAL-28\",\"search_first_name\":\"rashard\",\"rotowire_id\":11164,\"rotoworld_id\":11324,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Rashard Robinson\",\"sportradar_id\":\"f8c2e532-8de2-4c8b-85bf-ed2e24c3b273\",\"pandascore_id\":null,\"yahoo_id\":29367,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Ely (FL)\",\"depth_chart_order\":null,\"stats_id\":727758,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"177\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rashardrobinson\",\"birth_date\":\"1995-07-23\",\"espn_id\":3042718},\"2744\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farrand\",\"depth_chart_position\":null,\"player_id\":\"2744\",\"birth_city\":null,\"fantasy_data_id\":17212,\"years_exp\":0,\"hashtag\":\"#ColeFarrand-NFL-FA-50\",\"search_first_name\":\"cole\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cole Farrand\",\"sportradar_id\":\"01b03e39-b817-4c05-bedd-860f65bae9b8\",\"pandascore_id\":null,\"yahoo_id\":28872,\"last_name\":\"Farrand\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"colefarrand\",\"birth_date\":\"1991-07-29\",\"espn_id\":2577073},\"296\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022161\",\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1582317335434,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"suggs\",\"depth_chart_position\":\"LDE\",\"player_id\":\"296\",\"birth_city\":null,\"fantasy_data_id\":7383,\"years_exp\":17,\"hashtag\":\"#TerrellSuggs-NFL-FA-94\",\"search_first_name\":\"terrell\",\"rotowire_id\":3001,\"rotoworld_id\":2237,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Terrell Suggs\",\"sportradar_id\":\"acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29\",\"pandascore_id\":null,\"yahoo_id\":6346,\"last_name\":\"Suggs\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Hamilton (AZ)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"terrellsuggs\",\"birth_date\":\"1982-10-11\",\"espn_id\":4468},\"5513\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034583\",\"first_name\":\"Tracy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565536221573,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sprinkle\",\"depth_chart_position\":null,\"player_id\":\"5513\",\"birth_city\":null,\"fantasy_data_id\":20105,\"years_exp\":2,\"hashtag\":\"#TracySprinkle-NFL-FA-62\",\"search_first_name\":\"tracy\",\"rotowire_id\":13236,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tracy Sprinkle\",\"sportradar_id\":\"c497d10f-bb71-47b9-aabf-daaecb38b6dc\",\"pandascore_id\":null,\"yahoo_id\":31312,\"last_name\":\"Sprinkle\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tracysprinkle\",\"birth_date\":\"1995-04-18\",\"espn_id\":3040516},\"5018\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034346\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605287752373,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hernandez\",\"depth_chart_position\":\"LG\",\"player_id\":\"5018\",\"birth_city\":null,\"fantasy_data_id\":19860,\"years_exp\":2,\"hashtag\":\"#WillHernandez-NFL-NYG-71\",\"search_first_name\":\"will\",\"rotowire_id\":12804,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Will Hernandez\",\"sportradar_id\":\"3a39ab56-f188-4924-862d-c79ce67a3420\",\"pandascore_id\":null,\"yahoo_id\":31004,\"last_name\":\"Hernandez\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Chaparral (NV)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'2\\\"\",\"search_full_name\":\"willhernandez\",\"birth_date\":\"1995-09-02\",\"espn_id\":3042516},\"6088\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Olabisi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606170616227,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6088\",\"birth_city\":null,\"fantasy_data_id\":20836,\"years_exp\":1,\"hashtag\":\"#OlabisiJohnson-NFL-MIN-81\",\"search_first_name\":\"olabisi\",\"rotowire_id\":13867,\"rotoworld_id\":null,\"active\":true,\"search_rank\":268,\"age\":23,\"full_name\":\"Olabisi Johnson\",\"sportradar_id\":\"814e9529-e00f-4d02-925b-158ba1c6f840\",\"pandascore_id\":null,\"yahoo_id\":32079,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Bear Creek (CO)\",\"depth_chart_order\":1,\"stats_id\":867071,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"olabisijohnson\",\"birth_date\":\"1997-03-17\",\"espn_id\":3917067},\"3262\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032971\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606269955626,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":\"FS\",\"player_id\":\"3262\",\"birth_city\":null,\"fantasy_data_id\":18023,\"years_exp\":4,\"hashtag\":\"#JustinSimmons-NFL-DEN-31\",\"search_first_name\":\"justin\",\"rotowire_id\":11174,\"rotoworld_id\":11389,\"active\":true,\"search_rank\":997,\"age\":27,\"full_name\":\"Justin Simmons\",\"sportradar_id\":\"2df474e5-7117-4650-8d53-34b3fd0f1bbb\",\"pandascore_id\":null,\"yahoo_id\":29332,\"last_name\":\"Simmons\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Boston College\",\"high_school\":\"Martin County (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinsimmons\",\"birth_date\":\"1993-11-19\",\"espn_id\":2969860},\"4887\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gaine\",\"depth_chart_position\":null,\"player_id\":\"4887\",\"birth_city\":null,\"fantasy_data_id\":19785,\"years_exp\":0,\"hashtag\":\"#BrianGaine-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":13052,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brian Gaine\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gaine\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"briangaine\",\"birth_date\":null,\"espn_id\":null},\"4268\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033584\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565537768361,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"qualls\",\"depth_chart_position\":null,\"player_id\":\"4268\",\"birth_city\":null,\"fantasy_data_id\":19114,\"years_exp\":3,\"hashtag\":\"#ElijahQualls-NFL-FA-70\",\"search_first_name\":\"elijah\",\"rotowire_id\":11936,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Elijah Qualls\",\"sportradar_id\":\"9f5650c3-91a3-4552-a02e-fe4a7d13f262\",\"pandascore_id\":null,\"yahoo_id\":30327,\"last_name\":\"Qualls\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'1\\\"\",\"search_full_name\":\"elijahqualls\",\"birth_date\":\"1995-02-11\",\"espn_id\":3052175},\"1545\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030562\",\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606421759480,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"trufant\",\"depth_chart_position\":\"LCB\",\"player_id\":\"1545\",\"birth_city\":null,\"fantasy_data_id\":15183,\"years_exp\":7,\"hashtag\":\"#DesmondTrufant-NFL-DET-23\",\"search_first_name\":\"desmond\",\"rotowire_id\":8641,\"rotoworld_id\":8447,\"active\":true,\"search_rank\":736,\"age\":30,\"full_name\":\"Desmond Trufant\",\"sportradar_id\":\"f14e6b34-3c77-44e7-bc9c-6c691d3fe46b\",\"pandascore_id\":null,\"yahoo_id\":26645,\"last_name\":\"Trufant\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Wilson (WA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"desmondtrufant\",\"birth_date\":\"1990-09-10\",\"espn_id\":15812},\"3752\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seau\",\"depth_chart_position\":null,\"player_id\":\"3752\",\"birth_city\":null,\"fantasy_data_id\":18564,\"years_exp\":3,\"hashtag\":\"#IanSeau-NFL-FA-91\",\"search_first_name\":\"ian\",\"rotowire_id\":11579,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ian Seau\",\"sportradar_id\":\"3e3cc8ae-1e85-42da-b567-d2af4820a234\",\"pandascore_id\":null,\"yahoo_id\":29742,\"last_name\":\"Seau\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ianseau\",\"birth_date\":\"1992-12-04\",\"espn_id\":2577337},\"3326\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032787\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604192111316,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"toner\",\"depth_chart_position\":\"LT\",\"player_id\":\"3326\",\"birth_city\":null,\"fantasy_data_id\":18087,\"years_exp\":4,\"hashtag\":\"#ColeToner-NFL-LAC-64\",\"search_first_name\":\"cole\",\"rotowire_id\":10961,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cole Toner\",\"sportradar_id\":\"3e061410-a4e0-4e16-8043-2f63842410a6\",\"pandascore_id\":null,\"yahoo_id\":29404,\"last_name\":\"Toner\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"Roncalli (IN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'7\\\"\",\"search_full_name\":\"coletoner\",\"birth_date\":\"1994-03-13\",\"espn_id\":2969262},\"1225\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"LaMichael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"1225\",\"birth_city\":null,\"fantasy_data_id\":14501,\"years_exp\":8,\"hashtag\":\"#LaMichaelJames-NFL-FA-27\",\"search_first_name\":\"lamichael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"LaMichael James\",\"sportradar_id\":\"c9c6ff4b-952e-41d5-863a-5d5313afcfa6\",\"pandascore_id\":null,\"yahoo_id\":25771,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Liberty-Eylau (TX)\",\"depth_chart_order\":null,\"stats_id\":459198,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"lamichaeljames\",\"birth_date\":\"1989-10-22\",\"espn_id\":14890},\"5498\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1527124501982,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"putu\",\"depth_chart_position\":null,\"player_id\":\"5498\",\"birth_city\":null,\"fantasy_data_id\":20438,\"years_exp\":0,\"hashtag\":\"#JosephPutu-NFL-ATL-30\",\"search_first_name\":\"joseph\",\"rotowire_id\":13092,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joseph Putu\",\"sportradar_id\":\"b46f97e6-f722-4926-8bef-f0d8a87ddaca\",\"pandascore_id\":null,\"yahoo_id\":31358,\"last_name\":\"Putu\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"josephputu\",\"birth_date\":null,\"espn_id\":4043891},\"1590\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0030548\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1585950331788,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reid\",\"depth_chart_position\":\"SS\",\"player_id\":\"1590\",\"birth_city\":null,\"fantasy_data_id\":15242,\"years_exp\":7,\"hashtag\":\"#EricReid-NFL-FA-25\",\"search_first_name\":\"eric\",\"rotowire_id\":8685,\"rotoworld_id\":8453,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Eric Reid\",\"sportradar_id\":\"c615cf52-bc61-43ed-bb76-39695ca019c0\",\"pandascore_id\":null,\"yahoo_id\":26641,\"last_name\":\"Reid\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Dutchtown (LA)\",\"depth_chart_order\":1,\"stats_id\":540523,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ericreid\",\"birth_date\":\"1991-12-10\",\"espn_id\":15809},\"5316\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034436\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601775014552,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clapp\",\"depth_chart_position\":null,\"player_id\":\"5316\",\"birth_city\":null,\"fantasy_data_id\":20072,\"years_exp\":2,\"hashtag\":\"#WillClapp-NFL-NO-64\",\"search_first_name\":\"will\",\"rotowire_id\":12637,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Will Clapp\",\"sportradar_id\":\"5328d551-cf7d-4ae5-a8f4-1968651748f3\",\"pandascore_id\":null,\"yahoo_id\":31215,\"last_name\":\"Clapp\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Brother Martin (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'5\\\"\",\"search_full_name\":\"willclapp\",\"birth_date\":\"1995-12-10\",\"espn_id\":3115387},\"6132\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035708\",\"first_name\":\"Oshane\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606150813431,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ximines\",\"depth_chart_position\":null,\"player_id\":\"6132\",\"birth_city\":null,\"fantasy_data_id\":21000,\"years_exp\":1,\"hashtag\":\"#OshaneXimines-NFL-NYG-53\",\"search_first_name\":\"oshane\",\"rotowire_id\":13891,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1628,\"age\":23,\"full_name\":\"Oshane Ximines\",\"sportradar_id\":\"9898a791-ba28-4a68-beee-ad12f61af7db\",\"pandascore_id\":null,\"yahoo_id\":31927,\"last_name\":\"Ximines\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"Hertford County (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"oshaneximines\",\"birth_date\":\"1996-12-07\",\"espn_id\":3123233},\"7462\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693360170,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"guidry\",\"depth_chart_position\":null,\"player_id\":\"7462\",\"birth_city\":null,\"fantasy_data_id\":21954,\"years_exp\":0,\"hashtag\":\"#StephenGuidry-NFL-DAL-0\",\"search_first_name\":\"stephen\",\"rotowire_id\":14441,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Stephen Guidry\",\"sportradar_id\":\"e479ff14-6e5f-42a2-8b05-bca76c62111d\",\"pandascore_id\":null,\"yahoo_id\":33094,\"last_name\":\"Guidry\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Livonia (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'4\\\"\",\"search_full_name\":\"stephenguidry\",\"birth_date\":\"1997-03-25\",\"espn_id\":null},\"6890\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kamal\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604959528637,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"RILB\",\"player_id\":\"6890\",\"birth_city\":null,\"fantasy_data_id\":22007,\"years_exp\":0,\"hashtag\":\"#KamalMartin-NFL-GB-54\",\"search_first_name\":\"kamal\",\"rotowire_id\":14385,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Kamal Martin\",\"sportradar_id\":\"e1917291-e27c-4221-b62e-36b5d9df254c\",\"pandascore_id\":null,\"yahoo_id\":32845,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Burnsville (MN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kamalmartin\",\"birth_date\":\"1998-06-17\",\"espn_id\":4034781},\"6908\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"La'Mical\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606254054035,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"perine\",\"depth_chart_position\":\"RB\",\"player_id\":\"6908\",\"birth_city\":null,\"fantasy_data_id\":21797,\"years_exp\":0,\"hashtag\":\"#LaMicalPerine-NFL-NYJ-22\",\"search_first_name\":\"lamical\",\"rotowire_id\":14427,\"rotoworld_id\":null,\"active\":true,\"search_rank\":222,\"age\":22,\"full_name\":\"La'Mical Perine\",\"sportradar_id\":\"f86e291f-d678-463c-93cb-beedab9a309a\",\"pandascore_id\":null,\"yahoo_id\":32790,\"last_name\":\"Perine\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Florida\",\"high_school\":\"Theodore (AL)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lamicalperine\",\"birth_date\":\"1998-01-30\",\"espn_id\":4034952},\"6686\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"horn\",\"depth_chart_position\":null,\"player_id\":\"6686\",\"birth_city\":null,\"fantasy_data_id\":8079,\"years_exp\":0,\"hashtag\":\"#JoeHorn-NFL-BAL-87\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Horn\",\"sportradar_id\":\"1e2bbdff-9e08-438f-8506-cafe83066222\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Horn\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joehorn\",\"birth_date\":null,\"espn_id\":null},\"6551\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035157\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601505011681,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"LB\",\"player_id\":\"6551\",\"birth_city\":null,\"fantasy_data_id\":21379,\"years_exp\":1,\"hashtag\":\"#DariusHarris-NFL-KC-47\",\"search_first_name\":\"darius\",\"rotowire_id\":14180,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1727,\"age\":24,\"full_name\":\"Darius Harris\",\"sportradar_id\":\"fa443b6d-6d31-4030-9afa-b223f08b03d7\",\"pandascore_id\":null,\"yahoo_id\":32359,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Horn Lake (MS)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dariusharris\",\"birth_date\":\"1996-01-17\",\"espn_id\":3122906},\"897\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028027\",\"first_name\":\"Shareece\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1541190303234,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"897\",\"birth_city\":null,\"fantasy_data_id\":13104,\"years_exp\":9,\"hashtag\":\"#ShareeceWright-NFL-FA-43\",\"search_first_name\":\"shareece\",\"rotowire_id\":7517,\"rotoworld_id\":6606,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Shareece Wright\",\"sportradar_id\":\"221abfe3-f41c-4c1f-aa88-ca06fc57ed8e\",\"pandascore_id\":null,\"yahoo_id\":24876,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Colton (CA)\",\"depth_chart_order\":null,\"stats_id\":322844,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"shareecewright\",\"birth_date\":\"1987-04-08\",\"espn_id\":14010},\"6862\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Saahdiq\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605653425763,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"charles\",\"depth_chart_position\":null,\"player_id\":\"6862\",\"birth_city\":null,\"fantasy_data_id\":22008,\"years_exp\":0,\"hashtag\":\"#SaahdiqCharles-NFL-WAS-77\",\"search_first_name\":\"saahdiq\",\"rotowire_id\":14516,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Saahdiq Charles\",\"sportradar_id\":\"c8fc4151-7d5b-49d3-b269-e5b2b1246736\",\"pandascore_id\":null,\"yahoo_id\":32778,\"last_name\":\"Charles\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Madison-Ridgeland Academy (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"saahdiqcharles\",\"birth_date\":\"1999-07-26\",\"espn_id\":4242230},\"7104\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shannon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"7104\",\"birth_city\":null,\"fantasy_data_id\":22129,\"years_exp\":0,\"hashtag\":\"#ShannonBrooks-NFL-FA-0\",\"search_first_name\":\"shannon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Shannon Brooks\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shannonbrooks\",\"birth_date\":null,\"espn_id\":null},\"4910\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quincy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcduffie\",\"depth_chart_position\":null,\"player_id\":\"4910\",\"birth_city\":null,\"fantasy_data_id\":15554,\"years_exp\":1,\"hashtag\":\"#QuincyMcDuffie-NFL-DAL-14\",\"search_first_name\":\"quincy\",\"rotowire_id\":9033,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Quincy McDuffie\",\"sportradar_id\":\"3b6aa74d-d3a9-445f-8415-254d6cabe7a9\",\"pandascore_id\":null,\"yahoo_id\":26886,\"last_name\":\"McDuffie\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'9\\\"\",\"search_full_name\":\"quincymcduffie\",\"birth_date\":\"1990-01-01\",\"espn_id\":null},\"3243\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033091\",\"first_name\":\"KeiVarae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598803224837,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"russell\",\"depth_chart_position\":null,\"player_id\":\"3243\",\"birth_city\":null,\"fantasy_data_id\":18004,\"years_exp\":4,\"hashtag\":\"#KeiVaraeRussell-NFL-GB-34\",\"search_first_name\":\"keivarae\",\"rotowire_id\":11166,\"rotoworld_id\":11398,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"KeiVarae Russell\",\"sportradar_id\":\"771d19bc-f5e2-4a25-8553-4ad3c341c1c9\",\"pandascore_id\":null,\"yahoo_id\":29308,\"last_name\":\"Russell\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Mariner (WA)\",\"depth_chart_order\":null,\"stats_id\":697481,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"keivaraerussell\",\"birth_date\":\"1993-10-19\",\"espn_id\":2980150},\"4453\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033306\",\"first_name\":\"Victor\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602615948998,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bolden\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4453\",\"birth_city\":null,\"fantasy_data_id\":19317,\"years_exp\":3,\"hashtag\":\"#VictorBolden-NFL-DET-13\",\"search_first_name\":\"victor\",\"rotowire_id\":11846,\"rotoworld_id\":null,\"active\":true,\"search_rank\":315,\"age\":25,\"full_name\":\"Victor Bolden\",\"sportradar_id\":\"30641ad1-3511-48a4-a63a-95c88846b705\",\"pandascore_id\":null,\"yahoo_id\":30550,\"last_name\":\"Bolden\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Los Osos (CA)\",\"depth_chart_order\":3,\"stats_id\":749590,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'8\\\"\",\"search_full_name\":\"victorbolden\",\"birth_date\":\"1995-04-04\",\"espn_id\":3056476},\"2946\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Diandre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"2946\",\"birth_city\":null,\"fantasy_data_id\":17417,\"years_exp\":1,\"hashtag\":\"#DiandreCampbell-NFL-FA-83\",\"search_first_name\":\"diandre\",\"rotowire_id\":10770,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Diandre Campbell\",\"sportradar_id\":\"67603eaf-6084-4c4c-82b0-e23188ee4b92\",\"pandascore_id\":null,\"yahoo_id\":28795,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557870,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'2\\\"\",\"search_full_name\":\"diandrecampbell\",\"birth_date\":\"1991-12-19\",\"espn_id\":2509475},\"3869\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Torian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"LT\",\"player_id\":\"3869\",\"birth_city\":null,\"fantasy_data_id\":18691,\"years_exp\":0,\"hashtag\":\"#TorianWhite-NFL-FA-64\",\"search_first_name\":\"torian\",\"rotowire_id\":11525,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Torian White\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30001,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'5\\\"\",\"search_full_name\":\"torianwhite\",\"birth_date\":\"1993-04-23\",\"espn_id\":null},\"687\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ashlee\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"687\",\"birth_city\":null,\"fantasy_data_id\":11996,\"years_exp\":6,\"hashtag\":\"#AshleePalmer-NFL-FA-58\",\"search_first_name\":\"ashlee\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ashlee Palmer\",\"sportradar_id\":\"2efdcf4a-d789-4891-980f-63556788b045\",\"pandascore_id\":null,\"yahoo_id\":9536,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ashleepalmer\",\"birth_date\":\"1986-04-07\",\"espn_id\":13007},\"2761\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031688\",\"first_name\":\"Denzel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1579550705049,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rice\",\"depth_chart_position\":null,\"player_id\":\"2761\",\"birth_city\":null,\"fantasy_data_id\":17229,\"years_exp\":5,\"hashtag\":\"#DenzelRice-NFL-FA-37\",\"search_first_name\":\"denzel\",\"rotowire_id\":10685,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Denzel Rice\",\"sportradar_id\":\"3f05e230-38fb-4caa-b488-69e034ecdc03\",\"pandascore_id\":null,\"yahoo_id\":28656,\"last_name\":\"Rice\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":\"Jacket Integrated Academy (NC)\",\"depth_chart_order\":null,\"stats_id\":602314,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"denzelrice\",\"birth_date\":\"1993-03-31\",\"espn_id\":2565759},\"2444\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031945\",\"first_name\":\"Martrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1558405228864,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"spaight\",\"depth_chart_position\":null,\"player_id\":\"2444\",\"birth_city\":null,\"fantasy_data_id\":16901,\"years_exp\":5,\"hashtag\":\"#MartrellSpaight-NFL-FA-47\",\"search_first_name\":\"martrell\",\"rotowire_id\":10369,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Martrell Spaight\",\"sportradar_id\":\"5e576254-2f7e-4456-8bbb-26964d1e67b6\",\"pandascore_id\":null,\"yahoo_id\":28529,\"last_name\":\"Spaight\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"North Little Rock (AR)\",\"depth_chart_order\":null,\"stats_id\":744434,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'0\\\"\",\"search_full_name\":\"martrellspaight\",\"birth_date\":\"1993-08-05\",\"espn_id\":3046428},\"6676\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Juwon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"6676\",\"birth_city\":null,\"fantasy_data_id\":21575,\"years_exp\":1,\"hashtag\":\"#JuwonYoung-NFL-FA-48\",\"search_first_name\":\"juwon\",\"rotowire_id\":14292,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Juwon Young\",\"sportradar_id\":\"fc3f7cad-cf85-4b17-a798-2ddf0e4f95b0\",\"pandascore_id\":null,\"yahoo_id\":32580,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'2\\\"\",\"search_full_name\":\"juwonyoung\",\"birth_date\":\"1998-06-04\",\"espn_id\":3123063},\"6723\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035723\",\"first_name\":\"Vincent\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1566687059129,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"testaverde\",\"depth_chart_position\":\"QB\",\"player_id\":\"6723\",\"birth_city\":null,\"fantasy_data_id\":21646,\"years_exp\":1,\"hashtag\":\"#VincentTestaverde-NFL-FA-6\",\"search_first_name\":\"vincent\",\"rotowire_id\":14336,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Vincent Testaverde\",\"sportradar_id\":\"c1f2f510-3542-47be-96de-baa784b1f8d8\",\"pandascore_id\":null,\"yahoo_id\":32634,\"last_name\":\"Testaverde\",\"metadata\":null,\"college\":\"Albany (NY)\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":839041,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"vincenttestaverde\",\"birth_date\":\"1996-07-20\",\"espn_id\":3139487},\"4324\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033259\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1546394714657,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"griffey\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4324\",\"birth_city\":null,\"fantasy_data_id\":19177,\"years_exp\":3,\"hashtag\":\"#TreyGriffey-NFL-FA-15\",\"search_first_name\":\"trey\",\"rotowire_id\":12227,\"rotoworld_id\":12655,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Trey Griffey\",\"sportradar_id\":\"965e0b5e-47f2-4a99-95d8-e129f112a073\",\"pandascore_id\":null,\"yahoo_id\":30524,\"last_name\":\"Griffey\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":651005,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"treygriffey\",\"birth_date\":\"1994-01-19\",\"espn_id\":2971233},\"6332\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035130\",\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604520627571,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mabin\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6332\",\"birth_city\":null,\"fantasy_data_id\":21238,\"years_exp\":1,\"hashtag\":\"#DylanMabin-NFL-MIN-39\",\"search_first_name\":\"dylan\",\"rotowire_id\":14116,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dylan Mabin\",\"sportradar_id\":\"f4a5d12e-9169-4601-85e6-79bc99eab455\",\"pandascore_id\":null,\"yahoo_id\":32346,\"last_name\":\"Mabin\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":\"Nordonia (OH)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dylanmabin\",\"birth_date\":\"1997-09-14\",\"espn_id\":3909365},\"5690\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Al-Rasheed\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"benton\",\"depth_chart_position\":null,\"player_id\":\"5690\",\"birth_city\":null,\"fantasy_data_id\":20280,\"years_exp\":0,\"hashtag\":\"#AlRasheedBenton-NFL-DET-50\",\"search_first_name\":\"alrasheed\",\"rotowire_id\":13192,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Al-Rasheed Benton\",\"sportradar_id\":\"69296b92-561f-4b57-b1db-c97f1431b0e8\",\"pandascore_id\":null,\"yahoo_id\":31629,\"last_name\":\"Benton\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alrasheedbenton\",\"birth_date\":null,\"espn_id\":3052687},\"6435\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034946\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596410418981,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aston\",\"depth_chart_position\":\"FB\",\"player_id\":\"6435\",\"birth_city\":null,\"fantasy_data_id\":21365,\"years_exp\":1,\"hashtag\":\"#GeorgeAston-NFL-FA-0\",\"search_first_name\":\"george\",\"rotowire_id\":14079,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"George Aston\",\"sportradar_id\":\"e046beb7-3d9f-4f30-9b33-2b61592461ff\",\"pandascore_id\":null,\"yahoo_id\":32216,\"last_name\":\"Aston\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":840354,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"georgeaston\",\"birth_date\":\"1996-02-01\",\"espn_id\":3136308},\"6045\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035589\",\"first_name\":\"Gary\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599324956724,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6045\",\"birth_city\":null,\"fantasy_data_id\":20829,\"years_exp\":1,\"hashtag\":\"#GaryJennings-NFL-FA-0\",\"search_first_name\":\"gary\",\"rotowire_id\":13635,\"rotoworld_id\":14163,\"active\":true,\"search_rank\":1557,\"age\":23,\"full_name\":\"Gary Jennings\",\"sportradar_id\":\"49f9f357-e90a-45b7-9f55-fe451125149f\",\"pandascore_id\":null,\"yahoo_id\":31952,\"last_name\":\"Jennings\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":13,\"stats_id\":877654,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'1\\\"\",\"search_full_name\":\"garyjennings\",\"birth_date\":\"1997-03-07\",\"espn_id\":3916071},\"6684\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035576\",\"first_name\":\"Ladarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wiley\",\"depth_chart_position\":null,\"player_id\":\"6684\",\"birth_city\":null,\"fantasy_data_id\":21583,\"years_exp\":1,\"hashtag\":\"#LadariusWiley-NFL-FA-30\",\"search_first_name\":\"ladarius\",\"rotowire_id\":13902,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ladarius Wiley\",\"sportradar_id\":\"de6f20c5-7028-4ecc-82e8-6516ab1c470a\",\"pandascore_id\":null,\"yahoo_id\":32591,\"last_name\":\"Wiley\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ladariuswiley\",\"birth_date\":\"1996-06-03\",\"espn_id\":3122173},\"5116\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034433\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1598915729871,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bawden\",\"depth_chart_position\":\"RB\",\"player_id\":\"5116\",\"birth_city\":null,\"fantasy_data_id\":20018,\"years_exp\":2,\"hashtag\":\"#NickBawden-NFL-DET-46\",\"search_first_name\":\"nick\",\"rotowire_id\":12828,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick Bawden\",\"sportradar_id\":\"452520cc-4921-47f1-8d6a-55f7cee8bb0c\",\"pandascore_id\":null,\"yahoo_id\":31207,\"last_name\":\"Bawden\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Los Gatos (CA)\",\"depth_chart_order\":4,\"stats_id\":823811,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nickbawden\",\"birth_date\":\"1996-06-22\",\"espn_id\":3125232},\"4316\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sae\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525816801406,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tautu\",\"depth_chart_position\":null,\"player_id\":\"4316\",\"birth_city\":null,\"fantasy_data_id\":19169,\"years_exp\":2,\"hashtag\":\"#SaeTautu-NFL-FA-45\",\"search_first_name\":\"sae\",\"rotowire_id\":12322,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Sae Tautu\",\"sportradar_id\":\"2efc81a9-a30a-4f35-ae91-74ae7f56f180\",\"pandascore_id\":null,\"yahoo_id\":30417,\"last_name\":\"Tautu\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"saetautu\",\"birth_date\":\"1992-06-30\",\"espn_id\":2513231},\"6449\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035038\",\"first_name\":\"Dorian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6449\",\"birth_city\":null,\"fantasy_data_id\":21276,\"years_exp\":1,\"hashtag\":\"#DorianBaker-NFL-FA-19\",\"search_first_name\":\"dorian\",\"rotowire_id\":14135,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dorian Baker\",\"sportradar_id\":\"61d0fba1-9bb8-465c-9517-3b66f423fc96\",\"pandascore_id\":null,\"yahoo_id\":32271,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":835381,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dorianbaker\",\"birth_date\":\"1996-06-01\",\"espn_id\":3126325},\"5524\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zeke\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":null,\"player_id\":\"5524\",\"birth_city\":null,\"fantasy_data_id\":20560,\"years_exp\":0,\"hashtag\":\"#ZekeTurner-NFL-ARI-0\",\"search_first_name\":\"zeke\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Zeke Turner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31324,\"last_name\":\"Turner\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"zeketurner\",\"birth_date\":null,\"espn_id\":null},\"3435\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farris\",\"depth_chart_position\":null,\"player_id\":\"3435\",\"birth_city\":null,\"fantasy_data_id\":18199,\"years_exp\":3,\"hashtag\":\"#ChaseFarris-NFL-FA-66\",\"search_first_name\":\"chase\",\"rotowire_id\":11332,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chase Farris\",\"sportradar_id\":\"3c98bde8-2cd7-48ba-9981-5b9a3d55b4cd\",\"pandascore_id\":null,\"yahoo_id\":29777,\"last_name\":\"Farris\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chasefarris\",\"birth_date\":\"1993-04-08\",\"espn_id\":2576381},\"3546\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032521\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605734131102,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hilton\",\"depth_chart_position\":\"NB\",\"player_id\":\"3546\",\"birth_city\":null,\"fantasy_data_id\":18316,\"years_exp\":4,\"hashtag\":\"#MikeHilton-NFL-PIT-28\",\"search_first_name\":\"mike\",\"rotowire_id\":11473,\"rotoworld_id\":11676,\"active\":true,\"search_rank\":1062,\"age\":26,\"full_name\":\"Mike Hilton\",\"sportradar_id\":\"972f93d7-158b-4464-b119-952f298cea52\",\"pandascore_id\":null,\"yahoo_id\":29510,\"last_name\":\"Hilton\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Mississippi\",\"high_school\":\"Sandy Creek (GA)\",\"depth_chart_order\":1,\"stats_id\":694666,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'9\\\"\",\"search_full_name\":\"mikehilton\",\"birth_date\":\"1994-03-09\",\"espn_id\":2980383},\"3007\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Avius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"capers\",\"depth_chart_position\":null,\"player_id\":\"3007\",\"birth_city\":null,\"fantasy_data_id\":17549,\"years_exp\":1,\"hashtag\":\"#AviusCapers-NFL-FA-16\",\"search_first_name\":\"avius\",\"rotowire_id\":11334,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Avius Capers\",\"sportradar_id\":\"3370f2cc-0eac-4b3a-9a0b-2e85577e109f\",\"pandascore_id\":null,\"yahoo_id\":29165,\"last_name\":\"Capers\",\"metadata\":null,\"college\":\"Johnson C. Smith\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":563865,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'9\\\"\",\"search_full_name\":\"aviuscapers\",\"birth_date\":\"1992-05-30\",\"espn_id\":2517976},\"612\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hardy\",\"depth_chart_position\":null,\"player_id\":\"612\",\"birth_city\":null,\"fantasy_data_id\":11455,\"years_exp\":10,\"hashtag\":\"#GregHardy-NFL-FA-76\",\"search_first_name\":\"greg\",\"rotowire_id\":6573,\"rotoworld_id\":5187,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Greg Hardy\",\"sportradar_id\":\"c9caab59-19b9-49f0-b46d-571b28bd1a4a\",\"pandascore_id\":null,\"yahoo_id\":24151,\"last_name\":\"Hardy\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Briarcrest (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'5\\\"\",\"search_full_name\":\"greghardy\",\"birth_date\":\"1988-07-28\",\"espn_id\":13377},\"5731\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034691\",\"first_name\":\"Ruben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566691258941,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holcomb\",\"depth_chart_position\":null,\"player_id\":\"5731\",\"birth_city\":null,\"fantasy_data_id\":20615,\"years_exp\":2,\"hashtag\":\"#RubenHolcomb-NFL-FA-70\",\"search_first_name\":\"ruben\",\"rotowire_id\":13204,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ruben Holcomb\",\"sportradar_id\":\"cb006e99-2754-4bd5-a521-6d0cf473b233\",\"pandascore_id\":null,\"yahoo_id\":31691,\"last_name\":\"Holcomb\",\"metadata\":null,\"college\":\"Indianapolis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rubenholcomb\",\"birth_date\":\"1994-11-25\",\"espn_id\":3069758},\"2887\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031514\",\"first_name\":\"Quan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535747127291,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bray\",\"depth_chart_position\":null,\"player_id\":\"2887\",\"birth_city\":null,\"fantasy_data_id\":17355,\"years_exp\":5,\"hashtag\":\"#QuanBray-NFL-FA-11\",\"search_first_name\":\"quan\",\"rotowire_id\":10634,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Quan Bray\",\"sportradar_id\":\"bc73b5ee-bfeb-41c1-bcdd-64762af617af\",\"pandascore_id\":null,\"yahoo_id\":28740,\"last_name\":\"Bray\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Troup County (GA)\",\"depth_chart_order\":null,\"stats_id\":593289,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"quanbray\",\"birth_date\":\"1993-04-28\",\"espn_id\":2574545},\"6106\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taiwan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"deal\",\"depth_chart_position\":null,\"player_id\":\"6106\",\"birth_city\":null,\"fantasy_data_id\":21063,\"years_exp\":0,\"hashtag\":\"#TaiwanDeal-NFL-FA-0\",\"search_first_name\":\"taiwan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Taiwan Deal\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Deal\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"taiwandeal\",\"birth_date\":null,\"espn_id\":null},\"924\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1507763341366,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"paea\",\"depth_chart_position\":null,\"player_id\":\"924\",\"birth_city\":null,\"fantasy_data_id\":13202,\"years_exp\":9,\"hashtag\":\"#StephenPaea-NFL-FA-55\",\"search_first_name\":\"stephen\",\"rotowire_id\":7331,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Stephen Paea\",\"sportradar_id\":\"92608d14-9444-4ee0-bf1a-a8905e5d4475\",\"pandascore_id\":null,\"yahoo_id\":24840,\"last_name\":\"Paea\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Timpview (UT)\",\"depth_chart_order\":null,\"stats_id\":451212,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'1\\\"\",\"search_full_name\":\"stephenpaea\",\"birth_date\":\"1988-05-11\",\"espn_id\":14049},\"3969\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033856\",\"first_name\":\"Leonard\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606515327236,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fournette\",\"depth_chart_position\":\"RB\",\"player_id\":\"3969\",\"birth_city\":null,\"fantasy_data_id\":18803,\"years_exp\":3,\"hashtag\":\"#LeonardFournette-NFL-TB-28\",\"search_first_name\":\"leonard\",\"rotowire_id\":11687,\"rotoworld_id\":12132,\"active\":true,\"search_rank\":45,\"age\":25,\"full_name\":\"Leonard Fournette\",\"sportradar_id\":\"7f46a7be-286e-4bfe-8778-d03dbe600ce9\",\"pandascore_id\":null,\"yahoo_id\":30117,\"last_name\":\"Fournette\",\"metadata\":{\"injury_override_regular_2020_5\":\"Out\"},\"college\":\"Louisiana State\",\"high_school\":\"St. Augustine (LA)\",\"depth_chart_order\":2,\"stats_id\":822013,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'0\\\"\",\"search_full_name\":\"leonardfournette\",\"birth_date\":\"1995-01-18\",\"espn_id\":3115364},\"5842\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035692\",\"first_name\":\"Clelin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606429860134,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ferrell\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5842\",\"birth_city\":null,\"fantasy_data_id\":20757,\"years_exp\":1,\"hashtag\":\"#ClelinFerrell-NFL-LV-96\",\"search_first_name\":\"clelin\",\"rotowire_id\":13649,\"rotoworld_id\":13984,\"active\":true,\"search_rank\":1530,\"age\":23,\"full_name\":\"Clelin Ferrell\",\"sportradar_id\":\"108759bf-8c78-41c6-a409-b87c63985c21\",\"pandascore_id\":null,\"yahoo_id\":31836,\"last_name\":\"Ferrell\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Benedictine (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"clelinferrell\",\"birth_date\":\"1997-05-17\",\"espn_id\":3728258},\"6753\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605569420820,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gore\",\"depth_chart_position\":\"RB\",\"player_id\":\"6753\",\"birth_city\":null,\"fantasy_data_id\":21634,\"years_exp\":1,\"hashtag\":\"#DerrickGore-NFL-LAC-35\",\"search_first_name\":\"derrick\",\"rotowire_id\":14334,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrick Gore\",\"sportradar_id\":\"21b65d27-e517-4301-8a08-584f73226de8\",\"pandascore_id\":null,\"yahoo_id\":32630,\"last_name\":\"Gore\",\"metadata\":null,\"college\":\"Louisiana-Monroe\",\"high_school\":\"Nottingham (NY)\",\"depth_chart_order\":7,\"stats_id\":884044,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"derrickgore\",\"birth_date\":\"1994-12-13\",\"espn_id\":3925346},\"6495\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035096\",\"first_name\":\"Jay-Tee\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tiuli\",\"depth_chart_position\":null,\"player_id\":\"6495\",\"birth_city\":null,\"fantasy_data_id\":21495,\"years_exp\":1,\"hashtag\":\"#JayTeeTiuli-NFL-FA-0\",\"search_first_name\":\"jaytee\",\"rotowire_id\":14101,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jay-Tee Tiuli\",\"sportradar_id\":\"83f3cd34-466b-4d30-acfe-42523e6f5764\",\"pandascore_id\":null,\"yahoo_id\":32334,\"last_name\":\"Tiuli\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jayteetiuli\",\"birth_date\":\"1996-01-14\",\"espn_id\":3119315},\"3455\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"3455\",\"birth_city\":null,\"fantasy_data_id\":18219,\"years_exp\":0,\"hashtag\":\"#GeraldDixon-NFL-FA-75\",\"search_first_name\":\"gerald\",\"rotowire_id\":11637,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Gerald Dixon\",\"sportradar_id\":\"1df61ee2-cdd9-42a5-a1b2-4dff77ba4201\",\"pandascore_id\":null,\"yahoo_id\":29641,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'2\\\"\",\"search_full_name\":\"geralddixon\",\"birth_date\":\"1993-08-07\",\"espn_id\":null},\"2437\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032132\",\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1585089044759,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"garcia\",\"depth_chart_position\":\"LG\",\"player_id\":\"2437\",\"birth_city\":null,\"fantasy_data_id\":16894,\"years_exp\":5,\"hashtag\":\"#MaxGarcia-NFL-ARI-73\",\"search_first_name\":\"max\",\"rotowire_id\":10279,\"rotoworld_id\":10515,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Max Garcia\",\"sportradar_id\":\"f19b687d-b81f-4104-9151-92e2af7d234d\",\"pandascore_id\":null,\"yahoo_id\":28521,\"last_name\":\"Garcia\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"maxgarcia\",\"birth_date\":\"1991-11-09\",\"espn_id\":2512538},\"526\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arthur\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1510445101422,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"526\",\"birth_city\":null,\"fantasy_data_id\":11011,\"years_exp\":9,\"hashtag\":\"#ArthurJones-NFL-FA-96\",\"search_first_name\":\"arthur\",\"rotowire_id\":6588,\"rotoworld_id\":5828,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Arthur Jones\",\"sportradar_id\":\"b2d0a246-20e5-4ca7-adf2-7d223921c169\",\"pandascore_id\":null,\"yahoo_id\":24133,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":298837,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"arthurjones\",\"birth_date\":\"1986-06-03\",\"espn_id\":13394},\"4472\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033426\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1539882667086,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gardner\",\"depth_chart_position\":null,\"player_id\":\"4472\",\"birth_city\":null,\"fantasy_data_id\":19340,\"years_exp\":3,\"hashtag\":\"#ColeGardner-NFL-FA-72\",\"search_first_name\":\"cole\",\"rotowire_id\":12381,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cole Gardner\",\"sportradar_id\":\"e5f9d5a7-f2f7-48c5-8abf-a72b8400dbcd\",\"pandascore_id\":null,\"yahoo_id\":30473,\"last_name\":\"Gardner\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"colegardner\",\"birth_date\":\"1993-11-11\",\"espn_id\":2972575},\"2802\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"acosta\",\"depth_chart_position\":null,\"player_id\":\"2802\",\"birth_city\":null,\"fantasy_data_id\":17270,\"years_exp\":0,\"hashtag\":\"#CoreyAcosta-NFL-FA-4\",\"search_first_name\":\"corey\",\"rotowire_id\":10798,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Corey Acosta\",\"sportradar_id\":\"52ccee47-cb23-4148-82a5-3abeb4c64852\",\"pandascore_id\":null,\"yahoo_id\":29153,\"last_name\":\"Acosta\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"coreyacosta\",\"birth_date\":\"1991-07-12\",\"espn_id\":2515713},\"1623\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030317\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554412805620,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cromartie\",\"depth_chart_position\":null,\"player_id\":\"1623\",\"birth_city\":null,\"fantasy_data_id\":15311,\"years_exp\":7,\"hashtag\":\"#MarcusCromartie-NFL-FA-46\",\"search_first_name\":\"marcus\",\"rotowire_id\":9228,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Marcus Cromartie\",\"sportradar_id\":\"cb2a824c-bdaa-4848-9f56-b5b37bf419e3\",\"pandascore_id\":null,\"yahoo_id\":26922,\"last_name\":\"Cromartie\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Timberview (TX)\",\"depth_chart_order\":null,\"stats_id\":462234,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcuscromartie\",\"birth_date\":\"1990-12-03\",\"espn_id\":16054},\"4932\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"4932\",\"birth_city\":null,\"fantasy_data_id\":19484,\"years_exp\":1,\"hashtag\":\"#NickJames-NFL-DET-0\",\"search_first_name\":\"nick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick James\",\"sportradar_id\":\"dcb885e0-9281-4ff7-b379-b89349812f3d\",\"pandascore_id\":null,\"yahoo_id\":30769,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickjames\",\"birth_date\":\"1993-07-24\",\"espn_id\":null},\"2822\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032009\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606508727549,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"humphries\",\"depth_chart_position\":\"SWR\",\"player_id\":\"2822\",\"birth_city\":null,\"fantasy_data_id\":17290,\"years_exp\":5,\"hashtag\":\"#AdamHumphries-NFL-TEN-10\",\"search_first_name\":\"adam\",\"rotowire_id\":10680,\"rotoworld_id\":11072,\"active\":true,\"search_rank\":193,\"age\":27,\"full_name\":\"Adam Humphries\",\"sportradar_id\":\"d6d41a89-a8af-48b9-bf75-561de99a1d87\",\"pandascore_id\":null,\"yahoo_id\":29070,\"last_name\":\"Humphries\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Clemson\",\"high_school\":\"Dorman (SC)\",\"depth_chart_order\":2,\"stats_id\":602096,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"adamhumphries\",\"birth_date\":\"1993-06-24\",\"espn_id\":2576491},\"3230\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032939\",\"first_name\":\"Vonn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606195550521,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":\"SS\",\"player_id\":\"3230\",\"birth_city\":null,\"fantasy_data_id\":17991,\"years_exp\":4,\"hashtag\":\"#VonnBell-NFL-CIN-24\",\"search_first_name\":\"vonn\",\"rotowire_id\":10905,\"rotoworld_id\":null,\"active\":true,\"search_rank\":979,\"age\":25,\"full_name\":\"Vonn Bell\",\"sportradar_id\":\"656b68e1-651d-4596-8f6d-c97b4e4d9536\",\"pandascore_id\":null,\"yahoo_id\":29295,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Ridgeland (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"vonnbell\",\"birth_date\":\"1994-12-12\",\"espn_id\":3051388},\"6357\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035194\",\"first_name\":\"Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566707457860,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bane\",\"depth_chart_position\":null,\"player_id\":\"6357\",\"birth_city\":null,\"fantasy_data_id\":21289,\"years_exp\":1,\"hashtag\":\"#ShawnBane-NFL-FA-16\",\"search_first_name\":\"shawn\",\"rotowire_id\":13950,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shawn Bane\",\"sportradar_id\":\"e6c12059-c658-45ab-9540-54957447c6e1\",\"pandascore_id\":null,\"yahoo_id\":32109,\"last_name\":\"Bane\",\"metadata\":null,\"college\":\"NW Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1165726,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"165\",\"height\":\"5'11\\\"\",\"search_full_name\":\"shawnbane\",\"birth_date\":\"1995-06-09\",\"espn_id\":3957156},\"5500\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034143\",\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jarvis\",\"depth_chart_position\":null,\"player_id\":\"5500\",\"birth_city\":null,\"fantasy_data_id\":20442,\"years_exp\":0,\"hashtag\":\"#RichardJarvis-NFL-FA-0\",\"search_first_name\":\"richard\",\"rotowire_id\":13091,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Richard Jarvis\",\"sportradar_id\":\"6191922d-218f-4f86-a3c2-7216810bccb8\",\"pandascore_id\":null,\"yahoo_id\":31357,\"last_name\":\"Jarvis\",\"metadata\":null,\"college\":\"Brown\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"richardjarvis\",\"birth_date\":\"1995-04-20\",\"espn_id\":null},\"1832\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031433\",\"first_name\":\"Billy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600617006189,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":\"RT\",\"player_id\":\"1832\",\"birth_city\":null,\"fantasy_data_id\":16029,\"years_exp\":6,\"hashtag\":\"#BillyTurner-NFL-GB-77\",\"search_first_name\":\"billy\",\"rotowire_id\":9696,\"rotoworld_id\":9564,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Billy Turner\",\"sportradar_id\":\"7788ca8f-88c8-447f-9110-3cfd3ca5efd8\",\"pandascore_id\":null,\"yahoo_id\":27595,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Mounds View (MN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"billyturner\",\"birth_date\":\"1991-10-17\",\"espn_id\":16759},\"6525\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035093\",\"first_name\":\"Demetrius\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1590703263630,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knox\",\"depth_chart_position\":null,\"player_id\":\"6525\",\"birth_city\":null,\"fantasy_data_id\":21339,\"years_exp\":1,\"hashtag\":\"#DemetriusKnox-NFL-FA-0\",\"search_first_name\":\"demetrius\",\"rotowire_id\":13952,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Demetrius Knox\",\"sportradar_id\":\"e4a4febc-ebb2-492e-a3d5-ef5bdd2f9b1e\",\"pandascore_id\":null,\"yahoo_id\":32335,\"last_name\":\"Knox\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'4\\\"\",\"search_full_name\":\"demetriusknox\",\"birth_date\":\"1995-10-23\",\"espn_id\":3121419},\"2105\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031127\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1582167030920,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dunn\",\"depth_chart_position\":\"NT\",\"player_id\":\"2105\",\"birth_city\":null,\"fantasy_data_id\":16429,\"years_exp\":6,\"hashtag\":\"#BrandonDunn-NFL-HOU-92\",\"search_first_name\":\"brandon\",\"rotowire_id\":9817,\"rotoworld_id\":null,\"active\":true,\"search_rank\":821,\"age\":28,\"full_name\":\"Brandon Dunn\",\"sportradar_id\":\"29626ee6-b528-4618-a4a5-771a5b0ff54d\",\"pandascore_id\":null,\"yahoo_id\":27835,\"last_name\":\"Dunn\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Pleasure Ridge Park (KY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandondunn\",\"birth_date\":\"1992-09-05\",\"espn_id\":17061},\"NYJ\":{\"team\":\"NYJ\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"NYJ\",\"last_name\":\"Jets\",\"injury_status\":null,\"first_name\":\"New York\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"5940\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035608\",\"first_name\":\"Landis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1578441643207,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"durham\",\"depth_chart_position\":null,\"player_id\":\"5940\",\"birth_city\":null,\"fantasy_data_id\":21075,\"years_exp\":1,\"hashtag\":\"#LandisDurham-NFL-FA-96\",\"search_first_name\":\"landis\",\"rotowire_id\":13772,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Landis Durham\",\"sportradar_id\":\"a3c8276d-e6f7-4fa0-bffd-a087f225ef54\",\"pandascore_id\":null,\"yahoo_id\":32131,\"last_name\":\"Durham\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"landisdurham\",\"birth_date\":\"1997-08-31\",\"espn_id\":3917329},\"1678\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Uzoma\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nwachukwu\",\"depth_chart_position\":null,\"player_id\":\"1678\",\"birth_city\":null,\"fantasy_data_id\":15491,\"years_exp\":6,\"hashtag\":\"#UzomaNwachukwu-NFL-FA-16\",\"search_first_name\":\"uzoma\",\"rotowire_id\":8854,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Uzoma Nwachukwu\",\"sportradar_id\":\"e69b48f2-eb68-4309-aebc-7c82c4098654\",\"pandascore_id\":null,\"yahoo_id\":27319,\"last_name\":\"Nwachukwu\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":511402,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"uzomanwachukwu\",\"birth_date\":\"1990-12-15\",\"espn_id\":16502},\"6735\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029981\",\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sinkfield\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6735\",\"birth_city\":null,\"fantasy_data_id\":15398,\"years_exp\":7,\"hashtag\":\"#TerrellSinkfield-NFL-FA-24\",\"search_first_name\":\"terrell\",\"rotowire_id\":10853,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Terrell Sinkfield\",\"sportradar_id\":\"db2af70c-d9ae-431c-875a-46a5fef39021\",\"pandascore_id\":null,\"yahoo_id\":27254,\"last_name\":\"Sinkfield\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":516170,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"terrellsinkfield\",\"birth_date\":\"1990-12-10\",\"espn_id\":16414},\"2696\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031919\",\"first_name\":\"Kurtis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535929892198,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"drummond\",\"depth_chart_position\":null,\"player_id\":\"2696\",\"birth_city\":null,\"fantasy_data_id\":17164,\"years_exp\":5,\"hashtag\":\"#KurtisDrummond-NFL-FA-23\",\"search_first_name\":\"kurtis\",\"rotowire_id\":10391,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kurtis Drummond\",\"sportradar_id\":\"70f64838-b12f-4201-859f-382bfedbf73d\",\"pandascore_id\":null,\"yahoo_id\":28889,\"last_name\":\"Drummond\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Hubbard (OH)\",\"depth_chart_order\":null,\"stats_id\":557365,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kurtisdrummond\",\"birth_date\":\"1992-01-29\",\"espn_id\":2515405},\"3465\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032661\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1595546747920,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"braunecker\",\"depth_chart_position\":\"TE\",\"player_id\":\"3465\",\"birth_city\":null,\"fantasy_data_id\":18229,\"years_exp\":4,\"hashtag\":\"#BenBraunecker-NFL-FA-0\",\"search_first_name\":\"ben\",\"rotowire_id\":10917,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1054,\"age\":26,\"full_name\":\"Ben Braunecker\",\"sportradar_id\":\"d76c8e95-7c6e-4def-9fd9-d813df18b3b8\",\"pandascore_id\":null,\"yahoo_id\":29913,\"last_name\":\"Braunecker\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":679453,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'3\\\"\",\"search_full_name\":\"benbraunecker\",\"birth_date\":\"1994-02-07\",\"espn_id\":2969241},\"1779\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"1779\",\"birth_city\":null,\"fantasy_data_id\":15868,\"years_exp\":6,\"hashtag\":\"#MitchellWhite-NFL-FA-41\",\"search_first_name\":\"mitchell\",\"rotowire_id\":8989,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Mitchell White\",\"sportradar_id\":\"ac4c6eb8-b047-43c0-86a1-59da1b8d6ba4\",\"pandascore_id\":null,\"yahoo_id\":27408,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mitchellwhite\",\"birth_date\":\"1990-03-30\",\"espn_id\":16541},\"894\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027956\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605613222525,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"liuget\",\"depth_chart_position\":null,\"player_id\":\"894\",\"birth_city\":null,\"fantasy_data_id\":13091,\"years_exp\":9,\"hashtag\":\"#CoreyLiuget-NFL-HOU-93\",\"search_first_name\":\"corey\",\"rotowire_id\":7463,\"rotoworld_id\":6564,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Corey Liuget\",\"sportradar_id\":\"ac540ab1-95e1-48a2-ac93-6c0037c5a026\",\"pandascore_id\":null,\"yahoo_id\":24805,\"last_name\":\"Liuget\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Hialeah (FL)\",\"depth_chart_order\":null,\"stats_id\":464253,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"coreyliuget\",\"birth_date\":\"1990-03-18\",\"espn_id\":13989},\"6459\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035114\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1589321104807,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"modster\",\"depth_chart_position\":null,\"player_id\":\"6459\",\"birth_city\":null,\"fantasy_data_id\":21480,\"years_exp\":1,\"hashtag\":\"#SeanModster-NFL-FA-0\",\"search_first_name\":\"sean\",\"rotowire_id\":14118,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Sean Modster\",\"sportradar_id\":\"bf3ad199-bdc5-4ec9-9446-ebd50ef69dc9\",\"pandascore_id\":null,\"yahoo_id\":32301,\"last_name\":\"Modster\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":837596,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'11\\\"\",\"search_full_name\":\"seanmodster\",\"birth_date\":\"1995-11-13\",\"espn_id\":3127588},\"2305\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029008\",\"first_name\":\"Charley\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1605833714496,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hughlett\",\"depth_chart_position\":null,\"player_id\":\"2305\",\"birth_city\":null,\"fantasy_data_id\":16760,\"years_exp\":8,\"hashtag\":\"#CharleyHughlett-NFL-CLE-47\",\"search_first_name\":\"charley\",\"rotowire_id\":10024,\"rotoworld_id\":7802,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Charley Hughlett\",\"sportradar_id\":\"43a74ae6-ddb7-405e-8ccd-69d14da6c374\",\"pandascore_id\":null,\"yahoo_id\":26068,\"last_name\":\"Hughlett\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Hillsborough (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'4\\\"\",\"search_full_name\":\"charleyhughlett\",\"birth_date\":\"1990-05-16\",\"espn_id\":15379},\"5459\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckenrick\",\"depth_chart_position\":null,\"player_id\":\"5459\",\"birth_city\":null,\"fantasy_data_id\":20246,\"years_exp\":0,\"hashtag\":\"#MasonMcKenrick-NFL-BAL-50\",\"search_first_name\":\"mason\",\"rotowire_id\":13127,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mason McKenrick\",\"sportradar_id\":\"44e91d62-1877-4143-b4f3-3ede3c435490\",\"pandascore_id\":null,\"yahoo_id\":31246,\"last_name\":\"McKenrick\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"masonmckenrick\",\"birth_date\":null,\"espn_id\":4334407},\"6267\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035224\",\"first_name\":\"Dravon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1585088144749,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"askewhenry\",\"depth_chart_position\":\"FS\",\"player_id\":\"6267\",\"birth_city\":null,\"fantasy_data_id\":21202,\"years_exp\":1,\"hashtag\":\"#DravonAskewHenry-NFL-FA-0\",\"search_first_name\":\"dravon\",\"rotowire_id\":14195,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1694,\"age\":24,\"full_name\":\"Dravon Askew-Henry\",\"sportradar_id\":\"e50ea337-3b0b-4bcd-8995-6e06689aa8cd\",\"pandascore_id\":null,\"yahoo_id\":32165,\"last_name\":\"Askew-Henry\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dravonaskewhenry\",\"birth_date\":\"1995-10-24\",\"espn_id\":3916064},\"2694\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031929\",\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1538522404647,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"2694\",\"birth_city\":null,\"fantasy_data_id\":17162,\"years_exp\":5,\"hashtag\":\"#CarlosThompson-NFL-FA-53\",\"search_first_name\":\"carlos\",\"rotowire_id\":10676,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Carlos Thompson\",\"sportradar_id\":\"3a17fa1d-19a0-4e5a-922c-7a9b648d2ed6\",\"pandascore_id\":null,\"yahoo_id\":28900,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Simmons (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"carlosthompson\",\"birth_date\":\"1992-02-16\",\"espn_id\":2516283},\"84\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Branden\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"albert\",\"depth_chart_position\":null,\"player_id\":\"84\",\"birth_city\":null,\"fantasy_data_id\":2284,\"years_exp\":12,\"hashtag\":\"#BrandenAlbert-NFL-FA-76\",\"search_first_name\":\"branden\",\"rotowire_id\":5714,\"rotoworld_id\":4805,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Branden Albert\",\"sportradar_id\":\"868a2028-46f6-4263-91ca-e7907cbdf5e7\",\"pandascore_id\":null,\"yahoo_id\":8792,\"last_name\":\"Albert\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Glen Burnie (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandenalbert\",\"birth_date\":\"1984-11-04\",\"espn_id\":11249},\"2326\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032233\",\"first_name\":\"Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601512512486,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ogbuehi\",\"depth_chart_position\":\"RT\",\"player_id\":\"2326\",\"birth_city\":null,\"fantasy_data_id\":16782,\"years_exp\":5,\"hashtag\":\"#CedricOgbuehi-NFL-SEA-74\",\"search_first_name\":\"cedric\",\"rotowire_id\":10262,\"rotoworld_id\":10414,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cedric Ogbuehi\",\"sportradar_id\":\"b2805ba0-6faa-404d-b0b5-7c8ccce85f3a\",\"pandascore_id\":null,\"yahoo_id\":28409,\"last_name\":\"Ogbuehi\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Allen (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cedricogbuehi\",\"birth_date\":\"1992-04-25\",\"espn_id\":2511825},\"5180\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034460\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ezechukwu\",\"depth_chart_position\":null,\"player_id\":\"5180\",\"birth_city\":null,\"fantasy_data_id\":20177,\"years_exp\":2,\"hashtag\":\"#DannyEzechukwu-NFL-FA-63\",\"search_first_name\":\"danny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Danny Ezechukwu\",\"sportradar_id\":\"16b9334d-bebc-4f2e-94af-0450cb5dd0fe\",\"pandascore_id\":null,\"yahoo_id\":31570,\"last_name\":\"Ezechukwu\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dannyezechukwu\",\"birth_date\":\"1994-12-07\",\"espn_id\":3052451},\"3604\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032485\",\"first_name\":\"Elie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1550788551934,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bouka\",\"depth_chart_position\":null,\"player_id\":\"3604\",\"birth_city\":null,\"fantasy_data_id\":18391,\"years_exp\":4,\"hashtag\":\"#ElieBouka-NFL-FA-39\",\"search_first_name\":\"elie\",\"rotowire_id\":11285,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Elie Bouka\",\"sportradar_id\":\"6a85f300-518d-4c97-860d-c69713649c58\",\"pandascore_id\":null,\"yahoo_id\":29564,\"last_name\":\"Bouka\",\"metadata\":null,\"college\":\"Calgary-Canada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"eliebouka\",\"birth_date\":\"1992-08-15\",\"espn_id\":4010743},\"1668\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029959\",\"first_name\":\"Carson\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1552072508982,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tinker\",\"depth_chart_position\":null,\"player_id\":\"1668\",\"birth_city\":null,\"fantasy_data_id\":15454,\"years_exp\":7,\"hashtag\":\"#CarsonTinker-NFL-NYG-46\",\"search_first_name\":\"carson\",\"rotowire_id\":8904,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Carson Tinker\",\"sportradar_id\":\"12f55b0f-17a3-495c-9654-fe53f4c20716\",\"pandascore_id\":null,\"yahoo_id\":26979,\"last_name\":\"Tinker\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Riverdale (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'0\\\"\",\"search_full_name\":\"carsontinker\",\"birth_date\":\"1989-11-15\",\"espn_id\":16359},\"7339\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606359904314,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"koski\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7339\",\"birth_city\":null,\"fantasy_data_id\":22327,\"years_exp\":0,\"hashtag\":\"#JJKoski-NFL-LAR-15\",\"search_first_name\":\"jj\",\"rotowire_id\":14926,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"J.J. Koski\",\"sportradar_id\":\"ccf4746d-903a-4d51-8874-30953a304a84\",\"pandascore_id\":null,\"yahoo_id\":33254,\"last_name\":\"Koski\",\"metadata\":null,\"college\":\"Cal Poly\",\"high_school\":\"San Ramon Valley (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jjkoski\",\"birth_date\":\"1996-12-27\",\"espn_id\":3910287},\"7392\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javelin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601649606894,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"guidry\",\"depth_chart_position\":\"RCB\",\"player_id\":\"7392\",\"birth_city\":null,\"fantasy_data_id\":22081,\"years_exp\":0,\"hashtag\":\"#JavelinGuidry-NFL-NYJ-40\",\"search_first_name\":\"javelin\",\"rotowire_id\":14454,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1911,\"age\":22,\"full_name\":\"Javelin Guidry\",\"sportradar_id\":\"dfdf250e-0457-4008-be27-a0be2a3ae5bd\",\"pandascore_id\":null,\"yahoo_id\":33333,\"last_name\":\"Guidry\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Vista Murrieta (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"javelinguidry\",\"birth_date\":\"1998-08-06\",\"espn_id\":4243250},\"6291\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035301\",\"first_name\":\"Donovan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606492504095,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"SS\",\"player_id\":\"6291\",\"birth_city\":null,\"fantasy_data_id\":21123,\"years_exp\":1,\"hashtag\":\"#DonovanWilson-NFL-DAL-37\",\"search_first_name\":\"donovan\",\"rotowire_id\":13890,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1669,\"age\":25,\"full_name\":\"Donovan Wilson\",\"sportradar_id\":\"2e9ef3ac-eca5-4eb9-a41d-f404dfaae460\",\"pandascore_id\":null,\"yahoo_id\":32045,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Woodlawn (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"donovanwilson\",\"birth_date\":\"1995-02-21\",\"espn_id\":3122135},\"4150\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033950\",\"first_name\":\"Wayne\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606501203875,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gallman\",\"depth_chart_position\":\"RB\",\"player_id\":\"4150\",\"birth_city\":null,\"fantasy_data_id\":18996,\"years_exp\":3,\"hashtag\":\"#WayneGallman-NFL-NYG-22\",\"search_first_name\":\"wayne\",\"rotowire_id\":11761,\"rotoworld_id\":12309,\"active\":true,\"search_rank\":338,\"age\":26,\"full_name\":\"Wayne Gallman\",\"sportradar_id\":\"567fe739-5425-4d78-896c-f1486813910d\",\"pandascore_id\":null,\"yahoo_id\":30253,\"last_name\":\"Gallman\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Grayson (GA)\",\"depth_chart_order\":1,\"stats_id\":733744,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"waynegallman\",\"birth_date\":\"1994-10-01\",\"espn_id\":3045127},\"1794\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030711\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1570223732943,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fluellen\",\"depth_chart_position\":\"RB\",\"player_id\":\"1794\",\"birth_city\":null,\"fantasy_data_id\":15966,\"years_exp\":6,\"hashtag\":\"#DavidFluellen-NFL-FA-0\",\"search_first_name\":\"david\",\"rotowire_id\":9534,\"rotoworld_id\":null,\"active\":true,\"search_rank\":769,\"age\":28,\"full_name\":\"David Fluellen\",\"sportradar_id\":\"481da4a3-fb29-4480-9db4-9cffdf33f510\",\"pandascore_id\":null,\"yahoo_id\":27790,\"last_name\":\"Fluellen\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":559264,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"davidfluellen\",\"birth_date\":\"1992-01-28\",\"espn_id\":16994},\"4168\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033952\",\"first_name\":\"Grover\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606591833387,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":\"NT\",\"player_id\":\"4168\",\"birth_city\":null,\"fantasy_data_id\":19014,\"years_exp\":3,\"hashtag\":\"#GroverStewart-NFL-IND-90\",\"search_first_name\":\"grover\",\"rotowire_id\":12202,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1179,\"age\":27,\"full_name\":\"Grover Stewart\",\"sportradar_id\":\"fae57441-a198-4674-8a37-401b64d17961\",\"pandascore_id\":null,\"yahoo_id\":30257,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Albany State, Ga.\",\"high_school\":\"Mitchell County (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"groverstewart\",\"birth_date\":\"1993-10-20\",\"espn_id\":4058825},\"7037\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606532429883,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pinckney\",\"depth_chart_position\":null,\"player_id\":\"7037\",\"birth_city\":null,\"fantasy_data_id\":21977,\"years_exp\":0,\"hashtag\":\"#MichaelPinckney-NFL-FA-0\",\"search_first_name\":\"michael\",\"rotowire_id\":14397,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Michael Pinckney\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pinckney\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelpinckney\",\"birth_date\":null,\"espn_id\":null},\"6775\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Romeo\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crennel\",\"depth_chart_position\":null,\"player_id\":\"6775\",\"birth_city\":null,\"fantasy_data_id\":21859,\"years_exp\":0,\"hashtag\":\"#RomeoCrennel-NFL-FA-0\",\"search_first_name\":\"romeo\",\"rotowire_id\":null,\"rotoworld_id\":9299,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Romeo Crennel\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Crennel\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"romeocrennel\",\"birth_date\":null,\"espn_id\":null},\"147\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026189\",\"first_name\":\"DeSean\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603743637460,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"147\",\"birth_city\":null,\"fantasy_data_id\":3943,\"years_exp\":12,\"hashtag\":\"#DeSeanJackson-NFL-PHI-10\",\"search_first_name\":\"desean\",\"rotowire_id\":5581,\"rotoworld_id\":4659,\"active\":true,\"search_rank\":119,\"age\":33,\"full_name\":\"DeSean Jackson\",\"sportradar_id\":\"3e618eb6-41f2-4f20-ad70-2460f9366f43\",\"pandascore_id\":null,\"yahoo_id\":8826,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":3,\"stats_id\":300173,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"deseanjackson\",\"birth_date\":\"1986-12-01\",\"espn_id\":11283},\"1781\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kourtnei\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"1781\",\"birth_city\":null,\"fantasy_data_id\":15881,\"years_exp\":8,\"hashtag\":\"#KourtneiBrown-NFL-FA-56\",\"search_first_name\":\"kourtnei\",\"rotowire_id\":9509,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kourtnei Brown\",\"sportradar_id\":\"0b8f0bc0-f38f-4a4e-9259-32a7b6b66edb\",\"pandascore_id\":null,\"yahoo_id\":26251,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Victory Christian Center (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kourtneibrown\",\"birth_date\":\"1988-04-17\",\"espn_id\":15177},\"2707\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031915\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1521580801687,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"timu\",\"depth_chart_position\":null,\"player_id\":\"2707\",\"birth_city\":null,\"fantasy_data_id\":17175,\"years_exp\":5,\"hashtag\":\"#JohnTimu-NFL-FA-53\",\"search_first_name\":\"john\",\"rotowire_id\":10379,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"John Timu\",\"sportradar_id\":\"ce29ca20-450a-467e-b683-8bd6fffad38c\",\"pandascore_id\":null,\"yahoo_id\":28695,\"last_name\":\"Timu\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Long Beach Jordan (CA)\",\"depth_chart_order\":null,\"stats_id\":593349,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johntimu\",\"birth_date\":\"1992-08-27\",\"espn_id\":2578388},\"6317\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035394\",\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605561919670,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dolegala\",\"depth_chart_position\":\"QB\",\"player_id\":\"6317\",\"birth_city\":null,\"fantasy_data_id\":21220,\"years_exp\":1,\"hashtag\":\"#JacobDolegala-NFL-NE-7\",\"search_first_name\":\"jacob\",\"rotowire_id\":13925,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1699,\"age\":24,\"full_name\":\"Jacob Dolegala\",\"sportradar_id\":\"751d6fe8-85d9-4caa-bcca-493155dbff6b\",\"pandascore_id\":null,\"yahoo_id\":32464,\"last_name\":\"Dolegala\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Central Connecticut State\",\"high_school\":\"Milford Academy (NY)\",\"depth_chart_order\":4,\"stats_id\":887061,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jacobdolegala\",\"birth_date\":\"1996-10-07\",\"espn_id\":3921586},\"6772\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weaver\",\"depth_chart_position\":null,\"player_id\":\"6772\",\"birth_city\":null,\"fantasy_data_id\":21834,\"years_exp\":0,\"hashtag\":\"#AnthonyWeaver-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":2223,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anthony Weaver\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Weaver\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"anthonyweaver\",\"birth_date\":null,\"espn_id\":null},\"2036\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031040\",\"first_name\":\"Khalil\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605586821518,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"2036\",\"birth_city\":null,\"fantasy_data_id\":16323,\"years_exp\":6,\"hashtag\":\"#KhalilMack-NFL-CHI-52\",\"search_first_name\":\"khalil\",\"rotowire_id\":9251,\"rotoworld_id\":9373,\"active\":true,\"search_rank\":809,\"age\":29,\"full_name\":\"Khalil Mack\",\"sportradar_id\":\"33c74bf8-7621-48be-a769-e219703988d9\",\"pandascore_id\":null,\"yahoo_id\":27533,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Westwood (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'3\\\"\",\"search_full_name\":\"khalilmack\",\"birth_date\":\"1991-02-22\",\"espn_id\":16710},\"5034\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034824\",\"first_name\":\"Martinas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606175715344,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rankin\",\"depth_chart_position\":\"RT\",\"player_id\":\"5034\",\"birth_city\":null,\"fantasy_data_id\":19877,\"years_exp\":2,\"hashtag\":\"#MartinasRankin-NFL-KC-74\",\"search_first_name\":\"martinas\",\"rotowire_id\":12885,\"rotoworld_id\":13175,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Martinas Rankin\",\"sportradar_id\":\"aa5741d8-cafa-4bac-bf36-85f92a7e995c\",\"pandascore_id\":null,\"yahoo_id\":31050,\"last_name\":\"Rankin\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Mendenhall (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'5\\\"\",\"search_full_name\":\"martinasrankin\",\"birth_date\":\"1994-10-20\",\"espn_id\":3894924},\"132\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kedric\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"golston\",\"depth_chart_position\":null,\"player_id\":\"132\",\"birth_city\":null,\"fantasy_data_id\":3712,\"years_exp\":14,\"hashtag\":\"#KedricGolston-NFL-FA-64\",\"search_first_name\":\"kedric\",\"rotowire_id\":5105,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Kedric Golston\",\"sportradar_id\":\"8d079fe0-46d4-41d8-878b-98141320bcfc\",\"pandascore_id\":null,\"yahoo_id\":7945,\"last_name\":\"Golston\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Sandy Creek (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kedricgolston\",\"birth_date\":\"1983-05-30\",\"espn_id\":9782},\"1828\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031208\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1536717009844,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mccain\",\"depth_chart_position\":null,\"player_id\":\"1828\",\"birth_city\":null,\"fantasy_data_id\":16023,\"years_exp\":6,\"hashtag\":\"#ChrisMcCain-NFL-FA-76\",\"search_first_name\":\"chris\",\"rotowire_id\":9962,\"rotoworld_id\":10170,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chris McCain\",\"sportradar_id\":\"ec0183f6-bd9b-4a21-b8f5-ea4d8f3741b2\",\"pandascore_id\":null,\"yahoo_id\":28242,\"last_name\":\"McCain\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Northern Guilford (NC)\",\"depth_chart_order\":null,\"stats_id\":595525,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrismccain\",\"birth_date\":\"1991-11-21\",\"espn_id\":17430},\"5840\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035642\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606264559071,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"5840\",\"birth_city\":null,\"fantasy_data_id\":20737,\"years_exp\":1,\"hashtag\":\"#JoshAllen-NFL-JAX-41\",\"search_first_name\":\"josh\",\"rotowire_id\":13642,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1521,\"age\":23,\"full_name\":\"Josh Allen\",\"sportradar_id\":\"dd7be5f3-c615-4621-92e1-2434519cb1f9\",\"pandascore_id\":null,\"yahoo_id\":31839,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Montclair (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshallen\",\"birth_date\":\"1997-07-13\",\"espn_id\":3915239},\"6917\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599699943950,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"6917\",\"birth_city\":null,\"fantasy_data_id\":21924,\"years_exp\":0,\"hashtag\":\"#AntoineBrooks-NFL-PIT-25\",\"search_first_name\":\"antoine\",\"rotowire_id\":14595,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1842,\"age\":22,\"full_name\":\"Antoine Brooks\",\"sportradar_id\":\"60871327-0349-4246-8996-4a594addd8cf\",\"pandascore_id\":null,\"yahoo_id\":32868,\"last_name\":\"Brooks\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Maryland\",\"high_school\":\"Duval (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"antoinebrooks\",\"birth_date\":\"1998-10-28\",\"espn_id\":4036213},\"555\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0027124\",\"first_name\":\"Don\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1542997809481,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carey\",\"depth_chart_position\":null,\"player_id\":\"555\",\"birth_city\":null,\"fantasy_data_id\":11154,\"years_exp\":11,\"hashtag\":\"#DonCarey-NFL-FA-21\",\"search_first_name\":\"don\",\"rotowire_id\":6903,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Don Carey\",\"sportradar_id\":\"c0cb57ed-b7dc-470a-8769-c161dad25de6\",\"pandascore_id\":null,\"yahoo_id\":9441,\"last_name\":\"Carey\",\"metadata\":null,\"college\":\"Norfolk State\",\"high_school\":\"Washington (VA)\",\"depth_chart_order\":null,\"stats_id\":298080,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"doncarey\",\"birth_date\":\"1987-02-14\",\"espn_id\":12644},\"3595\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032745\",\"first_name\":\"Alan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1547663432389,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cross\",\"depth_chart_position\":null,\"player_id\":\"3595\",\"birth_city\":null,\"fantasy_data_id\":18376,\"years_exp\":4,\"hashtag\":\"#AlanCross-NFL-FA-45\",\"search_first_name\":\"alan\",\"rotowire_id\":11406,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Alan Cross\",\"sportradar_id\":\"cc1df018-baa8-4344-b13c-cd5ef1a52d26\",\"pandascore_id\":null,\"yahoo_id\":29571,\"last_name\":\"Cross\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":614284,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alancross\",\"birth_date\":\"1993-07-02\",\"espn_id\":2586700},\"3186\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033120\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606194950371,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":\"NT\",\"player_id\":\"3186\",\"birth_city\":null,\"fantasy_data_id\":17947,\"years_exp\":4,\"hashtag\":\"#KennyClark-NFL-GB-97\",\"search_first_name\":\"kenny\",\"rotowire_id\":10973,\"rotoworld_id\":11286,\"active\":true,\"search_rank\":959,\"age\":25,\"full_name\":\"Kenny Clark\",\"sportradar_id\":\"d848e4e6-ff3e-421c-9bd3-c2f62a16efd4\",\"pandascore_id\":null,\"yahoo_id\":29261,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Wilmer Amina Carter (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kennyclark\",\"birth_date\":\"1995-10-04\",\"espn_id\":3122752},\"1513\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030059\",\"first_name\":\"Ezekiel\",\"practice_description\":null,\"fantasy_positions\":[\"LEO\",\"LB\",\"DL\"],\"news_updated\":1602383409908,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ansah\",\"depth_chart_position\":null,\"player_id\":\"1513\",\"birth_city\":null,\"fantasy_data_id\":15122,\"years_exp\":7,\"hashtag\":\"#EzekielAnsah-NFL-SF-94\",\"search_first_name\":\"ezekiel\",\"rotowire_id\":8657,\"rotoworld_id\":8385,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ezekiel Ansah\",\"sportradar_id\":\"436e0e45-f07a-4674-b21f-4fd8e1f24583\",\"pandascore_id\":null,\"yahoo_id\":26628,\"last_name\":\"Ansah\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Presbyterian Boys' Secondary (GHA)\",\"depth_chart_order\":null,\"stats_id\":558874,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ezekielansah\",\"birth_date\":\"1989-05-29\",\"espn_id\":15785},\"4691\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blackmon\",\"depth_chart_position\":null,\"player_id\":\"4691\",\"birth_city\":null,\"fantasy_data_id\":19593,\"years_exp\":2,\"hashtag\":\"#DanteBlackmon-NFL-FA-37\",\"search_first_name\":\"dante\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dante Blackmon\",\"sportradar_id\":\"184050a9-3c2b-447d-a9bb-93c6dd0e9f05\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Blackmon\",\"metadata\":null,\"college\":\"Kennesaw State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"danteblackmon\",\"birth_date\":\"1993-09-28\",\"espn_id\":2973649},\"4181\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033554\",\"first_name\":\"Tedric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606583433475,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"SS\",\"player_id\":\"4181\",\"birth_city\":null,\"fantasy_data_id\":19027,\"years_exp\":3,\"hashtag\":\"#TedricThompson-NFL-KC-24\",\"search_first_name\":\"tedric\",\"rotowire_id\":12004,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1186,\"age\":25,\"full_name\":\"Tedric Thompson\",\"sportradar_id\":\"5af719d9-4a47-4a93-a522-a5060fd0df79\",\"pandascore_id\":null,\"yahoo_id\":30224,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Valencia (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tedricthompson\",\"birth_date\":\"1995-01-20\",\"espn_id\":3052125},\"7380\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haycraft\",\"depth_chart_position\":null,\"player_id\":\"7380\",\"birth_city\":null,\"fantasy_data_id\":22366,\"years_exp\":0,\"hashtag\":\"#TylerHaycraft-NFL-NYG-61\",\"search_first_name\":\"tyler\",\"rotowire_id\":15005,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tyler Haycraft\",\"sportradar_id\":\"1a73d921-33c3-4e5f-904f-419ad5ac6206\",\"pandascore_id\":null,\"yahoo_id\":33047,\"last_name\":\"Haycraft\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"St. Xavier (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerhaycraft\",\"birth_date\":\"1997-01-23\",\"espn_id\":3916410},\"4798\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"germany\",\"depth_chart_position\":null,\"player_id\":\"4798\",\"birth_city\":null,\"fantasy_data_id\":19712,\"years_exp\":2,\"hashtag\":\"#CJGermany-NFL-FA-2\",\"search_first_name\":\"cj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"C.J. Germany\",\"sportradar_id\":\"e37f8e65-2b06-40bf-8618-038609efd57d\",\"pandascore_id\":null,\"yahoo_id\":30923,\"last_name\":\"Germany\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":893438,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cjgermany\",\"birth_date\":null,\"espn_id\":3939055},\"1343\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030114\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605055562033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"poyer\",\"depth_chart_position\":\"SS\",\"player_id\":\"1343\",\"birth_city\":null,\"fantasy_data_id\":14860,\"years_exp\":7,\"hashtag\":\"#JordanPoyer-NFL-BUF-21\",\"search_first_name\":\"jordan\",\"rotowire_id\":8639,\"rotoworld_id\":8448,\"active\":true,\"search_rank\":706,\"age\":29,\"full_name\":\"Jordan Poyer\",\"sportradar_id\":\"95fab6fa-3ee1-47d0-93ad-c7ff41744be7\",\"pandascore_id\":null,\"yahoo_id\":26841,\"last_name\":\"Poyer\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Astoria (OR)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanpoyer\",\"birth_date\":\"1991-04-25\",\"espn_id\":15979},\"2226\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"2226\",\"birth_city\":null,\"fantasy_data_id\":16615,\"years_exp\":6,\"hashtag\":\"#ChristianBryant-NFL-FA-36\",\"search_first_name\":\"christian\",\"rotowire_id\":10106,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Christian Bryant\",\"sportradar_id\":\"a8a1e75b-2b00-44d8-8ee8-6de81d8c8c89\",\"pandascore_id\":null,\"yahoo_id\":27769,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":null,\"stats_id\":553676,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'9\\\"\",\"search_full_name\":\"christianbryant\",\"birth_date\":\"1992-03-21\",\"espn_id\":16908},\"152\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spencer\",\"depth_chart_position\":null,\"player_id\":\"152\",\"birth_city\":null,\"fantasy_data_id\":4080,\"years_exp\":9,\"hashtag\":\"#AnthonySpencer-NFL-FA-99\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Anthony Spencer\",\"sportradar_id\":\"65859588-5da0-4df0-a339-6adf83287078\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Spencer\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"anthonyspencer\",\"birth_date\":\"1984-01-23\",\"espn_id\":10470},\"7437\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1597897830488,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7437\",\"birth_city\":null,\"fantasy_data_id\":22416,\"years_exp\":0,\"hashtag\":\"#KyleWilliams-NFL-FA-0\",\"search_first_name\":\"kyle\",\"rotowire_id\":15153,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Kyle Williams\",\"sportradar_id\":\"80393249-267a-496f-8ab1-0882c169b02a\",\"pandascore_id\":null,\"yahoo_id\":33350,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kylewilliams\",\"birth_date\":\"1998-10-15\",\"espn_id\":4252364},\"CIN\":{\"team\":\"CIN\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"CIN\",\"last_name\":\"Bengals\",\"injury_status\":null,\"first_name\":\"Cincinnati\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"3994\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bill\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"musgrave\",\"depth_chart_position\":null,\"player_id\":\"3994\",\"birth_city\":null,\"fantasy_data_id\":18831,\"years_exp\":0,\"hashtag\":\"#BillMusgrave-NFL-FA-0\",\"search_first_name\":\"bill\",\"rotowire_id\":null,\"rotoworld_id\":9346,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bill Musgrave\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Musgrave\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"billmusgrave\",\"birth_date\":null,\"espn_id\":null},\"776\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quintin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1519744201420,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"demps\",\"depth_chart_position\":null,\"player_id\":\"776\",\"birth_city\":null,\"fantasy_data_id\":12606,\"years_exp\":12,\"hashtag\":\"#QuintinDemps-NFL-FA-21\",\"search_first_name\":\"quintin\",\"rotowire_id\":5765,\"rotoworld_id\":4880,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Quintin Demps\",\"sportradar_id\":\"f701832d-046b-4aa7-bfbb-259a2313dec6\",\"pandascore_id\":null,\"yahoo_id\":8894,\"last_name\":\"Demps\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Roosevelt (TX)\",\"depth_chart_order\":null,\"stats_id\":227381,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"quintindemps\",\"birth_date\":\"1985-06-29\",\"espn_id\":11351},\"2335\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032251\",\"first_name\":\"Damarious\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603323341933,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"randall\",\"depth_chart_position\":\"SS\",\"player_id\":\"2335\",\"birth_city\":null,\"fantasy_data_id\":16791,\"years_exp\":5,\"hashtag\":\"#DamariousRandall-NFL-SEA-36\",\"search_first_name\":\"damarious\",\"rotowire_id\":10387,\"rotoworld_id\":10452,\"active\":true,\"search_rank\":859,\"age\":28,\"full_name\":\"Damarious Randall\",\"sportradar_id\":\"b9e6500f-2bb4-47b1-a3ea-1e3f925a3743\",\"pandascore_id\":null,\"yahoo_id\":28418,\"last_name\":\"Randall\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Pensacola (FL)\",\"depth_chart_order\":2,\"stats_id\":732792,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damariousrandall\",\"birth_date\":\"1992-08-29\",\"espn_id\":3043258},\"839\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cortez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"839\",\"birth_city\":null,\"fantasy_data_id\":12886,\"years_exp\":9,\"hashtag\":\"#CortezAllen-NFL-FA-28\",\"search_first_name\":\"cortez\",\"rotowire_id\":7774,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Cortez Allen\",\"sportradar_id\":\"a243641a-839a-45f3-ac76-030053a7ddf4\",\"pandascore_id\":null,\"yahoo_id\":24915,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Citadel\",\"high_school\":\"North Marion (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cortezallen\",\"birth_date\":\"1988-10-29\",\"espn_id\":14109},\"5110\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034411\",\"first_name\":\"Russell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606355402650,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gage\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5110\",\"birth_city\":null,\"fantasy_data_id\":20006,\"years_exp\":2,\"hashtag\":\"#RussellGage-NFL-ATL-83\",\"search_first_name\":\"russell\",\"rotowire_id\":12992,\"rotoworld_id\":null,\"active\":true,\"search_rank\":199,\"age\":24,\"full_name\":\"Russell Gage\",\"sportradar_id\":\"4501e6f4-4683-4357-b241-8b4a0b6aae81\",\"pandascore_id\":null,\"yahoo_id\":31164,\"last_name\":\"Gage\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Redemptorist (LA)\",\"depth_chart_order\":1,\"stats_id\":822014,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'0\\\"\",\"search_full_name\":\"russellgage\",\"birth_date\":\"1996-01-22\",\"espn_id\":3115378},\"5763\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034820\",\"first_name\":\"Bentley\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spain\",\"depth_chart_position\":null,\"player_id\":\"5763\",\"birth_city\":null,\"fantasy_data_id\":20668,\"years_exp\":2,\"hashtag\":\"#BentleySpain-NFL-FA-68\",\"search_first_name\":\"bentley\",\"rotowire_id\":13364,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Bentley Spain\",\"sportradar_id\":\"c3e877c0-282c-4955-a1cb-7e12403698e0\",\"pandascore_id\":null,\"yahoo_id\":31757,\"last_name\":\"Spain\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"bentleyspain\",\"birth_date\":\"1996-05-02\",\"espn_id\":3116702},\"2140\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031001\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535761339739,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"janis\",\"depth_chart_position\":null,\"player_id\":\"2140\",\"birth_city\":null,\"fantasy_data_id\":16480,\"years_exp\":6,\"hashtag\":\"#JeffJanis-NFL-FA-13\",\"search_first_name\":\"jeff\",\"rotowire_id\":9466,\"rotoworld_id\":9719,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jeff Janis\",\"sportradar_id\":\"7b1c1855-fc6d-42aa-ac3e-588e82333146\",\"pandascore_id\":null,\"yahoo_id\":27764,\"last_name\":\"Janis\",\"metadata\":null,\"college\":\"Saginaw Valley State\",\"high_school\":\"Tawas Area (MI)\",\"depth_chart_order\":null,\"stats_id\":794243,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeffjanis\",\"birth_date\":\"1991-06-24\",\"espn_id\":16960},\"4763\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"4763\",\"birth_city\":null,\"fantasy_data_id\":19682,\"years_exp\":0,\"hashtag\":\"#JerryRichardson-NFL-FA-0\",\"search_first_name\":\"jerry\",\"rotowire_id\":null,\"rotoworld_id\":9446,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jerry Richardson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jerryrichardson\",\"birth_date\":null,\"espn_id\":null},\"2116\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brock\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vereen\",\"depth_chart_position\":null,\"player_id\":\"2116\",\"birth_city\":null,\"fantasy_data_id\":16446,\"years_exp\":6,\"hashtag\":\"#BrockVereen-NFL-FA-43\",\"search_first_name\":\"brock\",\"rotowire_id\":9315,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brock Vereen\",\"sportradar_id\":\"6a7f7370-a4df-4f2e-94fd-36913bc5a237\",\"pandascore_id\":null,\"yahoo_id\":27659,\"last_name\":\"Vereen\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Valencia (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brockvereen\",\"birth_date\":\"1992-08-17\",\"espn_id\":16906},\"6846\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605133807175,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":\"TE\",\"player_id\":\"6846\",\"birth_city\":null,\"fantasy_data_id\":21683,\"years_exp\":0,\"hashtag\":\"#HunterBryant-NFL-DET-86\",\"search_first_name\":\"hunter\",\"rotowire_id\":14364,\"rotoworld_id\":null,\"active\":true,\"search_rank\":585,\"age\":22,\"full_name\":\"Hunter Bryant\",\"sportradar_id\":\"826c6c22-2a3a-48bb-befb-8e552fb391ea\",\"pandascore_id\":null,\"yahoo_id\":33186,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Eastside Catholic (WA)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"hunterbryant\",\"birth_date\":\"1998-08-20\",\"espn_id\":4243318},\"6249\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035426\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1565795405105,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"corcoran\",\"depth_chart_position\":null,\"player_id\":\"6249\",\"birth_city\":null,\"fantasy_data_id\":21182,\"years_exp\":1,\"hashtag\":\"#JoshCorcoran-NFL-FA-59\",\"search_first_name\":\"josh\",\"rotowire_id\":14262,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Corcoran\",\"sportradar_id\":\"43fbd37f-a5c0-483c-9522-0f20c6483d80\",\"pandascore_id\":null,\"yahoo_id\":32540,\"last_name\":\"Corcoran\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshcorcoran\",\"birth_date\":\"1997-04-05\",\"espn_id\":3921958},\"5232\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawson\",\"depth_chart_position\":null,\"player_id\":\"5232\",\"birth_city\":null,\"fantasy_data_id\":20153,\"years_exp\":0,\"hashtag\":\"#TevinLawson-NFL-LAC-78\",\"search_first_name\":\"tevin\",\"rotowire_id\":13053,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tevin Lawson\",\"sportradar_id\":\"76f3c2ab-9e4b-4aae-82f4-c6b1f73e808f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lawson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tevinlawson\",\"birth_date\":null,\"espn_id\":3040004},\"281\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wallace\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1513382403186,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilberry\",\"depth_chart_position\":null,\"player_id\":\"281\",\"birth_city\":null,\"fantasy_data_id\":7121,\"years_exp\":12,\"hashtag\":\"#WallaceGilberry-NFL-FA-95\",\"search_first_name\":\"wallace\",\"rotowire_id\":5728,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Wallace Gilberry\",\"sportradar_id\":\"9e71b73a-c580-4d81-9b54-dcb7ec22a01f\",\"pandascore_id\":null,\"yahoo_id\":9123,\"last_name\":\"Gilberry\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Baldwin County (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'2\\\"\",\"search_full_name\":\"wallacegilberry\",\"birth_date\":\"1984-12-05\",\"espn_id\":11809},\"3198\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032764\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606247452641,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henry\",\"depth_chart_position\":\"RB\",\"player_id\":\"3198\",\"birth_city\":null,\"fantasy_data_id\":17959,\"years_exp\":4,\"hashtag\":\"#DerrickHenry-NFL-TEN-22\",\"search_first_name\":\"derrick\",\"rotowire_id\":10819,\"rotoworld_id\":11238,\"active\":true,\"search_rank\":6,\"age\":26,\"full_name\":\"Derrick Henry\",\"sportradar_id\":\"87c481c7-7414-43cc-82df-19ca0c2ae22e\",\"pandascore_id\":null,\"yahoo_id\":29279,\"last_name\":\"Henry\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Alabama\",\"high_school\":\"Yulee (FL)\",\"depth_chart_order\":1,\"stats_id\":732145,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derrickhenry\",\"birth_date\":\"1994-01-04\",\"espn_id\":3043078},\"3320\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032785\",\"first_name\":\"Halapoulivaati\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606346404023,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"vaitai\",\"depth_chart_position\":null,\"player_id\":\"3320\",\"birth_city\":null,\"fantasy_data_id\":18081,\"years_exp\":4,\"hashtag\":\"#HalapoulivaatiVaitai-NFL-DET-72\",\"search_first_name\":\"halapoulivaati\",\"rotowire_id\":10951,\"rotoworld_id\":11457,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Halapoulivaati Vaitai\",\"sportradar_id\":\"8af5d867-302a-49ae-9acb-fede2cebe979\",\"pandascore_id\":null,\"yahoo_id\":29398,\"last_name\":\"Vaitai\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Haltom (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"halapoulivaativaitai\",\"birth_date\":\"1993-06-16\",\"espn_id\":2971557},\"97\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"soliai\",\"depth_chart_position\":null,\"player_id\":\"97\",\"birth_city\":null,\"fantasy_data_id\":2623,\"years_exp\":13,\"hashtag\":\"#PaulSoliai-NFL-FA-90\",\"search_first_name\":\"paul\",\"rotowire_id\":6348,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Paul Soliai\",\"sportradar_id\":\"f14dba2e-7714-4344-8800-feb6f78cf64e\",\"pandascore_id\":null,\"yahoo_id\":8362,\"last_name\":\"Soliai\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Nuuuli Poly Tech (AS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'4\\\"\",\"search_full_name\":\"paulsoliai\",\"birth_date\":\"1983-12-30\",\"espn_id\":10552},\"787\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028129\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606074319207,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelce\",\"depth_chart_position\":\"C\",\"player_id\":\"787\",\"birth_city\":null,\"fantasy_data_id\":12707,\"years_exp\":9,\"hashtag\":\"#JasonKelce-NFL-PHI-62\",\"search_first_name\":\"jason\",\"rotowire_id\":7585,\"rotoworld_id\":6695,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jason Kelce\",\"sportradar_id\":\"1d02b5a6-fe2e-4131-a9ab-6ed3558f4026\",\"pandascore_id\":null,\"yahoo_id\":24978,\"last_name\":\"Kelce\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Cleveland Heights (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jasonkelce\",\"birth_date\":\"1987-11-05\",\"espn_id\":14124},\"2486\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyrus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"2486\",\"birth_city\":null,\"fantasy_data_id\":16945,\"years_exp\":4,\"hashtag\":\"#TyrusThompson-NFL-FA-67\",\"search_first_name\":\"tyrus\",\"rotowire_id\":10282,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tyrus Thompson\",\"sportradar_id\":\"71297208-1697-45fd-95a0-dac62beca426\",\"pandascore_id\":null,\"yahoo_id\":28573,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyrusthompson\",\"birth_date\":\"1991-11-17\",\"espn_id\":2514241},\"4390\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033400\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1584217860589,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haack\",\"depth_chart_position\":null,\"player_id\":\"4390\",\"birth_city\":null,\"fantasy_data_id\":19249,\"years_exp\":3,\"hashtag\":\"#MattHaack-NFL-MIA-2\",\"search_first_name\":\"matt\",\"rotowire_id\":12402,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Matt Haack\",\"sportradar_id\":\"9164fac3-2540-4f64-ba29-96fb0ce1c7eb\",\"pandascore_id\":null,\"yahoo_id\":30641,\"last_name\":\"Haack\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Dowling Catholic (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"matthaack\",\"birth_date\":\"1994-07-25\",\"espn_id\":3043237},\"1645\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brenner\",\"depth_chart_position\":null,\"player_id\":\"1645\",\"birth_city\":null,\"fantasy_data_id\":15384,\"years_exp\":7,\"hashtag\":\"#SamBrenner-NFL-FA-67\",\"search_first_name\":\"sam\",\"rotowire_id\":9205,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sam Brenner\",\"sportradar_id\":\"4878ca76-b5f6-4d81-96c2-314556007b18\",\"pandascore_id\":null,\"yahoo_id\":27240,\"last_name\":\"Brenner\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Oceanside (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sambrenner\",\"birth_date\":\"1990-04-27\",\"espn_id\":16375},\"3021\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gardner\",\"depth_chart_position\":null,\"player_id\":\"3021\",\"birth_city\":null,\"fantasy_data_id\":17625,\"years_exp\":null,\"hashtag\":\"#DevinGardner-NFL-FA-0\",\"search_first_name\":\"devin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Devin Gardner\",\"sportradar_id\":\"f6ae96ba-7fcc-4d6a-9573-4f7001758968\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gardner\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":543238,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"devingardner\",\"birth_date\":null,\"espn_id\":null},\"3892\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarvis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":null,\"player_id\":\"3892\",\"birth_city\":null,\"fantasy_data_id\":18714,\"years_exp\":0,\"hashtag\":\"#JarvisTurner-NFL-FA-15\",\"search_first_name\":\"jarvis\",\"rotowire_id\":11392,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jarvis Turner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30022,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Alcorn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":702773,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jarvisturner\",\"birth_date\":\"1993-11-02\",\"espn_id\":2988610},\"2263\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kaleb\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ramsey\",\"depth_chart_position\":null,\"player_id\":\"2263\",\"birth_city\":null,\"fantasy_data_id\":16674,\"years_exp\":2,\"hashtag\":\"#KalebRamsey-NFL-FA-68\",\"search_first_name\":\"kaleb\",\"rotowire_id\":9608,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kaleb Ramsey\",\"sportradar_id\":\"a37b6691-2c0b-4585-9fff-6f732888b0d4\",\"pandascore_id\":null,\"yahoo_id\":27771,\"last_name\":\"Ramsey\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kalebramsey\",\"birth_date\":\"1989-06-20\",\"espn_id\":16807},\"375\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027081\",\"first_name\":\"Glover\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1562672761755,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"quin\",\"depth_chart_position\":null,\"player_id\":\"375\",\"birth_city\":null,\"fantasy_data_id\":8593,\"years_exp\":11,\"hashtag\":\"#GloverQuin-NFL-FA-27\",\"search_first_name\":\"glover\",\"rotowire_id\":6217,\"rotoworld_id\":5345,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Glover Quin\",\"sportradar_id\":\"adc1b9ae-0b59-4399-bfba-959f694dde3d\",\"pandascore_id\":null,\"yahoo_id\":9376,\"last_name\":\"Quin\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":\"North Pike (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gloverquin\",\"birth_date\":\"1986-01-15\",\"espn_id\":12716},\"3975\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jim\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harbaugh\",\"depth_chart_position\":null,\"player_id\":\"3975\",\"birth_city\":null,\"fantasy_data_id\":18810,\"years_exp\":0,\"hashtag\":\"#JimHarbaugh-NFL-FA-0\",\"search_first_name\":\"jim\",\"rotowire_id\":null,\"rotoworld_id\":8361,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jim Harbaugh\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harbaugh\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jimharbaugh\",\"birth_date\":null,\"espn_id\":null},\"2400\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031939\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535764643523,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"2400\",\"birth_city\":null,\"fantasy_data_id\":16856,\"years_exp\":5,\"hashtag\":\"#MattJones-NFL-FA-38\",\"search_first_name\":\"matt\",\"rotowire_id\":10189,\"rotoworld_id\":10493,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Matt Jones\",\"sportradar_id\":\"2641d36d-7c61-445f-980f-313671f2e8ce\",\"pandascore_id\":null,\"yahoo_id\":28483,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Armwood (FL)\",\"depth_chart_order\":null,\"stats_id\":694617,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mattjones\",\"birth_date\":\"1993-03-07\",\"espn_id\":2980105},\"685\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sammie Lee\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1525816501297,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"685\",\"birth_city\":null,\"fantasy_data_id\":11991,\"years_exp\":11,\"hashtag\":\"#SammieLeeHill-NFL-FA-94\",\"search_first_name\":\"sammielee\",\"rotowire_id\":6223,\"rotoworld_id\":5348,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Sammie Lee Hill\",\"sportradar_id\":\"215f20b7-32f2-43f5-a204-16736397e9b1\",\"pandascore_id\":null,\"yahoo_id\":9379,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Stillman\",\"high_school\":\"West Blocton (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sammieleehill\",\"birth_date\":\"1986-11-08\",\"espn_id\":12667},\"4360\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033412\",\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1537906806963,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"4360\",\"birth_city\":null,\"fantasy_data_id\":19217,\"years_exp\":3,\"hashtag\":\"#FredRoss-NFL-FA-2\",\"search_first_name\":\"fred\",\"rotowire_id\":11874,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Fred Ross\",\"sportradar_id\":\"eac915ff-0d29-42da-b409-aed61ccf5fcc\",\"pandascore_id\":null,\"yahoo_id\":30382,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741880,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"fredross\",\"birth_date\":\"1995-05-19\",\"espn_id\":3044857},\"4477\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"magloirejr\",\"depth_chart_position\":null,\"player_id\":\"4477\",\"birth_city\":null,\"fantasy_data_id\":19345,\"years_exp\":2,\"hashtag\":\"#PaulMagloireJr-NFL-FA-0\",\"search_first_name\":\"paul\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Paul Magloire Jr.\",\"sportradar_id\":\"8d539e8b-8de4-4fae-9985-d3841f467eda\",\"pandascore_id\":null,\"yahoo_id\":30478,\"last_name\":\"Magloire Jr.\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"paulmagloirejr\",\"birth_date\":\"1992-12-16\",\"espn_id\":null},\"2342\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031934\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605062102431,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2342\",\"birth_city\":null,\"fantasy_data_id\":16798,\"years_exp\":5,\"hashtag\":\"#DevinSmith-NFL-HOU-15\",\"search_first_name\":\"devin\",\"rotowire_id\":10209,\"rotoworld_id\":10423,\"active\":true,\"search_rank\":863,\"age\":28,\"full_name\":\"Devin Smith\",\"sportradar_id\":\"ca2d277b-835d-4f4b-bf3a-3993001d71d8\",\"pandascore_id\":null,\"yahoo_id\":28425,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Washington (OH)\",\"depth_chart_order\":6,\"stats_id\":606485,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'1\\\"\",\"search_full_name\":\"devinsmith\",\"birth_date\":\"1992-03-03\",\"espn_id\":2576395},\"3689\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":\"C\",\"player_id\":\"3689\",\"birth_city\":null,\"fantasy_data_id\":18489,\"years_exp\":0,\"hashtag\":\"#AlexCooper-NFL-FA-64\",\"search_first_name\":\"alex\",\"rotowire_id\":11351,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alex Cooper\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29701,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexcooper\",\"birth_date\":\"1991-12-18\",\"espn_id\":null},\"3502\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032655\",\"first_name\":\"Romeo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605572720684,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"okwara\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3502\",\"birth_city\":null,\"fantasy_data_id\":18268,\"years_exp\":4,\"hashtag\":\"#RomeoOkwara-NFL-DET-95\",\"search_first_name\":\"romeo\",\"rotowire_id\":11156,\"rotoworld_id\":11547,\"active\":true,\"search_rank\":1058,\"age\":25,\"full_name\":\"Romeo Okwara\",\"sportradar_id\":\"b53384f0-6eb8-4d50-80f5-a2f955183317\",\"pandascore_id\":null,\"yahoo_id\":29867,\"last_name\":\"Okwara\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Ardrey Kell (NC)\",\"depth_chart_order\":2,\"stats_id\":697477,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'4\\\"\",\"search_full_name\":\"romeookwara\",\"birth_date\":\"1995-06-17\",\"espn_id\":2980147},\"6395\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034930\",\"first_name\":\"Trinity\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599332457395,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"benson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6395\",\"birth_city\":null,\"fantasy_data_id\":21368,\"years_exp\":1,\"hashtag\":\"#TrinityBenson-NFL-DEN-12\",\"search_first_name\":\"trinity\",\"rotowire_id\":13919,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Trinity Benson\",\"sportradar_id\":\"40a9d668-269b-48ec-be2f-128d89aeb20f\",\"pandascore_id\":null,\"yahoo_id\":32189,\"last_name\":\"Benson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"East Central\",\"high_school\":\"Lewisville (TX)\",\"depth_chart_order\":3,\"stats_id\":1165782,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trinitybenson\",\"birth_date\":\"1997-01-16\",\"espn_id\":4422214},\"6724\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"6724\",\"birth_city\":null,\"fantasy_data_id\":21647,\"years_exp\":1,\"hashtag\":\"#CJMoore-NFL-DET-49\",\"search_first_name\":\"cj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"C.J. Moore\",\"sportradar_id\":\"ab47d1ab-af14-4054-ace2-0cd2fc1def85\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Bassfield (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cjmoore\",\"birth_date\":\"1995-12-15\",\"espn_id\":null},\"1812\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1812\",\"birth_city\":null,\"fantasy_data_id\":15996,\"years_exp\":1,\"hashtag\":\"#BryanJohnson-NFL-FA-67\",\"search_first_name\":\"bryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bryan Johnson\",\"sportradar_id\":\"21c731e6-2880-4510-89e8-65c7720dc181\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bryanjohnson\",\"birth_date\":\"1988-08-13\",\"espn_id\":17338},\"5484\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Filipo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1526942401405,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mokofisi\",\"depth_chart_position\":null,\"player_id\":\"5484\",\"birth_city\":null,\"fantasy_data_id\":20289,\"years_exp\":1,\"hashtag\":\"#FilipoMokofisi-NFL-GB-74\",\"search_first_name\":\"filipo\",\"rotowire_id\":13117,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Filipo Mokofisi\",\"sportradar_id\":\"b54f36b7-3181-4478-ac4d-73931a83c354\",\"pandascore_id\":null,\"yahoo_id\":31439,\"last_name\":\"Mokofisi\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'2\\\"\",\"search_full_name\":\"filipomokofisi\",\"birth_date\":\"1995-03-26\",\"espn_id\":3052509},\"3288\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032777\",\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604366430851,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boehm\",\"depth_chart_position\":null,\"player_id\":\"3288\",\"birth_city\":null,\"fantasy_data_id\":18049,\"years_exp\":4,\"hashtag\":\"#EvanBoehm-NFL-JAX-64\",\"search_first_name\":\"evan\",\"rotowire_id\":10911,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Evan Boehm\",\"sportradar_id\":\"5dd5a4bf-08f1-46e1-bf31-eab422cef869\",\"pandascore_id\":null,\"yahoo_id\":29362,\"last_name\":\"Boehm\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Lee's Summit West (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'3\\\"\",\"search_full_name\":\"evanboehm\",\"birth_date\":\"1993-08-19\",\"espn_id\":2971418},\"2709\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"patterson\",\"depth_chart_position\":null,\"player_id\":\"2709\",\"birth_city\":null,\"fantasy_data_id\":17177,\"years_exp\":5,\"hashtag\":\"#EricPatterson-NFL-FA-39\",\"search_first_name\":\"eric\",\"rotowire_id\":10695,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Eric Patterson\",\"sportradar_id\":\"4f2b3fea-1422-453b-8460-76947ddcb0ae\",\"pandascore_id\":null,\"yahoo_id\":28988,\"last_name\":\"Patterson\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":\"H.B. Plant \",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ericpatterson\",\"birth_date\":\"1993-02-05\",\"espn_id\":2577861},\"518\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027647\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602707753046,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccourty\",\"depth_chart_position\":\"CB\",\"player_id\":\"518\",\"birth_city\":null,\"fantasy_data_id\":10978,\"years_exp\":10,\"hashtag\":\"#DevinMcCourty-NFL-NE-32\",\"search_first_name\":\"devin\",\"rotowire_id\":6621,\"rotoworld_id\":5824,\"active\":true,\"search_rank\":598,\"age\":33,\"full_name\":\"Devin McCourty\",\"sportradar_id\":\"88d2dbf4-3b9f-43ea-bac6-a8722cb24f43\",\"pandascore_id\":null,\"yahoo_id\":24002,\"last_name\":\"McCourty\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Rutgers\",\"high_school\":\"St. Joseph (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"devinmccourty\",\"birth_date\":\"1987-08-13\",\"espn_id\":13236},\"2375\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031560\",\"first_name\":\"Jaelen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566872128592,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"strong\",\"depth_chart_position\":null,\"player_id\":\"2375\",\"birth_city\":null,\"fantasy_data_id\":16831,\"years_exp\":5,\"hashtag\":\"#JaelenStrong-NFL-FA-10\",\"search_first_name\":\"jaelen\",\"rotowire_id\":10023,\"rotoworld_id\":10287,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jaelen Strong\",\"sportradar_id\":\"704b9da0-2a07-4f64-be2e-dc9897d24e63\",\"pandascore_id\":null,\"yahoo_id\":28458,\"last_name\":\"Strong\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"West Philadelphia Catholic (PA)\",\"depth_chart_order\":null,\"stats_id\":732795,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jaelenstrong\",\"birth_date\":\"1994-01-25\",\"espn_id\":3043263},\"1681\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1524594601699,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"winn\",\"depth_chart_position\":null,\"player_id\":\"1681\",\"birth_city\":null,\"fantasy_data_id\":15497,\"years_exp\":7,\"hashtag\":\"#GeorgeWinn-NFL-FA-37\",\"search_first_name\":\"george\",\"rotowire_id\":8771,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"George Winn\",\"sportradar_id\":\"889c3d91-224c-4eb4-9c05-8e6c405202b8\",\"pandascore_id\":null,\"yahoo_id\":27312,\"last_name\":\"Winn\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Detroit Jesuit (MI)\",\"depth_chart_order\":null,\"stats_id\":448253,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"georgewinn\",\"birth_date\":\"1990-11-10\",\"espn_id\":16488},\"4958\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030332\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1602536152108,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"maher\",\"depth_chart_position\":\"K\",\"player_id\":\"4958\",\"birth_city\":null,\"fantasy_data_id\":15854,\"years_exp\":7,\"hashtag\":\"#BrettMaher-NFL-HOU-2\",\"search_first_name\":\"brett\",\"rotowire_id\":9054,\"rotoworld_id\":9136,\"active\":true,\"search_rank\":768,\"age\":31,\"full_name\":\"Brett Maher\",\"sportradar_id\":\"99c9de87-7fe1-4d5e-928e-586f48af2d79\",\"pandascore_id\":null,\"yahoo_id\":27369,\"last_name\":\"Maher\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Kearney (NE)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brettmaher\",\"birth_date\":\"1989-11-21\",\"espn_id\":16486},\"7247\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597884630073,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"obinna\",\"depth_chart_position\":null,\"player_id\":\"7247\",\"birth_city\":null,\"fantasy_data_id\":22247,\"years_exp\":0,\"hashtag\":\"#GeorgeObinna-NFL-CLE-60\",\"search_first_name\":\"george\",\"rotowire_id\":15134,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"George Obinna\",\"sportradar_id\":\"bd4a07dd-aeae-4ae0-87e4-a8b65ad6870c\",\"pandascore_id\":null,\"yahoo_id\":33311,\"last_name\":\"Obinna\",\"metadata\":null,\"college\":\"Sacramento State\",\"high_school\":\"Tracy (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"georgeobinna\",\"birth_date\":\"1996-08-23\",\"espn_id\":3120964},\"3845\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jabriel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"WS\",\"player_id\":\"3845\",\"birth_city\":null,\"fantasy_data_id\":18665,\"years_exp\":0,\"hashtag\":\"#JabrielWashington-NFL-FA-41\",\"search_first_name\":\"jabriel\",\"rotowire_id\":11282,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jabriel Washington\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29972,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jabrielwashington\",\"birth_date\":\"1993-03-17\",\"espn_id\":2578483},\"1741\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gay\",\"depth_chart_position\":null,\"player_id\":\"1741\",\"birth_city\":null,\"fantasy_data_id\":15710,\"years_exp\":7,\"hashtag\":\"#JordanGay-NFL-FA-3\",\"search_first_name\":\"jordan\",\"rotowire_id\":9836,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jordan Gay\",\"sportradar_id\":\"6596864a-11a0-438d-8cc1-844ec05023bb\",\"pandascore_id\":null,\"yahoo_id\":27425,\"last_name\":\"Gay\",\"metadata\":null,\"college\":\"Centre\",\"high_school\":\"Danville HS (KY)\",\"depth_chart_order\":null,\"stats_id\":459636,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordangay\",\"birth_date\":\"1990-03-29\",\"espn_id\":16591},\"5354\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Canon\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rooker\",\"depth_chart_position\":null,\"player_id\":\"5354\",\"birth_city\":null,\"fantasy_data_id\":20414,\"years_exp\":0,\"hashtag\":\"#CanonRooker-NFL-FA-15\",\"search_first_name\":\"canon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Canon Rooker\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rooker\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"canonrooker\",\"birth_date\":null,\"espn_id\":3040582},\"1437\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khaled\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":null,\"player_id\":\"1437\",\"birth_city\":null,\"fantasy_data_id\":15006,\"years_exp\":7,\"hashtag\":\"#KhaledHolmes-NFL-FA-68\",\"search_first_name\":\"khaled\",\"rotowire_id\":8633,\"rotoworld_id\":8542,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Khaled Holmes\",\"sportradar_id\":\"05f8aa7b-3df8-4091-963d-1d4eabb56fa9\",\"pandascore_id\":null,\"yahoo_id\":26744,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Mater Dei (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'3\\\"\",\"search_full_name\":\"khaledholmes\",\"birth_date\":\"1990-01-19\",\"espn_id\":15897},\"6151\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035243\",\"first_name\":\"Miles\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606346402284,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":\"RB\",\"player_id\":\"6151\",\"birth_city\":null,\"fantasy_data_id\":20933,\"years_exp\":1,\"hashtag\":\"#MilesSanders-NFL-PHI-26\",\"search_first_name\":\"miles\",\"rotowire_id\":13521,\"rotoworld_id\":14040,\"active\":true,\"search_rank\":13,\"age\":23,\"full_name\":\"Miles Sanders\",\"sportradar_id\":\"ef3ceaf4-b733-4e06-a7f4-a94fc67361c1\",\"pandascore_id\":null,\"yahoo_id\":31885,\"last_name\":\"Sanders\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Penn State\",\"high_school\":\"Woodland Hills (PA)\",\"depth_chart_order\":1,\"stats_id\":924261,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'11\\\"\",\"search_full_name\":\"milessanders\",\"birth_date\":\"1997-05-01\",\"espn_id\":4045163},\"3954\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"metz\",\"depth_chart_position\":null,\"player_id\":\"3954\",\"birth_city\":null,\"fantasy_data_id\":18787,\"years_exp\":3,\"hashtag\":\"#JakeMetz-NFL-FA-96\",\"search_first_name\":\"jake\",\"rotowire_id\":11680,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jake Metz\",\"sportradar_id\":\"13a40c20-1b11-4e14-bd0f-5414f997b4b2\",\"pandascore_id\":null,\"yahoo_id\":30081,\"last_name\":\"Metz\",\"metadata\":null,\"college\":\"Shippensburg\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jakemetz\",\"birth_date\":\"1991-03-16\",\"espn_id\":3089089},\"5262\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034087\",\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588014660140,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ishmael\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5262\",\"birth_city\":null,\"fantasy_data_id\":20298,\"years_exp\":2,\"hashtag\":\"#SteveIshmael-NFL-FA-0\",\"search_first_name\":\"steve\",\"rotowire_id\":13075,\"rotoworld_id\":13555,\"active\":true,\"search_rank\":1447,\"age\":25,\"full_name\":\"Steve Ishmael\",\"sportradar_id\":\"dd75b91c-07ff-4aa2-8409-02841824fee2\",\"pandascore_id\":null,\"yahoo_id\":31369,\"last_name\":\"Ishmael\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":836224,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"steveishmael\",\"birth_date\":\"1995-07-18\",\"espn_id\":3123992},\"7237\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scotty\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588112720547,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7237\",\"birth_city\":null,\"fantasy_data_id\":22238,\"years_exp\":0,\"hashtag\":\"#ScottyWashington-NFL-CIN-14\",\"search_first_name\":\"scotty\",\"rotowire_id\":14588,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Scotty Washington\",\"sportradar_id\":\"c272aa3f-4ef7-468c-ad4d-a4eed44a6ab7\",\"pandascore_id\":null,\"yahoo_id\":33168,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"St. John's (DC)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'5\\\"\",\"search_full_name\":\"scottywashington\",\"birth_date\":\"1996-07-26\",\"espn_id\":3919557},\"5961\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035505\",\"first_name\":\"Jalin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596305109646,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"RB\",\"player_id\":\"5961\",\"birth_city\":null,\"fantasy_data_id\":20883,\"years_exp\":1,\"hashtag\":\"#JalinMoore-NFL-NYJ-30\",\"search_first_name\":\"jalin\",\"rotowire_id\":13641,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1578,\"age\":25,\"full_name\":\"Jalin Moore\",\"sportradar_id\":\"bbb3812b-cfee-4cab-80c9-6da225fec5b2\",\"pandascore_id\":null,\"yahoo_id\":32528,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Crest\",\"depth_chart_order\":7,\"stats_id\":822124,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jalinmoore\",\"birth_date\":\"1995-11-28\",\"espn_id\":3123675},\"5185\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034521\",\"first_name\":\"Allen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606512028030,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lazard\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5185\",\"birth_city\":null,\"fantasy_data_id\":20145,\"years_exp\":2,\"hashtag\":\"#AllenLazard-NFL-GB-13\",\"search_first_name\":\"allen\",\"rotowire_id\":12628,\"rotoworld_id\":13226,\"active\":true,\"search_rank\":146,\"age\":24,\"full_name\":\"Allen Lazard\",\"sportradar_id\":\"6a23db75-021b-4808-99e6-21a33d34202b\",\"pandascore_id\":null,\"yahoo_id\":31268,\"last_name\":\"Lazard\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Urbandale (IA)\",\"depth_chart_order\":1,\"stats_id\":837958,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'5\\\"\",\"search_full_name\":\"allenlazard\",\"birth_date\":\"1995-12-11\",\"espn_id\":3128390},\"3211\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032417\",\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605832814109,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perkins\",\"depth_chart_position\":\"RB\",\"player_id\":\"3211\",\"birth_city\":null,\"fantasy_data_id\":17972,\"years_exp\":4,\"hashtag\":\"#PaulPerkins-NFL-IND-26\",\"search_first_name\":\"paul\",\"rotowire_id\":10804,\"rotoworld_id\":11351,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Paul Perkins\",\"sportradar_id\":\"73015642-080b-48a9-b1b5-bfa4a606cfd1\",\"pandascore_id\":null,\"yahoo_id\":29383,\"last_name\":\"Perkins\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":4,\"stats_id\":691047,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"paulperkins\",\"birth_date\":\"1994-11-16\",\"espn_id\":2971589},\"5292\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034667\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603146320268,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"5292\",\"birth_city\":null,\"fantasy_data_id\":20375,\"years_exp\":2,\"hashtag\":\"#DevinRoss-NFL-NE-17\",\"search_first_name\":\"devin\",\"rotowire_id\":13302,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Devin Ross\",\"sportradar_id\":\"5f58e780-62ff-414e-8d32-b0608679e9b3\",\"pandascore_id\":null,\"yahoo_id\":31625,\"last_name\":\"Ross\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Colorado\",\"high_school\":\"Bishop Alemany (CA)\",\"depth_chart_order\":null,\"stats_id\":747866,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"devinross\",\"birth_date\":\"1995-08-12\",\"espn_id\":3052122},\"4942\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034747\",\"first_name\":\"Marcell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603324541944,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ateman\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4942\",\"birth_city\":null,\"fantasy_data_id\":19811,\"years_exp\":2,\"hashtag\":\"#MarcellAteman-NFL-LV-88\",\"search_first_name\":\"marcell\",\"rotowire_id\":12825,\"rotoworld_id\":13090,\"active\":true,\"search_rank\":370,\"age\":26,\"full_name\":\"Marcell Ateman\",\"sportradar_id\":\"b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51\",\"pandascore_id\":null,\"yahoo_id\":31198,\"last_name\":\"Ateman\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Wylie East (TX)\",\"depth_chart_order\":3,\"stats_id\":744883,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marcellateman\",\"birth_date\":\"1994-09-16\",\"espn_id\":3046320},\"3271\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033110\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606521327903,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"higbee\",\"depth_chart_position\":\"TE\",\"player_id\":\"3271\",\"birth_city\":null,\"fantasy_data_id\":18032,\"years_exp\":4,\"hashtag\":\"#TylerHigbee-NFL-LAR-89\",\"search_first_name\":\"tyler\",\"rotowire_id\":10854,\"rotoworld_id\":11430,\"active\":true,\"search_rank\":100,\"age\":27,\"full_name\":\"Tyler Higbee\",\"sportradar_id\":\"0df7912d-9e81-47ea-b4f7-d04986df4ee8\",\"pandascore_id\":null,\"yahoo_id\":29344,\"last_name\":\"Higbee\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"East Lake (FL)\",\"depth_chart_order\":1,\"stats_id\":604176,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tylerhigbee\",\"birth_date\":\"1993-01-01\",\"espn_id\":2573401},\"7370\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"JoJo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693372839,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7370\",\"birth_city\":null,\"fantasy_data_id\":22358,\"years_exp\":0,\"hashtag\":\"#JoJoWard-NFL-ARI-14\",\"search_first_name\":\"jojo\",\"rotowire_id\":15111,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"JoJo Ward\",\"sportradar_id\":\"4dcd8f79-23db-4555-a4dc-2eebd409e508\",\"pandascore_id\":null,\"yahoo_id\":33087,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Midway (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jojoward\",\"birth_date\":\"1997-12-09\",\"espn_id\":4373937},\"6623\":{\"position\":\"DB\",\"injury_notes\":\"Dotson has reverted to the injured reserve list after clearing waivers with an unspecified injury.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jomon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dotson\",\"depth_chart_position\":null,\"player_id\":\"6623\",\"birth_city\":null,\"fantasy_data_id\":21498,\"years_exp\":0,\"hashtag\":\"#JomonDotson-NFL-FA-25\",\"search_first_name\":\"jomon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jomon Dotson\",\"sportradar_id\":\"87df1dae-2eeb-430a-a2f3-95577bb3b7cf\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dotson\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jomondotson\",\"birth_date\":null,\"espn_id\":null},\"1524\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dorsey\",\"depth_chart_position\":null,\"player_id\":\"1524\",\"birth_city\":null,\"fantasy_data_id\":15134,\"years_exp\":2,\"hashtag\":\"#KevinDorsey-NFL-FA-6\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kevin Dorsey\",\"sportradar_id\":\"f59c0b26-a651-408c-b8d4-efe9ffa333c8\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dorsey\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kevindorsey\",\"birth_date\":\"1990-02-23\",\"espn_id\":15907},\"5337\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034167\",\"first_name\":\"Devante\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600000856647,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"downs\",\"depth_chart_position\":\"WLB\",\"player_id\":\"5337\",\"birth_city\":null,\"fantasy_data_id\":20036,\"years_exp\":2,\"hashtag\":\"#DevanteDowns-NFL-NYG-52\",\"search_first_name\":\"devante\",\"rotowire_id\":13004,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1400,\"age\":25,\"full_name\":\"Devante Downs\",\"sportradar_id\":\"6bf775cf-391f-4455-ba0f-264af0803ea8\",\"pandascore_id\":null,\"yahoo_id\":31195,\"last_name\":\"Downs\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Mountlake Terrace (WA)\",\"depth_chart_order\":1,\"stats_id\":820634,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'2\\\"\",\"search_full_name\":\"devantedowns\",\"birth_date\":\"1995-10-18\",\"espn_id\":3122593},\"706\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mays\",\"depth_chart_position\":null,\"player_id\":\"706\",\"birth_city\":null,\"fantasy_data_id\":12177,\"years_exp\":12,\"hashtag\":\"#JoeMays-NFL-FA-57\",\"search_first_name\":\"joe\",\"rotowire_id\":6233,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Joe Mays\",\"sportradar_id\":\"e63b17c0-4383-48a0-9b4f-7de8bc6571d4\",\"pandascore_id\":null,\"yahoo_id\":8977,\"last_name\":\"Mays\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Hyde Park (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joemays\",\"birth_date\":\"1985-07-06\",\"espn_id\":11434},\"6484\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035116\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1573000817907,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"onuoha\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6484\",\"birth_city\":null,\"fantasy_data_id\":21489,\"years_exp\":1,\"hashtag\":\"#MichaelOnuoha-NFL-FA-0\",\"search_first_name\":\"michael\",\"rotowire_id\":14122,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1745,\"age\":27,\"full_name\":\"Michael Onuoha\",\"sportradar_id\":\"a8873d1a-d00f-454a-b18d-8e833d429108\",\"pandascore_id\":null,\"yahoo_id\":32311,\"last_name\":\"Onuoha\",\"metadata\":null,\"college\":\"Texas A&M-Commerce\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelonuoha\",\"birth_date\":\"1993-06-29\",\"espn_id\":4290803},\"264\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":null,\"player_id\":\"264\",\"birth_city\":null,\"fantasy_data_id\":6597,\"years_exp\":14,\"hashtag\":\"#GregJennings-NFL-FA-85\",\"search_first_name\":\"greg\",\"rotowire_id\":4871,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Greg Jennings\",\"sportradar_id\":\"ff937065-a20f-4968-a138-8ecd3a8b7cdb\",\"pandascore_id\":null,\"yahoo_id\":7801,\"last_name\":\"Jennings\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Kalamazoo Central (MI)\",\"depth_chart_order\":null,\"stats_id\":156869,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gregjennings\",\"birth_date\":\"1983-09-21\",\"espn_id\":9638},\"2877\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sebetic\",\"depth_chart_position\":null,\"player_id\":\"2877\",\"birth_city\":null,\"fantasy_data_id\":17345,\"years_exp\":1,\"hashtag\":\"#KyleSebetic-NFL-FA-41\",\"search_first_name\":\"kyle\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Sebetic\",\"sportradar_id\":\"0c16ea9d-33a9-4e61-babb-b4c6e6e4e950\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sebetic\",\"metadata\":null,\"college\":\"Dayton\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"165\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kylesebetic\",\"birth_date\":\"1991-06-27\",\"espn_id\":17471},\"3387\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniels\",\"depth_chart_position\":null,\"player_id\":\"3387\",\"birth_city\":null,\"fantasy_data_id\":18148,\"years_exp\":3,\"hashtag\":\"#StevenDaniels-NFL-FA-43\",\"search_first_name\":\"steven\",\"rotowire_id\":11017,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Steven Daniels\",\"sportradar_id\":\"c0442772-5d92-49fa-b77a-e2ddb7bc599b\",\"pandascore_id\":null,\"yahoo_id\":29466,\"last_name\":\"Daniels\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"stevendaniels\",\"birth_date\":\"1992-12-12\",\"espn_id\":2969870},\"3646\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quayvon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hicks\",\"depth_chart_position\":null,\"player_id\":\"3646\",\"birth_city\":null,\"fantasy_data_id\":18437,\"years_exp\":2,\"hashtag\":\"#QuayvonHicks-NFL-FA-36\",\"search_first_name\":\"quayvon\",\"rotowire_id\":11057,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Quayvon Hicks\",\"sportradar_id\":\"90521234-8d86-4112-a471-2e3bb6276d6a\",\"pandascore_id\":null,\"yahoo_id\":30087,\"last_name\":\"Hicks\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694643,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'1\\\"\",\"search_full_name\":\"quayvonhicks\",\"birth_date\":\"1994-07-17\",\"espn_id\":2977646},\"2334\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032208\",\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604436344934,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dorsett\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2334\",\"birth_city\":null,\"fantasy_data_id\":16790,\"years_exp\":5,\"hashtag\":\"#PhillipDorsett-NFL-SEA-11\",\"search_first_name\":\"phillip\",\"rotowire_id\":10208,\"rotoworld_id\":10381,\"active\":true,\"search_rank\":197,\"age\":27,\"full_name\":\"Phillip Dorsett\",\"sportradar_id\":\"c682e8ea-fe48-45d2-af60-682a6125ab22\",\"pandascore_id\":null,\"yahoo_id\":28417,\"last_name\":\"Dorsett\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":2,\"stats_id\":596417,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"phillipdorsett\",\"birth_date\":\"1993-01-05\",\"espn_id\":2579604},\"3526\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032667\",\"first_name\":\"Roy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605227714107,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"robertsonharris\",\"depth_chart_position\":null,\"player_id\":\"3526\",\"birth_city\":null,\"fantasy_data_id\":18292,\"years_exp\":4,\"hashtag\":\"#RoyRobertsonHarris-NFL-CHI-95\",\"search_first_name\":\"roy\",\"rotowire_id\":11356,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1060,\"age\":27,\"full_name\":\"Roy Robertson-Harris\",\"sportradar_id\":\"36248cd5-f747-4960-b66a-a5d4f481e098\",\"pandascore_id\":null,\"yahoo_id\":29920,\"last_name\":\"Robertson-Harris\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"South Grand Prairie (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'5\\\"\",\"search_full_name\":\"royrobertsonharris\",\"birth_date\":\"1993-07-23\",\"espn_id\":2574891},\"902\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028114\",\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605829814050,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"RWR\",\"player_id\":\"902\",\"birth_city\":null,\"fantasy_data_id\":13117,\"years_exp\":9,\"hashtag\":\"#DwayneHarris-NFL-CHI-82\",\"search_first_name\":\"dwayne\",\"rotowire_id\":7385,\"rotoworld_id\":6683,\"active\":true,\"search_rank\":639,\"age\":33,\"full_name\":\"Dwayne Harris\",\"sportradar_id\":\"5ed2cea8-e0c6-482c-9ee1-548c06612226\",\"pandascore_id\":null,\"yahoo_id\":24963,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"Tucker (GA)\",\"depth_chart_order\":3,\"stats_id\":324534,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dwayneharris\",\"birth_date\":\"1987-09-16\",\"espn_id\":14100},\"4894\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"4894\",\"birth_city\":null,\"fantasy_data_id\":19792,\"years_exp\":0,\"hashtag\":\"#EricWashington-NFL-FA-0\",\"search_first_name\":\"eric\",\"rotowire_id\":null,\"rotoworld_id\":13073,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eric Washington\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Washington\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ericwashington\",\"birth_date\":null,\"espn_id\":null},\"3611\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swanson\",\"depth_chart_position\":null,\"player_id\":\"3611\",\"birth_city\":null,\"fantasy_data_id\":18398,\"years_exp\":0,\"hashtag\":\"#GarrettSwanson-NFL-FA-1\",\"search_first_name\":\"garrett\",\"rotowire_id\":11299,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Garrett Swanson\",\"sportradar_id\":\"9460bd4a-39a0-493f-9d92-7aec636e6bd9\",\"pandascore_id\":null,\"yahoo_id\":29585,\"last_name\":\"Swanson\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"garrettswanson\",\"birth_date\":\"1994-06-24\",\"espn_id\":2981178},\"5825\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034906\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565492415192,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cotton\",\"depth_chart_position\":null,\"player_id\":\"5825\",\"birth_city\":null,\"fantasy_data_id\":20716,\"years_exp\":2,\"hashtag\":\"#EricCotton-NFL-FA-49\",\"search_first_name\":\"eric\",\"rotowire_id\":13955,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Eric Cotton\",\"sportradar_id\":\"4a34b8b5-3410-4754-9d6e-c0ee28428f47\",\"pandascore_id\":null,\"yahoo_id\":31807,\"last_name\":\"Cotton\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ericcotton\",\"birth_date\":\"1995-02-28\",\"espn_id\":3043274},\"3841\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032934\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604958328626,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mcrae\",\"depth_chart_position\":null,\"player_id\":\"3841\",\"birth_city\":null,\"fantasy_data_id\":18661,\"years_exp\":4,\"hashtag\":\"#TonyMcRae-NFL-DET-34\",\"search_first_name\":\"tony\",\"rotowire_id\":11656,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1107,\"age\":27,\"full_name\":\"Tony McRae\",\"sportradar_id\":\"be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3\",\"pandascore_id\":null,\"yahoo_id\":29962,\"last_name\":\"McRae\",\"metadata\":null,\"college\":\"North Carolina A&T\",\"high_school\":\"Scotland (NC)\",\"depth_chart_order\":null,\"stats_id\":683649,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tonymcrae\",\"birth_date\":\"1993-05-03\",\"espn_id\":2969422},\"5056\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034797\",\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604362530452,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":\"LB\",\"player_id\":\"5056\",\"birth_city\":null,\"fantasy_data_id\":19882,\"years_exp\":2,\"hashtag\":\"#JeromeBaker-NFL-MIA-55\",\"search_first_name\":\"jerome\",\"rotowire_id\":12596,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1320,\"age\":23,\"full_name\":\"Jerome Baker\",\"sportradar_id\":\"53e7c80e-8bf9-4ab2-ab3e-80cb556ea784\",\"pandascore_id\":null,\"yahoo_id\":31043,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Benedictine (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeromebaker\",\"birth_date\":\"1996-12-25\",\"espn_id\":3915507},\"5732\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034693\",\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533000007551,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"machorro\",\"depth_chart_position\":null,\"player_id\":\"5732\",\"birth_city\":null,\"fantasy_data_id\":20640,\"years_exp\":2,\"hashtag\":\"#JaredMachorro-NFL-FA-60\",\"search_first_name\":\"jared\",\"rotowire_id\":13324,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jared Machorro\",\"sportradar_id\":\"a6fa52bf-e47d-4799-b0f2-cb9fa9939220\",\"pandascore_id\":null,\"yahoo_id\":31692,\"last_name\":\"Machorro\",\"metadata\":null,\"college\":\"Texas A&M-Commerce\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jaredmachorro\",\"birth_date\":\"1996-02-24\",\"espn_id\":3919077},\"1148\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029647\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599591348982,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilber\",\"depth_chart_position\":\"WLB\",\"player_id\":\"1148\",\"birth_city\":null,\"fantasy_data_id\":14167,\"years_exp\":8,\"hashtag\":\"#KyleWilber-NFL-LV-58\",\"search_first_name\":\"kyle\",\"rotowire_id\":8224,\"rotoworld_id\":null,\"active\":true,\"search_rank\":676,\"age\":31,\"full_name\":\"Kyle Wilber\",\"sportradar_id\":\"cdbaf089-9c7e-418f-829e-d903c28b2628\",\"pandascore_id\":null,\"yahoo_id\":25823,\"last_name\":\"Wilber\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Apopka (FL)\",\"depth_chart_order\":2,\"stats_id\":397413,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylewilber\",\"birth_date\":\"1989-04-26\",\"espn_id\":15038},\"2953\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031646\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1534189541303,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyko\",\"depth_chart_position\":null,\"player_id\":\"2953\",\"birth_city\":null,\"fantasy_data_id\":17429,\"years_exp\":5,\"hashtag\":\"#BrettBoyko-NFL-FA-67\",\"search_first_name\":\"brett\",\"rotowire_id\":10764,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brett Boyko\",\"sportradar_id\":\"f43c9d6b-8caf-4f00-a0c2-bb1f73e70a86\",\"pandascore_id\":null,\"yahoo_id\":28646,\"last_name\":\"Boyko\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brettboyko\",\"birth_date\":\"1992-08-04\",\"espn_id\":2514505},\"1253\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029123\",\"first_name\":\"Marquette\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1554769809727,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"1253\",\"birth_city\":null,\"fantasy_data_id\":14628,\"years_exp\":8,\"hashtag\":\"#MarquetteKing-NFL-FA-1\",\"search_first_name\":\"marquette\",\"rotowire_id\":9083,\"rotoworld_id\":8142,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Marquette King\",\"sportradar_id\":\"ae103342-a4f0-4dbd-8c2a-63d9b159d9bd\",\"pandascore_id\":null,\"yahoo_id\":26422,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Fort Valley State\",\"high_school\":\"Rutland (GA)\",\"depth_chart_order\":null,\"stats_id\":527640,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marquetteking\",\"birth_date\":\"1988-10-26\",\"espn_id\":15389},\"3011\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"everett\",\"depth_chart_position\":\"RT\",\"player_id\":\"3011\",\"birth_city\":null,\"fantasy_data_id\":17556,\"years_exp\":1,\"hashtag\":\"#AntoineEverett-NFL-FA-61\",\"search_first_name\":\"antoine\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Antoine Everett\",\"sportradar_id\":\"64395a40-7417-4a93-ba0e-63c286bca656\",\"pandascore_id\":null,\"yahoo_id\":29130,\"last_name\":\"Everett\",\"metadata\":null,\"college\":\"McNeese State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'2\\\"\",\"search_full_name\":\"antoineeverett\",\"birth_date\":\"1991-11-16\",\"espn_id\":null},\"4034\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033280\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606586432827,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccaffrey\",\"depth_chart_position\":\"RB\",\"player_id\":\"4034\",\"birth_city\":null,\"fantasy_data_id\":18877,\"years_exp\":3,\"hashtag\":\"#ChristianMcCaffrey-NFL-CAR-22\",\"search_first_name\":\"christian\",\"rotowire_id\":11690,\"rotoworld_id\":12198,\"active\":true,\"search_rank\":1,\"age\":24,\"full_name\":\"Christian McCaffrey\",\"sportradar_id\":\"f96db0af-5e25-42d1-a07a-49b4e065b364\",\"pandascore_id\":null,\"yahoo_id\":30121,\"last_name\":\"McCaffrey\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Valor Christian (CO)\",\"depth_chart_order\":3,\"stats_id\":830517,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"christianmccaffrey\",\"birth_date\":\"1996-06-07\",\"espn_id\":3117251},\"5351\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034371\",\"first_name\":\"Da'Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606342802930,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hand\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5351\",\"birth_city\":null,\"fantasy_data_id\":19934,\"years_exp\":2,\"hashtag\":\"#DaShawnHand-NFL-DET-93\",\"search_first_name\":\"dashawn\",\"rotowire_id\":12821,\"rotoworld_id\":13176,\"active\":true,\"search_rank\":1353,\"age\":25,\"full_name\":\"Da'Shawn Hand\",\"sportradar_id\":\"e4114f9d-80da-4e39-bd12-cd9cf2c0d720\",\"pandascore_id\":null,\"yahoo_id\":31084,\"last_name\":\"Hand\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Woodbridge (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dashawnhand\",\"birth_date\":\"1995-11-14\",\"espn_id\":3126352},\"2917\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vogler\",\"depth_chart_position\":null,\"player_id\":\"2917\",\"birth_city\":null,\"fantasy_data_id\":17385,\"years_exp\":1,\"hashtag\":\"#BrianVogler-NFL-FA-85\",\"search_first_name\":\"brian\",\"rotowire_id\":10535,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brian Vogler\",\"sportradar_id\":\"38374432-c4e4-4cfc-8710-c62783a44461\",\"pandascore_id\":null,\"yahoo_id\":28693,\"last_name\":\"Vogler\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557176,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brianvogler\",\"birth_date\":\"1992-03-07\",\"espn_id\":null},\"3614\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032881\",\"first_name\":\"Tommylee\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604544629474,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3614\",\"birth_city\":null,\"fantasy_data_id\":18401,\"years_exp\":4,\"hashtag\":\"#TommyleeLewis-NFL-NO-14\",\"search_first_name\":\"tommylee\",\"rotowire_id\":11508,\"rotoworld_id\":11933,\"active\":true,\"search_rank\":1073,\"age\":28,\"full_name\":\"Tommylee Lewis\",\"sportradar_id\":\"b103b096-6be9-4f87-9ae4-5d217f560685\",\"pandascore_id\":null,\"yahoo_id\":29854,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"W.T. Dwyer (FL)\",\"depth_chart_order\":3,\"stats_id\":608059,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"168\",\"height\":\"5'7\\\"\",\"search_full_name\":\"tommyleelewis\",\"birth_date\":\"1992-10-24\",\"espn_id\":2574918},\"2228\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031394\",\"first_name\":\"E.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596378015807,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"gaines\",\"depth_chart_position\":null,\"player_id\":\"2228\",\"birth_city\":null,\"fantasy_data_id\":16620,\"years_exp\":6,\"hashtag\":\"#EJGaines-NFL-BUF-28\",\"search_first_name\":\"ej\",\"rotowire_id\":9335,\"rotoworld_id\":9619,\"active\":true,\"search_rank\":837,\"age\":28,\"full_name\":\"E.J. Gaines\",\"sportradar_id\":\"ab7df007-37bf-407b-b77d-0e719c80f065\",\"pandascore_id\":null,\"yahoo_id\":27716,\"last_name\":\"Gaines\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Fort Osage (MO)\",\"depth_chart_order\":null,\"stats_id\":553230,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ejgaines\",\"birth_date\":\"1992-02-23\",\"espn_id\":16898},\"7191\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaylon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599589248543,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"7191\",\"birth_city\":null,\"fantasy_data_id\":22193,\"years_exp\":0,\"hashtag\":\"#JaylonMoore-NFL-BAL-81\",\"search_first_name\":\"jaylon\",\"rotowire_id\":15135,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jaylon Moore\",\"sportradar_id\":\"34cc08f0-53ee-4fc8-95a3-971e6620884c\",\"pandascore_id\":null,\"yahoo_id\":33001,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Tennessee-Martin\",\"high_school\":\"Mitchell (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jaylonmoore\",\"birth_date\":\"1997-07-01\",\"espn_id\":3909416},\"3307\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032418\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605459911109,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dahl\",\"depth_chart_position\":\"LG\",\"player_id\":\"3307\",\"birth_city\":null,\"fantasy_data_id\":18068,\"years_exp\":4,\"hashtag\":\"#JoeDahl-NFL-DET-66\",\"search_first_name\":\"joe\",\"rotowire_id\":10987,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joe Dahl\",\"sportradar_id\":\"952d6412-2351-48aa-8053-35a456d4e869\",\"pandascore_id\":null,\"yahoo_id\":29385,\"last_name\":\"Dahl\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"University (WA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joedahl\",\"birth_date\":\"1993-04-09\",\"espn_id\":2978331},\"942\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Allen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reisner\",\"depth_chart_position\":null,\"player_id\":\"942\",\"birth_city\":null,\"fantasy_data_id\":13273,\"years_exp\":3,\"hashtag\":\"#AllenReisner-NFL-FA-85\",\"search_first_name\":\"allen\",\"rotowire_id\":7431,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Allen Reisner\",\"sportradar_id\":\"979ecdc4-5e0d-48f7-ad50-db330aee2c2c\",\"pandascore_id\":null,\"yahoo_id\":25230,\"last_name\":\"Reisner\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":399379,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"allenreisner\",\"birth_date\":\"1988-09-29\",\"espn_id\":14433},\"1555\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030085\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606506327304,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stills\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1555\",\"birth_city\":null,\"fantasy_data_id\":15196,\"years_exp\":7,\"hashtag\":\"#KennyStills-NFL-HOU-12\",\"search_first_name\":\"kenny\",\"rotowire_id\":8800,\"rotoworld_id\":8482,\"active\":true,\"search_rank\":235,\"age\":28,\"full_name\":\"Kenny Stills\",\"sportradar_id\":\"4734f8dc-2ca4-4437-88f2-c8b8974abefc\",\"pandascore_id\":null,\"yahoo_id\":26767,\"last_name\":\"Stills\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"La Costa Canyon (CA)\",\"depth_chart_order\":1,\"stats_id\":542896,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kennystills\",\"birth_date\":\"1992-04-22\",\"espn_id\":16016},\"5088\":{\"position\":\"LB\",\"injury_notes\":\"Ejiofor was injured during practice and is expected to be out for an extended period of time.\",\"birth_country\":null,\"gsis_id\":\"00-0034402\",\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598055011285,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ejiofor\",\"depth_chart_position\":null,\"player_id\":\"5088\",\"birth_city\":null,\"fantasy_data_id\":19978,\"years_exp\":2,\"hashtag\":\"#DukeEjiofor-NFL-HOU-53\",\"search_first_name\":\"duke\",\"rotowire_id\":12933,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Duke Ejiofor\",\"sportradar_id\":\"43aeb127-28e7-4fac-a611-39c38f3f7628\",\"pandascore_id\":null,\"yahoo_id\":31146,\"last_name\":\"Ejiofor\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Alief Taylor (TX)\",\"depth_chart_order\":null,\"stats_id\":740260,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dukeejiofor\",\"birth_date\":\"1995-04-24\",\"espn_id\":3039783},\"4601\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033756\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1542066942406,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thornton\",\"depth_chart_position\":null,\"player_id\":\"4601\",\"birth_city\":null,\"fantasy_data_id\":19490,\"years_exp\":3,\"hashtag\":\"#JoshThornton-NFL-FA-27\",\"search_first_name\":\"josh\",\"rotowire_id\":12465,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josh Thornton\",\"sportradar_id\":\"ac65cfa3-1db6-40c1-a3f8-563767d599ef\",\"pandascore_id\":null,\"yahoo_id\":30776,\"last_name\":\"Thornton\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshthornton\",\"birth_date\":\"1992-11-24\",\"espn_id\":2969716},\"5348\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034375\",\"first_name\":\"Kyzir\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1606012809481,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"5348\",\"birth_city\":null,\"fantasy_data_id\":19940,\"years_exp\":2,\"hashtag\":\"#KyzirWhite-NFL-LAC-44\",\"search_first_name\":\"kyzir\",\"rotowire_id\":12787,\"rotoworld_id\":13245,\"active\":true,\"search_rank\":1356,\"age\":24,\"full_name\":\"Kyzir White\",\"sportradar_id\":\"c6303f3b-9c18-4afe-b0bf-d8270ca9db21\",\"pandascore_id\":null,\"yahoo_id\":31089,\"last_name\":\"White\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Emmaus (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kyzirwhite\",\"birth_date\":\"1996-03-24\",\"espn_id\":4039254},\"4011\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonough\",\"depth_chart_position\":null,\"player_id\":\"4011\",\"birth_city\":null,\"fantasy_data_id\":18850,\"years_exp\":0,\"hashtag\":\"#TerryMcDonough-NFL-FA-0\",\"search_first_name\":\"terry\",\"rotowire_id\":null,\"rotoworld_id\":12157,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Terry McDonough\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McDonough\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"terrymcdonough\",\"birth_date\":null,\"espn_id\":null},\"5545\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034179\",\"first_name\":\"Raven\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604621408681,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":\"SS\",\"player_id\":\"5545\",\"birth_city\":null,\"fantasy_data_id\":20293,\"years_exp\":2,\"hashtag\":\"#RavenGreene-NFL-GB-24\",\"search_first_name\":\"raven\",\"rotowire_id\":13111,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1444,\"age\":25,\"full_name\":\"Raven Greene\",\"sportradar_id\":\"374036ec-f329-4098-8972-0d9ca326fd37\",\"pandascore_id\":null,\"yahoo_id\":31433,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"First Colonial (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ravengreene\",\"birth_date\":\"1995-02-02\",\"espn_id\":3049331},\"1756\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"1756\",\"birth_city\":null,\"fantasy_data_id\":15773,\"years_exp\":7,\"hashtag\":\"#JordanHill-NFL-FA-93\",\"search_first_name\":\"jordan\",\"rotowire_id\":8679,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jordan Hill\",\"sportradar_id\":\"b48d3452-0067-4f79-8fd5-8b1adc1bcd36\",\"pandascore_id\":null,\"yahoo_id\":26710,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Steelton-Highspire (PA)\",\"depth_chart_order\":null,\"stats_id\":514122,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanhill\",\"birth_date\":\"1991-02-08\",\"espn_id\":15843},\"6297\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035001\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584038114862,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"asafoadjei\",\"depth_chart_position\":null,\"player_id\":\"6297\",\"birth_city\":null,\"fantasy_data_id\":21135,\"years_exp\":1,\"hashtag\":\"#GeorgeAsafoAdjei-NFL-FA-0\",\"search_first_name\":\"george\",\"rotowire_id\":13992,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"George Asafo-Adjei\",\"sportradar_id\":\"b867114e-9ac1-4368-aa44-226b6342c500\",\"pandascore_id\":null,\"yahoo_id\":32064,\"last_name\":\"Asafo-Adjei\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'5\\\"\",\"search_full_name\":\"georgeasafoadjei\",\"birth_date\":\"1997-01-12\",\"espn_id\":3915238},\"2994\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"2994\",\"birth_city\":null,\"fantasy_data_id\":17516,\"years_exp\":1,\"hashtag\":\"#StevenClark-NFL-FA-2\",\"search_first_name\":\"steven\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Steven Clark\",\"sportradar_id\":\"e5866a89-1c17-4299-bfcb-3bbc900f3ea5\",\"pandascore_id\":null,\"yahoo_id\":27823,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stevenclark\",\"birth_date\":\"1991-07-20\",\"espn_id\":16979},\"5195\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034670\",\"first_name\":\"Akrum\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535847008044,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wadley\",\"depth_chart_position\":null,\"player_id\":\"5195\",\"birth_city\":null,\"fantasy_data_id\":20192,\"years_exp\":2,\"hashtag\":\"#AkrumWadley-NFL-FA-38\",\"search_first_name\":\"akrum\",\"rotowire_id\":12783,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Akrum Wadley\",\"sportradar_id\":\"ac6aeee0-d291-481a-a914-947061b639b2\",\"pandascore_id\":null,\"yahoo_id\":31622,\"last_name\":\"Wadley\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740737,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'10\\\"\",\"search_full_name\":\"akrumwadley\",\"birth_date\":\"1995-03-13\",\"espn_id\":3040146},\"3799\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"glidden\",\"depth_chart_position\":null,\"player_id\":\"3799\",\"birth_city\":null,\"fantasy_data_id\":18613,\"years_exp\":0,\"hashtag\":\"#DavidGlidden-NFL-FA-7\",\"search_first_name\":\"david\",\"rotowire_id\":11291,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Glidden\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29900,\"last_name\":\"Glidden\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'8\\\"\",\"search_full_name\":\"davidglidden\",\"birth_date\":\"1992-07-10\",\"espn_id\":2577517},\"4535\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wroblewski\",\"depth_chart_position\":null,\"player_id\":\"4535\",\"birth_city\":null,\"fantasy_data_id\":19414,\"years_exp\":2,\"hashtag\":\"#StevenWroblewski-NFL-FA-48\",\"search_first_name\":\"steven\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Steven Wroblewski\",\"sportradar_id\":\"57ff27bd-8ab4-4d4a-a6a0-e33d2e2d107d\",\"pandascore_id\":null,\"yahoo_id\":30498,\"last_name\":\"Wroblewski\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":878350,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'7\\\"\",\"search_full_name\":\"stevenwroblewski\",\"birth_date\":null,\"espn_id\":3910617},\"1501\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"1501\",\"birth_city\":null,\"fantasy_data_id\":15101,\"years_exp\":3,\"hashtag\":\"#PhillipThomas-NFL-FA-43\",\"search_first_name\":\"phillip\",\"rotowire_id\":8686,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Phillip Thomas\",\"sportradar_id\":\"dfbf3f25-3c42-484e-8859-16b159c0146c\",\"pandascore_id\":null,\"yahoo_id\":26742,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"phillipthomas\",\"birth_date\":\"1989-03-01\",\"espn_id\":15886},\"5169\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1527628501601,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"earl\",\"depth_chart_position\":null,\"player_id\":\"5169\",\"birth_city\":null,\"fantasy_data_id\":20123,\"years_exp\":1,\"hashtag\":\"#MalikEarl-NFL-DAL-19\",\"search_first_name\":\"malik\",\"rotowire_id\":13072,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1004,\"age\":null,\"full_name\":\"Malik Earl\",\"sportradar_id\":\"52d32434-c0ad-4285-9f0d-506972583fbf\",\"pandascore_id\":null,\"yahoo_id\":31281,\"last_name\":\"Earl\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":840449,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malikearl\",\"birth_date\":null,\"espn_id\":3139223},\"4071\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033281\",\"first_name\":\"Marlon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605111304601,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"humphrey\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4071\",\"birth_city\":null,\"fantasy_data_id\":18917,\"years_exp\":3,\"hashtag\":\"#MarlonHumphrey-NFL-BAL-44\",\"search_first_name\":\"marlon\",\"rotowire_id\":12017,\"rotoworld_id\":12287,\"active\":true,\"search_rank\":1124,\"age\":24,\"full_name\":\"Marlon Humphrey\",\"sportradar_id\":\"bf9749c6-6609-456e-a3eb-b8cab21dd76a\",\"pandascore_id\":null,\"yahoo_id\":30129,\"last_name\":\"Humphrey\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Hoover (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marlonhumphrey\",\"birth_date\":\"1996-07-08\",\"espn_id\":3126356},\"5215\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034217\",\"first_name\":\"Tray\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1588122021033,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":\"FS\",\"player_id\":\"5215\",\"birth_city\":null,\"fantasy_data_id\":20165,\"years_exp\":2,\"hashtag\":\"#TrayMatthews-NFL-FA-0\",\"search_first_name\":\"tray\",\"rotowire_id\":12831,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tray Matthews\",\"sportradar_id\":\"a45043f1-9e33-4564-bd69-df6528cbd03f\",\"pandascore_id\":null,\"yahoo_id\":31237,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"traymatthews\",\"birth_date\":\"1994-10-18\",\"espn_id\":3043146},\"1028\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029412\",\"first_name\":\"Vinny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606514128534,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"curry\",\"depth_chart_position\":\"LDE\",\"player_id\":\"1028\",\"birth_city\":null,\"fantasy_data_id\":13722,\"years_exp\":8,\"hashtag\":\"#VinnyCurry-NFL-PHI-75\",\"search_first_name\":\"vinny\",\"rotowire_id\":8139,\"rotoworld_id\":7531,\"active\":true,\"search_rank\":653,\"age\":32,\"full_name\":\"Vinny Curry\",\"sportradar_id\":\"e929b3d8-6f7b-41f2-acfa-fe3840d03509\",\"pandascore_id\":null,\"yahoo_id\":25769,\"last_name\":\"Curry\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Neptune (NJ)\",\"depth_chart_order\":2,\"stats_id\":407642,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"279\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vinnycurry\",\"birth_date\":\"1988-06-30\",\"espn_id\":14959},\"718\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Junior\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1540847406632,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"galette\",\"depth_chart_position\":null,\"player_id\":\"718\",\"birth_city\":null,\"fantasy_data_id\":12241,\"years_exp\":10,\"hashtag\":\"#JuniorGalette-NFL-FA-58\",\"search_first_name\":\"junior\",\"rotowire_id\":7062,\"rotoworld_id\":6173,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Junior Galette\",\"sportradar_id\":\"0d5bb1d0-5fa1-4a33-a7d4-d1eb920915f5\",\"pandascore_id\":null,\"yahoo_id\":24405,\"last_name\":\"Galette\",\"metadata\":null,\"college\":\"Stillman - AL\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":334303,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'2\\\"\",\"search_full_name\":\"juniorgalette\",\"birth_date\":\"1988-03-27\",\"espn_id\":13566},\"3474\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032517\",\"first_name\":\"Briean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1580250659693,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boddycalhoun\",\"depth_chart_position\":null,\"player_id\":\"3474\",\"birth_city\":null,\"fantasy_data_id\":18239,\"years_exp\":4,\"hashtag\":\"#BrieanBoddyCalhoun-NFL-FA-0\",\"search_first_name\":\"briean\",\"rotowire_id\":10910,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Briean Boddy-Calhoun\",\"sportradar_id\":\"2967c556-a7b2-407a-8013-cee8d99b41cf\",\"pandascore_id\":null,\"yahoo_id\":29507,\"last_name\":\"Boddy-Calhoun\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651572,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brieanboddycalhoun\",\"birth_date\":\"1993-01-21\",\"espn_id\":2970694},\"1375\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marc\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anthony\",\"depth_chart_position\":null,\"player_id\":\"1375\",\"birth_city\":null,\"fantasy_data_id\":14897,\"years_exp\":2,\"hashtag\":\"#MarcAnthony-NFL-FA-35\",\"search_first_name\":\"marc\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marc Anthony\",\"sportradar_id\":\"b04538ac-99b2-42de-a48f-8e7b07b57f85\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Anthony\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marcanthony\",\"birth_date\":\"1989-11-14\",\"espn_id\":15931},\"6492\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035097\",\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1587251737778,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"6492\",\"birth_city\":null,\"fantasy_data_id\":21492,\"years_exp\":1,\"hashtag\":\"#TerryWright-NFL-FA-0\",\"search_first_name\":\"terry\",\"rotowire_id\":13897,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Terry Wright\",\"sportradar_id\":\"161b1732-e10d-41b1-933b-494f5c37c534\",\"pandascore_id\":null,\"yahoo_id\":32330,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1066824,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'10\\\"\",\"search_full_name\":\"terrywright\",\"birth_date\":\"1997-01-28\",\"espn_id\":4260393},\"6420\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035417\",\"first_name\":\"Jon'Vea\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599705344898,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6420\",\"birth_city\":null,\"fantasy_data_id\":21451,\"years_exp\":1,\"hashtag\":\"#JonVeaJohnson-NFL-DAL-81\",\"search_first_name\":\"jonvea\",\"rotowire_id\":13912,\"rotoworld_id\":null,\"active\":true,\"search_rank\":580,\"age\":24,\"full_name\":\"Jon'Vea Johnson\",\"sportradar_id\":\"bc67a9f0-8c96-4114-8b46-4c97fdd577d1\",\"pandascore_id\":null,\"yahoo_id\":32200,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"West Side (IN)\",\"depth_chart_order\":3,\"stats_id\":833478,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonveajohnson\",\"birth_date\":\"1995-12-23\",\"espn_id\":3126095},\"3197\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033073\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605719429267,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ogbah\",\"depth_chart_position\":\"DE\",\"player_id\":\"3197\",\"birth_city\":null,\"fantasy_data_id\":17958,\"years_exp\":4,\"hashtag\":\"#EmmanuelOgbah-NFL-MIA-91\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":11155,\"rotoworld_id\":11317,\"active\":true,\"search_rank\":965,\"age\":27,\"full_name\":\"Emmanuel Ogbah\",\"sportradar_id\":\"2300fe3b-c81f-4786-ae0c-0c229644239d\",\"pandascore_id\":null,\"yahoo_id\":29266,\"last_name\":\"Ogbah\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"George Bush (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"emmanuelogbah\",\"birth_date\":\"1993-11-06\",\"espn_id\":2977740},\"3356\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032433\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571182249724,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":\"RT\",\"player_id\":\"3356\",\"birth_city\":null,\"fantasy_data_id\":18117,\"years_exp\":4,\"hashtag\":\"#KyleMurphy-NFL-FA-0\",\"search_first_name\":\"kyle\",\"rotowire_id\":11140,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Murphy\",\"sportradar_id\":\"cce52ea1-7e17-4992-8911-e6b07b7b3831\",\"pandascore_id\":null,\"yahoo_id\":29434,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kylemurphy\",\"birth_date\":\"1993-12-11\",\"espn_id\":2978275},\"2163\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031242\",\"first_name\":\"Shamar\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600115165641,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stephen\",\"depth_chart_position\":\"NT\",\"player_id\":\"2163\",\"birth_city\":null,\"fantasy_data_id\":16515,\"years_exp\":6,\"hashtag\":\"#ShamarStephen-NFL-MIN-93\",\"search_first_name\":\"shamar\",\"rotowire_id\":9400,\"rotoworld_id\":null,\"active\":true,\"search_rank\":831,\"age\":29,\"full_name\":\"Shamar Stephen\",\"sportradar_id\":\"e1b3b636-39b5-46cf-aa7f-216b09ead7e6\",\"pandascore_id\":null,\"yahoo_id\":27748,\"last_name\":\"Stephen\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Long Island Lutheran (NY)\",\"depth_chart_order\":1,\"stats_id\":511821,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"shamarstephen\",\"birth_date\":\"1991-02-25\",\"espn_id\":16866},\"856\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027949\",\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606485303627,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watt\",\"depth_chart_position\":\"RDE\",\"player_id\":\"856\",\"birth_city\":null,\"fantasy_data_id\":12955,\"years_exp\":9,\"hashtag\":\"#JJWatt-NFL-HOU-99\",\"search_first_name\":\"jj\",\"rotowire_id\":7323,\"rotoworld_id\":6469,\"active\":true,\"search_rank\":633,\"age\":31,\"full_name\":\"J.J. Watt\",\"sportradar_id\":\"dc11299d-6c24-4048-8b2f-f929e4ed0b92\",\"pandascore_id\":null,\"yahoo_id\":24798,\"last_name\":\"Watt\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Pewaukee (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jjwatt\",\"birth_date\":\"1989-03-22\",\"espn_id\":13979},\"6801\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tee\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606089334886,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"higgins\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6801\",\"birth_city\":null,\"fantasy_data_id\":21690,\"years_exp\":0,\"hashtag\":\"#TeeHiggins-NFL-CIN-85\",\"search_first_name\":\"tee\",\"rotowire_id\":14506,\"rotoworld_id\":null,\"active\":true,\"search_rank\":205,\"age\":21,\"full_name\":\"Tee Higgins\",\"sportradar_id\":\"7963b029-5de4-4541-b00a-44eefe4349af\",\"pandascore_id\":null,\"yahoo_id\":32703,\"last_name\":\"Higgins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Oak Ridge (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"teehiggins\",\"birth_date\":\"1999-01-18\",\"espn_id\":4239993},\"5124\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034732\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1602528027194,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcgough\",\"depth_chart_position\":\"QB\",\"player_id\":\"5124\",\"birth_city\":null,\"fantasy_data_id\":20044,\"years_exp\":2,\"hashtag\":\"#AlexMcGough-NFL-HOU-3\",\"search_first_name\":\"alex\",\"rotowire_id\":13003,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1402,\"age\":24,\"full_name\":\"Alex McGough\",\"sportradar_id\":\"b47fe0b2-e002-42a7-ab84-4b9e61adc9e3\",\"pandascore_id\":null,\"yahoo_id\":31190,\"last_name\":\"McGough\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":\"Gaither (FL)\",\"depth_chart_order\":3,\"stats_id\":824864,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alexmcgough\",\"birth_date\":\"1995-11-19\",\"espn_id\":3128843},\"1646\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029972\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535833806049,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"francis\",\"depth_chart_position\":null,\"player_id\":\"1646\",\"birth_city\":null,\"fantasy_data_id\":15389,\"years_exp\":7,\"hashtag\":\"#AJFrancis-NFL-FA-65\",\"search_first_name\":\"aj\",\"rotowire_id\":9113,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"A.J. Francis\",\"sportradar_id\":\"38717cb0-9a15-4a89-b86a-c57ff0cef0cc\",\"pandascore_id\":null,\"yahoo_id\":27245,\"last_name\":\"Francis\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Gonzaga College (DC)\",\"depth_chart_order\":null,\"stats_id\":464482,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ajfrancis\",\"birth_date\":\"1990-05-07\",\"espn_id\":16398},\"2789\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031757\",\"first_name\":\"Lucky\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535832924070,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"whitehead\",\"depth_chart_position\":null,\"player_id\":\"2789\",\"birth_city\":null,\"fantasy_data_id\":17257,\"years_exp\":5,\"hashtag\":\"#LuckyWhitehead-NFL-FA-82\",\"search_first_name\":\"lucky\",\"rotowire_id\":10539,\"rotoworld_id\":10897,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Lucky Whitehead\",\"sportradar_id\":\"aa7e30de-3fb9-42d5-af9c-b8e3f8c8e295\",\"pandascore_id\":null,\"yahoo_id\":29024,\"last_name\":\"Whitehead\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Osbourn (VA)\",\"depth_chart_order\":null,\"stats_id\":729041,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"163\",\"height\":\"5'9\\\"\",\"search_full_name\":\"luckywhitehead\",\"birth_date\":\"1992-06-02\",\"espn_id\":3052735},\"2808\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hagen\",\"depth_chart_position\":null,\"player_id\":\"2808\",\"birth_city\":null,\"fantasy_data_id\":17276,\"years_exp\":4,\"hashtag\":\"#JacobHagen-NFL-FA-42\",\"search_first_name\":\"jacob\",\"rotowire_id\":10848,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jacob Hagen\",\"sportradar_id\":\"750418fa-ace5-4db3-87d4-f5e916e176dd\",\"pandascore_id\":null,\"yahoo_id\":28995,\"last_name\":\"Hagen\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacobhagen\",\"birth_date\":\"1992-03-16\",\"espn_id\":2520308},\"4729\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Toby\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":null,\"player_id\":\"4729\",\"birth_city\":null,\"fantasy_data_id\":19640,\"years_exp\":2,\"hashtag\":\"#TobyBaker-NFL-FA-4\",\"search_first_name\":\"toby\",\"rotowire_id\":11755,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Toby Baker\",\"sportradar_id\":\"69b4ef2b-0373-4e2c-817f-fb143637b8d0\",\"pandascore_id\":null,\"yahoo_id\":30875,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tobybaker\",\"birth_date\":\"1993-09-18\",\"espn_id\":3046424},\"4576\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jahad\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1523666101437,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"4576\",\"birth_city\":null,\"fantasy_data_id\":19463,\"years_exp\":2,\"hashtag\":\"#JahadThomas-NFL-FA-39\",\"search_first_name\":\"jahad\",\"rotowire_id\":11775,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jahad Thomas\",\"sportradar_id\":\"f7be29e7-2dcb-4e2b-9bba-e020634c8bb6\",\"pandascore_id\":null,\"yahoo_id\":30790,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749161,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jahadthomas\",\"birth_date\":\"1995-11-06\",\"espn_id\":3051315},\"3874\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"DT\",\"player_id\":\"3874\",\"birth_city\":null,\"fantasy_data_id\":18696,\"years_exp\":0,\"hashtag\":\"#MichaelSmith-NFL-FA-75\",\"search_first_name\":\"michael\",\"rotowire_id\":11404,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Michael Smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29984,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaelsmith\",\"birth_date\":\"1992-12-18\",\"espn_id\":null},\"560\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027874\",\"first_name\":\"Demaryius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1593663347163,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"RWR\",\"player_id\":\"560\",\"birth_city\":null,\"fantasy_data_id\":11197,\"years_exp\":10,\"hashtag\":\"#DemaryiusThomas-NFL-FA-18\",\"search_first_name\":\"demaryius\",\"rotowire_id\":6440,\"rotoworld_id\":5700,\"active\":true,\"search_rank\":607,\"age\":32,\"full_name\":\"Demaryius Thomas\",\"sportradar_id\":\"6e444737-a1e1-4ddd-b963-cd6a9496fde0\",\"pandascore_id\":null,\"yahoo_id\":23997,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"West Laurens (GA)\",\"depth_chart_order\":2,\"stats_id\":335172,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"demaryiusthomas\",\"birth_date\":\"1987-12-25\",\"espn_id\":13216},\"6062\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035502\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566491718783,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LG\",\"player_id\":\"6062\",\"birth_city\":null,\"fantasy_data_id\":20843,\"years_exp\":1,\"hashtag\":\"#TylerJones-NFL-FA-0\",\"search_first_name\":\"tyler\",\"rotowire_id\":13676,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tyler Jones\",\"sportradar_id\":\"fea687cd-12c8-4954-8431-31b1634bcd3f\",\"pandascore_id\":null,\"yahoo_id\":32525,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerjones\",\"birth_date\":\"1995-10-27\",\"espn_id\":3116735},\"5392\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034074\",\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1535841111210,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heneghan\",\"depth_chart_position\":null,\"player_id\":\"5392\",\"birth_city\":null,\"fantasy_data_id\":20468,\"years_exp\":2,\"hashtag\":\"#JackHeneghan-NFL-FA-6\",\"search_first_name\":\"jack\",\"rotowire_id\":13068,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jack Heneghan\",\"sportradar_id\":\"678be3a8-1589-476f-b8ff-8189c451a301\",\"pandascore_id\":null,\"yahoo_id\":31330,\"last_name\":\"Heneghan\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":832130,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jackheneghan\",\"birth_date\":\"1996-02-13\",\"espn_id\":3118374},\"1761\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adongo\",\"depth_chart_position\":null,\"player_id\":\"1761\",\"birth_city\":null,\"fantasy_data_id\":15806,\"years_exp\":7,\"hashtag\":\"#DanielAdongo-NFL-FA-56\",\"search_first_name\":\"daniel\",\"rotowire_id\":9218,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Daniel Adongo\",\"sportradar_id\":\"5ad9a4de-9a86-4fbf-8d02-4daeec2d5007\",\"pandascore_id\":null,\"yahoo_id\":27468,\"last_name\":\"Adongo\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'5\\\"\",\"search_full_name\":\"danieladongo\",\"birth_date\":\"1989-10-12\",\"espn_id\":16632},\"3203\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033069\",\"first_name\":\"Braxton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1572796561167,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"3203\",\"birth_city\":null,\"fantasy_data_id\":17964,\"years_exp\":4,\"hashtag\":\"#BraxtonMiller-NFL-FA-17\",\"search_first_name\":\"braxton\",\"rotowire_id\":10900,\"rotoworld_id\":11261,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Braxton Miller\",\"sportradar_id\":\"c678b91c-53a7-4a29-ae4e-d0bbe964069b\",\"pandascore_id\":null,\"yahoo_id\":29319,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":593518,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'1\\\"\",\"search_full_name\":\"braxtonmiller\",\"birth_date\":\"1992-11-30\",\"espn_id\":2570987},\"1120\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029061\",\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598328053581,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stanford\",\"depth_chart_position\":\"WILL\",\"player_id\":\"1120\",\"birth_city\":null,\"fantasy_data_id\":14037,\"years_exp\":8,\"hashtag\":\"#JulianStanford-NFL-CAR-50\",\"search_first_name\":\"julian\",\"rotowire_id\":8437,\"rotoworld_id\":null,\"active\":true,\"search_rank\":668,\"age\":30,\"full_name\":\"Julian Stanford\",\"sportradar_id\":\"05640572-1b4d-40d5-b584-d79bdd7d5c5f\",\"pandascore_id\":null,\"yahoo_id\":26093,\"last_name\":\"Stanford\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":\"Bloomfield (CT)\",\"depth_chart_order\":2,\"stats_id\":472978,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"julianstanford\",\"birth_date\":\"1990-09-02\",\"espn_id\":15373},\"2122\":{\"position\":\"CB\",\"injury_notes\":\"Lawson will miss one game to start the 2020 season after using his helmet as a weapon during week 17 of the 2019 season.\",\"birth_country\":null,\"gsis_id\":\"00-0031176\",\"first_name\":\"Nevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600122605795,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawson\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2122\",\"birth_city\":null,\"fantasy_data_id\":16457,\"years_exp\":6,\"hashtag\":\"#NevinLawson-NFL-LV-26\",\"search_first_name\":\"nevin\",\"rotowire_id\":9612,\"rotoworld_id\":9663,\"active\":true,\"search_rank\":824,\"age\":29,\"full_name\":\"Nevin Lawson\",\"sportradar_id\":\"7ec05721-dba9-4e27-8cf0-92d626754624\",\"pandascore_id\":null,\"yahoo_id\":27661,\"last_name\":\"Lawson\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Piper (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"nevinlawson\",\"birth_date\":\"1991-04-23\",\"espn_id\":16929},\"1765\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"1765\",\"birth_city\":null,\"fantasy_data_id\":15816,\"years_exp\":7,\"hashtag\":\"#MylesWhite-NFL-FA-16\",\"search_first_name\":\"myles\",\"rotowire_id\":9187,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Myles White\",\"sportradar_id\":\"b8dfd26e-0b43-4a86-89f3-22d5c72dc903\",\"pandascore_id\":null,\"yahoo_id\":27361,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Stevenson (MI)\",\"depth_chart_order\":null,\"stats_id\":464289,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"myleswhite\",\"birth_date\":\"1990-03-30\",\"espn_id\":16569},\"180\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026160\",\"first_name\":\"Aqib\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1573690801224,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"talib\",\"depth_chart_position\":null,\"player_id\":\"180\",\"birth_city\":null,\"fantasy_data_id\":4701,\"years_exp\":12,\"hashtag\":\"#AqibTalib-NFL-FA-21\",\"search_first_name\":\"aqib\",\"rotowire_id\":5591,\"rotoworld_id\":4640,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Aqib Talib\",\"sportradar_id\":\"5927b542-db0f-445f-b6cd-eb8c9e80c427\",\"pandascore_id\":null,\"yahoo_id\":8797,\"last_name\":\"Talib\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Berkner (TX)\",\"depth_chart_order\":null,\"stats_id\":245931,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"aqibtalib\",\"birth_date\":\"1986-02-13\",\"espn_id\":11254},\"7002\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Juwan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604368539834,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7002\",\"birth_city\":null,\"fantasy_data_id\":21738,\"years_exp\":0,\"hashtag\":\"#JuwanJohnson-NFL-NO-83\",\"search_first_name\":\"juwan\",\"rotowire_id\":14630,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Juwan Johnson\",\"sportradar_id\":\"0226b03b-f91d-4223-9813-9fcd2e9c3acc\",\"pandascore_id\":null,\"yahoo_id\":33113,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Glassboro (NJ)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'4\\\"\",\"search_full_name\":\"juwanjohnson\",\"birth_date\":\"1996-09-13\",\"espn_id\":3929645},\"2763\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dasman\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccullum\",\"depth_chart_position\":null,\"player_id\":\"2763\",\"birth_city\":null,\"fantasy_data_id\":17231,\"years_exp\":0,\"hashtag\":\"#DasmanMcCullum-NFL-FA-49\",\"search_first_name\":\"dasman\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dasman McCullum\",\"sportradar_id\":\"6367464d-bfea-4f35-a20d-4b9ee43504a3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McCullum\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dasmanmccullum\",\"birth_date\":\"1992-04-14\",\"espn_id\":2515736},\"6053\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jesse\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burkett\",\"depth_chart_position\":null,\"player_id\":\"6053\",\"birth_city\":null,\"fantasy_data_id\":21051,\"years_exp\":0,\"hashtag\":\"#JesseBurkett-NFL-FA-0\",\"search_first_name\":\"jesse\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jesse Burkett\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Burkett\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jesseburkett\",\"birth_date\":null,\"espn_id\":null},\"4413\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033336\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605654926062,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"SLB\",\"player_id\":\"4413\",\"birth_city\":null,\"fantasy_data_id\":19273,\"years_exp\":3,\"hashtag\":\"#EricWilson-NFL-MIN-50\",\"search_first_name\":\"eric\",\"rotowire_id\":12360,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1244,\"age\":26,\"full_name\":\"Eric Wilson\",\"sportradar_id\":\"bfe704fc-266d-4f6a-afbf-c903b5934e23\",\"pandascore_id\":null,\"yahoo_id\":30448,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Lee M. Thurston (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ericwilson\",\"birth_date\":\"1994-09-26\",\"espn_id\":3056916},\"2248\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"renfrow\",\"depth_chart_position\":null,\"player_id\":\"2248\",\"birth_city\":null,\"fantasy_data_id\":16652,\"years_exp\":1,\"hashtag\":\"#JustinRenfrow-NFL-FA-75\",\"search_first_name\":\"justin\",\"rotowire_id\":10847,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Justin Renfrow\",\"sportradar_id\":\"d65c8efd-f17a-4760-8167-4bdfd263a6a6\",\"pandascore_id\":null,\"yahoo_id\":28114,\"last_name\":\"Renfrow\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"justinrenfrow\",\"birth_date\":\"1989-02-23\",\"espn_id\":17236},\"7093\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606265755207,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"killins\",\"depth_chart_position\":null,\"player_id\":\"7093\",\"birth_city\":null,\"fantasy_data_id\":21842,\"years_exp\":0,\"hashtag\":\"#AdrianKillins-NFL-PHI-46\",\"search_first_name\":\"adrian\",\"rotowire_id\":14396,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1792,\"age\":22,\"full_name\":\"Adrian Killins\",\"sportradar_id\":\"2af6db68-3ad7-4699-8f86-0140fffce577\",\"pandascore_id\":null,\"yahoo_id\":32966,\"last_name\":\"Killins\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Mainland (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"164\",\"height\":\"5'8\\\"\",\"search_full_name\":\"adriankillins\",\"birth_date\":\"1998-01-02\",\"espn_id\":4042112},\"5445\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034091\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1580247359559,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"odum\",\"depth_chart_position\":\"FS\",\"player_id\":\"5445\",\"birth_city\":null,\"fantasy_data_id\":20492,\"years_exp\":2,\"hashtag\":\"#GeorgeOdum-NFL-IND-30\",\"search_first_name\":\"george\",\"rotowire_id\":13094,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1481,\"age\":27,\"full_name\":\"George Odum\",\"sportradar_id\":\"b736f05a-38a5-47b4-aaab-734667967ac2\",\"pandascore_id\":null,\"yahoo_id\":31373,\"last_name\":\"Odum\",\"metadata\":null,\"college\":\"Central Arkansas\",\"high_school\":\"Millington Central (TN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"georgeodum\",\"birth_date\":\"1993-11-03\",\"espn_id\":3050199},\"4190\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033290\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605410761388,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"eluemunor\",\"depth_chart_position\":\"RT\",\"player_id\":\"4190\",\"birth_city\":null,\"fantasy_data_id\":19036,\"years_exp\":3,\"hashtag\":\"#JermaineEluemunor-NFL-NE-72\",\"search_first_name\":\"jermaine\",\"rotowire_id\":11792,\"rotoworld_id\":12372,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jermaine Eluemunor\",\"sportradar_id\":\"df94ce97-af26-4f12-be2d-14779270e670\",\"pandascore_id\":null,\"yahoo_id\":30272,\"last_name\":\"Eluemunor\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas A&M\",\"high_school\":\"Morris Knolls (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jermaineeluemunor\",\"birth_date\":\"1994-12-13\",\"espn_id\":3115303},\"4609\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1527048301407,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"godin\",\"depth_chart_position\":null,\"player_id\":\"4609\",\"birth_city\":null,\"fantasy_data_id\":19499,\"years_exp\":2,\"hashtag\":\"#MatthewGodin-NFL-FA-69\",\"search_first_name\":\"matthew\",\"rotowire_id\":12393,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Matthew Godin\",\"sportradar_id\":\"bcab1a88-9852-414c-986b-5df3e4bb478a\",\"pandascore_id\":null,\"yahoo_id\":30804,\"last_name\":\"Godin\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"matthewgodin\",\"birth_date\":\"1993-09-30\",\"espn_id\":2977636},\"4119\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033916\",\"first_name\":\"Ardarius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1555007153975,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"4119\",\"birth_city\":null,\"fantasy_data_id\":18965,\"years_exp\":3,\"hashtag\":\"#ArdariusStewart-NFL-FA-13\",\"search_first_name\":\"ardarius\",\"rotowire_id\":11720,\"rotoworld_id\":12252,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ardarius Stewart\",\"sportradar_id\":\"20e86fb3-e716-4df3-82d6-f05caa83287e\",\"pandascore_id\":null,\"yahoo_id\":30192,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":750855,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ardariusstewart\",\"birth_date\":\"1993-12-08\",\"espn_id\":3054860},\"4533\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033613\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535992879541,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"summers\",\"depth_chart_position\":null,\"player_id\":\"4533\",\"birth_city\":null,\"fantasy_data_id\":19412,\"years_exp\":3,\"hashtag\":\"#JamesSummers-NFL-FA-39\",\"search_first_name\":\"james\",\"rotowire_id\":12891,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"James Summers\",\"sportradar_id\":\"d53755df-ba10-4546-bfc8-b728eaf192e6\",\"pandascore_id\":null,\"yahoo_id\":30496,\"last_name\":\"Summers\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":891768,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamessummers\",\"birth_date\":\"1994-06-12\",\"espn_id\":2970017},\"2200\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flanders\",\"depth_chart_position\":null,\"player_id\":\"2200\",\"birth_city\":null,\"fantasy_data_id\":16571,\"years_exp\":0,\"hashtag\":\"#TimFlanders-NFL-FA-40\",\"search_first_name\":\"tim\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tim Flanders\",\"sportradar_id\":\"77813619-d778-4ad8-b6d9-196d65a77353\",\"pandascore_id\":null,\"yahoo_id\":27924,\"last_name\":\"Flanders\",\"metadata\":null,\"college\":\"Sam Houston State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'9\\\"\",\"search_full_name\":\"timflanders\",\"birth_date\":null,\"espn_id\":17149},\"7482\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Oluwole\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"betiku\",\"depth_chart_position\":null,\"player_id\":\"7482\",\"birth_city\":null,\"fantasy_data_id\":22457,\"years_exp\":0,\"hashtag\":\"#OluwoleBetiku-NFL-FA-0\",\"search_first_name\":\"oluwole\",\"rotowire_id\":14500,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Oluwole Betiku\",\"sportradar_id\":\"1dfe67b4-879a-4b8d-b265-1562fafcf6fb\",\"pandascore_id\":null,\"yahoo_id\":33210,\"last_name\":\"Betiku\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"oluwolebetiku\",\"birth_date\":\"1997-06-22\",\"espn_id\":null},\"5924\":{\"position\":\"WR\",\"injury_notes\":\"Hall will likely be placed on injured reserve and miss the 2020 season\",\"birth_country\":null,\"gsis_id\":\" 00-0035070\",\"first_name\":\"Emanuel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595901630509,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5924\",\"birth_city\":null,\"fantasy_data_id\":20782,\"years_exp\":1,\"hashtag\":\"#EmanuelHall-NFL-WAS-80\",\"search_first_name\":\"emanuel\",\"rotowire_id\":13515,\"rotoworld_id\":14132,\"active\":true,\"search_rank\":279,\"age\":23,\"full_name\":\"Emanuel Hall\",\"sportradar_id\":\"d6f5ecdf-be55-430e-9370-0ea608395dad\",\"pandascore_id\":null,\"yahoo_id\":32253,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Centennial (TN)\",\"depth_chart_order\":4,\"stats_id\":882338,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"emanuelhall\",\"birth_date\":\"1997-05-21\",\"espn_id\":3924318},\"5836\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tre'\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1563981935208,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"5836\",\"birth_city\":null,\"fantasy_data_id\":20412,\"years_exp\":0,\"hashtag\":\"#TreWilliams-NFL-FA-30\",\"search_first_name\":\"tre\",\"rotowire_id\":12840,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":19,\"full_name\":\"Tre' Williams\",\"sportradar_id\":\"3edb1e1d-b939-4e4f-8691-926e7b244f8d\",\"pandascore_id\":null,\"yahoo_id\":31817,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trewilliams\",\"birth_date\":\"2000-03-03\",\"espn_id\":3121590},\"4006\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pagano\",\"depth_chart_position\":null,\"player_id\":\"4006\",\"birth_city\":null,\"fantasy_data_id\":18845,\"years_exp\":0,\"hashtag\":\"#JohnPagano-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":9329,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Pagano\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pagano\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johnpagano\",\"birth_date\":null,\"espn_id\":null},\"1289\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chandler\",\"depth_chart_position\":null,\"player_id\":\"1289\",\"birth_city\":null,\"fantasy_data_id\":14745,\"years_exp\":8,\"hashtag\":\"#NateChandler-NFL-FA-78\",\"search_first_name\":\"nate\",\"rotowire_id\":8419,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Nate Chandler\",\"sportradar_id\":\"473ccd82-828e-4aad-bfc1-8aeb93679220\",\"pandascore_id\":null,\"yahoo_id\":26098,\"last_name\":\"Chandler\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Mira Mesa (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"natechandler\",\"birth_date\":\"1989-06-01\",\"espn_id\":15492},\"MIA\":{\"team\":\"MIA\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"MIA\",\"last_name\":\"Dolphins\",\"injury_status\":null,\"first_name\":\"Miami\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"7331\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brannon\",\"depth_chart_position\":null,\"player_id\":\"7331\",\"birth_city\":null,\"fantasy_data_id\":22323,\"years_exp\":0,\"hashtag\":\"#JohnBrannon-NFL-LAC-38\",\"search_first_name\":\"john\",\"rotowire_id\":15079,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"John Brannon\",\"sportradar_id\":\"ffe9639a-7ce2-436a-a291-868e66e9dab8\",\"pandascore_id\":null,\"yahoo_id\":32976,\"last_name\":\"Brannon\",\"metadata\":null,\"college\":\"Western Carolina\",\"high_school\":\"South Mecklenburg (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnbrannon\",\"birth_date\":\"1998-03-10\",\"espn_id\":4032484},\"3004\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"francis\",\"depth_chart_position\":null,\"player_id\":\"3004\",\"birth_city\":null,\"fantasy_data_id\":17537,\"years_exp\":1,\"hashtag\":\"#JoshFrancis-NFL-FA-45\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Josh Francis\",\"sportradar_id\":\"d00a6476-8347-41d4-90b6-558f4ff3b91b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Francis\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshfrancis\",\"birth_date\":\"1990-11-30\",\"espn_id\":2577627},\"2960\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Drequan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hoskey\",\"depth_chart_position\":null,\"player_id\":\"2960\",\"birth_city\":null,\"fantasy_data_id\":17439,\"years_exp\":0,\"hashtag\":\"#DrequanHoskey-NFL-FA-41\",\"search_first_name\":\"drequan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Drequan Hoskey\",\"sportradar_id\":\"34c3c06f-dbbd-4ae4-bc1e-724daa993494\",\"pandascore_id\":null,\"yahoo_id\":29182,\"last_name\":\"Hoskey\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'11\\\"\",\"search_full_name\":\"drequanhoskey\",\"birth_date\":null,\"espn_id\":2512641},\"3826\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ritcher\",\"depth_chart_position\":\"RG\",\"player_id\":\"3826\",\"birth_city\":null,\"fantasy_data_id\":18644,\"years_exp\":0,\"hashtag\":\"#NickRitcher-NFL-FA-61\",\"search_first_name\":\"nick\",\"rotowire_id\":11401,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nick Ritcher\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29948,\"last_name\":\"Ritcher\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nickritcher\",\"birth_date\":\"1992-12-01\",\"espn_id\":null},\"2847\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"2847\",\"birth_city\":null,\"fantasy_data_id\":17315,\"years_exp\":1,\"hashtag\":\"#MichaelLee-NFL-FA-35\",\"search_first_name\":\"michael\",\"rotowire_id\":10631,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Lee\",\"sportradar_id\":\"5e11900f-061e-480c-806d-d813030bfc0c\",\"pandascore_id\":null,\"yahoo_id\":28823,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaellee\",\"birth_date\":\"1991-06-06\",\"espn_id\":3144642},\"7366\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599447661807,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dorn\",\"depth_chart_position\":null,\"player_id\":\"7366\",\"birth_city\":null,\"fantasy_data_id\":22353,\"years_exp\":0,\"hashtag\":\"#MylesDorn-NFL-MIN-46\",\"search_first_name\":\"myles\",\"rotowire_id\":14598,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1989,\"age\":22,\"full_name\":\"Myles Dorn\",\"sportradar_id\":\"e11eff18-b567-47c2-99e6-f4c6bc3d10c3\",\"pandascore_id\":null,\"yahoo_id\":33029,\"last_name\":\"Dorn\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Vance (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mylesdorn\",\"birth_date\":\"1998-06-25\",\"espn_id\":4037511},\"4634\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"4634\",\"birth_city\":null,\"fantasy_data_id\":19528,\"years_exp\":2,\"hashtag\":\"#KennethWalker-NFL-FA-86\",\"search_first_name\":\"kenneth\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kenneth Walker\",\"sportradar_id\":\"9debd841-239c-4f51-8ed7-d29b10add403\",\"pandascore_id\":null,\"yahoo_id\":30407,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691052,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kennethwalker\",\"birth_date\":\"1994-04-01\",\"espn_id\":2971595},\"5196\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034672\",\"first_name\":\"Ethan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604544929856,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wolf\",\"depth_chart_position\":\"TE\",\"player_id\":\"5196\",\"birth_city\":null,\"fantasy_data_id\":20193,\"years_exp\":2,\"hashtag\":\"#EthanWolf-NFL-NO-84\",\"search_first_name\":\"ethan\",\"rotowire_id\":12743,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ethan Wolf\",\"sportradar_id\":\"db4510bb-e692-4877-9b71-0c8d642bc16c\",\"pandascore_id\":null,\"yahoo_id\":31627,\"last_name\":\"Wolf\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Minster (OH)\",\"depth_chart_order\":7,\"stats_id\":820736,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ethanwolf\",\"birth_date\":\"1995-11-07\",\"espn_id\":3115360},\"6575\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035496\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexandre\",\"depth_chart_position\":null,\"player_id\":\"6575\",\"birth_city\":null,\"fantasy_data_id\":21273,\"years_exp\":1,\"hashtag\":\"#JustinAlexandre-NFL-FA-59\",\"search_first_name\":\"justin\",\"rotowire_id\":14290,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Justin Alexandre\",\"sportradar_id\":\"89588ce4-70cf-4a50-968e-d48cf5c66053\",\"pandascore_id\":null,\"yahoo_id\":32519,\"last_name\":\"Alexandre\",\"metadata\":null,\"college\":\"Incarnate Word\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justinalexandre\",\"birth_date\":\"1997-11-12\",\"espn_id\":4263210},\"2766\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alonzo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"2766\",\"birth_city\":null,\"fantasy_data_id\":17234,\"years_exp\":5,\"hashtag\":\"#AlonzoHarris-NFL-FA-46\",\"search_first_name\":\"alonzo\",\"rotowire_id\":10628,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Alonzo Harris\",\"sportradar_id\":\"6e0fa2cb-a2c9-49ea-a72b-050df00188a4\",\"pandascore_id\":null,\"yahoo_id\":28926,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Gadsden City High\",\"depth_chart_order\":null,\"stats_id\":604097,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alonzoharris\",\"birth_date\":\"1992-11-09\",\"espn_id\":2574010},\"4039\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033908\",\"first_name\":\"Cooper\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606196149143,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kupp\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4039\",\"birth_city\":null,\"fantasy_data_id\":18882,\"years_exp\":3,\"hashtag\":\"#CooperKupp-NFL-LAR-10\",\"search_first_name\":\"cooper\",\"rotowire_id\":11863,\"rotoworld_id\":12177,\"active\":true,\"search_rank\":41,\"age\":27,\"full_name\":\"Cooper Kupp\",\"sportradar_id\":\"2806e915-c46f-492f-8a29-71d3a85e5620\",\"pandascore_id\":null,\"yahoo_id\":30182,\"last_name\":\"Kupp\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":\"Davis (WA)\",\"depth_chart_order\":1,\"stats_id\":698227,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cooperkupp\",\"birth_date\":\"1993-06-15\",\"espn_id\":2977187},\"6633\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035328\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":\"LT\",\"player_id\":\"6633\",\"birth_city\":null,\"fantasy_data_id\":21411,\"years_exp\":1,\"hashtag\":\"#MattNelson-NFL-DET-67\",\"search_first_name\":\"matt\",\"rotowire_id\":14210,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Matt Nelson\",\"sportradar_id\":\"b38b6c46-7b53-4c5b-864c-04e261c97ddc\",\"pandascore_id\":null,\"yahoo_id\":32455,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Xavier (IA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattnelson\",\"birth_date\":\"1995-12-19\",\"espn_id\":3145005},\"5893\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035253\",\"first_name\":\"Chauncey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605498015241,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gardnerjohnson\",\"depth_chart_position\":\"NB\",\"player_id\":\"5893\",\"birth_city\":null,\"fantasy_data_id\":20766,\"years_exp\":1,\"hashtag\":\"#ChaunceyGardnerJohnson-NFL-NO-22\",\"search_first_name\":\"chauncey\",\"rotowire_id\":15189,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1533,\"age\":22,\"full_name\":\"Chauncey Gardner-Johnson\",\"sportradar_id\":\"5fb6e9f1-2efa-44c9-876f-4d635484be88\",\"pandascore_id\":null,\"yahoo_id\":31937,\"last_name\":\"Gardner-Johnson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Cocoa (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chaunceygardnerjohnson\",\"birth_date\":\"1997-12-20\",\"espn_id\":4034953},\"4333\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jhaustin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"4333\",\"birth_city\":null,\"fantasy_data_id\":19189,\"years_exp\":2,\"hashtag\":\"#JhaustinThomas-NFL-FA-69\",\"search_first_name\":\"jhaustin\",\"rotowire_id\":12510,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jhaustin Thomas\",\"sportradar_id\":\"d81b4609-eb40-49d6-bedc-3022bc433dd5\",\"pandascore_id\":null,\"yahoo_id\":30536,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jhaustinthomas\",\"birth_date\":\"1993-04-13\",\"espn_id\":3928942},\"6231\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035161\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\",\"QB\"],\"news_updated\":1605412561433,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lovett\",\"depth_chart_position\":\"TE\",\"player_id\":\"6231\",\"birth_city\":null,\"fantasy_data_id\":21156,\"years_exp\":1,\"hashtag\":\"#JohnLovett-NFL-GB-45\",\"search_first_name\":\"john\",\"rotowire_id\":14184,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1685,\"age\":24,\"full_name\":\"John Lovett\",\"sportradar_id\":\"fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484\",\"pandascore_id\":null,\"yahoo_id\":32364,\"last_name\":\"Lovett\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":5,\"stats_id\":832213,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnlovett\",\"birth_date\":\"1996-04-25\",\"espn_id\":3118906},\"4061\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033550\",\"first_name\":\"Davis\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599339957661,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":\"QB\",\"player_id\":\"4061\",\"birth_city\":null,\"fantasy_data_id\":18907,\"years_exp\":3,\"hashtag\":\"#DavisWebb-NFL-BUF-7\",\"search_first_name\":\"davis\",\"rotowire_id\":11843,\"rotoworld_id\":12208,\"active\":true,\"search_rank\":1118,\"age\":25,\"full_name\":\"Davis Webb\",\"sportradar_id\":\"b45cd0e5-42b3-4847-aeec-a3afd07a0160\",\"pandascore_id\":null,\"yahoo_id\":30200,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Prosper (TX)\",\"depth_chart_order\":4,\"stats_id\":733638,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daviswebb\",\"birth_date\":\"1995-01-22\",\"espn_id\":3052600},\"1177\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029408\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1553554229650,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perry\",\"depth_chart_position\":null,\"player_id\":\"1177\",\"birth_city\":null,\"fantasy_data_id\":14294,\"years_exp\":8,\"hashtag\":\"#NickPerry-NFL-FA-53\",\"search_first_name\":\"nick\",\"rotowire_id\":8135,\"rotoworld_id\":7411,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Nick Perry\",\"sportradar_id\":\"204e0eb0-c5ef-4522-9056-393e2e5177ea\",\"pandascore_id\":null,\"yahoo_id\":25738,\"last_name\":\"Perry\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Mackenzie (MI)\",\"depth_chart_order\":null,\"stats_id\":459231,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickperry\",\"birth_date\":\"1990-04-12\",\"espn_id\":14929},\"6811\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604939726595,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":\"LB\",\"player_id\":\"6811\",\"birth_city\":null,\"fantasy_data_id\":21985,\"years_exp\":0,\"hashtag\":\"#KennethMurray-NFL-LAC-56\",\"search_first_name\":\"kenneth\",\"rotowire_id\":14434,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1867,\"age\":22,\"full_name\":\"Kenneth Murray\",\"sportradar_id\":\"79bf0ca5-a8db-4c39-a40b-67674ccb60d0\",\"pandascore_id\":null,\"yahoo_id\":32693,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Elkins (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kennethmurray\",\"birth_date\":\"1998-11-16\",\"espn_id\":4241394},\"2473\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031597\",\"first_name\":\"Tye\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606275055898,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2473\",\"birth_city\":null,\"fantasy_data_id\":16930,\"years_exp\":5,\"hashtag\":\"#TyeSmith-NFL-TEN-23\",\"search_first_name\":\"tye\",\"rotowire_id\":10470,\"rotoworld_id\":null,\"active\":true,\"search_rank\":900,\"age\":27,\"full_name\":\"Tye Smith\",\"sportradar_id\":\"b5fb8706-5436-422d-a4df-2d5235b17aee\",\"pandascore_id\":null,\"yahoo_id\":28558,\"last_name\":\"Smith\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Towson\",\"high_school\":\"Wakefield (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tyesmith\",\"birth_date\":\"1993-05-03\",\"espn_id\":2588098},\"2594\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wegher\",\"depth_chart_position\":null,\"player_id\":\"2594\",\"birth_city\":null,\"fantasy_data_id\":17061,\"years_exp\":5,\"hashtag\":\"#BrandonWegher-NFL-FA-32\",\"search_first_name\":\"brandon\",\"rotowire_id\":10531,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brandon Wegher\",\"sportradar_id\":\"f4e291d0-262d-4655-90e9-66b61caaecc4\",\"pandascore_id\":null,\"yahoo_id\":28737,\"last_name\":\"Wegher\",\"metadata\":null,\"college\":\"Morningside\",\"high_school\":\"SC Bishop Heelan (IA)\",\"depth_chart_order\":null,\"stats_id\":508607,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brandonwegher\",\"birth_date\":\"1990-12-09\",\"espn_id\":2465679},\"746\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"malone\",\"depth_chart_position\":null,\"player_id\":\"746\",\"birth_city\":null,\"fantasy_data_id\":12391,\"years_exp\":3,\"hashtag\":\"#RobertMalone-NFL-FA-3\",\"search_first_name\":\"robert\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Robert Malone\",\"sportradar_id\":\"2c406098-5772-4183-8698-ed0787bf8bf2\",\"pandascore_id\":null,\"yahoo_id\":24482,\"last_name\":\"Malone\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robertmalone\",\"birth_date\":\"1988-02-04\",\"espn_id\":13408},\"2314\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032259\",\"first_name\":\"Ereck\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597530610020,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"flowers\",\"depth_chart_position\":\"LG\",\"player_id\":\"2314\",\"birth_city\":null,\"fantasy_data_id\":16770,\"years_exp\":5,\"hashtag\":\"#EreckFlowers-NFL-MIA-75\",\"search_first_name\":\"ereck\",\"rotowire_id\":10263,\"rotoworld_id\":10386,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ereck Flowers\",\"sportradar_id\":\"dfdbe925-912e-4eca-9a71-e38cd3c88479\",\"pandascore_id\":null,\"yahoo_id\":28397,\"last_name\":\"Flowers\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miami Norland (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ereckflowers\",\"birth_date\":\"1994-04-25\",\"espn_id\":2969952},\"4642\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033715\",\"first_name\":\"Jarron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":1585167338877,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4642\",\"birth_city\":null,\"fantasy_data_id\":19537,\"years_exp\":3,\"hashtag\":\"#JarronJones-NFL-PIT-74\",\"search_first_name\":\"jarron\",\"rotowire_id\":11922,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jarron Jones\",\"sportradar_id\":\"e6d4351b-d073-4ed5-9d5a-51ea2e9298eb\",\"pandascore_id\":null,\"yahoo_id\":30735,\"last_name\":\"Jones\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Notre Dame\",\"high_school\":\"Aquinas Institute (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jarronjones\",\"birth_date\":\"1994-03-11\",\"espn_id\":2980142},\"3677\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cavellis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"luckett\",\"depth_chart_position\":null,\"player_id\":\"3677\",\"birth_city\":null,\"fantasy_data_id\":18477,\"years_exp\":0,\"hashtag\":\"#CavellisLuckett-NFL-FA-46\",\"search_first_name\":\"cavellis\",\"rotowire_id\":11307,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cavellis Luckett\",\"sportradar_id\":\"450e4a2a-7576-4811-9a27-617e6a340992\",\"pandascore_id\":null,\"yahoo_id\":29753,\"last_name\":\"Luckett\",\"metadata\":null,\"college\":\"Middle Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cavellisluckett\",\"birth_date\":\"1992-12-06\",\"espn_id\":null},\"1447\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1514751901436,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"joeckel\",\"depth_chart_position\":null,\"player_id\":\"1447\",\"birth_city\":null,\"fantasy_data_id\":15016,\"years_exp\":7,\"hashtag\":\"#LukeJoeckel-NFL-FA-78\",\"search_first_name\":\"luke\",\"rotowire_id\":8726,\"rotoworld_id\":8391,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Luke Joeckel\",\"sportradar_id\":\"1fcd8651-364a-4f64-86da-8cb6c1cdd34a\",\"pandascore_id\":null,\"yahoo_id\":26625,\"last_name\":\"Joeckel\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Arlington (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'6\\\"\",\"search_full_name\":\"lukejoeckel\",\"birth_date\":\"1991-11-06\",\"espn_id\":15796},\"1628\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fauria\",\"depth_chart_position\":null,\"player_id\":\"1628\",\"birth_city\":null,\"fantasy_data_id\":15336,\"years_exp\":7,\"hashtag\":\"#JosephFauria-NFL-FA-81\",\"search_first_name\":\"joseph\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Joseph Fauria\",\"sportradar_id\":\"2a678c7f-2dd9-4be2-9636-b4ff2b267402\",\"pandascore_id\":null,\"yahoo_id\":27187,\"last_name\":\"Fauria\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Crespi (CA)\",\"depth_chart_order\":null,\"stats_id\":469195,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'7\\\"\",\"search_full_name\":\"josephfauria\",\"birth_date\":\"1990-01-16\",\"espn_id\":16330},\"1074\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029592\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606348503830,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zeitler\",\"depth_chart_position\":\"RG\",\"player_id\":\"1074\",\"birth_city\":null,\"fantasy_data_id\":13882,\"years_exp\":8,\"hashtag\":\"#KevinZeitler-NFL-NYG-70\",\"search_first_name\":\"kevin\",\"rotowire_id\":8125,\"rotoworld_id\":7523,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kevin Zeitler\",\"sportradar_id\":\"b3e1206d-38e3-4ad3-be9e-8bf3daa62cad\",\"pandascore_id\":null,\"yahoo_id\":25737,\"last_name\":\"Zeitler\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Wisconsin Lutheran (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kevinzeitler\",\"birth_date\":\"1990-03-08\",\"espn_id\":14931},\"3383\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032943\",\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1606151113563,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"3383\",\"birth_city\":null,\"fantasy_data_id\":18144,\"years_exp\":4,\"hashtag\":\"#RileyDixon-NFL-NYG-9\",\"search_first_name\":\"riley\",\"rotowire_id\":11022,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Riley Dixon\",\"sportradar_id\":\"f45835c5-aa9e-4e32-b545-20d1e322fe8f\",\"pandascore_id\":null,\"yahoo_id\":29462,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Christian Brothers Academy (NY)\",\"depth_chart_order\":null,\"stats_id\":608398,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rileydixon\",\"birth_date\":\"1993-08-24\",\"espn_id\":2577619},\"6589\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035545\",\"first_name\":\"Kirk\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barron\",\"depth_chart_position\":null,\"player_id\":\"6589\",\"birth_city\":null,\"fantasy_data_id\":21555,\"years_exp\":1,\"hashtag\":\"#KirkBarron-NFL-FA-76\",\"search_first_name\":\"kirk\",\"rotowire_id\":14247,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kirk Barron\",\"sportradar_id\":\"e9596e01-6469-4245-b5f9-d68a6718e4a4\",\"pandascore_id\":null,\"yahoo_id\":32562,\"last_name\":\"Barron\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kirkbarron\",\"birth_date\":\"1995-06-03\",\"espn_id\":3116186},\"4171\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033943\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606231252183,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4171\",\"birth_city\":null,\"fantasy_data_id\":19017,\"years_exp\":3,\"hashtag\":\"#JoshReynolds-NFL-LAR-11\",\"search_first_name\":\"josh\",\"rotowire_id\":11871,\"rotoworld_id\":12253,\"active\":true,\"search_rank\":183,\"age\":25,\"full_name\":\"Josh Reynolds\",\"sportradar_id\":\"682eda79-0026-4ad8-8f45-a61ce42cb908\",\"pandascore_id\":null,\"yahoo_id\":30230,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Jay (TX)\",\"depth_chart_order\":1,\"stats_id\":822367,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshreynolds\",\"birth_date\":\"1995-02-16\",\"espn_id\":3115306},\"4722\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Freddie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tagaloa\",\"depth_chart_position\":null,\"player_id\":\"4722\",\"birth_city\":null,\"fantasy_data_id\":19632,\"years_exp\":2,\"hashtag\":\"#FreddieTagaloa-NFL-FA-66\",\"search_first_name\":\"freddie\",\"rotowire_id\":12255,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Freddie Tagaloa\",\"sportradar_id\":\"15e26083-7d19-4ec0-b7cc-0accc56b2d6f\",\"pandascore_id\":null,\"yahoo_id\":30855,\"last_name\":\"Tagaloa\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"freddietagaloa\",\"birth_date\":\"1994-03-04\",\"espn_id\":2978218},\"6707\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035675\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565555128412,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"langley\",\"depth_chart_position\":null,\"player_id\":\"6707\",\"birth_city\":null,\"fantasy_data_id\":21625,\"years_exp\":1,\"hashtag\":\"#IsaiahLangley-NFL-FA-40\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14322,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Isaiah Langley\",\"sportradar_id\":\"83f36348-3a45-4839-984c-896ca5a551f2\",\"pandascore_id\":null,\"yahoo_id\":32618,\"last_name\":\"Langley\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"6'0\\\"\",\"search_full_name\":\"isaiahlangley\",\"birth_date\":\"1996-10-13\",\"espn_id\":3912549},\"214\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Osi\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"umenyiora\",\"depth_chart_position\":null,\"player_id\":\"214\",\"birth_city\":null,\"fantasy_data_id\":5400,\"years_exp\":12,\"hashtag\":\"#OsiUmenyiora-NFL-FA-50\",\"search_first_name\":\"osi\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Osi Umenyiora\",\"sportradar_id\":\"f28cbca1-9c1e-4b90-865a-699bfa386c75\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Umenyiora\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"osiumenyiora\",\"birth_date\":\"1981-11-16\",\"espn_id\":4514},\"3808\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032830\",\"first_name\":\"Rolan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596675015074,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"milligan\",\"depth_chart_position\":null,\"player_id\":\"3808\",\"birth_city\":null,\"fantasy_data_id\":18623,\"years_exp\":4,\"hashtag\":\"#RolanMilligan-NFL-IND-42\",\"search_first_name\":\"rolan\",\"rotowire_id\":11374,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1102,\"age\":26,\"full_name\":\"Rolan Milligan\",\"sportradar_id\":\"bc6aa137-cef3-481e-a87a-e06dad32882c\",\"pandascore_id\":null,\"yahoo_id\":29933,\"last_name\":\"Milligan\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Lake Wales (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rolanmilligan\",\"birth_date\":\"1994-08-16\",\"espn_id\":3916678},\"3480\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"V'angelo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bentley\",\"depth_chart_position\":null,\"player_id\":\"3480\",\"birth_city\":null,\"fantasy_data_id\":18245,\"years_exp\":0,\"hashtag\":\"#VangeloBentley-NFL-FA-9\",\"search_first_name\":\"vangelo\",\"rotowire_id\":11359,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"V'angelo Bentley\",\"sportradar_id\":\"da9d5777-52a1-4bfe-ba1d-d3c1ffa47cf6\",\"pandascore_id\":null,\"yahoo_id\":29871,\"last_name\":\"Bentley\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"vangelobentley\",\"birth_date\":\"1993-11-04\",\"espn_id\":2970620},\"3221\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032969\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1568144458102,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"C\",\"player_id\":\"3221\",\"birth_city\":null,\"fantasy_data_id\":17982,\"years_exp\":4,\"hashtag\":\"#NickMartin-NFL-HOU-66\",\"search_first_name\":\"nick\",\"rotowire_id\":11126,\"rotoworld_id\":11310,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Nick Martin\",\"sportradar_id\":\"bbf8d4d6-8f5d-4847-ad1e-0d205d38f0c5\",\"pandascore_id\":null,\"yahoo_id\":29283,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Bishop Chatard (IN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickmartin\",\"birth_date\":\"1993-04-29\",\"espn_id\":2579850},\"2126\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031071\",\"first_name\":\"Caraun\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605409261065,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reid\",\"depth_chart_position\":null,\"player_id\":\"2126\",\"birth_city\":null,\"fantasy_data_id\":16463,\"years_exp\":6,\"hashtag\":\"#CaraunReid-NFL-JAX-92\",\"search_first_name\":\"caraun\",\"rotowire_id\":9395,\"rotoworld_id\":null,\"active\":true,\"search_rank\":825,\"age\":29,\"full_name\":\"Caraun Reid\",\"sportradar_id\":\"aa82ed23-934e-451f-ac47-65c63a84bf16\",\"pandascore_id\":null,\"yahoo_id\":27686,\"last_name\":\"Reid\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":\"Mount Saint Michael (NY)\",\"depth_chart_order\":null,\"stats_id\":521309,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'2\\\"\",\"search_full_name\":\"caraunreid\",\"birth_date\":\"1991-11-23\",\"espn_id\":16853},\"3433\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032543\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606260354589,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"erickson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3433\",\"birth_city\":null,\"fantasy_data_id\":18197,\"years_exp\":4,\"hashtag\":\"#AlexErickson-NFL-CIN-12\",\"search_first_name\":\"alex\",\"rotowire_id\":11257,\"rotoworld_id\":11614,\"active\":true,\"search_rank\":326,\"age\":28,\"full_name\":\"Alex Erickson\",\"sportradar_id\":\"6bb4d6f8-c8fb-4ca7-a416-a7010526114d\",\"pandascore_id\":null,\"yahoo_id\":29703,\"last_name\":\"Erickson\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Darlington (WI)\",\"depth_chart_order\":2,\"stats_id\":652520,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alexerickson\",\"birth_date\":\"1992-11-06\",\"espn_id\":2977800},\"1806\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031173\",\"first_name\":\"Jaylen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599339657729,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watkins\",\"depth_chart_position\":null,\"player_id\":\"1806\",\"birth_city\":null,\"fantasy_data_id\":15981,\"years_exp\":6,\"hashtag\":\"#JaylenWatkins-NFL-LAC-20\",\"search_first_name\":\"jaylen\",\"rotowire_id\":9366,\"rotoworld_id\":null,\"active\":true,\"search_rank\":770,\"age\":29,\"full_name\":\"Jaylen Watkins\",\"sportradar_id\":\"2d28c7f5-21e8-40cb-afb4-a8391a5923e7\",\"pandascore_id\":null,\"yahoo_id\":27629,\"last_name\":\"Watkins\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Cape Coral (FL)\",\"depth_chart_order\":null,\"stats_id\":542789,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jaylenwatkins\",\"birth_date\":\"1991-11-27\",\"espn_id\":16919},\"1745\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028284\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1584655235505,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scales\",\"depth_chart_position\":null,\"player_id\":\"1745\",\"birth_city\":null,\"fantasy_data_id\":15734,\"years_exp\":9,\"hashtag\":\"#PatrickScales-NFL-CHI-48\",\"search_first_name\":\"patrick\",\"rotowire_id\":10021,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Patrick Scales\",\"sportradar_id\":\"ff4c90f1-60a7-40f4-ba21-c7abe6800000\",\"pandascore_id\":null,\"yahoo_id\":25370,\"last_name\":\"Scales\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Weber (UT)\",\"depth_chart_order\":null,\"stats_id\":402162,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'3\\\"\",\"search_full_name\":\"patrickscales\",\"birth_date\":\"1988-02-11\",\"espn_id\":14572},\"1462\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sanders\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"commings\",\"depth_chart_position\":null,\"player_id\":\"1462\",\"birth_city\":null,\"fantasy_data_id\":15044,\"years_exp\":3,\"hashtag\":\"#SandersCommings-NFL-FA-26\",\"search_first_name\":\"sanders\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Sanders Commings\",\"sportradar_id\":\"f39cea83-f23e-4524-b4df-f4f9c239927a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Commings\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sanderscommings\",\"birth_date\":\"1990-03-08\",\"espn_id\":15913},\"2042\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031258\",\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604260520564,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"attaochu\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2042\",\"birth_city\":null,\"fantasy_data_id\":16334,\"years_exp\":6,\"hashtag\":\"#JeremiahAttaochu-NFL-DEN-97\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":9343,\"rotoworld_id\":9529,\"active\":true,\"search_rank\":810,\"age\":27,\"full_name\":\"Jeremiah Attaochu\",\"sportradar_id\":\"614c6237-8fe9-4a62-beec-0c44ca0fc2ad\",\"pandascore_id\":null,\"yahoo_id\":27578,\"last_name\":\"Attaochu\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Georgia Tech\",\"high_school\":\"Archbishop Carroll (DC)\",\"depth_chart_order\":1,\"stats_id\":553580,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremiahattaochu\",\"birth_date\":\"1993-01-17\",\"espn_id\":16761},\"7330\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Romeo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"finley\",\"depth_chart_position\":null,\"player_id\":\"7330\",\"birth_city\":null,\"fantasy_data_id\":22322,\"years_exp\":0,\"hashtag\":\"#RomeoFinley-NFL-FA-0\",\"search_first_name\":\"romeo\",\"rotowire_id\":15129,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Romeo Finley\",\"sportradar_id\":\"3e11cf4d-1726-480d-a642-82b37f5b0312\",\"pandascore_id\":null,\"yahoo_id\":32981,\"last_name\":\"Finley\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"romeofinley\",\"birth_date\":\"1997-11-13\",\"espn_id\":4037455},\"2991\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031698\",\"first_name\":\"Dillon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1513822801339,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"day\",\"depth_chart_position\":null,\"player_id\":\"2991\",\"birth_city\":null,\"fantasy_data_id\":17506,\"years_exp\":5,\"hashtag\":\"#DillonDay-NFL-FA-77\",\"search_first_name\":\"dillon\",\"rotowire_id\":10866,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dillon Day\",\"sportradar_id\":\"d33249f0-02fb-4c18-a73a-af8930ad27af\",\"pandascore_id\":null,\"yahoo_id\":28722,\"last_name\":\"Day\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dillonday\",\"birth_date\":\"1991-10-17\",\"espn_id\":2516310},\"5586\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034314\",\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535988630015,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"poggi\",\"depth_chart_position\":null,\"player_id\":\"5586\",\"birth_city\":null,\"fantasy_data_id\":20587,\"years_exp\":2,\"hashtag\":\"#HenryPoggi-NFL-FA-48\",\"search_first_name\":\"henry\",\"rotowire_id\":13167,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Henry Poggi\",\"sportradar_id\":\"91d9a3a9-241f-4f42-b0f0-2e7dd9b84c08\",\"pandascore_id\":null,\"yahoo_id\":31513,\"last_name\":\"Poggi\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740762,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'4\\\"\",\"search_full_name\":\"henrypoggi\",\"birth_date\":\"1994-08-09\",\"espn_id\":3045201},\"4489\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033474\",\"first_name\":\"Gehrig\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606192552014,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dieter\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4489\",\"birth_city\":null,\"fantasy_data_id\":19358,\"years_exp\":3,\"hashtag\":\"#GehrigDieter-NFL-KC-12\",\"search_first_name\":\"gehrig\",\"rotowire_id\":12184,\"rotoworld_id\":null,\"active\":true,\"search_rank\":471,\"age\":27,\"full_name\":\"Gehrig Dieter\",\"sportradar_id\":\"5727f7d5-35a6-4ad9-a96a-8408f8a84bd3\",\"pandascore_id\":null,\"yahoo_id\":30679,\"last_name\":\"Dieter\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Washington (IN)\",\"depth_chart_order\":2,\"stats_id\":652899,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gehrigdieter\",\"birth_date\":\"1993-02-24\",\"espn_id\":2980460},\"7074\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hines\",\"depth_chart_position\":null,\"player_id\":\"7074\",\"birth_city\":null,\"fantasy_data_id\":22118,\"years_exp\":0,\"hashtag\":\"#AJHines-NFL-FA-0\",\"search_first_name\":\"aj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"A.J. Hines\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hines\",\"metadata\":null,\"college\":\"Duquesne\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ajhines\",\"birth_date\":null,\"espn_id\":null},\"1976\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zurlon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tipton\",\"depth_chart_position\":null,\"player_id\":\"1976\",\"birth_city\":null,\"fantasy_data_id\":16240,\"years_exp\":6,\"hashtag\":\"#ZurlonTipton-NFL-FA-37\",\"search_first_name\":\"zurlon\",\"rotowire_id\":9543,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Zurlon Tipton\",\"sportradar_id\":\"421b1497-6e7b-4c5b-8994-14a718ea23d7\",\"pandascore_id\":null,\"yahoo_id\":27916,\"last_name\":\"Tipton\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Parkway Christian (MI)\",\"depth_chart_order\":null,\"stats_id\":494886,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"zurlontipton\",\"birth_date\":\"1990-04-27\",\"espn_id\":17094},\"1412\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030412\",\"first_name\":\"Shamarko\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567139752733,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"1412\",\"birth_city\":null,\"fantasy_data_id\":14972,\"years_exp\":7,\"hashtag\":\"#ShamarkoThomas-NFL-FA-38\",\"search_first_name\":\"shamarko\",\"rotowire_id\":8780,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Shamarko Thomas\",\"sportradar_id\":\"ecb0a97f-f70b-4ea7-a741-e1d4e764edfb\",\"pandascore_id\":null,\"yahoo_id\":26734,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Ocean Lakes (VA)\",\"depth_chart_order\":null,\"stats_id\":501862,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"shamarkothomas\",\"birth_date\":\"1991-02-23\",\"espn_id\":15992},\"6931\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeeJay\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605894901928,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dallas\",\"depth_chart_position\":\"RB\",\"player_id\":\"6931\",\"birth_city\":null,\"fantasy_data_id\":21804,\"years_exp\":0,\"hashtag\":\"#DeeJayDallas-NFL-SEA-31\",\"search_first_name\":\"deejay\",\"rotowire_id\":14410,\"rotoworld_id\":null,\"active\":true,\"search_rank\":255,\"age\":22,\"full_name\":\"DeeJay Dallas\",\"sportradar_id\":\"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2\",\"pandascore_id\":null,\"yahoo_id\":32814,\"last_name\":\"Dallas\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Glynn Academy (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'10\\\"\",\"search_full_name\":\"deejaydallas\",\"birth_date\":\"1998-09-16\",\"espn_id\":4240631},\"131\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026166\",\"first_name\":\"Duane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1578867924991,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LT\",\"player_id\":\"131\",\"birth_city\":null,\"fantasy_data_id\":3617,\"years_exp\":12,\"hashtag\":\"#DuaneBrown-NFL-SEA-76\",\"search_first_name\":\"duane\",\"rotowire_id\":5773,\"rotoworld_id\":4852,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Duane Brown\",\"sportradar_id\":\"f26bd260-a1eb-42ab-8768-bc8ad24e4f9e\",\"pandascore_id\":null,\"yahoo_id\":8803,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Hermitage (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"duanebrown\",\"birth_date\":\"1985-08-30\",\"espn_id\":11260},\"2132\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031021\",\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515368101773,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abbrederis\",\"depth_chart_position\":null,\"player_id\":\"2132\",\"birth_city\":null,\"fantasy_data_id\":16469,\"years_exp\":6,\"hashtag\":\"#JaredAbbrederis-NFL-FA-10\",\"search_first_name\":\"jared\",\"rotowire_id\":9458,\"rotoworld_id\":9574,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jared Abbrederis\",\"sportradar_id\":\"55b4a613-3028-4d49-91a3-b6e51b1198a5\",\"pandascore_id\":null,\"yahoo_id\":27704,\"last_name\":\"Abbrederis\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Wautoma (WI)\",\"depth_chart_order\":null,\"stats_id\":511710,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jaredabbrederis\",\"birth_date\":\"1990-12-07\",\"espn_id\":16836},\"6690\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"liggins\",\"depth_chart_position\":null,\"player_id\":\"6690\",\"birth_city\":null,\"fantasy_data_id\":21590,\"years_exp\":0,\"hashtag\":\"#JayLiggins-NFL-PHI-46\",\"search_first_name\":\"jay\",\"rotowire_id\":14019,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jay Liggins\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Liggins\",\"metadata\":null,\"college\":\"Dickinson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"\",\"search_full_name\":\"jayliggins\",\"birth_date\":null,\"espn_id\":4423369},\"7258\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693359838,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sellers\",\"depth_chart_position\":null,\"player_id\":\"7258\",\"birth_city\":null,\"fantasy_data_id\":22257,\"years_exp\":0,\"hashtag\":\"#LukeSellers-NFL-FA-0\",\"search_first_name\":\"luke\",\"rotowire_id\":14848,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Luke Sellers\",\"sportradar_id\":\"fae72cbd-9d7f-4e01-b88b-8bb5fbb42a28\",\"pandascore_id\":null,\"yahoo_id\":33191,\"last_name\":\"Sellers\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lukesellers\",\"birth_date\":null,\"espn_id\":3909014},\"5769\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034850\",\"first_name\":\"Ro'derrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hoskins\",\"depth_chart_position\":null,\"player_id\":\"5769\",\"birth_city\":null,\"fantasy_data_id\":20677,\"years_exp\":2,\"hashtag\":\"#RoderrickHoskins-NFL-FA-63\",\"search_first_name\":\"roderrick\",\"rotowire_id\":13369,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ro'derrick Hoskins\",\"sportradar_id\":\"4291f18f-19cb-43ca-8385-50af43d7448e\",\"pandascore_id\":null,\"yahoo_id\":31766,\"last_name\":\"Hoskins\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"roderrickhoskins\",\"birth_date\":\"1994-08-23\",\"espn_id\":3045361},\"2065\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"malena\",\"depth_chart_position\":null,\"player_id\":\"2065\",\"birth_city\":null,\"fantasy_data_id\":16367,\"years_exp\":1,\"hashtag\":\"#BenMalena-NFL-FA-33\",\"search_first_name\":\"ben\",\"rotowire_id\":9811,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ben Malena\",\"sportradar_id\":\"c408cc9f-6384-4c32-a839-84fce21c56be\",\"pandascore_id\":null,\"yahoo_id\":28131,\"last_name\":\"Malena\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'8\\\"\",\"search_full_name\":\"benmalena\",\"birth_date\":\"1992-05-29\",\"espn_id\":17319},\"515\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027656\",\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606519827465,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gronkowski\",\"depth_chart_position\":\"TE\",\"player_id\":\"515\",\"birth_city\":null,\"fantasy_data_id\":10974,\"years_exp\":10,\"hashtag\":\"#RobGronkowski-NFL-TB-87\",\"search_first_name\":\"rob\",\"rotowire_id\":6443,\"rotoworld_id\":5729,\"active\":true,\"search_rank\":68,\"age\":31,\"full_name\":\"Rob Gronkowski\",\"sportradar_id\":\"2142a164-48ad-47d6-bb27-0bc58c6b2e62\",\"pandascore_id\":null,\"yahoo_id\":24017,\"last_name\":\"Gronkowski\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Woodland Hills (PA)\",\"depth_chart_order\":1,\"stats_id\":381091,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"robgronkowski\",\"birth_date\":\"1989-05-14\",\"espn_id\":13229},\"5491\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034564\",\"first_name\":\"Dequinton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"osborne\",\"depth_chart_position\":null,\"player_id\":\"5491\",\"birth_city\":null,\"fantasy_data_id\":20201,\"years_exp\":2,\"hashtag\":\"#DequintonOsborne-NFL-FA-78\",\"search_first_name\":\"dequinton\",\"rotowire_id\":13253,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dequinton Osborne\",\"sportradar_id\":\"2fbafbc6-2236-44cf-8498-dc8b549161cf\",\"pandascore_id\":null,\"yahoo_id\":31289,\"last_name\":\"Osborne\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dequintonosborne\",\"birth_date\":null,\"espn_id\":4038466},\"2843\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031707\",\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525304701310,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"WLB\",\"player_id\":\"2843\",\"birth_city\":null,\"fantasy_data_id\":17311,\"years_exp\":5,\"hashtag\":\"#GabeMartin-NFL-FA-50\",\"search_first_name\":\"gabe\",\"rotowire_id\":10614,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Gabe Martin\",\"sportradar_id\":\"7595ead0-d80a-4dc5-bbd4-b2577d566608\",\"pandascore_id\":null,\"yahoo_id\":28809,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":null,\"depth_chart_order\":1,\"stats_id\":551562,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"gabemartin\",\"birth_date\":\"1992-06-05\",\"espn_id\":2515838},\"868\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028142\",\"first_name\":\"Virgil\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604010934911,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":\"TE\",\"player_id\":\"868\",\"birth_city\":null,\"fantasy_data_id\":13016,\"years_exp\":9,\"hashtag\":\"#VirgilGreen-NFL-LAC-88\",\"search_first_name\":\"virgil\",\"rotowire_id\":7416,\"rotoworld_id\":6570,\"active\":true,\"search_rank\":634,\"age\":32,\"full_name\":\"Virgil Green\",\"sportradar_id\":\"6ef43c53-53d7-4b0f-ad99-17664d663ae8\",\"pandascore_id\":null,\"yahoo_id\":24991,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Tulare Union (CA)\",\"depth_chart_order\":2,\"stats_id\":323254,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"virgilgreen\",\"birth_date\":\"1988-08-03\",\"espn_id\":14085},\"72\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walter\",\"depth_chart_position\":null,\"player_id\":\"72\",\"birth_city\":null,\"fantasy_data_id\":2065,\"years_exp\":11,\"hashtag\":\"#KevinWalter-NFL-FA-87\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Kevin Walter\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Walter\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kevinwalter\",\"birth_date\":\"1981-08-04\",\"espn_id\":null},\"5531\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034250\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566824719124,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dilauro\",\"depth_chart_position\":\"RT\",\"player_id\":\"5531\",\"birth_city\":null,\"fantasy_data_id\":20268,\"years_exp\":2,\"hashtag\":\"#ChristianDiLauro-NFL-FA-0\",\"search_first_name\":\"christian\",\"rotowire_id\":13141,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Christian DiLauro\",\"sportradar_id\":\"99c3a17f-afdd-4150-ba51-2120b61823fe\",\"pandascore_id\":null,\"yahoo_id\":31453,\"last_name\":\"DiLauro\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"christiandilauro\",\"birth_date\":\"1994-11-11\",\"espn_id\":3042468},\"3410\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coker\",\"depth_chart_position\":null,\"player_id\":\"3410\",\"birth_city\":null,\"fantasy_data_id\":18171,\"years_exp\":0,\"hashtag\":\"#JakeCoker-NFL-FA-6\",\"search_first_name\":\"jake\",\"rotowire_id\":11250,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jake Coker\",\"sportradar_id\":\"8c931ce2-b32a-473e-b333-5bf7e403eea9\",\"pandascore_id\":null,\"yahoo_id\":29569,\"last_name\":\"Coker\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605411,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jakecoker\",\"birth_date\":\"1992-09-22\",\"espn_id\":2576773},\"2610\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2610\",\"birth_city\":null,\"fantasy_data_id\":17078,\"years_exp\":0,\"hashtag\":\"#RobertSmith-NFL-FA-30\",\"search_first_name\":\"robert\",\"rotowire_id\":10839,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Robert Smith\",\"sportradar_id\":\"18746d7b-2fb6-4c45-9c3a-66de9623bb18\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"robertsmith\",\"birth_date\":\"1992-12-22\",\"espn_id\":2576502},\"4743\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"4743\",\"birth_city\":null,\"fantasy_data_id\":19661,\"years_exp\":2,\"hashtag\":\"#DanielGray-NFL-FA-25\",\"search_first_name\":\"daniel\",\"rotowire_id\":12278,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Daniel Gray\",\"sportradar_id\":\"aa35557a-4d17-4c73-b3e6-903b486fab6a\",\"pandascore_id\":null,\"yahoo_id\":30893,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"danielgray\",\"birth_date\":\"1994-03-23\",\"espn_id\":2972235},\"183\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Glenn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dorsey\",\"depth_chart_position\":null,\"player_id\":\"183\",\"birth_city\":null,\"fantasy_data_id\":4750,\"years_exp\":12,\"hashtag\":\"#GlennDorsey-NFL-FA-90\",\"search_first_name\":\"glenn\",\"rotowire_id\":5609,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Glenn Dorsey\",\"sportradar_id\":\"e01f12e9-7591-44ae-90e5-3df205611ac9\",\"pandascore_id\":null,\"yahoo_id\":8782,\"last_name\":\"Dorsey\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"East Ascension (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'1\\\"\",\"search_full_name\":\"glenndorsey\",\"birth_date\":\"1985-08-01\",\"espn_id\":11239},\"2177\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2177\",\"birth_city\":null,\"fantasy_data_id\":16541,\"years_exp\":1,\"hashtag\":\"#JeromeSmith-NFL-FA-34\",\"search_first_name\":\"jerome\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jerome Smith\",\"sportradar_id\":\"4bb93f66-35ac-46ed-9010-787662c3ca46\",\"pandascore_id\":null,\"yahoo_id\":28076,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":558703,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jeromesmith\",\"birth_date\":\"1991-04-06\",\"espn_id\":17256},\"2279\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031257\",\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599357357141,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"2279\",\"birth_city\":null,\"fantasy_data_id\":16694,\"years_exp\":6,\"hashtag\":\"#PaulRichardson-NFL-FA-10\",\"search_first_name\":\"paul\",\"rotowire_id\":9215,\"rotoworld_id\":9545,\"active\":true,\"search_rank\":847,\"age\":28,\"full_name\":\"Paul Richardson\",\"sportradar_id\":\"cf1a34f1-1aa7-45a1-b2b3-ffbecc8834f7\",\"pandascore_id\":null,\"yahoo_id\":27573,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":5,\"stats_id\":560223,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"paulrichardson\",\"birth_date\":\"1992-04-13\",\"espn_id\":16781},\"5541\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034186\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600224040186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"light\",\"depth_chart_position\":\"RT\",\"player_id\":\"5541\",\"birth_city\":null,\"fantasy_data_id\":20286,\"years_exp\":2,\"hashtag\":\"#AlexLight-NFL-DAL-64\",\"search_first_name\":\"alex\",\"rotowire_id\":13115,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Alex Light\",\"sportradar_id\":\"c40256f1-0bda-464b-a6b7-3a4ebb385573\",\"pandascore_id\":null,\"yahoo_id\":31437,\"last_name\":\"Light\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Salem (VA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"alexlight\",\"birth_date\":\"1996-05-02\",\"espn_id\":3120738},\"2885\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031878\",\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1557178224458,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniel\",\"depth_chart_position\":null,\"player_id\":\"2885\",\"birth_city\":null,\"fantasy_data_id\":17353,\"years_exp\":5,\"hashtag\":\"#RobDaniel-NFL-FA-31\",\"search_first_name\":\"rob\",\"rotowire_id\":10832,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Rob Daniel\",\"sportradar_id\":\"1bba6a5c-9759-4559-a6c3-4b2ffffa1ab8\",\"pandascore_id\":null,\"yahoo_id\":28959,\"last_name\":\"Daniel\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robdaniel\",\"birth_date\":\"1991-10-01\",\"espn_id\":3053794},\"6800\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K'Lavon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1602431716889,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chaisson\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6800\",\"birth_city\":null,\"fantasy_data_id\":21888,\"years_exp\":0,\"hashtag\":\"#KLavonChaisson-NFL-JAX-45\",\"search_first_name\":\"klavon\",\"rotowire_id\":14523,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1814,\"age\":21,\"full_name\":\"K'Lavon Chaisson\",\"sportradar_id\":\"74439c42-a6db-4a9a-be25-559f3e03ef59\",\"pandascore_id\":null,\"yahoo_id\":32690,\"last_name\":\"Chaisson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"klavonchaisson\",\"birth_date\":\"1999-07-25\",\"espn_id\":4242205},\"1485\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030544\",\"first_name\":\"Gavin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1536651019567,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"escobar\",\"depth_chart_position\":null,\"player_id\":\"1485\",\"birth_city\":null,\"fantasy_data_id\":15082,\"years_exp\":7,\"hashtag\":\"#GavinEscobar-NFL-FA-89\",\"search_first_name\":\"gavin\",\"rotowire_id\":8787,\"rotoworld_id\":8410,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Gavin Escobar\",\"sportradar_id\":\"433587a5-dabc-4b1b-9545-66e570f806a7\",\"pandascore_id\":null,\"yahoo_id\":26670,\"last_name\":\"Escobar\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Santa Margarita (CA)\",\"depth_chart_order\":null,\"stats_id\":507656,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"gavinescobar\",\"birth_date\":\"1991-02-03\",\"espn_id\":15836},\"4594\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033746\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603749638993,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barrett\",\"depth_chart_position\":null,\"player_id\":\"4594\",\"birth_city\":null,\"fantasy_data_id\":19481,\"years_exp\":3,\"hashtag\":\"#AlexBarrett-NFL-SF-64\",\"search_first_name\":\"alex\",\"rotowire_id\":12426,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1265,\"age\":26,\"full_name\":\"Alex Barrett\",\"sportradar_id\":\"09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1\",\"pandascore_id\":null,\"yahoo_id\":30766,\"last_name\":\"Barrett\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Desert Ridge (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alexbarrett\",\"birth_date\":\"1994-03-06\",\"espn_id\":2976114},\"114\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herremans\",\"depth_chart_position\":null,\"player_id\":\"114\",\"birth_city\":null,\"fantasy_data_id\":3158,\"years_exp\":15,\"hashtag\":\"#ToddHerremans-NFL-FA-79\",\"search_first_name\":\"todd\",\"rotowire_id\":4576,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Todd Herremans\",\"sportradar_id\":\"f2bbef7c-e87a-48bd-9418-576650842edd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Herremans\",\"metadata\":null,\"college\":\"Saginaw Valley\",\"high_school\":\"Ravenna (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'6\\\"\",\"search_full_name\":\"toddherremans\",\"birth_date\":\"1982-10-13\",\"espn_id\":8540},\"5700\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034708\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1566883833659,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"RB\",\"player_id\":\"5700\",\"birth_city\":null,\"fantasy_data_id\":20624,\"years_exp\":2,\"hashtag\":\"#RobertMartin-NFL-FA-49\",\"search_first_name\":\"robert\",\"rotowire_id\":13312,\"rotoworld_id\":13836,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Robert Martin\",\"sportradar_id\":\"845d6938-ca66-42a3-8913-1772bb8de446\",\"pandascore_id\":null,\"yahoo_id\":31704,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":838246,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"robertmartin\",\"birth_date\":\"1995-09-04\",\"espn_id\":3127374},\"3238\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033123\",\"first_name\":\"Yannick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603383645617,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ngakoue\",\"depth_chart_position\":\"RUSH\",\"player_id\":\"3238\",\"birth_city\":null,\"fantasy_data_id\":17999,\"years_exp\":4,\"hashtag\":\"#YannickNgakoue-NFL-BAL-91\",\"search_first_name\":\"yannick\",\"rotowire_id\":11146,\"rotoworld_id\":11396,\"active\":true,\"search_rank\":986,\"age\":25,\"full_name\":\"Yannick Ngakoue\",\"sportradar_id\":\"41524c86-8ab6-42e9-871b-a00e29cd2705\",\"pandascore_id\":null,\"yahoo_id\":29303,\"last_name\":\"Ngakoue\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Friendship Collegiate Academy (DC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'2\\\"\",\"search_full_name\":\"yannickngakoue\",\"birth_date\":\"1995-03-31\",\"espn_id\":3053044},\"6658\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035566\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maloata\",\"depth_chart_position\":null,\"player_id\":\"6658\",\"birth_city\":null,\"fantasy_data_id\":21566,\"years_exp\":1,\"hashtag\":\"#AustinMaloata-NFL-FA-92\",\"search_first_name\":\"austin\",\"rotowire_id\":14304,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Maloata\",\"sportradar_id\":\"bab20c49-1865-4c95-a850-fccaca346c18\",\"pandascore_id\":null,\"yahoo_id\":32595,\"last_name\":\"Maloata\",\"metadata\":null,\"college\":\"Austin Peay\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'2\\\"\",\"search_full_name\":\"austinmaloata\",\"birth_date\":\"1996-02-11\",\"espn_id\":3122684},\"3171\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032893\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1560185439726,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cook\",\"depth_chart_position\":null,\"player_id\":\"3171\",\"birth_city\":null,\"fantasy_data_id\":17932,\"years_exp\":4,\"hashtag\":\"#ConnorCook-NFL-FA-18\",\"search_first_name\":\"connor\",\"rotowire_id\":10978,\"rotoworld_id\":11280,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Connor Cook\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29334,\"last_name\":\"Cook\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606102,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'4\\\"\",\"search_full_name\":\"connorcook\",\"birth_date\":\"1993-01-29\",\"espn_id\":2576261},\"3809\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Demetris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"3809\",\"birth_city\":null,\"fantasy_data_id\":18625,\"years_exp\":0,\"hashtag\":\"#DemetrisAnderson-NFL-FA-60\",\"search_first_name\":\"demetris\",\"rotowire_id\":11436,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Demetris Anderson\",\"sportradar_id\":\"d11d153b-0920-4218-b3ef-e59aeacd7eb9\",\"pandascore_id\":null,\"yahoo_id\":29929,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'3\\\"\",\"search_full_name\":\"demetrisanderson\",\"birth_date\":\"1992-04-12\",\"espn_id\":null},\"5492\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034562\",\"first_name\":\"Donovan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584832518859,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"olumba\",\"depth_chart_position\":null,\"player_id\":\"5492\",\"birth_city\":null,\"fantasy_data_id\":20203,\"years_exp\":2,\"hashtag\":\"#DonovanOlumba-NFL-FA-0\",\"search_first_name\":\"donovan\",\"rotowire_id\":13252,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Donovan Olumba\",\"sportradar_id\":\"b76155e8-ea98-4dbc-b0b6-13cd1b0fc5db\",\"pandascore_id\":null,\"yahoo_id\":31295,\"last_name\":\"Olumba\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"donovanolumba\",\"birth_date\":\"1995-09-26\",\"espn_id\":3153653},\"293\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jonesdrew\",\"depth_chart_position\":null,\"player_id\":\"293\",\"birth_city\":null,\"fantasy_data_id\":7308,\"years_exp\":9,\"hashtag\":\"#MauriceJonesDrew-NFL-FA-21\",\"search_first_name\":\"maurice\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Maurice Jones-Drew\",\"sportradar_id\":\"f20d4a79-b8ca-4922-b276-29f46985bb3b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jones-Drew\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":214247,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'7\\\"\",\"search_full_name\":\"mauricejonesdrew\",\"birth_date\":\"1985-03-23\",\"espn_id\":9646},\"5327\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034731\",\"first_name\":\"Reginald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":1603585557486,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckenzie\",\"depth_chart_position\":null,\"player_id\":\"5327\",\"birth_city\":null,\"fantasy_data_id\":20027,\"years_exp\":2,\"hashtag\":\"#ReginaldMcKenzie-NFL-CIN-69\",\"search_first_name\":\"reginald\",\"rotowire_id\":12571,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Reginald McKenzie\",\"sportradar_id\":\"e738f88d-6a49-4efd-b53e-d031bc8c5772\",\"pandascore_id\":null,\"yahoo_id\":31168,\"last_name\":\"McKenzie\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Clayton Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"reginaldmckenzie\",\"birth_date\":\"1997-01-03\",\"espn_id\":3915388},\"5672\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckinley\",\"depth_chart_position\":null,\"player_id\":\"5672\",\"birth_city\":null,\"fantasy_data_id\":20385,\"years_exp\":0,\"hashtag\":\"#RyanMcKinley-NFL-TEN-2\",\"search_first_name\":\"ryan\",\"rotowire_id\":13299,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ryan McKinley\",\"sportradar_id\":\"00c9f0a4-de0e-48ab-9138-14036b70fb42\",\"pandascore_id\":null,\"yahoo_id\":31610,\"last_name\":\"McKinley\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ryanmckinley\",\"birth_date\":null,\"espn_id\":3045577},\"1693\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029931\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1578535848085,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"line\",\"depth_chart_position\":\"RB\",\"player_id\":\"1693\",\"birth_city\":null,\"fantasy_data_id\":15555,\"years_exp\":7,\"hashtag\":\"#ZachLine-NFL-FA-42\",\"search_first_name\":\"zach\",\"rotowire_id\":8846,\"rotoworld_id\":null,\"active\":true,\"search_rank\":764,\"age\":30,\"full_name\":\"Zach Line\",\"sportradar_id\":\"8c5067dc-1617-42fa-82eb-0596392ab20a\",\"pandascore_id\":null,\"yahoo_id\":27135,\"last_name\":\"Line\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Oxford (MI)\",\"depth_chart_order\":8,\"stats_id\":460872,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zachline\",\"birth_date\":\"1990-04-26\",\"espn_id\":16366},\"3284\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032774\",\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605226214222,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bush\",\"depth_chart_position\":\"SS\",\"player_id\":\"3284\",\"birth_city\":null,\"fantasy_data_id\":18045,\"years_exp\":4,\"hashtag\":\"#DeonBush-NFL-CHI-26\",\"search_first_name\":\"deon\",\"rotowire_id\":10930,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1008,\"age\":27,\"full_name\":\"Deon Bush\",\"sportradar_id\":\"abb612d4-f5b9-4644-b9ed-f13fa0da7e98\",\"pandascore_id\":null,\"yahoo_id\":29358,\"last_name\":\"Bush\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Columbus (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deonbush\",\"birth_date\":\"1993-08-14\",\"espn_id\":2969944},\"133\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"133\",\"birth_city\":null,\"fantasy_data_id\":3725,\"years_exp\":10,\"hashtag\":\"#GregJones-NFL-FA-45\",\"search_first_name\":\"greg\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Greg Jones\",\"sportradar_id\":\"6fe9ef94-0759-47be-a5fc-e2807d0bd823\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'1\\\"\",\"search_full_name\":\"gregjones\",\"birth_date\":\"1981-05-09\",\"espn_id\":null},\"1153\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bill\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bentley\",\"depth_chart_position\":null,\"player_id\":\"1153\",\"birth_city\":null,\"fantasy_data_id\":14201,\"years_exp\":3,\"hashtag\":\"#BillBentley-NFL-FA-41\",\"search_first_name\":\"bill\",\"rotowire_id\":8277,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Bill Bentley\",\"sportradar_id\":\"ff93e838-54a0-4594-a4b9-bcd82c67aa97\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bentley\",\"metadata\":null,\"college\":\"Louisiana - Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'10\\\"\",\"search_full_name\":\"billbentley\",\"birth_date\":\"1989-05-16\",\"espn_id\":14980},\"4577\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lucas\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wacha\",\"depth_chart_position\":null,\"player_id\":\"4577\",\"birth_city\":null,\"fantasy_data_id\":19464,\"years_exp\":2,\"hashtag\":\"#LucasWacha-NFL-FA-44\",\"search_first_name\":\"lucas\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lucas Wacha\",\"sportradar_id\":\"8a01f4e5-820a-4bee-9e6d-311febf0c8a5\",\"pandascore_id\":null,\"yahoo_id\":30791,\"last_name\":\"Wacha\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lucaswacha\",\"birth_date\":\"1993-05-20\",\"espn_id\":2976185},\"284\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024389\",\"first_name\":\"Delanie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1596464123282,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"284\",\"birth_city\":null,\"fantasy_data_id\":7175,\"years_exp\":14,\"hashtag\":\"#DelanieWalker-NFL-FA-82\",\"search_first_name\":\"delanie\",\"rotowire_id\":4888,\"rotoworld_id\":3976,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Delanie Walker\",\"sportradar_id\":\"ccce5e8e-52ca-4f0f-a40f-fe5e7227d156\",\"pandascore_id\":null,\"yahoo_id\":7924,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Central Missouri\",\"high_school\":\"Pomona (CA)\",\"depth_chart_order\":null,\"stats_id\":218943,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"delaniewalker\",\"birth_date\":\"1984-08-12\",\"espn_id\":9761},\"7272\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693359805,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stapleton\",\"depth_chart_position\":null,\"player_id\":\"7272\",\"birth_city\":null,\"fantasy_data_id\":22270,\"years_exp\":0,\"hashtag\":\"#DylanStapleton-NFL-FA-0\",\"search_first_name\":\"dylan\",\"rotowire_id\":14841,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Dylan Stapleton\",\"sportradar_id\":\"8f159cbe-950d-4bae-b708-c7c7a7993522\",\"pandascore_id\":null,\"yahoo_id\":33164,\"last_name\":\"Stapleton\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dylanstapleton\",\"birth_date\":\"1998-05-27\",\"espn_id\":4366655},\"248\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1524249001349,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccown\",\"depth_chart_position\":null,\"player_id\":\"248\",\"birth_city\":null,\"fantasy_data_id\":6276,\"years_exp\":16,\"hashtag\":\"#LukeMcCown-NFL-FA-3\",\"search_first_name\":\"luke\",\"rotowire_id\":3802,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Luke McCown\",\"sportradar_id\":\"31305637-a7a6-4d38-a617-2d928a9ce425\",\"pandascore_id\":null,\"yahoo_id\":6865,\"last_name\":\"McCown\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Jacksonville (TX)\",\"depth_chart_order\":null,\"stats_id\":246313,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lukemccown\",\"birth_date\":\"1981-07-12\",\"espn_id\":5631},\"2904\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Issac\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blakeney\",\"depth_chart_position\":null,\"player_id\":\"2904\",\"birth_city\":null,\"fantasy_data_id\":17372,\"years_exp\":1,\"hashtag\":\"#IssacBlakeney-NFL-FA-16\",\"search_first_name\":\"issac\",\"rotowire_id\":10551,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Issac Blakeney\",\"sportradar_id\":\"d5271e72-c51f-4fee-81f2-48f3b56db812\",\"pandascore_id\":null,\"yahoo_id\":28794,\"last_name\":\"Blakeney\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556166,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'6\\\"\",\"search_full_name\":\"issacblakeney\",\"birth_date\":\"1992-11-18\",\"espn_id\":2512449},\"616\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027696\",\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605607521950,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":\"TE\",\"player_id\":\"616\",\"birth_city\":null,\"fantasy_data_id\":11488,\"years_exp\":10,\"hashtag\":\"#JimmyGraham-NFL-CHI-80\",\"search_first_name\":\"jimmy\",\"rotowire_id\":6532,\"rotoworld_id\":5842,\"active\":true,\"search_rank\":306,\"age\":34,\"full_name\":\"Jimmy Graham\",\"sportradar_id\":\"fd85786d-3900-4dc0-9b30-334ee30413ed\",\"pandascore_id\":null,\"yahoo_id\":24070,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Charis Prep (NC)\",\"depth_chart_order\":1,\"stats_id\":295918,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jimmygraham\",\"birth_date\":\"1986-11-24\",\"espn_id\":13232},\"4026\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033899\",\"first_name\":\"DeShone\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606264255801,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kizer\",\"depth_chart_position\":\"QB\",\"player_id\":\"4026\",\"birth_city\":null,\"fantasy_data_id\":18868,\"years_exp\":3,\"hashtag\":\"#DeShoneKizer-NFL-TEN-14\",\"search_first_name\":\"deshone\",\"rotowire_id\":11692,\"rotoworld_id\":12160,\"active\":true,\"search_rank\":1112,\"age\":24,\"full_name\":\"DeShone Kizer\",\"sportradar_id\":\"2a78e2e7-4ef3-4cdd-85e8-0d254b65143e\",\"pandascore_id\":null,\"yahoo_id\":30165,\"last_name\":\"Kizer\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Toledo Central Catholic (OH)\",\"depth_chart_order\":3,\"stats_id\":839059,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'4\\\"\",\"search_full_name\":\"deshonekizer\",\"birth_date\":\"1996-01-03\",\"espn_id\":3129302},\"3377\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032799\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567105238978,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"3377\",\"birth_city\":null,\"fantasy_data_id\":18138,\"years_exp\":4,\"hashtag\":\"#AaronWallace-NFL-FA-50\",\"search_first_name\":\"aaron\",\"rotowire_id\":11239,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Aaron Wallace\",\"sportradar_id\":\"e02ce2d7-5bcc-40f2-a35c-3e80e6f7b695\",\"pandascore_id\":null,\"yahoo_id\":29456,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":590430,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"aaronwallace\",\"birth_date\":\"1993-07-08\",\"espn_id\":2577203},\"3385\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032801\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515462603505,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"braverman\",\"depth_chart_position\":null,\"player_id\":\"3385\",\"birth_city\":null,\"fantasy_data_id\":18146,\"years_exp\":4,\"hashtag\":\"#DanielBraverman-NFL-FA-83\",\"search_first_name\":\"daniel\",\"rotowire_id\":10821,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Daniel Braverman\",\"sportradar_id\":\"6434e26d-28ca-4fd6-9d7b-cf70e1c8efea\",\"pandascore_id\":null,\"yahoo_id\":29464,\"last_name\":\"Braverman\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652326,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"danielbraverman\",\"birth_date\":\"1993-09-28\",\"espn_id\":2973052},\"4552\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033635\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603840555209,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"irving\",\"depth_chart_position\":null,\"player_id\":\"4552\",\"birth_city\":null,\"fantasy_data_id\":19433,\"years_exp\":3,\"hashtag\":\"#IsaiahIrving-NFL-ARI-54\",\"search_first_name\":\"isaiah\",\"rotowire_id\":12445,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1261,\"age\":26,\"full_name\":\"Isaiah Irving\",\"sportradar_id\":\"983aee62-70d8-4d39-a857-da6fee82bef1\",\"pandascore_id\":null,\"yahoo_id\":30722,\"last_name\":\"Irving\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"San Jose State\",\"high_school\":\"Cypress Creek (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaiahirving\",\"birth_date\":\"1994-06-09\",\"espn_id\":3043197},\"6815\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587939846719,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"baun\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6815\",\"birth_city\":null,\"fantasy_data_id\":21907,\"years_exp\":0,\"hashtag\":\"#ZackBaun-NFL-NO-53\",\"search_first_name\":\"zack\",\"rotowire_id\":14374,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1830,\"age\":23,\"full_name\":\"Zack Baun\",\"sportradar_id\":\"719a7e8e-8286-453e-8aee-d2487c45e53f\",\"pandascore_id\":null,\"yahoo_id\":32744,\"last_name\":\"Baun\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Brown Deer (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"zackbaun\",\"birth_date\":\"1996-12-30\",\"espn_id\":3917657},\"4339\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033277\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571936132505,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kalis\",\"depth_chart_position\":null,\"player_id\":\"4339\",\"birth_city\":null,\"fantasy_data_id\":19195,\"years_exp\":3,\"hashtag\":\"#KyleKalis-NFL-FA-0\",\"search_first_name\":\"kyle\",\"rotowire_id\":12444,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Kalis\",\"sportradar_id\":\"e51b8fd6-dc76-4810-a77e-2bc153a29d1e\",\"pandascore_id\":null,\"yahoo_id\":30506,\"last_name\":\"Kalis\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylekalis\",\"birth_date\":\"1993-12-21\",\"espn_id\":2977624},\"7355\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kaltmayer\",\"depth_chart_position\":null,\"player_id\":\"7355\",\"birth_city\":null,\"fantasy_data_id\":22343,\"years_exp\":0,\"hashtag\":\"#NickKaltmayer-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":15027,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nick Kaltmayer\",\"sportradar_id\":\"45b378c7-199a-4e91-a4db-4e0a75b50c09\",\"pandascore_id\":null,\"yahoo_id\":33240,\"last_name\":\"Kaltmayer\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'7\\\"\",\"search_full_name\":\"nickkaltmayer\",\"birth_date\":\"1997-06-13\",\"espn_id\":3909120},\"6253\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035440\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zeise\",\"depth_chart_position\":null,\"player_id\":\"6253\",\"birth_city\":null,\"fantasy_data_id\":21186,\"years_exp\":1,\"hashtag\":\"#ElijahZeise-NFL-FA-46\",\"search_first_name\":\"elijah\",\"rotowire_id\":14269,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Elijah Zeise\",\"sportradar_id\":\"9f54d2f9-b787-4a50-8ea0-9db1cb7760aa\",\"pandascore_id\":null,\"yahoo_id\":32555,\"last_name\":\"Zeise\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'2\\\"\",\"search_full_name\":\"elijahzeise\",\"birth_date\":\"1995-11-28\",\"espn_id\":3123941},\"1784\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weaver\",\"depth_chart_position\":null,\"player_id\":\"1784\",\"birth_city\":null,\"fantasy_data_id\":15907,\"years_exp\":1,\"hashtag\":\"#RossWeaver-NFL-FA-41\",\"search_first_name\":\"ross\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ross Weaver\",\"sportradar_id\":\"f82362b7-55dc-4ea6-b682-911767af8c7d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Weaver\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rossweaver\",\"birth_date\":\"1987-01-09\",\"espn_id\":13666},\"7338\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cohl\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cabral\",\"depth_chart_position\":null,\"player_id\":\"7338\",\"birth_city\":null,\"fantasy_data_id\":22001,\"years_exp\":0,\"hashtag\":\"#CohlCabral-NFL-HOU-68\",\"search_first_name\":\"cohl\",\"rotowire_id\":14489,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Cohl Cabral\",\"sportradar_id\":\"3b8a2ce7-52d1-4ca2-af53-b7d7617936b3\",\"pandascore_id\":null,\"yahoo_id\":33249,\"last_name\":\"Cabral\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Los Osos (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cohlcabral\",\"birth_date\":\"1998-02-11\",\"espn_id\":4047834},\"5562\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034241\",\"first_name\":\"Skyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"5562\",\"birth_city\":null,\"fantasy_data_id\":20354,\"years_exp\":2,\"hashtag\":\"#SkylerPhillips-NFL-FA-72\",\"search_first_name\":\"skyler\",\"rotowire_id\":12857,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Skyler Phillips\",\"sportradar_id\":\"53425600-c59d-4e89-867b-86affd42c13d\",\"pandascore_id\":null,\"yahoo_id\":31476,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'3\\\"\",\"search_full_name\":\"skylerphillips\",\"birth_date\":\"1995-10-04\",\"espn_id\":3066250},\"6475\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Delvon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"randall\",\"depth_chart_position\":null,\"player_id\":\"6475\",\"birth_city\":null,\"fantasy_data_id\":21459,\"years_exp\":0,\"hashtag\":\"#DelvonRandall-NFL-FA-2\",\"search_first_name\":\"delvon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Delvon Randall\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Randall\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"delvonrandall\",\"birth_date\":null,\"espn_id\":null},\"7022\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587842441613,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lemieux\",\"depth_chart_position\":\"LG\",\"player_id\":\"7022\",\"birth_city\":null,\"fantasy_data_id\":22039,\"years_exp\":0,\"hashtag\":\"#ShaneLemieux-NFL-NYG-66\",\"search_first_name\":\"shane\",\"rotowire_id\":14669,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Shane Lemieux\",\"sportradar_id\":\"c4ab37e6-e589-43be-94dc-441c81ca5fac\",\"pandascore_id\":null,\"yahoo_id\":32820,\"last_name\":\"Lemieux\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"West Valley (WA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'4\\\"\",\"search_full_name\":\"shanelemieux\",\"birth_date\":\"1997-05-12\",\"espn_id\":3915142},\"3185\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032381\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604250018882,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"decker\",\"depth_chart_position\":\"LT\",\"player_id\":\"3185\",\"birth_city\":null,\"fantasy_data_id\":17946,\"years_exp\":4,\"hashtag\":\"#TaylorDecker-NFL-DET-68\",\"search_first_name\":\"taylor\",\"rotowire_id\":11020,\"rotoworld_id\":11285,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Taylor Decker\",\"sportradar_id\":\"1b17a67d-c771-4e7d-80ea-fb1d19adb200\",\"pandascore_id\":null,\"yahoo_id\":29250,\"last_name\":\"Decker\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Butler (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'7\\\"\",\"search_full_name\":\"taylordecker\",\"birth_date\":\"1993-08-23\",\"espn_id\":2976292},\"4822\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foreman\",\"depth_chart_position\":null,\"player_id\":\"4822\",\"birth_city\":null,\"fantasy_data_id\":19728,\"years_exp\":2,\"hashtag\":\"#MalikForeman-NFL-FA-35\",\"search_first_name\":\"malik\",\"rotowire_id\":12083,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malik Foreman\",\"sportradar_id\":\"978334d3-3dd4-4ed9-b3e5-716242ebc269\",\"pandascore_id\":null,\"yahoo_id\":30935,\"last_name\":\"Foreman\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'10\\\"\",\"search_full_name\":\"malikforeman\",\"birth_date\":\"1995-06-30\",\"espn_id\":3044723},\"3552\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wendall\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3552\",\"birth_city\":null,\"fantasy_data_id\":18323,\"years_exp\":3,\"hashtag\":\"#WendallWilliams-NFL-FA-82\",\"search_first_name\":\"wendall\",\"rotowire_id\":11480,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Wendall Williams\",\"sportradar_id\":\"bb9a2167-a417-4f5a-9889-c96586984316\",\"pandascore_id\":null,\"yahoo_id\":29819,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Cumberlands\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":915171,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"wendallwilliams\",\"birth_date\":\"1990-09-18\",\"espn_id\":3933497},\"6870\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606145713947,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6870\",\"birth_city\":null,\"fantasy_data_id\":21736,\"years_exp\":0,\"hashtag\":\"#BryanEdwards-NFL-LV-89\",\"search_first_name\":\"bryan\",\"rotowire_id\":14577,\"rotoworld_id\":null,\"active\":true,\"search_rank\":154,\"age\":22,\"full_name\":\"Bryan Edwards\",\"sportradar_id\":\"5abee27b-2710-46ed-b110-fece5c2654e8\",\"pandascore_id\":null,\"yahoo_id\":32751,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Conway (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bryanedwards\",\"birth_date\":\"1998-11-13\",\"espn_id\":4038818},\"5307\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034813\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599447061585,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lawler\",\"depth_chart_position\":\"OLB\",\"player_id\":\"5307\",\"birth_city\":null,\"fantasy_data_id\":20068,\"years_exp\":2,\"hashtag\":\"#JustinLawler-NFL-LAR-53\",\"search_first_name\":\"justin\",\"rotowire_id\":12716,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1409,\"age\":25,\"full_name\":\"Justin Lawler\",\"sportradar_id\":\"a4ce9a04-668a-4120-938b-3f05983cc0f3\",\"pandascore_id\":null,\"yahoo_id\":31214,\"last_name\":\"Lawler\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Pottsboro (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"justinlawler\",\"birth_date\":\"1994-12-23\",\"espn_id\":3040109},\"6048\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034985\",\"first_name\":\"Daylon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599710144283,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":null,\"player_id\":\"6048\",\"birth_city\":null,\"fantasy_data_id\":20866,\"years_exp\":1,\"hashtag\":\"#DaylonMack-NFL-ARI-94\",\"search_first_name\":\"daylon\",\"rotowire_id\":13607,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1572,\"age\":23,\"full_name\":\"Daylon Mack\",\"sportradar_id\":\"b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7\",\"pandascore_id\":null,\"yahoo_id\":31992,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Gladewater (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daylonmack\",\"birth_date\":\"1997-02-23\",\"espn_id\":3917316},\"2417\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031942\",\"first_name\":\"Arie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1527117001351,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kouandjio\",\"depth_chart_position\":null,\"player_id\":\"2417\",\"birth_city\":null,\"fantasy_data_id\":16873,\"years_exp\":5,\"hashtag\":\"#ArieKouandjio-NFL-FA-60\",\"search_first_name\":\"arie\",\"rotowire_id\":10298,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Arie Kouandjio\",\"sportradar_id\":\"3887491b-d2f3-43e2-bd27-01ba860a65f7\",\"pandascore_id\":null,\"yahoo_id\":28500,\"last_name\":\"Kouandjio\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ariekouandjio\",\"birth_date\":\"1992-04-23\",\"espn_id\":2515944},\"31\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elvis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535642729812,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dumervil\",\"depth_chart_position\":null,\"player_id\":\"31\",\"birth_city\":null,\"fantasy_data_id\":832,\"years_exp\":14,\"hashtag\":\"#ElvisDumervil-NFL-FA-58\",\"search_first_name\":\"elvis\",\"rotowire_id\":4913,\"rotoworld_id\":3941,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Elvis Dumervil\",\"sportradar_id\":\"854a4f9f-fd7d-406f-a545-b23e3f16a201\",\"pandascore_id\":null,\"yahoo_id\":7875,\"last_name\":\"Dumervil\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Miami-Jackson (FL)\",\"depth_chart_order\":null,\"stats_id\":219063,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"5'11\\\"\",\"search_full_name\":\"elvisdumervil\",\"birth_date\":\"1984-01-19\",\"espn_id\":9712},\"5803\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"judd\",\"depth_chart_position\":null,\"player_id\":\"5803\",\"birth_city\":null,\"fantasy_data_id\":20702,\"years_exp\":2,\"hashtag\":\"#JacobJudd-NFL-FA-61\",\"search_first_name\":\"jacob\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jacob Judd\",\"sportradar_id\":\"f215ff9f-27c4-471f-b81f-e6b1d87e830b\",\"pandascore_id\":null,\"yahoo_id\":31800,\"last_name\":\"Judd\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacobjudd\",\"birth_date\":null,\"espn_id\":3049248},\"4217\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033288\",\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604613608722,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"kittle\",\"depth_chart_position\":\"TE\",\"player_id\":\"4217\",\"birth_city\":null,\"fantasy_data_id\":19063,\"years_exp\":3,\"hashtag\":\"#GeorgeKittle-NFL-SF-85\",\"search_first_name\":\"george\",\"rotowire_id\":11892,\"rotoworld_id\":12276,\"active\":true,\"search_rank\":27,\"age\":27,\"full_name\":\"George Kittle\",\"sportradar_id\":\"2ada91b0-036e-454f-83c3-6d939ff584a9\",\"pandascore_id\":null,\"yahoo_id\":30259,\"last_name\":\"Kittle\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Norman (OK)\",\"depth_chart_order\":4,\"stats_id\":733672,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"georgekittle\",\"birth_date\":\"1993-10-09\",\"espn_id\":3040151},\"4596\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tion\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535397002657,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"4596\",\"birth_city\":null,\"fantasy_data_id\":19483,\"years_exp\":3,\"hashtag\":\"#TionGreen-NFL-FA-37\",\"search_first_name\":\"tion\",\"rotowire_id\":12294,\"rotoworld_id\":12860,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tion Green\",\"sportradar_id\":\"82369292-79c4-40db-944b-5cebd4c5ac24\",\"pandascore_id\":null,\"yahoo_id\":30768,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651635,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tiongreen\",\"birth_date\":\"1993-12-14\",\"espn_id\":2979825},\"7312\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Madre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601409916554,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harper\",\"depth_chart_position\":\"RCB\",\"player_id\":\"7312\",\"birth_city\":null,\"fantasy_data_id\":22305,\"years_exp\":0,\"hashtag\":\"#MadreHarper-NFL-NYG-45\",\"search_first_name\":\"madre\",\"rotowire_id\":14904,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1975,\"age\":23,\"full_name\":\"Madre Harper\",\"sportradar_id\":\"3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harper\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":\"Lamar (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"madreharper\",\"birth_date\":\"1997-10-13\",\"espn_id\":4038440},\"4560\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"JD\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harmon\",\"depth_chart_position\":null,\"player_id\":\"4560\",\"birth_city\":null,\"fantasy_data_id\":19444,\"years_exp\":2,\"hashtag\":\"#JDHarmon-NFL-FA-41\",\"search_first_name\":\"jd\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"JD Harmon\",\"sportradar_id\":\"39fc33fe-e742-4373-b27e-e459690ab23d\",\"pandascore_id\":null,\"yahoo_id\":30542,\"last_name\":\"Harmon\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jdharmon\",\"birth_date\":\"1994-01-18\",\"espn_id\":2980419},\"6400\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034939\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600305047837,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bee\",\"depth_chart_position\":null,\"player_id\":\"6400\",\"birth_city\":null,\"fantasy_data_id\":21403,\"years_exp\":1,\"hashtag\":\"#RyanBee-NFL-WAS-92\",\"search_first_name\":\"ryan\",\"rotowire_id\":14057,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ryan Bee\",\"sportradar_id\":\"fe9c0458-1a1a-4e88-b974-2de7426fa520\",\"pandascore_id\":null,\"yahoo_id\":32180,\"last_name\":\"Bee\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Hillsdale (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'7\\\"\",\"search_full_name\":\"ryanbee\",\"birth_date\":\"1995-11-12\",\"espn_id\":3139448},\"1603\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030089\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606189216529,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"willson\",\"depth_chart_position\":\"TE\",\"player_id\":\"1603\",\"birth_city\":null,\"fantasy_data_id\":15263,\"years_exp\":7,\"hashtag\":\"#LukeWillson-NFL-BAL-82\",\"search_first_name\":\"luke\",\"rotowire_id\":8907,\"rotoworld_id\":8567,\"active\":true,\"search_rank\":500,\"age\":30,\"full_name\":\"Luke Willson\",\"sportradar_id\":\"16c67c97-ffd9-4f92-917d-ad6124ce1f6e\",\"pandascore_id\":null,\"yahoo_id\":26781,\"last_name\":\"Willson\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"St. Thomas of Villanova (CAN)\",\"depth_chart_order\":3,\"stats_id\":466869,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lukewillson\",\"birth_date\":\"1990-01-15\",\"espn_id\":16121},\"5122\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034414\",\"first_name\":\"Boston\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606426560058,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"RB\",\"player_id\":\"5122\",\"birth_city\":null,\"fantasy_data_id\":20039,\"years_exp\":2,\"hashtag\":\"#BostonScott-NFL-PHI-35\",\"search_first_name\":\"boston\",\"rotowire_id\":12996,\"rotoworld_id\":13301,\"active\":true,\"search_rank\":131,\"age\":25,\"full_name\":\"Boston Scott\",\"sportradar_id\":\"768f6afa-ba24-40d9-bdc1-3184bba2ec2b\",\"pandascore_id\":null,\"yahoo_id\":31171,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Zachary (LA)\",\"depth_chart_order\":2,\"stats_id\":749635,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'6\\\"\",\"search_full_name\":\"bostonscott\",\"birth_date\":\"1995-04-27\",\"espn_id\":3051439},\"1788\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031089\",\"first_name\":\"Beau\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604356829845,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"1788\",\"birth_city\":null,\"fantasy_data_id\":15960,\"years_exp\":6,\"hashtag\":\"#BeauAllen-NFL-NE-94\",\"search_first_name\":\"beau\",\"rotowire_id\":9779,\"rotoworld_id\":9708,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Beau Allen\",\"sportradar_id\":\"8e16968a-ac98-4e30-a7b4-5e90202277f6\",\"pandascore_id\":null,\"yahoo_id\":27752,\"last_name\":\"Allen\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wisconsin\",\"high_school\":\"Minnetonka (MN)\",\"depth_chart_order\":null,\"stats_id\":556251,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'3\\\"\",\"search_full_name\":\"beauallen\",\"birth_date\":\"1991-11-14\",\"espn_id\":16912},\"5673\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034622\",\"first_name\":\"Davin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604963729110,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bellamy\",\"depth_chart_position\":null,\"player_id\":\"5673\",\"birth_city\":null,\"fantasy_data_id\":20297,\"years_exp\":2,\"hashtag\":\"#DavinBellamy-NFL-HOU-49\",\"search_first_name\":\"davin\",\"rotowire_id\":12911,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1446,\"age\":25,\"full_name\":\"Davin Bellamy\",\"sportradar_id\":\"84b2d5bb-4d5e-4661-b9e2-b3049f3d1c03\",\"pandascore_id\":null,\"yahoo_id\":31571,\"last_name\":\"Bellamy\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Chamblee (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davinbellamy\",\"birth_date\":\"1994-12-27\",\"espn_id\":3043128},\"294\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Peyton\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manning\",\"depth_chart_position\":null,\"player_id\":\"294\",\"birth_city\":null,\"fantasy_data_id\":7328,\"years_exp\":22,\"hashtag\":\"#PeytonManning-NFL-FA-18\",\"search_first_name\":\"peyton\",\"rotowire_id\":902,\"rotoworld_id\":1493,\"active\":false,\"search_rank\":9999999,\"age\":44,\"full_name\":\"Peyton Manning\",\"sportradar_id\":\"aae6d92e-5f28-43ee-b0dc-522e80e99f76\",\"pandascore_id\":null,\"yahoo_id\":4256,\"last_name\":\"Manning\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Newman (LA)\",\"depth_chart_order\":null,\"stats_id\":24375,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"peytonmanning\",\"birth_date\":\"1976-03-24\",\"espn_id\":1428},\"4765\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033998\",\"first_name\":\"Chunky\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535836245428,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clements\",\"depth_chart_position\":null,\"player_id\":\"4765\",\"birth_city\":null,\"fantasy_data_id\":19684,\"years_exp\":3,\"hashtag\":\"#ChunkyClements-NFL-FA-68\",\"search_first_name\":\"chunky\",\"rotowire_id\":11909,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chunky Clements\",\"sportradar_id\":\"b22487e6-897e-40b4-92dd-3ce8d851e587\",\"pandascore_id\":null,\"yahoo_id\":30905,\"last_name\":\"Clements\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chunkyclements\",\"birth_date\":\"1994-12-03\",\"espn_id\":3042478},\"1949\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031142\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1592956252635,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"feiler\",\"depth_chart_position\":\"LG\",\"player_id\":\"1949\",\"birth_city\":null,\"fantasy_data_id\":16198,\"years_exp\":6,\"hashtag\":\"#MattFeiler-NFL-PIT-71\",\"search_first_name\":\"matt\",\"rotowire_id\":9677,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Feiler\",\"sportradar_id\":\"4c751137-cb2f-4399-9e5f-1cec4b59611b\",\"pandascore_id\":null,\"yahoo_id\":28194,\"last_name\":\"Feiler\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Bloomsburg\",\"high_school\":\"Lampeter-Strasburg (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mattfeiler\",\"birth_date\":\"1992-07-07\",\"espn_id\":17404},\"1122\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028946\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1520547001115,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brewer\",\"depth_chart_position\":null,\"player_id\":\"1122\",\"birth_city\":null,\"fantasy_data_id\":14042,\"years_exp\":8,\"hashtag\":\"#AaronBrewer-NFL-ARI-46\",\"search_first_name\":\"aaron\",\"rotowire_id\":8543,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Aaron Brewer\",\"sportradar_id\":\"99149c69-e14f-4e05-9c3a-8ae7e3b1f00b\",\"pandascore_id\":null,\"yahoo_id\":25976,\"last_name\":\"Brewer\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Troy (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'5\\\"\",\"search_full_name\":\"aaronbrewer\",\"birth_date\":\"1990-07-05\",\"espn_id\":15241},\"4965\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034344\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603713335512,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davenport\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4965\",\"birth_city\":null,\"fantasy_data_id\":19835,\"years_exp\":2,\"hashtag\":\"#MarcusDavenport-NFL-NO-92\",\"search_first_name\":\"marcus\",\"rotowire_id\":12863,\"rotoworld_id\":13141,\"active\":true,\"search_rank\":1294,\"age\":24,\"full_name\":\"Marcus Davenport\",\"sportradar_id\":\"9c2c9c29-516a-4e0f-8dcd-319291823370\",\"pandascore_id\":null,\"yahoo_id\":30984,\"last_name\":\"Davenport\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":\"John Paul Stevens (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"marcusdavenport\",\"birth_date\":\"1996-09-04\",\"espn_id\":3124058},\"2251\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031260\",\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606445160080,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"TE\",\"player_id\":\"2251\",\"birth_city\":null,\"fantasy_data_id\":16656,\"years_exp\":6,\"hashtag\":\"#LoganThomas-NFL-WAS-82\",\"search_first_name\":\"logan\",\"rotowire_id\":9323,\"rotoworld_id\":9354,\"active\":true,\"search_rank\":354,\"age\":29,\"full_name\":\"Logan Thomas\",\"sportradar_id\":\"b24625a0-d402-4d59-a778-aa4b073bfe5e\",\"pandascore_id\":null,\"yahoo_id\":27648,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Brookville (VA)\",\"depth_chart_order\":1,\"stats_id\":507528,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"loganthomas\",\"birth_date\":\"1991-07-01\",\"espn_id\":16813},\"3412\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3412\",\"birth_city\":null,\"fantasy_data_id\":18173,\"years_exp\":0,\"hashtag\":\"#DevonJohnson-NFL-FA-67\",\"search_first_name\":\"devon\",\"rotowire_id\":13868,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Devon Johnson\",\"sportradar_id\":\"74c6ee11-d746-45cb-90bc-4db7f024bc1a\",\"pandascore_id\":null,\"yahoo_id\":32114,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696403,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'7\\\"\",\"search_full_name\":\"devonjohnson\",\"birth_date\":\"1993-07-28\",\"espn_id\":null},\"699\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trumaine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcbride\",\"depth_chart_position\":null,\"player_id\":\"699\",\"birth_city\":null,\"fantasy_data_id\":12141,\"years_exp\":13,\"hashtag\":\"#TrumaineMcBride-NFL-FA-38\",\"search_first_name\":\"trumaine\",\"rotowire_id\":7018,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Trumaine McBride\",\"sportradar_id\":\"10338dba-40ef-4802-8461-44e24dcf78c5\",\"pandascore_id\":null,\"yahoo_id\":8475,\"last_name\":\"McBride\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Clarkdale (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"trumainemcbride\",\"birth_date\":\"1985-09-24\",\"espn_id\":10664},\"4209\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033960\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1593651347766,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"isidora\",\"depth_chart_position\":null,\"player_id\":\"4209\",\"birth_city\":null,\"fantasy_data_id\":19055,\"years_exp\":3,\"hashtag\":\"#DannyIsidora-NFL-KC-65\",\"search_first_name\":\"danny\",\"rotowire_id\":11798,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Danny Isidora\",\"sportradar_id\":\"e805571c-fc68-438c-b8db-2d1286d99182\",\"pandascore_id\":null,\"yahoo_id\":30293,\"last_name\":\"Isidora\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Cypress Bay (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dannyisidora\",\"birth_date\":\"1994-06-05\",\"espn_id\":2969959},\"5829\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bright\",\"depth_chart_position\":null,\"player_id\":\"5829\",\"birth_city\":null,\"fantasy_data_id\":20723,\"years_exp\":0,\"hashtag\":\"#DavidBright-NFL-FA-77\",\"search_first_name\":\"david\",\"rotowire_id\":12918,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"David Bright\",\"sportradar_id\":\"15874778-fec1-4b63-8327-338198a1f8bb\",\"pandascore_id\":null,\"yahoo_id\":31813,\"last_name\":\"Bright\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidbright\",\"birth_date\":null,\"espn_id\":3043272},\"3184\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033107\",\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604021135926,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"CB\",\"player_id\":\"3184\",\"birth_city\":null,\"fantasy_data_id\":17945,\"years_exp\":4,\"hashtag\":\"#WilliamJackson-NFL-CIN-22\",\"search_first_name\":\"william\",\"rotowire_id\":11067,\"rotoworld_id\":11361,\"active\":true,\"search_rank\":958,\"age\":28,\"full_name\":\"William Jackson\",\"sportradar_id\":\"c967809a-7c88-447d-9d9f-6aebfc8370f7\",\"pandascore_id\":null,\"yahoo_id\":29258,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Wheatley (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"williamjackson\",\"birth_date\":\"1992-10-27\",\"espn_id\":3061106},\"2129\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"2129\",\"birth_city\":null,\"fantasy_data_id\":16466,\"years_exp\":1,\"hashtag\":\"#JordanThompson-NFL-FA-82\",\"search_first_name\":\"jordan\",\"rotowire_id\":9926,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jordan Thompson\",\"sportradar_id\":\"255dbbfd-e370-4f09-9abc-8f348b355033\",\"pandascore_id\":null,\"yahoo_id\":27527,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Ohio University\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":469022,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanthompson\",\"birth_date\":\"1989-07-12\",\"espn_id\":16705},\"6816\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cesar\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600530902037,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ruiz\",\"depth_chart_position\":\"RG\",\"player_id\":\"6816\",\"birth_city\":null,\"fantasy_data_id\":22036,\"years_exp\":0,\"hashtag\":\"#CesarRuiz-NFL-NO-51\",\"search_first_name\":\"cesar\",\"rotowire_id\":14468,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Cesar Ruiz\",\"sportradar_id\":\"e05e1927-1dd4-44a9-9b70-f552e6939a97\",\"pandascore_id\":null,\"yahoo_id\":32694,\"last_name\":\"Ruiz\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cesarruiz\",\"birth_date\":\"1999-06-14\",\"espn_id\":4258199},\"6465\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035074\",\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599430260830,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ives\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6465\",\"birth_city\":null,\"fantasy_data_id\":21464,\"years_exp\":1,\"hashtag\":\"#ThomasIves-NFL-CHI-14\",\"search_first_name\":\"thomas\",\"rotowire_id\":14130,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Thomas Ives\",\"sportradar_id\":\"422f272f-ca71-4fd2-a37a-d1e323c2728b\",\"pandascore_id\":null,\"yahoo_id\":32256,\"last_name\":\"Ives\",\"metadata\":null,\"college\":\"Colgate\",\"high_school\":\"Hinsdale Central (IL)\",\"depth_chart_order\":4,\"stats_id\":874641,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'4\\\"\",\"search_full_name\":\"thomasives\",\"birth_date\":\"1997-06-25\",\"espn_id\":3909300},\"799\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0028006\",\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1547849760660,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sheppard\",\"depth_chart_position\":null,\"player_id\":\"799\",\"birth_city\":null,\"fantasy_data_id\":12742,\"years_exp\":9,\"hashtag\":\"#KelvinSheppard-NFL-FA-51\",\"search_first_name\":\"kelvin\",\"rotowire_id\":7498,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kelvin Sheppard\",\"sportradar_id\":\"7190fb71-0916-4f9d-88a0-8c1a8c1c9d0d\",\"pandascore_id\":null,\"yahoo_id\":24855,\"last_name\":\"Sheppard\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":null,\"stats_id\":323237,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kelvinsheppard\",\"birth_date\":\"1988-01-02\",\"espn_id\":13995},\"7042\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1605509116159,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bass\",\"depth_chart_position\":\"K\",\"player_id\":\"7042\",\"birth_city\":null,\"fantasy_data_id\":22108,\"years_exp\":0,\"hashtag\":\"#TylerBass-NFL-BUF-2\",\"search_first_name\":\"tyler\",\"rotowire_id\":14609,\"rotoworld_id\":null,\"active\":true,\"search_rank\":410,\"age\":23,\"full_name\":\"Tyler Bass\",\"sportradar_id\":\"bfccbff4-bc01-41ed-aa11-be976160504c\",\"pandascore_id\":null,\"yahoo_id\":32858,\"last_name\":\"Bass\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":\"Dutch Fork (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tylerbass\",\"birth_date\":\"1997-02-14\",\"espn_id\":3917232},\"374\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1507738083500,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orlovsky\",\"depth_chart_position\":null,\"player_id\":\"374\",\"birth_city\":null,\"fantasy_data_id\":8590,\"years_exp\":15,\"hashtag\":\"#DanOrlovsky-NFL-FA-8\",\"search_first_name\":\"dan\",\"rotowire_id\":4312,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Dan Orlovsky\",\"sportradar_id\":\"bbfcacdd-b6ae-48df-8911-764bb7e0fcdb\",\"pandascore_id\":null,\"yahoo_id\":7321,\"last_name\":\"Orlovsky\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Shelton (CT)\",\"depth_chart_order\":null,\"stats_id\":162818,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'5\\\"\",\"search_full_name\":\"danorlovsky\",\"birth_date\":\"1983-08-18\",\"espn_id\":8559},\"5720\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034713\",\"first_name\":\"Vontae\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"diggs\",\"depth_chart_position\":null,\"player_id\":\"5720\",\"birth_city\":null,\"fantasy_data_id\":20647,\"years_exp\":2,\"hashtag\":\"#VontaeDiggs-NFL-FA-48\",\"search_first_name\":\"vontae\",\"rotowire_id\":13338,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Vontae Diggs\",\"sportradar_id\":\"9c00d8a7-dc6e-4701-8ebc-2f9eb0a38324\",\"pandascore_id\":null,\"yahoo_id\":31720,\"last_name\":\"Diggs\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"vontaediggs\",\"birth_date\":\"1995-11-07\",\"espn_id\":3125898},\"5418\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034548\",\"first_name\":\"D'Juan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1537646102546,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hines\",\"depth_chart_position\":null,\"player_id\":\"5418\",\"birth_city\":null,\"fantasy_data_id\":20436,\"years_exp\":2,\"hashtag\":\"#DJuanHines-NFL-FA-94\",\"search_first_name\":\"djuan\",\"rotowire_id\":13051,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"D'Juan Hines\",\"sportradar_id\":\"23489c12-9efd-4a72-a43a-38d2981caca3\",\"pandascore_id\":null,\"yahoo_id\":31679,\"last_name\":\"Hines\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"djuanhines\",\"birth_date\":\"1994-09-13\",\"espn_id\":3040024},\"2898\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clear\",\"depth_chart_position\":null,\"player_id\":\"2898\",\"birth_city\":null,\"fantasy_data_id\":17366,\"years_exp\":0,\"hashtag\":\"#CameronClear-NFL-FA-85\",\"search_first_name\":\"cameron\",\"rotowire_id\":10561,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cameron Clear\",\"sportradar_id\":\"68023e2f-1452-4741-a3f5-ea59f8139dba\",\"pandascore_id\":null,\"yahoo_id\":28660,\"last_name\":\"Clear\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":598669,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronclear\",\"birth_date\":\"1993-02-25\",\"espn_id\":3044687},\"7184\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"7184\",\"birth_city\":null,\"fantasy_data_id\":22186,\"years_exp\":0,\"hashtag\":\"#BrysonYoung-NFL-FA-0\",\"search_first_name\":\"bryson\",\"rotowire_id\":15002,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1947,\"age\":22,\"full_name\":\"Bryson Young\",\"sportradar_id\":\"975de072-24f3-4345-bbb1-ccdf48f87d83\",\"pandascore_id\":null,\"yahoo_id\":33069,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brysonyoung\",\"birth_date\":\"1998-03-26\",\"espn_id\":null},\"5969\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035698\",\"first_name\":\"Chuma\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606174521853,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edoga\",\"depth_chart_position\":\"RT\",\"player_id\":\"5969\",\"birth_city\":null,\"fantasy_data_id\":20746,\"years_exp\":1,\"hashtag\":\"#ChumaEdoga-NFL-NYJ-75\",\"search_first_name\":\"chuma\",\"rotowire_id\":13801,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chuma Edoga\",\"sportradar_id\":\"668bbc04-3346-4ba5-b038-9b5485f79d1c\",\"pandascore_id\":null,\"yahoo_id\":31924,\"last_name\":\"Edoga\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"McEachern (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":\"Doubtful\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chumaedoga\",\"birth_date\":\"1997-05-25\",\"espn_id\":3701582},\"4187\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033567\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606515328472,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"RB\",\"player_id\":\"4187\",\"birth_city\":null,\"fantasy_data_id\":19033,\"years_exp\":3,\"hashtag\":\"#BrianHill-NFL-ATL-23\",\"search_first_name\":\"brian\",\"rotowire_id\":11719,\"rotoworld_id\":12370,\"active\":true,\"search_rank\":239,\"age\":25,\"full_name\":\"Brian Hill\",\"sportradar_id\":\"26873576-2bbd-4622-bc3e-ec847577855b\",\"pandascore_id\":null,\"yahoo_id\":30269,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Belleville West (IL)\",\"depth_chart_order\":1,\"stats_id\":823872,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brianhill\",\"birth_date\":\"1995-11-09\",\"espn_id\":3125403},\"4525\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"De'Chavon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hayes\",\"depth_chart_position\":null,\"player_id\":\"4525\",\"birth_city\":null,\"fantasy_data_id\":19402,\"years_exp\":2,\"hashtag\":\"#DeChavonHayes-NFL-FA-48\",\"search_first_name\":\"dechavon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"De'Chavon Hayes\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hayes\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820590,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dechavonhayes\",\"birth_date\":\"1992-07-18\",\"espn_id\":3128786},\"657\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023441\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1558749025231,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"657\",\"birth_city\":null,\"fantasy_data_id\":11731,\"years_exp\":15,\"hashtag\":\"#AdamJones-NFL-FA-24\",\"search_first_name\":\"adam\",\"rotowire_id\":4457,\"rotoworld_id\":3127,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Adam Jones\",\"sportradar_id\":\"69d9c13c-2293-4eed-ae35-01c90dd45c1b\",\"pandascore_id\":null,\"yahoo_id\":7182,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Westlake (GA)\",\"depth_chart_order\":null,\"stats_id\":179874,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"adamjones\",\"birth_date\":\"1983-09-30\",\"espn_id\":8421},\"1353\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030433\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1564761913994,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gillislee\",\"depth_chart_position\":null,\"player_id\":\"1353\",\"birth_city\":null,\"fantasy_data_id\":14872,\"years_exp\":7,\"hashtag\":\"#MikeGillislee-NFL-FA-25\",\"search_first_name\":\"mike\",\"rotowire_id\":8760,\"rotoworld_id\":8396,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Mike Gillislee\",\"sportradar_id\":\"d08da2a3-8296-4038-bb46-ab1feca4bbd4\",\"pandascore_id\":null,\"yahoo_id\":26787,\"last_name\":\"Gillislee\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"DeLand (FL)\",\"depth_chart_order\":null,\"stats_id\":508875,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mikegillislee\",\"birth_date\":\"1990-11-01\",\"espn_id\":15952},\"2076\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"L'Damian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"2076\",\"birth_city\":null,\"fantasy_data_id\":16383,\"years_exp\":1,\"hashtag\":\"#LDamianWashington-NFL-FA-82\",\"search_first_name\":\"ldamian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"L'Damian Washington\",\"sportradar_id\":\"5cec52d1-4744-40a3-a338-7d9f7d597523\",\"pandascore_id\":null,\"yahoo_id\":28143,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ldamianwashington\",\"birth_date\":\"1985-11-15\",\"espn_id\":17307},\"6529\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035345\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606192849920,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"myarick\",\"depth_chart_position\":\"TE\",\"player_id\":\"6529\",\"birth_city\":null,\"fantasy_data_id\":21531,\"years_exp\":1,\"hashtag\":\"#ChrisMyarick-NFL-MIA-85\",\"search_first_name\":\"chris\",\"rotowire_id\":14282,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1754,\"age\":25,\"full_name\":\"Chris Myarick\",\"sportradar_id\":\"002adaa8-5dc2-4b4b-95bc-53a38dce3849\",\"pandascore_id\":null,\"yahoo_id\":32442,\"last_name\":\"Myarick\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Cheltenham (PA)\",\"depth_chart_order\":4,\"stats_id\":838318,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrismyarick\",\"birth_date\":\"1995-10-06\",\"espn_id\":3138744},\"2693\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mason\",\"depth_chart_position\":null,\"player_id\":\"2693\",\"birth_city\":null,\"fantasy_data_id\":17161,\"years_exp\":4,\"hashtag\":\"#DannyMason-NFL-FA-47\",\"search_first_name\":\"danny\",\"rotowire_id\":10050,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Danny Mason\",\"sportradar_id\":\"9ba676fd-4a53-4b38-8308-ddaf49d8f566\",\"pandascore_id\":null,\"yahoo_id\":28369,\"last_name\":\"Mason\",\"metadata\":null,\"college\":\"Texas A&M-Commerce\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dannymason\",\"birth_date\":\"1990-10-14\",\"espn_id\":2981913},\"4963\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034789\",\"first_name\":\"Minkah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606162514778,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fitzpatrick\",\"depth_chart_position\":\"FS\",\"player_id\":\"4963\",\"birth_city\":null,\"fantasy_data_id\":19829,\"years_exp\":2,\"hashtag\":\"#MinkahFitzpatrick-NFL-PIT-39\",\"search_first_name\":\"minkah\",\"rotowire_id\":12624,\"rotoworld_id\":13115,\"active\":true,\"search_rank\":1290,\"age\":24,\"full_name\":\"Minkah Fitzpatrick\",\"sportradar_id\":\"1aede0b9-557c-444d-9a2f-4cc690e1563c\",\"pandascore_id\":null,\"yahoo_id\":30981,\"last_name\":\"Fitzpatrick\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Alabama\",\"high_school\":\"St. Peter's Prep (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"minkahfitzpatrick\",\"birth_date\":\"1996-11-17\",\"espn_id\":3925345},\"2679\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031870\",\"first_name\":\"Dean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605834614463,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marlowe\",\"depth_chart_position\":\"SS\",\"player_id\":\"2679\",\"birth_city\":null,\"fantasy_data_id\":17147,\"years_exp\":5,\"hashtag\":\"#DeanMarlowe-NFL-BUF-31\",\"search_first_name\":\"dean\",\"rotowire_id\":10526,\"rotoworld_id\":null,\"active\":true,\"search_rank\":924,\"age\":28,\"full_name\":\"Dean Marlowe\",\"sportradar_id\":\"461b6e57-a2b0-4648-ab1f-b3ca4b111fe3\",\"pandascore_id\":null,\"yahoo_id\":28732,\"last_name\":\"Marlowe\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Holy Cross (NY)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deanmarlowe\",\"birth_date\":\"1992-07-25\",\"espn_id\":2519038},\"7193\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pollard\",\"depth_chart_position\":null,\"player_id\":\"7193\",\"birth_city\":null,\"fantasy_data_id\":22195,\"years_exp\":0,\"hashtag\":\"#SeanPollard-NFL-FA-0\",\"search_first_name\":\"sean\",\"rotowire_id\":15120,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Sean Pollard\",\"sportradar_id\":\"85682d82-c2d3-49a4-849c-d22c73180b3c\",\"pandascore_id\":null,\"yahoo_id\":33010,\"last_name\":\"Pollard\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'5\\\"\",\"search_full_name\":\"seanpollard\",\"birth_date\":\"1998-03-27\",\"espn_id\":4035480},\"CAR\":{\"team\":\"CAR\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"CAR\",\"last_name\":\"Panthers\",\"injury_status\":null,\"first_name\":\"Carolina\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"4593\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033745\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1565384707604,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"4593\",\"birth_city\":null,\"fantasy_data_id\":19480,\"years_exp\":3,\"hashtag\":\"#BrandonBarnes-NFL-FA-86\",\"search_first_name\":\"brandon\",\"rotowire_id\":12386,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Barnes\",\"sportradar_id\":\"5079332c-3043-47a6-be13-89a76469057f\",\"pandascore_id\":null,\"yahoo_id\":30765,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":754207,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandonbarnes\",\"birth_date\":\"1994-05-31\",\"espn_id\":3059165},\"851\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"851\",\"birth_city\":null,\"fantasy_data_id\":12939,\"years_exp\":5,\"hashtag\":\"#BrandonHarris-NFL-FA-29\",\"search_first_name\":\"brandon\",\"rotowire_id\":7510,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Harris\",\"sportradar_id\":\"165b0dd9-abaf-49d3-895b-80e79c5eb184\",\"pandascore_id\":null,\"yahoo_id\":24847,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brandonharris\",\"birth_date\":\"1990-01-24\",\"espn_id\":10587},\"6687\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035609\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605746443753,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gervase\",\"depth_chart_position\":null,\"player_id\":\"6687\",\"birth_city\":null,\"fantasy_data_id\":21588,\"years_exp\":1,\"hashtag\":\"#JakeGervase-NFL-LAR-39\",\"search_first_name\":\"jake\",\"rotowire_id\":14310,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1766,\"age\":25,\"full_name\":\"Jake Gervase\",\"sportradar_id\":\"e22127ac-1bc7-4f68-bc34-6e20f82a4c24\",\"pandascore_id\":null,\"yahoo_id\":32603,\"last_name\":\"Gervase\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Assumption (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jakegervase\",\"birth_date\":\"1995-09-18\",\"espn_id\":3144988},\"4412\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1521675001432,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"4412\",\"birth_city\":null,\"fantasy_data_id\":19272,\"years_exp\":2,\"hashtag\":\"#ShaanWashington-NFL-FA-57\",\"search_first_name\":\"shaan\",\"rotowire_id\":12305,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shaan Washington\",\"sportradar_id\":\"5b210a04-0ad0-428e-8574-8036efe99939\",\"pandascore_id\":null,\"yahoo_id\":30446,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shaanwashington\",\"birth_date\":\"1993-12-29\",\"espn_id\":3051815},\"1180\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"1180\",\"birth_city\":null,\"fantasy_data_id\":14330,\"years_exp\":3,\"hashtag\":\"#FrankAlexander-NFL-CAR-90\",\"search_first_name\":\"frank\",\"rotowire_id\":8286,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Frank Alexander\",\"sportradar_id\":\"66e4fc6d-abef-4c6b-a102-556da3b64740\",\"pandascore_id\":null,\"yahoo_id\":25813,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'4\\\"\",\"search_full_name\":\"frankalexander\",\"birth_date\":\"1989-12-17\",\"espn_id\":15010},\"2244\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031050\",\"first_name\":\"Kareem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1582741532735,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"2244\",\"birth_city\":null,\"fantasy_data_id\":16647,\"years_exp\":6,\"hashtag\":\"#KareemMartin-NFL-DET-96\",\"search_first_name\":\"kareem\",\"rotowire_id\":9410,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kareem Martin\",\"sportradar_id\":\"69c1e87f-7ffc-487d-8724-09f4fba12b59\",\"pandascore_id\":null,\"yahoo_id\":27612,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Roanoke Rapids (NC)\",\"depth_chart_order\":null,\"stats_id\":546108,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"272\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kareemmartin\",\"birth_date\":\"1992-02-19\",\"espn_id\":16764},\"1569\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Barrett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1569\",\"birth_city\":null,\"fantasy_data_id\":15217,\"years_exp\":7,\"hashtag\":\"#BarrettJones-NFL-FA-77\",\"search_first_name\":\"barrett\",\"rotowire_id\":8632,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Barrett Jones\",\"sportradar_id\":\"eb881031-ffac-4e6e-80c3-fdfbc6272642\",\"pandascore_id\":null,\"yahoo_id\":26736,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Evangelical Christian (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"barrettjones\",\"birth_date\":\"1990-05-25\",\"espn_id\":15908},\"1913\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031253\",\"first_name\":\"K'Waun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606343103124,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1913\",\"birth_city\":null,\"fantasy_data_id\":16143,\"years_exp\":6,\"hashtag\":\"#KWaunWilliams-NFL-SF-24\",\"search_first_name\":\"kwaun\",\"rotowire_id\":9953,\"rotoworld_id\":10192,\"active\":true,\"search_rank\":785,\"age\":29,\"full_name\":\"K'Waun Williams\",\"sportradar_id\":\"63a656b9-bcbb-44a3-95c8-e8a63660e71b\",\"pandascore_id\":null,\"yahoo_id\":28265,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"St. Joseph Regional (NJ)\",\"depth_chart_order\":null,\"stats_id\":554005,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kwaunwilliams\",\"birth_date\":\"1991-07-12\",\"espn_id\":17444},\"6391\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1560694514542,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"6391\",\"birth_city\":null,\"fantasy_data_id\":21299,\"years_exp\":1,\"hashtag\":\"#TyrellThompson-NFL-LAR-95\",\"search_first_name\":\"tyrell\",\"rotowire_id\":14015,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":19,\"full_name\":\"Tyrell Thompson\",\"sportradar_id\":\"9b76763e-1030-461f-900b-fba8e9ef9ef3\",\"pandascore_id\":null,\"yahoo_id\":32136,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Tarleton State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyrellthompson\",\"birth_date\":\"2000-03-07\",\"espn_id\":4389458},\"1065\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029414\",\"first_name\":\"Orson\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1574534123388,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"charles\",\"depth_chart_position\":null,\"player_id\":\"1065\",\"birth_city\":null,\"fantasy_data_id\":13861,\"years_exp\":8,\"hashtag\":\"#OrsonCharles-NFL-FA-83\",\"search_first_name\":\"orson\",\"rotowire_id\":8042,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Orson Charles\",\"sportradar_id\":\"b6325c85-c313-4cfb-a299-9884d5e9e389\",\"pandascore_id\":null,\"yahoo_id\":25826,\"last_name\":\"Charles\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":512099,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"orsoncharles\",\"birth_date\":\"1991-01-27\",\"espn_id\":14902},\"7369\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bill\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602805242503,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":null,\"player_id\":\"7369\",\"birth_city\":null,\"fantasy_data_id\":22356,\"years_exp\":0,\"hashtag\":\"#BillMurray-NFL-NE-97\",\"search_first_name\":\"bill\",\"rotowire_id\":14909,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Bill Murray\",\"sportradar_id\":\"a28e18bd-eb1c-48cb-b1ad-b2de212313e2\",\"pandascore_id\":null,\"yahoo_id\":33322,\"last_name\":\"Murray\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"William & Mary\",\"high_school\":\"Delbarton (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"billmurray\",\"birth_date\":\"1997-07-03\",\"espn_id\":3912189},\"4013\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":null,\"player_id\":\"4013\",\"birth_city\":null,\"fantasy_data_id\":18853,\"years_exp\":0,\"hashtag\":\"#JohnLynch-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":1921,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Lynch\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johnlynch\",\"birth_date\":null,\"espn_id\":null},\"1035\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029570\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584640833340,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ebner\",\"depth_chart_position\":\"SS\",\"player_id\":\"1035\",\"birth_city\":null,\"fantasy_data_id\":13744,\"years_exp\":8,\"hashtag\":\"#NateEbner-NFL-NYG-43\",\"search_first_name\":\"nate\",\"rotowire_id\":8244,\"rotoworld_id\":null,\"active\":true,\"search_rank\":655,\"age\":31,\"full_name\":\"Nate Ebner\",\"sportradar_id\":\"93927d6e-9271-4c1e-8239-cc20fd788ba9\",\"pandascore_id\":null,\"yahoo_id\":25907,\"last_name\":\"Ebner\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Hilliard Davidson (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nateebner\",\"birth_date\":\"1988-12-14\",\"espn_id\":15125},\"3374\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032942\",\"first_name\":\"Kevon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567783522574,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"seymour\",\"depth_chart_position\":null,\"player_id\":\"3374\",\"birth_city\":null,\"fantasy_data_id\":18135,\"years_exp\":4,\"hashtag\":\"#KevonSeymour-NFL-FA-23\",\"search_first_name\":\"kevon\",\"rotowire_id\":11170,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kevon Seymour\",\"sportradar_id\":\"e431a42b-5abe-49de-9c8c-f143f393591c\",\"pandascore_id\":null,\"yahoo_id\":29452,\"last_name\":\"Seymour\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691066,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kevonseymour\",\"birth_date\":\"1993-11-30\",\"espn_id\":2971603},\"4411\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"R.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1510100701743,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shelton\",\"depth_chart_position\":null,\"player_id\":\"4411\",\"birth_city\":null,\"fantasy_data_id\":19271,\"years_exp\":3,\"hashtag\":\"#RJShelton-NFL-FA-0\",\"search_first_name\":\"rj\",\"rotowire_id\":12403,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"R.J. Shelton\",\"sportradar_id\":\"9e9a36ec-3191-48ec-961c-8a08d961954a\",\"pandascore_id\":null,\"yahoo_id\":30444,\"last_name\":\"Shelton\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748710,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"rjshelton\",\"birth_date\":\"1994-05-06\",\"espn_id\":3052632},\"3835\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burbank\",\"depth_chart_position\":null,\"player_id\":\"3835\",\"birth_city\":null,\"fantasy_data_id\":18655,\"years_exp\":3,\"hashtag\":\"#RossBurbank-NFL-FA-61\",\"search_first_name\":\"ross\",\"rotowire_id\":11513,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ross Burbank\",\"sportradar_id\":\"ee1bc33d-ac0b-4d7c-99c6-7c2574bdba9c\",\"pandascore_id\":null,\"yahoo_id\":29954,\"last_name\":\"Burbank\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rossburbank\",\"birth_date\":\"1993-01-27\",\"espn_id\":2577829},\"6171\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035164\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599341457614,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6171\",\"birth_city\":null,\"fantasy_data_id\":20963,\"years_exp\":1,\"hashtag\":\"#CodyThompson-NFL-SEA-81\",\"search_first_name\":\"cody\",\"rotowire_id\":13490,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1607,\"age\":24,\"full_name\":\"Cody Thompson\",\"sportradar_id\":\"16da963d-a300-4d72-8e4d-7771196c03e9\",\"pandascore_id\":null,\"yahoo_id\":32367,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Huron (OH)\",\"depth_chart_order\":3,\"stats_id\":833514,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"codythompson\",\"birth_date\":\"1996-01-11\",\"espn_id\":3126115},\"2745\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bars\",\"depth_chart_position\":null,\"player_id\":\"2745\",\"birth_city\":null,\"fantasy_data_id\":17213,\"years_exp\":5,\"hashtag\":\"#BradBars-NFL-FA-66\",\"search_first_name\":\"brad\",\"rotowire_id\":10726,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brad Bars\",\"sportradar_id\":\"7bb7bf69-6420-4247-a45e-2ca67b19041d\",\"pandascore_id\":null,\"yahoo_id\":29174,\"last_name\":\"Bars\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Montgomery Bell Academy\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bradbars\",\"birth_date\":\"1992-04-24\",\"espn_id\":2515534},\"6951\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eno\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605131406649,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"benjamin\",\"depth_chart_position\":\"RB\",\"player_id\":\"6951\",\"birth_city\":null,\"fantasy_data_id\":21773,\"years_exp\":0,\"hashtag\":\"#EnoBenjamin-NFL-ARI-26\",\"search_first_name\":\"eno\",\"rotowire_id\":14372,\"rotoworld_id\":null,\"active\":true,\"search_rank\":229,\"age\":21,\"full_name\":\"Eno Benjamin\",\"sportradar_id\":\"aebf7b65-da15-4499-b1af-6687fa50b2e4\",\"pandascore_id\":null,\"yahoo_id\":32892,\"last_name\":\"Benjamin\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Wylie East (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"enobenjamin\",\"birth_date\":\"1999-04-13\",\"espn_id\":4242873},\"7089\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"divinity\",\"depth_chart_position\":null,\"player_id\":\"7089\",\"birth_city\":null,\"fantasy_data_id\":22120,\"years_exp\":0,\"hashtag\":\"#MichaelDivinity-NFL-SEA-46\",\"search_first_name\":\"michael\",\"rotowire_id\":14677,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Michael Divinity\",\"sportradar_id\":\"90cc00f8-1ee4-4c9c-97f1-ff01de473cc6\",\"pandascore_id\":null,\"yahoo_id\":33271,\"last_name\":\"Divinity\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"John Ehret (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaeldivinity\",\"birth_date\":\"1997-05-13\",\"espn_id\":4035443},\"6030\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035305\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596584749988,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"6030\",\"birth_city\":null,\"fantasy_data_id\":21044,\"years_exp\":1,\"hashtag\":\"#JordanBrown-NFL-WAS-39\",\"search_first_name\":\"jordan\",\"rotowire_id\":13547,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jordan Brown\",\"sportradar_id\":\"198b8c48-abe7-4fcb-9aea-6519fa650b18\",\"pandascore_id\":null,\"yahoo_id\":32055,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":\"Paradise Valley (AZ)\",\"depth_chart_order\":null,\"stats_id\":840248,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanbrown\",\"birth_date\":\"1996-03-26\",\"espn_id\":3121034},\"3048\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031484\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606063817406,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"manhertz\",\"depth_chart_position\":null,\"player_id\":\"3048\",\"birth_city\":null,\"fantasy_data_id\":17762,\"years_exp\":5,\"hashtag\":\"#ChrisManhertz-NFL-CAR-82\",\"search_first_name\":\"chris\",\"rotowire_id\":10033,\"rotoworld_id\":null,\"active\":true,\"search_rank\":477,\"age\":28,\"full_name\":\"Chris Manhertz\",\"sportradar_id\":\"7c7b5515-7786-4e24-9ce0-34e6a8bd5727\",\"pandascore_id\":null,\"yahoo_id\":28365,\"last_name\":\"Manhertz\",\"metadata\":null,\"college\":\"Canisius\",\"high_school\":\"Cardinal Spellman (NY)\",\"depth_chart_order\":null,\"stats_id\":563293,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chrismanhertz\",\"birth_date\":\"1992-04-10\",\"espn_id\":2531358},\"4672\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"4672\",\"birth_city\":null,\"fantasy_data_id\":19571,\"years_exp\":2,\"hashtag\":\"#BradWatson-NFL-FA-4\",\"search_first_name\":\"brad\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brad Watson\",\"sportradar_id\":\"f8114eec-a8f2-422d-a9e7-c26521639453\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bradwatson\",\"birth_date\":\"1995-08-20\",\"espn_id\":3039771},\"1773\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029112\",\"first_name\":\"Jacquies\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1543272904519,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1773\",\"birth_city\":null,\"fantasy_data_id\":15843,\"years_exp\":8,\"hashtag\":\"#JacquiesSmith-NFL-FA-93\",\"search_first_name\":\"jacquies\",\"rotowire_id\":8151,\"rotoworld_id\":8020,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jacquies Smith\",\"sportradar_id\":\"3add1dd8-32aa-44a5-b69a-b0ad2eace07b\",\"pandascore_id\":null,\"yahoo_id\":26300,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"South Oak Cliff (TX)\",\"depth_chart_order\":null,\"stats_id\":463445,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jacquiessmith\",\"birth_date\":\"1990-03-18\",\"espn_id\":15356},\"5858\":{\"position\":\"T\",\"injury_notes\":\"Dillard will have surgery and miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\" 00-0035233\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598749828352,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dillard\",\"depth_chart_position\":null,\"player_id\":\"5858\",\"birth_city\":null,\"fantasy_data_id\":21067,\"years_exp\":1,\"hashtag\":\"#AndreDillard-NFL-PHI-77\",\"search_first_name\":\"andre\",\"rotowire_id\":13671,\"rotoworld_id\":14080,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andre Dillard\",\"sportradar_id\":\"6c50f131-80dd-4aea-a34d-dac06d5cf91a\",\"pandascore_id\":null,\"yahoo_id\":31854,\"last_name\":\"Dillard\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Woodinville (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"andredillard\",\"birth_date\":\"1995-10-03\",\"espn_id\":3127264},\"2515\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031618\",\"first_name\":\"Kristjan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":1552527060273,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sokoli\",\"depth_chart_position\":null,\"player_id\":\"2515\",\"birth_city\":null,\"fantasy_data_id\":16974,\"years_exp\":5,\"hashtag\":\"#KristjanSokoli-NFL-FA-60\",\"search_first_name\":\"kristjan\",\"rotowire_id\":10489,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kristjan Sokoli\",\"sportradar_id\":\"ff5d11ea-4713-4b63-88a8-50ed1a3623a7\",\"pandascore_id\":null,\"yahoo_id\":28602,\"last_name\":\"Sokoli\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Bloomfield (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kristjansokoli\",\"birth_date\":\"1991-09-24\",\"espn_id\":2515893},\"5188\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034523\",\"first_name\":\"Quenton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596583849878,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"meeks\",\"depth_chart_position\":null,\"player_id\":\"5188\",\"birth_city\":null,\"fantasy_data_id\":20148,\"years_exp\":2,\"hashtag\":\"#QuentonMeeks-NFL-LAC-29\",\"search_first_name\":\"quenton\",\"rotowire_id\":12614,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Quenton Meeks\",\"sportradar_id\":\"f3de155c-da4f-4487-abb5-76225a8e3c17\",\"pandascore_id\":null,\"yahoo_id\":31270,\"last_name\":\"Meeks\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Del Norte (CA)\",\"depth_chart_order\":null,\"stats_id\":884951,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"quentonmeeks\",\"birth_date\":\"1997-06-20\",\"espn_id\":3931400},\"597\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027676\",\"first_name\":\"Morgan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1584371714767,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burnett\",\"depth_chart_position\":\"SS\",\"player_id\":\"597\",\"birth_city\":null,\"fantasy_data_id\":11386,\"years_exp\":10,\"hashtag\":\"#MorganBurnett-NFL-FA-42\",\"search_first_name\":\"morgan\",\"rotowire_id\":6648,\"rotoworld_id\":5708,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Morgan Burnett\",\"sportradar_id\":\"409377a4-293c-4eee-a9d1-02a46449a540\",\"pandascore_id\":null,\"yahoo_id\":24046,\"last_name\":\"Burnett\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"North Clayton (GA)\",\"depth_chart_order\":1,\"stats_id\":398652,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"morganburnett\",\"birth_date\":\"1989-01-13\",\"espn_id\":13264},\"2320\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032144\",\"first_name\":\"Melvin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606409157904,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gordon\",\"depth_chart_position\":\"RB\",\"player_id\":\"2320\",\"birth_city\":null,\"fantasy_data_id\":16776,\"years_exp\":5,\"hashtag\":\"#MelvinGordon-NFL-DEN-25\",\"search_first_name\":\"melvin\",\"rotowire_id\":10064,\"rotoworld_id\":10284,\"active\":true,\"search_rank\":33,\"age\":27,\"full_name\":\"Melvin Gordon\",\"sportradar_id\":\"0f8ccece-d663-4069-944b-f318f64c60b7\",\"pandascore_id\":null,\"yahoo_id\":28403,\"last_name\":\"Gordon\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wisconsin\",\"high_school\":\"Bradford (WI)\",\"depth_chart_order\":1,\"stats_id\":606516,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"melvingordon\",\"birth_date\":\"1993-04-13\",\"espn_id\":2576434},\"6950\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Braden\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1587849642484,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mann\",\"depth_chart_position\":null,\"player_id\":\"6950\",\"birth_city\":null,\"fantasy_data_id\":22094,\"years_exp\":0,\"hashtag\":\"#BradenMann-NFL-NYJ-7\",\"search_first_name\":\"braden\",\"rotowire_id\":14654,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Braden Mann\",\"sportradar_id\":\"85eaaf9f-59cf-4150-943c-c1abdaa78eb1\",\"pandascore_id\":null,\"yahoo_id\":32861,\"last_name\":\"Mann\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Cy-Fair (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bradenmann\",\"birth_date\":\"1997-11-24\",\"espn_id\":4035239},\"3001\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woestmann\",\"depth_chart_position\":null,\"player_id\":\"3001\",\"birth_city\":null,\"fantasy_data_id\":17530,\"years_exp\":0,\"hashtag\":\"#KyleWoestmann-NFL-FA-48\",\"search_first_name\":\"kyle\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyle Woestmann\",\"sportradar_id\":\"15ce4ed8-c78c-4d26-ac83-ebbc717ac50c\",\"pandascore_id\":null,\"yahoo_id\":29051,\"last_name\":\"Woestmann\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kylewoestmann\",\"birth_date\":\"1991-10-20\",\"espn_id\":2511568},\"6384\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557958864386,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sumpter\",\"depth_chart_position\":null,\"player_id\":\"6384\",\"birth_city\":null,\"fantasy_data_id\":21335,\"years_exp\":1,\"hashtag\":\"#JustinSumpter-NFL-LAR-13\",\"search_first_name\":\"justin\",\"rotowire_id\":13928,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Justin Sumpter\",\"sportradar_id\":\"7a5ddf17-b814-4f2c-82de-b73b52ef53be\",\"pandascore_id\":null,\"yahoo_id\":32179,\"last_name\":\"Sumpter\",\"metadata\":null,\"college\":\"Kennesaw State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":874053,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justinsumpter\",\"birth_date\":null,\"espn_id\":3911927},\"7465\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693362200,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tiano\",\"depth_chart_position\":null,\"player_id\":\"7465\",\"birth_city\":null,\"fantasy_data_id\":22440,\"years_exp\":0,\"hashtag\":\"#NickTiano-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":14935,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nick Tiano\",\"sportradar_id\":\"4fd21bc7-8a83-4ea1-bd37-4f841e862822\",\"pandascore_id\":null,\"yahoo_id\":33167,\"last_name\":\"Tiano\",\"metadata\":null,\"college\":\"Tennessee-Chattanooga\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nicktiano\",\"birth_date\":\"1996-12-10\",\"espn_id\":null},\"2021\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kona\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schwenke\",\"depth_chart_position\":null,\"player_id\":\"2021\",\"birth_city\":null,\"fantasy_data_id\":16302,\"years_exp\":3,\"hashtag\":\"#KonaSchwenke-NFL-FA-66\",\"search_first_name\":\"kona\",\"rotowire_id\":9838,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kona Schwenke\",\"sportradar_id\":\"22856b51-b27e-4803-b5e8-9d11a32b293e\",\"pandascore_id\":null,\"yahoo_id\":28257,\"last_name\":\"Schwenke\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"konaschwenke\",\"birth_date\":\"1989-06-06\",\"espn_id\":17422},\"3634\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032464\",\"first_name\":\"Kalif\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604337027615,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"raymond\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3634\",\"birth_city\":null,\"fantasy_data_id\":18422,\"years_exp\":4,\"hashtag\":\"#KalifRaymond-NFL-TEN-14\",\"search_first_name\":\"kalif\",\"rotowire_id\":11429,\"rotoworld_id\":null,\"active\":true,\"search_rank\":232,\"age\":26,\"full_name\":\"Kalif Raymond\",\"sportradar_id\":\"e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36\",\"pandascore_id\":null,\"yahoo_id\":29631,\"last_name\":\"Raymond\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Holy Cross\",\"high_school\":\"Greater Atlanta Christian (GA)\",\"depth_chart_order\":2,\"stats_id\":692660,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kalifraymond\",\"birth_date\":\"1994-08-08\",\"espn_id\":2973405},\"1866\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031025\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1540351805347,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"campanaro\",\"depth_chart_position\":null,\"player_id\":\"1866\",\"birth_city\":null,\"fantasy_data_id\":16081,\"years_exp\":6,\"hashtag\":\"#MichaelCampanaro-NFL-FA-10\",\"search_first_name\":\"michael\",\"rotowire_id\":9468,\"rotoworld_id\":9594,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Michael Campanaro\",\"sportradar_id\":\"742796c3-a092-49ab-9b24-dbc224fd11a1\",\"pandascore_id\":null,\"yahoo_id\":27746,\"last_name\":\"Campanaro\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"River Hill (MD)\",\"depth_chart_order\":null,\"stats_id\":500653,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'9\\\"\",\"search_full_name\":\"michaelcampanaro\",\"birth_date\":\"1991-01-25\",\"espn_id\":16832},\"5256\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034640\",\"first_name\":\"Deandre\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1543519546646,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goolsby\",\"depth_chart_position\":null,\"player_id\":\"5256\",\"birth_city\":null,\"fantasy_data_id\":20275,\"years_exp\":2,\"hashtag\":\"#DeandreGoolsby-NFL-FA-49\",\"search_first_name\":\"deandre\",\"rotowire_id\":13035,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Deandre Goolsby\",\"sportradar_id\":\"136f2fd9-c299-478c-bdbf-5b3cc6d04960\",\"pandascore_id\":null,\"yahoo_id\":31635,\"last_name\":\"Goolsby\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820422,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'4\\\"\",\"search_full_name\":\"deandregoolsby\",\"birth_date\":\"1996-06-12\",\"espn_id\":3115251},\"483\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1512605101449,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"casillas\",\"depth_chart_position\":null,\"player_id\":\"483\",\"birth_city\":null,\"fantasy_data_id\":9810,\"years_exp\":11,\"hashtag\":\"#JonathanCasillas-NFL-FA-52\",\"search_first_name\":\"jonathan\",\"rotowire_id\":6079,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jonathan Casillas\",\"sportradar_id\":\"9277ab2c-45d0-4dec-8898-4510d27069a1\",\"pandascore_id\":null,\"yahoo_id\":9554,\"last_name\":\"Casillas\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"New Brunswick (NJ)\",\"depth_chart_order\":null,\"stats_id\":300558,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jonathancasillas\",\"birth_date\":\"1987-06-03\",\"espn_id\":13045},\"3800\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frankie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3800\",\"birth_city\":null,\"fantasy_data_id\":18614,\"years_exp\":0,\"hashtag\":\"#FrankieWilliams-NFL-FA-46\",\"search_first_name\":\"frankie\",\"rotowire_id\":11438,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Frankie Williams\",\"sportradar_id\":\"fe043127-409a-4010-ade3-0d667f021331\",\"pandascore_id\":null,\"yahoo_id\":29902,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"frankiewilliams\",\"birth_date\":\"1993-03-28\",\"espn_id\":2576421},\"6167\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035275\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1598195443589,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scarlett\",\"depth_chart_position\":\"RB\",\"player_id\":\"6167\",\"birth_city\":null,\"fantasy_data_id\":20935,\"years_exp\":1,\"hashtag\":\"#JordanScarlett-NFL-FA-0\",\"search_first_name\":\"jordan\",\"rotowire_id\":13510,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1597,\"age\":25,\"full_name\":\"Jordan Scarlett\",\"sportradar_id\":\"38abfa4e-ad62-4392-89a0-ac2a012efd87\",\"pandascore_id\":null,\"yahoo_id\":31986,\"last_name\":\"Scarlett\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":24,\"stats_id\":879049,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordanscarlett\",\"birth_date\":\"1995-07-08\",\"espn_id\":3915115},\"5047\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034158\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1593577263639,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"oneill\",\"depth_chart_position\":\"RT\",\"player_id\":\"5047\",\"birth_city\":null,\"fantasy_data_id\":19883,\"years_exp\":2,\"hashtag\":\"#BrianONeill-NFL-MIN-75\",\"search_first_name\":\"brian\",\"rotowire_id\":12476,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brian O'Neill\",\"sportradar_id\":\"60ff28ab-0edc-43e3-8517-cd57c78f6347\",\"pandascore_id\":null,\"yahoo_id\":31032,\"last_name\":\"O'Neill\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Salesianum (DE)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brianoneill\",\"birth_date\":\"1995-09-15\",\"espn_id\":3123954},\"3254\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032892\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601826338305,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vigil\",\"depth_chart_position\":\"LB\",\"player_id\":\"3254\",\"birth_city\":null,\"fantasy_data_id\":18015,\"years_exp\":4,\"hashtag\":\"#NickVigil-NFL-LAC-59\",\"search_first_name\":\"nick\",\"rotowire_id\":10948,\"rotoworld_id\":null,\"active\":true,\"search_rank\":994,\"age\":27,\"full_name\":\"Nick Vigil\",\"sportradar_id\":\"c44b31cd-0480-4aa0-b500-12e9ba0765ac\",\"pandascore_id\":null,\"yahoo_id\":29321,\"last_name\":\"Vigil\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Fremont (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nickvigil\",\"birth_date\":\"1993-08-20\",\"espn_id\":2971816},\"5796\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534987852092,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wolf\",\"depth_chart_position\":null,\"player_id\":\"5796\",\"birth_city\":null,\"fantasy_data_id\":20696,\"years_exp\":2,\"hashtag\":\"#AustinWolf-NFL-FA-15\",\"search_first_name\":\"austin\",\"rotowire_id\":13393,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Wolf\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31793,\"last_name\":\"Wolf\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":743842,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austinwolf\",\"birth_date\":\"1994-10-12\",\"espn_id\":3052566},\"2639\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1587870049323,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"2639\",\"birth_city\":null,\"fantasy_data_id\":17107,\"years_exp\":0,\"hashtag\":\"#TonyJones-NFL-FA-13\",\"search_first_name\":\"tony\",\"rotowire_id\":14423,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tony Jones\",\"sportradar_id\":\"ee5c7c6a-bf9b-46c6-90fe-61ea7f2b7fe2\",\"pandascore_id\":null,\"yahoo_id\":28860,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":546179,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tonyjones\",\"birth_date\":\"1992-03-21\",\"espn_id\":2511102},\"880\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"powe\",\"depth_chart_position\":null,\"player_id\":\"880\",\"birth_city\":null,\"fantasy_data_id\":13046,\"years_exp\":4,\"hashtag\":\"#JerrellPowe-NFL-FA-63\",\"search_first_name\":\"jerrell\",\"rotowire_id\":7473,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jerrell Powe\",\"sportradar_id\":\"96a7ea5c-1568-4f22-95b0-2793e6dc6029\",\"pandascore_id\":null,\"yahoo_id\":24986,\"last_name\":\"Powe\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jerrellpowe\",\"birth_date\":\"1987-03-15\",\"espn_id\":14061},\"6300\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035315\",\"first_name\":\"Cortez\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1573848015993,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"broughton\",\"depth_chart_position\":\"DT\",\"player_id\":\"6300\",\"birth_city\":null,\"fantasy_data_id\":21130,\"years_exp\":1,\"hashtag\":\"#CortezBroughton-NFL-LAC-91\",\"search_first_name\":\"cortez\",\"rotowire_id\":13706,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1674,\"age\":24,\"full_name\":\"Cortez Broughton\",\"sportradar_id\":\"6ee96e28-60b0-4e30-b014-6962e7d1c3db\",\"pandascore_id\":null,\"yahoo_id\":32074,\"last_name\":\"Broughton\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Veterans (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cortezbroughton\",\"birth_date\":\"1996-09-02\",\"espn_id\":3139036},\"1178\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"1178\",\"birth_city\":null,\"fantasy_data_id\":14295,\"years_exp\":8,\"hashtag\":\"#SeanRichardson-NFL-FA-28\",\"search_first_name\":\"sean\",\"rotowire_id\":8528,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Sean Richardson\",\"sportradar_id\":\"f03e7491-7eff-45bb-b4a0-03e89b8cdc8d\",\"pandascore_id\":null,\"yahoo_id\":26434,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Linden (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"seanrichardson\",\"birth_date\":\"1990-01-21\",\"espn_id\":15454},\"6097\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588111219962,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"custis\",\"depth_chart_position\":null,\"player_id\":\"6097\",\"birth_city\":null,\"fantasy_data_id\":21016,\"years_exp\":1,\"hashtag\":\"#JamalCustis-NFL-FA-0\",\"search_first_name\":\"jamal\",\"rotowire_id\":13621,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jamal Custis\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":32355,\"last_name\":\"Custis\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":836211,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jamalcustis\",\"birth_date\":\"1995-11-06\",\"espn_id\":3124013},\"777\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pears\",\"depth_chart_position\":null,\"player_id\":\"777\",\"birth_city\":null,\"fantasy_data_id\":12610,\"years_exp\":15,\"hashtag\":\"#ErikPears-NFL-FA-71\",\"search_first_name\":\"erik\",\"rotowire_id\":7124,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Erik Pears\",\"sportradar_id\":\"dc310df5-3ada-4b4f-8f79-2db2cc603ff8\",\"pandascore_id\":null,\"yahoo_id\":7588,\"last_name\":\"Pears\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"John F. Kennedy (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'8\\\"\",\"search_full_name\":\"erikpears\",\"birth_date\":\"1982-06-25\",\"espn_id\":9399},\"1763\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orton\",\"depth_chart_position\":null,\"player_id\":\"1763\",\"birth_city\":null,\"fantasy_data_id\":15813,\"years_exp\":1,\"hashtag\":\"#GregOrton-NFL-FA-16\",\"search_first_name\":\"greg\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Greg Orton\",\"sportradar_id\":\"483242d7-57c0-4d7e-921b-d836df3a0abb\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Orton\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gregorton\",\"birth_date\":\"1986-12-17\",\"espn_id\":12589},\"2751\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032098\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1599437761277,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"TE\",\"player_id\":\"2751\",\"birth_city\":null,\"fantasy_data_id\":17219,\"years_exp\":5,\"hashtag\":\"#DanielBrown-NFL-NYJ-87\",\"search_first_name\":\"daniel\",\"rotowire_id\":10713,\"rotoworld_id\":null,\"active\":true,\"search_rank\":522,\"age\":28,\"full_name\":\"Daniel Brown\",\"sportradar_id\":\"1b016b52-62ba-4da9-9ead-6bad689f8d33\",\"pandascore_id\":null,\"yahoo_id\":29102,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Isle of Wight (VA)\",\"depth_chart_order\":5,\"stats_id\":561380,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'5\\\"\",\"search_full_name\":\"danielbrown\",\"birth_date\":\"1992-05-26\",\"espn_id\":2519013},\"900\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"900\",\"birth_city\":null,\"fantasy_data_id\":13111,\"years_exp\":9,\"hashtag\":\"#MarioButler-NFL-FA-39\",\"search_first_name\":\"mario\",\"rotowire_id\":7909,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mario Butler\",\"sportradar_id\":\"3fe25907-8f3a-4b94-81a6-5428e37228f1\",\"pandascore_id\":null,\"yahoo_id\":25429,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Nease (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mariobutler\",\"birth_date\":\"1988-10-20\",\"espn_id\":14671},\"4654\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033729\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1585088745015,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnston\",\"depth_chart_position\":null,\"player_id\":\"4654\",\"birth_city\":null,\"fantasy_data_id\":19552,\"years_exp\":3,\"hashtag\":\"#CameronJohnston-NFL-PHI-1\",\"search_first_name\":\"cameron\",\"rotowire_id\":11829,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cameron Johnston\",\"sportradar_id\":\"d2f6de91-089a-4845-9b90-bfbc00487444\",\"pandascore_id\":null,\"yahoo_id\":30711,\"last_name\":\"Johnston\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Joseph's (AUS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cameronjohnston\",\"birth_date\":\"1992-02-24\",\"espn_id\":3051397},\"178\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022787\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599403259649,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schaub\",\"depth_chart_position\":\"QB\",\"player_id\":\"178\",\"birth_city\":null,\"fantasy_data_id\":4633,\"years_exp\":16,\"hashtag\":\"#MattSchaub-NFL-ATL-8\",\"search_first_name\":\"matt\",\"rotowire_id\":3793,\"rotoworld_id\":16,\"active\":true,\"search_rank\":513,\"age\":39,\"full_name\":\"Matt Schaub\",\"sportradar_id\":\"1f09583f-dcc1-43e8-a7fc-f063d2c96508\",\"pandascore_id\":null,\"yahoo_id\":6849,\"last_name\":\"Schaub\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"West Chester East (PA)\",\"depth_chart_order\":2,\"stats_id\":246140,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mattschaub\",\"birth_date\":\"1981-06-25\",\"espn_id\":5615},\"5441\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lowell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lotulelei\",\"depth_chart_position\":null,\"player_id\":\"5441\",\"birth_city\":null,\"fantasy_data_id\":20484,\"years_exp\":1,\"hashtag\":\"#LowellLotulelei-NFL-FA-78\",\"search_first_name\":\"lowell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Lowell Lotulelei\",\"sportradar_id\":\"17d9c3fa-f955-4f6b-a373-a871590282a4\",\"pandascore_id\":null,\"yahoo_id\":31380,\"last_name\":\"Lotulelei\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lowelllotulelei\",\"birth_date\":\"1995-03-22\",\"espn_id\":3122874},\"2651\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":null,\"player_id\":\"2651\",\"birth_city\":null,\"fantasy_data_id\":17119,\"years_exp\":0,\"hashtag\":\"#PhillipSims-NFL-FA-0\",\"search_first_name\":\"phillip\",\"rotowire_id\":10564,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Phillip Sims\",\"sportradar_id\":\"4372d6fb-1e5b-404e-986c-c21014d72ab0\",\"pandascore_id\":null,\"yahoo_id\":29067,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":543791,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'0\\\"\",\"search_full_name\":\"phillipsims\",\"birth_date\":\"1992-08-15\",\"espn_id\":2088468},\"7376\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Case\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693359986,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cookus\",\"depth_chart_position\":null,\"player_id\":\"7376\",\"birth_city\":null,\"fantasy_data_id\":22364,\"years_exp\":0,\"hashtag\":\"#CaseCookus-NFL-FA-0\",\"search_first_name\":\"case\",\"rotowire_id\":14888,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Case Cookus\",\"sportradar_id\":\"9613d5fd-95c6-456e-8d78-50a0a309d7a1\",\"pandascore_id\":null,\"yahoo_id\":33036,\"last_name\":\"Cookus\",\"metadata\":null,\"college\":\"Northern Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'4\\\"\",\"search_full_name\":\"casecookus\",\"birth_date\":\"1995-10-06\",\"espn_id\":null},\"5046\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034838\",\"first_name\":\"Royce\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606253756452,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"freeman\",\"depth_chart_position\":\"RB\",\"player_id\":\"5046\",\"birth_city\":null,\"fantasy_data_id\":19823,\"years_exp\":2,\"hashtag\":\"#RoyceFreeman-NFL-DEN-28\",\"search_first_name\":\"royce\",\"rotowire_id\":12892,\"rotoworld_id\":13172,\"active\":true,\"search_rank\":226,\"age\":24,\"full_name\":\"Royce Freeman\",\"sportradar_id\":\"82f459c4-bf23-4d60-9eb6-b062994f5517\",\"pandascore_id\":null,\"yahoo_id\":31041,\"last_name\":\"Freeman\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Oregon\",\"high_school\":\"Imperial (CA)\",\"depth_chart_order\":3,\"stats_id\":835779,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"roycefreeman\",\"birth_date\":\"1996-02-24\",\"espn_id\":3122672},\"7388\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603410949419,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hilbers\",\"depth_chart_position\":null,\"player_id\":\"7388\",\"birth_city\":null,\"fantasy_data_id\":22374,\"years_exp\":0,\"hashtag\":\"#JaredHilbers-NFL-JAX-79\",\"search_first_name\":\"jared\",\"rotowire_id\":15034,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jared Hilbers\",\"sportradar_id\":\"b53cac15-62fd-4d80-b0a6-ba5d9c4bbb04\",\"pandascore_id\":null,\"yahoo_id\":33334,\"last_name\":\"Hilbers\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Beaverton (OR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jaredhilbers\",\"birth_date\":\"1997-02-16\",\"espn_id\":3886819},\"5949\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035007\",\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"5949\",\"birth_city\":null,\"fantasy_data_id\":20732,\"years_exp\":1,\"hashtag\":\"#PaulAdams-NFL-TEN-79\",\"search_first_name\":\"paul\",\"rotowire_id\":13718,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Paul Adams\",\"sportradar_id\":\"9f102200-82e7-4fce-a033-2a06d16c35fd\",\"pandascore_id\":null,\"yahoo_id\":32233,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Christ Presbyterian (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"pauladams\",\"birth_date\":\"1995-05-17\",\"espn_id\":3122099},\"1799\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wade\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keliikipi\",\"depth_chart_position\":null,\"player_id\":\"1799\",\"birth_city\":null,\"fantasy_data_id\":15972,\"years_exp\":1,\"hashtag\":\"#WadeKeliikipi-NFL-FA-74\",\"search_first_name\":\"wade\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Wade Keliikipi\",\"sportradar_id\":\"3ceda855-392c-4290-b3b7-e20d8603a2d3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Keliikipi\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"wadekeliikipi\",\"birth_date\":\"1991-07-21\",\"espn_id\":17012},\"6508\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035049\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stubbs\",\"depth_chart_position\":null,\"player_id\":\"6508\",\"birth_city\":null,\"fantasy_data_id\":21502,\"years_exp\":1,\"hashtag\":\"#AnthonyStubbs-NFL-FA-90\",\"search_first_name\":\"anthony\",\"rotowire_id\":14137,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Anthony Stubbs\",\"sportradar_id\":\"b58cabc3-4443-401f-95fe-54809db519ab\",\"pandascore_id\":null,\"yahoo_id\":32288,\"last_name\":\"Stubbs\",\"metadata\":null,\"college\":\"Prairie View\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonystubbs\",\"birth_date\":\"1996-08-09\",\"espn_id\":4251200},\"1547\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030463\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605677428296,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"klein\",\"depth_chart_position\":\"WLB\",\"player_id\":\"1547\",\"birth_city\":null,\"fantasy_data_id\":15186,\"years_exp\":7,\"hashtag\":\"#AJKlein-NFL-BUF-54\",\"search_first_name\":\"aj\",\"rotowire_id\":8942,\"rotoworld_id\":8558,\"active\":true,\"search_rank\":738,\"age\":29,\"full_name\":\"A.J. Klein\",\"sportradar_id\":\"9342eba6-e307-4c55-a0f7-993518dd4415\",\"pandascore_id\":null,\"yahoo_id\":26771,\"last_name\":\"Klein\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Kimberly (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ajklein\",\"birth_date\":\"1991-07-30\",\"espn_id\":15964},\"2859\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031636\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1572062441676,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":\"LDT\",\"player_id\":\"2859\",\"birth_city\":null,\"fantasy_data_id\":17327,\"years_exp\":5,\"hashtag\":\"#JustinHamilton-NFL-DAL-79\",\"search_first_name\":\"justin\",\"rotowire_id\":10592,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Justin Hamilton\",\"sportradar_id\":\"1fb9a153-f1e0-4396-81fd-c3b1d331338f\",\"pandascore_id\":null,\"yahoo_id\":28771,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Natchez (MS)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinhamilton\",\"birth_date\":\"1993-07-27\",\"espn_id\":2574009},\"5705\":{\"position\":\"WR\",\"injury_notes\":\"Franklin was carted off the field in practice during training camp.\",\"birth_country\":null,\"gsis_id\":\"00-0034705\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1599005433864,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5705\",\"birth_city\":null,\"fantasy_data_id\":20550,\"years_exp\":2,\"hashtag\":\"#JohnFranklin-NFL-TB-5\",\"search_first_name\":\"john\",\"rotowire_id\":13207,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"John Franklin\",\"sportradar_id\":\"50d378c3-a33e-4f30-a5be-7c13bf52ff66\",\"pandascore_id\":null,\"yahoo_id\":31712,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"South Plantation (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnfranklin\",\"birth_date\":\"1994-09-21\",\"espn_id\":4035496},\"3103\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdermott\",\"depth_chart_position\":null,\"player_id\":\"3103\",\"birth_city\":null,\"fantasy_data_id\":17854,\"years_exp\":0,\"hashtag\":\"#SeanMcDermott-NFL-FA-0\",\"search_first_name\":\"sean\",\"rotowire_id\":null,\"rotoworld_id\":9285,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Sean McDermott\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McDermott\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"seanmcdermott\",\"birth_date\":null,\"espn_id\":null},\"435\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lawrence\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sidbury\",\"depth_chart_position\":null,\"player_id\":\"435\",\"birth_city\":null,\"fantasy_data_id\":9126,\"years_exp\":11,\"hashtag\":\"#LawrenceSidbury-NFL-FA-59\",\"search_first_name\":\"lawrence\",\"rotowire_id\":6063,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Lawrence Sidbury\",\"sportradar_id\":\"4a71a61c-5358-4595-9573-00fa71f22890\",\"pandascore_id\":null,\"yahoo_id\":9389,\"last_name\":\"Sidbury\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Oxon Hill (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lawrencesidbury\",\"birth_date\":\"1986-02-06\",\"espn_id\":12727},\"6367\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Roderick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1565538922605,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"6367\",\"birth_city\":null,\"fantasy_data_id\":21258,\"years_exp\":1,\"hashtag\":\"#RoderickYoung-NFL-FA-76\",\"search_first_name\":\"roderick\",\"rotowire_id\":14035,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Roderick Young\",\"sportradar_id\":\"4d528d77-9fcb-4708-86ed-98d4fff7b34e\",\"pandascore_id\":null,\"yahoo_id\":32107,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'1\\\"\",\"search_full_name\":\"roderickyoung\",\"birth_date\":null,\"espn_id\":3914505},\"1497\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cooper\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"1497\",\"birth_city\":null,\"fantasy_data_id\":15095,\"years_exp\":7,\"hashtag\":\"#CooperTaylor-NFL-FA-30\",\"search_first_name\":\"cooper\",\"rotowire_id\":8920,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Cooper Taylor\",\"sportradar_id\":\"bea4b40e-a963-4e48-97b1-8e3ac61c0624\",\"pandascore_id\":null,\"yahoo_id\":26775,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Marist (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coopertaylor\",\"birth_date\":\"1990-04-14\",\"espn_id\":15895},\"2888\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Raymon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"2888\",\"birth_city\":null,\"fantasy_data_id\":17356,\"years_exp\":0,\"hashtag\":\"#RaymonTaylor-NFL-FA-22\",\"search_first_name\":\"raymon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Raymon Taylor\",\"sportradar_id\":\"c33a582e-1702-4ead-b1ba-781a9678e846\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"raymontaylor\",\"birth_date\":\"1992-07-24\",\"espn_id\":2576233},\"3155\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032951\",\"first_name\":\"Laquon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605649824681,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"treadwell\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3155\",\"birth_city\":null,\"fantasy_data_id\":17914,\"years_exp\":4,\"hashtag\":\"#LaquonTreadwell-NFL-ATL-80\",\"search_first_name\":\"laquon\",\"rotowire_id\":10739,\"rotoworld_id\":11210,\"active\":true,\"search_rank\":944,\"age\":25,\"full_name\":\"Laquon Treadwell\",\"sportradar_id\":\"2e0badcd-b78c-40ee-a83b-a1bbb36bc545\",\"pandascore_id\":null,\"yahoo_id\":29257,\"last_name\":\"Treadwell\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Crete-Monee (IL)\",\"depth_chart_order\":3,\"stats_id\":748554,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"laquontreadwell\",\"birth_date\":\"1995-06-14\",\"espn_id\":3051889},\"4070\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033886\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605552318960,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watt\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"4070\",\"birth_city\":null,\"fantasy_data_id\":18916,\"years_exp\":3,\"hashtag\":\"#TJWatt-NFL-PIT-90\",\"search_first_name\":\"tj\",\"rotowire_id\":11984,\"rotoworld_id\":12242,\"active\":true,\"search_rank\":1123,\"age\":26,\"full_name\":\"T.J. Watt\",\"sportradar_id\":\"f340201b-a1b1-43ba-a47a-484a44334553\",\"pandascore_id\":null,\"yahoo_id\":30143,\"last_name\":\"Watt\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Wisconsin\",\"high_school\":\"Pewaukee (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tjwatt\",\"birth_date\":\"1994-10-11\",\"espn_id\":3045282},\"1335\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030149\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1543279805544,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tobin\",\"depth_chart_position\":null,\"player_id\":\"1335\",\"birth_city\":null,\"fantasy_data_id\":14852,\"years_exp\":7,\"hashtag\":\"#MattTobin-NFL-FA-64\",\"search_first_name\":\"matt\",\"rotowire_id\":9119,\"rotoworld_id\":8856,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Matt Tobin\",\"sportradar_id\":\"36bb2c46-33d3-4e86-bb12-63b658cf8f7f\",\"pandascore_id\":null,\"yahoo_id\":27058,\"last_name\":\"Tobin\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Beckman Catholic (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'6\\\"\",\"search_full_name\":\"matttobin\",\"birth_date\":\"1990-06-05\",\"espn_id\":16235},\"4259\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033964\",\"first_name\":\"Al-Quadin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600122605803,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"muhammad\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4259\",\"birth_city\":null,\"fantasy_data_id\":19105,\"years_exp\":3,\"hashtag\":\"#AlQuadinMuhammad-NFL-IND-97\",\"search_first_name\":\"alquadin\",\"rotowire_id\":11930,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1221,\"age\":25,\"full_name\":\"Al-Quadin Muhammad\",\"sportradar_id\":\"08875a0a-0a3c-4fc1-b5f7-41d510503628\",\"pandascore_id\":null,\"yahoo_id\":30309,\"last_name\":\"Muhammad\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Don Bosco Prep (NJ)\",\"depth_chart_order\":2,\"stats_id\":748589,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alquadinmuhammad\",\"birth_date\":\"1995-03-28\",\"espn_id\":3051942},\"7179\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"capps\",\"depth_chart_position\":null,\"player_id\":\"7179\",\"birth_city\":null,\"fantasy_data_id\":22181,\"years_exp\":0,\"hashtag\":\"#AustinCapps-NFL-FA-0\",\"search_first_name\":\"austin\",\"rotowire_id\":14766,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Austin Capps\",\"sportradar_id\":\"f4b17149-3def-463d-b1c5-067f3519ad30\",\"pandascore_id\":null,\"yahoo_id\":33046,\"last_name\":\"Capps\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austincapps\",\"birth_date\":\"1997-08-21\",\"espn_id\":null},\"935\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DJ\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"935\",\"birth_city\":null,\"fantasy_data_id\":13250,\"years_exp\":4,\"hashtag\":\"#DJWilliams-NFL-FA-85\",\"search_first_name\":\"dj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"DJ Williams\",\"sportradar_id\":\"26f507c9-6d5d-454a-a381-7ec1fd2e0fb1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"djwilliams\",\"birth_date\":\"1988-09-10\",\"espn_id\":null},\"496\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gibson\",\"depth_chart_position\":null,\"player_id\":\"496\",\"birth_city\":null,\"fantasy_data_id\":10034,\"years_exp\":7,\"hashtag\":\"#BrandonGibson-NFL-FA-13\",\"search_first_name\":\"brandon\",\"rotowire_id\":6024,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brandon Gibson\",\"sportradar_id\":\"5f8ecc8b-ea5b-424f-88e7-b47c77bac783\",\"pandascore_id\":null,\"yahoo_id\":9458,\"last_name\":\"Gibson\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandongibson\",\"birth_date\":\"1987-08-31\",\"espn_id\":12567},\"2534\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1520386501508,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hilliard\",\"depth_chart_position\":null,\"player_id\":\"2534\",\"birth_city\":null,\"fantasy_data_id\":16994,\"years_exp\":4,\"hashtag\":\"#KennyHilliard-NFL-FA-30\",\"search_first_name\":\"kenny\",\"rotowire_id\":10481,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kenny Hilliard\",\"sportradar_id\":\"73bc375f-ad2e-4a25-b5c9-8adb55497acf\",\"pandascore_id\":null,\"yahoo_id\":28623,\"last_name\":\"Hilliard\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":589974,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kennyhilliard\",\"birth_date\":\"1991-10-31\",\"espn_id\":2577288},\"1144\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029000\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606497303713,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beasley\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1144\",\"birth_city\":null,\"fantasy_data_id\":14141,\"years_exp\":8,\"hashtag\":\"#ColeBeasley-NFL-BUF-11\",\"search_first_name\":\"cole\",\"rotowire_id\":8249,\"rotoworld_id\":7794,\"active\":true,\"search_rank\":181,\"age\":31,\"full_name\":\"Cole Beasley\",\"sportradar_id\":\"7092bb09-a161-4ab9-8d19-fdcf1a91bb3d\",\"pandascore_id\":null,\"yahoo_id\":26060,\"last_name\":\"Beasley\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Little Elm (TX)\",\"depth_chart_order\":1,\"stats_id\":460830,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'8\\\"\",\"search_full_name\":\"colebeasley\",\"birth_date\":\"1989-04-26\",\"espn_id\":15349},\"2728\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ashaad\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1569883524390,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mabry\",\"depth_chart_position\":null,\"player_id\":\"2728\",\"birth_city\":null,\"fantasy_data_id\":17196,\"years_exp\":4,\"hashtag\":\"#AshaadMabry-NFL-FA-72\",\"search_first_name\":\"ashaad\",\"rotowire_id\":10788,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ashaad Mabry\",\"sportradar_id\":\"0c8ab112-b71a-4e93-8a87-65b1160363ee\",\"pandascore_id\":null,\"yahoo_id\":28761,\"last_name\":\"Mabry\",\"metadata\":null,\"college\":\"Texas San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ashaadmabry\",\"birth_date\":\"1992-11-04\",\"espn_id\":2580065},\"867\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Orlando\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1525725901276,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":null,\"player_id\":\"867\",\"birth_city\":null,\"fantasy_data_id\":13012,\"years_exp\":9,\"hashtag\":\"#OrlandoFranklin-NFL-FA-74\",\"search_first_name\":\"orlando\",\"rotowire_id\":7551,\"rotoworld_id\":6600,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Orlando Franklin\",\"sportradar_id\":\"5997e86a-8bee-44ae-b640-7688815e12d7\",\"pandascore_id\":null,\"yahoo_id\":24833,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Atlantic (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'7\\\"\",\"search_full_name\":\"orlandofranklin\",\"birth_date\":\"1987-12-16\",\"espn_id\":13996},\"2640\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031657\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554440711299,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2640\",\"birth_city\":null,\"fantasy_data_id\":17108,\"years_exp\":5,\"hashtag\":\"#IsaiahJohnson-NFL-FA-38\",\"search_first_name\":\"isaiah\",\"rotowire_id\":11411,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Isaiah Johnson\",\"sportradar_id\":\"fc73c0c1-b250-4feb-a5d6-f30145b28bad\",\"pandascore_id\":null,\"yahoo_id\":28879,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Sandy Creek (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"isaiahjohnson\",\"birth_date\":\"1992-05-16\",\"espn_id\":2510547},\"4559\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ladell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleming\",\"depth_chart_position\":null,\"player_id\":\"4559\",\"birth_city\":null,\"fantasy_data_id\":19443,\"years_exp\":2,\"hashtag\":\"#LadellFleming-NFL-FA-48\",\"search_first_name\":\"ladell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ladell Fleming\",\"sportradar_id\":\"ab7ad726-5de8-42ba-886c-923a8918bef6\",\"pandascore_id\":null,\"yahoo_id\":30541,\"last_name\":\"Fleming\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ladellfleming\",\"birth_date\":\"1994-02-01\",\"espn_id\":2972940},\"2914\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lundy\",\"depth_chart_position\":null,\"player_id\":\"2914\",\"birth_city\":null,\"fantasy_data_id\":17382,\"years_exp\":0,\"hashtag\":\"#LukeLundy-NFL-FA-42\",\"search_first_name\":\"luke\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Luke Lundy\",\"sportradar_id\":\"35bfebaa-8532-47d8-a7d9-79730db1bdf3\",\"pandascore_id\":null,\"yahoo_id\":29039,\"last_name\":\"Lundy\",\"metadata\":null,\"college\":\"Ottawa (KS)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870695,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lukelundy\",\"birth_date\":\"1988-08-23\",\"espn_id\":null},\"3225\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033009\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606088734902,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3225\",\"birth_city\":null,\"fantasy_data_id\":17986,\"years_exp\":4,\"hashtag\":\"#TylerBoyd-NFL-CIN-83\",\"search_first_name\":\"tyler\",\"rotowire_id\":10822,\"rotoworld_id\":11271,\"active\":true,\"search_rank\":84,\"age\":26,\"full_name\":\"Tyler Boyd\",\"sportradar_id\":\"76a5edec-5ff7-49fa-a8ec-5768a372279d\",\"pandascore_id\":null,\"yahoo_id\":29288,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Clairton (PA)\",\"depth_chart_order\":1,\"stats_id\":742387,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylerboyd\",\"birth_date\":\"1994-11-15\",\"espn_id\":3045144},\"7288\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606165515234,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ellefson\",\"depth_chart_position\":\"TE\",\"player_id\":\"7288\",\"birth_city\":null,\"fantasy_data_id\":22284,\"years_exp\":0,\"hashtag\":\"#BenEllefson-NFL-JAX-86\",\"search_first_name\":\"ben\",\"rotowire_id\":14864,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ben Ellefson\",\"sportradar_id\":\"ca393469-d587-4bf7-905d-838e960de851\",\"pandascore_id\":null,\"yahoo_id\":33124,\"last_name\":\"Ellefson\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Hawley (MN)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"benellefson\",\"birth_date\":\"1996-09-01\",\"espn_id\":3930900},\"4904\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1578861024755,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stefanski\",\"depth_chart_position\":null,\"player_id\":\"4904\",\"birth_city\":null,\"fantasy_data_id\":19806,\"years_exp\":0,\"hashtag\":\"#KevinStefanski-NFL-FA-0\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":13081,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kevin Stefanski\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Stefanski\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kevinstefanski\",\"birth_date\":null,\"espn_id\":null},\"4994\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034799\",\"first_name\":\"Kalen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606590033169,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ballage\",\"depth_chart_position\":\"RB\",\"player_id\":\"4994\",\"birth_city\":null,\"fantasy_data_id\":19824,\"years_exp\":2,\"hashtag\":\"#KalenBallage-NFL-LAC-31\",\"search_first_name\":\"kalen\",\"rotowire_id\":12786,\"rotoworld_id\":13216,\"active\":true,\"search_rank\":1288,\"age\":24,\"full_name\":\"Kalen Ballage\",\"sportradar_id\":\"c6728282-0648-4926-a07c-be64f3ff5e0d\",\"pandascore_id\":null,\"yahoo_id\":31100,\"last_name\":\"Ballage\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Falcon (CO)\",\"depth_chart_order\":2,\"stats_id\":820568,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kalenballage\",\"birth_date\":\"1995-12-22\",\"espn_id\":3128774},\"1940\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031263\",\"first_name\":\"Avery\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604790909999,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williamson\",\"depth_chart_position\":\"LILB\",\"player_id\":\"1940\",\"birth_city\":null,\"fantasy_data_id\":16182,\"years_exp\":6,\"hashtag\":\"#AveryWilliamson-NFL-PIT-51\",\"search_first_name\":\"avery\",\"rotowire_id\":9640,\"rotoworld_id\":9571,\"active\":true,\"search_rank\":790,\"age\":28,\"full_name\":\"Avery Williamson\",\"sportradar_id\":\"a36dd143-6b0f-429e-95ba-335559ff4845\",\"pandascore_id\":null,\"yahoo_id\":27679,\"last_name\":\"Williamson\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Milan (TN)\",\"depth_chart_order\":2,\"stats_id\":557814,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"averywilliamson\",\"birth_date\":\"1992-03-09\",\"espn_id\":16920},\"3432\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032874\",\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1553142917747,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cheek\",\"depth_chart_position\":null,\"player_id\":\"3432\",\"birth_city\":null,\"fantasy_data_id\":18196,\"years_exp\":4,\"hashtag\":\"#JosephCheek-NFL-FA-0\",\"search_first_name\":\"joseph\",\"rotowire_id\":10972,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joseph Cheek\",\"sportradar_id\":\"9e360674-eb05-4d1b-ba8c-03d6c12fb177\",\"pandascore_id\":null,\"yahoo_id\":29840,\"last_name\":\"Cheek\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'6\\\"\",\"search_full_name\":\"josephcheek\",\"birth_date\":\"1992-12-02\",\"espn_id\":2578713},\"7246\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Drake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596293408804,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"dorbeck\",\"depth_chart_position\":null,\"player_id\":\"7246\",\"birth_city\":null,\"fantasy_data_id\":22246,\"years_exp\":0,\"hashtag\":\"#DrakeDorbeck-NFL-CLE-68\",\"search_first_name\":\"drake\",\"rotowire_id\":15038,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Drake Dorbeck\",\"sportradar_id\":\"017375c1-6522-43a8-b099-3ea0d15c95c9\",\"pandascore_id\":null,\"yahoo_id\":33305,\"last_name\":\"Dorbeck\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"St. Aloysius (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"drakedorbeck\",\"birth_date\":\"1996-10-07\",\"espn_id\":null},\"7377\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605278752526,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":\"RG\",\"player_id\":\"7377\",\"birth_city\":null,\"fantasy_data_id\":22091,\"years_exp\":0,\"hashtag\":\"#KyleMurphy-NFL-NYG-60\",\"search_first_name\":\"kyle\",\"rotowire_id\":14673,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Kyle Murphy\",\"sportradar_id\":\"ae320fbe-15cb-4877-b05e-c626bbaba820\",\"pandascore_id\":null,\"yahoo_id\":33050,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Rhode Island\",\"high_school\":\"Attleboro (MA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylemurphy\",\"birth_date\":\"1998-05-18\",\"espn_id\":4032758},\"6538\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dewayne\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596406519374,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hendrix\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6538\",\"birth_city\":null,\"fantasy_data_id\":21269,\"years_exp\":1,\"hashtag\":\"#DewayneHendrix-NFL-FA-0\",\"search_first_name\":\"dewayne\",\"rotowire_id\":14076,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1708,\"age\":25,\"full_name\":\"Dewayne Hendrix\",\"sportradar_id\":\"55c1614f-c234-45d9-baf5-1cc808faaa4d\",\"pandascore_id\":null,\"yahoo_id\":32436,\"last_name\":\"Hendrix\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dewaynehendrix\",\"birth_date\":\"1995-06-13\",\"espn_id\":3115334},\"4346\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033369\",\"first_name\":\"Omarius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535835643034,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"4346\",\"birth_city\":null,\"fantasy_data_id\":19202,\"years_exp\":3,\"hashtag\":\"#OmariusBryant-NFL-FA-67\",\"search_first_name\":\"omarius\",\"rotowire_id\":12265,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Omarius Bryant\",\"sportradar_id\":\"590a61c9-e38d-49b2-a8e2-21340d613cdc\",\"pandascore_id\":null,\"yahoo_id\":30515,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"omariusbryant\",\"birth_date\":\"1994-10-26\",\"espn_id\":3915787},\"3523\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032567\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535761876625,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fabiano\",\"depth_chart_position\":\"LG\",\"player_id\":\"3523\",\"birth_city\":null,\"fantasy_data_id\":18289,\"years_exp\":4,\"hashtag\":\"#AnthonyFabiano-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":11242,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Anthony Fabiano\",\"sportradar_id\":\"bdebbb66-ceff-4cc9-b74f-00e14be21530\",\"pandascore_id\":null,\"yahoo_id\":29752,\"last_name\":\"Fabiano\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonyfabiano\",\"birth_date\":\"1993-07-13\",\"espn_id\":2566591},\"4415\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033381\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606018510124,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4415\",\"birth_city\":null,\"fantasy_data_id\":19275,\"years_exp\":3,\"hashtag\":\"#AdamButler-NFL-NE-70\",\"search_first_name\":\"adam\",\"rotowire_id\":12141,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1245,\"age\":26,\"full_name\":\"Adam Butler\",\"sportradar_id\":\"54814199-dd18-408f-9dc4-ce59a121431b\",\"pandascore_id\":null,\"yahoo_id\":30655,\"last_name\":\"Butler\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Vanderbilt\",\"high_school\":\"Duncanville (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"adambutler\",\"birth_date\":\"1994-04-12\",\"espn_id\":2972342},\"1040\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029272\",\"first_name\":\"Nigel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605834015242,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradham\",\"depth_chart_position\":null,\"player_id\":\"1040\",\"birth_city\":null,\"fantasy_data_id\":13756,\"years_exp\":8,\"hashtag\":\"#NigelBradham-NFL-DEN-51\",\"search_first_name\":\"nigel\",\"rotowire_id\":8215,\"rotoworld_id\":7565,\"active\":true,\"search_rank\":659,\"age\":31,\"full_name\":\"Nigel Bradham\",\"sportradar_id\":\"9279ccd9-3088-409e-8bc5-215363e7a29e\",\"pandascore_id\":null,\"yahoo_id\":25815,\"last_name\":\"Bradham\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida State\",\"high_school\":\"Wakulla (FL)\",\"depth_chart_order\":null,\"stats_id\":447034,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nigelbradham\",\"birth_date\":\"1989-09-04\",\"espn_id\":15075},\"4776\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034002\",\"first_name\":\"Larson\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":null,\"player_id\":\"4776\",\"birth_city\":null,\"fantasy_data_id\":19693,\"years_exp\":3,\"hashtag\":\"#LarsonGraham-NFL-FA-61\",\"search_first_name\":\"larson\",\"rotowire_id\":12981,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Larson Graham\",\"sportradar_id\":\"86f9a399-bcd3-452a-9cf7-3a72294f2892\",\"pandascore_id\":null,\"yahoo_id\":30910,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"Duquesne\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'4\\\"\",\"search_full_name\":\"larsongraham\",\"birth_date\":\"1994-04-09\",\"espn_id\":2978519},\"4697\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalid\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abdullah\",\"depth_chart_position\":null,\"player_id\":\"4697\",\"birth_city\":null,\"fantasy_data_id\":19600,\"years_exp\":2,\"hashtag\":\"#KhalidAbdullah-NFL-FA-31\",\"search_first_name\":\"khalid\",\"rotowire_id\":12243,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Khalid Abdullah\",\"sportradar_id\":\"10b9f8b2-7e94-4ecd-9d93-458091c290e4\",\"pandascore_id\":null,\"yahoo_id\":30851,\"last_name\":\"Abdullah\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":750369,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'10\\\"\",\"search_full_name\":\"khalidabdullah\",\"birth_date\":\"1995-05-14\",\"espn_id\":3049325},\"4111\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033925\",\"first_name\":\"D'Onta\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606112410882,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"foreman\",\"depth_chart_position\":\"RB\",\"player_id\":\"4111\",\"birth_city\":null,\"fantasy_data_id\":18957,\"years_exp\":3,\"hashtag\":\"#DOntaForeman-NFL-TEN-45\",\"search_first_name\":\"donta\",\"rotowire_id\":11685,\"rotoworld_id\":12282,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"D'Onta Foreman\",\"sportradar_id\":\"02779042-2b4e-4fa9-b598-364fe01b523a\",\"pandascore_id\":null,\"yahoo_id\":30202,\"last_name\":\"Foreman\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Texas\",\"high_school\":\"Texas City (TX)\",\"depth_chart_order\":3,\"stats_id\":835443,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dontaforeman\",\"birth_date\":\"1996-04-24\",\"espn_id\":3125116},\"4146\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033839\",\"first_name\":\"Dede\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603807252596,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"westbrook\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4146\",\"birth_city\":null,\"fantasy_data_id\":18992,\"years_exp\":3,\"hashtag\":\"#DedeWestbrook-NFL-JAX-12\",\"search_first_name\":\"dede\",\"rotowire_id\":11808,\"rotoworld_id\":12331,\"active\":true,\"search_rank\":176,\"age\":27,\"full_name\":\"Dede Westbrook\",\"sportradar_id\":\"046c51bc-319e-4fbb-9cf3-f6ab808b8edf\",\"pandascore_id\":null,\"yahoo_id\":30223,\"last_name\":\"Westbrook\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"C.H. Yoe (TX)\",\"depth_chart_order\":2,\"stats_id\":865950,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"176\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dedewestbrook\",\"birth_date\":\"1993-11-21\",\"espn_id\":3892889},\"549\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kavell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conner\",\"depth_chart_position\":null,\"player_id\":\"549\",\"birth_city\":null,\"fantasy_data_id\":11126,\"years_exp\":10,\"hashtag\":\"#KavellConner-NFL-FA-44\",\"search_first_name\":\"kavell\",\"rotowire_id\":6712,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Kavell Conner\",\"sportradar_id\":\"8e768946-3f91-453b-970a-08020112769c\",\"pandascore_id\":null,\"yahoo_id\":24215,\"last_name\":\"Conner\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Manchester (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kavellconner\",\"birth_date\":\"1987-02-23\",\"espn_id\":13342},\"2096\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031047\",\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596915643729,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":\"C\",\"player_id\":\"2096\",\"birth_city\":null,\"fantasy_data_id\":16417,\"years_exp\":6,\"hashtag\":\"#SpencerLong-NFL-SF-61\",\"search_first_name\":\"spencer\",\"rotowire_id\":9447,\"rotoworld_id\":9643,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Spencer Long\",\"sportradar_id\":\"5d03f256-0569-4908-a0bf-5f95325c8be3\",\"pandascore_id\":null,\"yahoo_id\":27606,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Elkhorn (NE)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"spencerlong\",\"birth_date\":\"1990-11-08\",\"espn_id\":16743},\"6127\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035241\",\"first_name\":\"Joejuan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598639449121,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6127\",\"birth_city\":null,\"fantasy_data_id\":20986,\"years_exp\":1,\"hashtag\":\"#JoejuanWilliams-NFL-NE-33\",\"search_first_name\":\"joejuan\",\"rotowire_id\":13482,\"rotoworld_id\":13957,\"active\":true,\"search_rank\":1622,\"age\":22,\"full_name\":\"Joejuan Williams\",\"sportradar_id\":\"154d65c6-b3fc-4ac4-99a6-48c191e90ffc\",\"pandascore_id\":null,\"yahoo_id\":31877,\"last_name\":\"Williams\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Vanderbilt\",\"high_school\":\"Father Ryan (TN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joejuanwilliams\",\"birth_date\":\"1997-12-06\",\"espn_id\":4035286},\"6760\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599280255396,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kongbo\",\"depth_chart_position\":null,\"player_id\":\"6760\",\"birth_city\":null,\"fantasy_data_id\":21705,\"years_exp\":0,\"hashtag\":\"#JonathanKongbo-NFL-FA-0\",\"search_first_name\":\"jonathan\",\"rotowire_id\":14426,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1775,\"age\":24,\"full_name\":\"Jonathan Kongbo\",\"sportradar_id\":\"da25e165-3aec-46d0-8f4a-ff48e078c679\",\"pandascore_id\":null,\"yahoo_id\":32661,\"last_name\":\"Kongbo\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonathankongbo\",\"birth_date\":\"1996-03-19\",\"espn_id\":4035166},\"1567\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030525\",\"first_name\":\"Tavon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1606436160605,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"austin\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1567\",\"birth_city\":null,\"fantasy_data_id\":15215,\"years_exp\":7,\"hashtag\":\"#TavonAustin-NFL-SF-5\",\"search_first_name\":\"tavon\",\"rotowire_id\":8793,\"rotoworld_id\":8402,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tavon Austin\",\"sportradar_id\":\"502b3a6c-e965-478a-858e-964b4ac2296c\",\"pandascore_id\":null,\"yahoo_id\":26631,\"last_name\":\"Austin\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Dunbar (MD)\",\"depth_chart_order\":4,\"stats_id\":513826,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'8\\\"\",\"search_full_name\":\"tavonaustin\",\"birth_date\":\"1990-03-15\",\"espn_id\":15786},\"2117\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"couplin\",\"depth_chart_position\":null,\"player_id\":\"2117\",\"birth_city\":null,\"fantasy_data_id\":16449,\"years_exp\":6,\"hashtag\":\"#JeromeCouplin-NFL-FA-21\",\"search_first_name\":\"jerome\",\"rotowire_id\":9954,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jerome Couplin\",\"sportradar_id\":\"00c92cec-17cc-4acd-bc27-65580c2803aa\",\"pandascore_id\":null,\"yahoo_id\":27993,\"last_name\":\"Couplin\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Bishop McNamara (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeromecouplin\",\"birth_date\":\"1991-08-31\",\"espn_id\":16982},\"4321\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033256\",\"first_name\":\"Deyshawn\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535840169711,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bond\",\"depth_chart_position\":null,\"player_id\":\"4321\",\"birth_city\":null,\"fantasy_data_id\":19174,\"years_exp\":3,\"hashtag\":\"#DeyshawnBond-NFL-FA-69\",\"search_first_name\":\"deyshawn\",\"rotowire_id\":12432,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Deyshawn Bond\",\"sportradar_id\":\"45f92801-156d-4488-a164-b9e527a6b72d\",\"pandascore_id\":null,\"yahoo_id\":30521,\"last_name\":\"Bond\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deyshawnbond\",\"birth_date\":\"1994-08-19\",\"espn_id\":2979810},\"907\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"907\",\"birth_city\":null,\"fantasy_data_id\":13131,\"years_exp\":9,\"hashtag\":\"#JoshThomas-NFL-FA-26\",\"search_first_name\":\"josh\",\"rotowire_id\":7595,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Josh Thomas\",\"sportradar_id\":\"6fa858e9-3afa-45c7-9656-29b7c85a79e6\",\"pandascore_id\":null,\"yahoo_id\":24930,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Cedar Hill (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshthomas\",\"birth_date\":\"1989-05-03\",\"espn_id\":14162},\"3693\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weidenaar\",\"depth_chart_position\":\"LT\",\"player_id\":\"3693\",\"birth_city\":null,\"fantasy_data_id\":18495,\"years_exp\":0,\"hashtag\":\"#JohnWeidenaar-NFL-FA-79\",\"search_first_name\":\"john\",\"rotowire_id\":11382,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"John Weidenaar\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29711,\"last_name\":\"Weidenaar\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'7\\\"\",\"search_full_name\":\"johnweidenaar\",\"birth_date\":\"1992-09-15\",\"espn_id\":null},\"4940\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Desean\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4940\",\"birth_city\":null,\"fantasy_data_id\":19622,\"years_exp\":1,\"hashtag\":\"#DeseanSmith-NFL-CAR-0\",\"search_first_name\":\"desean\",\"rotowire_id\":12125,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Desean Smith\",\"sportradar_id\":\"8c076589-88fe-43ea-9aaf-178312f2d4ee\",\"pandascore_id\":null,\"yahoo_id\":30864,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'5\\\"\",\"search_full_name\":\"deseansmith\",\"birth_date\":\"1994-11-02\",\"espn_id\":null},\"5976\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035454\",\"first_name\":\"Karan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599353162101,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"higdonjr\",\"depth_chart_position\":\"RB\",\"player_id\":\"5976\",\"birth_city\":null,\"fantasy_data_id\":20801,\"years_exp\":1,\"hashtag\":\"#KaranHigdonJr-NFL-FA-0\",\"search_first_name\":\"karan\",\"rotowire_id\":13638,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1549,\"age\":24,\"full_name\":\"Karan Higdon Jr.\",\"sportradar_id\":\"677b17b7-a8c2-4f2b-ac73-fe086de32103\",\"pandascore_id\":null,\"yahoo_id\":32508,\"last_name\":\"Higdon Jr.\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":22,\"stats_id\":883082,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"karanhigdonjr\",\"birth_date\":\"1996-09-08\",\"espn_id\":3929927},\"5944\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035687\",\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606530329665,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okereke\",\"depth_chart_position\":\"SLB\",\"player_id\":\"5944\",\"birth_city\":null,\"fantasy_data_id\":20897,\"years_exp\":1,\"hashtag\":\"#BobbyOkereke-NFL-IND-58\",\"search_first_name\":\"bobby\",\"rotowire_id\":13782,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1583,\"age\":24,\"full_name\":\"Bobby Okereke\",\"sportradar_id\":\"6c338c70-42d9-4d35-bf87-04fe7e2f690a\",\"pandascore_id\":null,\"yahoo_id\":31921,\"last_name\":\"Okereke\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Foothill (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bobbyokereke\",\"birth_date\":\"1996-07-29\",\"espn_id\":3117253},\"2942\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe Don\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"duncan\",\"depth_chart_position\":null,\"player_id\":\"2942\",\"birth_city\":null,\"fantasy_data_id\":17413,\"years_exp\":1,\"hashtag\":\"#JoeDonDuncan-NFL-FA-42\",\"search_first_name\":\"joedon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joe Don Duncan\",\"sportradar_id\":\"a05a97cd-dbc6-4523-9f56-e70bb284e6f3\",\"pandascore_id\":null,\"yahoo_id\":28381,\"last_name\":\"Duncan\",\"metadata\":null,\"college\":\"Dixie State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":459023,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joedonduncan\",\"birth_date\":\"1990-09-17\",\"espn_id\":3057760},\"2989\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032297\",\"first_name\":\"Kitt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567543821181,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"obrien\",\"depth_chart_position\":null,\"player_id\":\"2989\",\"birth_city\":null,\"fantasy_data_id\":17496,\"years_exp\":5,\"hashtag\":\"#KittOBrien-NFL-FA-0\",\"search_first_name\":\"kitt\",\"rotowire_id\":11450,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kitt O'Brien\",\"sportradar_id\":\"5bd4b926-db76-436f-9390-5c96475245fc\",\"pandascore_id\":null,\"yahoo_id\":29187,\"last_name\":\"O'Brien\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kittobrien\",\"birth_date\":\"1990-04-29\",\"espn_id\":2470264},\"2494\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"BJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dubose\",\"depth_chart_position\":null,\"player_id\":\"2494\",\"birth_city\":null,\"fantasy_data_id\":16953,\"years_exp\":1,\"hashtag\":\"#BJDubose-NFL-FA-90\",\"search_first_name\":\"bj\",\"rotowire_id\":10345,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"BJ Dubose\",\"sportradar_id\":\"e2ca1c1d-58e1-4918-9110-e68b230a900c\",\"pandascore_id\":null,\"yahoo_id\":28581,\"last_name\":\"Dubose\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bjdubose\",\"birth_date\":\"1994-01-27\",\"espn_id\":2576645},\"5236\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034642\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532571901714,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"5236\",\"birth_city\":null,\"fantasy_data_id\":20206,\"years_exp\":2,\"hashtag\":\"#KyleLewis-NFL-FA-1\",\"search_first_name\":\"kyle\",\"rotowire_id\":13034,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyle Lewis\",\"sportradar_id\":\"a0086153-ed8b-49d9-b9ae-6b4c0ab37f3e\",\"pandascore_id\":null,\"yahoo_id\":31637,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":787213,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kylelewis\",\"birth_date\":\"1995-04-22\",\"espn_id\":3119232},\"202\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024270\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605551118820,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"whitworth\",\"depth_chart_position\":null,\"player_id\":\"202\",\"birth_city\":null,\"fantasy_data_id\":5099,\"years_exp\":14,\"hashtag\":\"#AndrewWhitworth-NFL-LAR-77\",\"search_first_name\":\"andrew\",\"rotowire_id\":5005,\"rotoworld_id\":3701,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Andrew Whitworth\",\"sportradar_id\":\"f1ce3e7d-6afc-4db4-94f0-475bd63507b3\",\"pandascore_id\":null,\"yahoo_id\":7804,\"last_name\":\"Whitworth\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"West Monroe (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'7\\\"\",\"search_full_name\":\"andrewwhitworth\",\"birth_date\":\"1981-12-12\",\"espn_id\":9641},\"7054\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kraemer\",\"depth_chart_position\":null,\"player_id\":\"7054\",\"birth_city\":null,\"fantasy_data_id\":22110,\"years_exp\":0,\"hashtag\":\"#TommyKraemer-NFL-FA-0\",\"search_first_name\":\"tommy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tommy Kraemer\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kraemer\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tommykraemer\",\"birth_date\":null,\"espn_id\":null},\"1138\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029129\",\"first_name\":\"Rod\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539882652641,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"streater\",\"depth_chart_position\":null,\"player_id\":\"1138\",\"birth_city\":null,\"fantasy_data_id\":14111,\"years_exp\":8,\"hashtag\":\"#RodStreater-NFL-FA-13\",\"search_first_name\":\"rod\",\"rotowire_id\":8406,\"rotoworld_id\":8148,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Rod Streater\",\"sportradar_id\":\"d2cad5f8-b35f-4cf4-9567-57c387ba6225\",\"pandascore_id\":null,\"yahoo_id\":26428,\"last_name\":\"Streater\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Burlington Township (NJ)\",\"depth_chart_order\":null,\"stats_id\":546942,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rodstreater\",\"birth_date\":\"1988-02-09\",\"espn_id\":15391},\"6565\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035515\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1569974711892,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"conway\",\"depth_chart_position\":null,\"player_id\":\"6565\",\"birth_city\":null,\"fantasy_data_id\":21205,\"years_exp\":1,\"hashtag\":\"#CodyConway-NFL-SF-64\",\"search_first_name\":\"cody\",\"rotowire_id\":14201,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cody Conway\",\"sportradar_id\":\"c03a2bf7-49d3-48fc-9062-0a2937a17647\",\"pandascore_id\":null,\"yahoo_id\":32622,\"last_name\":\"Conway\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"Plainfield North (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'6\\\"\",\"search_full_name\":\"codyconway\",\"birth_date\":\"1996-07-09\",\"espn_id\":3916465},\"4474\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Korren\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535665217191,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kirven\",\"depth_chart_position\":null,\"player_id\":\"4474\",\"birth_city\":null,\"fantasy_data_id\":19342,\"years_exp\":3,\"hashtag\":\"#KorrenKirven-NFL-FA-74\",\"search_first_name\":\"korren\",\"rotowire_id\":12520,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Korren Kirven\",\"sportradar_id\":\"e9ac5b01-b0e7-41b3-a8cc-ea012faa0fe3\",\"pandascore_id\":null,\"yahoo_id\":30475,\"last_name\":\"Kirven\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'4\\\"\",\"search_full_name\":\"korrenkirven\",\"birth_date\":\"1994-12-10\",\"espn_id\":2979850},\"3553\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032529\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1540351805198,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maxey\",\"depth_chart_position\":null,\"player_id\":\"3553\",\"birth_city\":null,\"fantasy_data_id\":18325,\"years_exp\":4,\"hashtag\":\"#JohnnyMaxey-NFL-FA-93\",\"search_first_name\":\"johnny\",\"rotowire_id\":11543,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Johnny Maxey\",\"sportradar_id\":\"52191351-8e61-454b-b2a3-dc2e39043b11\",\"pandascore_id\":null,\"yahoo_id\":29488,\"last_name\":\"Maxey\",\"metadata\":null,\"college\":\"Mars Hill\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johnnymaxey\",\"birth_date\":\"1993-10-19\",\"espn_id\":2581513},\"425\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027002\",\"first_name\":\"Clay\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1589651416389,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":\"OLB\",\"player_id\":\"425\",\"birth_city\":null,\"fantasy_data_id\":9051,\"years_exp\":11,\"hashtag\":\"#ClayMatthews-NFL-FA-52\",\"search_first_name\":\"clay\",\"rotowire_id\":6072,\"rotoworld_id\":5278,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Clay Matthews\",\"sportradar_id\":\"b5a6d6f3-73a9-4d70-bfa1-786bf166d14c\",\"pandascore_id\":null,\"yahoo_id\":9290,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Agoura (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"claymatthews\",\"birth_date\":\"1986-05-14\",\"espn_id\":12438},\"3478\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deandre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532628601559,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":null,\"player_id\":\"3478\",\"birth_city\":null,\"fantasy_data_id\":18243,\"years_exp\":3,\"hashtag\":\"#DeandreElliott-NFL-FA-21\",\"search_first_name\":\"deandre\",\"rotowire_id\":11029,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Deandre Elliott\",\"sportradar_id\":\"57026301-74b5-429b-b586-c48f3b295c0b\",\"pandascore_id\":null,\"yahoo_id\":29814,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deandreelliott\",\"birth_date\":\"1992-11-21\",\"espn_id\":2575655},\"6814\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Laviska\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606505127228,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shenault\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6814\",\"birth_city\":null,\"fantasy_data_id\":21697,\"years_exp\":0,\"hashtag\":\"#LaviskaShenault-NFL-JAX-10\",\"search_first_name\":\"laviska\",\"rotowire_id\":14358,\"rotoworld_id\":null,\"active\":true,\"search_rank\":162,\"age\":22,\"full_name\":\"Laviska Shenault\",\"sportradar_id\":\"131d3b1a-5746-499e-98ee-4bbf67cd377e\",\"pandascore_id\":null,\"yahoo_id\":32712,\"last_name\":\"Shenault\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"laviskashenault\",\"birth_date\":\"1998-10-05\",\"espn_id\":4243160},\"306\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeAngelo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"306\",\"birth_city\":null,\"fantasy_data_id\":7580,\"years_exp\":14,\"hashtag\":\"#DeAngeloWilliams-NFL-FA-34\",\"search_first_name\":\"deangelo\",\"rotowire_id\":4838,\"rotoworld_id\":3611,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"DeAngelo Williams\",\"sportradar_id\":\"a9af3f0f-44a9-4f46-b4c7-de5767b7f425\",\"pandascore_id\":null,\"yahoo_id\":7776,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Wynne (AR)\",\"depth_chart_order\":null,\"stats_id\":216526,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'9\\\"\",\"search_full_name\":\"deangelowilliams\",\"birth_date\":\"1983-04-25\",\"espn_id\":9613},\"406\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027139\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1559077523743,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"406\",\"birth_city\":null,\"fantasy_data_id\":8848,\"years_exp\":11,\"hashtag\":\"#JohnPhillips-NFL-FA-82\",\"search_first_name\":\"john\",\"rotowire_id\":6130,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"John Phillips\",\"sportradar_id\":\"c43cf6a1-8faa-4f95-aa2a-f1aac3ffe103\",\"pandascore_id\":null,\"yahoo_id\":9472,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Bath Co. (VA)\",\"depth_chart_order\":null,\"stats_id\":323332,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johnphillips\",\"birth_date\":\"1987-06-11\",\"espn_id\":12550},\"338\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gardner\",\"depth_chart_position\":null,\"player_id\":\"338\",\"birth_city\":null,\"fantasy_data_id\":8326,\"years_exp\":11,\"hashtag\":\"#AndrewGardner-NFL-FA-69\",\"search_first_name\":\"andrew\",\"rotowire_id\":6992,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Andrew Gardner\",\"sportradar_id\":\"75b812dc-cb66-43a8-93b5-b989c5dd073e\",\"pandascore_id\":null,\"yahoo_id\":9445,\"last_name\":\"Gardner\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Sandy Creek (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'6\\\"\",\"search_full_name\":\"andrewgardner\",\"birth_date\":\"1986-04-04\",\"espn_id\":12659},\"2262\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"millard\",\"depth_chart_position\":null,\"player_id\":\"2262\",\"birth_city\":null,\"fantasy_data_id\":16673,\"years_exp\":5,\"hashtag\":\"#TreyMillard-NFL-FA-40\",\"search_first_name\":\"trey\",\"rotowire_id\":9700,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Trey Millard\",\"sportradar_id\":\"ed2ffa3b-b430-456b-9111-11514e90af7c\",\"pandascore_id\":null,\"yahoo_id\":27773,\"last_name\":\"Millard\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542889,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'2\\\"\",\"search_full_name\":\"treymillard\",\"birth_date\":\"1991-07-25\",\"espn_id\":16901},\"2097\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"madison\",\"depth_chart_position\":null,\"player_id\":\"2097\",\"birth_city\":null,\"fantasy_data_id\":16418,\"years_exp\":1,\"hashtag\":\"#RossMadison-NFL-FA-48\",\"search_first_name\":\"ross\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ross Madison\",\"sportradar_id\":\"21d014da-cfa3-48f8-a76d-bfa4daf107cf\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Madison\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rossmadison\",\"birth_date\":\"1991-03-05\",\"espn_id\":17425},\"3534\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"3534\",\"birth_city\":null,\"fantasy_data_id\":18301,\"years_exp\":3,\"hashtag\":\"#AdrianMcDonald-NFL-FA-39\",\"search_first_name\":\"adrian\",\"rotowire_id\":11482,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Adrian McDonald\",\"sportradar_id\":\"ec6e9ae8-beca-49d1-9f3b-ec0510c69a89\",\"pandascore_id\":null,\"yahoo_id\":29524,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"adrianmcdonald\",\"birth_date\":\"1994-03-18\",\"espn_id\":2981514},\"2743\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Uani\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"unga\",\"depth_chart_position\":null,\"player_id\":\"2743\",\"birth_city\":null,\"fantasy_data_id\":17211,\"years_exp\":5,\"hashtag\":\"#UaniUnga-NFL-FA-47\",\"search_first_name\":\"uani\",\"rotowire_id\":10165,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Uani 'Unga\",\"sportradar_id\":\"ef1af2ce-de97-4e6e-985c-825295311164\",\"pandascore_id\":null,\"yahoo_id\":28363,\"last_name\":\"'Unga\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Kahuku (HI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"uaniunga\",\"birth_date\":\"1987-12-28\",\"espn_id\":2517026},\"1128\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029586\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606428359999,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wolfe\",\"depth_chart_position\":\"DE\",\"player_id\":\"1128\",\"birth_city\":null,\"fantasy_data_id\":14059,\"years_exp\":8,\"hashtag\":\"#DerekWolfe-NFL-BAL-95\",\"search_first_name\":\"derek\",\"rotowire_id\":8204,\"rotoworld_id\":7534,\"active\":true,\"search_rank\":671,\"age\":30,\"full_name\":\"Derek Wolfe\",\"sportradar_id\":\"30f98123-214c-4f32-b29c-ac6f3ff56f39\",\"pandascore_id\":null,\"yahoo_id\":25746,\"last_name\":\"Wolfe\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Beaver Local (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"derekwolfe\",\"birth_date\":\"1990-02-24\",\"espn_id\":14964},\"3538\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"3538\",\"birth_city\":null,\"fantasy_data_id\":18305,\"years_exp\":3,\"hashtag\":\"#LarryScott-NFL-FA-40\",\"search_first_name\":\"larry\",\"rotowire_id\":11489,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Larry Scott\",\"sportradar_id\":\"8aa842c1-fa5b-4c42-a417-f13b1dcda3af\",\"pandascore_id\":null,\"yahoo_id\":29530,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"larryscott\",\"birth_date\":\"1993-03-05\",\"espn_id\":2577018},\"342\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023368\",\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1599938125485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wake\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"342\",\"birth_city\":null,\"fantasy_data_id\":8343,\"years_exp\":15,\"hashtag\":\"#CameronWake-NFL-FA-91\",\"search_first_name\":\"cameron\",\"rotowire_id\":5975,\"rotoworld_id\":5203,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Cameron Wake\",\"sportradar_id\":\"2d23b5d1-fbee-41df-bd6f-dd984d03a4d1\",\"pandascore_id\":null,\"yahoo_id\":9691,\"last_name\":\"Wake\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Dematha (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cameronwake\",\"birth_date\":\"1982-01-30\",\"espn_id\":12417},\"2607\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Landon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"feichter\",\"depth_chart_position\":null,\"player_id\":\"2607\",\"birth_city\":null,\"fantasy_data_id\":17075,\"years_exp\":0,\"hashtag\":\"#LandonFeichter-NFL-FA-38\",\"search_first_name\":\"landon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Landon Feichter\",\"sportradar_id\":\"8f229e50-2f37-4b3e-b570-474b4404a9e0\",\"pandascore_id\":null,\"yahoo_id\":29036,\"last_name\":\"Feichter\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"landonfeichter\",\"birth_date\":\"1991-08-22\",\"espn_id\":2511676},\"3413\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Delvon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":null,\"player_id\":\"3413\",\"birth_city\":null,\"fantasy_data_id\":18175,\"years_exp\":0,\"hashtag\":\"#DelvonSimmons-NFL-FA-65\",\"search_first_name\":\"delvon\",\"rotowire_id\":11433,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Delvon Simmons\",\"sportradar_id\":\"e6055524-85bc-4373-9957-9a426d2052aa\",\"pandascore_id\":null,\"yahoo_id\":29611,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"delvonsimmons\",\"birth_date\":\"1992-11-30\",\"espn_id\":2577652},\"853\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maehl\",\"depth_chart_position\":null,\"player_id\":\"853\",\"birth_city\":null,\"fantasy_data_id\":12944,\"years_exp\":3,\"hashtag\":\"#JeffMaehl-NFL-FA-88\",\"search_first_name\":\"jeff\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeff Maehl\",\"sportradar_id\":\"8971384e-c1b0-4c00-b464-48b429d0c9b7\",\"pandascore_id\":null,\"yahoo_id\":25526,\"last_name\":\"Maehl\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":401792,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeffmaehl\",\"birth_date\":\"1989-01-17\",\"espn_id\":14590},\"6578\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DJ\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coker\",\"depth_chart_position\":null,\"player_id\":\"6578\",\"birth_city\":null,\"fantasy_data_id\":21343,\"years_exp\":1,\"hashtag\":\"#DJCoker-NFL-FA-62\",\"search_first_name\":\"dj\",\"rotowire_id\":14258,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"DJ Coker\",\"sportradar_id\":\"98daf8a3-bbef-499c-959e-2c9fb19f79b4\",\"pandascore_id\":null,\"yahoo_id\":32501,\"last_name\":\"Coker\",\"metadata\":null,\"college\":\"Rhodes\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'2\\\"\",\"search_full_name\":\"djcoker\",\"birth_date\":\"1997-11-13\",\"espn_id\":4422067},\"7342\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596389416802,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hoecht\",\"depth_chart_position\":null,\"player_id\":\"7342\",\"birth_city\":null,\"fantasy_data_id\":22330,\"years_exp\":0,\"hashtag\":\"#MichaelHoecht-NFL-LAR-96\",\"search_first_name\":\"michael\",\"rotowire_id\":15087,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1982,\"age\":23,\"full_name\":\"Michael Hoecht\",\"sportradar_id\":\"073d1bf8-7a0e-4c2f-b890-dbbd47978737\",\"pandascore_id\":null,\"yahoo_id\":33252,\"last_name\":\"Hoecht\",\"metadata\":null,\"college\":\"Brown\",\"high_school\":\"Oakwood (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaelhoecht\",\"birth_date\":\"1997-10-05\",\"espn_id\":null},\"2209\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"uko\",\"depth_chart_position\":null,\"player_id\":\"2209\",\"birth_city\":null,\"fantasy_data_id\":16585,\"years_exp\":1,\"hashtag\":\"#GeorgeUko-NFL-FA-99\",\"search_first_name\":\"george\",\"rotowire_id\":9398,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"George Uko\",\"sportradar_id\":\"784f8907-946a-4c75-91c3-0b5ebf5c3b1b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Uko\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'3\\\"\",\"search_full_name\":\"georgeuko\",\"birth_date\":\"1992-02-12\",\"espn_id\":17270},\"6812\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Yetur\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606064717852,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grossmatos\",\"depth_chart_position\":\"RDE\",\"player_id\":\"6812\",\"birth_city\":null,\"fantasy_data_id\":21896,\"years_exp\":0,\"hashtag\":\"#YeturGrossMatos-NFL-CAR-97\",\"search_first_name\":\"yetur\",\"rotowire_id\":14355,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1820,\"age\":22,\"full_name\":\"Yetur Gross-Matos\",\"sportradar_id\":\"d96afcfe-32fb-4a59-b75c-94a6184d3136\",\"pandascore_id\":null,\"yahoo_id\":32707,\"last_name\":\"Gross-Matos\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Chancellor (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'5\\\"\",\"search_full_name\":\"yeturgrossmatos\",\"birth_date\":\"1998-02-26\",\"espn_id\":4259594},\"1637\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029879\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1572883808247,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcdermott\",\"depth_chart_position\":null,\"player_id\":\"1637\",\"birth_city\":null,\"fantasy_data_id\":15372,\"years_exp\":7,\"hashtag\":\"#KevinMcDermott-NFL-FA-47\",\"search_first_name\":\"kevin\",\"rotowire_id\":9145,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kevin McDermott\",\"sportradar_id\":\"b0a3df00-b1ed-4ba5-8c2a-1414b6871e61\",\"pandascore_id\":null,\"yahoo_id\":27214,\"last_name\":\"McDermott\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Ensworth (TN)\",\"depth_chart_order\":null,\"stats_id\":464150,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kevinmcdermott\",\"birth_date\":\"1990-01-12\",\"espn_id\":16361},\"3792\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Demetrius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cherry\",\"depth_chart_position\":null,\"player_id\":\"3792\",\"birth_city\":null,\"fantasy_data_id\":18606,\"years_exp\":1,\"hashtag\":\"#DemetriusCherry-NFL-FA-94\",\"search_first_name\":\"demetrius\",\"rotowire_id\":11551,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Demetrius Cherry\",\"sportradar_id\":\"5fcdb893-3ce0-48f8-bfa0-59e99935a8ae\",\"pandascore_id\":null,\"yahoo_id\":29765,\"last_name\":\"Cherry\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"demetriuscherry\",\"birth_date\":\"1992-06-21\",\"espn_id\":3043228},\"6993\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dom\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1595800212951,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodanderson\",\"depth_chart_position\":null,\"player_id\":\"6993\",\"birth_city\":null,\"fantasy_data_id\":21958,\"years_exp\":0,\"hashtag\":\"#DomWoodAnderson-NFL-FA-0\",\"search_first_name\":\"dom\",\"rotowire_id\":14607,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Dom Wood-Anderson\",\"sportradar_id\":\"799eaad9-6162-4407-b9d9-1ca7542bddeb\",\"pandascore_id\":null,\"yahoo_id\":33291,\"last_name\":\"Wood-Anderson\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'4\\\"\",\"search_full_name\":\"domwoodanderson\",\"birth_date\":\"1998-02-09\",\"espn_id\":null},\"4862\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marc\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"4862\",\"birth_city\":null,\"fantasy_data_id\":19762,\"years_exp\":0,\"hashtag\":\"#MarcRoss-NFL-FA-0\",\"search_first_name\":\"marc\",\"rotowire_id\":null,\"rotoworld_id\":11215,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marc Ross\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ross\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"marcross\",\"birth_date\":null,\"espn_id\":null},\"3247\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032391\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604251519315,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thuney\",\"depth_chart_position\":\"LG\",\"player_id\":\"3247\",\"birth_city\":null,\"fantasy_data_id\":18008,\"years_exp\":4,\"hashtag\":\"#JoeThuney-NFL-NE-62\",\"search_first_name\":\"joe\",\"rotowire_id\":10960,\"rotoworld_id\":11418,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Joe Thuney\",\"sportradar_id\":\"4ee0937c-1250-4456-93d4-2d6afa064d5a\",\"pandascore_id\":null,\"yahoo_id\":29312,\"last_name\":\"Thuney\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"North Carolina State\",\"high_school\":\"Archbishop Alter (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joethuney\",\"birth_date\":\"1992-11-18\",\"espn_id\":2577773},\"1733\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frey\",\"depth_chart_position\":null,\"player_id\":\"1733\",\"birth_city\":null,\"fantasy_data_id\":15680,\"years_exp\":3,\"hashtag\":\"#IsaiahFrey-NFL-FA-23\",\"search_first_name\":\"isaiah\",\"rotowire_id\":8231,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Isaiah Frey\",\"sportradar_id\":\"f9ada8bd-4a6a-49ac-abad-adf5bbafbb11\",\"pandascore_id\":null,\"yahoo_id\":25894,\"last_name\":\"Frey\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"isaiahfrey\",\"birth_date\":\"1990-04-06\",\"espn_id\":15084},\"7357\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604690145406,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chisena\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7357\",\"birth_city\":null,\"fantasy_data_id\":22345,\"years_exp\":0,\"hashtag\":\"#DanChisena-NFL-MIN-85\",\"search_first_name\":\"dan\",\"rotowire_id\":14889,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dan Chisena\",\"sportradar_id\":\"92529995-41e9-48db-b429-c96540ad357b\",\"pandascore_id\":null,\"yahoo_id\":33023,\"last_name\":\"Chisena\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Downingtown-East (PA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danchisena\",\"birth_date\":\"1997-02-25\",\"espn_id\":3929637},\"3338\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033078\",\"first_name\":\"Keenan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567355135511,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3338\",\"birth_city\":null,\"fantasy_data_id\":18099,\"years_exp\":4,\"hashtag\":\"#KeenanReynolds-NFL-FA-19\",\"search_first_name\":\"keenan\",\"rotowire_id\":11227,\"rotoworld_id\":11472,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keenan Reynolds\",\"sportradar_id\":\"b10b366e-6de8-44fb-ba02-1156bb8b3b09\",\"pandascore_id\":null,\"yahoo_id\":29416,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Navy\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":695875,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keenanreynolds\",\"birth_date\":\"1994-12-13\",\"espn_id\":2970457},\"2301\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Al\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"louisjean\",\"depth_chart_position\":null,\"player_id\":\"2301\",\"birth_city\":null,\"fantasy_data_id\":16753,\"years_exp\":2,\"hashtag\":\"#AlLouisJean-NFL-FA-9\",\"search_first_name\":\"al\",\"rotowire_id\":9865,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Al Louis-Jean\",\"sportradar_id\":\"d3b04244-e0c8-4859-9a1f-1f2564a2e948\",\"pandascore_id\":null,\"yahoo_id\":28286,\"last_name\":\"Louis-Jean\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"allouisjean\",\"birth_date\":\"1993-10-13\",\"espn_id\":17470},\"494\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"trusnik\",\"depth_chart_position\":null,\"player_id\":\"494\",\"birth_city\":null,\"fantasy_data_id\":9958,\"years_exp\":13,\"hashtag\":\"#JasonTrusnik-NFL-FA-57\",\"search_first_name\":\"jason\",\"rotowire_id\":6294,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Jason Trusnik\",\"sportradar_id\":\"c841722c-f71d-4a46-9a72-a0ce1605fa1f\",\"pandascore_id\":null,\"yahoo_id\":8623,\"last_name\":\"Trusnik\",\"metadata\":null,\"college\":\"Ohio Northern\",\"high_school\":\"Nordonia (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jasontrusnik\",\"birth_date\":\"1984-06-06\",\"espn_id\":10927},\"5334\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034368\",\"first_name\":\"Josey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604942726984,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jewell\",\"depth_chart_position\":\"RILB\",\"player_id\":\"5334\",\"birth_city\":null,\"fantasy_data_id\":19933,\"years_exp\":2,\"hashtag\":\"#JoseyJewell-NFL-DEN-47\",\"search_first_name\":\"josey\",\"rotowire_id\":12968,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1352,\"age\":25,\"full_name\":\"Josey Jewell\",\"sportradar_id\":\"a473e7a2-8f31-43ad-b87f-c39e6635f1b0\",\"pandascore_id\":null,\"yahoo_id\":31076,\"last_name\":\"Jewell\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Iowa\",\"high_school\":\"Decorah (IA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joseyjewell\",\"birth_date\":\"1994-12-25\",\"espn_id\":3040150},\"1473\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kasa\",\"depth_chart_position\":null,\"player_id\":\"1473\",\"birth_city\":null,\"fantasy_data_id\":15068,\"years_exp\":2,\"hashtag\":\"#NickKasa-NFL-FA-84\",\"search_first_name\":\"nick\",\"rotowire_id\":8908,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nick Kasa\",\"sportradar_id\":\"578db999-6f6c-4b31-851c-9adb585e1c5a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kasa\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":500554,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'6\\\"\",\"search_full_name\":\"nickkasa\",\"birth_date\":\"1990-11-05\",\"espn_id\":15962},\"722\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Crezdon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"722\",\"birth_city\":null,\"fantasy_data_id\":12263,\"years_exp\":10,\"hashtag\":\"#CrezdonButler-NFL-FA-41\",\"search_first_name\":\"crezdon\",\"rotowire_id\":6641,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Crezdon Butler\",\"sportradar_id\":\"328630a3-2469-4f46-8cb6-4869f0bf9ab7\",\"pandascore_id\":null,\"yahoo_id\":24140,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Asheville HS (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'1\\\"\",\"search_full_name\":\"crezdonbutler\",\"birth_date\":\"1987-05-26\",\"espn_id\":13324},\"4327\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033262\",\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1580257260474,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jeter\",\"depth_chart_position\":null,\"player_id\":\"4327\",\"birth_city\":null,\"fantasy_data_id\":19180,\"years_exp\":3,\"hashtag\":\"#ColinJeter-NFL-FA-87\",\"search_first_name\":\"colin\",\"rotowire_id\":12123,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Colin Jeter\",\"sportradar_id\":\"69026a74-4f62-418e-8683-208987dfa4b4\",\"pandascore_id\":null,\"yahoo_id\":30527,\"last_name\":\"Jeter\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835385,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"colinjeter\",\"birth_date\":\"1995-05-23\",\"espn_id\":3115399},\"313\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Parys\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"haralson\",\"depth_chart_position\":null,\"player_id\":\"313\",\"birth_city\":null,\"fantasy_data_id\":7654,\"years_exp\":10,\"hashtag\":\"#ParysHaralson-NFL-FA-98\",\"search_first_name\":\"parys\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Parys Haralson\",\"sportradar_id\":\"0e4cfc38-1a0f-464a-8c3d-1e57fbbf654e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Haralson\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"parysharalson\",\"birth_date\":\"1984-01-24\",\"espn_id\":9726},\"6913\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604457948157,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6913\",\"birth_city\":null,\"fantasy_data_id\":21718,\"years_exp\":0,\"hashtag\":\"#JoeReed-NFL-LAC-12\",\"search_first_name\":\"joe\",\"rotowire_id\":14428,\"rotoworld_id\":null,\"active\":true,\"search_rank\":304,\"age\":22,\"full_name\":\"Joe Reed\",\"sportradar_id\":\"4c449f2b-a566-4c9c-882c-a70991d1aa54\",\"pandascore_id\":null,\"yahoo_id\":32821,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Randolph-Henry (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joereed\",\"birth_date\":\"1998-01-04\",\"espn_id\":4037591},\"914\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leonard\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hankerson\",\"depth_chart_position\":null,\"player_id\":\"914\",\"birth_city\":null,\"fantasy_data_id\":13162,\"years_exp\":9,\"hashtag\":\"#LeonardHankerson-NFL-FA-80\",\"search_first_name\":\"leonard\",\"rotowire_id\":7381,\"rotoworld_id\":6425,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Leonard Hankerson\",\"sportradar_id\":\"7877c393-beb4-4f40-a6c5-d864ca6e5172\",\"pandascore_id\":null,\"yahoo_id\":24866,\"last_name\":\"Hankerson\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":398112,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'2\\\"\",\"search_full_name\":\"leonardhankerson\",\"birth_date\":\"1989-01-30\",\"espn_id\":14021},\"2756\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gleichert\",\"depth_chart_position\":null,\"player_id\":\"2756\",\"birth_city\":null,\"fantasy_data_id\":17224,\"years_exp\":0,\"hashtag\":\"#AndrewGleichert-NFL-FA-85\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Andrew Gleichert\",\"sportradar_id\":\"f784df11-3dd6-4a33-a6c2-437072e12465\",\"pandascore_id\":null,\"yahoo_id\":28651,\"last_name\":\"Gleichert\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557383,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"andrewgleichert\",\"birth_date\":\"1992-01-13\",\"espn_id\":2515408},\"6421\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035414\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606237552945,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"guyton\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6421\",\"birth_city\":null,\"fantasy_data_id\":21448,\"years_exp\":1,\"hashtag\":\"#JalenGuyton-NFL-LAC-15\",\"search_first_name\":\"jalen\",\"rotowire_id\":13575,\"rotoworld_id\":null,\"active\":true,\"search_rank\":258,\"age\":23,\"full_name\":\"Jalen Guyton\",\"sportradar_id\":\"ae9495b2-4c62-4e14-8e43-beb53e1ae28a\",\"pandascore_id\":null,\"yahoo_id\":32201,\"last_name\":\"Guyton\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Allen (TX)\",\"depth_chart_order\":1,\"stats_id\":884567,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jalenguyton\",\"birth_date\":\"1997-06-07\",\"espn_id\":3932430},\"2769\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1523569801636,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pinkard\",\"depth_chart_position\":null,\"player_id\":\"2769\",\"birth_city\":null,\"fantasy_data_id\":17237,\"years_exp\":5,\"hashtag\":\"#LarryPinkard-NFL-FA-18\",\"search_first_name\":\"larry\",\"rotowire_id\":12195,\"rotoworld_id\":10914,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Larry Pinkard\",\"sportradar_id\":\"fa3b7c60-764c-4d06-8e70-7cd9a902dc27\",\"pandascore_id\":null,\"yahoo_id\":28930,\"last_name\":\"Pinkard\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":554232,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"larrypinkard\",\"birth_date\":\"1992-02-25\",\"espn_id\":2512892},\"1061\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029388\",\"first_name\":\"Deonte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567286406315,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"1061\",\"birth_city\":null,\"fantasy_data_id\":13856,\"years_exp\":8,\"hashtag\":\"#DeonteThompson-NFL-FA-10\",\"search_first_name\":\"deonte\",\"rotowire_id\":8492,\"rotoworld_id\":8175,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Deonte Thompson\",\"sportradar_id\":\"c323cdb9-74bc-4d68-9358-609f80eedbb7\",\"pandascore_id\":null,\"yahoo_id\":26456,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Glades Central (FL)\",\"depth_chart_order\":null,\"stats_id\":396571,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deontethompson\",\"birth_date\":\"1989-02-14\",\"espn_id\":15503},\"7295\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"matiscik\",\"depth_chart_position\":null,\"player_id\":\"7295\",\"birth_city\":null,\"fantasy_data_id\":22291,\"years_exp\":0,\"hashtag\":\"#RossMatiscik-NFL-JAX-46\",\"search_first_name\":\"ross\",\"rotowire_id\":14956,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ross Matiscik\",\"sportradar_id\":\"fb18e325-eab9-459f-a559-b482894eb0f5\",\"pandascore_id\":null,\"yahoo_id\":33129,\"last_name\":\"Matiscik\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"McKinney Boyd (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rossmatiscik\",\"birth_date\":\"1996-09-13\",\"espn_id\":3928931},\"6000\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035382\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1565390107346,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bates\",\"depth_chart_position\":\"C\",\"player_id\":\"6000\",\"birth_city\":null,\"fantasy_data_id\":21027,\"years_exp\":1,\"hashtag\":\"#RyanBates-NFL-BUF-71\",\"search_first_name\":\"ryan\",\"rotowire_id\":13520,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ryan Bates\",\"sportradar_id\":\"08553010-dfb8-4ca8-86a0-8159355f8705\",\"pandascore_id\":null,\"yahoo_id\":32402,\"last_name\":\"Bates\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Archbishop Wood (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanbates\",\"birth_date\":\"1997-02-14\",\"espn_id\":3929631},\"4652\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033726\",\"first_name\":\"Winston\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1554778811445,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"craig\",\"depth_chart_position\":null,\"player_id\":\"4652\",\"birth_city\":null,\"fantasy_data_id\":19549,\"years_exp\":3,\"hashtag\":\"#WinstonCraig-NFL-FA-64\",\"search_first_name\":\"winston\",\"rotowire_id\":12607,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Winston Craig\",\"sportradar_id\":\"a0ac50ad-b460-43fd-a932-50d19cda7c0b\",\"pandascore_id\":null,\"yahoo_id\":30708,\"last_name\":\"Craig\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'4\\\"\",\"search_full_name\":\"winstoncraig\",\"birth_date\":\"1995-07-25\",\"espn_id\":3049895},\"2577\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devante\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2577\",\"birth_city\":null,\"fantasy_data_id\":17042,\"years_exp\":0,\"hashtag\":\"#DevanteDavis-NFL-FA-89\",\"search_first_name\":\"devante\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Devante Davis\",\"sportradar_id\":\"fa46801c-274e-42d0-bedc-7d5d63f92262\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606351,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'3\\\"\",\"search_full_name\":\"devantedavis\",\"birth_date\":\"1995-01-11\",\"espn_id\":2575955},\"237\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"godfrey\",\"depth_chart_position\":null,\"player_id\":\"237\",\"birth_city\":null,\"fantasy_data_id\":5939,\"years_exp\":12,\"hashtag\":\"#CharlesGodfrey-NFL-FA-30\",\"search_first_name\":\"charles\",\"rotowire_id\":5755,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Charles Godfrey\",\"sportradar_id\":\"1016d675-7f23-4744-8632-7b4ea8115f5a\",\"pandascore_id\":null,\"yahoo_id\":8844,\"last_name\":\"Godfrey\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Lee (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"charlesgodfrey\",\"birth_date\":\"1985-11-15\",\"espn_id\":11301},\"5086\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034272\",\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606519827469,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"valdesscantling\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5086\",\"birth_city\":null,\"fantasy_data_id\":19976,\"years_exp\":2,\"hashtag\":\"#MarquezValdesScantling-NFL-GB-83\",\"search_first_name\":\"marquez\",\"rotowire_id\":12934,\"rotoworld_id\":13280,\"active\":true,\"search_rank\":195,\"age\":26,\"full_name\":\"Marquez Valdes-Scantling\",\"sportradar_id\":\"e7f0a505-8060-403e-a3b3-9d4e88dda1dc\",\"pandascore_id\":null,\"yahoo_id\":31144,\"last_name\":\"Valdes-Scantling\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Lakewood (FL)\",\"depth_chart_order\":1,\"stats_id\":742382,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marquezvaldesscantling\",\"birth_date\":\"1994-10-10\",\"espn_id\":3051738},\"5315\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034428\",\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601325311876,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":null,\"player_id\":\"5315\",\"birth_city\":null,\"fantasy_data_id\":20026,\"years_exp\":2,\"hashtag\":\"#LeonJacobs-NFL-JAX-48\",\"search_first_name\":\"leon\",\"rotowire_id\":12723,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1397,\"age\":25,\"full_name\":\"Leon Jacobs\",\"sportradar_id\":\"ef65234e-2459-4ecd-b9d1-8751a7c7153d\",\"pandascore_id\":null,\"yahoo_id\":31200,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Golden Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"leonjacobs\",\"birth_date\":\"1995-10-03\",\"espn_id\":3045267},\"4349\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033373\",\"first_name\":\"Taquan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1605568520229,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mizzell\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4349\",\"birth_city\":null,\"fantasy_data_id\":19205,\"years_exp\":3,\"hashtag\":\"#TaquanMizzell-NFL-NYG-44\",\"search_first_name\":\"taquan\",\"rotowire_id\":12231,\"rotoworld_id\":12647,\"active\":true,\"search_rank\":1233,\"age\":27,\"full_name\":\"Taquan Mizzell\",\"sportradar_id\":\"b8033c75-de94-46df-a645-284f419c4497\",\"pandascore_id\":null,\"yahoo_id\":900125,\"last_name\":\"Mizzell\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Bayside (VA)\",\"depth_chart_order\":3,\"stats_id\":745858,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"taquanmizzell\",\"birth_date\":\"1993-10-21\",\"espn_id\":3048680},\"4047\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lindsey\",\"depth_chart_position\":null,\"player_id\":\"4047\",\"birth_city\":null,\"fantasy_data_id\":18891,\"years_exp\":2,\"hashtag\":\"#JacobLindsey-NFL-FA-48\",\"search_first_name\":\"jacob\",\"rotowire_id\":12191,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jacob Lindsey\",\"sportradar_id\":\"cc16ecdc-d49b-457c-8427-8d3009c3dee5\",\"pandascore_id\":null,\"yahoo_id\":30106,\"last_name\":\"Lindsey\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jacoblindsey\",\"birth_date\":\"1993-06-24\",\"espn_id\":2566602},\"1222\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029528\",\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604446845813,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"massie\",\"depth_chart_position\":null,\"player_id\":\"1222\",\"birth_city\":null,\"fantasy_data_id\":14483,\"years_exp\":8,\"hashtag\":\"#BobbyMassie-NFL-CHI-70\",\"search_first_name\":\"bobby\",\"rotowire_id\":8304,\"rotoworld_id\":7455,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Bobby Massie\",\"sportradar_id\":\"86c5152c-c823-4127-97e6-2fedf532e8e8\",\"pandascore_id\":null,\"yahoo_id\":25822,\"last_name\":\"Massie\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Hargrave Military Academy (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"bobbymassie\",\"birth_date\":\"1989-08-01\",\"espn_id\":15096},\"4949\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034358\",\"first_name\":\"Derrius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1597868727845,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"guice\",\"depth_chart_position\":\"RB\",\"player_id\":\"4949\",\"birth_city\":null,\"fantasy_data_id\":19797,\"years_exp\":2,\"hashtag\":\"#DerriusGuice-NFL-FA-0\",\"search_first_name\":\"derrius\",\"rotowire_id\":12620,\"rotoworld_id\":13094,\"active\":true,\"search_rank\":1286,\"age\":23,\"full_name\":\"Derrius Guice\",\"sportradar_id\":\"1c42cbe4-115b-4f28-ac50-e9bc977371b2\",\"pandascore_id\":null,\"yahoo_id\":31029,\"last_name\":\"Guice\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":18,\"stats_id\":865565,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"derriusguice\",\"birth_date\":\"1997-06-21\",\"espn_id\":3843750},\"836\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027975\",\"first_name\":\"Jabaal\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603241140601,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sheard\",\"depth_chart_position\":\"SAM\",\"player_id\":\"836\",\"birth_city\":null,\"fantasy_data_id\":12880,\"years_exp\":9,\"hashtag\":\"#JabaalSheard-NFL-NYG-91\",\"search_first_name\":\"jabaal\",\"rotowire_id\":7452,\"rotoworld_id\":6597,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jabaal Sheard\",\"sportradar_id\":\"7bad73a1-c023-4b53-bd4c-dedf18480b8a\",\"pandascore_id\":null,\"yahoo_id\":24824,\"last_name\":\"Sheard\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Hollywood Hills (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jabaalsheard\",\"birth_date\":\"1989-05-10\",\"espn_id\":14036},\"1540\":{\"position\":\"CB\",\"injury_notes\":\"Alford will miss the season due to injury. He is expected to miss up to 6 months.\",\"birth_country\":null,\"gsis_id\":\"00-0030528\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598055911419,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"alford\",\"depth_chart_position\":null,\"player_id\":\"1540\",\"birth_city\":null,\"fantasy_data_id\":15177,\"years_exp\":7,\"hashtag\":\"#RobertAlford-NFL-ARI-23\",\"search_first_name\":\"robert\",\"rotowire_id\":8645,\"rotoworld_id\":8462,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Robert Alford\",\"sportradar_id\":\"4f5ca039-21f3-4045-9c2e-c0b4d5d564c5\",\"pandascore_id\":null,\"yahoo_id\":26683,\"last_name\":\"Alford\",\"metadata\":null,\"college\":\"Southeastern Louisiana\",\"high_school\":\"Hammond (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'10\\\"\",\"search_full_name\":\"robertalford\",\"birth_date\":\"1988-10-31\",\"espn_id\":15817},\"6473\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035420\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1569883824483,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"puni\",\"depth_chart_position\":null,\"player_id\":\"6473\",\"birth_city\":null,\"fantasy_data_id\":21447,\"years_exp\":1,\"hashtag\":\"#DerrickPuni-NFL-FA-60\",\"search_first_name\":\"derrick\",\"rotowire_id\":13916,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrick Puni\",\"sportradar_id\":\"30ed5daa-7bbd-4c35-b7ad-0ad0f9350973\",\"pandascore_id\":null,\"yahoo_id\":32209,\"last_name\":\"Puni\",\"metadata\":null,\"college\":\"Central Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"derrickpuni\",\"birth_date\":\"1994-12-13\",\"espn_id\":4329476},\"6909\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lynn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1606074619060,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bowden\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6909\",\"birth_city\":null,\"fantasy_data_id\":21743,\"years_exp\":0,\"hashtag\":\"#LynnBowden-NFL-MIA-15\",\"search_first_name\":\"lynn\",\"rotowire_id\":14460,\"rotoworld_id\":null,\"active\":true,\"search_rank\":303,\"age\":23,\"full_name\":\"Lynn Bowden\",\"sportradar_id\":\"bd783f2e-b931-4d3e-ab71-60fa1431f598\",\"pandascore_id\":null,\"yahoo_id\":32750,\"last_name\":\"Bowden\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Warren G. Harding (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lynnbowden\",\"birth_date\":\"1997-10-14\",\"espn_id\":4259979},\"6757\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fisher\",\"depth_chart_position\":null,\"player_id\":\"6757\",\"birth_city\":null,\"fantasy_data_id\":21701,\"years_exp\":1,\"hashtag\":\"#JamesFisher-NFL-FA-0\",\"search_first_name\":\"james\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"James Fisher\",\"sportradar_id\":\"522020a4-3d52-475b-8735-6676ee95c411\",\"pandascore_id\":null,\"yahoo_id\":32659,\"last_name\":\"Fisher\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesfisher\",\"birth_date\":\"1994-01-19\",\"espn_id\":null},\"5932\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035323\",\"first_name\":\"Beau\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"benzschawel\",\"depth_chart_position\":null,\"player_id\":\"5932\",\"birth_city\":null,\"fantasy_data_id\":21030,\"years_exp\":1,\"hashtag\":\"#BeauBenzschawel-NFL-DET-63\",\"search_first_name\":\"beau\",\"rotowire_id\":13580,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Beau Benzschawel\",\"sportradar_id\":\"d6ac9c49-ef2f-44be-a5df-dc57ce23fcc9\",\"pandascore_id\":null,\"yahoo_id\":32450,\"last_name\":\"Benzschawel\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Grafton (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"beaubenzschawel\",\"birth_date\":\"1995-09-10\",\"espn_id\":3121537},\"4698\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"4698\",\"birth_city\":null,\"fantasy_data_id\":19601,\"years_exp\":2,\"hashtag\":\"#TreyRobinson-NFL-FA-31\",\"search_first_name\":\"trey\",\"rotowire_id\":12244,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Trey Robinson\",\"sportradar_id\":\"b77e484f-b699-41a4-b4db-167368c5144c\",\"pandascore_id\":null,\"yahoo_id\":30852,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Furman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'1\\\"\",\"search_full_name\":\"treyrobinson\",\"birth_date\":\"1994-12-30\",\"espn_id\":3049852},\"1236\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029048\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1509485581069,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"banyard\",\"depth_chart_position\":null,\"player_id\":\"1236\",\"birth_city\":null,\"fantasy_data_id\":14549,\"years_exp\":8,\"hashtag\":\"#JoeBanyard-NFL-FA-22\",\"search_first_name\":\"joe\",\"rotowire_id\":8937,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Joe Banyard\",\"sportradar_id\":\"87f35e44-8c37-4381-97dd-e3df2a83beeb\",\"pandascore_id\":null,\"yahoo_id\":26079,\"last_name\":\"Banyard\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Sweetwater (TX)\",\"depth_chart_order\":null,\"stats_id\":400140,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joebanyard\",\"birth_date\":\"1988-11-12\",\"espn_id\":15296},\"6937\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khaleke\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587844541829,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hudson\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"6937\",\"birth_city\":null,\"fantasy_data_id\":22017,\"years_exp\":0,\"hashtag\":\"#KhalekeHudson-NFL-WAS-47\",\"search_first_name\":\"khaleke\",\"rotowire_id\":14480,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1880,\"age\":22,\"full_name\":\"Khaleke Hudson\",\"sportradar_id\":\"5c52edd1-7566-483d-9564-03c21438fb29\",\"pandascore_id\":null,\"yahoo_id\":32832,\"last_name\":\"Hudson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"McKeesport (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khalekehudson\",\"birth_date\":\"1997-12-06\",\"espn_id\":4046525},\"2330\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031550\",\"first_name\":\"Shaq\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605540317926,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"WILL\",\"player_id\":\"2330\",\"birth_city\":null,\"fantasy_data_id\":16786,\"years_exp\":5,\"hashtag\":\"#ShaqThompson-NFL-CAR-54\",\"search_first_name\":\"shaq\",\"rotowire_id\":10034,\"rotoworld_id\":10424,\"active\":true,\"search_rank\":857,\"age\":26,\"full_name\":\"Shaq Thompson\",\"sportradar_id\":\"3bf0711c-793a-47e7-bcbd-a0ddf350fef4\",\"pandascore_id\":null,\"yahoo_id\":28413,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Grant Union (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaqthompson\",\"birth_date\":\"1994-04-21\",\"espn_id\":2978313},\"1672\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030041\",\"first_name\":\"Nickell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1585156537628,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robeycoleman\",\"depth_chart_position\":\"NB\",\"player_id\":\"1672\",\"birth_city\":null,\"fantasy_data_id\":15469,\"years_exp\":7,\"hashtag\":\"#NickellRobeyColeman-NFL-PHI-31\",\"search_first_name\":\"nickell\",\"rotowire_id\":8651,\"rotoworld_id\":8810,\"active\":true,\"search_rank\":761,\"age\":28,\"full_name\":\"Nickell Robey-Coleman\",\"sportradar_id\":\"1eb8ad96-b4f3-461e-81a3-0a4e08844f73\",\"pandascore_id\":null,\"yahoo_id\":27007,\"last_name\":\"Robey-Coleman\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Frostproof (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'8\\\"\",\"search_full_name\":\"nickellrobeycoleman\",\"birth_date\":\"1992-01-17\",\"espn_id\":16217},\"641\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027859\",\"first_name\":\"Russell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606065317941,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"okung\",\"depth_chart_position\":\"LT\",\"player_id\":\"641\",\"birth_city\":null,\"fantasy_data_id\":11604,\"years_exp\":10,\"hashtag\":\"#RussellOkung-NFL-CAR-76\",\"search_first_name\":\"russell\",\"rotowire_id\":6539,\"rotoworld_id\":5632,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Russell Okung\",\"sportradar_id\":\"38293bdb-87d5-4219-be46-44fea6741483\",\"pandascore_id\":null,\"yahoo_id\":23981,\"last_name\":\"Okung\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"George Bush (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"russellokung\",\"birth_date\":\"1988-10-07\",\"espn_id\":13242},\"43\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"connolly\",\"depth_chart_position\":null,\"player_id\":\"43\",\"birth_city\":null,\"fantasy_data_id\":1215,\"years_exp\":9,\"hashtag\":\"#DanConnolly-NFL-FA-63\",\"search_first_name\":\"dan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Dan Connolly\",\"sportradar_id\":\"b30e620b-1f67-450f-a499-95f59808baac\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Connolly\",\"metadata\":null,\"college\":\"Southeast Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danconnolly\",\"birth_date\":\"1982-09-02\",\"espn_id\":9298},\"1612\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030151\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605658826055,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bray\",\"depth_chart_position\":\"QB\",\"player_id\":\"1612\",\"birth_city\":null,\"fantasy_data_id\":15293,\"years_exp\":7,\"hashtag\":\"#TylerBray-NFL-CHI-8\",\"search_first_name\":\"tyler\",\"rotowire_id\":8621,\"rotoworld_id\":null,\"active\":true,\"search_rank\":751,\"age\":28,\"full_name\":\"Tyler Bray\",\"sportradar_id\":\"b13ba4c3-5761-40fb-aa6a-935f09c39a6b\",\"pandascore_id\":null,\"yahoo_id\":27170,\"last_name\":\"Bray\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Kingsburg (CA)\",\"depth_chart_order\":2,\"stats_id\":542809,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tylerbray\",\"birth_date\":\"1991-12-27\",\"espn_id\":16252},\"2871\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fruechte\",\"depth_chart_position\":null,\"player_id\":\"2871\",\"birth_city\":null,\"fantasy_data_id\":17339,\"years_exp\":4,\"hashtag\":\"#IsaacFruechte-NFL-FA-15\",\"search_first_name\":\"isaac\",\"rotowire_id\":10807,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Isaac Fruechte\",\"sportradar_id\":\"6f3bc434-6f8f-40f5-976c-c03fe3fe55e3\",\"pandascore_id\":null,\"yahoo_id\":29056,\"last_name\":\"Fruechte\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651583,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaacfruechte\",\"birth_date\":\"1991-03-07\",\"espn_id\":2970698},\"1282\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029053\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1536113410747,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"1282\",\"birth_city\":null,\"fantasy_data_id\":14729,\"years_exp\":8,\"hashtag\":\"#RyanDavis-NFL-FA-98\",\"search_first_name\":\"ryan\",\"rotowire_id\":8442,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ryan Davis\",\"sportradar_id\":\"9f5a9786-f72c-4d45-a858-71bccd5cb602\",\"pandascore_id\":null,\"yahoo_id\":26085,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Bethune-Cookman\",\"high_school\":\"Blake (FL)\",\"depth_chart_order\":null,\"stats_id\":880538,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryandavis\",\"birth_date\":\"1989-02-24\",\"espn_id\":15319},\"6562\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035425\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567790129030,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"camper\",\"depth_chart_position\":null,\"player_id\":\"6562\",\"birth_city\":null,\"fantasy_data_id\":21181,\"years_exp\":1,\"hashtag\":\"#BlakeCamper-NFL-FA-73\",\"search_first_name\":\"blake\",\"rotowire_id\":14261,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Blake Camper\",\"sportradar_id\":\"707b300c-cc7d-48e9-a0ea-ef20bac0ed0e\",\"pandascore_id\":null,\"yahoo_id\":32539,\"last_name\":\"Camper\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'8\\\"\",\"search_full_name\":\"blakecamper\",\"birth_date\":\"1996-12-17\",\"espn_id\":3924355},\"5022\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034351\",\"first_name\":\"Dallas\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606347302746,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"goedert\",\"depth_chart_position\":\"TE\",\"player_id\":\"5022\",\"birth_city\":null,\"fantasy_data_id\":19863,\"years_exp\":2,\"hashtag\":\"#DallasGoedert-NFL-PHI-88\",\"search_first_name\":\"dallas\",\"rotowire_id\":12860,\"rotoworld_id\":13151,\"active\":true,\"search_rank\":281,\"age\":25,\"full_name\":\"Dallas Goedert\",\"sportradar_id\":\"e8029983-87cf-49a2-bc04-04c8233a0630\",\"pandascore_id\":null,\"yahoo_id\":31019,\"last_name\":\"Goedert\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":\"Britton-Hecla (SD)\",\"depth_chart_order\":1,\"stats_id\":791365,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dallasgoedert\",\"birth_date\":\"1995-01-03\",\"espn_id\":3121023},\"2023\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031060\",\"first_name\":\"De'Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595881525405,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2023\",\"birth_city\":null,\"fantasy_data_id\":16305,\"years_exp\":6,\"hashtag\":\"#DeAnthonyThomas-NFL-BAL-16\",\"search_first_name\":\"deanthony\",\"rotowire_id\":9274,\"rotoworld_id\":null,\"active\":true,\"search_rank\":803,\"age\":27,\"full_name\":\"De'Anthony Thomas\",\"sportradar_id\":\"35823109-daf1-4825-92b8-564271398ecb\",\"pandascore_id\":null,\"yahoo_id\":27652,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Crenshaw (CA)\",\"depth_chart_order\":3,\"stats_id\":607847,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'8\\\"\",\"search_full_name\":\"deanthonythomas\",\"birth_date\":\"1993-01-05\",\"espn_id\":16945},\"195\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Courtney\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roby\",\"depth_chart_position\":null,\"player_id\":\"195\",\"birth_city\":null,\"fantasy_data_id\":5013,\"years_exp\":8,\"hashtag\":\"#CourtneyRoby-NFL-FA-15\",\"search_first_name\":\"courtney\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Courtney Roby\",\"sportradar_id\":\"19f12bbc-91e7-47c5-b9e1-482b46780f6a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Roby\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"courtneyroby\",\"birth_date\":\"1983-01-10\",\"espn_id\":null},\"6451\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035039\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600174836669,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carlson\",\"depth_chart_position\":\"TE\",\"player_id\":\"6451\",\"birth_city\":null,\"fantasy_data_id\":21278,\"years_exp\":1,\"hashtag\":\"#StephenCarlson-NFL-CLE-89\",\"search_first_name\":\"stephen\",\"rotowire_id\":14131,\"rotoworld_id\":null,\"active\":true,\"search_rank\":504,\"age\":23,\"full_name\":\"Stephen Carlson\",\"sportradar_id\":\"013477a2-0271-4441-a0af-9bc25924a2f6\",\"pandascore_id\":null,\"yahoo_id\":32273,\"last_name\":\"Carlson\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":\"Jamestown (NY)\",\"depth_chart_order\":4,\"stats_id\":881697,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"stephencarlson\",\"birth_date\":\"1996-12-12\",\"espn_id\":3948283},\"1307\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herron\",\"depth_chart_position\":null,\"player_id\":\"1307\",\"birth_city\":null,\"fantasy_data_id\":14788,\"years_exp\":8,\"hashtag\":\"#DanHerron-NFL-FA-47\",\"search_first_name\":\"dan\",\"rotowire_id\":8074,\"rotoworld_id\":7634,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Dan Herron\",\"sportradar_id\":\"99c4968c-f811-4343-8cba-4bdd2884d734\",\"pandascore_id\":null,\"yahoo_id\":25901,\"last_name\":\"Herron\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Warren G. Harding (OH)\",\"depth_chart_order\":null,\"stats_id\":397532,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'10\\\"\",\"search_full_name\":\"danherron\",\"birth_date\":\"1989-03-21\",\"espn_id\":15041},\"6452\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035042\",\"first_name\":\"Jamie\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1603036206501,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gillan\",\"depth_chart_position\":null,\"player_id\":\"6452\",\"birth_city\":null,\"fantasy_data_id\":21279,\"years_exp\":1,\"hashtag\":\"#JamieGillan-NFL-CLE-7\",\"search_first_name\":\"jamie\",\"rotowire_id\":14147,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jamie Gillan\",\"sportradar_id\":\"bc63567a-81e7-44c9-a85f-8aa9532ab4fd\",\"pandascore_id\":null,\"yahoo_id\":32277,\"last_name\":\"Gillan\",\"metadata\":null,\"college\":\"Arkansas-Pine Bluff\",\"high_school\":\"Leonardtown (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamiegillan\",\"birth_date\":\"1997-07-04\",\"espn_id\":3936185},\"6893\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1589564737624,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"windsor\",\"depth_chart_position\":null,\"player_id\":\"6893\",\"birth_city\":null,\"fantasy_data_id\":21871,\"years_exp\":0,\"hashtag\":\"#RobertWindsor-NFL-IND-93\",\"search_first_name\":\"robert\",\"rotowire_id\":14613,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1800,\"age\":23,\"full_name\":\"Robert Windsor\",\"sportradar_id\":\"e26bb68a-8987-40b6-a2d1-af013a13306a\",\"pandascore_id\":null,\"yahoo_id\":32863,\"last_name\":\"Windsor\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Fond du Lac (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"robertwindsor\",\"birth_date\":\"1997-01-15\",\"espn_id\":3929658},\"3491\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032964\",\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1573064721944,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"3491\",\"birth_city\":null,\"fantasy_data_id\":18256,\"years_exp\":4,\"hashtag\":\"#ByronMarshall-NFL-FA-47\",\"search_first_name\":\"byron\",\"rotowire_id\":11125,\"rotoworld_id\":11561,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Byron Marshall\",\"sportradar_id\":\"5274fac8-fa34-46fa-ac4d-7b58bb84999f\",\"pandascore_id\":null,\"yahoo_id\":29680,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":689726,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'9\\\"\",\"search_full_name\":\"byronmarshall\",\"birth_date\":\"1994-02-13\",\"espn_id\":2971289},\"1403\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilkey\",\"depth_chart_position\":null,\"player_id\":\"1403\",\"birth_city\":null,\"fantasy_data_id\":14947,\"years_exp\":4,\"hashtag\":\"#GarrettGilkey-NFL-FA-72\",\"search_first_name\":\"garrett\",\"rotowire_id\":9158,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Garrett Gilkey\",\"sportradar_id\":\"ae013e04-53b5-4abd-823d-c9dda4720ddf\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gilkey\",\"metadata\":null,\"college\":\"Chadron State - NE\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'6\\\"\",\"search_full_name\":\"garrettgilkey\",\"birth_date\":\"1990-07-09\",\"espn_id\":16032},\"2660\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1511831701947,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grant\",\"depth_chart_position\":null,\"player_id\":\"2660\",\"birth_city\":null,\"fantasy_data_id\":17128,\"years_exp\":4,\"hashtag\":\"#CurtisGrant-NFL-FA-58\",\"search_first_name\":\"curtis\",\"rotowire_id\":11193,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Curtis Grant\",\"sportradar_id\":\"b807020d-d9c8-4fd0-9acb-fb61ddffae50\",\"pandascore_id\":null,\"yahoo_id\":28682,\"last_name\":\"Grant\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606478,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'2\\\"\",\"search_full_name\":\"curtisgrant\",\"birth_date\":\"1992-12-28\",\"espn_id\":2576384},\"5417\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034544\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edmond\",\"depth_chart_position\":null,\"player_id\":\"5417\",\"birth_city\":null,\"fantasy_data_id\":20435,\"years_exp\":2,\"hashtag\":\"#MarcusEdmond-NFL-FA-41\",\"search_first_name\":\"marcus\",\"rotowire_id\":13047,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marcus Edmond\",\"sportradar_id\":\"33db338e-fe3e-4d99-9abf-a5ae0fd778a0\",\"pandascore_id\":null,\"yahoo_id\":31675,\"last_name\":\"Edmond\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marcusedmond\",\"birth_date\":\"1995-07-06\",\"espn_id\":3045126},\"3456\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1525726201361,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stave\",\"depth_chart_position\":null,\"player_id\":\"3456\",\"birth_city\":null,\"fantasy_data_id\":18220,\"years_exp\":3,\"hashtag\":\"#JoelStave-NFL-FA-8\",\"search_first_name\":\"joel\",\"rotowire_id\":11185,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joel Stave\",\"sportradar_id\":\"96d97bdd-7458-440f-97c5-c8163c256306\",\"pandascore_id\":null,\"yahoo_id\":29545,\"last_name\":\"Stave\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":592794,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joelstave\",\"birth_date\":\"1992-05-16\",\"espn_id\":2576446},\"5266\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034565\",\"first_name\":\"Detrez\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1578447343852,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newsome\",\"depth_chart_position\":null,\"player_id\":\"5266\",\"birth_city\":null,\"fantasy_data_id\":20309,\"years_exp\":2,\"hashtag\":\"#DetrezNewsome-NFL-FA-38\",\"search_first_name\":\"detrez\",\"rotowire_id\":13057,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Detrez Newsome\",\"sportradar_id\":\"65def267-986f-4d5d-96fb-42b9209833b1\",\"pandascore_id\":null,\"yahoo_id\":31685,\"last_name\":\"Newsome\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":834487,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"detreznewsome\",\"birth_date\":\"1994-03-06\",\"espn_id\":3117131},\"5611\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034497\",\"first_name\":\"Tyrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chavis\",\"depth_chart_position\":null,\"player_id\":\"5611\",\"birth_city\":null,\"fantasy_data_id\":20596,\"years_exp\":2,\"hashtag\":\"#TyrellChavis-NFL-FA-62\",\"search_first_name\":\"tyrell\",\"rotowire_id\":13273,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyrell Chavis\",\"sportradar_id\":\"5729fb1d-9fb5-43da-824f-66b96822f023\",\"pandascore_id\":null,\"yahoo_id\":31549,\"last_name\":\"Chavis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tyrellchavis\",\"birth_date\":\"1994-06-15\",\"espn_id\":3048705},\"817\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028091\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1538001302423,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kerley\",\"depth_chart_position\":null,\"player_id\":\"817\",\"birth_city\":null,\"fantasy_data_id\":12794,\"years_exp\":9,\"hashtag\":\"#JeremyKerley-NFL-FA-10\",\"search_first_name\":\"jeremy\",\"rotowire_id\":7392,\"rotoworld_id\":6551,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jeremy Kerley\",\"sportradar_id\":\"769d7178-df4e-4127-8166-8116165921e8\",\"pandascore_id\":null,\"yahoo_id\":24940,\"last_name\":\"Kerley\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Hutto (TX)\",\"depth_chart_order\":null,\"stats_id\":400313,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jeremykerley\",\"birth_date\":\"1988-11-08\",\"espn_id\":14151},\"6548\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035209\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599603025587,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"6548\",\"birth_city\":null,\"fantasy_data_id\":21520,\"years_exp\":1,\"hashtag\":\"#MarcusMarshall-NFL-FA-0\",\"search_first_name\":\"marcus\",\"rotowire_id\":13951,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Marcus Marshall\",\"sportradar_id\":\"b248e75c-d959-4fc4-8df5-87030f462951\",\"pandascore_id\":null,\"yahoo_id\":32395,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":877715,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marcusmarshall\",\"birth_date\":\"1997-02-23\",\"espn_id\":3917814},\"6438\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034949\",\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595981703995,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcknight\",\"depth_chart_position\":null,\"player_id\":\"6438\",\"birth_city\":null,\"fantasy_data_id\":21363,\"years_exp\":1,\"hashtag\":\"#KelvinMcKnight-NFL-FA-0\",\"search_first_name\":\"kelvin\",\"rotowire_id\":13893,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1724,\"age\":23,\"full_name\":\"Kelvin McKnight\",\"sportradar_id\":\"286bd737-fd84-433f-8f6d-65869fa6c536\",\"pandascore_id\":null,\"yahoo_id\":32219,\"last_name\":\"McKnight\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":883332,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kelvinmcknight\",\"birth_date\":\"1997-04-25\",\"espn_id\":3915575},\"5044\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034357\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604168144640,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"oliver\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5044\",\"birth_city\":null,\"fantasy_data_id\":19868,\"years_exp\":2,\"hashtag\":\"#IsaiahOliver-NFL-ATL-26\",\"search_first_name\":\"isaiah\",\"rotowire_id\":12581,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1309,\"age\":24,\"full_name\":\"Isaiah Oliver\",\"sportradar_id\":\"83d45661-2687-4ca9-ac45-91beac7b7082\",\"pandascore_id\":null,\"yahoo_id\":31028,\"last_name\":\"Oliver\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Brophy (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"isaiaholiver\",\"birth_date\":\"1996-09-30\",\"espn_id\":3915437},\"7202\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dom\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maggio\",\"depth_chart_position\":null,\"player_id\":\"7202\",\"birth_city\":null,\"fantasy_data_id\":22204,\"years_exp\":0,\"hashtag\":\"#DomMaggio-NFL-FA-0\",\"search_first_name\":\"dom\",\"rotowire_id\":15142,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Dom Maggio\",\"sportradar_id\":\"c7273f41-5e8b-4e0c-9606-c8c1bf6f6298\",\"pandascore_id\":null,\"yahoo_id\":33000,\"last_name\":\"Maggio\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dommaggio\",\"birth_date\":\"1998-04-23\",\"espn_id\":null},\"4023\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Martin\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mayhew\",\"depth_chart_position\":null,\"player_id\":\"4023\",\"birth_city\":null,\"fantasy_data_id\":18865,\"years_exp\":0,\"hashtag\":\"#MartinMayhew-NFL-FA-0\",\"search_first_name\":\"martin\",\"rotowire_id\":null,\"rotoworld_id\":9511,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Martin Mayhew\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mayhew\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"martinmayhew\",\"birth_date\":null,\"espn_id\":null},\"4951\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034777\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606501504807,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chark\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4951\",\"birth_city\":null,\"fantasy_data_id\":19816,\"years_exp\":2,\"hashtag\":\"#DJChark-NFL-JAX-17\",\"search_first_name\":\"dj\",\"rotowire_id\":12820,\"rotoworld_id\":13096,\"active\":true,\"search_rank\":52,\"age\":24,\"full_name\":\"D.J. Chark\",\"sportradar_id\":\"c2a7bd8a-d141-423a-8810-0988a59ff0b4\",\"pandascore_id\":null,\"yahoo_id\":31031,\"last_name\":\"Chark\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Alexandria (LA)\",\"depth_chart_order\":3,\"stats_id\":822008,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'4\\\"\",\"search_full_name\":\"djchark\",\"birth_date\":\"1996-09-23\",\"espn_id\":3115394},\"6281\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035106\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587092756909,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keenoy\",\"depth_chart_position\":\"C\",\"player_id\":\"6281\",\"birth_city\":null,\"fantasy_data_id\":21193,\"years_exp\":1,\"hashtag\":\"#JohnKeenoy-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":13717,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"John Keenoy\",\"sportradar_id\":\"778bde7d-c328-439d-a2ac-7f9d1ce23df9\",\"pandascore_id\":null,\"yahoo_id\":32144,\"last_name\":\"Keenoy\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnkeenoy\",\"birth_date\":\"1997-02-26\",\"espn_id\":3916742},\"7421\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonas\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffith\",\"depth_chart_position\":null,\"player_id\":\"7421\",\"birth_city\":null,\"fantasy_data_id\":22401,\"years_exp\":0,\"hashtag\":\"#JonasGriffith-NFL-SF-47\",\"search_first_name\":\"jonas\",\"rotowire_id\":15013,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2001,\"age\":23,\"full_name\":\"Jonas Griffith\",\"sportradar_id\":\"5180ecc5-bbd9-42b6-b227-c5efdb53cf80\",\"pandascore_id\":null,\"yahoo_id\":33197,\"last_name\":\"Griffith\",\"metadata\":null,\"college\":\"Indiana State\",\"high_school\":\"Academy at Shawnee (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonasgriffith\",\"birth_date\":\"1997-01-27\",\"espn_id\":3908558},\"5227\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034233\",\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1534455902077,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carew\",\"depth_chart_position\":null,\"player_id\":\"5227\",\"birth_city\":null,\"fantasy_data_id\":20186,\"years_exp\":2,\"hashtag\":\"#TannerCarew-NFL-FA-63\",\"search_first_name\":\"tanner\",\"rotowire_id\":12792,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tanner Carew\",\"sportradar_id\":\"0845c23b-3e5d-4802-ac42-e2658a55e9c5\",\"pandascore_id\":null,\"yahoo_id\":31470,\"last_name\":\"Carew\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tannercarew\",\"birth_date\":\"1995-10-04\",\"espn_id\":3122680},\"648\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024334\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564767009825,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"648\",\"birth_city\":null,\"fantasy_data_id\":11667,\"years_exp\":14,\"hashtag\":\"#BrandonMarshall-NFL-FA-15\",\"search_first_name\":\"brandon\",\"rotowire_id\":4879,\"rotoworld_id\":3653,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Brandon Marshall\",\"sportradar_id\":\"bbca096b-fd15-498a-86c2-feb44737363f\",\"pandascore_id\":null,\"yahoo_id\":7868,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Lake Howell (FL)\",\"depth_chart_order\":null,\"stats_id\":179701,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonmarshall\",\"birth_date\":\"1984-03-23\",\"espn_id\":9705},\"128\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vincent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1526714701434,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"128\",\"birth_city\":null,\"fantasy_data_id\":3519,\"years_exp\":15,\"hashtag\":\"#VincentJackson-NFL-FA-83\",\"search_first_name\":\"vincent\",\"rotowire_id\":4414,\"rotoworld_id\":3202,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Vincent Jackson\",\"sportradar_id\":\"3b538234-9a42-40ba-b4af-5cabc113794c\",\"pandascore_id\":null,\"yahoo_id\":7237,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Northern Colorado\",\"high_school\":\"Widefield (CO)\",\"depth_chart_order\":null,\"stats_id\":223079,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"vincentjackson\",\"birth_date\":\"1983-01-14\",\"espn_id\":8475},\"1749\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stoneburner\",\"depth_chart_position\":null,\"player_id\":\"1749\",\"birth_city\":null,\"fantasy_data_id\":15757,\"years_exp\":7,\"hashtag\":\"#JakeStoneburner-NFL-FA-49\",\"search_first_name\":\"jake\",\"rotowire_id\":9185,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jake Stoneburner\",\"sportradar_id\":\"35fa687f-a242-47d4-bf5e-93343b4cb21c\",\"pandascore_id\":null,\"yahoo_id\":27359,\"last_name\":\"Stoneburner\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Dublin Coffman (OH)\",\"depth_chart_order\":null,\"stats_id\":448014,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jakestoneburner\",\"birth_date\":\"1989-08-25\",\"espn_id\":16493},\"2347\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031552\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1546402815711,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"2347\",\"birth_city\":null,\"fantasy_data_id\":16803,\"years_exp\":5,\"hashtag\":\"#JalenCollins-NFL-FA-32\",\"search_first_name\":\"jalen\",\"rotowire_id\":10405,\"rotoworld_id\":10370,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jalen Collins\",\"sportradar_id\":\"716c039e-a1c7-42f7-87f9-ff414df726d3\",\"pandascore_id\":null,\"yahoo_id\":28430,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Olive Branch (MS)\",\"depth_chart_order\":null,\"stats_id\":589985,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jalencollins\",\"birth_date\":\"1993-03-20\",\"espn_id\":2577292},\"5301\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034265\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603407348870,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"averett\",\"depth_chart_position\":null,\"player_id\":\"5301\",\"birth_city\":null,\"fantasy_data_id\":19927,\"years_exp\":2,\"hashtag\":\"#AnthonyAverett-NFL-BAL-23\",\"search_first_name\":\"anthony\",\"rotowire_id\":12905,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1346,\"age\":25,\"full_name\":\"Anthony Averett\",\"sportradar_id\":\"791b7f98-c5ff-4145-ab8c-c67e3ca801c4\",\"pandascore_id\":null,\"yahoo_id\":31088,\"last_name\":\"Averett\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Woodbury (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonyaverett\",\"birth_date\":\"1994-11-30\",\"espn_id\":3054841},\"7178\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597191913198,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"atkinson\",\"depth_chart_position\":null,\"player_id\":\"7178\",\"birth_city\":null,\"fantasy_data_id\":22180,\"years_exp\":0,\"hashtag\":\"#HunterAtkinson-NFL-FA-0\",\"search_first_name\":\"hunter\",\"rotowire_id\":14937,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Hunter Atkinson\",\"sportradar_id\":\"45bd66cb-e162-4022-88a2-1f6b489d5b68\",\"pandascore_id\":null,\"yahoo_id\":33045,\"last_name\":\"Atkinson\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hunteratkinson\",\"birth_date\":\"1995-09-09\",\"espn_id\":null},\"185\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tillman\",\"depth_chart_position\":null,\"player_id\":\"185\",\"birth_city\":null,\"fantasy_data_id\":4819,\"years_exp\":17,\"hashtag\":\"#CharlesTillman-NFL-FA-31\",\"search_first_name\":\"charles\",\"rotowire_id\":3056,\"rotoworld_id\":2457,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Charles Tillman\",\"sportradar_id\":\"ff20d740-c731-460d-a460-7ffb8f9644e9\",\"pandascore_id\":null,\"yahoo_id\":6371,\"last_name\":\"Tillman\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Copperas Cove (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"charlestillman\",\"birth_date\":\"1981-02-23\",\"espn_id\":4493},\"4543\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033628\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597797025726,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sayles\",\"depth_chart_position\":null,\"player_id\":\"4543\",\"birth_city\":null,\"fantasy_data_id\":19422,\"years_exp\":3,\"hashtag\":\"#MarcusSayles-NFL-MIN-36\",\"search_first_name\":\"marcus\",\"rotowire_id\":12598,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marcus Sayles\",\"sportradar_id\":\"5aace1be-df36-4efc-92d9-b4bca2314eb2\",\"pandascore_id\":null,\"yahoo_id\":30601,\"last_name\":\"Sayles\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":\"Chattahoochee (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marcussayles\",\"birth_date\":\"1994-10-01\",\"espn_id\":4220625},\"2381\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032128\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606501804668,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conley\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2381\",\"birth_city\":null,\"fantasy_data_id\":16837,\"years_exp\":5,\"hashtag\":\"#ChrisConley-NFL-JAX-18\",\"search_first_name\":\"chris\",\"rotowire_id\":10210,\"rotoworld_id\":10432,\"active\":true,\"search_rank\":179,\"age\":28,\"full_name\":\"Chris Conley\",\"sportradar_id\":\"bd01d907-cd57-48cb-9136-5692a4764a20\",\"pandascore_id\":null,\"yahoo_id\":28464,\"last_name\":\"Conley\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"North Paulding (GA)\",\"depth_chart_order\":3,\"stats_id\":591801,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisconley\",\"birth_date\":\"1992-10-25\",\"espn_id\":2578533},\"6149\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035535\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606512327102,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slayton\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6149\",\"birth_city\":null,\"fantasy_data_id\":20943,\"years_exp\":1,\"hashtag\":\"#DariusSlayton-NFL-NYG-86\",\"search_first_name\":\"darius\",\"rotowire_id\":13522,\"rotoworld_id\":14258,\"active\":true,\"search_rank\":113,\"age\":23,\"full_name\":\"Darius Slayton\",\"sportradar_id\":\"82ed30a5-54a8-4ed0-b040-99c3a78fb055\",\"pandascore_id\":null,\"yahoo_id\":32003,\"last_name\":\"Slayton\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Greater Atlanta Christian (GA)\",\"depth_chart_order\":1,\"stats_id\":880557,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dariusslayton\",\"birth_date\":\"1997-01-12\",\"espn_id\":3916945},\"2287\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031404\",\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605036613988,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":\"SS\",\"player_id\":\"2287\",\"birth_city\":null,\"fantasy_data_id\":16724,\"years_exp\":6,\"hashtag\":\"#AdrianPhillips-NFL-NE-21\",\"search_first_name\":\"adrian\",\"rotowire_id\":10002,\"rotoworld_id\":10229,\"active\":true,\"search_rank\":848,\"age\":28,\"full_name\":\"Adrian Phillips\",\"sportradar_id\":\"3c119ef7-fe68-439d-93e4-89ab4fd1df44\",\"pandascore_id\":null,\"yahoo_id\":28303,\"last_name\":\"Phillips\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas\",\"high_school\":\"Garland (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"adrianphillips\",\"birth_date\":\"1992-03-28\",\"espn_id\":17487},\"5067\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034825\",\"first_name\":\"Arden\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606012210165,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"key\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5067\",\"birth_city\":null,\"fantasy_data_id\":19896,\"years_exp\":2,\"hashtag\":\"#ArdenKey-NFL-LV-99\",\"search_first_name\":\"arden\",\"rotowire_id\":12545,\"rotoworld_id\":13117,\"active\":true,\"search_rank\":1330,\"age\":24,\"full_name\":\"Arden Key\",\"sportradar_id\":\"acc85868-4848-4de3-8e6f-5427e93c8d80\",\"pandascore_id\":null,\"yahoo_id\":31057,\"last_name\":\"Key\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Hapeville Charter (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ardenkey\",\"birth_date\":\"1996-05-03\",\"espn_id\":3843843},\"6439\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035025\",\"first_name\":\"Hale\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600809948801,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hentges\",\"depth_chart_position\":\"TE\",\"player_id\":\"6439\",\"birth_city\":null,\"fantasy_data_id\":21344,\"years_exp\":1,\"hashtag\":\"#HaleHentges-NFL-IND-88\",\"search_first_name\":\"hale\",\"rotowire_id\":14094,\"rotoworld_id\":null,\"active\":true,\"search_rank\":531,\"age\":24,\"full_name\":\"Hale Hentges\",\"sportradar_id\":\"fe7dea44-fd21-45e4-a8f0-1436e1108da1\",\"pandascore_id\":null,\"yahoo_id\":32295,\"last_name\":\"Hentges\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Helias (MO)\",\"depth_chart_order\":5,\"stats_id\":884045,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"halehentges\",\"birth_date\":\"1996-08-19\",\"espn_id\":3925348},\"6759\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1578420041952,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"judge\",\"depth_chart_position\":null,\"player_id\":\"6759\",\"birth_city\":null,\"fantasy_data_id\":21703,\"years_exp\":0,\"hashtag\":\"#JoeJudge-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":14846,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Judge\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Judge\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joejudge\",\"birth_date\":null,\"espn_id\":null},\"6\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025472\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1584127825462,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mebane\",\"depth_chart_position\":\"NT\",\"player_id\":\"6\",\"birth_city\":null,\"fantasy_data_id\":292,\"years_exp\":13,\"hashtag\":\"#BrandonMebane-NFL-FA-92\",\"search_first_name\":\"brandon\",\"rotowire_id\":5393,\"rotoworld_id\":4367,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brandon Mebane\",\"sportradar_id\":\"1c5a8bd4-1b02-458e-943d-c391d3f0258e\",\"pandascore_id\":null,\"yahoo_id\":8339,\"last_name\":\"Mebane\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Crenshaw (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandonmebane\",\"birth_date\":\"1985-01-15\",\"espn_id\":10529},\"5925\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035302\",\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beckner\",\"depth_chart_position\":null,\"player_id\":\"5925\",\"birth_city\":null,\"fantasy_data_id\":21028,\"years_exp\":1,\"hashtag\":\"#TerryBeckner-NFL-CHI-73\",\"search_first_name\":\"terry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Terry Beckner\",\"sportradar_id\":\"b8c4a63d-775b-47c6-9be3-ef321658c600\",\"pandascore_id\":null,\"yahoo_id\":32047,\"last_name\":\"Beckner\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"East St. Louis (IL)\",\"depth_chart_order\":null,\"stats_id\":882332,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"terrybeckner\",\"birth_date\":\"1997-03-02\",\"espn_id\":3924310},\"5749\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034776\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567789821646,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"5749\",\"birth_city\":null,\"fantasy_data_id\":20658,\"years_exp\":2,\"hashtag\":\"#KyleWilson-NFL-FA-56\",\"search_first_name\":\"kyle\",\"rotowire_id\":13350,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kyle Wilson\",\"sportradar_id\":\"172b5902-e710-4101-ae32-9c18be65266b\",\"pandascore_id\":null,\"yahoo_id\":31745,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kylewilson\",\"birth_date\":\"1995-11-02\",\"espn_id\":4036493},\"1266\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029621\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606492204135,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zuerlein\",\"depth_chart_position\":\"K\",\"player_id\":\"1266\",\"birth_city\":null,\"fantasy_data_id\":14697,\"years_exp\":8,\"hashtag\":\"#GregZuerlein-NFL-DAL-2\",\"search_first_name\":\"greg\",\"rotowire_id\":8179,\"rotoworld_id\":7616,\"active\":true,\"search_rank\":150,\"age\":32,\"full_name\":\"Greg Zuerlein\",\"sportradar_id\":\"93d11276-45d2-4168-a9b7-df0cbf12dabb\",\"pandascore_id\":null,\"yahoo_id\":25881,\"last_name\":\"Zuerlein\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":\"Lincoln Pius X (NE)\",\"depth_chart_order\":1,\"stats_id\":558684,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gregzuerlein\",\"birth_date\":\"1987-12-27\",\"espn_id\":14993},\"3876\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wakefield\",\"depth_chart_position\":\"WLB\",\"player_id\":\"3876\",\"birth_city\":null,\"fantasy_data_id\":18698,\"years_exp\":0,\"hashtag\":\"#MichaelWakefield-NFL-FA-45\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Michael Wakefield\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30004,\"last_name\":\"Wakefield\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaelwakefield\",\"birth_date\":\"1994-01-12\",\"espn_id\":2981875},\"1123\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029683\",\"first_name\":\"Ronnie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hillman\",\"depth_chart_position\":null,\"player_id\":\"1123\",\"birth_city\":null,\"fantasy_data_id\":14046,\"years_exp\":8,\"hashtag\":\"#RonnieHillman-NFL-FA-34\",\"search_first_name\":\"ronnie\",\"rotowire_id\":8030,\"rotoworld_id\":7440,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ronnie Hillman\",\"sportradar_id\":\"6e024d51-d5fb-40cc-8a07-495f81347ad1\",\"pandascore_id\":null,\"yahoo_id\":25777,\"last_name\":\"Hillman\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"La Habra (CA)\",\"depth_chart_order\":null,\"stats_id\":512366,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ronniehillman\",\"birth_date\":\"1991-09-14\",\"espn_id\":14895},\"5997\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035090\",\"first_name\":\"Jazz\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567386642219,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5997\",\"birth_city\":null,\"fantasy_data_id\":20756,\"years_exp\":1,\"hashtag\":\"#JazzFerguson-NFL-FA-87\",\"search_first_name\":\"jazz\",\"rotowire_id\":13434,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jazz Ferguson\",\"sportradar_id\":\"1c4e12ff-afad-4628-a4f2-d47dc3f4a9dc\",\"pandascore_id\":null,\"yahoo_id\":32338,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Northwestern State\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":865560,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jazzferguson\",\"birth_date\":\"1997-01-12\",\"espn_id\":3843603},\"3139\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ted\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"3139\",\"birth_city\":null,\"fantasy_data_id\":17893,\"years_exp\":0,\"hashtag\":\"#TedThompson-NFL-FA-0\",\"search_first_name\":\"ted\",\"rotowire_id\":null,\"rotoworld_id\":9512,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ted Thompson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tedthompson\",\"birth_date\":null,\"espn_id\":null},\"4592\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033676\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606023314292,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilkinson\",\"depth_chart_position\":\"RT\",\"player_id\":\"4592\",\"birth_city\":null,\"fantasy_data_id\":19479,\"years_exp\":3,\"hashtag\":\"#ElijahWilkinson-NFL-DEN-68\",\"search_first_name\":\"elijah\",\"rotowire_id\":12449,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Elijah Wilkinson\",\"sportradar_id\":\"00fdaebe-c8f6-43fa-addb-6a57dc6c5969\",\"pandascore_id\":null,\"yahoo_id\":30826,\"last_name\":\"Wilkinson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Massachusetts\",\"high_school\":\"Downingtown (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'6\\\"\",\"search_full_name\":\"elijahwilkinson\",\"birth_date\":\"1995-02-10\",\"espn_id\":3059839},\"1318\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029076\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544560235180,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pasztor\",\"depth_chart_position\":null,\"player_id\":\"1318\",\"birth_city\":null,\"fantasy_data_id\":14813,\"years_exp\":8,\"hashtag\":\"#AustinPasztor-NFL-FA-68\",\"search_first_name\":\"austin\",\"rotowire_id\":8604,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Austin Pasztor\",\"sportradar_id\":\"000bc6c6-c9a8-4631-92d6-1cea5aaa1644\",\"pandascore_id\":null,\"yahoo_id\":26309,\"last_name\":\"Pasztor\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Glendale (Ontario)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'7\\\"\",\"search_full_name\":\"austinpasztor\",\"birth_date\":\"1990-11-26\",\"espn_id\":15347},\"4907\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sirianni\",\"depth_chart_position\":null,\"player_id\":\"4907\",\"birth_city\":null,\"fantasy_data_id\":19809,\"years_exp\":0,\"hashtag\":\"#NickSirianni-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":null,\"rotoworld_id\":13088,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nick Sirianni\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sirianni\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"nicksirianni\",\"birth_date\":null,\"espn_id\":null},\"5815\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034641\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604250319294,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5815\",\"birth_city\":null,\"fantasy_data_id\":20711,\"years_exp\":2,\"hashtag\":\"#ChrisJones-NFL-MIN-26\",\"search_first_name\":\"chris\",\"rotowire_id\":13196,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1511,\"age\":25,\"full_name\":\"Chris Jones\",\"sportradar_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"pandascore_id\":null,\"yahoo_id\":31636,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Sandalwood (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisjones\",\"birth_date\":\"1995-08-13\",\"espn_id\":3116104},\"6884\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587835841369,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stenberg\",\"depth_chart_position\":\"RG\",\"player_id\":\"6884\",\"birth_city\":null,\"fantasy_data_id\":22026,\"years_exp\":0,\"hashtag\":\"#LoganStenberg-NFL-DET-61\",\"search_first_name\":\"logan\",\"rotowire_id\":14678,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Logan Stenberg\",\"sportradar_id\":\"cf95d473-31b5-4bf4-b52c-386567c51caa\",\"pandascore_id\":null,\"yahoo_id\":32791,\"last_name\":\"Stenberg\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"James Clemens (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"loganstenberg\",\"birth_date\":\"1997-03-18\",\"espn_id\":3915252},\"2732\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1580256660319,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamlett\",\"depth_chart_position\":null,\"player_id\":\"2732\",\"birth_city\":null,\"fantasy_data_id\":17200,\"years_exp\":4,\"hashtag\":\"#ConnorHamlett-NFL-FA-86\",\"search_first_name\":\"connor\",\"rotowire_id\":10555,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Connor Hamlett\",\"sportradar_id\":\"b2c581a9-1089-41f9-b34b-03cbdd650b69\",\"pandascore_id\":null,\"yahoo_id\":28848,\"last_name\":\"Hamlett\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":560156,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'7\\\"\",\"search_full_name\":\"connorhamlett\",\"birth_date\":\"1992-04-12\",\"espn_id\":2517011},\"2978\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thornton\",\"depth_chart_position\":null,\"player_id\":\"2978\",\"birth_city\":null,\"fantasy_data_id\":17476,\"years_exp\":0,\"hashtag\":\"#MikeThornton-NFL-FA-64\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mike Thornton\",\"sportradar_id\":\"015f9f32-02f1-4379-83a6-f779059de743\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Thornton\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikethornton\",\"birth_date\":\"1992-01-01\",\"espn_id\":2516110},\"41\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garrard\",\"depth_chart_position\":null,\"player_id\":\"41\",\"birth_city\":null,\"fantasy_data_id\":1185,\"years_exp\":10,\"hashtag\":\"#DavidGarrard-NFL-FA-9\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"David Garrard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Garrard\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidgarrard\",\"birth_date\":\"1978-02-14\",\"espn_id\":null},\"1641\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1510704001349,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"1641\",\"birth_city\":null,\"fantasy_data_id\":15377,\"years_exp\":7,\"hashtag\":\"#DevinTaylor-NFL-FA-97\",\"search_first_name\":\"devin\",\"rotowire_id\":8953,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Devin Taylor\",\"sportradar_id\":\"d7328e6c-d3d9-40d5-b18a-ee027bb1166c\",\"pandascore_id\":null,\"yahoo_id\":26755,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Beaufort (SC)\",\"depth_chart_order\":null,\"stats_id\":465831,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'7\\\"\",\"search_full_name\":\"devintaylor\",\"birth_date\":\"1989-11-15\",\"espn_id\":15916},\"464\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gafford\",\"depth_chart_position\":null,\"player_id\":\"464\",\"birth_city\":null,\"fantasy_data_id\":9568,\"years_exp\":14,\"hashtag\":\"#ThomasGafford-NFL-FA-46\",\"search_first_name\":\"thomas\",\"rotowire_id\":7027,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Thomas Gafford\",\"sportradar_id\":\"f19168d4-4158-46df-b0bf-81e2072e3601\",\"pandascore_id\":null,\"yahoo_id\":9221,\"last_name\":\"Gafford\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Clear Brook (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'2\\\"\",\"search_full_name\":\"thomasgafford\",\"birth_date\":\"1983-01-29\",\"espn_id\":10183},\"4899\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032338\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferris\",\"depth_chart_position\":null,\"player_id\":\"4899\",\"birth_city\":null,\"fantasy_data_id\":17913,\"years_exp\":4,\"hashtag\":\"#DrewFerris-NFL-FA-48\",\"search_first_name\":\"drew\",\"rotowire_id\":11192,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Drew Ferris\",\"sportradar_id\":\"1749d4fa-1cdf-4f62-9783-08dd81e25a87\",\"pandascore_id\":null,\"yahoo_id\":29231,\"last_name\":\"Ferris\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"drewferris\",\"birth_date\":\"1992-03-07\",\"espn_id\":2516051},\"169\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"169\",\"birth_city\":null,\"fantasy_data_id\":4358,\"years_exp\":19,\"hashtag\":\"#SteveSmith-NFL-FA-89\",\"search_first_name\":\"steve\",\"rotowire_id\":2263,\"rotoworld_id\":2386,\"active\":false,\"search_rank\":9999999,\"age\":41,\"full_name\":\"Steve Smith\",\"sportradar_id\":\"a69419b7-3cdc-48b9-b3a3-c50f2bf4e6f1\",\"pandascore_id\":null,\"yahoo_id\":5521,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"University (CA)\",\"depth_chart_order\":null,\"stats_id\":25640,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"stevesmith\",\"birth_date\":\"1979-05-12\",\"espn_id\":2622},\"5024\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034676\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606161914503,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5024\",\"birth_city\":null,\"fantasy_data_id\":19865,\"years_exp\":2,\"hashtag\":\"#JamesWashington-NFL-PIT-13\",\"search_first_name\":\"james\",\"rotowire_id\":12838,\"rotoworld_id\":13153,\"active\":true,\"search_rank\":177,\"age\":24,\"full_name\":\"James Washington\",\"sportradar_id\":\"814aa074-fc61-4649-b7a1-098bd3a199fd\",\"pandascore_id\":null,\"yahoo_id\":31030,\"last_name\":\"Washington\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Oklahoma State\",\"high_school\":\"Stamford (TX)\",\"depth_chart_order\":2,\"stats_id\":835437,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jameswashington\",\"birth_date\":\"1996-04-02\",\"espn_id\":3122449},\"1551\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029729\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1514841902093,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1551\",\"birth_city\":null,\"fantasy_data_id\":15191,\"years_exp\":7,\"hashtag\":\"#AustinJohnson-NFL-FA-46\",\"search_first_name\":\"austin\",\"rotowire_id\":9899,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Austin Johnson\",\"sportradar_id\":\"360f6480-729a-437c-9875-5a409f4ca03b\",\"pandascore_id\":null,\"yahoo_id\":26601,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Hickory (NC)\",\"depth_chart_order\":null,\"stats_id\":449465,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"austinjohnson\",\"birth_date\":\"1989-06-16\",\"espn_id\":15765},\"6513\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035066\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lowery\",\"depth_chart_position\":null,\"player_id\":\"6513\",\"birth_city\":null,\"fantasy_data_id\":21430,\"years_exp\":1,\"hashtag\":\"#JoeLowery-NFL-FA-74\",\"search_first_name\":\"joe\",\"rotowire_id\":13957,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joe Lowery\",\"sportradar_id\":\"cc100593-db21-4a2f-a6d2-607bdcea88ad\",\"pandascore_id\":null,\"yahoo_id\":32350,\"last_name\":\"Lowery\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'7\\\"\",\"search_full_name\":\"joelowery\",\"birth_date\":\"1996-05-20\",\"espn_id\":3126065},\"3593\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":null,\"player_id\":\"3593\",\"birth_city\":null,\"fantasy_data_id\":18373,\"years_exp\":0,\"hashtag\":\"#AnthonyKelly-NFL-FA-84\",\"search_first_name\":\"anthony\",\"rotowire_id\":11652,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anthony Kelly\",\"sportradar_id\":\"8ea42c70-58fe-4842-8eb1-7fe556a151a1\",\"pandascore_id\":null,\"yahoo_id\":29579,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Kutztown\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"anthonykelly\",\"birth_date\":null,\"espn_id\":null},\"4572\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033659\",\"first_name\":\"Joseph\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605900002279,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RILB\",\"player_id\":\"4572\",\"birth_city\":null,\"fantasy_data_id\":19458,\"years_exp\":3,\"hashtag\":\"#JosephJones-NFL-DEN-43\",\"search_first_name\":\"joseph\",\"rotowire_id\":12454,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1263,\"age\":26,\"full_name\":\"Joseph Jones\",\"sportradar_id\":\"5554177a-c14b-4931-85c6-fc302eb6770a\",\"pandascore_id\":null,\"yahoo_id\":30785,\"last_name\":\"Jones\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Northwestern\",\"high_school\":\"Plano (IL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'0\\\"\",\"search_full_name\":\"josephjones\",\"birth_date\":\"1994-02-21\",\"espn_id\":2974344},\"2525\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031622\",\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605834314646,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hart\",\"depth_chart_position\":\"RT\",\"player_id\":\"2525\",\"birth_city\":null,\"fantasy_data_id\":16985,\"years_exp\":5,\"hashtag\":\"#BobbyHart-NFL-CIN-68\",\"search_first_name\":\"bobby\",\"rotowire_id\":10297,\"rotoworld_id\":10599,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bobby Hart\",\"sportradar_id\":\"449401ef-0251-4895-8f56-eaf5ef7f9cf8\",\"pandascore_id\":null,\"yahoo_id\":28614,\"last_name\":\"Hart\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bobbyhart\",\"birth_date\":\"1994-08-21\",\"espn_id\":2576789},\"6100\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"6100\",\"birth_city\":null,\"fantasy_data_id\":20734,\"years_exp\":0,\"hashtag\":\"#EdAlexander-NFL-FA-0\",\"search_first_name\":\"ed\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ed Alexander\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'3\\\"\",\"search_full_name\":\"edalexander\",\"birth_date\":null,\"espn_id\":null},\"5336\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034166\",\"first_name\":\"Ade\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598493943686,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aruna\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5336\",\"birth_city\":null,\"fantasy_data_id\":20035,\"years_exp\":2,\"hashtag\":\"#AdeAruna-NFL-FA-0\",\"search_first_name\":\"ade\",\"rotowire_id\":12915,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1399,\"age\":26,\"full_name\":\"Ade Aruna\",\"sportradar_id\":\"596fa903-35a6-4650-b499-bc3ce33d5103\",\"pandascore_id\":null,\"yahoo_id\":31188,\"last_name\":\"Aruna\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":729544,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'5\\\"\",\"search_full_name\":\"adearuna\",\"birth_date\":\"1994-04-27\",\"espn_id\":3041114},\"4400\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033415\",\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598493343413,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4400\",\"birth_city\":null,\"fantasy_data_id\":19259,\"years_exp\":3,\"hashtag\":\"#MauriceSmith-NFL-TEN-46\",\"search_first_name\":\"maurice\",\"rotowire_id\":12149,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1242,\"age\":25,\"full_name\":\"Maurice Smith\",\"sportradar_id\":\"486d1b54-2f4a-4fe1-8935-c8659a8dc942\",\"pandascore_id\":null,\"yahoo_id\":30652,\"last_name\":\"Smith\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Georgia\",\"high_school\":\"Fort Bend Dulles (TX)\",\"depth_chart_order\":null,\"stats_id\":750854,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mauricesmith\",\"birth_date\":\"1995-06-14\",\"espn_id\":3054859},\"1073\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"1073\",\"birth_city\":null,\"fantasy_data_id\":13881,\"years_exp\":3,\"hashtag\":\"#TaylorThompson-NFL-FA-84\",\"search_first_name\":\"taylor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Taylor Thompson\",\"sportradar_id\":\"c2c65162-07df-48fb-93ce-86f340afb688\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":460898,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'6\\\"\",\"search_full_name\":\"taylorthompson\",\"birth_date\":\"1989-10-19\",\"espn_id\":15067},\"2186\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carrington\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"byndom\",\"depth_chart_position\":null,\"player_id\":\"2186\",\"birth_city\":null,\"fantasy_data_id\":16554,\"years_exp\":2,\"hashtag\":\"#CarringtonByndom-NFL-FA-33\",\"search_first_name\":\"carrington\",\"rotowire_id\":10014,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Carrington Byndom\",\"sportradar_id\":\"6db715a2-4a39-4cba-9621-834efeae0975\",\"pandascore_id\":null,\"yahoo_id\":27939,\"last_name\":\"Byndom\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"carringtonbyndom\",\"birth_date\":\"1992-07-07\",\"espn_id\":17385},\"1288\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028171\",\"first_name\":\"Lawrence\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605486014348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"guy\",\"depth_chart_position\":\"DT\",\"player_id\":\"1288\",\"birth_city\":null,\"fantasy_data_id\":14743,\"years_exp\":9,\"hashtag\":\"#LawrenceGuy-NFL-NE-93\",\"search_first_name\":\"lawrence\",\"rotowire_id\":7472,\"rotoworld_id\":null,\"active\":true,\"search_rank\":699,\"age\":30,\"full_name\":\"Lawrence Guy\",\"sportradar_id\":\"0861a57d-b468-4c21-ba3a-7523b6838ed0\",\"pandascore_id\":null,\"yahoo_id\":25020,\"last_name\":\"Guy\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arizona State\",\"high_school\":\"Western (NV)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lawrenceguy\",\"birth_date\":\"1990-03-17\",\"espn_id\":14185},\"4426\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033392\",\"first_name\":\"Harvey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606102514756,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"langi\",\"depth_chart_position\":\"LILB\",\"player_id\":\"4426\",\"birth_city\":null,\"fantasy_data_id\":19286,\"years_exp\":3,\"hashtag\":\"#HarveyLangi-NFL-NYJ-44\",\"search_first_name\":\"harvey\",\"rotowire_id\":11925,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1248,\"age\":28,\"full_name\":\"Harvey Langi\",\"sportradar_id\":\"d3e192b5-4523-4d65-94e0-a1fb164b6542\",\"pandascore_id\":null,\"yahoo_id\":30666,\"last_name\":\"Langi\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Bingham (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'2\\\"\",\"search_full_name\":\"harveylangi\",\"birth_date\":\"1992-09-24\",\"espn_id\":2570996},\"4605\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033763\",\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606249553907,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"baylis\",\"depth_chart_position\":\"TE\",\"player_id\":\"4605\",\"birth_city\":null,\"fantasy_data_id\":19494,\"years_exp\":3,\"hashtag\":\"#EvanBaylis-NFL-ARI-89\",\"search_first_name\":\"evan\",\"rotowire_id\":12308,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1268,\"age\":27,\"full_name\":\"Evan Baylis\",\"sportradar_id\":\"fd25a007-dedb-42db-a31e-55dcd5e17967\",\"pandascore_id\":null,\"yahoo_id\":30795,\"last_name\":\"Baylis\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Grandview (CO)\",\"depth_chart_order\":3,\"stats_id\":689688,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"evanbaylis\",\"birth_date\":\"1993-11-18\",\"espn_id\":2971280},\"7086\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606268755351,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hightower\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7086\",\"birth_city\":null,\"fantasy_data_id\":21731,\"years_exp\":0,\"hashtag\":\"#JohnHightower-NFL-PHI-82\",\"search_first_name\":\"john\",\"rotowire_id\":14567,\"rotoworld_id\":null,\"active\":true,\"search_rank\":230,\"age\":24,\"full_name\":\"John Hightower\",\"sportradar_id\":\"58e217cd-53c0-40e7-b40b-62f53d246751\",\"pandascore_id\":null,\"yahoo_id\":32838,\"last_name\":\"Hightower\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Riverdale Baptist (MD)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"172\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnhightower\",\"birth_date\":\"1996-05-31\",\"espn_id\":4373673},\"7464\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693362272,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"slomka\",\"depth_chart_position\":null,\"player_id\":\"7464\",\"birth_city\":null,\"fantasy_data_id\":21813,\"years_exp\":0,\"hashtag\":\"#ConnorSlomka-NFL-FA-0\",\"search_first_name\":\"connor\",\"rotowire_id\":14953,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1787,\"age\":23,\"full_name\":\"Connor Slomka\",\"sportradar_id\":\"456f3e6a-749f-4d8f-b4cc-2b2946eaea00\",\"pandascore_id\":null,\"yahoo_id\":33143,\"last_name\":\"Slomka\",\"metadata\":null,\"college\":\"Army\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"connorslomka\",\"birth_date\":\"1997-05-30\",\"espn_id\":4036949},\"1795\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"graf\",\"depth_chart_position\":null,\"player_id\":\"1795\",\"birth_city\":null,\"fantasy_data_id\":15968,\"years_exp\":5,\"hashtag\":\"#KevinGraf-NFL-FA-66\",\"search_first_name\":\"kevin\",\"rotowire_id\":9974,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kevin Graf\",\"sportradar_id\":\"6e474781-b587-4514-a095-ea741493079e\",\"pandascore_id\":null,\"yahoo_id\":27792,\"last_name\":\"Graf\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kevingraf\",\"birth_date\":\"1991-06-17\",\"espn_id\":16999},\"5454\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034114\",\"first_name\":\"Coleman\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shelton\",\"depth_chart_position\":\"LG\",\"player_id\":\"5454\",\"birth_city\":null,\"fantasy_data_id\":20533,\"years_exp\":2,\"hashtag\":\"#ColemanShelton-NFL-LAR-65\",\"search_first_name\":\"coleman\",\"rotowire_id\":12701,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Coleman Shelton\",\"sportradar_id\":\"9e885643-3f46-49f4-94e9-714a3b1f586b\",\"pandascore_id\":null,\"yahoo_id\":31393,\"last_name\":\"Shelton\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Loyola (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"colemanshelton\",\"birth_date\":\"1995-07-28\",\"espn_id\":3052180},\"5816\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035717\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601219439106,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bosa\",\"depth_chart_position\":null,\"player_id\":\"5816\",\"birth_city\":null,\"fantasy_data_id\":20713,\"years_exp\":1,\"hashtag\":\"#NickBosa-NFL-SF-97\",\"search_first_name\":\"nick\",\"rotowire_id\":13421,\"rotoworld_id\":13937,\"active\":true,\"search_rank\":1512,\"age\":23,\"full_name\":\"Nick Bosa\",\"sportradar_id\":\"987c5e68-21d5-4bcb-a5f3-2e09cc512374\",\"pandascore_id\":null,\"yahoo_id\":31834,\"last_name\":\"Bosa\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickbosa\",\"birth_date\":\"1997-10-23\",\"espn_id\":4040605},\"1151\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029493\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1535910092280,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quigley\",\"depth_chart_position\":null,\"player_id\":\"1151\",\"birth_city\":null,\"fantasy_data_id\":14192,\"years_exp\":8,\"hashtag\":\"#RyanQuigley-NFL-FA-4\",\"search_first_name\":\"ryan\",\"rotowire_id\":8389,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ryan Quigley\",\"sportradar_id\":\"b4e5d1c1-5915-4326-b737-d6c796da0d75\",\"pandascore_id\":null,\"yahoo_id\":26468,\"last_name\":\"Quigley\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"North Myrtle Beach (SC)\",\"depth_chart_order\":null,\"stats_id\":451152,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ryanquigley\",\"birth_date\":\"1990-01-26\",\"espn_id\":15616},\"5103\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034409\",\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1605369359607,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cantrell\",\"depth_chart_position\":\"TE\",\"player_id\":\"5103\",\"birth_city\":null,\"fantasy_data_id\":19982,\"years_exp\":2,\"hashtag\":\"#DylanCantrell-NFL-NE-82\",\"search_first_name\":\"dylan\",\"rotowire_id\":12920,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1378,\"age\":26,\"full_name\":\"Dylan Cantrell\",\"sportradar_id\":\"870e89e7-018a-466b-adff-d0fe872b3e20\",\"pandascore_id\":null,\"yahoo_id\":31161,\"last_name\":\"Cantrell\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Whitehouse (TX)\",\"depth_chart_order\":11,\"stats_id\":748048,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dylancantrell\",\"birth_date\":\"1994-06-29\",\"espn_id\":3052576},\"4319\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033251\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606526728295,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pascal\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4319\",\"birth_city\":null,\"fantasy_data_id\":19172,\"years_exp\":3,\"hashtag\":\"#ZachPascal-NFL-IND-14\",\"search_first_name\":\"zach\",\"rotowire_id\":11868,\"rotoworld_id\":12635,\"active\":true,\"search_rank\":308,\"age\":25,\"full_name\":\"Zach Pascal\",\"sportradar_id\":\"7fc949b6-a1cb-4f9d-a06d-b65773409a44\",\"pandascore_id\":null,\"yahoo_id\":30502,\"last_name\":\"Pascal\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"Henry Wise (MD)\",\"depth_chart_order\":1,\"stats_id\":658447,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zachpascal\",\"birth_date\":\"1994-12-18\",\"espn_id\":2978109},\"5860\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035693\",\"first_name\":\"Johnathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606278356140,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"abram\",\"depth_chart_position\":\"SS\",\"player_id\":\"5860\",\"birth_city\":null,\"fantasy_data_id\":20731,\"years_exp\":1,\"hashtag\":\"#JohnathanAbram-NFL-LV-24\",\"search_first_name\":\"johnathan\",\"rotowire_id\":13546,\"rotoworld_id\":14077,\"active\":true,\"search_rank\":1517,\"age\":24,\"full_name\":\"Johnathan Abram\",\"sportradar_id\":\"26b6ac3e-facf-48eb-ae5b-afd30b2544b2\",\"pandascore_id\":null,\"yahoo_id\":31859,\"last_name\":\"Abram\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"East Marion (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnathanabram\",\"birth_date\":\"1996-10-25\",\"espn_id\":3728305},\"594\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027855\",\"first_name\":\"Ndamukong\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603244140805,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"suh\",\"depth_chart_position\":\"LDE\",\"player_id\":\"594\",\"birth_city\":null,\"fantasy_data_id\":11382,\"years_exp\":10,\"hashtag\":\"#NdamukongSuh-NFL-TB-93\",\"search_first_name\":\"ndamukong\",\"rotowire_id\":6537,\"rotoworld_id\":5593,\"active\":true,\"search_rank\":610,\"age\":33,\"full_name\":\"Ndamukong Suh\",\"sportradar_id\":\"f0f60621-a075-41f6-a07d-74fd9e1348f2\",\"pandascore_id\":null,\"yahoo_id\":23977,\"last_name\":\"Suh\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Grant (OR)\",\"depth_chart_order\":1,\"stats_id\":301132,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ndamukongsuh\",\"birth_date\":\"1987-01-06\",\"espn_id\":13234},\"6008\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035084\",\"first_name\":\"Yosuah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598662552195,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nijman\",\"depth_chart_position\":\"LT\",\"player_id\":\"6008\",\"birth_city\":null,\"fantasy_data_id\":20895,\"years_exp\":1,\"hashtag\":\"#YosuahNijman-NFL-GB-73\",\"search_first_name\":\"yosuah\",\"rotowire_id\":13879,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Yosuah Nijman\",\"sportradar_id\":\"c589d918-f69f-4284-aa85-5f9c30e006a4\",\"pandascore_id\":null,\"yahoo_id\":32275,\"last_name\":\"Nijman\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Columbia (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'7\\\"\",\"search_full_name\":\"yosuahnijman\",\"birth_date\":\"1996-01-02\",\"espn_id\":3871880},\"6010\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034940\",\"first_name\":\"Chidi\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okeke\",\"depth_chart_position\":null,\"player_id\":\"6010\",\"birth_city\":null,\"fantasy_data_id\":20896,\"years_exp\":1,\"hashtag\":\"#ChidiOkeke-NFL-FA-0\",\"search_first_name\":\"chidi\",\"rotowire_id\":14058,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chidi Okeke\",\"sportradar_id\":\"10498aac-6432-404e-8bcd-52b0b9f57a21\",\"pandascore_id\":null,\"yahoo_id\":32185,\"last_name\":\"Okeke\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chidiokeke\",\"birth_date\":\"1996-12-26\",\"espn_id\":3938130},\"1718\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029119\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1578329738048,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carrier\",\"depth_chart_position\":\"TE\",\"player_id\":\"1718\",\"birth_city\":null,\"fantasy_data_id\":15640,\"years_exp\":8,\"hashtag\":\"#DerekCarrier-NFL-LV-85\",\"search_first_name\":\"derek\",\"rotowire_id\":9203,\"rotoworld_id\":7527,\"active\":true,\"search_rank\":498,\"age\":30,\"full_name\":\"Derek Carrier\",\"sportradar_id\":\"d3fab07b-f02a-433d-9612-cb0a751f324d\",\"pandascore_id\":null,\"yahoo_id\":26416,\"last_name\":\"Carrier\",\"metadata\":null,\"college\":\"Beloit\",\"high_school\":\"Edgerton (WI)\",\"depth_chart_order\":4,\"stats_id\":654887,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derekcarrier\",\"birth_date\":\"1990-07-25\",\"espn_id\":15403},\"6994\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lamar\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602629150146,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6994\",\"birth_city\":null,\"fantasy_data_id\":22049,\"years_exp\":0,\"hashtag\":\"#LamarJackson-NFL-NYJ-38\",\"search_first_name\":\"lamar\",\"rotowire_id\":14583,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Lamar Jackson\",\"sportradar_id\":\"22e0f7ed-9b46-4a75-9780-d9b66c245744\",\"pandascore_id\":null,\"yahoo_id\":33336,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Franklin (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lamarjackson\",\"birth_date\":\"1998-04-13\",\"espn_id\":4034849},\"767\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535124647154,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":null,\"player_id\":\"767\",\"birth_city\":null,\"fantasy_data_id\":12538,\"years_exp\":11,\"hashtag\":\"#ChrisBaker-NFL-FA-92\",\"search_first_name\":\"chris\",\"rotowire_id\":5964,\"rotoworld_id\":5509,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Chris Baker\",\"sportradar_id\":\"5659e779-d0af-4107-aa75-d24dc3db90e3\",\"pandascore_id\":null,\"yahoo_id\":9535,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":\"Windsor (CT)\",\"depth_chart_order\":null,\"stats_id\":326573,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisbaker\",\"birth_date\":\"1987-10-08\",\"espn_id\":12760},\"2596\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031864\",\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1574810436232,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"saxton\",\"depth_chart_position\":\"TE\",\"player_id\":\"2596\",\"birth_city\":null,\"fantasy_data_id\":17064,\"years_exp\":5,\"hashtag\":\"#WesSaxton-NFL-FA-85\",\"search_first_name\":\"wes\",\"rotowire_id\":10255,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Wes Saxton\",\"sportradar_id\":\"f13bb3f1-7055-484f-982a-9f26b058c1e2\",\"pandascore_id\":null,\"yahoo_id\":28941,\"last_name\":\"Saxton\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":\"Hueytown\",\"depth_chart_order\":4,\"stats_id\":652467,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"wessaxton\",\"birth_date\":\"1993-08-13\",\"espn_id\":2972765},\"4398\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033413\",\"first_name\":\"De'Veon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534904127951,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4398\",\"birth_city\":null,\"fantasy_data_id\":19257,\"years_exp\":3,\"hashtag\":\"#DeVeonSmith-NFL-FA-22\",\"search_first_name\":\"deveon\",\"rotowire_id\":11773,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"De'Veon Smith\",\"sportradar_id\":\"5ec329e9-0752-487d-9ebd-40c6a03c41e5\",\"pandascore_id\":null,\"yahoo_id\":30650,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740765,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deveonsmith\",\"birth_date\":\"1994-11-08\",\"espn_id\":3045199},\"5912\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035402\",\"first_name\":\"Carl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1600047961547,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"granderson\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5912\",\"birth_city\":null,\"fantasy_data_id\":20776,\"years_exp\":1,\"hashtag\":\"#CarlGranderson-NFL-NO-96\",\"search_first_name\":\"carl\",\"rotowire_id\":13784,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1540,\"age\":23,\"full_name\":\"Carl Granderson\",\"sportradar_id\":\"d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e\",\"pandascore_id\":null,\"yahoo_id\":32490,\"last_name\":\"Granderson\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Grant (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'5\\\"\",\"search_full_name\":\"carlgranderson\",\"birth_date\":\"1996-12-18\",\"espn_id\":3918310},\"3801\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vernon\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"3801\",\"birth_city\":null,\"fantasy_data_id\":18615,\"years_exp\":0,\"hashtag\":\"#VernonAdams-NFL-FA-0\",\"search_first_name\":\"vernon\",\"rotowire_id\":null,\"rotoworld_id\":11268,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Vernon Adams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Adams\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"vernonadams\",\"birth_date\":null,\"espn_id\":null},\"6768\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tua\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606591533243,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tagovailoa\",\"depth_chart_position\":\"QB\",\"player_id\":\"6768\",\"birth_city\":null,\"fantasy_data_id\":21677,\"years_exp\":0,\"hashtag\":\"#TuaTagovailoa-NFL-MIA-1\",\"search_first_name\":\"tua\",\"rotowire_id\":14465,\"rotoworld_id\":14839,\"active\":true,\"search_rank\":200,\"age\":22,\"full_name\":\"Tua Tagovailoa\",\"sportradar_id\":\"26ad9c27-de38-495e-913c-6fb2428e76d3\",\"pandascore_id\":null,\"yahoo_id\":32675,\"last_name\":\"Tagovailoa\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"St. Louis (HI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":\"Doubtful\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tuatagovailoa\",\"birth_date\":\"1998-03-02\",\"espn_id\":4241479},\"4758\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"veach\",\"depth_chart_position\":null,\"player_id\":\"4758\",\"birth_city\":null,\"fantasy_data_id\":19677,\"years_exp\":0,\"hashtag\":\"#BrettVeach-NFL-FA-0\",\"search_first_name\":\"brett\",\"rotowire_id\":null,\"rotoworld_id\":12986,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brett Veach\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Veach\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"brettveach\",\"birth_date\":null,\"espn_id\":null},\"2300\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fenner\",\"depth_chart_position\":null,\"player_id\":\"2300\",\"birth_city\":null,\"fantasy_data_id\":16752,\"years_exp\":3,\"hashtag\":\"#ChandlerFenner-NFL-FA-48\",\"search_first_name\":\"chandler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Chandler Fenner\",\"sportradar_id\":\"7779b1e6-2fb4-4eed-8ca0-f22aece9d19e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fenner\",\"metadata\":null,\"college\":\"Holy Cross\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chandlerfenner\",\"birth_date\":\"1990-07-06\",\"espn_id\":15549},\"3123\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1539627902839,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"3123\",\"birth_city\":null,\"fantasy_data_id\":17877,\"years_exp\":0,\"hashtag\":\"#MikeSmith-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":8337,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Smith\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikesmith\",\"birth_date\":null,\"espn_id\":null},\"7394\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jermiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693389697,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"braswell\",\"depth_chart_position\":null,\"player_id\":\"7394\",\"birth_city\":null,\"fantasy_data_id\":22379,\"years_exp\":0,\"hashtag\":\"#JermiahBraswell-NFL-FA-0\",\"search_first_name\":\"jermiah\",\"rotowire_id\":15164,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jermiah Braswell\",\"sportradar_id\":\"77ffce07-eb4f-4de1-b18c-a3bf09946a15\",\"pandascore_id\":null,\"yahoo_id\":33073,\"last_name\":\"Braswell\",\"metadata\":null,\"college\":\"Youngstown State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jermiahbraswell\",\"birth_date\":\"1997-05-15\",\"espn_id\":null},\"5326\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034425\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1576123553820,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":null,\"player_id\":\"5326\",\"birth_city\":null,\"fantasy_data_id\":20022,\"years_exp\":2,\"hashtag\":\"#JermaineKelly-NFL-FA-0\",\"search_first_name\":\"jermaine\",\"rotowire_id\":13001,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jermaine Kelly\",\"sportradar_id\":\"30c9d379-80f5-4d53-a05f-2aca8c208e8f\",\"pandascore_id\":null,\"yahoo_id\":31192,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747898,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jermainekelly\",\"birth_date\":\"1995-02-26\",\"espn_id\":3052169},\"5660\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034590\",\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1576013746142,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"herron\",\"depth_chart_position\":null,\"player_id\":\"5660\",\"birth_city\":null,\"fantasy_data_id\":20331,\"years_exp\":2,\"hashtag\":\"#FrankHerron-NFL-DET-75\",\"search_first_name\":\"frank\",\"rotowire_id\":13188,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1453,\"age\":26,\"full_name\":\"Frank Herron\",\"sportradar_id\":\"ef0a8abc-074e-4ed1-a053-846c3b1d9cc5\",\"pandascore_id\":null,\"yahoo_id\":31649,\"last_name\":\"Herron\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Memphis Central (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"frankherron\",\"birth_date\":\"1994-07-09\",\"espn_id\":3042746},\"3699\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1521067801549,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coe\",\"depth_chart_position\":null,\"player_id\":\"3699\",\"birth_city\":null,\"fantasy_data_id\":18504,\"years_exp\":3,\"hashtag\":\"#RodneyCoe-NFL-FA-99\",\"search_first_name\":\"rodney\",\"rotowire_id\":11369,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rodney Coe\",\"sportradar_id\":\"ebf4326a-f66f-46ed-9326-c8f07ca0f4a3\",\"pandascore_id\":null,\"yahoo_id\":29889,\"last_name\":\"Coe\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rodneycoe\",\"birth_date\":\"1993-05-18\",\"espn_id\":3039922},\"4746\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reid\",\"depth_chart_position\":null,\"player_id\":\"4746\",\"birth_city\":null,\"fantasy_data_id\":19664,\"years_exp\":2,\"hashtag\":\"#RyanReid-NFL-FA-35\",\"search_first_name\":\"ryan\",\"rotowire_id\":12283,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Reid\",\"sportradar_id\":\"84acc923-6e46-4525-8f0a-f4df3c3fc99e\",\"pandascore_id\":null,\"yahoo_id\":30896,\"last_name\":\"Reid\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ryanreid\",\"birth_date\":\"1994-05-25\",\"espn_id\":2978943},\"6766\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"berry\",\"depth_chart_position\":null,\"player_id\":\"6766\",\"birth_city\":null,\"fantasy_data_id\":17897,\"years_exp\":0,\"hashtag\":\"#AndrewBerry-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":11259,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Andrew Berry\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Berry\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"andrewberry\",\"birth_date\":null,\"espn_id\":null},\"3564\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032472\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1552525860652,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"madden\",\"depth_chart_position\":null,\"player_id\":\"3564\",\"birth_city\":null,\"fantasy_data_id\":18339,\"years_exp\":4,\"hashtag\":\"#TreMadden-NFL-FA-38\",\"search_first_name\":\"tre\",\"rotowire_id\":10938,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tre Madden\",\"sportradar_id\":\"538d0379-bf54-4df5-9564-ae33fcd551e1\",\"pandascore_id\":null,\"yahoo_id\":29821,\"last_name\":\"Madden\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":599008,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tremadden\",\"birth_date\":\"1993-08-16\",\"espn_id\":2577245},\"6283\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035633\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605660926555,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ballentine\",\"depth_chart_position\":\"DB\",\"player_id\":\"6283\",\"birth_city\":null,\"fantasy_data_id\":21021,\"years_exp\":1,\"hashtag\":\"#CoreyBallentine-NFL-NYJ-27\",\"search_first_name\":\"corey\",\"rotowire_id\":13795,\"rotoworld_id\":14153,\"active\":true,\"search_rank\":1637,\"age\":24,\"full_name\":\"Corey Ballentine\",\"sportradar_id\":\"e3a4104a-ceba-4df2-b265-70843ecf1fb0\",\"pandascore_id\":null,\"yahoo_id\":32012,\"last_name\":\"Ballentine\",\"metadata\":null,\"college\":\"Washburn\",\"high_school\":\"Shawnee Heights (KS)\",\"depth_chart_order\":1,\"stats_id\":1163952,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"coreyballentine\",\"birth_date\":\"1996-04-13\",\"espn_id\":4411769},\"2304\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031462\",\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1571180450562,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cunningham\",\"depth_chart_position\":null,\"player_id\":\"2304\",\"birth_city\":null,\"fantasy_data_id\":16759,\"years_exp\":6,\"hashtag\":\"#JeromeCunningham-NFL-FA-83\",\"search_first_name\":\"jerome\",\"rotowire_id\":9920,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jerome Cunningham\",\"sportradar_id\":\"2a1658c4-c9fd-4a98-b619-74ec35e30bf5\",\"pandascore_id\":null,\"yahoo_id\":28348,\"last_name\":\"Cunningham\",\"metadata\":null,\"college\":\"Southern Connecticut State\",\"high_school\":\"Crosby (CT)\",\"depth_chart_order\":null,\"stats_id\":512900,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jeromecunningham\",\"birth_date\":\"1991-05-25\",\"espn_id\":2476373},\"7188\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602624349685,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"LCB\",\"player_id\":\"7188\",\"birth_city\":null,\"fantasy_data_id\":22190,\"years_exp\":0,\"hashtag\":\"#TylerHall-NFL-ATL-44\",\"search_first_name\":\"tyler\",\"rotowire_id\":14999,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tyler Hall\",\"sportradar_id\":\"74761bca-f09c-4a06-8dd4-5f3cf2a2b897\",\"pandascore_id\":null,\"yahoo_id\":33058,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tylerhall\",\"birth_date\":\"1998-10-31\",\"espn_id\":4048718},\"4503\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033503\",\"first_name\":\"Arthur\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604198411496,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"maulet\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4503\",\"birth_city\":null,\"fantasy_data_id\":19375,\"years_exp\":3,\"hashtag\":\"#ArthurMaulet-NFL-NYJ-23\",\"search_first_name\":\"arthur\",\"rotowire_id\":12026,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1258,\"age\":27,\"full_name\":\"Arthur Maulet\",\"sportradar_id\":\"bf21bd83-9c97-4faf-97be-859f033848e2\",\"pandascore_id\":null,\"yahoo_id\":30415,\"last_name\":\"Maulet\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Bonnabel (LA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"arthurmaulet\",\"birth_date\":\"1993-07-13\",\"espn_id\":3916144},\"5168\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034551\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1595949029960,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chunn\",\"depth_chart_position\":\"RB\",\"player_id\":\"5168\",\"birth_city\":null,\"fantasy_data_id\":20122,\"years_exp\":2,\"hashtag\":\"#JordanChunn-NFL-FA-0\",\"search_first_name\":\"jordan\",\"rotowire_id\":12734,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1423,\"age\":25,\"full_name\":\"Jordan Chunn\",\"sportradar_id\":\"ddd1fbb3-4db8-4d77-b522-9efd938ec8c5\",\"pandascore_id\":null,\"yahoo_id\":31280,\"last_name\":\"Chunn\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":744162,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordanchunn\",\"birth_date\":\"1995-01-02\",\"espn_id\":3053732},\"4365\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"laufasa\",\"depth_chart_position\":null,\"player_id\":\"4365\",\"birth_city\":null,\"fantasy_data_id\":19222,\"years_exp\":2,\"hashtag\":\"#DarrinLaufasa-NFL-FA-44\",\"search_first_name\":\"darrin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Darrin Laufasa\",\"sportradar_id\":\"e1a1baa4-5604-4cbe-8c2b-92af5b44f9ca\",\"pandascore_id\":null,\"yahoo_id\":30580,\"last_name\":\"Laufasa\",\"metadata\":null,\"college\":\"UTEP\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741311,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"darrinlaufasa\",\"birth_date\":\"1995-05-06\",\"espn_id\":3042520},\"5054\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034778\",\"first_name\":\"Carlton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605675928137,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"CB\",\"player_id\":\"5054\",\"birth_city\":null,\"fantasy_data_id\":19892,\"years_exp\":2,\"hashtag\":\"#CarltonDavis-NFL-TB-24\",\"search_first_name\":\"carlton\",\"rotowire_id\":12531,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1328,\"age\":23,\"full_name\":\"Carlton Davis\",\"sportradar_id\":\"2df83b38-7b2b-4aea-91ee-bfc5974486a1\",\"pandascore_id\":null,\"yahoo_id\":31033,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Miami Norland (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"carltondavis\",\"birth_date\":\"1996-12-31\",\"espn_id\":3916923},\"2111\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeDe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lattimore\",\"depth_chart_position\":null,\"player_id\":\"2111\",\"birth_city\":null,\"fantasy_data_id\":16435,\"years_exp\":2,\"hashtag\":\"#DeDeLattimore-NFL-FA-91\",\"search_first_name\":\"dede\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"DeDe Lattimore\",\"sportradar_id\":\"09eec6e3-11e1-47c1-9fc7-c505978d0c18\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lattimore\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dedelattimore\",\"birth_date\":\"1991-01-30\",\"espn_id\":17072},\"4983\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034827\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606522827689,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4983\",\"birth_city\":null,\"fantasy_data_id\":19844,\"years_exp\":2,\"hashtag\":\"#DJMoore-NFL-CAR-12\",\"search_first_name\":\"dj\",\"rotowire_id\":12477,\"rotoworld_id\":null,\"active\":true,\"search_rank\":45,\"age\":23,\"full_name\":\"D.J. Moore\",\"sportradar_id\":\"d8202e6d-d03b-4cd1-a793-ff8fd39d9755\",\"pandascore_id\":null,\"yahoo_id\":30994,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Imhotep Institute Charter (PA)\",\"depth_chart_order\":1,\"stats_id\":877790,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"djmoore\",\"birth_date\":\"1997-04-14\",\"espn_id\":3915416},\"224\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1510681501133,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"goode\",\"depth_chart_position\":null,\"player_id\":\"224\",\"birth_city\":null,\"fantasy_data_id\":5633,\"years_exp\":13,\"hashtag\":\"#BrettGoode-NFL-FA-61\",\"search_first_name\":\"brett\",\"rotowire_id\":7010,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brett Goode\",\"sportradar_id\":\"c539cbe5-eecd-4890-ace8-ce93088f9a25\",\"pandascore_id\":null,\"yahoo_id\":9069,\"last_name\":\"Goode\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Northside (AR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brettgoode\",\"birth_date\":\"1984-11-02\",\"espn_id\":11229},\"3392\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032804\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1551930045673,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lasco\",\"depth_chart_position\":null,\"player_id\":\"3392\",\"birth_city\":null,\"fantasy_data_id\":18153,\"years_exp\":4,\"hashtag\":\"#DanielLasco-NFL-FA-36\",\"search_first_name\":\"daniel\",\"rotowire_id\":10997,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Daniel Lasco\",\"sportradar_id\":\"d57233b2-3d11-4405-b490-e33ec698f945\",\"pandascore_id\":null,\"yahoo_id\":29471,\"last_name\":\"Lasco\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607689,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"daniellasco\",\"birth_date\":\"1992-10-09\",\"espn_id\":2576873},\"6386\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035602\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603512953139,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bachman\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6386\",\"birth_city\":null,\"fantasy_data_id\":21294,\"years_exp\":1,\"hashtag\":\"#AlexBachman-NFL-NYG-80\",\"search_first_name\":\"alex\",\"rotowire_id\":13911,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Alex Bachman\",\"sportradar_id\":\"427038d8-ff50-4d6e-a088-4fdb8bc2f0e3\",\"pandascore_id\":null,\"yahoo_id\":32124,\"last_name\":\"Bachman\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Oaks Christian (CA)\",\"depth_chart_order\":4,\"stats_id\":884315,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alexbachman\",\"birth_date\":\"1996-05-29\",\"espn_id\":3919510},\"6076\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035591\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599411059969,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hollins\",\"depth_chart_position\":\"LILB\",\"player_id\":\"6076\",\"birth_city\":null,\"fantasy_data_id\":20808,\"years_exp\":1,\"hashtag\":\"#JustinHollins-NFL-LAR-58\",\"search_first_name\":\"justin\",\"rotowire_id\":13773,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1552,\"age\":24,\"full_name\":\"Justin Hollins\",\"sportradar_id\":\"210bfe87-1c9c-48c3-951c-81aef4b2c763\",\"pandascore_id\":null,\"yahoo_id\":31988,\"last_name\":\"Hollins\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Martin (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"justinhollins\",\"birth_date\":\"1996-01-15\",\"espn_id\":3122678},\"4084\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033283\",\"first_name\":\"Tyus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604766350532,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bowser\",\"depth_chart_position\":\"SAM\",\"player_id\":\"4084\",\"birth_city\":null,\"fantasy_data_id\":18930,\"years_exp\":3,\"hashtag\":\"#TyusBowser-NFL-BAL-54\",\"search_first_name\":\"tyus\",\"rotowire_id\":11961,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1134,\"age\":25,\"full_name\":\"Tyus Bowser\",\"sportradar_id\":\"b36539fa-de45-4cfd-90be-49d14149e64e\",\"pandascore_id\":null,\"yahoo_id\":30160,\"last_name\":\"Bowser\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"John Tyler (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tyusbowser\",\"birth_date\":\"1995-05-23\",\"espn_id\":3040037},\"5186\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034519\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1571826924861,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"5186\",\"birth_city\":null,\"fantasy_data_id\":20146,\"years_exp\":2,\"hashtag\":\"#DariusJackson-NFL-FA-40\",\"search_first_name\":\"darius\",\"rotowire_id\":12965,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darius Jackson\",\"sportradar_id\":\"3eb1e32e-3f96-4613-b142-78f748db3c7b\",\"pandascore_id\":null,\"yahoo_id\":31266,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dariusjackson\",\"birth_date\":\"1994-11-20\",\"espn_id\":3057530},\"4074\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033877\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600809022384,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hooker\",\"depth_chart_position\":null,\"player_id\":\"4074\",\"birth_city\":null,\"fantasy_data_id\":18920,\"years_exp\":3,\"hashtag\":\"#MalikHooker-NFL-IND-29\",\"search_first_name\":\"malik\",\"rotowire_id\":11695,\"rotoworld_id\":12156,\"active\":true,\"search_rank\":1127,\"age\":24,\"full_name\":\"Malik Hooker\",\"sportradar_id\":\"3cb26a5c-9c90-46ad-b539-e29ad6934e30\",\"pandascore_id\":null,\"yahoo_id\":30128,\"last_name\":\"Hooker\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"New Castle (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"malikhooker\",\"birth_date\":\"1996-04-02\",\"espn_id\":3121415},\"4556\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scearce\",\"depth_chart_position\":null,\"player_id\":\"4556\",\"birth_city\":null,\"fantasy_data_id\":19437,\"years_exp\":2,\"hashtag\":\"#AlexScearce-NFL-FA-45\",\"search_first_name\":\"alex\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Alex Scearce\",\"sportradar_id\":\"d69d384c-a7d4-4909-ba06-f491f3c4420f\",\"pandascore_id\":null,\"yahoo_id\":30726,\"last_name\":\"Scearce\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alexscearce\",\"birth_date\":null,\"espn_id\":3066097},\"4944\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Takoby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cofield\",\"depth_chart_position\":null,\"player_id\":\"4944\",\"birth_city\":null,\"fantasy_data_id\":17757,\"years_exp\":0,\"hashtag\":\"#TakobyCofield-NFL-FA-69\",\"search_first_name\":\"takoby\",\"rotowire_id\":10813,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Takoby Cofield\",\"sportradar_id\":\"026464dd-7cda-47bd-b082-de3f31d056b0\",\"pandascore_id\":null,\"yahoo_id\":29006,\"last_name\":\"Cofield\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"takobycofield\",\"birth_date\":\"1992-01-22\",\"espn_id\":null},\"2180\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"starr\",\"depth_chart_position\":null,\"player_id\":\"2180\",\"birth_city\":null,\"fantasy_data_id\":16544,\"years_exp\":6,\"hashtag\":\"#TylerStarr-NFL-FA-52\",\"search_first_name\":\"tyler\",\"rotowire_id\":9629,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tyler Starr\",\"sportradar_id\":\"01b9599a-c8b9-4c79-94db-34c271baf07a\",\"pandascore_id\":null,\"yahoo_id\":27783,\"last_name\":\"Starr\",\"metadata\":null,\"college\":\"South Dakota\",\"high_school\":\"George-Little Rock (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tylerstarr\",\"birth_date\":\"1991-01-25\",\"espn_id\":16856},\"1008\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"1008\",\"birth_city\":null,\"fantasy_data_id\":13590,\"years_exp\":10,\"hashtag\":\"#DonaldButler-NFL-FA-56\",\"search_first_name\":\"donald\",\"rotowire_id\":6611,\"rotoworld_id\":5883,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Donald Butler\",\"sportradar_id\":\"7a435b1f-e36c-486c-924d-a7d72d997991\",\"pandascore_id\":null,\"yahoo_id\":24054,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Del Campo (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"donaldbutler\",\"birth_date\":\"1988-10-17\",\"espn_id\":13265},\"5197\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034660\",\"first_name\":\"Rico\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1605049561246,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gafford\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5197\",\"birth_city\":null,\"fantasy_data_id\":20194,\"years_exp\":2,\"hashtag\":\"#RicoGafford-NFL-LV-10\",\"search_first_name\":\"rico\",\"rotowire_id\":13297,\"rotoworld_id\":null,\"active\":true,\"search_rank\":537,\"age\":24,\"full_name\":\"Rico Gafford\",\"sportradar_id\":\"f7365f88-4cd0-42e9-9e4e-7bade08e9e5b\",\"pandascore_id\":null,\"yahoo_id\":31607,\"last_name\":\"Gafford\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Des Moines East (IA)\",\"depth_chart_order\":2,\"stats_id\":944604,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ricogafford\",\"birth_date\":\"1996-05-23\",\"espn_id\":4048717},\"3188\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032759\",\"first_name\":\"Sheldon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606341002786,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"rankins\",\"depth_chart_position\":null,\"player_id\":\"3188\",\"birth_city\":null,\"fantasy_data_id\":17949,\"years_exp\":4,\"hashtag\":\"#SheldonRankins-NFL-NO-98\",\"search_first_name\":\"sheldon\",\"rotowire_id\":11112,\"rotoworld_id\":11321,\"active\":true,\"search_rank\":960,\"age\":26,\"full_name\":\"Sheldon Rankins\",\"sportradar_id\":\"3b1227f6-05c9-421f-a2c1-4c8f1368b80b\",\"pandascore_id\":null,\"yahoo_id\":29246,\"last_name\":\"Rankins\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Eastside (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sheldonrankins\",\"birth_date\":\"1994-04-02\",\"espn_id\":2970204},\"4385\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kalif\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"4385\",\"birth_city\":null,\"fantasy_data_id\":19242,\"years_exp\":2,\"hashtag\":\"#KalifPhillips-NFL-FA-34\",\"search_first_name\":\"kalif\",\"rotowire_id\":12345,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kalif Phillips\",\"sportradar_id\":\"6c94dde8-296a-4bc9-8c44-052a109dce92\",\"pandascore_id\":null,\"yahoo_id\":30618,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"North Carolina-Charlotte\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":784764,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kalifphillips\",\"birth_date\":\"1994-03-22\",\"espn_id\":3059488},\"2396\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032204\",\"first_name\":\"Chaz\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603929929813,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":\"LT\",\"player_id\":\"2396\",\"birth_city\":null,\"fantasy_data_id\":16852,\"years_exp\":5,\"hashtag\":\"#ChazGreen-NFL-IND-75\",\"search_first_name\":\"chaz\",\"rotowire_id\":10278,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chaz Green\",\"sportradar_id\":\"89c07ccf-8157-4246-8c83-898a81d2dc77\",\"pandascore_id\":null,\"yahoo_id\":28479,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Tampa Catholic (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chazgreen\",\"birth_date\":\"1992-04-08\",\"espn_id\":2516053},\"6699\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035645\",\"first_name\":\"Gunner\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605038414152,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"olszewski\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6699\",\"birth_city\":null,\"fantasy_data_id\":21601,\"years_exp\":1,\"hashtag\":\"#GunnerOlszewski-NFL-NE-80\",\"search_first_name\":\"gunner\",\"rotowire_id\":14318,\"rotoworld_id\":null,\"active\":true,\"search_rank\":259,\"age\":24,\"full_name\":\"Gunner Olszewski\",\"sportradar_id\":\"625a1777-dd9a-48c6-b512-c450b0914450\",\"pandascore_id\":null,\"yahoo_id\":32612,\"last_name\":\"Olszewski\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Bemidji State\",\"high_school\":\"Alvin (TX)\",\"depth_chart_order\":2,\"stats_id\":1168410,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gunnerolszewski\",\"birth_date\":\"1996-11-26\",\"espn_id\":4424106},\"7039\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604594432672,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7039\",\"birth_city\":null,\"fantasy_data_id\":21964,\"years_exp\":0,\"hashtag\":\"#CodyWhite-NFL-PIT-0\",\"search_first_name\":\"cody\",\"rotowire_id\":14495,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Cody White\",\"sportradar_id\":\"d25a19a7-7de6-4476-b42a-833c8c3cb208\",\"pandascore_id\":null,\"yahoo_id\":32948,\"last_name\":\"White\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Michigan State\",\"high_school\":\"Walled Lake Western (MI)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"codywhite\",\"birth_date\":\"1998-11-28\",\"espn_id\":4241983},\"4714\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"homer\",\"depth_chart_position\":null,\"player_id\":\"4714\",\"birth_city\":null,\"fantasy_data_id\":19621,\"years_exp\":2,\"hashtag\":\"#TevinHomer-NFL-FA-37\",\"search_first_name\":\"tevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tevin Homer\",\"sportradar_id\":\"345b3b4e-f0d9-4030-a9ec-7ae53b47f21b\",\"pandascore_id\":null,\"yahoo_id\":30842,\"last_name\":\"Homer\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tevinhomer\",\"birth_date\":\"1995-03-13\",\"espn_id\":3932122},\"76\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hatcher\",\"depth_chart_position\":null,\"player_id\":\"76\",\"birth_city\":null,\"fantasy_data_id\":2163,\"years_exp\":14,\"hashtag\":\"#JasonHatcher-NFL-FA-97\",\"search_first_name\":\"jason\",\"rotowire_id\":5029,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Jason Hatcher\",\"sportradar_id\":\"75f4e314-a25d-4833-b39e-02014853d7bb\",\"pandascore_id\":null,\"yahoo_id\":7841,\"last_name\":\"Hatcher\",\"metadata\":null,\"college\":\"Grambling\",\"high_school\":\"Jena (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jasonhatcher\",\"birth_date\":\"1982-07-13\",\"espn_id\":9678},\"2032\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fields\",\"depth_chart_position\":null,\"player_id\":\"2032\",\"birth_city\":null,\"fantasy_data_id\":16316,\"years_exp\":6,\"hashtag\":\"#CarlosFields-NFL-FA-50\",\"search_first_name\":\"carlos\",\"rotowire_id\":9903,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Carlos Fields\",\"sportradar_id\":\"1c54820d-aa78-494a-b83c-ca0726c76909\",\"pandascore_id\":null,\"yahoo_id\":28209,\"last_name\":\"Fields\",\"metadata\":null,\"college\":\"Winston-Salem\",\"high_school\":\"Northern Vance (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"carlosfields\",\"birth_date\":\"1990-10-03\",\"espn_id\":17389},\"6491\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035086\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1588630831740,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"choice\",\"depth_chart_position\":null,\"player_id\":\"6491\",\"birth_city\":null,\"fantasy_data_id\":21491,\"years_exp\":1,\"hashtag\":\"#AdamChoice-NFL-FA-0\",\"search_first_name\":\"adam\",\"rotowire_id\":14090,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Adam Choice\",\"sportradar_id\":\"1e85069d-9402-4bdb-8aa9-79e30713df43\",\"pandascore_id\":null,\"yahoo_id\":32332,\"last_name\":\"Choice\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":828750,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'9\\\"\",\"search_full_name\":\"adamchoice\",\"birth_date\":\"1995-11-30\",\"espn_id\":3122842},\"1084\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wade\",\"depth_chart_position\":null,\"player_id\":\"1084\",\"birth_city\":null,\"fantasy_data_id\":13909,\"years_exp\":8,\"hashtag\":\"#TrevinWade-NFL-FA-49\",\"search_first_name\":\"trevin\",\"rotowire_id\":8278,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Trevin Wade\",\"sportradar_id\":\"0609292a-7a10-4b61-a3ff-b7e997ffe4a4\",\"pandascore_id\":null,\"yahoo_id\":25955,\"last_name\":\"Wade\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Stony Point (TX)\",\"depth_chart_order\":null,\"stats_id\":381086,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"trevinwade\",\"birth_date\":\"1989-08-01\",\"espn_id\":15016},\"4625\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033686\",\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1556575858372,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dimick\",\"depth_chart_position\":null,\"player_id\":\"4625\",\"birth_city\":null,\"fantasy_data_id\":19519,\"years_exp\":3,\"hashtag\":\"#HunterDimick-NFL-FA-79\",\"search_first_name\":\"hunter\",\"rotowire_id\":12060,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Hunter Dimick\",\"sportradar_id\":\"0854bc61-cced-4ec9-84fe-726c822d6926\",\"pandascore_id\":null,\"yahoo_id\":30393,\"last_name\":\"Dimick\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651624,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"274\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hunterdimick\",\"birth_date\":\"1993-10-29\",\"espn_id\":2971636},\"5530\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1535493306660,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"berry\",\"depth_chart_position\":null,\"player_id\":\"5530\",\"birth_city\":null,\"fantasy_data_id\":20120,\"years_exp\":2,\"hashtag\":\"#EvanBerry-NFL-FA-89\",\"search_first_name\":\"evan\",\"rotowire_id\":13134,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Evan Berry\",\"sportradar_id\":\"8f12880d-0375-4b70-836b-c1e88bcb3515\",\"pandascore_id\":null,\"yahoo_id\":31450,\"last_name\":\"Berry\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":829985,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"evanberry\",\"birth_date\":\"1995-11-04\",\"espn_id\":3115343},\"7428\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"champion\",\"depth_chart_position\":null,\"player_id\":\"7428\",\"birth_city\":null,\"fantasy_data_id\":22408,\"years_exp\":0,\"hashtag\":\"#TommyChampion-NFL-SEA-79\",\"search_first_name\":\"tommy\",\"rotowire_id\":15118,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tommy Champion\",\"sportradar_id\":\"7483724a-dfce-4d6f-b499-481d37744fee\",\"pandascore_id\":null,\"yahoo_id\":33268,\"last_name\":\"Champion\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Copiah-Lincoln (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tommychampion\",\"birth_date\":\"1997-03-04\",\"espn_id\":4242246},\"4408\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newby\",\"depth_chart_position\":null,\"player_id\":\"4408\",\"birth_city\":null,\"fantasy_data_id\":19268,\"years_exp\":2,\"hashtag\":\"#TerrellNewby-NFL-FA-44\",\"search_first_name\":\"terrell\",\"rotowire_id\":12346,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Terrell Newby\",\"sportradar_id\":\"632e9d67-1dd0-4f62-8903-545306d3ceae\",\"pandascore_id\":null,\"yahoo_id\":30439,\"last_name\":\"Newby\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728308,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'9\\\"\",\"search_full_name\":\"terrellnewby\",\"birth_date\":\"1995-07-25\",\"espn_id\":3040496},\"7309\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Siaosi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359909,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mariner\",\"depth_chart_position\":null,\"player_id\":\"7309\",\"birth_city\":null,\"fantasy_data_id\":22301,\"years_exp\":0,\"hashtag\":\"#SiaosiMariner-NFL-FA-0\",\"search_first_name\":\"siaosi\",\"rotowire_id\":14863,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Siaosi Mariner\",\"sportradar_id\":\"7b4091b3-fab5-43e4-93cb-bd2c8eab17c0\",\"pandascore_id\":null,\"yahoo_id\":33353,\"last_name\":\"Mariner\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"siaosimariner\",\"birth_date\":\"1997-01-25\",\"espn_id\":null},\"5263\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034291\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1571715017013,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"litton\",\"depth_chart_position\":\"QB\",\"player_id\":\"5263\",\"birth_city\":null,\"fantasy_data_id\":20305,\"years_exp\":2,\"hashtag\":\"#ChaseLitton-NFL-FA-14\",\"search_first_name\":\"chase\",\"rotowire_id\":12638,\"rotoworld_id\":13388,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chase Litton\",\"sportradar_id\":\"e1767e07-8ccd-479e-b356-b7024084518f\",\"pandascore_id\":null,\"yahoo_id\":31490,\"last_name\":\"Litton\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":868034,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chaselitton\",\"birth_date\":\"1995-10-05\",\"espn_id\":3931782},\"2055\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031334\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601860542433,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"verrett\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2055\",\"birth_city\":null,\"fantasy_data_id\":16353,\"years_exp\":6,\"hashtag\":\"#JasonVerrett-NFL-SF-22\",\"search_first_name\":\"jason\",\"rotowire_id\":9330,\"rotoworld_id\":9439,\"active\":true,\"search_rank\":811,\"age\":29,\"full_name\":\"Jason Verrett\",\"sportradar_id\":\"13112f4f-03c9-432c-a033-454870cda46b\",\"pandascore_id\":null,\"yahoo_id\":27553,\"last_name\":\"Verrett\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Rodriguez (CA)\",\"depth_chart_order\":1,\"stats_id\":592200,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jasonverrett\",\"birth_date\":\"1991-06-18\",\"espn_id\":16726},\"2765\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kip\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2765\",\"birth_city\":null,\"fantasy_data_id\":17233,\"years_exp\":0,\"hashtag\":\"#KipSmith-NFL-FA-6\",\"search_first_name\":\"kip\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kip Smith\",\"sportradar_id\":\"f8f0f8df-6efc-4165-968f-f1292add7c96\",\"pandascore_id\":null,\"yahoo_id\":28657,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kipsmith\",\"birth_date\":\"1992-06-04\",\"espn_id\":2510870},\"3417\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032820\",\"first_name\":\"Terrance\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1565573134797,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"3417\",\"birth_city\":null,\"fantasy_data_id\":18180,\"years_exp\":4,\"hashtag\":\"#TerranceSmith-NFL-ARI-6\",\"search_first_name\":\"terrance\",\"rotowire_id\":11179,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Terrance Smith\",\"sportradar_id\":\"dc447507-2380-494c-96c9-e0edb2679a3c\",\"pandascore_id\":null,\"yahoo_id\":29885,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Southwest DeKalb (GA)\",\"depth_chart_order\":null,\"stats_id\":595939,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terrancesmith\",\"birth_date\":\"1993-05-03\",\"espn_id\":2576809},\"566\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stevie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"566\",\"birth_city\":null,\"fantasy_data_id\":11227,\"years_exp\":5,\"hashtag\":\"#StevieBrown-NFL-FA-37\",\"search_first_name\":\"stevie\",\"rotowire_id\":6826,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Stevie Brown\",\"sportradar_id\":\"5cc16769-2495-4aca-b2d8-22f999238846\",\"pandascore_id\":null,\"yahoo_id\":24227,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"5'11\\\"\",\"search_full_name\":\"steviebrown\",\"birth_date\":\"1987-07-17\",\"espn_id\":13321},\"3970\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fox\",\"depth_chart_position\":null,\"player_id\":\"3970\",\"birth_city\":null,\"fantasy_data_id\":18804,\"years_exp\":0,\"hashtag\":\"#JohnFox-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":8344,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Fox\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fox\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johnfox\",\"birth_date\":null,\"espn_id\":null},\"5133\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034439\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605589522177,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"conklin\",\"depth_chart_position\":\"TE\",\"player_id\":\"5133\",\"birth_city\":null,\"fantasy_data_id\":20069,\"years_exp\":2,\"hashtag\":\"#TylerConklin-NFL-MIN-83\",\"search_first_name\":\"tyler\",\"rotowire_id\":12809,\"rotoworld_id\":null,\"active\":true,\"search_rank\":455,\"age\":25,\"full_name\":\"Tyler Conklin\",\"sportradar_id\":\"f0d17dfa-ebf3-416c-a8d2-c6bc30675103\",\"pandascore_id\":null,\"yahoo_id\":31220,\"last_name\":\"Conklin\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"L'Anse Creuse North (MI)\",\"depth_chart_order\":1,\"stats_id\":834990,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerconklin\",\"birth_date\":\"1995-07-30\",\"espn_id\":3122920},\"3993\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pep\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"3993\",\"birth_city\":null,\"fantasy_data_id\":18830,\"years_exp\":0,\"hashtag\":\"#PepHamilton-NFL-FA-0\",\"search_first_name\":\"pep\",\"rotowire_id\":null,\"rotoworld_id\":9334,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Pep Hamilton\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"pephamilton\",\"birth_date\":null,\"espn_id\":null},\"6312\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035511\",\"first_name\":\"Myquon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stout\",\"depth_chart_position\":null,\"player_id\":\"6312\",\"birth_city\":null,\"fantasy_data_id\":21212,\"years_exp\":1,\"hashtag\":\"#MyquonStout-NFL-FA-62\",\"search_first_name\":\"myquon\",\"rotowire_id\":14229,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Myquon Stout\",\"sportradar_id\":\"60542ef3-f053-4347-8906-ce698f5c434b\",\"pandascore_id\":null,\"yahoo_id\":32534,\"last_name\":\"Stout\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'1\\\"\",\"search_full_name\":\"myquonstout\",\"birth_date\":\"1996-02-22\",\"espn_id\":3123681},\"571\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027864\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathews\",\"depth_chart_position\":null,\"player_id\":\"571\",\"birth_city\":null,\"fantasy_data_id\":11256,\"years_exp\":10,\"hashtag\":\"#RyanMathews-NFL-FA-24\",\"search_first_name\":\"ryan\",\"rotowire_id\":6449,\"rotoworld_id\":5603,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ryan Mathews\",\"sportradar_id\":\"55200cbf-e475-44fa-a875-a51998c20457\",\"pandascore_id\":null,\"yahoo_id\":23987,\"last_name\":\"Mathews\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"West Bakersfield (CA)\",\"depth_chart_order\":null,\"stats_id\":406247,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ryanmathews\",\"birth_date\":\"1987-10-10\",\"espn_id\":13204},\"324\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1510153201242,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"winston\",\"depth_chart_position\":null,\"player_id\":\"324\",\"birth_city\":null,\"fantasy_data_id\":7998,\"years_exp\":14,\"hashtag\":\"#EricWinston-NFL-FA-73\",\"search_first_name\":\"eric\",\"rotowire_id\":5000,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Eric Winston\",\"sportradar_id\":\"979f7f83-00e8-4ec8-9420-9e5a53f0b406\",\"pandascore_id\":null,\"yahoo_id\":7815,\"last_name\":\"Winston\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Lee (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'7\\\"\",\"search_full_name\":\"ericwinston\",\"birth_date\":\"1983-11-17\",\"espn_id\":9652},\"3903\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Warren\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gatewood\",\"depth_chart_position\":null,\"player_id\":\"3903\",\"birth_city\":null,\"fantasy_data_id\":18729,\"years_exp\":0,\"hashtag\":\"#WarrenGatewood-NFL-FA-26\",\"search_first_name\":\"warren\",\"rotowire_id\":11605,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Warren Gatewood\",\"sportradar_id\":\"0a506089-c6c1-4179-b407-a71578eca775\",\"pandascore_id\":null,\"yahoo_id\":30033,\"last_name\":\"Gatewood\",\"metadata\":null,\"college\":\"Alcorn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"6'0\\\"\",\"search_full_name\":\"warrengatewood\",\"birth_date\":\"1994-03-30\",\"espn_id\":2988562},\"2337\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032261\",\"first_name\":\"Malcom\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605909603308,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"NT\",\"player_id\":\"2337\",\"birth_city\":null,\"fantasy_data_id\":16793,\"years_exp\":5,\"hashtag\":\"#MalcomBrown-NFL-NO-90\",\"search_first_name\":\"malcom\",\"rotowire_id\":10058,\"rotoworld_id\":10313,\"active\":true,\"search_rank\":860,\"age\":26,\"full_name\":\"Malcom Brown\",\"sportradar_id\":\"7f911008-146b-43e9-a292-9ad90c621087\",\"pandascore_id\":null,\"yahoo_id\":28420,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Brenham (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malcombrown\",\"birth_date\":\"1994-02-02\",\"espn_id\":2971698},\"1632\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deveron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carr\",\"depth_chart_position\":null,\"player_id\":\"1632\",\"birth_city\":null,\"fantasy_data_id\":15356,\"years_exp\":2,\"hashtag\":\"#DeveronCarr-NFL-FA-1\",\"search_first_name\":\"deveron\",\"rotowire_id\":9163,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Deveron Carr\",\"sportradar_id\":\"815a511f-40d9-4e6a-b178-54aedc1e0420\",\"pandascore_id\":null,\"yahoo_id\":27030,\"last_name\":\"Carr\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deveroncarr\",\"birth_date\":\"1990-08-10\",\"espn_id\":16254},\"2520\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"debose\",\"depth_chart_position\":null,\"player_id\":\"2520\",\"birth_city\":null,\"fantasy_data_id\":16980,\"years_exp\":2,\"hashtag\":\"#AndreDebose-NFL-FA-9\",\"search_first_name\":\"andre\",\"rotowire_id\":10491,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Andre Debose\",\"sportradar_id\":\"004c3d40-9542-4676-87d6-efbedcc11d7f\",\"pandascore_id\":null,\"yahoo_id\":28609,\"last_name\":\"Debose\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":508874,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andredebose\",\"birth_date\":\"1990-09-12\",\"espn_id\":2447736},\"3106\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerrod\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3106\",\"birth_city\":null,\"fantasy_data_id\":17857,\"years_exp\":1,\"hashtag\":\"#JerrodJohnson-NFL-FA-0\",\"search_first_name\":\"jerrod\",\"rotowire_id\":7646,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jerrod Johnson\",\"sportradar_id\":\"38ac7135-b58b-4e2a-befc-668fb4fd58ac\",\"pandascore_id\":null,\"yahoo_id\":25046,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":333843,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jerrodjohnson\",\"birth_date\":\"1988-07-12\",\"espn_id\":14275},\"6791\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605836114828,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"6791\",\"birth_city\":null,\"fantasy_data_id\":22052,\"years_exp\":0,\"hashtag\":\"#CJHenderson-NFL-JAX-23\",\"search_first_name\":\"cj\",\"rotowire_id\":14367,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1887,\"age\":22,\"full_name\":\"C.J. Henderson\",\"sportradar_id\":\"afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9\",\"pandascore_id\":null,\"yahoo_id\":32679,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Columbus (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cjhenderson\",\"birth_date\":\"1998-09-30\",\"espn_id\":4240596},\"7040\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599342357659,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"weaver\",\"depth_chart_position\":null,\"player_id\":\"7040\",\"birth_city\":null,\"fantasy_data_id\":22002,\"years_exp\":0,\"hashtag\":\"#EvanWeaver-NFL-ARI-50\",\"search_first_name\":\"evan\",\"rotowire_id\":14752,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1875,\"age\":22,\"full_name\":\"Evan Weaver\",\"sportradar_id\":\"41dabf34-2055-4420-8aef-c222d7df48e6\",\"pandascore_id\":null,\"yahoo_id\":32872,\"last_name\":\"Weaver\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Gonzaga Prep (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"evanweaver\",\"birth_date\":\"1998-08-11\",\"espn_id\":4035875},\"730\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027325\",\"first_name\":\"LeGarrette\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1571261755160,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blount\",\"depth_chart_position\":null,\"player_id\":\"730\",\"birth_city\":null,\"fantasy_data_id\":12296,\"years_exp\":10,\"hashtag\":\"#LeGarretteBlount-NFL-FA-29\",\"search_first_name\":\"legarrette\",\"rotowire_id\":6482,\"rotoworld_id\":5854,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"LeGarrette Blount\",\"sportradar_id\":\"f5d20030-d934-45e3-8282-e34c6c83ad84\",\"pandascore_id\":null,\"yahoo_id\":24318,\"last_name\":\"Blount\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Taylor (FL)\",\"depth_chart_order\":null,\"stats_id\":450778,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"legarretteblount\",\"birth_date\":\"1986-12-05\",\"espn_id\":13213},\"4307\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alek\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1525729201052,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"torgersen\",\"depth_chart_position\":null,\"player_id\":\"4307\",\"birth_city\":null,\"fantasy_data_id\":19156,\"years_exp\":2,\"hashtag\":\"#AlekTorgersen-NFL-FA-5\",\"search_first_name\":\"alek\",\"rotowire_id\":12488,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Alek Torgersen\",\"sportradar_id\":\"759a8d3b-5697-4be4-9369-8940b44553bc\",\"pandascore_id\":null,\"yahoo_id\":30466,\"last_name\":\"Torgersen\",\"metadata\":null,\"college\":\"Pennsylvania\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":784990,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alektorgersen\",\"birth_date\":\"1995-01-13\",\"espn_id\":3049779},\"4936\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Skyler\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"4936\",\"birth_city\":null,\"fantasy_data_id\":19574,\"years_exp\":1,\"hashtag\":\"#SkylerHoward-NFL-SEA-0\",\"search_first_name\":\"skyler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Skyler Howard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30758,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823069,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"skylerhoward\",\"birth_date\":\"1994-11-06\",\"espn_id\":null},\"2310\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032053\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602868246391,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scherff\",\"depth_chart_position\":\"RG\",\"player_id\":\"2310\",\"birth_city\":null,\"fantasy_data_id\":16766,\"years_exp\":5,\"hashtag\":\"#BrandonScherff-NFL-WAS-75\",\"search_first_name\":\"brandon\",\"rotowire_id\":10257,\"rotoworld_id\":10422,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Scherff\",\"sportradar_id\":\"9aac7466-6718-4c40-9431-e51a3bfa0ab0\",\"pandascore_id\":null,\"yahoo_id\":28393,\"last_name\":\"Scherff\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Denison (IA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonscherff\",\"birth_date\":\"1991-12-26\",\"espn_id\":2511708},\"6530\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035014\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1597191613185,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mclaurin\",\"depth_chart_position\":\"FS\",\"player_id\":\"6530\",\"birth_city\":null,\"fantasy_data_id\":21454,\"years_exp\":1,\"hashtag\":\"#MarkMcLaurin-NFL-FA-0\",\"search_first_name\":\"mark\",\"rotowire_id\":13875,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1739,\"age\":23,\"full_name\":\"Mark McLaurin\",\"sportradar_id\":\"328dd5c5-51e1-4554-813d-b264098b061b\",\"pandascore_id\":null,\"yahoo_id\":32239,\"last_name\":\"McLaurin\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"markmclaurin\",\"birth_date\":\"1997-04-11\",\"espn_id\":3917286},\"6782\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604968829453,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6782\",\"birth_city\":null,\"fantasy_data_id\":22092,\"years_exp\":0,\"hashtag\":\"#ChaseYoung-NFL-WAS-99\",\"search_first_name\":\"chase\",\"rotowire_id\":14452,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1920,\"age\":21,\"full_name\":\"Chase Young\",\"sportradar_id\":\"9947409c-4a34-45f5-99a1-aa6daa13c430\",\"pandascore_id\":null,\"yahoo_id\":32672,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chaseyoung\",\"birth_date\":\"1999-04-14\",\"espn_id\":4241986},\"3764\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032637\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603652409292,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"FS\",\"player_id\":\"3764\",\"birth_city\":null,\"fantasy_data_id\":18576,\"years_exp\":4,\"hashtag\":\"#AndrewAdams-NFL-TB-26\",\"search_first_name\":\"andrew\",\"rotowire_id\":11527,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1097,\"age\":28,\"full_name\":\"Andrew Adams\",\"sportradar_id\":\"23557a45-6dc7-43c8-a4c6-f53ae72ff660\",\"pandascore_id\":null,\"yahoo_id\":29841,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Woodward Academy (GA)\",\"depth_chart_order\":2,\"stats_id\":606570,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"andrewadams\",\"birth_date\":\"1992-10-28\",\"espn_id\":2576599},\"1662\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029942\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1508887861656,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burley\",\"depth_chart_position\":null,\"player_id\":\"1662\",\"birth_city\":null,\"fantasy_data_id\":15437,\"years_exp\":7,\"hashtag\":\"#MarcusBurley-NFL-FA-20\",\"search_first_name\":\"marcus\",\"rotowire_id\":9162,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Marcus Burley\",\"sportradar_id\":\"a486fc4b-e475-4ff2-b22a-f454c266819a\",\"pandascore_id\":null,\"yahoo_id\":26962,\"last_name\":\"Burley\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"Highland Springs (VA)\",\"depth_chart_order\":null,\"stats_id\":466694,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marcusburley\",\"birth_date\":\"1990-07-16\",\"espn_id\":16131},\"6679\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035579\",\"first_name\":\"Tuzar\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577750725359,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"skipper\",\"depth_chart_position\":null,\"player_id\":\"6679\",\"birth_city\":null,\"fantasy_data_id\":21578,\"years_exp\":1,\"hashtag\":\"#TuzarSkipper-NFL-TEN-59\",\"search_first_name\":\"tuzar\",\"rotowire_id\":14293,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1763,\"age\":25,\"full_name\":\"Tuzar Skipper\",\"sportradar_id\":\"8471f3e4-b507-4554-afbb-df333694360b\",\"pandascore_id\":null,\"yahoo_id\":32582,\"last_name\":\"Skipper\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Toledo\",\"high_school\":\"Norwich Academy (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tuzarskipper\",\"birth_date\":\"1995-06-05\",\"espn_id\":4039521},\"7275\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodworth\",\"depth_chart_position\":null,\"player_id\":\"7275\",\"birth_city\":null,\"fantasy_data_id\":22272,\"years_exp\":0,\"hashtag\":\"#ElexWoodworth-NFL-FA-0\",\"search_first_name\":\"elex\",\"rotowire_id\":14856,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Elex Woodworth\",\"sportradar_id\":\"6405311e-a6c7-4c58-a647-63e22c449f0f\",\"pandascore_id\":null,\"yahoo_id\":33169,\"last_name\":\"Woodworth\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'4\\\"\",\"search_full_name\":\"elexwoodworth\",\"birth_date\":\"1997-03-16\",\"espn_id\":null},\"4984\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034857\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606496103893,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"QB\",\"player_id\":\"4984\",\"birth_city\":null,\"fantasy_data_id\":19801,\"years_exp\":2,\"hashtag\":\"#JoshAllen-NFL-BUF-17\",\"search_first_name\":\"josh\",\"rotowire_id\":12483,\"rotoworld_id\":null,\"active\":true,\"search_rank\":97,\"age\":24,\"full_name\":\"Josh Allen\",\"sportradar_id\":\"3069db07-aa43-4503-ab11-2ae5c0002721\",\"pandascore_id\":null,\"yahoo_id\":30977,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Firebaugh (CA)\",\"depth_chart_order\":1,\"stats_id\":868199,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshallen\",\"birth_date\":\"1996-05-21\",\"espn_id\":3918298},\"4737\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simone\",\"depth_chart_position\":null,\"player_id\":\"4737\",\"birth_city\":null,\"fantasy_data_id\":19653,\"years_exp\":2,\"hashtag\":\"#JordanSimone-NFL-FA-37\",\"search_first_name\":\"jordan\",\"rotowire_id\":12369,\"rotoworld_id\":12967,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jordan Simone\",\"sportradar_id\":\"5b579429-94f8-4b65-9679-6ca32ce0febc\",\"pandascore_id\":null,\"yahoo_id\":30885,\"last_name\":\"Simone\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608141,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordansimone\",\"birth_date\":\"1992-07-21\",\"espn_id\":2578440},\"2612\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031895\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1564810217888,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"2612\",\"birth_city\":null,\"fantasy_data_id\":17080,\"years_exp\":5,\"hashtag\":\"#RonaldMartin-NFL-FA-32\",\"search_first_name\":\"ronald\",\"rotowire_id\":10665,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ronald Martin\",\"sportradar_id\":\"72755454-8cf9-446f-80d5-d97e4fc29fa3\",\"pandascore_id\":null,\"yahoo_id\":28712,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"White Castle (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ronaldmartin\",\"birth_date\":\"1993-02-26\",\"espn_id\":2577293},\"161\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030251\",\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1580851205764,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"horton\",\"depth_chart_position\":\"RDE\",\"player_id\":\"161\",\"birth_city\":null,\"fantasy_data_id\":4175,\"years_exp\":7,\"hashtag\":\"#WesHorton-NFL-FA-96\",\"search_first_name\":\"wes\",\"rotowire_id\":9079,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Wes Horton\",\"sportradar_id\":\"6b49d038-966e-40b9-bb1e-fb4e94543a95\",\"pandascore_id\":null,\"yahoo_id\":27093,\"last_name\":\"Horton\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Notre Dame (CA)\",\"depth_chart_order\":3,\"stats_id\":459334,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"weshorton\",\"birth_date\":\"1990-01-18\",\"espn_id\":16431},\"7048\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Benny\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1587932456773,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lemay\",\"depth_chart_position\":null,\"player_id\":\"7048\",\"birth_city\":null,\"fantasy_data_id\":21789,\"years_exp\":0,\"hashtag\":\"#BennyLeMay-NFL-CLE-40\",\"search_first_name\":\"benny\",\"rotowire_id\":14532,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1783,\"age\":22,\"full_name\":\"Benny LeMay\",\"sportradar_id\":\"46cf23c5-7096-4f18-a3d8-59f0befc95ff\",\"pandascore_id\":null,\"yahoo_id\":33309,\"last_name\":\"LeMay\",\"metadata\":null,\"college\":\"North Carolina-Charlotte\",\"high_school\":\"Butler (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"5'9\\\"\",\"search_full_name\":\"bennylemay\",\"birth_date\":\"1997-10-18\",\"espn_id\":4045702},\"618\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arrelious\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1519164902408,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"benn\",\"depth_chart_position\":null,\"player_id\":\"618\",\"birth_city\":null,\"fantasy_data_id\":11501,\"years_exp\":10,\"hashtag\":\"#ArreliousBenn-NFL-FA-17\",\"search_first_name\":\"arrelious\",\"rotowire_id\":6447,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Arrelious Benn\",\"sportradar_id\":\"8de6e793-6b06-41c1-91eb-ed0682455cd6\",\"pandascore_id\":null,\"yahoo_id\":24014,\"last_name\":\"Benn\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":381408,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"arreliousbenn\",\"birth_date\":\"1988-09-08\",\"espn_id\":13218},\"455\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026986\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1569278135566,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crabtree\",\"depth_chart_position\":null,\"player_id\":\"455\",\"birth_city\":null,\"fantasy_data_id\":9331,\"years_exp\":11,\"hashtag\":\"#MichaelCrabtree-NFL-FA-15\",\"search_first_name\":\"michael\",\"rotowire_id\":5961,\"rotoworld_id\":5135,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Michael Crabtree\",\"sportradar_id\":\"fe767946-236d-4c04-9c59-5e3edd51acfe\",\"pandascore_id\":null,\"yahoo_id\":9274,\"last_name\":\"Crabtree\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Carter (TX)\",\"depth_chart_order\":null,\"stats_id\":324799,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelcrabtree\",\"birth_date\":\"1987-09-14\",\"espn_id\":12563},\"3017\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031893\",\"first_name\":\"Jesse\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606421759477,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"RT\",\"player_id\":\"3017\",\"birth_city\":null,\"fantasy_data_id\":17566,\"years_exp\":5,\"hashtag\":\"#JesseDavis-NFL-MIA-77\",\"search_first_name\":\"jesse\",\"rotowire_id\":10802,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jesse Davis\",\"sportradar_id\":\"d4b7a6b6-9ad3-4bc9-b781-dc09e9a5ba01\",\"pandascore_id\":null,\"yahoo_id\":28709,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Asotin (WA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jessedavis\",\"birth_date\":\"1991-09-15\",\"espn_id\":2517316},\"4674\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"liggins\",\"depth_chart_position\":null,\"player_id\":\"4674\",\"birth_city\":null,\"fantasy_data_id\":19575,\"years_exp\":2,\"hashtag\":\"#JeremyLiggins-NFL-FA-76\",\"search_first_name\":\"jeremy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeremy Liggins\",\"sportradar_id\":\"7d296cd8-eff0-4ac0-9cca-167c5526aac4\",\"pandascore_id\":null,\"yahoo_id\":30759,\"last_name\":\"Liggins\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremyliggins\",\"birth_date\":\"1993-03-31\",\"espn_id\":3115459},\"4656\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033731\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567109442144,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sullivan\",\"depth_chart_position\":null,\"player_id\":\"4656\",\"birth_city\":null,\"fantasy_data_id\":19554,\"years_exp\":3,\"hashtag\":\"#TreSullivan-NFL-FA-37\",\"search_first_name\":\"tre\",\"rotowire_id\":12407,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tre Sullivan\",\"sportradar_id\":\"5cd06df7-8ae9-4b20-b710-f07e39930cfa\",\"pandascore_id\":null,\"yahoo_id\":30713,\"last_name\":\"Sullivan\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1050850,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tresullivan\",\"birth_date\":\"1993-11-01\",\"espn_id\":3957450},\"3510\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"3510\",\"birth_city\":null,\"fantasy_data_id\":18276,\"years_exp\":4,\"hashtag\":\"#RonThompson-NFL-FA-0\",\"search_first_name\":\"ron\",\"rotowire_id\":10958,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ron Thompson\",\"sportradar_id\":\"a01aeeb0-f0bf-4652-914a-2a62cff1c3cf\",\"pandascore_id\":null,\"yahoo_id\":29613,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ronthompson\",\"birth_date\":\"1993-08-02\",\"espn_id\":2970420},\"4379\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Geoff\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"4379\",\"birth_city\":null,\"fantasy_data_id\":19236,\"years_exp\":3,\"hashtag\":\"#GeoffGray-NFL-FA-79\",\"search_first_name\":\"geoff\",\"rotowire_id\":12472,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Geoff Gray\",\"sportradar_id\":\"2a0a187c-095a-4a8d-b967-a2cba32f2278\",\"pandascore_id\":null,\"yahoo_id\":30612,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Manitoba\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'5\\\"\",\"search_full_name\":\"geoffgray\",\"birth_date\":\"1994-11-08\",\"espn_id\":4081129},\"3606\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Amir\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carlisle\",\"depth_chart_position\":null,\"player_id\":\"3606\",\"birth_city\":null,\"fantasy_data_id\":18393,\"years_exp\":0,\"hashtag\":\"#AmirCarlisle-NFL-FA-81\",\"search_first_name\":\"amir\",\"rotowire_id\":11288,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Amir Carlisle\",\"sportradar_id\":\"e4a49441-6f2e-4762-b9d0-a619dc244179\",\"pandascore_id\":null,\"yahoo_id\":29567,\"last_name\":\"Carlisle\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'10\\\"\",\"search_full_name\":\"amircarlisle\",\"birth_date\":\"1992-09-24\",\"espn_id\":2577257},\"4854\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034054\",\"first_name\":\"River\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605471012353,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cracraft\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4854\",\"birth_city\":null,\"fantasy_data_id\":19755,\"years_exp\":3,\"hashtag\":\"#RiverCracraft-NFL-SF-86\",\"search_first_name\":\"river\",\"rotowire_id\":12447,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1285,\"age\":26,\"full_name\":\"River Cracraft\",\"sportradar_id\":\"6124c4d4-337b-4926-b3f8-d2feb1c16fa9\",\"pandascore_id\":null,\"yahoo_id\":30955,\"last_name\":\"Cracraft\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Santa Margarita Catholic (CA)\",\"depth_chart_order\":2,\"stats_id\":749681,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rivercracraft\",\"birth_date\":\"1994-11-01\",\"espn_id\":3052056},\"5035\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034818\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599599441559,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nnadi\",\"depth_chart_position\":\"RDT\",\"player_id\":\"5035\",\"birth_city\":null,\"fantasy_data_id\":19880,\"years_exp\":2,\"hashtag\":\"#DerrickNnadi-NFL-KC-91\",\"search_first_name\":\"derrick\",\"rotowire_id\":12971,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1318,\"age\":24,\"full_name\":\"Derrick Nnadi\",\"sportradar_id\":\"a1182eb3-26cb-4d34-b29a-df673973f08b\",\"pandascore_id\":null,\"yahoo_id\":31045,\"last_name\":\"Nnadi\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Ocean Lakes (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'1\\\"\",\"search_full_name\":\"derricknnadi\",\"birth_date\":\"1996-05-09\",\"espn_id\":3122930},\"832\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whalen\",\"depth_chart_position\":null,\"player_id\":\"832\",\"birth_city\":null,\"fantasy_data_id\":12857,\"years_exp\":3,\"hashtag\":\"#RyanWhalen-NFL-FA-81\",\"search_first_name\":\"ryan\",\"rotowire_id\":7411,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ryan Whalen\",\"sportradar_id\":\"4a99b4bf-e03e-4253-8b9b-c070ef796daf\",\"pandascore_id\":null,\"yahoo_id\":24954,\"last_name\":\"Whalen\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryanwhalen\",\"birth_date\":\"1989-07-26\",\"espn_id\":14131},\"6472\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035419\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1588817454713,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"6472\",\"birth_city\":null,\"fantasy_data_id\":21450,\"years_exp\":1,\"hashtag\":\"#JustinPhillips-NFL-WAS-56\",\"search_first_name\":\"justin\",\"rotowire_id\":13903,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1738,\"age\":25,\"full_name\":\"Justin Phillips\",\"sportradar_id\":\"5ce0fd7f-bb8f-4d0b-a995-1473e148d45b\",\"pandascore_id\":null,\"yahoo_id\":32204,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Pearland (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justinphillips\",\"birth_date\":\"1995-10-10\",\"espn_id\":3122441},\"2231\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1520357401429,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mason\",\"depth_chart_position\":null,\"player_id\":\"2231\",\"birth_city\":null,\"fantasy_data_id\":16626,\"years_exp\":6,\"hashtag\":\"#TreMason-NFL-FA-27\",\"search_first_name\":\"tre\",\"rotowire_id\":9291,\"rotoworld_id\":9318,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tre Mason\",\"sportradar_id\":\"70d479ee-4786-46d9-8d02-2cf9c4c6fd04\",\"pandascore_id\":null,\"yahoo_id\":27603,\"last_name\":\"Mason\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Park Vista (FL)\",\"depth_chart_order\":null,\"stats_id\":593291,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'8\\\"\",\"search_full_name\":\"tremason\",\"birth_date\":\"1993-08-06\",\"espn_id\":16784},\"5737\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034727\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1567539024257,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"5737\",\"birth_city\":null,\"fantasy_data_id\":20633,\"years_exp\":2,\"hashtag\":\"#DrewScott-NFL-FA-0\",\"search_first_name\":\"drew\",\"rotowire_id\":12703,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Drew Scott\",\"sportradar_id\":\"9e324b1e-b03b-44cc-83b5-1d483b4051e8\",\"pandascore_id\":null,\"yahoo_id\":31724,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'1\\\"\",\"search_full_name\":\"drewscott\",\"birth_date\":\"1995-03-12\",\"espn_id\":3052422},\"1004\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tate\",\"depth_chart_position\":null,\"player_id\":\"1004\",\"birth_city\":null,\"fantasy_data_id\":13557,\"years_exp\":5,\"hashtag\":\"#BenTate-NFL-FA-44\",\"search_first_name\":\"ben\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ben Tate\",\"sportradar_id\":\"c8e9990a-9d89-411c-9d99-c0afa7eaef8c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tate\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bentate\",\"birth_date\":\"1988-08-21\",\"espn_id\":13210},\"3277\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032402\",\"first_name\":\"Hassan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603741838239,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ridgeway\",\"depth_chart_position\":null,\"player_id\":\"3277\",\"birth_city\":null,\"fantasy_data_id\":18038,\"years_exp\":4,\"hashtag\":\"#HassanRidgeway-NFL-PHI-98\",\"search_first_name\":\"hassan\",\"rotowire_id\":11160,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1005,\"age\":26,\"full_name\":\"Hassan Ridgeway\",\"sportradar_id\":\"a72ab12a-751b-4a0d-9f9d-a44d2510ac23\",\"pandascore_id\":null,\"yahoo_id\":29350,\"last_name\":\"Ridgeway\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Mansfield (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hassanridgeway\",\"birth_date\":\"1994-11-02\",\"espn_id\":2971725},\"1410\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarvis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1410\",\"birth_city\":null,\"fantasy_data_id\":14970,\"years_exp\":7,\"hashtag\":\"#JarvisJones-NFL-FA-93\",\"search_first_name\":\"jarvis\",\"rotowire_id\":8707,\"rotoworld_id\":8373,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jarvis Jones\",\"sportradar_id\":\"1d263960-031f-4757-8c82-526231f8976e\",\"pandascore_id\":null,\"yahoo_id\":26640,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"George Washington Carver (GA)\",\"depth_chart_order\":null,\"stats_id\":510151,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jarvisjones\",\"birth_date\":\"1989-10-13\",\"espn_id\":15799},\"1849\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031042\",\"first_name\":\"Jace\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1536167104404,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"amaro\",\"depth_chart_position\":null,\"player_id\":\"1849\",\"birth_city\":null,\"fantasy_data_id\":16057,\"years_exp\":6,\"hashtag\":\"#JaceAmaro-NFL-FA-89\",\"search_first_name\":\"jace\",\"rotowire_id\":9242,\"rotoworld_id\":9397,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jace Amaro\",\"sportradar_id\":\"d579765d-263b-429c-9375-9c6e340df2ca\",\"pandascore_id\":null,\"yahoo_id\":27577,\"last_name\":\"Amaro\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605317,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jaceamaro\",\"birth_date\":\"1992-06-26\",\"espn_id\":16792},\"6867\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606149613036,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harrison\",\"depth_chart_position\":\"WLB\",\"player_id\":\"6867\",\"birth_city\":null,\"fantasy_data_id\":21996,\"years_exp\":0,\"hashtag\":\"#MalikHarrison-NFL-BAL-40\",\"search_first_name\":\"malik\",\"rotowire_id\":14648,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1873,\"age\":22,\"full_name\":\"Malik Harrison\",\"sportradar_id\":\"32575119-3aca-47cb-aaaf-162c48b7d372\",\"pandascore_id\":null,\"yahoo_id\":32768,\"last_name\":\"Harrison\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Walnut Ridge (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"malikharrison\",\"birth_date\":\"1998-03-05\",\"espn_id\":4040615},\"5333\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034264\",\"first_name\":\"Jalyn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604009734853,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5333\",\"birth_city\":null,\"fantasy_data_id\":19911,\"years_exp\":2,\"hashtag\":\"#JalynHolmes-NFL-MIN-90\",\"search_first_name\":\"jalyn\",\"rotowire_id\":12812,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1338,\"age\":24,\"full_name\":\"Jalyn Holmes\",\"sportradar_id\":\"9b8e379d-2362-415f-b51d-ec3b8bedda93\",\"pandascore_id\":null,\"yahoo_id\":31072,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Lake Taylor (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jalynholmes\",\"birth_date\":\"1996-01-25\",\"espn_id\":3121414},\"3715\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032562\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1595966702951,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"wick\",\"depth_chart_position\":\"TE\",\"player_id\":\"3715\",\"birth_city\":null,\"fantasy_data_id\":18522,\"years_exp\":4,\"hashtag\":\"#ColeWick-NFL-NO-85\",\"search_first_name\":\"cole\",\"rotowire_id\":11347,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1087,\"age\":26,\"full_name\":\"Cole Wick\",\"sportradar_id\":\"32d58cfa-ffa6-46a1-bd3a-09b6ccca2370\",\"pandascore_id\":null,\"yahoo_id\":29783,\"last_name\":\"Wick\",\"metadata\":null,\"college\":\"Incarnate Word\",\"high_school\":\"Sacred Heart Catholic (TX)\",\"depth_chart_order\":4,\"stats_id\":704749,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"colewick\",\"birth_date\":\"1993-11-30\",\"espn_id\":2982151},\"1112\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0027187\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1574114142837,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"overton\",\"depth_chart_position\":null,\"player_id\":\"1112\",\"birth_city\":null,\"fantasy_data_id\":14010,\"years_exp\":10,\"hashtag\":\"#MattOverton-NFL-TEN-47\",\"search_first_name\":\"matt\",\"rotowire_id\":8517,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Matt Overton\",\"sportradar_id\":\"77c36756-9d3a-4746-bba1-8ff32542cf74\",\"pandascore_id\":null,\"yahoo_id\":9803,\"last_name\":\"Overton\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Western Washington\",\"high_school\":\"Tracy (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mattoverton\",\"birth_date\":\"1985-07-06\",\"espn_id\":13186},\"190\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Manuel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ramirez\",\"depth_chart_position\":null,\"player_id\":\"190\",\"birth_city\":null,\"fantasy_data_id\":4951,\"years_exp\":13,\"hashtag\":\"#ManuelRamirez-NFL-FA-63\",\"search_first_name\":\"manuel\",\"rotowire_id\":7104,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Manuel Ramirez\",\"sportradar_id\":\"55f094bf-4d4f-492f-b1de-7c4d6aec66a8\",\"pandascore_id\":null,\"yahoo_id\":8371,\"last_name\":\"Ramirez\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Willowridge (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'3\\\"\",\"search_full_name\":\"manuelramirez\",\"birth_date\":\"1983-02-19\",\"espn_id\":10561},\"1273\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1543428932545,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"owusu\",\"depth_chart_position\":null,\"player_id\":\"1273\",\"birth_city\":null,\"fantasy_data_id\":14715,\"years_exp\":3,\"hashtag\":\"#ChrisOwusu-NFL-FA-82\",\"search_first_name\":\"chris\",\"rotowire_id\":12376,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Owusu\",\"sportradar_id\":\"8a8aaa20-f29d-4dd9-bfbe-f8d842d05ce7\",\"pandascore_id\":null,\"yahoo_id\":30648,\"last_name\":\"Owusu\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":739427,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisowusu\",\"birth_date\":\"1990-01-06\",\"espn_id\":3043278},\"2353\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032103\",\"first_name\":\"Denzel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599095136960,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perryman\",\"depth_chart_position\":\"LB\",\"player_id\":\"2353\",\"birth_city\":null,\"fantasy_data_id\":16809,\"years_exp\":5,\"hashtag\":\"#DenzelPerryman-NFL-LAC-52\",\"search_first_name\":\"denzel\",\"rotowire_id\":10356,\"rotoworld_id\":10417,\"active\":true,\"search_rank\":871,\"age\":27,\"full_name\":\"Denzel Perryman\",\"sportradar_id\":\"9fc6e49f-c863-419d-9dca-8f0da3f3c9c7\",\"pandascore_id\":null,\"yahoo_id\":28436,\"last_name\":\"Perryman\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Coral Gables (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"5'11\\\"\",\"search_full_name\":\"denzelperryman\",\"birth_date\":\"1992-12-05\",\"espn_id\":2579621},\"3406\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032809\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605835214556,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"3406\",\"birth_city\":null,\"fantasy_data_id\":18167,\"years_exp\":4,\"hashtag\":\"#JoeWalker-NFL-SF-59\",\"search_first_name\":\"joe\",\"rotowire_id\":11247,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1046,\"age\":27,\"full_name\":\"Joe Walker\",\"sportradar_id\":\"897fc741-34bd-4f34-a1ed-125d56805b70\",\"pandascore_id\":null,\"yahoo_id\":29485,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Palos Verdes (CA)\",\"depth_chart_order\":null,\"stats_id\":727847,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joewalker\",\"birth_date\":\"1992-12-11\",\"espn_id\":3043184},\"1532\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030385\",\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1586277040617,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hodges\",\"depth_chart_position\":null,\"player_id\":\"1532\",\"birth_city\":null,\"fantasy_data_id\":15147,\"years_exp\":7,\"hashtag\":\"#GeraldHodges-NFL-FA-51\",\"search_first_name\":\"gerald\",\"rotowire_id\":8720,\"rotoworld_id\":8541,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Gerald Hodges\",\"sportradar_id\":\"b399ac02-6b52-4ae9-8eb0-7b3fffc29eea\",\"pandascore_id\":null,\"yahoo_id\":26743,\"last_name\":\"Hodges\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Paulsboro (NJ)\",\"depth_chart_order\":null,\"stats_id\":493471,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"geraldhodges\",\"birth_date\":\"1991-01-17\",\"espn_id\":15977},\"598\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"masthay\",\"depth_chart_position\":null,\"player_id\":\"598\",\"birth_city\":null,\"fantasy_data_id\":11393,\"years_exp\":11,\"hashtag\":\"#TimMasthay-NFL-FA-8\",\"search_first_name\":\"tim\",\"rotowire_id\":7014,\"rotoworld_id\":5733,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Tim Masthay\",\"sportradar_id\":\"a4822eab-6faa-449c-9a72-e07f018032ba\",\"pandascore_id\":null,\"yahoo_id\":9787,\"last_name\":\"Masthay\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Murray (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"timmasthay\",\"birth_date\":\"1987-03-16\",\"espn_id\":12998},\"5573\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034305\",\"first_name\":\"Greer\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1554928537994,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martini\",\"depth_chart_position\":null,\"player_id\":\"5573\",\"birth_city\":null,\"fantasy_data_id\":20580,\"years_exp\":2,\"hashtag\":\"#GreerMartini-NFL-FA-45\",\"search_first_name\":\"greer\",\"rotowire_id\":13405,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Greer Martini\",\"sportradar_id\":\"7a0fe22d-0eb1-4339-91d6-0d21b4804eb9\",\"pandascore_id\":null,\"yahoo_id\":31502,\"last_name\":\"Martini\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'3\\\"\",\"search_full_name\":\"greermartini\",\"birth_date\":\"1995-06-06\",\"espn_id\":3129304},\"2783\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenzel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"doe\",\"depth_chart_position\":null,\"player_id\":\"2783\",\"birth_city\":null,\"fantasy_data_id\":17251,\"years_exp\":0,\"hashtag\":\"#KenzelDoe-NFL-FA-82\",\"search_first_name\":\"kenzel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kenzel Doe\",\"sportradar_id\":\"e8d423e0-ea21-4259-92fa-7590f46ff20a\",\"pandascore_id\":null,\"yahoo_id\":29181,\"last_name\":\"Doe\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":592544,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kenzeldoe\",\"birth_date\":null,\"espn_id\":2576430},\"6831\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Raekwon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604022935925,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"NT\",\"player_id\":\"6831\",\"birth_city\":null,\"fantasy_data_id\":22062,\"years_exp\":0,\"hashtag\":\"#RaekwonDavis-NFL-MIA-98\",\"search_first_name\":\"raekwon\",\"rotowire_id\":14538,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1897,\"age\":23,\"full_name\":\"Raekwon Davis\",\"sportradar_id\":\"9666a6bd-4321-4acd-823e-b872943a436e\",\"pandascore_id\":null,\"yahoo_id\":32726,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Meridian (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'7\\\"\",\"search_full_name\":\"raekwondavis\",\"birth_date\":\"1997-06-10\",\"espn_id\":4040965},\"4113\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033907\",\"first_name\":\"Dawuane\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1580278503189,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smoot\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4113\",\"birth_city\":null,\"fantasy_data_id\":18959,\"years_exp\":3,\"hashtag\":\"#DawuaneSmoot-NFL-JAX-94\",\"search_first_name\":\"dawuane\",\"rotowire_id\":11942,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1153,\"age\":25,\"full_name\":\"Dawuane Smoot\",\"sportradar_id\":\"887dc7b2-fb32-4126-be14-509b40424d34\",\"pandascore_id\":null,\"yahoo_id\":30181,\"last_name\":\"Smoot\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Groveport Madison (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dawuanesmoot\",\"birth_date\":\"1995-03-02\",\"espn_id\":3042476},\"4797\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1521156601387,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rounds\",\"depth_chart_position\":null,\"player_id\":\"4797\",\"birth_city\":null,\"fantasy_data_id\":19711,\"years_exp\":2,\"hashtag\":\"#JoshRounds-NFL-FA-33\",\"search_first_name\":\"josh\",\"rotowire_id\":12332,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Josh Rounds\",\"sportradar_id\":\"d6dbb566-cfa5-4e71-a3ee-f0a5e0615ae6\",\"pandascore_id\":null,\"yahoo_id\":30918,\"last_name\":\"Rounds\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693648,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshrounds\",\"birth_date\":\"1993-10-11\",\"espn_id\":2972140},\"6211\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035646\",\"first_name\":\"Sione\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606347603409,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"takitaki\",\"depth_chart_position\":null,\"player_id\":\"6211\",\"birth_city\":null,\"fantasy_data_id\":21108,\"years_exp\":1,\"hashtag\":\"#SioneTakitaki-NFL-CLE-44\",\"search_first_name\":\"sione\",\"rotowire_id\":13614,\"rotoworld_id\":14124,\"active\":true,\"search_rank\":1661,\"age\":25,\"full_name\":\"Sione Takitaki\",\"sportradar_id\":\"471db686-fa8e-484c-8525-0169b0a8f773\",\"pandascore_id\":null,\"yahoo_id\":31912,\"last_name\":\"Takitaki\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Heritage (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sionetakitaki\",\"birth_date\":\"1995-06-08\",\"espn_id\":3138834},\"7046\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.R.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1588426846642,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"7046\",\"birth_city\":null,\"fantasy_data_id\":21935,\"years_exp\":0,\"hashtag\":\"#JRReed-NFL-LAR-36\",\"search_first_name\":\"jr\",\"rotowire_id\":14689,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1851,\"age\":24,\"full_name\":\"J.R. Reed\",\"sportradar_id\":\"4c577f09-a082-43f8-b249-c821350302dc\",\"pandascore_id\":null,\"yahoo_id\":33135,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Prestonwood Christian (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jrreed\",\"birth_date\":\"1996-03-11\",\"espn_id\":3917012},\"7035\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596992449775,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":null,\"player_id\":\"7035\",\"birth_city\":null,\"fantasy_data_id\":21757,\"years_exp\":0,\"hashtag\":\"#KendrickRogers-NFL-FA-0\",\"search_first_name\":\"kendrick\",\"rotowire_id\":14490,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kendrick Rogers\",\"sportradar_id\":\"2c80896a-fa23-4581-b7d0-b34c35268404\",\"pandascore_id\":null,\"yahoo_id\":33097,\"last_name\":\"Rogers\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kendrickrogers\",\"birth_date\":\"1997-08-07\",\"espn_id\":null},\"5397\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1533679820226,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"5397\",\"birth_city\":null,\"fantasy_data_id\":20476,\"years_exp\":0,\"hashtag\":\"#TrevorMoore-NFL-FA-5\",\"search_first_name\":\"trevor\",\"rotowire_id\":13288,\"rotoworld_id\":null,\"active\":true,\"search_rank\":953,\"age\":22,\"full_name\":\"Trevor Moore\",\"sportradar_id\":\"4a42be1d-bd13-40e9-93ff-3262bc2792c9\",\"pandascore_id\":null,\"yahoo_id\":31265,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"trevormoore\",\"birth_date\":\"1995-10-29\",\"espn_id\":3122979},\"5559\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034238\",\"first_name\":\"Warren\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1534800613810,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":null,\"player_id\":\"5559\",\"birth_city\":null,\"fantasy_data_id\":20574,\"years_exp\":2,\"hashtag\":\"#WarrenLong-NFL-FA-48\",\"search_first_name\":\"warren\",\"rotowire_id\":13029,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Warren Long\",\"sportradar_id\":\"2cf0146b-c27d-401b-a5f3-7774748343bc\",\"pandascore_id\":null,\"yahoo_id\":31471,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"warrenlong\",\"birth_date\":\"1995-03-11\",\"espn_id\":3045243},\"4683\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":\"QB\",\"player_id\":\"4683\",\"birth_city\":null,\"fantasy_data_id\":19584,\"years_exp\":1,\"hashtag\":\"#AaronBailey-NFL-BAL-8\",\"search_first_name\":\"aaron\",\"rotowire_id\":12297,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Aaron Bailey\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30845,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"aaronbailey\",\"birth_date\":null,\"espn_id\":3042451},\"6680\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035581\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1565023531265,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kenney\",\"depth_chart_position\":null,\"player_id\":\"6680\",\"birth_city\":null,\"fantasy_data_id\":21579,\"years_exp\":1,\"hashtag\":\"#DavidKenney-NFL-FA-46\",\"search_first_name\":\"david\",\"rotowire_id\":14242,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Kenney\",\"sportradar_id\":\"556c438d-87bd-4ef3-adfe-1ee617e7ef2e\",\"pandascore_id\":null,\"yahoo_id\":32586,\"last_name\":\"Kenney\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidkenney\",\"birth_date\":\"1995-02-06\",\"espn_id\":3060799},\"3511\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032981\",\"first_name\":\"Aziz\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1570312539352,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shittu\",\"depth_chart_position\":null,\"player_id\":\"3511\",\"birth_city\":null,\"fantasy_data_id\":18277,\"years_exp\":4,\"hashtag\":\"#AzizShittu-NFL-FA-67\",\"search_first_name\":\"aziz\",\"rotowire_id\":11537,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Aziz Shittu\",\"sportradar_id\":\"1ec9b4fd-414d-4dd6-96f7-45efa541ebeb\",\"pandascore_id\":null,\"yahoo_id\":29683,\"last_name\":\"Shittu\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'2\\\"\",\"search_full_name\":\"azizshittu\",\"birth_date\":\"1994-07-27\",\"espn_id\":2978281},\"5060\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034836\",\"first_name\":\"Braden\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606347003292,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"RT\",\"player_id\":\"5060\",\"birth_city\":null,\"fantasy_data_id\":19857,\"years_exp\":2,\"hashtag\":\"#BradenSmith-NFL-IND-72\",\"search_first_name\":\"braden\",\"rotowire_id\":12937,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Braden Smith\",\"sportradar_id\":\"e550d0d9-2e56-4c71-8a9a-8a683daf32a3\",\"pandascore_id\":null,\"yahoo_id\":31007,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Olathe South (KS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"bradensmith\",\"birth_date\":\"1996-03-25\",\"espn_id\":3121595},\"7005\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scottie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606479603235,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":\"RB\",\"player_id\":\"7005\",\"birth_city\":null,\"fantasy_data_id\":21856,\"years_exp\":0,\"hashtag\":\"#ScottiePhillips-NFL-HOU-40\",\"search_first_name\":\"scottie\",\"rotowire_id\":14659,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1794,\"age\":23,\"full_name\":\"Scottie Phillips\",\"sportradar_id\":\"26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd\",\"pandascore_id\":null,\"yahoo_id\":33161,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"South Jones (MS)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'8\\\"\",\"search_full_name\":\"scottiephillips\",\"birth_date\":\"1997-10-06\",\"espn_id\":4362878},\"1671\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gaskins\",\"depth_chart_position\":null,\"player_id\":\"1671\",\"birth_city\":null,\"fantasy_data_id\":15467,\"years_exp\":7,\"hashtag\":\"#KendallGaskins-NFL-FA-30\",\"search_first_name\":\"kendall\",\"rotowire_id\":9028,\"rotoworld_id\":8807,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kendall Gaskins\",\"sportradar_id\":\"66bd562c-4d1e-48ee-badf-0f18fa37b286\",\"pandascore_id\":null,\"yahoo_id\":27002,\"last_name\":\"Gaskins\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Woodberry Forest School (VA)\",\"depth_chart_order\":null,\"stats_id\":500160,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kendallgaskins\",\"birth_date\":\"1990-11-04\",\"espn_id\":16066},\"2894\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034956\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603324541946,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"2894\",\"birth_city\":null,\"fantasy_data_id\":17362,\"years_exp\":1,\"hashtag\":\"#JoshWatson-NFL-DEN-54\",\"search_first_name\":\"josh\",\"rotowire_id\":14081,\"rotoworld_id\":null,\"active\":true,\"search_rank\":937,\"age\":24,\"full_name\":\"Josh Watson\",\"sportradar_id\":\"ccd34e5b-38a5-4633-8279-77e3a47f5424\",\"pandascore_id\":null,\"yahoo_id\":32222,\"last_name\":\"Watson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Colorado State\",\"high_school\":\"Blue Springs South (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshwatson\",\"birth_date\":\"1996-05-20\",\"espn_id\":2512419},\"5814\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stephens\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5814\",\"birth_city\":null,\"fantasy_data_id\":20712,\"years_exp\":2,\"hashtag\":\"#FrankStephens-NFL-FA-14\",\"search_first_name\":\"frank\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Frank Stephens\",\"sportradar_id\":\"34f3e537-c9f9-475b-baca-170174e72422\",\"pandascore_id\":null,\"yahoo_id\":31806,\"last_name\":\"Stephens\",\"metadata\":null,\"college\":\"Northern Colorado\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":916943,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'9\\\"\",\"search_full_name\":\"frankstephens\",\"birth_date\":null,\"espn_id\":null},\"1259\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029693\",\"first_name\":\"Olivier\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606139412111,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vernon\",\"depth_chart_position\":\"RDE\",\"player_id\":\"1259\",\"birth_city\":null,\"fantasy_data_id\":14646,\"years_exp\":8,\"hashtag\":\"#OlivierVernon-NFL-CLE-54\",\"search_first_name\":\"olivier\",\"rotowire_id\":8146,\"rotoworld_id\":7544,\"active\":true,\"search_rank\":694,\"age\":30,\"full_name\":\"Olivier Vernon\",\"sportradar_id\":\"3be41614-5c70-4b0a-89c7-c7ae061d9223\",\"pandascore_id\":null,\"yahoo_id\":25782,\"last_name\":\"Vernon\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"American (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'2\\\"\",\"search_full_name\":\"oliviervernon\",\"birth_date\":\"1990-10-07\",\"espn_id\":14982},\"4640\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jadar\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4640\",\"birth_city\":null,\"fantasy_data_id\":19535,\"years_exp\":0,\"hashtag\":\"#JadarJohnson-NFL-NYG-31\",\"search_first_name\":\"jadar\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Jadar Johnson\",\"sportradar_id\":\"ec082251-98cc-4574-8a00-8f3f80864941\",\"pandascore_id\":null,\"yahoo_id\":30733,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jadarjohnson\",\"birth_date\":\"1995-06-29\",\"espn_id\":3045119},\"1762\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcnary\",\"depth_chart_position\":null,\"player_id\":\"1762\",\"birth_city\":null,\"fantasy_data_id\":15807,\"years_exp\":7,\"hashtag\":\"#JoshMcNary-NFL-FA-45\",\"search_first_name\":\"josh\",\"rotowire_id\":8841,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Josh McNary\",\"sportradar_id\":\"bbdc8108-4e8d-4612-b857-cff5b4899651\",\"pandascore_id\":null,\"yahoo_id\":26617,\"last_name\":\"McNary\",\"metadata\":null,\"college\":\"Army\",\"high_school\":\"Clear Lake (TX)\",\"depth_chart_order\":null,\"stats_id\":421483,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshmcnary\",\"birth_date\":\"1988-04-10\",\"espn_id\":15778},\"2068\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031276\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567290906685,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patmon\",\"depth_chart_position\":null,\"player_id\":\"2068\",\"birth_city\":null,\"fantasy_data_id\":16372,\"years_exp\":6,\"hashtag\":\"#TylerPatmon-NFL-FA-8\",\"search_first_name\":\"tyler\",\"rotowire_id\":9830,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tyler Patmon\",\"sportradar_id\":\"10af66eb-88ac-456d-8d47-d7c1e19c8b30\",\"pandascore_id\":null,\"yahoo_id\":28270,\"last_name\":\"Patmon\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Vista Ridge (TX)\",\"depth_chart_order\":null,\"stats_id\":497255,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tylerpatmon\",\"birth_date\":\"1991-01-26\",\"espn_id\":17450},\"5621\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034627\",\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gentry\",\"depth_chart_position\":null,\"player_id\":\"5621\",\"birth_city\":null,\"fantasy_data_id\":20062,\"years_exp\":2,\"hashtag\":\"#MasonGentry-NFL-FA-79\",\"search_first_name\":\"mason\",\"rotowire_id\":13259,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mason Gentry\",\"sportradar_id\":\"e9a3dcf7-e5ba-4f4b-85a4-7a46b901d8b4\",\"pandascore_id\":null,\"yahoo_id\":31581,\"last_name\":\"Gentry\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'6\\\"\",\"search_full_name\":\"masongentry\",\"birth_date\":\"1994-02-24\",\"espn_id\":3040102},\"4490\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wyatt\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":\"TE\",\"player_id\":\"4490\",\"birth_city\":null,\"fantasy_data_id\":19360,\"years_exp\":1,\"hashtag\":\"#WyattHouston-NFL-CAR-85\",\"search_first_name\":\"wyatt\",\"rotowire_id\":12269,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Wyatt Houston\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30681,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":40,\"stats_id\":746308,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"wyatthouston\",\"birth_date\":\"1994-06-21\",\"espn_id\":3053039},\"4501\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033501\",\"first_name\":\"Devaroe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1574795434351,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawrence\",\"depth_chart_position\":null,\"player_id\":\"4501\",\"birth_city\":null,\"fantasy_data_id\":19373,\"years_exp\":3,\"hashtag\":\"#DevaroeLawrence-NFL-WAS-92\",\"search_first_name\":\"devaroe\",\"rotowire_id\":12173,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1257,\"age\":28,\"full_name\":\"Devaroe Lawrence\",\"sportradar_id\":\"87c4b182-e4bc-4f35-97ec-8537a2665875\",\"pandascore_id\":null,\"yahoo_id\":30412,\"last_name\":\"Lawrence\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Carolina (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'2\\\"\",\"search_full_name\":\"devaroelawrence\",\"birth_date\":\"1992-10-13\",\"espn_id\":3121581},\"5270\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"5270\",\"birth_city\":null,\"fantasy_data_id\":20317,\"years_exp\":0,\"hashtag\":\"#RileyFerguson-NFL-FA-4\",\"search_first_name\":\"riley\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Riley Ferguson\",\"sportradar_id\":\"1278e608-651d-42ee-931d-6e846bcb87dd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rileyferguson\",\"birth_date\":\"1995-01-19\",\"espn_id\":3044719},\"4506\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bordelon\",\"depth_chart_position\":null,\"player_id\":\"4506\",\"birth_city\":null,\"fantasy_data_id\":19378,\"years_exp\":2,\"hashtag\":\"#ChrisBordelon-NFL-FA-60\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Bordelon\",\"sportradar_id\":\"71de2b06-2795-447a-8740-38c309a94c92\",\"pandascore_id\":null,\"yahoo_id\":30675,\"last_name\":\"Bordelon\",\"metadata\":null,\"college\":\"Nicholls State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chrisbordelon\",\"birth_date\":\"1994-09-19\",\"espn_id\":2974565},\"5819\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vince\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manuwai\",\"depth_chart_position\":null,\"player_id\":\"5819\",\"birth_city\":null,\"fantasy_data_id\":5143,\"years_exp\":0,\"hashtag\":\"#VinceManuwai-NFL-FA-65\",\"search_first_name\":\"vince\",\"rotowire_id\":null,\"rotoworld_id\":1421,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Vince Manuwai\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manuwai\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'2\\\"\",\"search_full_name\":\"vincemanuwai\",\"birth_date\":\"1980-07-12\",\"espn_id\":null},\"6220\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035286\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606491603975,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holcomb\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6220\",\"birth_city\":null,\"fantasy_data_id\":21120,\"years_exp\":1,\"hashtag\":\"#ColeHolcomb-NFL-WAS-55\",\"search_first_name\":\"cole\",\"rotowire_id\":13700,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1667,\"age\":24,\"full_name\":\"Cole Holcomb\",\"sportradar_id\":\"c727b9d9-9776-415d-953c-9ae046e10a05\",\"pandascore_id\":null,\"yahoo_id\":32005,\"last_name\":\"Holcomb\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"New Smyrna Beach (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coleholcomb\",\"birth_date\":\"1996-07-30\",\"espn_id\":3116689},\"427\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wynn\",\"depth_chart_position\":null,\"player_id\":\"427\",\"birth_city\":null,\"fantasy_data_id\":9066,\"years_exp\":7,\"hashtag\":\"#JariusWynn-NFL-FA-92\",\"search_first_name\":\"jarius\",\"rotowire_id\":6300,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jarius Wynn\",\"sportradar_id\":\"26603e62-3b2a-47dd-a938-4b4f01ed0818\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wynn\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jariuswynn\",\"birth_date\":\"1986-08-29\",\"espn_id\":12752},\"1452\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hester\",\"depth_chart_position\":null,\"player_id\":\"1452\",\"birth_city\":null,\"fantasy_data_id\":15025,\"years_exp\":1,\"hashtag\":\"#AaronHester-NFL-FA-39\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Aaron Hester\",\"sportradar_id\":\"49619eff-a7a5-4b7c-a6c1-732ced59c21d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hester\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aaronhester\",\"birth_date\":\"1990-09-01\",\"espn_id\":16073},\"1014\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brockel\",\"depth_chart_position\":null,\"player_id\":\"1014\",\"birth_city\":null,\"fantasy_data_id\":13653,\"years_exp\":10,\"hashtag\":\"#RichieBrockel-NFL-FA-47\",\"search_first_name\":\"richie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Richie Brockel\",\"sportradar_id\":\"ee2649fa-62cf-4832-bf67-fc11d3681fef\",\"pandascore_id\":null,\"yahoo_id\":24431,\"last_name\":\"Brockel\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Greenway (AZ)\",\"depth_chart_order\":null,\"stats_id\":303964,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'1\\\"\",\"search_full_name\":\"richiebrockel\",\"birth_date\":\"1986-07-24\",\"espn_id\":13538},\"2471\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031595\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1601827538575,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burton\",\"depth_chart_position\":\"RB\",\"player_id\":\"2471\",\"birth_city\":null,\"fantasy_data_id\":16928,\"years_exp\":5,\"hashtag\":\"#MichaelBurton-NFL-NO-32\",\"search_first_name\":\"michael\",\"rotowire_id\":10468,\"rotoworld_id\":10544,\"active\":true,\"search_rank\":553,\"age\":28,\"full_name\":\"Michael Burton\",\"sportradar_id\":\"80715ecf-ffc9-4a93-a305-2193451b3382\",\"pandascore_id\":null,\"yahoo_id\":28556,\"last_name\":\"Burton\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"West Morris Central (NJ)\",\"depth_chart_order\":3,\"stats_id\":556483,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelburton\",\"birth_date\":\"1992-02-01\",\"espn_id\":2515270},\"4554\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kirsch\",\"depth_chart_position\":null,\"player_id\":\"4554\",\"birth_city\":null,\"fantasy_data_id\":19435,\"years_exp\":2,\"hashtag\":\"#MitchellKirsch-NFL-FA-63\",\"search_first_name\":\"mitchell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mitchell Kirsch\",\"sportradar_id\":\"29418334-f7d7-41c5-8a0e-b2b5cb2c2c30\",\"pandascore_id\":null,\"yahoo_id\":30724,\"last_name\":\"Kirsch\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mitchellkirsch\",\"birth_date\":null,\"espn_id\":2975375},\"5735\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034711\",\"first_name\":\"Airius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"5735\",\"birth_city\":null,\"fantasy_data_id\":20630,\"years_exp\":2,\"hashtag\":\"#AiriusMoore-NFL-FA-50\",\"search_first_name\":\"airius\",\"rotowire_id\":13316,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Airius Moore\",\"sportradar_id\":\"0d732ceb-7d32-4469-99a0-386af0d951f1\",\"pandascore_id\":null,\"yahoo_id\":31717,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"airiusmoore\",\"birth_date\":\"1995-11-14\",\"espn_id\":3116737},\"6444\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1586384734242,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harvey\",\"depth_chart_position\":\"RILB\",\"player_id\":\"6444\",\"birth_city\":null,\"fantasy_data_id\":21468,\"years_exp\":1,\"hashtag\":\"#NateHarvey-NFL-FA-0\",\"search_first_name\":\"nate\",\"rotowire_id\":13904,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nate Harvey\",\"sportradar_id\":\"db158baf-9dda-4093-a368-0212428476b9\",\"pandascore_id\":null,\"yahoo_id\":32237,\"last_name\":\"Harvey\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nateharvey\",\"birth_date\":\"1996-09-15\",\"espn_id\":4239395},\"7282\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599693359870,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"7282\",\"birth_city\":null,\"fantasy_data_id\":21872,\"years_exp\":0,\"hashtag\":\"#KendallColeman-NFL-FA-0\",\"search_first_name\":\"kendall\",\"rotowire_id\":14619,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1801,\"age\":null,\"full_name\":\"Kendall Coleman\",\"sportradar_id\":\"f468ae4a-bd7e-4655-80a6-629624d92227\",\"pandascore_id\":null,\"yahoo_id\":33213,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kendallcoleman\",\"birth_date\":null,\"espn_id\":4037135},\"1946\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1523569201749,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bullough\",\"depth_chart_position\":null,\"player_id\":\"1946\",\"birth_city\":null,\"fantasy_data_id\":16193,\"years_exp\":6,\"hashtag\":\"#MaxBullough-NFL-FA-53\",\"search_first_name\":\"max\",\"rotowire_id\":9390,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Max Bullough\",\"sportradar_id\":\"c6f7cb39-aebc-492c-931e-b165f5ee509b\",\"pandascore_id\":null,\"yahoo_id\":28190,\"last_name\":\"Bullough\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Saint Francis (MI)\",\"depth_chart_order\":null,\"stats_id\":543656,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'3\\\"\",\"search_full_name\":\"maxbullough\",\"birth_date\":\"1992-02-11\",\"espn_id\":17387},\"1398\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Braxston\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cave\",\"depth_chart_position\":null,\"player_id\":\"1398\",\"birth_city\":null,\"fantasy_data_id\":14930,\"years_exp\":7,\"hashtag\":\"#BraxstonCave-NFL-FA-60\",\"search_first_name\":\"braxston\",\"rotowire_id\":8635,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Braxston Cave\",\"sportradar_id\":\"71d1f0fe-2eda-45be-90e1-cf0314290f40\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cave\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Penn (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'3\\\"\",\"search_full_name\":\"braxstoncave\",\"birth_date\":\"1989-07-29\",\"espn_id\":16295},\"4118\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033914\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1597966834388,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anzalone\",\"depth_chart_position\":\"MLB\",\"player_id\":\"4118\",\"birth_city\":null,\"fantasy_data_id\":18964,\"years_exp\":3,\"hashtag\":\"#AlexAnzalone-NFL-NO-47\",\"search_first_name\":\"alex\",\"rotowire_id\":11957,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1156,\"age\":26,\"full_name\":\"Alex Anzalone\",\"sportradar_id\":\"8bb2d40a-6dd2-4108-9810-5def1b45f192\",\"pandascore_id\":null,\"yahoo_id\":30189,\"last_name\":\"Anzalone\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Wyomissing (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alexanzalone\",\"birth_date\":\"1994-09-22\",\"espn_id\":3043107},\"2083\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031188\",\"first_name\":\"Bennett\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604448346420,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2083\",\"birth_city\":null,\"fantasy_data_id\":16396,\"years_exp\":6,\"hashtag\":\"#BennettJackson-NFL-NYJ-39\",\"search_first_name\":\"bennett\",\"rotowire_id\":9671,\"rotoworld_id\":null,\"active\":true,\"search_rank\":816,\"age\":29,\"full_name\":\"Bennett Jackson\",\"sportradar_id\":\"144ef260-a22e-45df-9bbe-52a11f9188ba\",\"pandascore_id\":null,\"yahoo_id\":27715,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Raritan (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bennettjackson\",\"birth_date\":\"1991-09-16\",\"espn_id\":16879},\"2749\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031687\",\"first_name\":\"Raheem\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606517727404,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mostert\",\"depth_chart_position\":\"RB\",\"player_id\":\"2749\",\"birth_city\":null,\"fantasy_data_id\":17217,\"years_exp\":5,\"hashtag\":\"#RaheemMostert-NFL-SF-31\",\"search_first_name\":\"raheem\",\"rotowire_id\":10604,\"rotoworld_id\":10744,\"active\":true,\"search_rank\":38,\"age\":28,\"full_name\":\"Raheem Mostert\",\"sportradar_id\":\"b040e601-ec40-4757-bf3d-71bf64ef99cf\",\"pandascore_id\":null,\"yahoo_id\":28654,\"last_name\":\"Mostert\",\"metadata\":{\"injury_override_regular_2020_7\":\"IR\"},\"college\":\"Purdue\",\"high_school\":\"New Smyrna Beach (FL)\",\"depth_chart_order\":1,\"stats_id\":606501,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"raheemmostert\",\"birth_date\":\"1992-04-09\",\"espn_id\":2576414},\"1110\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029608\",\"first_name\":\"T.Y.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606503604047,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hilton\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1110\",\"birth_city\":null,\"fantasy_data_id\":14005,\"years_exp\":8,\"hashtag\":\"#TYHilton-NFL-IND-13\",\"search_first_name\":\"ty\",\"rotowire_id\":8098,\"rotoworld_id\":7558,\"active\":true,\"search_rank\":59,\"age\":31,\"full_name\":\"T.Y. Hilton\",\"sportradar_id\":\"b8426cea-f8b9-4061-8d56-e70d1230103e\",\"pandascore_id\":null,\"yahoo_id\":25802,\"last_name\":\"Hilton\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":\"Miami Springs (FL)\",\"depth_chart_order\":1,\"stats_id\":468655,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tyhilton\",\"birth_date\":\"1989-11-14\",\"espn_id\":14924},\"4363\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033339\",\"first_name\":\"Demetrious\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532564401772,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":null,\"player_id\":\"4363\",\"birth_city\":null,\"fantasy_data_id\":19220,\"years_exp\":3,\"hashtag\":\"#DemetriousCox-NFL-FA-37\",\"search_first_name\":\"demetrious\",\"rotowire_id\":12425,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Demetrious Cox\",\"sportradar_id\":\"13d56de6-ed55-4323-b79d-e0d49d936723\",\"pandascore_id\":null,\"yahoo_id\":30578,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696159,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"5'11\\\"\",\"search_full_name\":\"demetriouscox\",\"birth_date\":\"1994-04-20\",\"espn_id\":2979535},\"3360\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032797\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596582649736,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"lucas\",\"depth_chart_position\":null,\"player_id\":\"3360\",\"birth_city\":null,\"fantasy_data_id\":18121,\"years_exp\":4,\"hashtag\":\"#JordanLucas-NFL-CHI-21\",\"search_first_name\":\"jordan\",\"rotowire_id\":11120,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1033,\"age\":27,\"full_name\":\"Jordan Lucas\",\"sportradar_id\":\"978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5\",\"pandascore_id\":null,\"yahoo_id\":29438,\"last_name\":\"Lucas\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"New Rochelle (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanlucas\",\"birth_date\":\"1993-08-02\",\"espn_id\":2979595},\"1046\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029580\",\"first_name\":\"Rishard\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1565626261627,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":null,\"player_id\":\"1046\",\"birth_city\":null,\"fantasy_data_id\":13788,\"years_exp\":8,\"hashtag\":\"#RishardMatthews-NFL-FA-12\",\"search_first_name\":\"rishard\",\"rotowire_id\":8232,\"rotoworld_id\":7667,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Rishard Matthews\",\"sportradar_id\":\"969a4d68-1d76-4e64-bfff-e898a9ac6bd4\",\"pandascore_id\":null,\"yahoo_id\":25937,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Saddleback (CA)\",\"depth_chart_order\":null,\"stats_id\":557389,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rishardmatthews\",\"birth_date\":\"1989-10-12\",\"espn_id\":15102},\"538\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027685\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606345202292,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":\"RWR\",\"player_id\":\"538\",\"birth_city\":null,\"fantasy_data_id\":11063,\"years_exp\":10,\"hashtag\":\"#EmmanuelSanders-NFL-NO-17\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":6523,\"rotoworld_id\":5885,\"active\":true,\"search_rank\":105,\"age\":33,\"full_name\":\"Emmanuel Sanders\",\"sportradar_id\":\"fd4e8681-f2f4-47c7-b954-a72be9b1ca00\",\"pandascore_id\":null,\"yahoo_id\":24057,\"last_name\":\"Sanders\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Bellville (TX)\",\"depth_chart_order\":1,\"stats_id\":324216,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"emmanuelsanders\",\"birth_date\":\"1987-03-17\",\"espn_id\":13295},\"628\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daryl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"628\",\"birth_city\":null,\"fantasy_data_id\":11570,\"years_exp\":9,\"hashtag\":\"#DarylWashington-NFL-FA-58\",\"search_first_name\":\"daryl\",\"rotowire_id\":6609,\"rotoworld_id\":5846,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Daryl Washington\",\"sportradar_id\":\"017022cb-82b9-4893-8539-20793599b541\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darylwashington\",\"birth_date\":\"1986-10-09\",\"espn_id\":13305},\"6028\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035220\",\"first_name\":\"Derwin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600456827309,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":\"LG\",\"player_id\":\"6028\",\"birth_city\":null,\"fantasy_data_id\":20777,\"years_exp\":1,\"hashtag\":\"#DerwinGray-NFL-PIT-77\",\"search_first_name\":\"derwin\",\"rotowire_id\":13857,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derwin Gray\",\"sportradar_id\":\"d48dd5f2-79ea-4821-be32-5c177c674bc3\",\"pandascore_id\":null,\"yahoo_id\":32051,\"last_name\":\"Gray\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Maryland\",\"high_school\":\"Friendship Collegiate Academy (DC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"derwingray\",\"birth_date\":\"1995-05-10\",\"espn_id\":3115949},\"7419\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pierre\",\"depth_chart_position\":\"LCB\",\"player_id\":\"7419\",\"birth_city\":null,\"fantasy_data_id\":22068,\"years_exp\":0,\"hashtag\":\"#JamesPierre-NFL-PIT-42\",\"search_first_name\":\"james\",\"rotowire_id\":14439,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1901,\"age\":24,\"full_name\":\"James Pierre\",\"sportradar_id\":\"6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87\",\"pandascore_id\":null,\"yahoo_id\":32939,\"last_name\":\"Pierre\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Florida Atlantic\",\"high_school\":\"Deerfield Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamespierre\",\"birth_date\":\"1996-09-16\",\"espn_id\":4259252},\"728\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"selvie\",\"depth_chart_position\":null,\"player_id\":\"728\",\"birth_city\":null,\"fantasy_data_id\":12293,\"years_exp\":10,\"hashtag\":\"#GeorgeSelvie-NFL-FA-93\",\"search_first_name\":\"george\",\"rotowire_id\":6582,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"George Selvie\",\"sportradar_id\":\"1670a774-4e0f-4474-b1d7-c665b6e4e4ec\",\"pandascore_id\":null,\"yahoo_id\":24202,\"last_name\":\"Selvie\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Pine Forest (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"georgeselvie\",\"birth_date\":\"1987-03-06\",\"espn_id\":13452},\"4482\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gabriel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mass\",\"depth_chart_position\":null,\"player_id\":\"4482\",\"birth_city\":null,\"fantasy_data_id\":19350,\"years_exp\":2,\"hashtag\":\"#GabrielMass-NFL-FA-62\",\"search_first_name\":\"gabriel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Gabriel Mass\",\"sportradar_id\":\"f6cbc4d8-f422-4857-8b69-cc0664530428\",\"pandascore_id\":null,\"yahoo_id\":30689,\"last_name\":\"Mass\",\"metadata\":null,\"college\":\"Lane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"gabrielmass\",\"birth_date\":\"1991-04-01\",\"espn_id\":3938889},\"7368\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693357462,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"riley\",\"depth_chart_position\":null,\"player_id\":\"7368\",\"birth_city\":null,\"fantasy_data_id\":22355,\"years_exp\":0,\"hashtag\":\"#SeanRiley-NFL-FA-0\",\"search_first_name\":\"sean\",\"rotowire_id\":14502,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Sean Riley\",\"sportradar_id\":\"c76508fc-8ba0-4252-b23f-bac62bc5d168\",\"pandascore_id\":null,\"yahoo_id\":33018,\"last_name\":\"Riley\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'8\\\"\",\"search_full_name\":\"seanriley\",\"birth_date\":\"1997-10-31\",\"espn_id\":null},\"1556\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030060\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606348503832,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vaccaro\",\"depth_chart_position\":\"SS\",\"player_id\":\"1556\",\"birth_city\":null,\"fantasy_data_id\":15197,\"years_exp\":7,\"hashtag\":\"#KennyVaccaro-NFL-TEN-24\",\"search_first_name\":\"kenny\",\"rotowire_id\":8684,\"rotoworld_id\":8451,\"active\":true,\"search_rank\":742,\"age\":29,\"full_name\":\"Kenny Vaccaro\",\"sportradar_id\":\"a2270ced-ae01-4dee-a177-9dca7c5b20cc\",\"pandascore_id\":null,\"yahoo_id\":26638,\"last_name\":\"Vaccaro\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Texas\",\"high_school\":\"Early (TX)\",\"depth_chart_order\":1,\"stats_id\":492781,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kennyvaccaro\",\"birth_date\":\"1991-02-15\",\"espn_id\":15813},\"2155\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crichton\",\"depth_chart_position\":null,\"player_id\":\"2155\",\"birth_city\":null,\"fantasy_data_id\":16501,\"years_exp\":6,\"hashtag\":\"#ScottCrichton-NFL-FA-95\",\"search_first_name\":\"scott\",\"rotowire_id\":9408,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Scott Crichton\",\"sportradar_id\":\"c057795c-b449-4693-a53d-eea3ef63ff04\",\"pandascore_id\":null,\"yahoo_id\":27600,\"last_name\":\"Crichton\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Henry Foss (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'3\\\"\",\"search_full_name\":\"scottcrichton\",\"birth_date\":\"1991-10-30\",\"espn_id\":16780},\"1310\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029144\",\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584636933053,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"compton\",\"depth_chart_position\":\"RG\",\"player_id\":\"1310\",\"birth_city\":null,\"fantasy_data_id\":14791,\"years_exp\":8,\"hashtag\":\"#TomCompton-NFL-SF-66\",\"search_first_name\":\"tom\",\"rotowire_id\":8339,\"rotoworld_id\":7636,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Tom Compton\",\"sportradar_id\":\"1c1f0577-f9c7-4406-b2ab-b9e42ddb1af3\",\"pandascore_id\":null,\"yahoo_id\":25903,\"last_name\":\"Compton\",\"metadata\":null,\"college\":\"South Dakota\",\"high_school\":\"Rosemount (MN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tomcompton\",\"birth_date\":\"1989-05-10\",\"espn_id\":15082},\"236\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024338\",\"first_name\":\"Domata\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606187718135,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peko\",\"depth_chart_position\":\"NT\",\"player_id\":\"236\",\"birth_city\":null,\"fantasy_data_id\":5929,\"years_exp\":14,\"hashtag\":\"#DomataPeko-NFL-ARI-96\",\"search_first_name\":\"domata\",\"rotowire_id\":5853,\"rotoworld_id\":3940,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Domata Peko\",\"sportradar_id\":\"6a3bcfd5-a855-4173-a2aa-94e2c77c8268\",\"pandascore_id\":null,\"yahoo_id\":7872,\"last_name\":\"Peko\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Pago Pago (ASM)\",\"depth_chart_order\":2,\"stats_id\":264831,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'3\\\"\",\"search_full_name\":\"domatapeko\",\"birth_date\":\"1984-11-27\",\"espn_id\":9709},\"4000\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kirchner\",\"depth_chart_position\":null,\"player_id\":\"4000\",\"birth_city\":null,\"fantasy_data_id\":18839,\"years_exp\":0,\"hashtag\":\"#TrentKirchner-NFL-FA-0\",\"search_first_name\":\"trent\",\"rotowire_id\":null,\"rotoworld_id\":10291,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Trent Kirchner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kirchner\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"trentkirchner\",\"birth_date\":null,\"espn_id\":null},\"4480\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033434\",\"first_name\":\"Jesus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1576091451231,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"4480\",\"birth_city\":null,\"fantasy_data_id\":19348,\"years_exp\":3,\"hashtag\":\"#JesusWilson-NFL-FA-16\",\"search_first_name\":\"jesus\",\"rotowire_id\":11886,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jesus Wilson\",\"sportradar_id\":\"ee8800ba-af54-4d69-9182-63fd0f789551\",\"pandascore_id\":null,\"yahoo_id\":30481,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742159,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jesuswilson\",\"birth_date\":\"1995-01-25\",\"espn_id\":3045380},\"275\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scobee\",\"depth_chart_position\":null,\"player_id\":\"275\",\"birth_city\":null,\"fantasy_data_id\":6902,\"years_exp\":16,\"hashtag\":\"#JoshScobee-NFL-FA-8\",\"search_first_name\":\"josh\",\"rotowire_id\":3924,\"rotoworld_id\":2842,\"active\":false,\"search_rank\":761,\"age\":38,\"full_name\":\"Josh Scobee\",\"sportradar_id\":\"ed29fd68-0d5d-4636-8010-31436a78c9c6\",\"pandascore_id\":null,\"yahoo_id\":6896,\"last_name\":\"Scobee\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Longview (TX)\",\"depth_chart_order\":null,\"stats_id\":246344,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshscobee\",\"birth_date\":\"1982-06-23\",\"espn_id\":5662},\"6830\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600903809597,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"strowbridge\",\"depth_chart_position\":\"DE\",\"player_id\":\"6830\",\"birth_city\":null,\"fantasy_data_id\":21892,\"years_exp\":0,\"hashtag\":\"#JasonStrowbridge-NFL-MIA-58\",\"search_first_name\":\"jason\",\"rotowire_id\":14730,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1817,\"age\":24,\"full_name\":\"Jason Strowbridge\",\"sportradar_id\":\"14766908-6ec1-461b-b6fa-e874287a6517\",\"pandascore_id\":null,\"yahoo_id\":32824,\"last_name\":\"Strowbridge\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Deerfield Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jasonstrowbridge\",\"birth_date\":\"1996-09-10\",\"espn_id\":3895843},\"7065\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604445345888,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wolf\",\"depth_chart_position\":null,\"player_id\":\"7065\",\"birth_city\":null,\"fantasy_data_id\":22113,\"years_exp\":0,\"hashtag\":\"#EliWolf-NFL-BAL-87\",\"search_first_name\":\"eli\",\"rotowire_id\":14375,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Eli Wolf\",\"sportradar_id\":\"71c657d6-a2d9-48f3-b6db-dd4372e910f4\",\"pandascore_id\":null,\"yahoo_id\":33007,\"last_name\":\"Wolf\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Minster (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'4\\\"\",\"search_full_name\":\"eliwolf\",\"birth_date\":\"1997-03-11\",\"espn_id\":3915400},\"5695\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034646\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606261554727,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"powell\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5695\",\"birth_city\":null,\"fantasy_data_id\":20487,\"years_exp\":2,\"hashtag\":\"#BrandonPowell-NFL-ATL-15\",\"search_first_name\":\"brandon\",\"rotowire_id\":13036,\"rotoworld_id\":13782,\"active\":true,\"search_rank\":430,\"age\":25,\"full_name\":\"Brandon Powell\",\"sportradar_id\":\"5ec01774-4a79-40aa-be4a-e33c71bd5bf4\",\"pandascore_id\":null,\"yahoo_id\":31641,\"last_name\":\"Powell\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Deerfield Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":820435,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'8\\\"\",\"search_full_name\":\"brandonpowell\",\"birth_date\":\"1995-09-12\",\"espn_id\":3115255},\"5023\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034768\",\"first_name\":\"Chukwuma\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"okorafor\",\"depth_chart_position\":\"RT\",\"player_id\":\"5023\",\"birth_city\":null,\"fantasy_data_id\":19906,\"years_exp\":2,\"hashtag\":\"#ChukwumaOkorafor-NFL-PIT-76\",\"search_first_name\":\"chukwuma\",\"rotowire_id\":12805,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chukwuma Okorafor\",\"sportradar_id\":\"a4e669b3-32f3-4762-8b01-df6ef8dd0e51\",\"pandascore_id\":null,\"yahoo_id\":31062,\"last_name\":\"Okorafor\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Western Michigan\",\"high_school\":\"Southfield (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chukwumaokorafor\",\"birth_date\":\"1997-08-08\",\"espn_id\":3129473},\"3449\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"monday\",\"depth_chart_position\":null,\"player_id\":\"3449\",\"birth_city\":null,\"fantasy_data_id\":18213,\"years_exp\":3,\"hashtag\":\"#WillMonday-NFL-FA-7\",\"search_first_name\":\"will\",\"rotowire_id\":11138,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Will Monday\",\"sportradar_id\":\"ceb59b64-5b20-4d11-b455-827045975a84\",\"pandascore_id\":null,\"yahoo_id\":29490,\"last_name\":\"Monday\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'4\\\"\",\"search_full_name\":\"willmonday\",\"birth_date\":\"1992-07-25\",\"espn_id\":2576728},\"6213\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035688\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604192111315,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pipkins\",\"depth_chart_position\":\"LT\",\"player_id\":\"6213\",\"birth_city\":null,\"fantasy_data_id\":21110,\"years_exp\":1,\"hashtag\":\"#TreyPipkins-NFL-LAC-79\",\"search_first_name\":\"trey\",\"rotowire_id\":13659,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Trey Pipkins\",\"sportradar_id\":\"42931961-6deb-4e33-bbe9-bf8f77d29da0\",\"pandascore_id\":null,\"yahoo_id\":31923,\"last_name\":\"Pipkins\",\"metadata\":null,\"college\":\"Sioux Falls\",\"high_school\":\"Apple Valley (MN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'6\\\"\",\"search_full_name\":\"treypipkins\",\"birth_date\":\"1996-09-05\",\"espn_id\":4411189},\"7325\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gaziano\",\"depth_chart_position\":null,\"player_id\":\"7325\",\"birth_city\":null,\"fantasy_data_id\":22317,\"years_exp\":0,\"hashtag\":\"#JoeGaziano-NFL-LAC-92\",\"search_first_name\":\"joe\",\"rotowire_id\":15065,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1978,\"age\":24,\"full_name\":\"Joe Gaziano\",\"sportradar_id\":\"bab100c6-1a6c-4411-9286-f719244f5d35\",\"pandascore_id\":null,\"yahoo_id\":32982,\"last_name\":\"Gaziano\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Xaverian Brothers (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joegaziano\",\"birth_date\":\"1996-09-27\",\"espn_id\":3915990},\"7484\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wellington\",\"depth_chart_position\":null,\"player_id\":\"7484\",\"birth_city\":null,\"fantasy_data_id\":22459,\"years_exp\":0,\"hashtag\":\"#BrandonWellington-NFL-FA-0\",\"search_first_name\":\"brandon\",\"rotowire_id\":15024,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brandon Wellington\",\"sportradar_id\":\"2d81612a-3e4a-479d-a2cf-44f71d680d32\",\"pandascore_id\":null,\"yahoo_id\":33219,\"last_name\":\"Wellington\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonwellington\",\"birth_date\":null,\"espn_id\":null},\"6865\":{\"position\":\"TE\",\"injury_notes\":\"Parkinson is rehabbing after undergoing surgery.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colby\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606260655646,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parkinson\",\"depth_chart_position\":\"TE\",\"player_id\":\"6865\",\"birth_city\":null,\"fantasy_data_id\":21807,\"years_exp\":0,\"hashtag\":\"#ColbyParkinson-NFL-SEA-84\",\"search_first_name\":\"colby\",\"rotowire_id\":14463,\"rotoworld_id\":null,\"active\":true,\"search_rank\":499,\"age\":21,\"full_name\":\"Colby Parkinson\",\"sportradar_id\":\"1ea7affb-e5e7-491a-aaa3-55e200b2eb48\",\"pandascore_id\":null,\"yahoo_id\":32803,\"last_name\":\"Parkinson\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Oaks Christian (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'7\\\"\",\"search_full_name\":\"colbyparkinson\",\"birth_date\":\"1999-01-08\",\"espn_id\":4242557},\"5683\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034456\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598054711303,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"steinmetz\",\"depth_chart_position\":null,\"player_id\":\"5683\",\"birth_city\":null,\"fantasy_data_id\":20320,\"years_exp\":2,\"hashtag\":\"#DavidSteinmetz-NFL-WAS-66\",\"search_first_name\":\"david\",\"rotowire_id\":13270,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Steinmetz\",\"sportradar_id\":\"bb414aa3-f682-426b-abec-042edf34296d\",\"pandascore_id\":null,\"yahoo_id\":31544,\"last_name\":\"Steinmetz\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Grafton (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'8\\\"\",\"search_full_name\":\"davidsteinmetz\",\"birth_date\":\"1995-03-01\",\"espn_id\":3049836},\"2291\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028411\",\"first_name\":\"Dontrelle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606250453751,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"inman\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2291\",\"birth_city\":null,\"fantasy_data_id\":16728,\"years_exp\":9,\"hashtag\":\"#DontrelleInman-NFL-WAS-80\",\"search_first_name\":\"dontrelle\",\"rotowire_id\":7659,\"rotoworld_id\":6840,\"active\":true,\"search_rank\":212,\"age\":31,\"full_name\":\"Dontrelle Inman\",\"sportradar_id\":\"61194d09-1caf-4bd6-9ff2-a6b1601a1839\",\"pandascore_id\":null,\"yahoo_id\":25120,\"last_name\":\"Inman\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Batesburg-Leesville (SC)\",\"depth_chart_order\":2,\"stats_id\":399529,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dontrelleinman\",\"birth_date\":\"1989-01-31\",\"espn_id\":14269},\"506\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"506\",\"birth_city\":null,\"fantasy_data_id\":10946,\"years_exp\":5,\"hashtag\":\"#DavidNelson-NFL-FA-15\",\"search_first_name\":\"david\",\"rotowire_id\":6757,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"David Nelson\",\"sportradar_id\":\"c4c93a2d-acf4-4ea9-82d1-aa3c4228bc9c\",\"pandascore_id\":null,\"yahoo_id\":24272,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":296139,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidnelson\",\"birth_date\":\"1986-11-07\",\"espn_id\":null},\"4134\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033462\",\"first_name\":\"Cordrea\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596587450398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tankersley\",\"depth_chart_position\":null,\"player_id\":\"4134\",\"birth_city\":null,\"fantasy_data_id\":18980,\"years_exp\":3,\"hashtag\":\"#CordreaTankersley-NFL-MIN-23\",\"search_first_name\":\"cordrea\",\"rotowire_id\":12033,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1164,\"age\":27,\"full_name\":\"Cordrea Tankersley\",\"sportradar_id\":\"ecd53958-08c3-4ef0-8984-ec68d58deec1\",\"pandascore_id\":null,\"yahoo_id\":30210,\"last_name\":\"Tankersley\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Aiken Silver Bluff (SC)\",\"depth_chart_order\":null,\"stats_id\":653111,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cordreatankersley\",\"birth_date\":\"1993-11-19\",\"espn_id\":3045136},\"5152\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034538\",\"first_name\":\"Mat\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boesen\",\"depth_chart_position\":null,\"player_id\":\"5152\",\"birth_city\":null,\"fantasy_data_id\":20101,\"years_exp\":2,\"hashtag\":\"#MatBoesen-NFL-FA-43\",\"search_first_name\":\"mat\",\"rotowire_id\":13225,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mat Boesen\",\"sportradar_id\":\"eab954d2-9dee-4a8f-ac28-d93855459fb6\",\"pandascore_id\":null,\"yahoo_id\":31602,\"last_name\":\"Boesen\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"matboesen\",\"birth_date\":\"1995-01-31\",\"espn_id\":3042873},\"1889\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031290\",\"first_name\":\"Marquis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567542021031,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flowers\",\"depth_chart_position\":null,\"player_id\":\"1889\",\"birth_city\":null,\"fantasy_data_id\":16109,\"years_exp\":6,\"hashtag\":\"#MarquisFlowers-NFL-FA-46\",\"search_first_name\":\"marquis\",\"rotowire_id\":9775,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marquis Flowers\",\"sportradar_id\":\"ece6cc68-6834-4c1a-ab97-03d327ea132d\",\"pandascore_id\":null,\"yahoo_id\":27740,\"last_name\":\"Flowers\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542297,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marquisflowers\",\"birth_date\":\"1992-02-16\",\"espn_id\":16924},\"5239\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034144\",\"first_name\":\"Lamar\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jordan\",\"depth_chart_position\":null,\"player_id\":\"5239\",\"birth_city\":null,\"fantasy_data_id\":20222,\"years_exp\":2,\"hashtag\":\"#LamarJordan-NFL-FA-66\",\"search_first_name\":\"lamar\",\"rotowire_id\":13086,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lamar Jordan\",\"sportradar_id\":\"d45cb60d-b5d2-43e4-a202-97a43e7d2d27\",\"pandascore_id\":null,\"yahoo_id\":31351,\"last_name\":\"Jordan\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749566,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lamarjordan\",\"birth_date\":\"1994-10-02\",\"espn_id\":3053315},\"5790\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"basile\",\"depth_chart_position\":null,\"player_id\":\"5790\",\"birth_city\":null,\"fantasy_data_id\":20301,\"years_exp\":2,\"hashtag\":\"#MikeBasile-NFL-FA-30\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Basile\",\"sportradar_id\":\"aee2dd07-223e-4295-93db-effa092dec6f\",\"pandascore_id\":null,\"yahoo_id\":31786,\"last_name\":\"Basile\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikebasile\",\"birth_date\":null,\"espn_id\":3121230},\"1870\":{\"position\":\"G\",\"injury_notes\":\"Hurst will miss 4-games to start the 2020 season after violating the NFL policy on performance-enhancing substances.\",\"birth_country\":null,\"gsis_id\":\"00-0030694\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"OL\"],\"news_updated\":1602557153613,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hurst\",\"depth_chart_position\":\"RG\",\"player_id\":\"1870\",\"birth_city\":null,\"fantasy_data_id\":16086,\"years_exp\":6,\"hashtag\":\"#JamesHurst-NFL-NO-74\",\"search_first_name\":\"james\",\"rotowire_id\":9424,\"rotoworld_id\":9744,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"James Hurst\",\"sportradar_id\":\"e381248e-ea78-433c-a9cb-7043e9f3335e\",\"pandascore_id\":null,\"yahoo_id\":27980,\"last_name\":\"Hurst\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Plainfield (IN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jameshurst\",\"birth_date\":\"1991-12-17\",\"espn_id\":17178},\"2503\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031609\",\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567218357881,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"derby\",\"depth_chart_position\":null,\"player_id\":\"2503\",\"birth_city\":null,\"fantasy_data_id\":16962,\"years_exp\":5,\"hashtag\":\"#AJDerby-NFL-FA-85\",\"search_first_name\":\"aj\",\"rotowire_id\":10484,\"rotoworld_id\":10576,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"AJ Derby\",\"sportradar_id\":\"f0805b80-e01c-46fd-99a6-dae1134fb764\",\"pandascore_id\":null,\"yahoo_id\":28590,\"last_name\":\"Derby\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":543797,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ajderby\",\"birth_date\":\"1991-09-20\",\"espn_id\":3046413},\"5077\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034394\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603139419081,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5077\",\"birth_city\":null,\"fantasy_data_id\":19966,\"years_exp\":2,\"hashtag\":\"#AndrewBrown-NFL-HOU-93\",\"search_first_name\":\"andrew\",\"rotowire_id\":12865,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1371,\"age\":24,\"full_name\":\"Andrew Brown\",\"sportradar_id\":\"0df7834e-6373-4f30-9935-5c05d28e752d\",\"pandascore_id\":null,\"yahoo_id\":31128,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Oscar Smith (VA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andrewbrown\",\"birth_date\":\"1995-12-30\",\"espn_id\":3116761},\"215\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"snelling\",\"depth_chart_position\":null,\"player_id\":\"215\",\"birth_city\":null,\"fantasy_data_id\":5412,\"years_exp\":7,\"hashtag\":\"#JasonSnelling-NFL-FA-44\",\"search_first_name\":\"jason\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jason Snelling\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Snelling\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jasonsnelling\",\"birth_date\":\"1983-12-29\",\"espn_id\":null},\"1373\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030565\",\"first_name\":\"Geno\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1589502611279,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"QB\",\"player_id\":\"1373\",\"birth_city\":null,\"fantasy_data_id\":14895,\"years_exp\":7,\"hashtag\":\"#GenoSmith-NFL-SEA-7\",\"search_first_name\":\"geno\",\"rotowire_id\":8743,\"rotoworld_id\":8326,\"active\":true,\"search_rank\":494,\"age\":30,\"full_name\":\"Geno Smith\",\"sportradar_id\":\"cfc93f5e-105e-4a5e-88d3-f4279893cfa8\",\"pandascore_id\":null,\"yahoo_id\":26662,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Miramar (FL)\",\"depth_chart_order\":2,\"stats_id\":513856,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"genosmith\",\"birth_date\":\"1990-10-10\",\"espn_id\":15864},\"7472\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tecklenburg\",\"depth_chart_position\":null,\"player_id\":\"7472\",\"birth_city\":null,\"fantasy_data_id\":22447,\"years_exp\":0,\"hashtag\":\"#SamTecklenburg-NFL-CAR-71\",\"search_first_name\":\"sam\",\"rotowire_id\":14974,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Sam Tecklenburg\",\"sportradar_id\":\"5cc69b4f-6ac4-4854-b3ab-5f669e0d8239\",\"pandascore_id\":null,\"yahoo_id\":33155,\"last_name\":\"Tecklenburg\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Plano (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"samtecklenburg\",\"birth_date\":\"1997-01-31\",\"espn_id\":3928936},\"2963\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031716\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1558366530392,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"darr\",\"depth_chart_position\":null,\"player_id\":\"2963\",\"birth_city\":null,\"fantasy_data_id\":17450,\"years_exp\":5,\"hashtag\":\"#MattDarr-NFL-FA-3\",\"search_first_name\":\"matt\",\"rotowire_id\":10693,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Darr\",\"sportradar_id\":\"325735c1-9fa1-48ee-bb8d-2ae45781f28d\",\"pandascore_id\":null,\"yahoo_id\":28905,\"last_name\":\"Darr\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Frontier (CA)\",\"depth_chart_order\":null,\"stats_id\":553035,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mattdarr\",\"birth_date\":\"1992-07-02\",\"espn_id\":2516357},\"459\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hawthorne\",\"depth_chart_position\":null,\"player_id\":\"459\",\"birth_city\":null,\"fantasy_data_id\":9373,\"years_exp\":12,\"hashtag\":\"#DavidHawthorne-NFL-FA-56\",\"search_first_name\":\"david\",\"rotowire_id\":6291,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"David Hawthorne\",\"sportradar_id\":\"5118a99e-a953-4bc1-a914-faff1db5466c\",\"pandascore_id\":null,\"yahoo_id\":9065,\"last_name\":\"Hawthorne\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Corsicana (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidhawthorne\",\"birth_date\":\"1985-05-14\",\"espn_id\":11544},\"2190\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adarius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605141607537,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"2190\",\"birth_city\":null,\"fantasy_data_id\":16558,\"years_exp\":6,\"hashtag\":\"#AdariusTaylor-NFL-CAR-57\",\"search_first_name\":\"adarius\",\"rotowire_id\":9996,\"rotoworld_id\":null,\"active\":true,\"search_rank\":835,\"age\":30,\"full_name\":\"Adarius Taylor\",\"sportradar_id\":\"1db9d170-d0cf-4b2c-a160-fe828a7339eb\",\"pandascore_id\":null,\"yahoo_id\":27940,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Lake Gibson (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"adariustaylor\",\"birth_date\":\"1990-09-21\",\"espn_id\":17401},\"938\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dean\",\"depth_chart_position\":null,\"player_id\":\"938\",\"birth_city\":null,\"fantasy_data_id\":13260,\"years_exp\":5,\"hashtag\":\"#LarryDean-NFL-FA-54\",\"search_first_name\":\"larry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Larry Dean\",\"sportradar_id\":\"78b8102e-7a51-40c4-b781-2193ee728e2f\",\"pandascore_id\":null,\"yahoo_id\":25241,\"last_name\":\"Dean\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"larrydean\",\"birth_date\":\"1988-08-07\",\"espn_id\":14375},\"3650\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032362\",\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596403821772,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"SWR\",\"player_id\":\"3650\",\"birth_city\":null,\"fantasy_data_id\":18443,\"years_exp\":4,\"hashtag\":\"#MauriceHarris-NFL-FA-0\",\"search_first_name\":\"maurice\",\"rotowire_id\":11261,\"rotoworld_id\":11788,\"active\":true,\"search_rank\":1079,\"age\":27,\"full_name\":\"Maurice Harris\",\"sportradar_id\":\"c1ca7e3d-f072-41c7-8017-53401dbdd4d4\",\"pandascore_id\":null,\"yahoo_id\":29638,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":607678,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mauriceharris\",\"birth_date\":\"1992-11-11\",\"espn_id\":2576868},\"6166\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"snyder\",\"depth_chart_position\":null,\"player_id\":\"6166\",\"birth_city\":null,\"fantasy_data_id\":20951,\"years_exp\":0,\"hashtag\":\"#BrandonSnyder-NFL-FA-0\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brandon Snyder\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Snyder\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandonsnyder\",\"birth_date\":null,\"espn_id\":null},\"1261\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029678\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603412449500,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"decastro\",\"depth_chart_position\":\"RG\",\"player_id\":\"1261\",\"birth_city\":null,\"fantasy_data_id\":14650,\"years_exp\":8,\"hashtag\":\"#DavidDeCastro-NFL-PIT-66\",\"search_first_name\":\"david\",\"rotowire_id\":8123,\"rotoworld_id\":7412,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"David DeCastro\",\"sportradar_id\":\"f7e3c1cb-6ec1-45fa-ad64-6b01957c34b1\",\"pandascore_id\":null,\"yahoo_id\":25734,\"last_name\":\"DeCastro\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Stanford\",\"high_school\":\"Bellevue (WA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daviddecastro\",\"birth_date\":\"1990-01-11\",\"espn_id\":14935},\"6154\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035359\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599266454700,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"sills\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6154\",\"birth_city\":null,\"fantasy_data_id\":20939,\"years_exp\":1,\"hashtag\":\"#DavidSills-NFL-NYG-84\",\"search_first_name\":\"david\",\"rotowire_id\":13634,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"David Sills\",\"sportradar_id\":\"97f6c20c-1110-4551-82c1-41d3247397a2\",\"pandascore_id\":null,\"yahoo_id\":32418,\"last_name\":\"Sills\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Eastern Christian Academy (MD)\",\"depth_chart_order\":4,\"stats_id\":866973,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davidsills\",\"birth_date\":\"1996-05-29\",\"espn_id\":3871102},\"5691\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034639\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606348803504,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5691\",\"birth_city\":null,\"fantasy_data_id\":20281,\"years_exp\":2,\"hashtag\":\"#MikeFord-NFL-DET-38\",\"search_first_name\":\"mike\",\"rotowire_id\":13195,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mike Ford\",\"sportradar_id\":\"965df459-3f21-4a93-9a99-15559eb977a4\",\"pandascore_id\":null,\"yahoo_id\":31634,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Southeast Missouri\",\"high_school\":\"Marquette (IL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mikeford\",\"birth_date\":\"1995-08-04\",\"espn_id\":3050916},\"2166\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"yankey\",\"depth_chart_position\":null,\"player_id\":\"2166\",\"birth_city\":null,\"fantasy_data_id\":16519,\"years_exp\":5,\"hashtag\":\"#DavidYankey-NFL-FA-61\",\"search_first_name\":\"david\",\"rotowire_id\":9355,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"David Yankey\",\"sportradar_id\":\"c270c879-d696-4dc7-b74b-ae10584bb634\",\"pandascore_id\":null,\"yahoo_id\":27673,\"last_name\":\"Yankey\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"davidyankey\",\"birth_date\":\"1992-01-18\",\"espn_id\":16934},\"404\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kitna\",\"depth_chart_position\":null,\"player_id\":\"404\",\"birth_city\":null,\"fantasy_data_id\":8842,\"years_exp\":24,\"hashtag\":\"#JonKitna-NFL-FA-3\",\"search_first_name\":\"jon\",\"rotowire_id\":null,\"rotoworld_id\":28,\"active\":false,\"search_rank\":9999999,\"age\":47,\"full_name\":\"Jon Kitna\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kitna\",\"metadata\":null,\"college\":\"Central Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jonkitna\",\"birth_date\":\"1972-09-21\",\"espn_id\":null},\"2591\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031534\",\"first_name\":\"La'el\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604963129138,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"2591\",\"birth_city\":null,\"fantasy_data_id\":17058,\"years_exp\":5,\"hashtag\":\"#LaelCollins-NFL-DAL-71\",\"search_first_name\":\"lael\",\"rotowire_id\":10260,\"rotoworld_id\":10371,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"La'el Collins\",\"sportradar_id\":\"2ff5e7ad-4ac1-4e26-9572-69bef348b1bc\",\"pandascore_id\":null,\"yahoo_id\":28854,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Redemptorist (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"laelcollins\",\"birth_date\":\"1993-07-26\",\"espn_id\":2577302},\"4915\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coe\",\"depth_chart_position\":null,\"player_id\":\"4915\",\"birth_city\":null,\"fantasy_data_id\":10197,\"years_exp\":1,\"hashtag\":\"#MichaelCoe-NFL-DAL-20\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Michael Coe\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30782,\"last_name\":\"Coe\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelcoe\",\"birth_date\":\"1983-12-17\",\"espn_id\":null},\"30\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D'Brickashaw\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"30\",\"birth_city\":null,\"fantasy_data_id\":805,\"years_exp\":14,\"hashtag\":\"#DBrickashawFerguson-NFL-FA-60\",\"search_first_name\":\"dbrickashaw\",\"rotowire_id\":4999,\"rotoworld_id\":3620,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"D'Brickashaw Ferguson\",\"sportradar_id\":\"614b6a41-94bf-4a6c-8635-079ff791fd4f\",\"pandascore_id\":null,\"yahoo_id\":7753,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Freeport (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"dbrickashawferguson\",\"birth_date\":\"1983-12-10\",\"espn_id\":9590},\"5097\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034399\",\"first_name\":\"Wyatt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606064118014,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"teller\",\"depth_chart_position\":\"RG\",\"player_id\":\"5097\",\"birth_city\":null,\"fantasy_data_id\":19962,\"years_exp\":2,\"hashtag\":\"#WyattTeller-NFL-CLE-77\",\"search_first_name\":\"wyatt\",\"rotowire_id\":12798,\"rotoworld_id\":13190,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Wyatt Teller\",\"sportradar_id\":\"2b6a749f-5e78-484f-8a87-92c6da991b19\",\"pandascore_id\":null,\"yahoo_id\":31136,\"last_name\":\"Teller\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Liberty (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"wyattteller\",\"birth_date\":\"1994-11-21\",\"espn_id\":3045474},\"3205\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033104\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1598495442564,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kessler\",\"depth_chart_position\":null,\"player_id\":\"3205\",\"birth_city\":null,\"fantasy_data_id\":17966,\"years_exp\":4,\"hashtag\":\"#CodyKessler-NFL-FA-0\",\"search_first_name\":\"cody\",\"rotowire_id\":11090,\"rotoworld_id\":11305,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cody Kessler\",\"sportradar_id\":\"573f7acc-376b-4f37-8039-5c4c15c4a508\",\"pandascore_id\":null,\"yahoo_id\":29327,\"last_name\":\"Kessler\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591847,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"codykessler\",\"birth_date\":\"1993-05-11\",\"espn_id\":2577243},\"7500\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599279055324,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"barnett\",\"depth_chart_position\":null,\"player_id\":\"7500\",\"birth_city\":null,\"fantasy_data_id\":22476,\"years_exp\":0,\"hashtag\":\"#MichaelBarnett-NFL-NE-0\",\"search_first_name\":\"michael\",\"rotowire_id\":15180,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Michael Barnett\",\"sportradar_id\":\"c3711453-41bb-4c2a-bad4-72d08f2effb4\",\"pandascore_id\":null,\"yahoo_id\":33365,\"last_name\":\"Barnett\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Georgia\",\"high_school\":\"Woodland (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaelbarnett\",\"birth_date\":\"1997-07-11\",\"espn_id\":3728306},\"553\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacques\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclendon\",\"depth_chart_position\":null,\"player_id\":\"553\",\"birth_city\":null,\"fantasy_data_id\":11140,\"years_exp\":10,\"hashtag\":\"#JacquesMcClendon-NFL-FA-61\",\"search_first_name\":\"jacques\",\"rotowire_id\":6729,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jacques McClendon\",\"sportradar_id\":\"7e78bf29-8edc-4aa2-ada2-bf0cc1a0f4df\",\"pandascore_id\":null,\"yahoo_id\":24105,\"last_name\":\"McClendon\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"The Baylor School (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacquesmcclendon\",\"birth_date\":\"1987-12-10\",\"espn_id\":13413},\"2388\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032106\",\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1555611017284,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mager\",\"depth_chart_position\":null,\"player_id\":\"2388\",\"birth_city\":null,\"fantasy_data_id\":16844,\"years_exp\":5,\"hashtag\":\"#CraigMager-NFL-FA-49\",\"search_first_name\":\"craig\",\"rotowire_id\":10418,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Craig Mager\",\"sportradar_id\":\"86476721-3f9e-4ad1-8c7a-40be5a43e602\",\"pandascore_id\":null,\"yahoo_id\":28471,\"last_name\":\"Mager\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":\"Luling (TX)\",\"depth_chart_order\":null,\"stats_id\":562995,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"craigmager\",\"birth_date\":\"1992-06-11\",\"espn_id\":2510713},\"7265\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"7265\",\"birth_city\":null,\"fantasy_data_id\":22263,\"years_exp\":0,\"hashtag\":\"#ZackJohnson-NFL-GB-68\",\"search_first_name\":\"zack\",\"rotowire_id\":15114,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Zack Johnson\",\"sportradar_id\":\"80422fa0-20c3-40d8-a3e6-93f55b09b872\",\"pandascore_id\":null,\"yahoo_id\":33227,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Spring Lake Park (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"zackjohnson\",\"birth_date\":\"1997-01-19\",\"espn_id\":3930912},\"3292\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032409\",\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603842055061,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henry\",\"depth_chart_position\":null,\"player_id\":\"3292\",\"birth_city\":null,\"fantasy_data_id\":18053,\"years_exp\":4,\"hashtag\":\"#WillieHenry-NFL-SF-64\",\"search_first_name\":\"willie\",\"rotowire_id\":11056,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1011,\"age\":26,\"full_name\":\"Willie Henry\",\"sportradar_id\":\"389438be-4bd0-4842-9021-b614289b8d98\",\"pandascore_id\":null,\"yahoo_id\":29366,\"last_name\":\"Henry\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":null,\"stats_id\":696132,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'3\\\"\",\"search_full_name\":\"williehenry\",\"birth_date\":\"1994-03-20\",\"espn_id\":2977625},\"6485\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035166\",\"first_name\":\"Azeez\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1582656610946,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alshaair\",\"depth_chart_position\":\"MIKE\",\"player_id\":\"6485\",\"birth_city\":null,\"fantasy_data_id\":21490,\"years_exp\":1,\"hashtag\":\"#AzeezAlShaair-NFL-SF-51\",\"search_first_name\":\"azeez\",\"rotowire_id\":13829,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1746,\"age\":23,\"full_name\":\"Azeez Al-Shaair\",\"sportradar_id\":\"e9348fc5-273d-4ac3-9760-462f37c025dc\",\"pandascore_id\":null,\"yahoo_id\":32318,\"last_name\":\"Al-Shaair\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Hillsborough (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"azeezalshaair\",\"birth_date\":\"1997-08-04\",\"espn_id\":3919117},\"3485\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032523\",\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1515459601830,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kriegercoble\",\"depth_chart_position\":null,\"player_id\":\"3485\",\"birth_city\":null,\"fantasy_data_id\":18250,\"years_exp\":4,\"hashtag\":\"#HenryKriegerCoble-NFL-FA-87\",\"search_first_name\":\"henry\",\"rotowire_id\":11422,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Henry Krieger-Coble\",\"sportradar_id\":\"0dcd539a-2021-4772-8473-79cf818f3216\",\"pandascore_id\":null,\"yahoo_id\":29623,\"last_name\":\"Krieger-Coble\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":611330,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"henrykriegercoble\",\"birth_date\":\"1992-06-12\",\"espn_id\":3144999},\"4902\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1549475118662,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oshea\",\"depth_chart_position\":null,\"player_id\":\"4902\",\"birth_city\":null,\"fantasy_data_id\":19804,\"years_exp\":0,\"hashtag\":\"#ChadOShea-NFL-FA-0\",\"search_first_name\":\"chad\",\"rotowire_id\":null,\"rotoworld_id\":13997,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Chad O'Shea\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"O'Shea\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"chadoshea\",\"birth_date\":null,\"espn_id\":null},\"4833\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bozick\",\"depth_chart_position\":null,\"player_id\":\"4833\",\"birth_city\":null,\"fantasy_data_id\":19649,\"years_exp\":2,\"hashtag\":\"#ConnorBozick-NFL-FA-74\",\"search_first_name\":\"connor\",\"rotowire_id\":12267,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Connor Bozick\",\"sportradar_id\":\"b73839c7-7e87-4f88-8f7b-08e78c35132a\",\"pandascore_id\":null,\"yahoo_id\":30882,\"last_name\":\"Bozick\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"connorbozick\",\"birth_date\":\"1994-08-17\",\"espn_id\":2982292},\"1082\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1554402003629,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"1082\",\"birth_city\":null,\"fantasy_data_id\":13902,\"years_exp\":8,\"hashtag\":\"#TrentRichardson-NFL-FA-33\",\"search_first_name\":\"trent\",\"rotowire_id\":8046,\"rotoworld_id\":7462,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Trent Richardson\",\"sportradar_id\":\"020cf3d6-745a-4418-a3dc-7dda7a86d0bf\",\"pandascore_id\":null,\"yahoo_id\":25713,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":508659,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"5'9\\\"\",\"search_full_name\":\"trentrichardson\",\"birth_date\":\"1990-07-10\",\"espn_id\":14884},\"3462\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dangerfield\",\"depth_chart_position\":null,\"player_id\":\"3462\",\"birth_city\":null,\"fantasy_data_id\":18226,\"years_exp\":0,\"hashtag\":\"#JaredDangerfield-NFL-FA-85\",\"search_first_name\":\"jared\",\"rotowire_id\":11499,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jared Dangerfield\",\"sportradar_id\":\"e899069f-b3d9-4cfc-b7c6-5320bb8e8b91\",\"pandascore_id\":null,\"yahoo_id\":29844,\"last_name\":\"Dangerfield\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":595835,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jareddangerfield\",\"birth_date\":\"1992-08-09\",\"espn_id\":3124788},\"3259\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032395\",\"first_name\":\"Graham\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606166414849,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"glasgow\",\"depth_chart_position\":\"RG\",\"player_id\":\"3259\",\"birth_city\":null,\"fantasy_data_id\":18020,\"years_exp\":4,\"hashtag\":\"#GrahamGlasgow-NFL-DEN-61\",\"search_first_name\":\"graham\",\"rotowire_id\":11042,\"rotoworld_id\":11422,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Graham Glasgow\",\"sportradar_id\":\"22b2030e-ec57-4f96-b722-57b3e495c83d\",\"pandascore_id\":null,\"yahoo_id\":29329,\"last_name\":\"Glasgow\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan\",\"high_school\":\"Marmion Academy (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"grahamglasgow\",\"birth_date\":\"1992-07-19\",\"espn_id\":2576245},\"7411\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leo\",\"depth_chart_position\":null,\"player_id\":\"7411\",\"birth_city\":null,\"fantasy_data_id\":22394,\"years_exp\":0,\"hashtag\":\"#MattLeo-NFL-PHI-64\",\"search_first_name\":\"matt\",\"rotowire_id\":14948,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Leo\",\"sportradar_id\":\"06087aa3-4538-4eb0-8713-090967c3a32e\",\"pandascore_id\":null,\"yahoo_id\":33184,\"last_name\":\"Leo\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"St. Michael's (AUS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattleo\",\"birth_date\":\"1992-05-08\",\"espn_id\":4241264},\"6614\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035047\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1566060608307,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ponder\",\"depth_chart_position\":null,\"player_id\":\"6614\",\"birth_city\":null,\"fantasy_data_id\":21284,\"years_exp\":1,\"hashtag\":\"#JermainePonder-NFL-FA-42\",\"search_first_name\":\"jermaine\",\"rotowire_id\":14143,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jermaine Ponder\",\"sportradar_id\":\"5661762f-9cf4-4cc2-b9fe-4cbe58f4ad28\",\"pandascore_id\":null,\"yahoo_id\":32286,\"last_name\":\"Ponder\",\"metadata\":null,\"college\":\"St. Francis U\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jermaineponder\",\"birth_date\":\"1995-01-09\",\"espn_id\":3118081},\"808\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028076\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1595949330157,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"cannon\",\"depth_chart_position\":null,\"player_id\":\"808\",\"birth_city\":null,\"fantasy_data_id\":12764,\"years_exp\":9,\"hashtag\":\"#MarcusCannon-NFL-NE-61\",\"search_first_name\":\"marcus\",\"rotowire_id\":7438,\"rotoworld_id\":6578,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Marcus Cannon\",\"sportradar_id\":\"99b8d78e-6d23-4e85-8eef-d286ba5ddc0c\",\"pandascore_id\":null,\"yahoo_id\":24925,\"last_name\":\"Cannon\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas Christian\",\"high_school\":\"Odessa (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'6\\\"\",\"search_full_name\":\"marcuscannon\",\"birth_date\":\"1988-05-06\",\"espn_id\":14116},\"2487\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031953\",\"first_name\":\"Geremy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599002733604,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2487\",\"birth_city\":null,\"fantasy_data_id\":16946,\"years_exp\":5,\"hashtag\":\"#GeremyDavis-NFL-FA-12\",\"search_first_name\":\"geremy\",\"rotowire_id\":10476,\"rotoworld_id\":null,\"active\":true,\"search_rank\":901,\"age\":28,\"full_name\":\"Geremy Davis\",\"sportradar_id\":\"53dc492f-b4cc-4da2-a6cc-f61f7c23272f\",\"pandascore_id\":null,\"yahoo_id\":28574,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Norcross (GA)\",\"depth_chart_order\":7,\"stats_id\":558661,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"geremydavis\",\"birth_date\":\"1992-01-10\",\"espn_id\":2513030},\"2443\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032201\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1536425403148,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"heeney\",\"depth_chart_position\":null,\"player_id\":\"2443\",\"birth_city\":null,\"fantasy_data_id\":16900,\"years_exp\":5,\"hashtag\":\"#BenHeeney-NFL-FA-50\",\"search_first_name\":\"ben\",\"rotowire_id\":10370,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ben Heeney\",\"sportradar_id\":\"d292c14d-ed36-477b-b088-ce80c9185710\",\"pandascore_id\":null,\"yahoo_id\":28528,\"last_name\":\"Heeney\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Hutchinson (KS)\",\"depth_chart_order\":null,\"stats_id\":590503,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'0\\\"\",\"search_full_name\":\"benheeney\",\"birth_date\":\"1992-05-13\",\"espn_id\":2577219},\"660\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Peyton\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hillis\",\"depth_chart_position\":null,\"player_id\":\"660\",\"birth_city\":null,\"fantasy_data_id\":11747,\"years_exp\":12,\"hashtag\":\"#PeytonHillis-NFL-FA-33\",\"search_first_name\":\"peyton\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Peyton Hillis\",\"sportradar_id\":\"a34a5944-33c4-4965-b404-6772f4b7f1ab\",\"pandascore_id\":null,\"yahoo_id\":900035,\"last_name\":\"Hillis\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"peytonhillis\",\"birth_date\":\"1986-01-21\",\"espn_id\":11461},\"4655\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orlosky\",\"depth_chart_position\":null,\"player_id\":\"4655\",\"birth_city\":null,\"fantasy_data_id\":19553,\"years_exp\":2,\"hashtag\":\"#TylerOrlosky-NFL-FA-76\",\"search_first_name\":\"tyler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyler Orlosky\",\"sportradar_id\":\"956ee45e-fa20-45ce-b276-8a654b46e90d\",\"pandascore_id\":null,\"yahoo_id\":30712,\"last_name\":\"Orlosky\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerorlosky\",\"birth_date\":\"1993-02-15\",\"espn_id\":2976648},\"6778\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1600112164281,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"streveler\",\"depth_chart_position\":\"QB\",\"player_id\":\"6778\",\"birth_city\":null,\"fantasy_data_id\":21866,\"years_exp\":0,\"hashtag\":\"#ChrisStreveler-NFL-ARI-15\",\"search_first_name\":\"chris\",\"rotowire_id\":14587,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Streveler\",\"sportradar_id\":\"23461354-f2d7-4e36-9046-fe9cde6dd413\",\"pandascore_id\":null,\"yahoo_id\":32662,\"last_name\":\"Streveler\",\"metadata\":null,\"college\":\"South Dakota\",\"high_school\":\"Marian Central Catholic (IL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisstreveler\",\"birth_date\":\"1995-01-06\",\"espn_id\":3040206},\"3328\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032977\",\"first_name\":\"Rashard\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606134312013,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"higgins\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3328\",\"birth_city\":null,\"fantasy_data_id\":18089,\"years_exp\":4,\"hashtag\":\"#RashardHiggins-NFL-CLE-82\",\"search_first_name\":\"rashard\",\"rotowire_id\":10830,\"rotoworld_id\":11384,\"active\":true,\"search_rank\":240,\"age\":26,\"full_name\":\"Rashard Higgins\",\"sportradar_id\":\"7e34053d-00bf-4f3f-a464-329c8f5057d0\",\"pandascore_id\":null,\"yahoo_id\":29406,\"last_name\":\"Higgins\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Mesquite (TX)\",\"depth_chart_order\":1,\"stats_id\":741322,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rashardhiggins\",\"birth_date\":\"1994-10-07\",\"espn_id\":3042910},\"1972\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Henoc\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"muamba\",\"depth_chart_position\":null,\"player_id\":\"1972\",\"birth_city\":null,\"fantasy_data_id\":16233,\"years_exp\":2,\"hashtag\":\"#HenocMuamba-NFL-FA-49\",\"search_first_name\":\"henoc\",\"rotowire_id\":9553,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Henoc Muamba\",\"sportradar_id\":\"47d2b988-319f-4b38-bfb6-7dabf95f68e3\",\"pandascore_id\":null,\"yahoo_id\":27515,\"last_name\":\"Muamba\",\"metadata\":null,\"college\":\"St. Francis Xavier (CAN)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"henocmuamba\",\"birth_date\":\"1989-02-23\",\"espn_id\":16689},\"5776\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034861\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chapman\",\"depth_chart_position\":null,\"player_id\":\"5776\",\"birth_city\":null,\"fantasy_data_id\":20681,\"years_exp\":2,\"hashtag\":\"#MarkChapman-NFL-FA-85\",\"search_first_name\":\"mark\",\"rotowire_id\":13372,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mark Chapman\",\"sportradar_id\":\"e2adb182-22f9-420d-8469-b84b04d9dc19\",\"pandascore_id\":null,\"yahoo_id\":31773,\"last_name\":\"Chapman\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":729673,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"markchapman\",\"birth_date\":\"1994-12-27\",\"espn_id\":3044693},\"4893\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"day\",\"depth_chart_position\":null,\"player_id\":\"4893\",\"birth_city\":null,\"fantasy_data_id\":19791,\"years_exp\":0,\"hashtag\":\"#RyanDay-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":11239,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ryan Day\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Day\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ryanday\",\"birth_date\":null,\"espn_id\":null},\"884\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chimdi\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chekwa\",\"depth_chart_position\":null,\"player_id\":\"884\",\"birth_city\":null,\"fantasy_data_id\":13053,\"years_exp\":5,\"hashtag\":\"#ChimdiChekwa-NFL-FA-38\",\"search_first_name\":\"chimdi\",\"rotowire_id\":7516,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chimdi Chekwa\",\"sportradar_id\":\"54bae1dc-34bf-42b7-bef0-48bec3d6f443\",\"pandascore_id\":null,\"yahoo_id\":24900,\"last_name\":\"Chekwa\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chimdichekwa\",\"birth_date\":\"1988-09-07\",\"espn_id\":14107},\"4176\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033946\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602869746671,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sharpe\",\"depth_chart_position\":\"RT\",\"player_id\":\"4176\",\"birth_city\":null,\"fantasy_data_id\":19022,\"years_exp\":3,\"hashtag\":\"#DavidSharpe-NFL-WAS-72\",\"search_first_name\":\"david\",\"rotowire_id\":11818,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Sharpe\",\"sportradar_id\":\"94710841-1b2e-4309-82ff-d7a00b4293e8\",\"pandascore_id\":null,\"yahoo_id\":30242,\"last_name\":\"Sharpe\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Duncan Fletcher (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'6\\\"\",\"search_full_name\":\"davidsharpe\",\"birth_date\":\"1995-10-21\",\"espn_id\":3121656},\"401\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vasquez\",\"depth_chart_position\":null,\"player_id\":\"401\",\"birth_city\":null,\"fantasy_data_id\":8820,\"years_exp\":11,\"hashtag\":\"#LouisVasquez-NFL-FA-65\",\"search_first_name\":\"louis\",\"rotowire_id\":6298,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Louis Vasquez\",\"sportradar_id\":\"042f89b0-2442-420f-888a-cb10d188903d\",\"pandascore_id\":null,\"yahoo_id\":9342,\"last_name\":\"Vasquez\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Corsicana (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'5\\\"\",\"search_full_name\":\"louisvasquez\",\"birth_date\":\"1987-04-11\",\"espn_id\":12744},\"5540\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1534308944117,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alsadek\",\"depth_chart_position\":null,\"player_id\":\"5540\",\"birth_city\":null,\"fantasy_data_id\":20135,\"years_exp\":2,\"hashtag\":\"#JacobAlsadek-NFL-FA-62\",\"search_first_name\":\"jacob\",\"rotowire_id\":12740,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jacob Alsadek\",\"sportradar_id\":\"4d4268fa-e310-466b-9a43-445fc58c42dd\",\"pandascore_id\":null,\"yahoo_id\":31429,\"last_name\":\"Alsadek\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jacobalsadek\",\"birth_date\":\"1994-09-12\",\"espn_id\":3056432},\"6223\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035593\",\"first_name\":\"Juwann\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605576921195,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"winfree\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6223\",\"birth_city\":null,\"fantasy_data_id\":21115,\"years_exp\":1,\"hashtag\":\"#JuwannWinfree-NFL-GB-88\",\"search_first_name\":\"juwann\",\"rotowire_id\":13664,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1663,\"age\":24,\"full_name\":\"Juwann Winfree\",\"sportradar_id\":\"fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e\",\"pandascore_id\":null,\"yahoo_id\":32019,\"last_name\":\"Winfree\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Dwight Morrow (NJ)\",\"depth_chart_order\":3,\"stats_id\":836079,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"juwannwinfree\",\"birth_date\":\"1996-09-04\",\"espn_id\":3128317},\"721\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rolando\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577810428722,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclain\",\"depth_chart_position\":null,\"player_id\":\"721\",\"birth_city\":null,\"fantasy_data_id\":12253,\"years_exp\":10,\"hashtag\":\"#RolandoMcClain-NFL-FA-55\",\"search_first_name\":\"rolando\",\"rotowire_id\":6607,\"rotoworld_id\":5712,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Rolando McClain\",\"sportradar_id\":\"2c4c0744-1bf0-4f1d-881a-9b1012de6dda\",\"pandascore_id\":null,\"yahoo_id\":23983,\"last_name\":\"McClain\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Decatur (AL)\",\"depth_chart_order\":null,\"stats_id\":400136,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rolandomcclain\",\"birth_date\":\"1989-07-14\",\"espn_id\":13255},\"5120\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034423\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599405360271,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"etling\",\"depth_chart_position\":\"QB\",\"player_id\":\"5120\",\"birth_city\":null,\"fantasy_data_id\":20037,\"years_exp\":2,\"hashtag\":\"#DannyEtling-NFL-SEA-2\",\"search_first_name\":\"danny\",\"rotowire_id\":12950,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1401,\"age\":26,\"full_name\":\"Danny Etling\",\"sportradar_id\":\"e2104140-4ce0-42a8-8b00-346b4a9258b2\",\"pandascore_id\":null,\"yahoo_id\":31189,\"last_name\":\"Etling\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"South Vigo (IN)\",\"depth_chart_order\":3,\"stats_id\":728374,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dannyetling\",\"birth_date\":\"1994-07-22\",\"espn_id\":3052450},\"290\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025424\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601814036052,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"weddle\",\"depth_chart_position\":null,\"player_id\":\"290\",\"birth_city\":null,\"fantasy_data_id\":7243,\"years_exp\":13,\"hashtag\":\"#EricWeddle-NFL-FA-32\",\"search_first_name\":\"eric\",\"rotowire_id\":5370,\"rotoworld_id\":4223,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Eric Weddle\",\"sportradar_id\":\"26138e8b-b776-492a-9684-b1c07e51b25c\",\"pandascore_id\":null,\"yahoo_id\":8291,\"last_name\":\"Weddle\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Alta Loma (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ericweddle\",\"birth_date\":\"1985-01-04\",\"espn_id\":10481},\"150\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danieal\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manning\",\"depth_chart_position\":null,\"player_id\":\"150\",\"birth_city\":null,\"fantasy_data_id\":4059,\"years_exp\":9,\"hashtag\":\"#DaniealManning-NFL-FA-38\",\"search_first_name\":\"danieal\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Danieal Manning\",\"sportradar_id\":\"38c79072-f438-4c96-8aff-3981bf399fbd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manning\",\"metadata\":null,\"college\":\"Abilene Christian\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"daniealmanning\",\"birth_date\":\"1982-08-09\",\"espn_id\":9628},\"3031\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arthur\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3031\",\"birth_city\":null,\"fantasy_data_id\":17718,\"years_exp\":null,\"hashtag\":\"#ArthurWilliams-NFL-FA-0\",\"search_first_name\":\"arthur\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Arthur Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":611748,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"arthurwilliams\",\"birth_date\":null,\"espn_id\":null},\"1269\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029091\",\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"OL\"],\"news_updated\":1574615130819,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sowell\",\"depth_chart_position\":null,\"player_id\":\"1269\",\"birth_city\":null,\"fantasy_data_id\":14707,\"years_exp\":8,\"hashtag\":\"#BradleySowell-NFL-FA-85\",\"search_first_name\":\"bradley\",\"rotowire_id\":9091,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Bradley Sowell\",\"sportradar_id\":\"b80f5604-dcbf-42e5-aaab-0e996b318002\",\"pandascore_id\":null,\"yahoo_id\":26050,\"last_name\":\"Sowell\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Hernando (MS)\",\"depth_chart_order\":null,\"stats_id\":396667,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'6\\\"\",\"search_full_name\":\"bradleysowell\",\"birth_date\":\"1989-06-06\",\"espn_id\":15284},\"6649\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035476\",\"first_name\":\"Dare\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"odeyingbo\",\"depth_chart_position\":null,\"player_id\":\"6649\",\"birth_city\":null,\"fantasy_data_id\":21540,\"years_exp\":1,\"hashtag\":\"#DareOdeyingbo-NFL-FA-90\",\"search_first_name\":\"dare\",\"rotowire_id\":14221,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dare Odeyingbo\",\"sportradar_id\":\"9e4ac12b-bd46-403a-baa6-a1cb4c7fa5a4\",\"pandascore_id\":null,\"yahoo_id\":32484,\"last_name\":\"Odeyingbo\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dareodeyingbo\",\"birth_date\":\"1996-11-25\",\"espn_id\":3915769},\"3150\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rush\",\"depth_chart_position\":null,\"player_id\":\"3150\",\"birth_city\":null,\"fantasy_data_id\":17906,\"years_exp\":3,\"hashtag\":\"#XavierRush-NFL-FA-17\",\"search_first_name\":\"xavier\",\"rotowire_id\":10873,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Xavier Rush\",\"sportradar_id\":\"00fffd2e-4f43-41c2-b723-84f1ca179c4d\",\"pandascore_id\":null,\"yahoo_id\":29229,\"last_name\":\"Rush\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":602835,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'3\\\"\",\"search_full_name\":\"xavierrush\",\"birth_date\":\"1992-12-30\",\"espn_id\":2575416},\"7454\":{\"position\":\"WR\",\"injury_notes\":\"Jonsen is not eligible until at least Week 5 if he remains with the Bucs.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602538552292,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jonsen\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7454\",\"birth_city\":null,\"fantasy_data_id\":22432,\"years_exp\":0,\"hashtag\":\"#TravisJonsen-NFL-TB-19\",\"search_first_name\":\"travis\",\"rotowire_id\":14892,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Travis Jonsen\",\"sportradar_id\":\"19b027f5-8d0a-447e-8511-b98e4c95f9f4\",\"pandascore_id\":null,\"yahoo_id\":33274,\"last_name\":\"Jonsen\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":\"Servite (CA)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'4\\\"\",\"search_full_name\":\"travisjonsen\",\"birth_date\":\"1996-10-16\",\"espn_id\":null},\"4170\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033945\",\"first_name\":\"Samson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606278656156,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ebukam\",\"depth_chart_position\":\"WILL\",\"player_id\":\"4170\",\"birth_city\":null,\"fantasy_data_id\":19016,\"years_exp\":3,\"hashtag\":\"#SamsonEbukam-NFL-LAR-50\",\"search_first_name\":\"samson\",\"rotowire_id\":12201,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1181,\"age\":25,\"full_name\":\"Samson Ebukam\",\"sportradar_id\":\"1d05c82f-81cd-4fad-84f5-8be990c5258d\",\"pandascore_id\":null,\"yahoo_id\":30238,\"last_name\":\"Ebukam\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":\"David Douglas (OR)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"samsonebukam\",\"birth_date\":\"1995-05-09\",\"espn_id\":3045527},\"4848\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034051\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596406818559,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kuntz\",\"depth_chart_position\":null,\"player_id\":\"4848\",\"birth_city\":null,\"fantasy_data_id\":19749,\"years_exp\":3,\"hashtag\":\"#ChristianKuntz-NFL-PIT-46\",\"search_first_name\":\"christian\",\"rotowire_id\":12977,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1284,\"age\":26,\"full_name\":\"Christian Kuntz\",\"sportradar_id\":\"0c306d14-6fe6-4b4e-b87f-871c72441947\",\"pandascore_id\":null,\"yahoo_id\":30954,\"last_name\":\"Kuntz\",\"metadata\":null,\"college\":\"Duquesne\",\"high_school\":\"Chartiers Valley (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'1\\\"\",\"search_full_name\":\"christiankuntz\",\"birth_date\":\"1994-04-13\",\"espn_id\":2978524},\"7250\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jameson\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":null,\"player_id\":\"7250\",\"birth_city\":null,\"fantasy_data_id\":22250,\"years_exp\":0,\"hashtag\":\"#JamesonHouston-NFL-PHI-40\",\"search_first_name\":\"jameson\",\"rotowire_id\":15133,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jameson Houston\",\"sportradar_id\":\"aca3090e-ff88-40a2-a7fb-93e063f072db\",\"pandascore_id\":null,\"yahoo_id\":33308,\"last_name\":\"Houston\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"St. Michael's Academy (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jamesonhouston\",\"birth_date\":\"1996-06-30\",\"espn_id\":null},\"441\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026944\",\"first_name\":\"Captain\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567310730939,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"munnerlyn\",\"depth_chart_position\":null,\"player_id\":\"441\",\"birth_city\":null,\"fantasy_data_id\":9169,\"years_exp\":11,\"hashtag\":\"#CaptainMunnerlyn-NFL-FA-26\",\"search_first_name\":\"captain\",\"rotowire_id\":6242,\"rotoworld_id\":5119,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Captain Munnerlyn\",\"sportradar_id\":\"9dc422e6-f4ce-4bc9-b8bc-7ff946b51a8b\",\"pandascore_id\":null,\"yahoo_id\":9480,\"last_name\":\"Munnerlyn\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"S.S. Murphy (AL)\",\"depth_chart_order\":null,\"stats_id\":332869,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"captainmunnerlyn\",\"birth_date\":\"1988-04-10\",\"espn_id\":12703},\"550\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027881\",\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606415159091,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":\"LDE\",\"player_id\":\"550\",\"birth_city\":null,\"fantasy_data_id\":11132,\"years_exp\":10,\"hashtag\":\"#JerryHughes-NFL-BUF-55\",\"search_first_name\":\"jerry\",\"rotowire_id\":6576,\"rotoworld_id\":5838,\"active\":true,\"search_rank\":605,\"age\":32,\"full_name\":\"Jerry Hughes\",\"sportradar_id\":\"f40e0707-1bf5-44d4-b447-7c03255aa423\",\"pandascore_id\":null,\"yahoo_id\":24006,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Austin (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jerryhughes\",\"birth_date\":\"1988-08-13\",\"espn_id\":13245},\"NO\":{\"team\":\"NO\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"NO\",\"last_name\":\"Saints\",\"injury_status\":null,\"first_name\":\"New Orleans\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"4967\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034832\",\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606194650034,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chubb\",\"depth_chart_position\":\"WLB\",\"player_id\":\"4967\",\"birth_city\":null,\"fantasy_data_id\":19832,\"years_exp\":2,\"hashtag\":\"#BradleyChubb-NFL-DEN-55\",\"search_first_name\":\"bradley\",\"rotowire_id\":12877,\"rotoworld_id\":13103,\"active\":true,\"search_rank\":1292,\"age\":24,\"full_name\":\"Bradley Chubb\",\"sportradar_id\":\"66313049-299d-4e58-beb9-8e051ab6548a\",\"pandascore_id\":null,\"yahoo_id\":30975,\"last_name\":\"Chubb\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"North Carolina State\",\"high_school\":\"Hillgrove (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bradleychubb\",\"birth_date\":\"1996-06-24\",\"espn_id\":3116733},\"529\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027662\",\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605894001736,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dunlap\",\"depth_chart_position\":\"LDE\",\"player_id\":\"529\",\"birth_city\":null,\"fantasy_data_id\":11023,\"years_exp\":10,\"hashtag\":\"#CarlosDunlap-NFL-SEA-43\",\"search_first_name\":\"carlos\",\"rotowire_id\":6570,\"rotoworld_id\":null,\"active\":true,\"search_rank\":600,\"age\":31,\"full_name\":\"Carlos Dunlap\",\"sportradar_id\":\"e79d8a12-4ec0-46d3-ae42-384f16deebed\",\"pandascore_id\":null,\"yahoo_id\":24029,\"last_name\":\"Dunlap\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Fort Dorchester (SC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'6\\\"\",\"search_full_name\":\"carlosdunlap\",\"birth_date\":\"1989-02-28\",\"espn_id\":13274},\"6142\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035320\",\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606191349964,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"TE\",\"player_id\":\"6142\",\"birth_city\":null,\"fantasy_data_id\":20993,\"years_exp\":1,\"hashtag\":\"#CalebWilson-NFL-PHI-83\",\"search_first_name\":\"caleb\",\"rotowire_id\":13444,\"rotoworld_id\":14054,\"active\":true,\"search_rank\":582,\"age\":24,\"full_name\":\"Caleb Wilson\",\"sportradar_id\":\"a195e517-f732-4e55-a84c-2ce132a73c65\",\"pandascore_id\":null,\"yahoo_id\":32086,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":6,\"stats_id\":924062,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"calebwilson\",\"birth_date\":\"1996-07-15\",\"espn_id\":3932936},\"5635\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034589\",\"first_name\":\"Rashard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567785327263,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fant\",\"depth_chart_position\":null,\"player_id\":\"5635\",\"birth_city\":null,\"fantasy_data_id\":20427,\"years_exp\":2,\"hashtag\":\"#RashardFant-NFL-FA-29\",\"search_first_name\":\"rashard\",\"rotowire_id\":12955,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Rashard Fant\",\"sportradar_id\":\"d6f6362d-4e7d-4278-8471-780da7a203a7\",\"pandascore_id\":null,\"yahoo_id\":31658,\"last_name\":\"Fant\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'9\\\"\",\"search_full_name\":\"rashardfant\",\"birth_date\":\"1995-01-08\",\"espn_id\":3060794},\"2162\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jabari\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"2162\",\"birth_city\":null,\"fantasy_data_id\":16511,\"years_exp\":6,\"hashtag\":\"#JabariPrice-NFL-FA-24\",\"search_first_name\":\"jabari\",\"rotowire_id\":9666,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jabari Price\",\"sportradar_id\":\"4a2bd052-b9c3-439e-8bd0-6fbb50b1f1ad\",\"pandascore_id\":null,\"yahoo_id\":27753,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Blanche Ely (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jabariprice\",\"birth_date\":\"1992-08-31\",\"espn_id\":16878},\"3336\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032341\",\"first_name\":\"Moritz\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1596496505949,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"böhringer\",\"depth_chart_position\":null,\"player_id\":\"3336\",\"birth_city\":null,\"fantasy_data_id\":18097,\"years_exp\":4,\"hashtag\":\"#MoritzBöhringer-NFL-FA-0\",\"search_first_name\":\"moritz\",\"rotowire_id\":11212,\"rotoworld_id\":11470,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Moritz Böhringer\",\"sportradar_id\":\"d7fe9224-7bd7-40e5-a314-1152ed5334d5\",\"pandascore_id\":null,\"yahoo_id\":29414,\"last_name\":\"Böhringer\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":914919,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"moritzböhringer\",\"birth_date\":\"1993-10-16\",\"espn_id\":4002672},\"5421\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034541\",\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clay\",\"depth_chart_position\":null,\"player_id\":\"5421\",\"birth_city\":null,\"fantasy_data_id\":20313,\"years_exp\":2,\"hashtag\":\"#BJClay-NFL-FA-38\",\"search_first_name\":\"bj\",\"rotowire_id\":13045,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"B.J. Clay\",\"sportradar_id\":\"5f55d5e7-1ff5-4ace-830a-920fe46acb88\",\"pandascore_id\":null,\"yahoo_id\":31672,\"last_name\":\"Clay\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bjclay\",\"birth_date\":\"1995-01-18\",\"espn_id\":3124861},\"1377\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"elam\",\"depth_chart_position\":null,\"player_id\":\"1377\",\"birth_city\":null,\"fantasy_data_id\":14899,\"years_exp\":7,\"hashtag\":\"#MattElam-NFL-FA-26\",\"search_first_name\":\"matt\",\"rotowire_id\":8775,\"rotoworld_id\":8452,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Elam\",\"sportradar_id\":\"4be70f75-f978-4e90-92fd-70927c672931\",\"pandascore_id\":null,\"yahoo_id\":26655,\"last_name\":\"Elam\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542790,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mattelam\",\"birth_date\":\"1991-09-21\",\"espn_id\":15789},\"5968\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035155\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606497004393,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fields\",\"depth_chart_position\":null,\"player_id\":\"5968\",\"birth_city\":null,\"fantasy_data_id\":20758,\"years_exp\":1,\"hashtag\":\"#MarkFields-NFL-MIN-32\",\"search_first_name\":\"mark\",\"rotowire_id\":13646,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1531,\"age\":24,\"full_name\":\"Mark Fields\",\"sportradar_id\":\"f60017c5-e44c-4256-831f-86c8d8626481\",\"pandascore_id\":null,\"yahoo_id\":32357,\"last_name\":\"Fields\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"William A. Hough (NC)\",\"depth_chart_order\":null,\"stats_id\":867758,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"markfields\",\"birth_date\":\"1996-10-10\",\"espn_id\":3728261},\"6715\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smithson\",\"depth_chart_position\":null,\"player_id\":\"6715\",\"birth_city\":null,\"fantasy_data_id\":21640,\"years_exp\":0,\"hashtag\":\"#AnthonySmithson-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anthony Smithson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smithson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"anthonysmithson\",\"birth_date\":null,\"espn_id\":null},\"5242\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034133\",\"first_name\":\"Dontez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"byrd\",\"depth_chart_position\":null,\"player_id\":\"5242\",\"birth_city\":null,\"fantasy_data_id\":20225,\"years_exp\":2,\"hashtag\":\"#DontezByrd-NFL-FA-19\",\"search_first_name\":\"dontez\",\"rotowire_id\":13037,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dontez Byrd\",\"sportradar_id\":\"4903ce52-7c7e-4dd2-85b1-01a43c3fc334\",\"pandascore_id\":null,\"yahoo_id\":31350,\"last_name\":\"Byrd\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749129,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dontezbyrd\",\"birth_date\":\"1995-08-09\",\"espn_id\":3056691},\"7346\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rozeboom\",\"depth_chart_position\":null,\"player_id\":\"7346\",\"birth_city\":null,\"fantasy_data_id\":22334,\"years_exp\":0,\"hashtag\":\"#ChristianRozeboom-NFL-LAR-56\",\"search_first_name\":\"christian\",\"rotowire_id\":15090,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Christian Rozeboom\",\"sportradar_id\":\"49abd11f-fe2b-4d15-99ed-f316d2ec67e1\",\"pandascore_id\":null,\"yahoo_id\":33261,\"last_name\":\"Rozeboom\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":\"Soiux Center (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christianrozeboom\",\"birth_date\":\"1997-01-30\",\"espn_id\":3909013},\"4992\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034860\",\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606317361162,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"pettis\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4992\",\"birth_city\":null,\"fantasy_data_id\":19854,\"years_exp\":2,\"hashtag\":\"#DantePettis-NFL-NYG-13\",\"search_first_name\":\"dante\",\"rotowire_id\":12884,\"rotoworld_id\":13160,\"active\":true,\"search_rank\":309,\"age\":25,\"full_name\":\"Dante Pettis\",\"sportradar_id\":\"20d16690-560b-4a01-af20-8870ef07ea70\",\"pandascore_id\":null,\"yahoo_id\":31014,\"last_name\":\"Pettis\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"JSerra Catholic (CA)\",\"depth_chart_order\":2,\"stats_id\":837820,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dantepettis\",\"birth_date\":\"1995-10-23\",\"espn_id\":3127306},\"3722\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Don\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"3722\",\"birth_city\":null,\"fantasy_data_id\":18530,\"years_exp\":1,\"hashtag\":\"#DonJackson-NFL-FA-26\",\"search_first_name\":\"don\",\"rotowire_id\":11447,\"rotoworld_id\":11858,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Don Jackson\",\"sportradar_id\":\"1309f5b8-5d23-4dcc-9800-d30057f3b62e\",\"pandascore_id\":null,\"yahoo_id\":29731,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733768,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"5'10\\\"\",\"search_full_name\":\"donjackson\",\"birth_date\":\"1994-09-07\",\"espn_id\":3042945},\"972\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027943\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1590767151048,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peterson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"972\",\"birth_city\":null,\"fantasy_data_id\":13415,\"years_exp\":9,\"hashtag\":\"#PatrickPeterson-NFL-ARI-21\",\"search_first_name\":\"patrick\",\"rotowire_id\":7300,\"rotoworld_id\":6481,\"active\":true,\"search_rank\":647,\"age\":30,\"full_name\":\"Patrick Peterson\",\"sportradar_id\":\"9f3b934e-52d6-4e16-ae92-d3e60be10493\",\"pandascore_id\":null,\"yahoo_id\":24792,\"last_name\":\"Peterson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Ely (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"patrickpeterson\",\"birth_date\":\"1990-07-11\",\"espn_id\":13980},\"3270\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033121\",\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605581121613,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"goodson\",\"depth_chart_position\":\"MLB\",\"player_id\":\"3270\",\"birth_city\":null,\"fantasy_data_id\":18031,\"years_exp\":4,\"hashtag\":\"#BJGoodson-NFL-CLE-93\",\"search_first_name\":\"bj\",\"rotowire_id\":11043,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1000,\"age\":27,\"full_name\":\"B.J. Goodson\",\"sportradar_id\":\"981cfb99-ff6f-452e-806c-116f56a484a5\",\"pandascore_id\":null,\"yahoo_id\":29343,\"last_name\":\"Goodson\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Lamar (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bjgoodson\",\"birth_date\":\"1993-05-29\",\"espn_id\":2576489},\"3014\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031821\",\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"LB\"],\"news_updated\":1537320003810,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3014\",\"birth_city\":null,\"fantasy_data_id\":17561,\"years_exp\":5,\"hashtag\":\"#DarrellWilliams-NFL-FA-63\",\"search_first_name\":\"darrell\",\"rotowire_id\":10690,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Darrell Williams\",\"sportradar_id\":\"d3bd9fdf-b901-4f27-94b9-f02498754c4a\",\"pandascore_id\":null,\"yahoo_id\":29004,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Maynard Evans (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"darrellwilliams\",\"birth_date\":\"1993-08-03\",\"espn_id\":2577503},\"2406\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031566\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604352329519,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"flowers\",\"depth_chart_position\":null,\"player_id\":\"2406\",\"birth_city\":null,\"fantasy_data_id\":16862,\"years_exp\":5,\"hashtag\":\"#TreyFlowers-NFL-DET-90\",\"search_first_name\":\"trey\",\"rotowire_id\":10323,\"rotoworld_id\":10388,\"active\":true,\"search_rank\":887,\"age\":27,\"full_name\":\"Trey Flowers\",\"sportradar_id\":\"57deb6ba-ce26-4ccc-a859-adf0564fb78e\",\"pandascore_id\":null,\"yahoo_id\":28489,\"last_name\":\"Flowers\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Columbia (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"treyflowers\",\"birth_date\":\"1993-08-16\",\"espn_id\":2574519},\"906\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tanner\",\"depth_chart_position\":null,\"player_id\":\"906\",\"birth_city\":null,\"fantasy_data_id\":13130,\"years_exp\":3,\"hashtag\":\"#PhillipTanner-NFL-FA-25\",\"search_first_name\":\"phillip\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Phillip Tanner\",\"sportradar_id\":\"e2bcd797-862d-4c38-abc3-267fc4d555e2\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tanner\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"5'10\\\"\",\"search_full_name\":\"philliptanner\",\"birth_date\":\"1988-08-08\",\"espn_id\":14625},\"3083\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Howie\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roseman\",\"depth_chart_position\":null,\"player_id\":\"3083\",\"birth_city\":null,\"fantasy_data_id\":17833,\"years_exp\":0,\"hashtag\":\"#HowieRoseman-NFL-FA-0\",\"search_first_name\":\"howie\",\"rotowire_id\":null,\"rotoworld_id\":9508,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Howie Roseman\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Roseman\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"howieroseman\",\"birth_date\":null,\"espn_id\":null},\"1201\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"givens\",\"depth_chart_position\":null,\"player_id\":\"1201\",\"birth_city\":null,\"fantasy_data_id\":14405,\"years_exp\":8,\"hashtag\":\"#ChrisGivens-NFL-FA-19\",\"search_first_name\":\"chris\",\"rotowire_id\":8025,\"rotoworld_id\":7430,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Givens\",\"sportradar_id\":\"081f217e-4ecb-401d-9ab5-3f55528e5619\",\"pandascore_id\":null,\"yahoo_id\":25806,\"last_name\":\"Givens\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Wylie (TX)\",\"depth_chart_order\":null,\"stats_id\":463801,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisgivens\",\"birth_date\":\"1989-12-06\",\"espn_id\":15078},\"4391\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hope\",\"depth_chart_position\":null,\"player_id\":\"4391\",\"birth_city\":null,\"fantasy_data_id\":19250,\"years_exp\":2,\"hashtag\":\"#LarryHope-NFL-FA-33\",\"search_first_name\":\"larry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Larry Hope\",\"sportradar_id\":\"05b07797-a9dd-4f47-a66c-e1a1a61116b4\",\"pandascore_id\":null,\"yahoo_id\":30642,\"last_name\":\"Hope\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"larryhope\",\"birth_date\":\"1993-10-19\",\"espn_id\":2969957},\"542\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dorin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dickerson\",\"depth_chart_position\":null,\"player_id\":\"542\",\"birth_city\":null,\"fantasy_data_id\":11100,\"years_exp\":4,\"hashtag\":\"#DorinDickerson-NFL-FA-42\",\"search_first_name\":\"dorin\",\"rotowire_id\":6538,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dorin Dickerson\",\"sportradar_id\":\"eae0d42b-d336-4160-9375-b68e0b4a8b1a\",\"pandascore_id\":null,\"yahoo_id\":24203,\"last_name\":\"Dickerson\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dorindickerson\",\"birth_date\":\"1988-03-31\",\"espn_id\":13353},\"6617\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lindsey\",\"depth_chart_position\":null,\"player_id\":\"6617\",\"birth_city\":null,\"fantasy_data_id\":21382,\"years_exp\":1,\"hashtag\":\"#AndreLindsey-NFL-KC-7\",\"search_first_name\":\"andre\",\"rotowire_id\":14182,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Andre Lindsey\",\"sportradar_id\":\"f89a882d-d345-4966-82c4-528469b28eb6\",\"pandascore_id\":null,\"yahoo_id\":32362,\"last_name\":\"Lindsey\",\"metadata\":null,\"college\":\"Sacramento State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":922720,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andrelindsey\",\"birth_date\":null,\"espn_id\":4028212},\"6930\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trystan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coloncastillo\",\"depth_chart_position\":\"C\",\"player_id\":\"6930\",\"birth_city\":null,\"fantasy_data_id\":22010,\"years_exp\":0,\"hashtag\":\"#TrystanColonCastillo-NFL-BAL-63\",\"search_first_name\":\"trystan\",\"rotowire_id\":14519,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Trystan Colon-Castillo\",\"sportradar_id\":\"a3f67680-66f1-4efc-b21b-badd19467cc9\",\"pandascore_id\":null,\"yahoo_id\":32997,\"last_name\":\"Colon-Castillo\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Webb City (MO)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"trystancoloncastillo\",\"birth_date\":\"1998-03-23\",\"espn_id\":4035112},\"6345\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035204\",\"first_name\":\"Durrant\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miles\",\"depth_chart_position\":null,\"player_id\":\"6345\",\"birth_city\":null,\"fantasy_data_id\":21303,\"years_exp\":1,\"hashtag\":\"#DurrantMiles-NFL-FA-48\",\"search_first_name\":\"durrant\",\"rotowire_id\":14007,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Durrant Miles\",\"sportradar_id\":\"c4ec03a8-efda-456f-8916-c161b568d783\",\"pandascore_id\":null,\"yahoo_id\":32116,\"last_name\":\"Miles\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"durrantmiles\",\"birth_date\":\"1994-11-20\",\"espn_id\":3042883},\"5591\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034326\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1576993557354,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"5591\",\"birth_city\":null,\"fantasy_data_id\":20592,\"years_exp\":2,\"hashtag\":\"#RobertMcCray-NFL-FA-0\",\"search_first_name\":\"robert\",\"rotowire_id\":13420,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1495,\"age\":24,\"full_name\":\"Robert McCray\",\"sportradar_id\":\"cdcd43ee-b31d-42d3-adcf-8afb4458976e\",\"pandascore_id\":null,\"yahoo_id\":31523,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robertmccray\",\"birth_date\":\"1996-03-24\",\"espn_id\":3128264},\"424\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027078\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1553956841552,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lang\",\"depth_chart_position\":null,\"player_id\":\"424\",\"birth_city\":null,\"fantasy_data_id\":9050,\"years_exp\":11,\"hashtag\":\"#TJLang-NFL-FA-76\",\"search_first_name\":\"tj\",\"rotowire_id\":6337,\"rotoworld_id\":5343,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"T.J. Lang\",\"sportradar_id\":\"3ebbc479-fec5-4463-8eb1-b9b09b0d3bc2\",\"pandascore_id\":null,\"yahoo_id\":9373,\"last_name\":\"Lang\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":\"Brother Rice (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tjlang\",\"birth_date\":\"1987-09-20\",\"espn_id\":12680},\"447\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026814\",\"first_name\":\"Demar\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605469512299,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dotson\",\"depth_chart_position\":\"RT\",\"player_id\":\"447\",\"birth_city\":null,\"fantasy_data_id\":9223,\"years_exp\":11,\"hashtag\":\"#DemarDotson-NFL-DEN-78\",\"search_first_name\":\"demar\",\"rotowire_id\":9134,\"rotoworld_id\":5534,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Demar Dotson\",\"sportradar_id\":\"002a02ca-e569-410e-867d-e317bad07fd1\",\"pandascore_id\":null,\"yahoo_id\":9574,\"last_name\":\"Dotson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Southern Mississippi\",\"high_school\":\"Alexandria (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'9\\\"\",\"search_full_name\":\"demardotson\",\"birth_date\":\"1985-10-11\",\"espn_id\":13050},\"6904\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603123817037,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hurts\",\"depth_chart_position\":\"QB\",\"player_id\":\"6904\",\"birth_city\":null,\"fantasy_data_id\":21831,\"years_exp\":0,\"hashtag\":\"#JalenHurts-NFL-PHI-2\",\"search_first_name\":\"jalen\",\"rotowire_id\":14416,\"rotoworld_id\":null,\"active\":true,\"search_rank\":360,\"age\":22,\"full_name\":\"Jalen Hurts\",\"sportradar_id\":\"64bd0f02-6a5d-407e-98f1-fd02048ea21d\",\"pandascore_id\":null,\"yahoo_id\":32723,\"last_name\":\"Hurts\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Channelview (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jalenhurts\",\"birth_date\":\"1998-08-07\",\"espn_id\":4040715},\"4617\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033535\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604787609732,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":\"DT\",\"player_id\":\"4617\",\"birth_city\":null,\"fantasy_data_id\":19508,\"years_exp\":3,\"hashtag\":\"#DanielRoss-NFL-LV-93\",\"search_first_name\":\"daniel\",\"rotowire_id\":12455,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1271,\"age\":27,\"full_name\":\"Daniel Ross\",\"sportradar_id\":\"8bfbee63-feb4-4862-b3c8-08d2f65c8b5f\",\"pandascore_id\":null,\"yahoo_id\":30802,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"N.E. Mississippi CC\",\"high_school\":\"Jeffersontown (KY)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danielross\",\"birth_date\":\"1993-03-15\",\"espn_id\":4220624},\"793\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"aiken\",\"depth_chart_position\":null,\"player_id\":\"793\",\"birth_city\":null,\"fantasy_data_id\":12721,\"years_exp\":9,\"hashtag\":\"#DannyAiken-NFL-FA-57\",\"search_first_name\":\"danny\",\"rotowire_id\":8535,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Danny Aiken\",\"sportradar_id\":\"baaf6af2-1f0f-4af5-8488-05d441001c93\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Aiken\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Cave Spring (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dannyaiken\",\"birth_date\":\"1988-08-28\",\"espn_id\":14581},\"4245\":{\"position\":\"G\",\"injury_notes\":\"Fuller will miss 2 games due to violating the substance-abuse policy.\",\"birth_country\":null,\"gsis_id\":\"00-0033592\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605830714219,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":\"C\",\"player_id\":\"4245\",\"birth_city\":null,\"fantasy_data_id\":19091,\"years_exp\":3,\"hashtag\":\"#KyleFuller-NFL-SEA-61\",\"search_first_name\":\"kyle\",\"rotowire_id\":12221,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Fuller\",\"sportradar_id\":\"83ffd861-ffb0-4560-a79c-52acd2b6cb1e\",\"pandascore_id\":null,\"yahoo_id\":30356,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Wylie (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kylefuller\",\"birth_date\":\"1994-03-04\",\"espn_id\":2978933},\"709\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brice\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccain\",\"depth_chart_position\":null,\"player_id\":\"709\",\"birth_city\":null,\"fantasy_data_id\":12196,\"years_exp\":11,\"hashtag\":\"#BriceMcCain-NFL-FA-23\",\"search_first_name\":\"brice\",\"rotowire_id\":6241,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Brice McCain\",\"sportradar_id\":\"33a653a5-d73b-4502-85d2-42c087278a74\",\"pandascore_id\":null,\"yahoo_id\":9452,\"last_name\":\"McCain\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Terrell (TX)\",\"depth_chart_order\":null,\"stats_id\":286217,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"bricemccain\",\"birth_date\":\"1986-12-10\",\"espn_id\":12690},\"6392\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035614\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lloyd\",\"depth_chart_position\":null,\"player_id\":\"6392\",\"birth_city\":null,\"fantasy_data_id\":21397,\"years_exp\":1,\"hashtag\":\"#JonathanLloyd-NFL-FA-10\",\"search_first_name\":\"jonathan\",\"rotowire_id\":14050,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jonathan Lloyd\",\"sportradar_id\":\"70f40bb8-c6b3-4cdd-b9dd-547a090e1edd\",\"pandascore_id\":null,\"yahoo_id\":32176,\"last_name\":\"Lloyd\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820719,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathanlloyd\",\"birth_date\":\"1995-12-04\",\"espn_id\":3116559},\"5678\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034505\",\"first_name\":\"Ike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1536026106859,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boettger\",\"depth_chart_position\":\"RG\",\"player_id\":\"5678\",\"birth_city\":null,\"fantasy_data_id\":20252,\"years_exp\":2,\"hashtag\":\"#IkeBoettger-NFL-BUF-65\",\"search_first_name\":\"ike\",\"rotowire_id\":13226,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ike Boettger\",\"sportradar_id\":\"a4d45211-eb06-4c63-9487-ba4ad326893d\",\"pandascore_id\":null,\"yahoo_id\":31599,\"last_name\":\"Boettger\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Cedar Falls (IA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ikeboettger\",\"birth_date\":\"1994-10-05\",\"espn_id\":3040166},\"4589\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033673\",\"first_name\":\"Shakir\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588632631962,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"soto\",\"depth_chart_position\":\"RDT\",\"player_id\":\"4589\",\"birth_city\":null,\"fantasy_data_id\":19476,\"years_exp\":3,\"hashtag\":\"#ShakirSoto-NFL-FA-0\",\"search_first_name\":\"shakir\",\"rotowire_id\":12540,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Shakir Soto\",\"sportradar_id\":\"08bb1521-fd1c-4c1c-bcbe-114cadccc1c8\",\"pandascore_id\":null,\"yahoo_id\":30823,\"last_name\":\"Soto\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shakirsoto\",\"birth_date\":\"1994-02-12\",\"espn_id\":3045152},\"6771\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phil\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1579549204804,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"snow\",\"depth_chart_position\":null,\"player_id\":\"6771\",\"birth_city\":null,\"fantasy_data_id\":21833,\"years_exp\":0,\"hashtag\":\"#PhilSnow-NFL-FA-0\",\"search_first_name\":\"phil\",\"rotowire_id\":null,\"rotoworld_id\":14851,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Phil Snow\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Snow\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"philsnow\",\"birth_date\":null,\"espn_id\":null},\"1546\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030465\",\"first_name\":\"Kenjon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606279856481,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barner\",\"depth_chart_position\":\"RB\",\"player_id\":\"1546\",\"birth_city\":null,\"fantasy_data_id\":15185,\"years_exp\":7,\"hashtag\":\"#KenjonBarner-NFL-TB-44\",\"search_first_name\":\"kenjon\",\"rotowire_id\":8762,\"rotoworld_id\":8456,\"active\":true,\"search_rank\":737,\"age\":31,\"full_name\":\"Kenjon Barner\",\"sportradar_id\":\"5ec072b3-2837-4cf1-bb4f-ecd873949626\",\"pandascore_id\":null,\"yahoo_id\":26805,\"last_name\":\"Barner\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Notre Dame (CA)\",\"depth_chart_order\":5,\"stats_id\":459193,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kenjonbarner\",\"birth_date\":\"1989-04-28\",\"espn_id\":15921},\"5414\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034552\",\"first_name\":\"Bijhon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1578437742922,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":null,\"player_id\":\"5414\",\"birth_city\":null,\"fantasy_data_id\":20432,\"years_exp\":2,\"hashtag\":\"#BijhonJackson-NFL-FA-71\",\"search_first_name\":\"bijhon\",\"rotowire_id\":13049,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Bijhon Jackson\",\"sportradar_id\":\"d753a8d1-abb0-404a-ae73-ae8beab3d28f\",\"pandascore_id\":null,\"yahoo_id\":31681,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"339\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bijhonjackson\",\"birth_date\":\"1995-11-06\",\"espn_id\":3128698},\"5862\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035713\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606141512552,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burns\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5862\",\"birth_city\":null,\"fantasy_data_id\":21052,\"years_exp\":1,\"hashtag\":\"#BrianBurns-NFL-CAR-53\",\"search_first_name\":\"brian\",\"rotowire_id\":13439,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1650,\"age\":22,\"full_name\":\"Brian Burns\",\"sportradar_id\":\"dbf199a9-542e-4279-8764-3341b9f80910\",\"pandascore_id\":null,\"yahoo_id\":31848,\"last_name\":\"Burns\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"American Heritage (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brianburns\",\"birth_date\":\"1998-04-23\",\"espn_id\":4035631},\"2892\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031900\",\"first_name\":\"Rod\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1602024921737,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"RB\",\"player_id\":\"2892\",\"birth_city\":null,\"fantasy_data_id\":17360,\"years_exp\":5,\"hashtag\":\"#RodSmith-NFL-NYG-36\",\"search_first_name\":\"rod\",\"rotowire_id\":10630,\"rotoworld_id\":10784,\"active\":true,\"search_rank\":266,\"age\":28,\"full_name\":\"Rod Smith\",\"sportradar_id\":\"37339e36-741c-4c1c-a9ab-bd89ed866fa0\",\"pandascore_id\":null,\"yahoo_id\":28718,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Paul Harding (IN)\",\"depth_chart_order\":1,\"stats_id\":553688,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rodsmith\",\"birth_date\":\"1992-01-10\",\"espn_id\":2512197},\"6803\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606515028104,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"aiyuk\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6803\",\"birth_city\":null,\"fantasy_data_id\":21747,\"years_exp\":0,\"hashtag\":\"#BrandonAiyuk-NFL-SF-11\",\"search_first_name\":\"brandon\",\"rotowire_id\":14386,\"rotoworld_id\":null,\"active\":true,\"search_rank\":163,\"age\":22,\"full_name\":\"Brandon Aiyuk\",\"sportradar_id\":\"c90471cc-fa60-4416-9388-5aebb5d877eb\",\"pandascore_id\":null,\"yahoo_id\":32695,\"last_name\":\"Aiyuk\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Arizona State\",\"high_school\":\"McQueen (NV)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandonaiyuk\",\"birth_date\":\"1998-03-17\",\"espn_id\":4360438},\"4420\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033386\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602802842560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hollister\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4420\",\"birth_city\":null,\"fantasy_data_id\":19280,\"years_exp\":3,\"hashtag\":\"#CodyHollister-NFL-TEN-16\",\"search_first_name\":\"cody\",\"rotowire_id\":12926,\"rotoworld_id\":null,\"active\":true,\"search_rank\":331,\"age\":27,\"full_name\":\"Cody Hollister\",\"sportradar_id\":\"6a8b0081-6ac5-4eb7-8840-8fd633568e78\",\"pandascore_id\":null,\"yahoo_id\":30660,\"last_name\":\"Hollister\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Arkansas\",\"high_school\":\"Mountain View (OR)\",\"depth_chart_order\":3,\"stats_id\":696881,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'4\\\"\",\"search_full_name\":\"codyhollister\",\"birth_date\":\"1993-11-18\",\"espn_id\":3115443},\"6517\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035085\",\"first_name\":\"Randy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1601686840320,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ramsey\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6517\",\"birth_city\":null,\"fantasy_data_id\":21417,\"years_exp\":1,\"hashtag\":\"#RandyRamsey-NFL-GB-56\",\"search_first_name\":\"randy\",\"rotowire_id\":14106,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1730,\"age\":25,\"full_name\":\"Randy Ramsey\",\"sportradar_id\":\"3267e534-526e-4db8-8e1f-49fc7ee8aedb\",\"pandascore_id\":null,\"yahoo_id\":32276,\"last_name\":\"Ramsey\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Dillard (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'3\\\"\",\"search_full_name\":\"randyramsey\",\"birth_date\":\"1995-09-07\",\"espn_id\":3128675},\"6656\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035373\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"strachan\",\"depth_chart_position\":null,\"player_id\":\"6656\",\"birth_city\":null,\"fantasy_data_id\":20955,\"years_exp\":1,\"hashtag\":\"#ConnorStrachan-NFL-FA-49\",\"search_first_name\":\"connor\",\"rotowire_id\":14034,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Connor Strachan\",\"sportradar_id\":\"37aa17f7-890f-40ad-ad48-57d70f2708a9\",\"pandascore_id\":null,\"yahoo_id\":32100,\"last_name\":\"Strachan\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"connorstrachan\",\"birth_date\":\"1995-06-30\",\"espn_id\":3122794},\"3924\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clayton\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"echard\",\"depth_chart_position\":\"TE\",\"player_id\":\"3924\",\"birth_city\":null,\"fantasy_data_id\":18753,\"years_exp\":0,\"hashtag\":\"#ClaytonEchard-NFL-FA-85\",\"search_first_name\":\"clayton\",\"rotowire_id\":11621,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Clayton Echard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30052,\"last_name\":\"Echard\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"claytonechard\",\"birth_date\":\"1993-04-29\",\"espn_id\":2971428},\"4566\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033651\",\"first_name\":\"Karter\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1554782712458,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schult\",\"depth_chart_position\":null,\"player_id\":\"4566\",\"birth_city\":null,\"fantasy_data_id\":19450,\"years_exp\":3,\"hashtag\":\"#KarterSchult-NFL-FA-79\",\"search_first_name\":\"karter\",\"rotowire_id\":13314,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Karter Schult\",\"sportradar_id\":\"6bc64594-cdc1-4252-b896-dd3b667eccc2\",\"pandascore_id\":null,\"yahoo_id\":30546,\"last_name\":\"Schult\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'3\\\"\",\"search_full_name\":\"karterschult\",\"birth_date\":\"1993-12-21\",\"espn_id\":2986781},\"502\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bear\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pascoe\",\"depth_chart_position\":null,\"player_id\":\"502\",\"birth_city\":null,\"fantasy_data_id\":10291,\"years_exp\":11,\"hashtag\":\"#BearPascoe-NFL-FA-83\",\"search_first_name\":\"bear\",\"rotowire_id\":6125,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Bear Pascoe\",\"sportradar_id\":\"fe74dd16-c439-4cf9-89c2-958929fb6fa8\",\"pandascore_id\":null,\"yahoo_id\":9448,\"last_name\":\"Pascoe\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Granite Hills (CA)\",\"depth_chart_order\":null,\"stats_id\":267127,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bearpascoe\",\"birth_date\":\"1986-02-23\",\"espn_id\":12548},\"3972\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547004035698,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowles\",\"depth_chart_position\":null,\"player_id\":\"3972\",\"birth_city\":null,\"fantasy_data_id\":18806,\"years_exp\":0,\"hashtag\":\"#ToddBowles-NFL-FA-0\",\"search_first_name\":\"todd\",\"rotowire_id\":null,\"rotoworld_id\":8353,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Todd Bowles\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bowles\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"toddbowles\",\"birth_date\":null,\"espn_id\":null},\"3917\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033143\",\"first_name\":\"Kendal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1543975262282,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"3917\",\"birth_city\":null,\"fantasy_data_id\":18744,\"years_exp\":4,\"hashtag\":\"#KendalThompson-NFL-FA-15\",\"search_first_name\":\"kendal\",\"rotowire_id\":11611,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kendal Thompson\",\"sportradar_id\":\"eb0f2570-335f-48a7-85ea-9a061af084d2\",\"pandascore_id\":null,\"yahoo_id\":30045,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591964,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kendalthompson\",\"birth_date\":\"1992-05-14\",\"espn_id\":2577473},\"1032\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029409\",\"first_name\":\"Mychal\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604516127612,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kendricks\",\"depth_chart_position\":null,\"player_id\":\"1032\",\"birth_city\":null,\"fantasy_data_id\":13731,\"years_exp\":8,\"hashtag\":\"#MychalKendricks-NFL-SEA-56\",\"search_first_name\":\"mychal\",\"rotowire_id\":8207,\"rotoworld_id\":7509,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Mychal Kendricks\",\"sportradar_id\":\"7ec15a09-9237-43cc-9401-fb76cc418022\",\"pandascore_id\":null,\"yahoo_id\":25756,\"last_name\":\"Kendricks\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Hoover (CA)\",\"depth_chart_order\":null,\"stats_id\":461633,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mychalkendricks\",\"birth_date\":\"1990-09-28\",\"espn_id\":14978},\"187\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023448\",\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603642807116,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"187\",\"birth_city\":null,\"fantasy_data_id\":4895,\"years_exp\":15,\"hashtag\":\"#ThomasDavis-NFL-WAS-58\",\"search_first_name\":\"thomas\",\"rotowire_id\":4455,\"rotoworld_id\":3135,\"active\":true,\"search_rank\":592,\"age\":37,\"full_name\":\"Thomas Davis\",\"sportradar_id\":\"c8af316c-0e46-41ab-bce5-e63a1730c356\",\"pandascore_id\":null,\"yahoo_id\":7190,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Randolph-Clay (GA)\",\"depth_chart_order\":2,\"stats_id\":155917,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"thomasdavis\",\"birth_date\":\"1983-03-22\",\"espn_id\":8429},\"3832\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032918\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606012809485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ham\",\"depth_chart_position\":\"RB\",\"player_id\":\"3832\",\"birth_city\":null,\"fantasy_data_id\":18652,\"years_exp\":4,\"hashtag\":\"#CJHam-NFL-MIN-30\",\"search_first_name\":\"cj\",\"rotowire_id\":11599,\"rotoworld_id\":null,\"active\":true,\"search_rank\":325,\"age\":27,\"full_name\":\"C.J. Ham\",\"sportradar_id\":\"971fc9e5-bebb-4a2c-a822-8c52f92a3d07\",\"pandascore_id\":null,\"yahoo_id\":29951,\"last_name\":\"Ham\",\"metadata\":null,\"college\":\"Augustana, S.D.\",\"high_school\":\"Denfeld (MN)\",\"depth_chart_order\":5,\"stats_id\":915397,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cjham\",\"birth_date\":\"1993-07-22\",\"espn_id\":4012556},\"944\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028130\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1597798225771,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bosher\",\"depth_chart_position\":null,\"player_id\":\"944\",\"birth_city\":null,\"fantasy_data_id\":13281,\"years_exp\":9,\"hashtag\":\"#MattBosher-NFL-FA-5\",\"search_first_name\":\"matt\",\"rotowire_id\":7562,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Matt Bosher\",\"sportradar_id\":\"947ba5a9-71de-4cc5-839a-884cfa49544b\",\"pandascore_id\":null,\"yahoo_id\":24979,\"last_name\":\"Bosher\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Jupiter (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mattbosher\",\"birth_date\":\"1987-10-18\",\"espn_id\":14073},\"2272\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"2272\",\"birth_city\":null,\"fantasy_data_id\":16683,\"years_exp\":1,\"hashtag\":\"#ChaseDixon-NFL-FA-87\",\"search_first_name\":\"chase\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chase Dixon\",\"sportradar_id\":\"80b06dff-5672-4d4d-b652-aee34bde0ea1\",\"pandascore_id\":null,\"yahoo_id\":27802,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Central Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":558776,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chasedixon\",\"birth_date\":\"1991-05-30\",\"espn_id\":16988},\"4709\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033804\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1525908601978,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"4709\",\"birth_city\":null,\"fantasy_data_id\":19616,\"years_exp\":3,\"hashtag\":\"#StevenMoore-NFL-FA-62\",\"search_first_name\":\"steven\",\"rotowire_id\":12516,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Steven Moore\",\"sportradar_id\":\"6c8bf92c-4031-4ae8-84fe-4a47972b3bae\",\"pandascore_id\":null,\"yahoo_id\":30753,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"stevenmoore\",\"birth_date\":\"1993-09-28\",\"espn_id\":2978207},\"6375\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1557795921342,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"6375\",\"birth_city\":null,\"fantasy_data_id\":21320,\"years_exp\":1,\"hashtag\":\"#JeromeWashington-NFL-ARI-88\",\"search_first_name\":\"jerome\",\"rotowire_id\":13972,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jerome Washington\",\"sportradar_id\":\"b8edd278-b5cb-43b4-812f-468d8e5e84a3\",\"pandascore_id\":null,\"yahoo_id\":32163,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":866016,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeromewashington\",\"birth_date\":null,\"espn_id\":3672867},\"5494\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034569\",\"first_name\":\"Tyree\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1544577336367,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"5494\",\"birth_city\":null,\"fantasy_data_id\":20481,\"years_exp\":2,\"hashtag\":\"#TyreeRobinson-NFL-FA-49\",\"search_first_name\":\"tyree\",\"rotowire_id\":13065,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyree Robinson\",\"sportradar_id\":\"cc5b0099-b37f-438c-b0e2-5ffe0d7b6ad8\",\"pandascore_id\":null,\"yahoo_id\":31296,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyreerobinson\",\"birth_date\":\"1994-04-14\",\"espn_id\":3052080},\"3909\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033138\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606254054038,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ficken\",\"depth_chart_position\":\"K\",\"player_id\":\"3909\",\"birth_city\":null,\"fantasy_data_id\":18735,\"years_exp\":4,\"hashtag\":\"#SamFicken-NFL-NYJ-9\",\"search_first_name\":\"sam\",\"rotowire_id\":11610,\"rotoworld_id\":12088,\"active\":true,\"search_rank\":409,\"age\":27,\"full_name\":\"Sam Ficken\",\"sportradar_id\":\"f61e6429-3f9b-478c-8697-e00fe813ce9c\",\"pandascore_id\":null,\"yahoo_id\":30038,\"last_name\":\"Ficken\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Valparaiso (IN)\",\"depth_chart_order\":2,\"stats_id\":609487,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'1\\\"\",\"search_full_name\":\"samficken\",\"birth_date\":\"1992-12-14\",\"espn_id\":2582139},\"2813\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032290\",\"first_name\":\"Trovon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532718905296,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"2813\",\"birth_city\":null,\"fantasy_data_id\":17281,\"years_exp\":5,\"hashtag\":\"#TrovonReed-NFL-FA-34\",\"search_first_name\":\"trovon\",\"rotowire_id\":10840,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Trovon Reed\",\"sportradar_id\":\"20da5dae-7faa-42d0-8b97-0ce3e3beee43\",\"pandascore_id\":null,\"yahoo_id\":28715,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557138,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trovonreed\",\"birth_date\":\"1990-12-30\",\"espn_id\":2512218},\"3172\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032378\",\"first_name\":\"DeForest\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606493403427,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"buckner\",\"depth_chart_position\":null,\"player_id\":\"3172\",\"birth_city\":null,\"fantasy_data_id\":17933,\"years_exp\":4,\"hashtag\":\"#DeForestBuckner-NFL-IND-99\",\"search_first_name\":\"deforest\",\"rotowire_id\":10925,\"rotoworld_id\":11273,\"active\":true,\"search_rank\":950,\"age\":26,\"full_name\":\"DeForest Buckner\",\"sportradar_id\":\"d97529e5-f1cd-4fe0-8697-4b51bbe52fd4\",\"pandascore_id\":null,\"yahoo_id\":29241,\"last_name\":\"Buckner\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Honolulu Punahou (HI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'7\\\"\",\"search_full_name\":\"deforestbuckner\",\"birth_date\":\"1994-03-17\",\"espn_id\":2971282},\"3472\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032634\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1542070213376,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grinnage\",\"depth_chart_position\":null,\"player_id\":\"3472\",\"birth_city\":null,\"fantasy_data_id\":18236,\"years_exp\":4,\"hashtag\":\"#DavidGrinnage-NFL-FA-86\",\"search_first_name\":\"david\",\"rotowire_id\":10777,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Grinnage\",\"sportradar_id\":\"339a0e9a-cb90-483a-8d68-9492d5a4a3f6\",\"pandascore_id\":null,\"yahoo_id\":29728,\"last_name\":\"Grinnage\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691627,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidgrinnage\",\"birth_date\":\"1994-02-24\",\"espn_id\":2970038},\"5869\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035266\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605142207972,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jordan\",\"depth_chart_position\":\"LG\",\"player_id\":\"5869\",\"birth_city\":null,\"fantasy_data_id\":20844,\"years_exp\":1,\"hashtag\":\"#MichaelJordan-NFL-CIN-60\",\"search_first_name\":\"michael\",\"rotowire_id\":13544,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Michael Jordan\",\"sportradar_id\":\"3dec63e9-ad9d-4d1f-8ba2-102d9474df2c\",\"pandascore_id\":null,\"yahoo_id\":31968,\"last_name\":\"Jordan\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Plymouth (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"michaeljordan\",\"birth_date\":\"1998-01-25\",\"espn_id\":4040622},\"2061\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gardner\",\"depth_chart_position\":null,\"player_id\":\"2061\",\"birth_city\":null,\"fantasy_data_id\":16363,\"years_exp\":2,\"hashtag\":\"#BenGardner-NFL-FA-49\",\"search_first_name\":\"ben\",\"rotowire_id\":9417,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ben Gardner\",\"sportradar_id\":\"e5002def-032c-4191-9b74-225f1ccd30bf\",\"pandascore_id\":null,\"yahoo_id\":27759,\"last_name\":\"Gardner\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bengardner\",\"birth_date\":\"1991-04-29\",\"espn_id\":16839},\"3424\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032946\",\"first_name\":\"De'Vante\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1552699230957,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"3424\",\"birth_city\":null,\"fantasy_data_id\":18188,\"years_exp\":4,\"hashtag\":\"#DeVanteHarris-NFL-FA-22\",\"search_first_name\":\"devante\",\"rotowire_id\":11053,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"De'Vante Harris\",\"sportradar_id\":\"e5bd7067-d9ac-4aee-a073-3f345cf8191c\",\"pandascore_id\":null,\"yahoo_id\":29847,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690768,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'11\\\"\",\"search_full_name\":\"devanteharris\",\"birth_date\":\"1993-06-30\",\"espn_id\":2972273},\"535\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601647806747,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":null,\"player_id\":\"535\",\"birth_city\":null,\"fantasy_data_id\":11054,\"years_exp\":10,\"hashtag\":\"#TJWard-NFL-ARI-43\",\"search_first_name\":\"tj\",\"rotowire_id\":6657,\"rotoworld_id\":5877,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"T.J. Ward\",\"sportradar_id\":\"cca4c795-7fa2-479c-9395-dff76a0abb20\",\"pandascore_id\":null,\"yahoo_id\":24013,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"De La Salle (CA)\",\"depth_chart_order\":null,\"stats_id\":324267,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tjward\",\"birth_date\":\"1986-12-12\",\"espn_id\":13304},\"4397\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joby Saint\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleur\",\"depth_chart_position\":null,\"player_id\":\"4397\",\"birth_city\":null,\"fantasy_data_id\":19256,\"years_exp\":3,\"hashtag\":\"#JobySaintFleur-NFL-FA-67\",\"search_first_name\":\"jobysaint\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joby Saint Fleur\",\"sportradar_id\":\"006947a5-f7db-4c4d-bc80-a74fba5881b8\",\"pandascore_id\":null,\"yahoo_id\":30649,\"last_name\":\"Fleur\",\"metadata\":null,\"college\":\"NW Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jobysaintfleur\",\"birth_date\":\"1992-11-11\",\"espn_id\":4213004},\"4732\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":null,\"player_id\":\"4732\",\"birth_city\":null,\"fantasy_data_id\":19646,\"years_exp\":2,\"hashtag\":\"#AJJefferson-NFL-FA-69\",\"search_first_name\":\"aj\",\"rotowire_id\":12266,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"AJ Jefferson\",\"sportradar_id\":\"311e9ae6-aa98-4b19-a949-dd787a04633a\",\"pandascore_id\":null,\"yahoo_id\":30878,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ajjefferson\",\"birth_date\":\"1993-03-03\",\"espn_id\":2971380},\"3355\":{\"position\":\"WR\",\"injury_notes\":\"Core was placed on Injured Reserve after suffering the injury during practice.\",\"birth_country\":null,\"gsis_id\":\"00-0032795\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1597879229353,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"core\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3355\",\"birth_city\":null,\"fantasy_data_id\":18116,\"years_exp\":4,\"hashtag\":\"#CodyCore-NFL-NYG-17\",\"search_first_name\":\"cody\",\"rotowire_id\":10981,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cody Core\",\"sportradar_id\":\"fa6b16fe-d3cd-4296-a0e6-03ad13d27a57\",\"pandascore_id\":null,\"yahoo_id\":29433,\"last_name\":\"Core\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Auburn (AL)\",\"depth_chart_order\":3,\"stats_id\":694662,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"codycore\",\"birth_date\":\"1994-04-17\",\"espn_id\":2980378},\"6956\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606330202226,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"asiasi\",\"depth_chart_position\":\"TE\",\"player_id\":\"6956\",\"birth_city\":null,\"fantasy_data_id\":21771,\"years_exp\":0,\"hashtag\":\"#DevinAsiasi-NFL-NE-86\",\"search_first_name\":\"devin\",\"rotowire_id\":14425,\"rotoworld_id\":null,\"active\":true,\"search_rank\":330,\"age\":23,\"full_name\":\"Devin Asiasi\",\"sportradar_id\":\"05e15d81-6bb1-49f7-b677-63475d073961\",\"pandascore_id\":null,\"yahoo_id\":32761,\"last_name\":\"Asiasi\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"UCLA\",\"high_school\":\"De La Salle (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"devinasiasi\",\"birth_date\":\"1997-08-14\",\"espn_id\":4046522},\"1847\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jemea\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"1847\",\"birth_city\":null,\"fantasy_data_id\":16054,\"years_exp\":1,\"hashtag\":\"#JemeaThomas-NFL-FA-35\",\"search_first_name\":\"jemea\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jemea Thomas\",\"sportradar_id\":\"b293de60-1d57-4868-8463-d6b7370cb54c\",\"pandascore_id\":null,\"yahoo_id\":27734,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jemeathomas\",\"birth_date\":\"1990-04-07\",\"espn_id\":16817},\"1962\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1962\",\"birth_city\":null,\"fantasy_data_id\":16217,\"years_exp\":1,\"hashtag\":\"#ChrisMartin-NFL-FA-62\",\"search_first_name\":\"chris\",\"rotowire_id\":10100,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chris Martin\",\"sportradar_id\":\"7479200b-8d5f-47f0-a53f-82a53e5c8e9f\",\"pandascore_id\":null,\"yahoo_id\":28200,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrismartin\",\"birth_date\":\"1990-01-10\",\"espn_id\":null},\"220\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeMeco\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ryans\",\"depth_chart_position\":null,\"player_id\":\"220\",\"birth_city\":null,\"fantasy_data_id\":5476,\"years_exp\":14,\"hashtag\":\"#DeMecoRyans-NFL-FA-59\",\"search_first_name\":\"demeco\",\"rotowire_id\":4919,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"DeMeco Ryans\",\"sportradar_id\":\"acb46e0c-3826-49e4-a1f6-15ca2ceceb01\",\"pandascore_id\":null,\"yahoo_id\":7782,\"last_name\":\"Ryans\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Jess Lanier (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'1\\\"\",\"search_full_name\":\"demecoryans\",\"birth_date\":\"1984-07-28\",\"espn_id\":9619},\"7349\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyrique\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcghee\",\"depth_chart_position\":null,\"player_id\":\"7349\",\"birth_city\":null,\"fantasy_data_id\":22337,\"years_exp\":0,\"hashtag\":\"#TyriqueMcGhee-NFL-LAR-37\",\"search_first_name\":\"tyrique\",\"rotowire_id\":15089,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tyrique McGhee\",\"sportradar_id\":\"22666f2a-8d3f-45ed-9cc6-3349f838291d\",\"pandascore_id\":null,\"yahoo_id\":33257,\"last_name\":\"McGhee\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Peach County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tyriquemcghee\",\"birth_date\":\"1998-08-11\",\"espn_id\":4035013},\"6892\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599590149560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stanley\",\"depth_chart_position\":\"QB\",\"player_id\":\"6892\",\"birth_city\":null,\"fantasy_data_id\":21812,\"years_exp\":0,\"hashtag\":\"#NateStanley-NFL-MIN-7\",\"search_first_name\":\"nate\",\"rotowire_id\":14566,\"rotoworld_id\":null,\"active\":true,\"search_rank\":567,\"age\":23,\"full_name\":\"Nate Stanley\",\"sportradar_id\":\"fa781bd3-04ed-4536-8d48-af9742c8aa13\",\"pandascore_id\":null,\"yahoo_id\":32914,\"last_name\":\"Stanley\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Menomonie (WI)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'4\\\"\",\"search_full_name\":\"natestanley\",\"birth_date\":\"1997-08-26\",\"espn_id\":4036149},\"1906\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"krause\",\"depth_chart_position\":null,\"player_id\":\"1906\",\"birth_city\":null,\"fantasy_data_id\":16134,\"years_exp\":6,\"hashtag\":\"#JonathanKrause-NFL-FA-17\",\"search_first_name\":\"jonathan\",\"rotowire_id\":9729,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jonathan Krause\",\"sportradar_id\":\"32019ecd-7510-4b75-bbb2-6e4ccc241bec\",\"pandascore_id\":null,\"yahoo_id\":28020,\"last_name\":\"Krause\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"South Gwinnett (GA)\",\"depth_chart_order\":null,\"stats_id\":555646,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jonathankrause\",\"birth_date\":\"1992-01-18\",\"espn_id\":17194},\"5244\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034141\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606174216184,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5244\",\"birth_city\":null,\"fantasy_data_id\":20227,\"years_exp\":2,\"hashtag\":\"#DevinGray-NFL-ATL-19\",\"search_first_name\":\"devin\",\"rotowire_id\":13085,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1437,\"age\":25,\"full_name\":\"Devin Gray\",\"sportradar_id\":\"35b82de6-eded-4f37-9bcd-33eb8ed001bd\",\"pandascore_id\":null,\"yahoo_id\":31349,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Reed (NV)\",\"depth_chart_order\":3,\"stats_id\":911032,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"devingray\",\"birth_date\":\"1995-06-15\",\"espn_id\":4037481},\"SF\":{\"team\":\"SF\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"SF\",\"last_name\":\"49ers\",\"injury_status\":null,\"first_name\":\"San Francisco\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"295\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tarell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"295\",\"birth_city\":null,\"fantasy_data_id\":7350,\"years_exp\":13,\"hashtag\":\"#TarellBrown-NFL-FA-25\",\"search_first_name\":\"tarell\",\"rotowire_id\":6200,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Tarell Brown\",\"sportradar_id\":\"a058c9ae-39c8-4112-870d-607b26bbb7e7\",\"pandascore_id\":null,\"yahoo_id\":8401,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"North (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tarellbrown\",\"birth_date\":\"1985-01-06\",\"espn_id\":10590},\"1010\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":null,\"player_id\":\"1010\",\"birth_city\":null,\"fantasy_data_id\":13608,\"years_exp\":11,\"hashtag\":\"#PhillipHunt-NFL-FA-97\",\"search_first_name\":\"phillip\",\"rotowire_id\":7876,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Phillip Hunt\",\"sportradar_id\":\"bb749a3c-2147-4dc5-a864-0b26b87b018e\",\"pandascore_id\":null,\"yahoo_id\":24785,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Dunbar (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'1\\\"\",\"search_full_name\":\"philliphunt\",\"birth_date\":\"1986-01-10\",\"espn_id\":12989},\"3986\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033187\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1541280893950,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richards\",\"depth_chart_position\":null,\"player_id\":\"3986\",\"birth_city\":null,\"fantasy_data_id\":18821,\"years_exp\":3,\"hashtag\":\"#JeffRichards-NFL-FA-29\",\"search_first_name\":\"jeff\",\"rotowire_id\":11704,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jeff Richards\",\"sportradar_id\":\"6775c8ae-1966-43c6-a61a-147ea5d112ff\",\"pandascore_id\":null,\"yahoo_id\":30093,\"last_name\":\"Richards\",\"metadata\":null,\"college\":\"Emporia State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeffrichards\",\"birth_date\":\"1991-01-03\",\"espn_id\":4084949},\"3938\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zamir\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carlis\",\"depth_chart_position\":null,\"player_id\":\"3938\",\"birth_city\":null,\"fantasy_data_id\":18771,\"years_exp\":1,\"hashtag\":\"#ZamirCarlis-NFL-FA-91\",\"search_first_name\":\"zamir\",\"rotowire_id\":11650,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Zamir Carlis\",\"sportradar_id\":\"2fc3686b-73e3-4e4d-9c5f-f5f93e10171a\",\"pandascore_id\":null,\"yahoo_id\":30067,\"last_name\":\"Carlis\",\"metadata\":null,\"college\":\"Stillman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'4\\\"\",\"search_full_name\":\"zamircarlis\",\"birth_date\":\"1990-03-14\",\"espn_id\":null},\"978\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunter\",\"depth_chart_position\":null,\"player_id\":\"978\",\"birth_city\":null,\"fantasy_data_id\":13440,\"years_exp\":9,\"hashtag\":\"#KendallHunter-NFL-FA-48\",\"search_first_name\":\"kendall\",\"rotowire_id\":7358,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kendall Hunter\",\"sportradar_id\":\"7bf077c7-40f9-4015-ac73-93f1b7418a24\",\"pandascore_id\":null,\"yahoo_id\":24902,\"last_name\":\"Hunter\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"John Tyler (TX)\",\"depth_chart_order\":null,\"stats_id\":397505,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'7\\\"\",\"search_full_name\":\"kendallhunter\",\"birth_date\":\"1988-09-16\",\"espn_id\":14159},\"1973\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newsome\",\"depth_chart_position\":null,\"player_id\":\"1973\",\"birth_city\":null,\"fantasy_data_id\":16234,\"years_exp\":6,\"hashtag\":\"#JonathanNewsome-NFL-FA-91\",\"search_first_name\":\"jonathan\",\"rotowire_id\":9605,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jonathan Newsome\",\"sportradar_id\":\"0bedbbbe-83b5-4d3e-ab68-717702b0c6b4\",\"pandascore_id\":null,\"yahoo_id\":27694,\"last_name\":\"Newsome\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonathannewsome\",\"birth_date\":\"1991-01-22\",\"espn_id\":16867},\"7383\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dana\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"levine\",\"depth_chart_position\":null,\"player_id\":\"7383\",\"birth_city\":null,\"fantasy_data_id\":22369,\"years_exp\":0,\"hashtag\":\"#DanaLevine-NFL-FA-0\",\"search_first_name\":\"dana\",\"rotowire_id\":14932,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dana Levine\",\"sportradar_id\":\"1f5cddad-551b-48bf-b4be-e49b7b97a78f\",\"pandascore_id\":null,\"yahoo_id\":33054,\"last_name\":\"Levine\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danalevine\",\"birth_date\":\"1996-12-19\",\"espn_id\":null},\"5483\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034185\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604250618980,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lancaster\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5483\",\"birth_city\":null,\"fantasy_data_id\":20288,\"years_exp\":2,\"hashtag\":\"#TylerLancaster-NFL-GB-95\",\"search_first_name\":\"tyler\",\"rotowire_id\":13114,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1443,\"age\":26,\"full_name\":\"Tyler Lancaster\",\"sportradar_id\":\"ca113409-c714-40f8-82db-727eae1e455e\",\"pandascore_id\":null,\"yahoo_id\":31436,\"last_name\":\"Lancaster\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Plainfield East (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tylerlancaster\",\"birth_date\":\"1994-11-04\",\"espn_id\":3045242},\"7043\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1596414320255,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"7043\",\"birth_city\":null,\"fantasy_data_id\":21988,\"years_exp\":0,\"hashtag\":\"#BlakeFerguson-NFL-MIA-50\",\"search_first_name\":\"blake\",\"rotowire_id\":14651,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Blake Ferguson\",\"sportradar_id\":\"1b3524b6-bc24-4d9a-947f-ebda67be1c41\",\"pandascore_id\":null,\"yahoo_id\":32855,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Buford (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"blakeferguson\",\"birth_date\":\"1997-04-21\",\"espn_id\":3843470},\"5177\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1529019301463,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"5177\",\"birth_city\":null,\"fantasy_data_id\":20172,\"years_exp\":0,\"hashtag\":\"#AaronDavis-NFL-TB-28\",\"search_first_name\":\"aaron\",\"rotowire_id\":13274,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Aaron Davis\",\"sportradar_id\":\"c6c82ca9-bdb5-4ee2-be40-97bcfaf580af\",\"pandascore_id\":null,\"yahoo_id\":31550,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'1\\\"\",\"search_full_name\":\"aarondavis\",\"birth_date\":null,\"espn_id\":3115259},\"6102\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035384\",\"first_name\":\"Iosua\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599953154010,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"opeta\",\"depth_chart_position\":\"RG\",\"player_id\":\"6102\",\"birth_city\":null,\"fantasy_data_id\":20902,\"years_exp\":1,\"hashtag\":\"#IosuaOpeta-NFL-PHI-78\",\"search_first_name\":\"iosua\",\"rotowire_id\":13880,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Iosua Opeta\",\"sportradar_id\":\"db390635-a7ce-4508-9c58-4ac1c36740df\",\"pandascore_id\":null,\"yahoo_id\":32406,\"last_name\":\"Opeta\",\"metadata\":null,\"college\":\"Weber State\",\"high_school\":\"Stansbury (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"iosuaopeta\",\"birth_date\":\"1996-08-15\",\"espn_id\":3121009},\"4487\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"4487\",\"birth_city\":null,\"fantasy_data_id\":19355,\"years_exp\":2,\"hashtag\":\"#AaronTaylor-NFL-FA-37\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Aaron Taylor\",\"sportradar_id\":\"3c3d187d-4a6e-4978-a595-f65284de3ec8\",\"pandascore_id\":null,\"yahoo_id\":30698,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"aarontaylor\",\"birth_date\":\"1993-12-25\",\"espn_id\":2972063},\"1970\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533161402357,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mewhort\",\"depth_chart_position\":null,\"player_id\":\"1970\",\"birth_city\":null,\"fantasy_data_id\":16231,\"years_exp\":6,\"hashtag\":\"#JackMewhort-NFL-FA-75\",\"search_first_name\":\"jack\",\"rotowire_id\":9420,\"rotoworld_id\":9639,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jack Mewhort\",\"sportradar_id\":\"0fa7b955-04fe-4d85-b9f1-6ce4db29c9e8\",\"pandascore_id\":null,\"yahoo_id\":27587,\"last_name\":\"Mewhort\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Saint John's Jesuit (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jackmewhort\",\"birth_date\":\"1990-08-30\",\"espn_id\":16745},\"3488\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032577\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1605914403496,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":\"RB\",\"player_id\":\"3488\",\"birth_city\":null,\"fantasy_data_id\":18253,\"years_exp\":4,\"hashtag\":\"#DJFoster-NFL-ARI-37\",\"search_first_name\":\"dj\",\"rotowire_id\":11004,\"rotoworld_id\":11565,\"active\":true,\"search_rank\":562,\"age\":27,\"full_name\":\"D.J. Foster\",\"sportradar_id\":\"39d12962-65a4-4107-8924-56f48fce31ef\",\"pandascore_id\":null,\"yahoo_id\":29872,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Saguaro (AZ)\",\"depth_chart_order\":5,\"stats_id\":652764,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"djfoster\",\"birth_date\":\"1993-11-22\",\"espn_id\":2978124},\"7196\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1604553930621,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"willoughby\",\"depth_chart_position\":null,\"player_id\":\"7196\",\"birth_city\":null,\"fantasy_data_id\":22198,\"years_exp\":0,\"hashtag\":\"#MarcusWilloughby-NFL-NO-91\",\"search_first_name\":\"marcus\",\"rotowire_id\":15136,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Marcus Willoughby\",\"sportradar_id\":\"f183ef7c-c45f-4f31-9d54-2d5a94c4cfee\",\"pandascore_id\":null,\"yahoo_id\":33011,\"last_name\":\"Willoughby\",\"metadata\":null,\"college\":\"Elon\",\"high_school\":\"Durham Riverside (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marcuswilloughby\",\"birth_date\":\"1998-07-26\",\"espn_id\":4027908},\"4231\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033962\",\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596073211722,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"brantley\",\"depth_chart_position\":null,\"player_id\":\"4231\",\"birth_city\":null,\"fantasy_data_id\":19077,\"years_exp\":3,\"hashtag\":\"#CalebBrantley-NFL-WAS-96\",\"search_first_name\":\"caleb\",\"rotowire_id\":11904,\"rotoworld_id\":12389,\"active\":true,\"search_rank\":1211,\"age\":26,\"full_name\":\"Caleb Brantley\",\"sportradar_id\":\"fe1a1b0d-1d0e-496c-8777-2b5aff1f7231\",\"pandascore_id\":null,\"yahoo_id\":30298,\"last_name\":\"Brantley\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Crescent City (FL)\",\"depth_chart_order\":null,\"stats_id\":748605,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'2\\\"\",\"search_full_name\":\"calebbrantley\",\"birth_date\":\"1994-09-02\",\"espn_id\":3054950},\"6960\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606251353995,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6960\",\"birth_city\":null,\"fantasy_data_id\":21675,\"years_exp\":0,\"hashtag\":\"#TylerJohnson-NFL-TB-18\",\"search_first_name\":\"tyler\",\"rotowire_id\":14432,\"rotoworld_id\":null,\"active\":true,\"search_rank\":383,\"age\":22,\"full_name\":\"Tyler Johnson\",\"sportradar_id\":\"93c17735-5275-45cf-b3ef-620351c62313\",\"pandascore_id\":null,\"yahoo_id\":32831,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"North (MN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylerjohnson\",\"birth_date\":\"1998-08-25\",\"espn_id\":2310331},\"6891\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Markus\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596394518731,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":\"LB\",\"player_id\":\"6891\",\"birth_city\":null,\"fantasy_data_id\":21911,\"years_exp\":0,\"hashtag\":\"#MarkusBailey-NFL-CIN-51\",\"search_first_name\":\"markus\",\"rotowire_id\":14736,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1833,\"age\":23,\"full_name\":\"Markus Bailey\",\"sportradar_id\":\"cbe52cf7-a9fe-495c-bd77-3a22a7f7208f\",\"pandascore_id\":null,\"yahoo_id\":32885,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Hilliard Davidson (OH)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"markusbailey\",\"birth_date\":\"1997-03-07\",\"espn_id\":3917992},\"2928\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":null,\"player_id\":\"2928\",\"birth_city\":null,\"fantasy_data_id\":17397,\"years_exp\":1,\"hashtag\":\"#JohnPeters-NFL-FA-48\",\"search_first_name\":\"john\",\"rotowire_id\":10857,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"John Peters\",\"sportradar_id\":\"cf473601-ce31-4fef-8771-66735cb206b7\",\"pandascore_id\":null,\"yahoo_id\":29009,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Mount St. Joseph\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870642,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'8\\\"\",\"search_full_name\":\"johnpeters\",\"birth_date\":\"1992-04-29\",\"espn_id\":3894752},\"7307\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"townsend\",\"depth_chart_position\":\"PK\",\"player_id\":\"7307\",\"birth_city\":null,\"fantasy_data_id\":22300,\"years_exp\":0,\"hashtag\":\"#TommyTownsend-NFL-KC-5\",\"search_first_name\":\"tommy\",\"rotowire_id\":14574,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tommy Townsend\",\"sportradar_id\":\"edfc712a-54f7-4c34-a838-c50c14dbf7dc\",\"pandascore_id\":null,\"yahoo_id\":32960,\"last_name\":\"Townsend\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Boone (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"176\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tommytownsend\",\"birth_date\":\"1996-11-12\",\"espn_id\":3915398},\"3020\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"light\",\"depth_chart_position\":null,\"player_id\":\"3020\",\"birth_city\":null,\"fantasy_data_id\":17573,\"years_exp\":0,\"hashtag\":\"#DanLight-NFL-FA-84\",\"search_first_name\":\"dan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dan Light\",\"sportradar_id\":\"a353fbfa-ad0c-4fb5-8880-850b4b640e52\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Light\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":600363,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"danlight\",\"birth_date\":\"1993-05-05\",\"espn_id\":null},\"5287\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bridgewater\",\"depth_chart_position\":null,\"player_id\":\"5287\",\"birth_city\":null,\"fantasy_data_id\":20369,\"years_exp\":0,\"hashtag\":\"#BrianBridgewater-NFL-FA-85\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brian Bridgewater\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bridgewater\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brianbridgewater\",\"birth_date\":null,\"espn_id\":3064518},\"4934\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4934\",\"birth_city\":null,\"fantasy_data_id\":19546,\"years_exp\":1,\"hashtag\":\"#JalenWilliams-NFL-NYG-0\",\"search_first_name\":\"jalen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jalen Williams\",\"sportradar_id\":\"03c4649f-744b-4d55-8556-40cca218b6fb\",\"pandascore_id\":null,\"yahoo_id\":30743,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jalenwilliams\",\"birth_date\":null,\"espn_id\":null},\"1204\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029690\",\"first_name\":\"Trumaine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600618806287,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1204\",\"birth_city\":null,\"fantasy_data_id\":14414,\"years_exp\":8,\"hashtag\":\"#TrumaineJohnson-NFL-CAR-22\",\"search_first_name\":\"trumaine\",\"rotowire_id\":8167,\"rotoworld_id\":7530,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Trumaine Johnson\",\"sportradar_id\":\"e4538897-a749-41a8-8220-332e8229ac41\",\"pandascore_id\":null,\"yahoo_id\":25775,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":\"Edison (CA)\",\"depth_chart_order\":null,\"stats_id\":459816,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trumainejohnson\",\"birth_date\":\"1990-01-01\",\"espn_id\":14989},\"1246\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1246\",\"birth_city\":null,\"fantasy_data_id\":14593,\"years_exp\":3,\"hashtag\":\"#DominiqueJones-NFL-FA-85\",\"search_first_name\":\"dominique\",\"rotowire_id\":8361,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Dominique Jones\",\"sportradar_id\":\"c879fa29-f881-4557-86a2-c9d6cee627a6\",\"pandascore_id\":null,\"yahoo_id\":26203,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Shepherd - WV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":655153,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dominiquejones\",\"birth_date\":\"1987-08-15\",\"espn_id\":15383},\"7091\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604440545581,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":null,\"player_id\":\"7091\",\"birth_city\":null,\"fantasy_data_id\":21969,\"years_exp\":0,\"hashtag\":\"#AaronParker-NFL-DAL-18\",\"search_first_name\":\"aaron\",\"rotowire_id\":14642,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Aaron Parker\",\"sportradar_id\":\"08df3736-14f2-465e-af74-cdcdebe19a66\",\"pandascore_id\":null,\"yahoo_id\":33095,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"Rhode Island\",\"high_school\":\"Gwynn Park (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'3\\\"\",\"search_full_name\":\"aaronparker\",\"birth_date\":\"1998-05-21\",\"espn_id\":4032749},\"576\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027663\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604360430034,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":\"MLB\",\"player_id\":\"576\",\"birth_city\":null,\"fantasy_data_id\":11276,\"years_exp\":10,\"hashtag\":\"#SeanLee-NFL-DAL-50\",\"search_first_name\":\"sean\",\"rotowire_id\":6601,\"rotoworld_id\":5876,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Sean Lee\",\"sportradar_id\":\"439874cf-4057-4a7b-922b-f77a90a5bba2\",\"pandascore_id\":null,\"yahoo_id\":24030,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Upper St. Clair (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"seanlee\",\"birth_date\":\"1986-07-22\",\"espn_id\":13284},\"7171\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"floyd\",\"depth_chart_position\":null,\"player_id\":\"7171\",\"birth_city\":null,\"fantasy_data_id\":22173,\"years_exp\":0,\"hashtag\":\"#ReggieFloyd-NFL-FA-0\",\"search_first_name\":\"reggie\",\"rotowire_id\":15046,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Reggie Floyd\",\"sportradar_id\":\"bfdd9770-7f14-4949-8978-95c407ab28ff\",\"pandascore_id\":null,\"yahoo_id\":33077,\"last_name\":\"Floyd\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'0\\\"\",\"search_full_name\":\"reggiefloyd\",\"birth_date\":null,\"espn_id\":null},\"4648\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nigel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tribune\",\"depth_chart_position\":null,\"player_id\":\"4648\",\"birth_city\":null,\"fantasy_data_id\":19543,\"years_exp\":2,\"hashtag\":\"#NigelTribune-NFL-FA-35\",\"search_first_name\":\"nigel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nigel Tribune\",\"sportradar_id\":\"a3958fbb-d136-4c44-b762-26cebae29b3b\",\"pandascore_id\":null,\"yahoo_id\":30741,\"last_name\":\"Tribune\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nigeltribune\",\"birth_date\":\"1995-08-07\",\"espn_id\":3039916},\"153\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026330\",\"first_name\":\"Ahtyba\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534375207123,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rubin\",\"depth_chart_position\":null,\"player_id\":\"153\",\"birth_city\":null,\"fantasy_data_id\":4096,\"years_exp\":12,\"hashtag\":\"#AhtybaRubin-NFL-FA-93\",\"search_first_name\":\"ahtyba\",\"rotowire_id\":6900,\"rotoworld_id\":4932,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Ahtyba Rubin\",\"sportradar_id\":\"f83bfd85-4007-4c7c-ba54-75bedfc3c3c1\",\"pandascore_id\":null,\"yahoo_id\":8967,\"last_name\":\"Rubin\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Escambia (FL)\",\"depth_chart_order\":null,\"stats_id\":334991,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ahtybarubin\",\"birth_date\":\"1986-07-25\",\"espn_id\":11424},\"6889\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587842441609,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckivitz\",\"depth_chart_position\":\"RT\",\"player_id\":\"6889\",\"birth_city\":null,\"fantasy_data_id\":22023,\"years_exp\":0,\"hashtag\":\"#ColtonMcKivitz-NFL-SF-68\",\"search_first_name\":\"colton\",\"rotowire_id\":14671,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Colton McKivitz\",\"sportradar_id\":\"1a7caa50-2fa5-4651-85d6-05cda9d9b3b3\",\"pandascore_id\":null,\"yahoo_id\":32823,\"last_name\":\"McKivitz\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Union Local (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'7\\\"\",\"search_full_name\":\"coltonmckivitz\",\"birth_date\":\"1996-08-09\",\"espn_id\":3916075},\"2008\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031372\",\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604938526279,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roby\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2008\",\"birth_city\":null,\"fantasy_data_id\":16283,\"years_exp\":6,\"hashtag\":\"#BradleyRoby-NFL-HOU-21\",\"search_first_name\":\"bradley\",\"rotowire_id\":9329,\"rotoworld_id\":9440,\"active\":true,\"search_rank\":799,\"age\":28,\"full_name\":\"Bradley Roby\",\"sportradar_id\":\"b6c9d494-a3cd-4d57-96e1-f807f0b9be63\",\"pandascore_id\":null,\"yahoo_id\":27559,\"last_name\":\"Roby\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Peachtree Ridge (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bradleyroby\",\"birth_date\":\"1992-05-01\",\"espn_id\":16719},\"2365\":{\"position\":\"DE\",\"injury_notes\":\"Gregory continues to serve an indefinite suspension for violating the NFL substance abuse policy.\",\"birth_country\":null,\"gsis_id\":\"00-0032197\",\"first_name\":\"Randy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606493704310,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gregory\",\"depth_chart_position\":\"DPR\",\"player_id\":\"2365\",\"birth_city\":null,\"fantasy_data_id\":16821,\"years_exp\":5,\"hashtag\":\"#RandyGregory-NFL-DAL-94\",\"search_first_name\":\"randy\",\"rotowire_id\":10168,\"rotoworld_id\":10292,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Randy Gregory\",\"sportradar_id\":\"5c913725-c52a-4633-b3b9-efa6a9d2cf05\",\"pandascore_id\":null,\"yahoo_id\":28448,\"last_name\":\"Gregory\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Hamilton Southeastern (IN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"randygregory\",\"birth_date\":\"1992-11-23\",\"espn_id\":3040479},\"DAL\":{\"team\":\"DAL\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"DAL\",\"last_name\":\"Cowboys\",\"injury_status\":null,\"first_name\":\"Dallas\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"3901\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3901\",\"birth_city\":null,\"fantasy_data_id\":18725,\"years_exp\":0,\"hashtag\":\"#BrandonJohnson-NFL-FA-39\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Johnson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30031,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonjohnson\",\"birth_date\":\"1993-04-02\",\"espn_id\":null},\"6110\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035117\",\"first_name\":\"Lester\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576964755470,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cottonsr\",\"depth_chart_position\":\"LG\",\"player_id\":\"6110\",\"birth_city\":null,\"fantasy_data_id\":21012,\"years_exp\":1,\"hashtag\":\"#LesterCottonSr-NFL-FA-0\",\"search_first_name\":\"lester\",\"rotowire_id\":14114,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Lester Cotton Sr.\",\"sportradar_id\":\"c34c65c7-541a-4f33-8473-beb11e3b43ad\",\"pandascore_id\":null,\"yahoo_id\":32341,\"last_name\":\"Cotton Sr.\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lestercottonsr\",\"birth_date\":\"1996-02-20\",\"espn_id\":3925344},\"6673\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035571\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vahe\",\"depth_chart_position\":\"LG\",\"player_id\":\"6673\",\"birth_city\":null,\"fantasy_data_id\":21572,\"years_exp\":1,\"hashtag\":\"#PatrickVahe-NFL-FA-66\",\"search_first_name\":\"patrick\",\"rotowire_id\":14275,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Patrick Vahe\",\"sportradar_id\":\"04b20ccd-7dfa-4269-ae9e-e4227b803fa1\",\"pandascore_id\":null,\"yahoo_id\":32583,\"last_name\":\"Vahe\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'2\\\"\",\"search_full_name\":\"patrickvahe\",\"birth_date\":\"1996-04-03\",\"espn_id\":3929863},\"4450\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033446\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605745543732,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":\"LG\",\"player_id\":\"4450\",\"birth_city\":null,\"fantasy_data_id\":19311,\"years_exp\":3,\"hashtag\":\"#JordanSimmons-NFL-SEA-66\",\"search_first_name\":\"jordan\",\"rotowire_id\":12105,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Simmons\",\"sportradar_id\":\"704cc12d-78b1-482a-bd2e-06dc9a633ceb\",\"pandascore_id\":null,\"yahoo_id\":30634,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Crespi (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"339\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordansimmons\",\"birth_date\":\"1994-07-15\",\"espn_id\":2971614},\"4033\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033885\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606135512016,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"njoku\",\"depth_chart_position\":\"TE\",\"player_id\":\"4033\",\"birth_city\":null,\"fantasy_data_id\":18876,\"years_exp\":3,\"hashtag\":\"#DavidNjoku-NFL-CLE-85\",\"search_first_name\":\"david\",\"rotowire_id\":11734,\"rotoworld_id\":12186,\"active\":true,\"search_rank\":366,\"age\":24,\"full_name\":\"David Njoku\",\"sportradar_id\":\"8f86fcea-90e8-49ea-bc78-5c7659313e57\",\"pandascore_id\":null,\"yahoo_id\":30142,\"last_name\":\"Njoku\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Cedar Grove (NJ)\",\"depth_chart_order\":2,\"stats_id\":832098,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davidnjoku\",\"birth_date\":\"1996-07-10\",\"espn_id\":3123076},\"4669\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033705\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605670227936,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patton\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4669\",\"birth_city\":null,\"fantasy_data_id\":19568,\"years_exp\":3,\"hashtag\":\"#AndrePatton-NFL-MIA-84\",\"search_first_name\":\"andre\",\"rotowire_id\":12539,\"rotoworld_id\":null,\"active\":true,\"search_rank\":551,\"age\":26,\"full_name\":\"Andre Patton\",\"sportradar_id\":\"ff05729b-558a-494c-b075-abdacb639279\",\"pandascore_id\":null,\"yahoo_id\":30430,\"last_name\":\"Patton\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"St. Elizabeth (DE)\",\"depth_chart_order\":3,\"stats_id\":746191,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrepatton\",\"birth_date\":\"1994-05-28\",\"espn_id\":3047504},\"7430\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596584449927,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"avery\",\"depth_chart_position\":null,\"player_id\":\"7430\",\"birth_city\":null,\"fantasy_data_id\":22410,\"years_exp\":0,\"hashtag\":\"#JoshAvery-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":15122,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Josh Avery\",\"sportradar_id\":\"ef1c7d1b-ad3a-4e57-b4e0-625d86b9c193\",\"pandascore_id\":null,\"yahoo_id\":33280,\"last_name\":\"Avery\",\"metadata\":null,\"college\":\"Southeast Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshavery\",\"birth_date\":\"1996-03-16\",\"espn_id\":null},\"3810\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burks\",\"depth_chart_position\":null,\"player_id\":\"3810\",\"birth_city\":null,\"fantasy_data_id\":18626,\"years_exp\":1,\"hashtag\":\"#BrandonBurks-NFL-FA-26\",\"search_first_name\":\"brandon\",\"rotowire_id\":11440,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Burks\",\"sportradar_id\":\"49597ed9-e933-42aa-ac84-1b4cb8bfa7dc\",\"pandascore_id\":null,\"yahoo_id\":29930,\"last_name\":\"Burks\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'8\\\"\",\"search_full_name\":\"brandonburks\",\"birth_date\":\"1993-11-01\",\"espn_id\":2972811},\"5141\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034881\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1598834760688,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"5141\",\"birth_city\":null,\"fantasy_data_id\":20099,\"years_exp\":2,\"hashtag\":\"#JamesCrawford-NFL-FA-0\",\"search_first_name\":\"james\",\"rotowire_id\":13386,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1417,\"age\":25,\"full_name\":\"James Crawford\",\"sportradar_id\":\"a84d5d5d-3fa3-483e-b737-6587971decc5\",\"pandascore_id\":null,\"yahoo_id\":31785,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":740364,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamescrawford\",\"birth_date\":\"1994-12-02\",\"espn_id\":3042445},\"66\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tashard\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"choice\",\"depth_chart_position\":null,\"player_id\":\"66\",\"birth_city\":null,\"fantasy_data_id\":1891,\"years_exp\":6,\"hashtag\":\"#TashardChoice-NFL-FA-43\",\"search_first_name\":\"tashard\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Tashard Choice\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Choice\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tashardchoice\",\"birth_date\":\"1984-11-20\",\"espn_id\":null},\"2819\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1510693201668,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meyer\",\"depth_chart_position\":null,\"player_id\":\"2819\",\"birth_city\":null,\"fantasy_data_id\":17287,\"years_exp\":4,\"hashtag\":\"#MikeMeyer-NFL-FA-6\",\"search_first_name\":\"mike\",\"rotowire_id\":11743,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mike Meyer\",\"sportradar_id\":\"4d47e811-4c32-427a-9a80-dbb10077f59c\",\"pandascore_id\":null,\"yahoo_id\":29057,\"last_name\":\"Meyer\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":564890,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikemeyer\",\"birth_date\":\"1992-06-02\",\"espn_id\":2522211},\"5465\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034192\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606258554590,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"keizer\",\"depth_chart_position\":\"TE\",\"player_id\":\"5465\",\"birth_city\":null,\"fantasy_data_id\":20563,\"years_exp\":2,\"hashtag\":\"#NickKeizer-NFL-KC-48\",\"search_first_name\":\"nick\",\"rotowire_id\":13126,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1492,\"age\":25,\"full_name\":\"Nick Keizer\",\"sportradar_id\":\"cafbcd5f-8b40-444e-baec-a48f49d8c5f0\",\"pandascore_id\":null,\"yahoo_id\":31427,\"last_name\":\"Keizer\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":\"Portage Northern (MI)\",\"depth_chart_order\":2,\"stats_id\":1115710,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickkeizer\",\"birth_date\":\"1995-05-02\",\"espn_id\":4329472},\"3585\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cage\",\"depth_chart_position\":null,\"player_id\":\"3585\",\"birth_city\":null,\"fantasy_data_id\":18364,\"years_exp\":0,\"hashtag\":\"#IsiahCage-NFL-FA-60\",\"search_first_name\":\"isiah\",\"rotowire_id\":11683,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Isiah Cage\",\"sportradar_id\":\"90b8065a-60c5-44ae-b99f-ff8af6687351\",\"pandascore_id\":null,\"yahoo_id\":29597,\"last_name\":\"Cage\",\"metadata\":null,\"college\":\"Wisconsin-Eau Claire\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'5\\\"\",\"search_full_name\":\"isiahcage\",\"birth_date\":\"1993-08-26\",\"espn_id\":null},\"662\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Seneca\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"662\",\"birth_city\":null,\"fantasy_data_id\":11755,\"years_exp\":10,\"hashtag\":\"#SenecaWallace-NFL-FA-9\",\"search_first_name\":\"seneca\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Seneca Wallace\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"senecawallace\",\"birth_date\":\"1980-08-06\",\"espn_id\":null},\"6448\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035043\",\"first_name\":\"Darrin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1588111521074,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"RB\",\"player_id\":\"6448\",\"birth_city\":null,\"fantasy_data_id\":21286,\"years_exp\":1,\"hashtag\":\"#DarrinHall-NFL-FA-0\",\"search_first_name\":\"darrin\",\"rotowire_id\":13657,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1710,\"age\":24,\"full_name\":\"Darrin Hall\",\"sportradar_id\":\"ebbd3227-f6e1-4311-ad57-a76c361888ff\",\"pandascore_id\":null,\"yahoo_id\":32279,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":879279,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'0\\\"\",\"search_full_name\":\"darrinhall\",\"birth_date\":\"1996-09-06\",\"espn_id\":3895788},\"5380\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034282\",\"first_name\":\"Azeem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535926530023,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"victor\",\"depth_chart_position\":null,\"player_id\":\"5380\",\"birth_city\":null,\"fantasy_data_id\":20041,\"years_exp\":2,\"hashtag\":\"#AzeemVictor-NFL-FA-57\",\"search_first_name\":\"azeem\",\"rotowire_id\":12487,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Azeem Victor\",\"sportradar_id\":\"7c256087-75e7-435c-8efc-5b46ad316e6e\",\"pandascore_id\":null,\"yahoo_id\":31186,\"last_name\":\"Victor\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":747913,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"azeemvictor\",\"birth_date\":\"1995-09-19\",\"espn_id\":3052184},\"2588\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031806\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606227352050,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"RB\",\"player_id\":\"2588\",\"birth_city\":null,\"fantasy_data_id\":17053,\"years_exp\":5,\"hashtag\":\"#MalcolmBrown-NFL-LAR-34\",\"search_first_name\":\"malcolm\",\"rotowire_id\":10202,\"rotoworld_id\":10674,\"active\":true,\"search_rank\":159,\"age\":27,\"full_name\":\"Malcolm Brown\",\"sportradar_id\":\"0e7e6cbb-0e88-4a74-b457-1753851e37f3\",\"pandascore_id\":null,\"yahoo_id\":28990,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Byron P. Steele (TX)\",\"depth_chart_order\":2,\"stats_id\":604724,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"5'11\\\"\",\"search_full_name\":\"malcolmbrown\",\"birth_date\":\"1993-05-15\",\"espn_id\":2570986},\"552\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ricardo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathews\",\"depth_chart_position\":null,\"player_id\":\"552\",\"birth_city\":null,\"fantasy_data_id\":11139,\"years_exp\":10,\"hashtag\":\"#RicardoMathews-NFL-FA-90\",\"search_first_name\":\"ricardo\",\"rotowire_id\":6710,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ricardo Mathews\",\"sportradar_id\":\"87ed0df0-07da-41d6-b4dd-6caf887b5cc4\",\"pandascore_id\":null,\"yahoo_id\":24213,\"last_name\":\"Mathews\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Parker (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ricardomathews\",\"birth_date\":\"1987-07-30\",\"espn_id\":13411},\"5234\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"officer\",\"depth_chart_position\":null,\"player_id\":\"5234\",\"birth_city\":null,\"fantasy_data_id\":20175,\"years_exp\":0,\"hashtag\":\"#AlexOfficer-NFL-KC-63\",\"search_first_name\":\"alex\",\"rotowire_id\":13156,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Alex Officer\",\"sportradar_id\":\"a65058fa-4652-4f68-bf77-3339fdb7e4a1\",\"pandascore_id\":null,\"yahoo_id\":31481,\"last_name\":\"Officer\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexofficer\",\"birth_date\":\"1995-10-28\",\"espn_id\":3045158},\"2866\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deion\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"2866\",\"birth_city\":null,\"fantasy_data_id\":17334,\"years_exp\":1,\"hashtag\":\"#DeionBarnes-NFL-FA-45\",\"search_first_name\":\"deion\",\"rotowire_id\":10375,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Deion Barnes\",\"sportradar_id\":\"82e27fbb-bf8c-4a5c-8334-0a199d9e1942\",\"pandascore_id\":null,\"yahoo_id\":28936,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"deionbarnes\",\"birth_date\":\"1993-01-20\",\"espn_id\":2582133},\"7274\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1600710014728,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":null,\"player_id\":\"7274\",\"birth_city\":null,\"fantasy_data_id\":22271,\"years_exp\":0,\"hashtag\":\"#TylerSimmons-NFL-HOU-86\",\"search_first_name\":\"tyler\",\"rotowire_id\":14842,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tyler Simmons\",\"sportradar_id\":\"03b284d4-e624-4e2e-ab32-ab2564cdca0b\",\"pandascore_id\":null,\"yahoo_id\":33163,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"McEachern (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tylersimmons\",\"birth_date\":\"1997-12-30\",\"espn_id\":4035018},\"6268\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035189\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1567302027271,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":\"K\",\"player_id\":\"6268\",\"birth_city\":null,\"fantasy_data_id\":21203,\"years_exp\":1,\"hashtag\":\"#MatthewWright-NFL-FA-16\",\"search_first_name\":\"matthew\",\"rotowire_id\":14189,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Matthew Wright\",\"sportradar_id\":\"f0c7de3c-9e8b-4c3d-b42f-985f29ce163f\",\"pandascore_id\":null,\"yahoo_id\":32174,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":838418,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'11\\\"\",\"search_full_name\":\"matthewwright\",\"birth_date\":\"1996-03-22\",\"espn_id\":3128444},\"2910\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rutenbeck\",\"depth_chart_position\":null,\"player_id\":\"2910\",\"birth_city\":null,\"fantasy_data_id\":17378,\"years_exp\":null,\"hashtag\":\"#TylerRutenbeck-NFL-FA-0\",\"search_first_name\":\"tyler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tyler Rutenbeck\",\"sportradar_id\":\"4f65dfb7-29a4-45dd-9b7d-95fd51132dbb\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rutenbeck\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870442,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tylerrutenbeck\",\"birth_date\":null,\"espn_id\":null},\"2277\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031308\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603405548844,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pierrelouis\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"2277\",\"birth_city\":null,\"fantasy_data_id\":16690,\"years_exp\":6,\"hashtag\":\"#KevinPierreLouis-NFL-WAS-54\",\"search_first_name\":\"kevin\",\"rotowire_id\":9712,\"rotoworld_id\":null,\"active\":true,\"search_rank\":846,\"age\":29,\"full_name\":\"Kevin Pierre-Louis\",\"sportradar_id\":\"14656a50-c687-48e0-a2d9-819709e3ffa3\",\"pandascore_id\":null,\"yahoo_id\":27660,\"last_name\":\"Pierre-Louis\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"King Low Heywood Thomas (CT)\",\"depth_chart_order\":1,\"stats_id\":542392,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kevinpierrelouis\",\"birth_date\":\"1991-10-07\",\"espn_id\":16888},\"5886\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035529\",\"first_name\":\"Hakeem\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1604163944417,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5886\",\"birth_city\":null,\"fantasy_data_id\":21056,\"years_exp\":1,\"hashtag\":\"#HakeemButler-NFL-PHI-89\",\"search_first_name\":\"hakeem\",\"rotowire_id\":13564,\"rotoworld_id\":13955,\"active\":true,\"search_rank\":1654,\"age\":24,\"full_name\":\"Hakeem Butler\",\"sportradar_id\":\"472945d8-0062-417b-9967-430d381c80ae\",\"pandascore_id\":null,\"yahoo_id\":31935,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Travis (TX)\",\"depth_chart_order\":4,\"stats_id\":882776,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hakeembutler\",\"birth_date\":\"1996-05-16\",\"espn_id\":3917940},\"2364\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032147\",\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606275055898,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"sambrailo\",\"depth_chart_position\":null,\"player_id\":\"2364\",\"birth_city\":null,\"fantasy_data_id\":16820,\"years_exp\":5,\"hashtag\":\"#TySambrailo-NFL-TEN-70\",\"search_first_name\":\"ty\",\"rotowire_id\":10275,\"rotoworld_id\":10481,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ty Sambrailo\",\"sportradar_id\":\"1f7fb52c-0320-4a3f-af26-608e99699fb3\",\"pandascore_id\":null,\"yahoo_id\":28447,\"last_name\":\"Sambrailo\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Colorado State\",\"high_school\":\"St. Francis Catholic (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tysambrailo\",\"birth_date\":\"1992-03-10\",\"espn_id\":2514397},\"1787\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1533677750268,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"supernaw\",\"depth_chart_position\":null,\"player_id\":\"1787\",\"birth_city\":null,\"fantasy_data_id\":15937,\"years_exp\":8,\"hashtag\":\"#PhillipSupernaw-NFL-FA-89\",\"search_first_name\":\"phillip\",\"rotowire_id\":8300,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Phillip Supernaw\",\"sportradar_id\":\"01525a87-f769-4821-bb6b-ae7116b3e816\",\"pandascore_id\":null,\"yahoo_id\":26497,\"last_name\":\"Supernaw\",\"metadata\":null,\"college\":\"Ouachita Baptist\",\"high_school\":\"James E. Taylor (TX)\",\"depth_chart_order\":null,\"stats_id\":616339,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"phillipsupernaw\",\"birth_date\":\"1990-01-30\",\"espn_id\":15257},\"6456\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034963\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596924044379,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gauthier\",\"depth_chart_position\":null,\"player_id\":\"6456\",\"birth_city\":null,\"fantasy_data_id\":21271,\"years_exp\":1,\"hashtag\":\"#TylerGauthier-NFL-MIA-61\",\"search_first_name\":\"tyler\",\"rotowire_id\":14087,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tyler Gauthier\",\"sportradar_id\":\"efe7d321-9ce8-4a43-9c00-999eda83d73a\",\"pandascore_id\":null,\"yahoo_id\":32229,\"last_name\":\"Gauthier\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Venice (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tylergauthier\",\"birth_date\":\"1997-06-29\",\"espn_id\":3917868},\"723\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"723\",\"birth_city\":null,\"fantasy_data_id\":12273,\"years_exp\":8,\"hashtag\":\"#MichaelRobinson-NFL-FA-26\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Michael Robinson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelrobinson\",\"birth_date\":\"1983-02-06\",\"espn_id\":null},\"5999\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035586\",\"first_name\":\"D'Cota\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603303839114,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"5999\",\"birth_city\":null,\"fantasy_data_id\":21069,\"years_exp\":1,\"hashtag\":\"#DCotaDixon-NFL-TB-38\",\"search_first_name\":\"dcota\",\"rotowire_id\":13577,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1656,\"age\":25,\"full_name\":\"D'Cota Dixon\",\"sportradar_id\":\"75f6779f-4f5b-4059-bed1-c79bd2b40b49\",\"pandascore_id\":null,\"yahoo_id\":32585,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"New Smyrna Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dcotadixon\",\"birth_date\":\"1994-11-20\",\"espn_id\":3121542},\"6577\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanford\",\"depth_chart_position\":null,\"player_id\":\"6577\",\"birth_city\":null,\"fantasy_data_id\":21282,\"years_exp\":0,\"hashtag\":\"#MarquezSanford-NFL-FA-0\",\"search_first_name\":\"marquez\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Marquez Sanford\",\"sportradar_id\":\"81ce6106-4437-42fb-b8cd-4d0a8e435ca1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sanford\",\"metadata\":null,\"college\":\"Murray State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"marquezsanford\",\"birth_date\":\"1996-08-12\",\"espn_id\":null},\"4608\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"TJ\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"daniel\",\"depth_chart_position\":null,\"player_id\":\"4608\",\"birth_city\":null,\"fantasy_data_id\":19498,\"years_exp\":1,\"hashtag\":\"#TJDaniel-NFL-HOU-60\",\"search_first_name\":\"tj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"TJ Daniel\",\"sportradar_id\":\"df1f38fe-1e4e-47b8-878a-4a033cb3a462\",\"pandascore_id\":null,\"yahoo_id\":30801,\"last_name\":\"Daniel\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tjdaniel\",\"birth_date\":null,\"espn_id\":3052088},\"5193\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034591\",\"first_name\":\"J.C.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605720329905,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5193\",\"birth_city\":null,\"fantasy_data_id\":20167,\"years_exp\":2,\"hashtag\":\"#JCJackson-NFL-NE-27\",\"search_first_name\":\"jc\",\"rotowire_id\":12578,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1427,\"age\":25,\"full_name\":\"J.C. Jackson\",\"sportradar_id\":\"b590479c-79df-4505-be19-b0838574b434\",\"pandascore_id\":null,\"yahoo_id\":31650,\"last_name\":\"Jackson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Maryland\",\"high_school\":\"Immokalee (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jcjackson\",\"birth_date\":\"1995-11-17\",\"espn_id\":3121649},\"492\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\",\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thigpen\",\"depth_chart_position\":null,\"player_id\":\"492\",\"birth_city\":null,\"fantasy_data_id\":9940,\"years_exp\":7,\"hashtag\":\"#TylerThigpen-NFL-FA-42\",\"search_first_name\":\"tyler\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Tyler Thigpen\",\"sportradar_id\":\"54d4d41b-5999-40ce-9395-9bd086564951\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Thigpen\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tylerthigpen\",\"birth_date\":\"1984-04-14\",\"espn_id\":null},\"1904\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilbert\",\"depth_chart_position\":null,\"player_id\":\"1904\",\"birth_city\":null,\"fantasy_data_id\":16130,\"years_exp\":6,\"hashtag\":\"#JustinGilbert-NFL-FA-24\",\"search_first_name\":\"justin\",\"rotowire_id\":9638,\"rotoworld_id\":9436,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Justin Gilbert\",\"sportradar_id\":\"d80d2ca1-50ac-4c4c-bb99-95e8b9d4bc33\",\"pandascore_id\":null,\"yahoo_id\":27536,\"last_name\":\"Gilbert\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Huntsville (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justingilbert\",\"birth_date\":\"1991-11-07\",\"espn_id\":16714},\"2290\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watts\",\"depth_chart_position\":null,\"player_id\":\"2290\",\"birth_city\":null,\"fantasy_data_id\":16727,\"years_exp\":6,\"hashtag\":\"#CraigWatts-NFL-FA-64\",\"search_first_name\":\"craig\",\"rotowire_id\":10104,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Craig Watts\",\"sportradar_id\":\"7bda2c72-7f6c-43f7-b0e2-dfe7926c27f0\",\"pandascore_id\":null,\"yahoo_id\":28273,\"last_name\":\"Watts\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"Killeen (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"craigwatts\",\"birth_date\":\"1991-06-20\",\"espn_id\":17457},\"1805\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030648\",\"first_name\":\"Alejandro\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1572540339414,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"villanueva\",\"depth_chart_position\":\"LT\",\"player_id\":\"1805\",\"birth_city\":null,\"fantasy_data_id\":15980,\"years_exp\":6,\"hashtag\":\"#AlejandroVillanueva-NFL-PIT-78\",\"search_first_name\":\"alejandro\",\"rotowire_id\":9762,\"rotoworld_id\":9542,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Alejandro Villanueva\",\"sportradar_id\":\"08e9f65e-cf4c-4af5-939f-a93d1cf34b2e\",\"pandascore_id\":null,\"yahoo_id\":27528,\"last_name\":\"Villanueva\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Army\",\"high_school\":\"SHAPE High School (BEL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'9\\\"\",\"search_full_name\":\"alejandrovillanueva\",\"birth_date\":\"1988-09-22\",\"espn_id\":16706},\"1919\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Howard\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1526323801517,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1919\",\"birth_city\":null,\"fantasy_data_id\":16151,\"years_exp\":6,\"hashtag\":\"#HowardJones-NFL-FA-57\",\"search_first_name\":\"howard\",\"rotowire_id\":9689,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Howard Jones\",\"sportradar_id\":\"fc81dd37-25b1-453b-90f4-7cab049f0111\",\"pandascore_id\":null,\"yahoo_id\":27813,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":\"Freedom (VA)\",\"depth_chart_order\":null,\"stats_id\":794244,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'4\\\"\",\"search_full_name\":\"howardjones\",\"birth_date\":\"1990-02-10\",\"espn_id\":17009},\"3107\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcadoo\",\"depth_chart_position\":null,\"player_id\":\"3107\",\"birth_city\":null,\"fantasy_data_id\":17859,\"years_exp\":0,\"hashtag\":\"#BenMcAdoo-NFL-FA-0\",\"search_first_name\":\"ben\",\"rotowire_id\":null,\"rotoworld_id\":9304,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ben McAdoo\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McAdoo\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"benmcadoo\",\"birth_date\":null,\"espn_id\":null},\"921\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"921\",\"birth_city\":null,\"fantasy_data_id\":13174,\"years_exp\":5,\"hashtag\":\"#WillieSmith-NFL-FA-0\",\"search_first_name\":\"willie\",\"rotowire_id\":8568,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Willie Smith\",\"sportradar_id\":\"11911216-200c-4c0a-81cf-ebfc4161e090\",\"pandascore_id\":null,\"yahoo_id\":25274,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"williesmith\",\"birth_date\":\"1986-11-13\",\"espn_id\":2219931},\"2475\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031950\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1571887828228,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"2475\",\"birth_city\":null,\"fantasy_data_id\":16932,\"years_exp\":5,\"hashtag\":\"#DJAlexander-NFL-FA-57\",\"search_first_name\":\"dj\",\"rotowire_id\":10471,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"D.J. Alexander\",\"sportradar_id\":\"503066ed-f217-4c3a-bda5-07bfc68c1cac\",\"pandascore_id\":null,\"yahoo_id\":28560,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Palm Desert (CA)\",\"depth_chart_order\":null,\"stats_id\":715356,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'2\\\"\",\"search_full_name\":\"djalexander\",\"birth_date\":\"1991-09-30\",\"espn_id\":3001171},\"2077\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"2077\",\"birth_city\":null,\"fantasy_data_id\":16387,\"years_exp\":1,\"hashtag\":\"#JustinAnderson-NFL-FA-47\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Justin Anderson\",\"sportradar_id\":\"ccf8a7c2-e7c1-40de-b12c-8d8bed2db146\",\"pandascore_id\":null,\"yahoo_id\":28052,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinanderson\",\"birth_date\":\"1991-01-16\",\"espn_id\":17103},\"3348\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kolby\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1528412101303,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"listenbee\",\"depth_chart_position\":null,\"player_id\":\"3348\",\"birth_city\":null,\"fantasy_data_id\":18109,\"years_exp\":3,\"hashtag\":\"#KolbyListenbee-NFL-FA-14\",\"search_first_name\":\"kolby\",\"rotowire_id\":10996,\"rotoworld_id\":11354,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kolby Listenbee\",\"sportradar_id\":\"7b8fdcab-0453-4767-97e1-9f09f6c65cae\",\"pandascore_id\":null,\"yahoo_id\":29426,\"last_name\":\"Listenbee\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":649987,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kolbylistenbee\",\"birth_date\":\"1994-01-25\",\"espn_id\":2971544},\"3409\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Beniquez\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"3409\",\"birth_city\":null,\"fantasy_data_id\":18170,\"years_exp\":0,\"hashtag\":\"#BeniquezBrown-NFL-FA-43\",\"search_first_name\":\"beniquez\",\"rotowire_id\":10922,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Beniquez Brown\",\"sportradar_id\":\"13b31526-d0b1-4b41-b225-bde681a13b05\",\"pandascore_id\":null,\"yahoo_id\":29721,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'1\\\"\",\"search_full_name\":\"beniquezbrown\",\"birth_date\":\"1993-04-29\",\"espn_id\":2971375},\"2269\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":null,\"player_id\":\"2269\",\"birth_city\":null,\"fantasy_data_id\":16680,\"years_exp\":6,\"hashtag\":\"#DionBailey-NFL-FA-34\",\"search_first_name\":\"dion\",\"rotowire_id\":9297,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dion Bailey\",\"sportradar_id\":\"61151f9e-1069-40b3-ac56-31763bed463e\",\"pandascore_id\":null,\"yahoo_id\":27800,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Lakewood (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dionbailey\",\"birth_date\":\"1992-03-02\",\"espn_id\":16966},\"7479\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tre'Vour\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597980934675,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wallacesimms\",\"depth_chart_position\":null,\"player_id\":\"7479\",\"birth_city\":null,\"fantasy_data_id\":22454,\"years_exp\":0,\"hashtag\":\"#TreVourWallaceSimms-NFL-JAX-77\",\"search_first_name\":\"trevour\",\"rotowire_id\":14959,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tre'Vour Wallace-Simms\",\"sportradar_id\":\"c9dcada0-7f61-48af-84fc-d147a31c60e6\",\"pandascore_id\":null,\"yahoo_id\":33145,\"last_name\":\"Wallace-Simms\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"East St. Louis (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"336\",\"height\":\"6'4\\\"\",\"search_full_name\":\"trevourwallacesimms\",\"birth_date\":\"1997-09-25\",\"espn_id\":4035113},\"6413\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lanard\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bonner\",\"depth_chart_position\":null,\"player_id\":\"6413\",\"birth_city\":null,\"fantasy_data_id\":21301,\"years_exp\":0,\"hashtag\":\"#LanardBonner-NFL-FA-69\",\"search_first_name\":\"lanard\",\"rotowire_id\":13722,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Lanard Bonner\",\"sportradar_id\":\"1a276e1c-7fcb-4b3c-be49-2d232fcb5fde\",\"pandascore_id\":null,\"yahoo_id\":32111,\"last_name\":\"Bonner\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lanardbonner\",\"birth_date\":\"1996-04-18\",\"espn_id\":4064867},\"3621\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032876\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1587864347872,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williamslambert\",\"depth_chart_position\":null,\"player_id\":\"3621\",\"birth_city\":null,\"fantasy_data_id\":18408,\"years_exp\":4,\"hashtag\":\"#JordanWilliamsLambert-NFL-FA-81\",\"search_first_name\":\"jordan\",\"rotowire_id\":11511,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Williams-Lambert\",\"sportradar_id\":\"74bb4fa1-3ad4-4376-83d7-bb993da9149e\",\"pandascore_id\":null,\"yahoo_id\":29865,\"last_name\":\"Williams-Lambert\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652431,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanwilliamslambert\",\"birth_date\":\"1994-05-09\",\"espn_id\":2972065},\"4724\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033849\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1516063804264,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"galambos\",\"depth_chart_position\":null,\"player_id\":\"4724\",\"birth_city\":null,\"fantasy_data_id\":19634,\"years_exp\":3,\"hashtag\":\"#MattGalambos-NFL-FA-46\",\"search_first_name\":\"matt\",\"rotowire_id\":12250,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Galambos\",\"sportradar_id\":\"37e44075-a98b-4908-ae69-4963c5cc3c69\",\"pandascore_id\":null,\"yahoo_id\":30857,\"last_name\":\"Galambos\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mattgalambos\",\"birth_date\":\"1995-03-21\",\"espn_id\":3045149},\"5250\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034510\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606064717843,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5250\",\"birth_city\":null,\"fantasy_data_id\":20250,\"years_exp\":2,\"hashtag\":\"#RobertFoster-NFL-WAS-19\",\"search_first_name\":\"robert\",\"rotowire_id\":12909,\"rotoworld_id\":13363,\"active\":true,\"search_rank\":310,\"age\":26,\"full_name\":\"Robert Foster\",\"sportradar_id\":\"17f52030-0a86-408d-b7e3-194ed4374fbb\",\"pandascore_id\":null,\"yahoo_id\":31601,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Central Valley (PA)\",\"depth_chart_order\":3,\"stats_id\":750838,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robertfoster\",\"birth_date\":\"1994-05-07\",\"espn_id\":3054845},\"2292\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1510175701247,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":null,\"player_id\":\"2292\",\"birth_city\":null,\"fantasy_data_id\":16731,\"years_exp\":9,\"hashtag\":\"#ChrisMatthews-NFL-FA-13\",\"search_first_name\":\"chris\",\"rotowire_id\":9588,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Matthews\",\"sportradar_id\":\"b0e21a81-6227-416d-b38e-5dcfc694b97c\",\"pandascore_id\":null,\"yahoo_id\":25594,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Susan Miller Dorsey (CA)\",\"depth_chart_order\":null,\"stats_id\":512136,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrismatthews\",\"birth_date\":\"1989-10-06\",\"espn_id\":14285},\"3802\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hubert\",\"depth_chart_position\":null,\"player_id\":\"3802\",\"birth_city\":null,\"fantasy_data_id\":18616,\"years_exp\":3,\"hashtag\":\"#ChrisHubert-NFL-FA-81\",\"search_first_name\":\"chris\",\"rotowire_id\":11295,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Hubert\",\"sportradar_id\":\"3038a319-3117-4349-9dda-41304ffa97ab\",\"pandascore_id\":null,\"yahoo_id\":29905,\"last_name\":\"Hubert\",\"metadata\":null,\"college\":\"Fayetteville State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":703161,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"155\",\"height\":\"5'9\\\"\",\"search_full_name\":\"chrishubert\",\"birth_date\":\"1993-05-08\",\"espn_id\":2986501},\"6172\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"worthington\",\"depth_chart_position\":null,\"player_id\":\"6172\",\"birth_city\":null,\"fantasy_data_id\":20997,\"years_exp\":0,\"hashtag\":\"#EvanWorthington-NFL-FA-30\",\"search_first_name\":\"evan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Evan Worthington\",\"sportradar_id\":\"ec2d8b8d-2cd3-452b-8001-21c6031fe65a\",\"pandascore_id\":null,\"yahoo_id\":32303,\"last_name\":\"Worthington\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"evanworthington\",\"birth_date\":\"1995-09-18\",\"espn_id\":null},\"1152\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rodriguez\",\"depth_chart_position\":null,\"player_id\":\"1152\",\"birth_city\":null,\"fantasy_data_id\":14193,\"years_exp\":3,\"hashtag\":\"#EvanRodriguez-NFL-FA-48\",\"search_first_name\":\"evan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Evan Rodriguez\",\"sportradar_id\":\"fa68cd74-e645-4935-95f7-9dee35239853\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rodriguez\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":405003,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'1\\\"\",\"search_full_name\":\"evanrodriguez\",\"birth_date\":\"1988-09-21\",\"espn_id\":15000},\"4889\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randy\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fichtner\",\"depth_chart_position\":null,\"player_id\":\"4889\",\"birth_city\":null,\"fantasy_data_id\":19787,\"years_exp\":0,\"hashtag\":\"#RandyFichtner-NFL-FA-0\",\"search_first_name\":\"randy\",\"rotowire_id\":null,\"rotoworld_id\":13069,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Randy Fichtner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fichtner\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"randyfichtner\",\"birth_date\":null,\"espn_id\":null},\"1272\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028834\",\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1578539449382,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robertson\",\"depth_chart_position\":\"MLB\",\"player_id\":\"1272\",\"birth_city\":null,\"fantasy_data_id\":14711,\"years_exp\":8,\"hashtag\":\"#CraigRobertson-NFL-NO-52\",\"search_first_name\":\"craig\",\"rotowire_id\":8531,\"rotoworld_id\":null,\"active\":true,\"search_rank\":696,\"age\":32,\"full_name\":\"Craig Robertson\",\"sportradar_id\":\"e699246f-a474-4f91-a164-49b1d80bdad7\",\"pandascore_id\":null,\"yahoo_id\":25689,\"last_name\":\"Robertson\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Stafford (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'1\\\"\",\"search_full_name\":\"craigrobertson\",\"birth_date\":\"1988-02-11\",\"espn_id\":14860},\"1864\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031338\",\"first_name\":\"Terrence\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598400639305,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":\"SS\",\"player_id\":\"1864\",\"birth_city\":null,\"fantasy_data_id\":16078,\"years_exp\":6,\"hashtag\":\"#TerrenceBrooks-NFL-NE-25\",\"search_first_name\":\"terrence\",\"rotowire_id\":9298,\"rotoworld_id\":null,\"active\":true,\"search_rank\":776,\"age\":28,\"full_name\":\"Terrence Brooks\",\"sportradar_id\":\"5cb1fbaa-96f9-4211-96b7-f3492f2bc467\",\"pandascore_id\":null,\"yahoo_id\":27607,\"last_name\":\"Brooks\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida State\",\"high_school\":\"Dunnellon (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"terrencebrooks\",\"birth_date\":\"1992-03-02\",\"espn_id\":16768},\"4978\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034743\",\"first_name\":\"Rashaan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606095341741,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":\"LILB\",\"player_id\":\"4978\",\"birth_city\":null,\"fantasy_data_id\":19842,\"years_exp\":2,\"hashtag\":\"#RashaanEvans-NFL-TEN-54\",\"search_first_name\":\"rashaan\",\"rotowire_id\":12879,\"rotoworld_id\":13126,\"active\":true,\"search_rank\":1299,\"age\":25,\"full_name\":\"Rashaan Evans\",\"sportradar_id\":\"0813c5eb-608c-4a6d-8bfb-ed3538767e90\",\"pandascore_id\":null,\"yahoo_id\":30992,\"last_name\":\"Evans\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Alabama\",\"high_school\":\"Auburn (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rashaanevans\",\"birth_date\":\"1995-11-08\",\"espn_id\":3126349},\"768\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chandler\",\"depth_chart_position\":null,\"player_id\":\"768\",\"birth_city\":null,\"fantasy_data_id\":12548,\"years_exp\":13,\"hashtag\":\"#ScottChandler-NFL-FA-88\",\"search_first_name\":\"scott\",\"rotowire_id\":5303,\"rotoworld_id\":4257,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Scott Chandler\",\"sportradar_id\":\"db1af021-0d38-4b01-86e8-8b4cc1126064\",\"pandascore_id\":null,\"yahoo_id\":8383,\"last_name\":\"Chandler\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Carroll (TX)\",\"depth_chart_order\":null,\"stats_id\":215769,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'7\\\"\",\"search_full_name\":\"scottchandler\",\"birth_date\":\"1985-07-23\",\"espn_id\":10572},\"2331\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032054\",\"first_name\":\"Breshad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606581632945,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perriman\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2331\",\"birth_city\":null,\"fantasy_data_id\":16787,\"years_exp\":5,\"hashtag\":\"#BreshadPerriman-NFL-NYJ-19\",\"search_first_name\":\"breshad\",\"rotowire_id\":10069,\"rotoworld_id\":10357,\"active\":true,\"search_rank\":174,\"age\":27,\"full_name\":\"Breshad Perriman\",\"sportradar_id\":\"0dc98d11-34e4-46f6-96a6-7707c6f29500\",\"pandascore_id\":null,\"yahoo_id\":28414,\"last_name\":\"Perriman\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Arabia Mountain (GA)\",\"depth_chart_order\":1,\"stats_id\":652808,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"breshadperriman\",\"birth_date\":\"1993-09-10\",\"espn_id\":2972460},\"573\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1511466001301,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"573\",\"birth_city\":null,\"fantasy_data_id\":11264,\"years_exp\":10,\"hashtag\":\"#CamThomas-NFL-FA-93\",\"search_first_name\":\"cam\",\"rotowire_id\":6593,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Cam Thomas\",\"sportradar_id\":\"fb54ed36-66e1-4e0c-a111-383bfbdef14a\",\"pandascore_id\":null,\"yahoo_id\":24122,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"North Moore (NC)\",\"depth_chart_order\":null,\"stats_id\":288172,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"camthomas\",\"birth_date\":\"1986-12-12\",\"espn_id\":13470},\"1687\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1521220201066,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barker\",\"depth_chart_position\":null,\"player_id\":\"1687\",\"birth_city\":null,\"fantasy_data_id\":15526,\"years_exp\":7,\"hashtag\":\"#ChrisBarker-NFL-FA-67\",\"search_first_name\":\"chris\",\"rotowire_id\":9166,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Barker\",\"sportradar_id\":\"bd080c6f-c43c-4766-99ea-64f07926ed82\",\"pandascore_id\":null,\"yahoo_id\":27238,\"last_name\":\"Barker\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Etiwanda (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisbarker\",\"birth_date\":\"1990-08-03\",\"espn_id\":16365},\"3314\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032420\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605851759449,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shell\",\"depth_chart_position\":\"RT\",\"player_id\":\"3314\",\"birth_city\":null,\"fantasy_data_id\":18075,\"years_exp\":4,\"hashtag\":\"#BrandonShell-NFL-SEA-72\",\"search_first_name\":\"brandon\",\"rotowire_id\":11171,\"rotoworld_id\":11454,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Shell\",\"sportradar_id\":\"a2b2f929-e3a7-4d19-888f-49600cf718bf\",\"pandascore_id\":null,\"yahoo_id\":29392,\"last_name\":\"Shell\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Goose Creek (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonshell\",\"birth_date\":\"1992-02-06\",\"espn_id\":2577690},\"6330\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035508\",\"first_name\":\"Santos\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567288207033,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ramirez\",\"depth_chart_position\":null,\"player_id\":\"6330\",\"birth_city\":null,\"fantasy_data_id\":21236,\"years_exp\":1,\"hashtag\":\"#SantosRamirez-NFL-FA-39\",\"search_first_name\":\"santos\",\"rotowire_id\":14227,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Santos Ramirez\",\"sportradar_id\":\"11c5317a-a0a7-4330-a1e5-532dbfe8f021\",\"pandascore_id\":null,\"yahoo_id\":32531,\"last_name\":\"Ramirez\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'2\\\"\",\"search_full_name\":\"santosramirez\",\"birth_date\":\"1996-04-22\",\"espn_id\":3128688},\"6989\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604613608714,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"callaway\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6989\",\"birth_city\":null,\"fantasy_data_id\":21750,\"years_exp\":0,\"hashtag\":\"#MarquezCallaway-NFL-NO-12\",\"search_first_name\":\"marquez\",\"rotowire_id\":14556,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1779,\"age\":22,\"full_name\":\"Marquez Callaway\",\"sportradar_id\":\"1364cb22-1bfa-429b-8bde-dfd0d2938163\",\"pandascore_id\":null,\"yahoo_id\":33109,\"last_name\":\"Callaway\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Warner Robins (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marquezcallaway\",\"birth_date\":\"1998-03-27\",\"espn_id\":4035170},\"2923\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neighbors\",\"depth_chart_position\":null,\"player_id\":\"2923\",\"birth_city\":null,\"fantasy_data_id\":17392,\"years_exp\":0,\"hashtag\":\"#ConnorNeighbors-NFL-FA-41\",\"search_first_name\":\"connor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Connor Neighbors\",\"sportradar_id\":\"ca93a8c6-829f-4ec3-8ec6-da7539113fd8\",\"pandascore_id\":null,\"yahoo_id\":29058,\"last_name\":\"Neighbors\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553009,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"5'11\\\"\",\"search_full_name\":\"connorneighbors\",\"birth_date\":\"1991-12-13\",\"espn_id\":null},\"7304\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clemons\",\"depth_chart_position\":null,\"player_id\":\"7304\",\"birth_city\":null,\"fantasy_data_id\":21919,\"years_exp\":0,\"hashtag\":\"#RodneyClemons-NFL-KC-40\",\"search_first_name\":\"rodney\",\"rotowire_id\":14700,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rodney Clemons\",\"sportradar_id\":\"79d98440-d152-49be-8259-ecec2a3afaa9\",\"pandascore_id\":null,\"yahoo_id\":32955,\"last_name\":\"Clemons\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Taylor (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rodneyclemons\",\"birth_date\":\"1996-12-28\",\"espn_id\":3916207},\"2624\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"akunne\",\"depth_chart_position\":null,\"player_id\":\"2624\",\"birth_city\":null,\"fantasy_data_id\":17092,\"years_exp\":1,\"hashtag\":\"#DerekAkunne-NFL-FA-44\",\"search_first_name\":\"derek\",\"rotowire_id\":10752,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derek Akunne\",\"sportradar_id\":\"98e9b96f-0b03-4c85-92bb-3cc2d57ed6b6\",\"pandascore_id\":null,\"yahoo_id\":28816,\"last_name\":\"Akunne\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'0\\\"\",\"search_full_name\":\"derekakunne\",\"birth_date\":\"1993-08-17\",\"espn_id\":2574087},\"1730\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028240\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605279052386,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wiggins\",\"depth_chart_position\":null,\"player_id\":\"1730\",\"birth_city\":null,\"fantasy_data_id\":15672,\"years_exp\":9,\"hashtag\":\"#KennyWiggins-NFL-NYG-79\",\"search_first_name\":\"kenny\",\"rotowire_id\":9204,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kenny Wiggins\",\"sportradar_id\":\"7f614864-933f-4469-8df0-7fa9e2f3b851\",\"pandascore_id\":null,\"yahoo_id\":25227,\"last_name\":\"Wiggins\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":\"Elk Grove (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kennywiggins\",\"birth_date\":\"1988-08-08\",\"espn_id\":14460},\"2394\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032245\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1584560124634,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mannion\",\"depth_chart_position\":\"QB\",\"player_id\":\"2394\",\"birth_city\":null,\"fantasy_data_id\":16850,\"years_exp\":5,\"hashtag\":\"#SeanMannion-NFL-MIN-4\",\"search_first_name\":\"sean\",\"rotowire_id\":10176,\"rotoworld_id\":10409,\"active\":true,\"search_rank\":524,\"age\":28,\"full_name\":\"Sean Mannion\",\"sportradar_id\":\"91ead748-e3b0-4926-bd3b-3e327b44e6bc\",\"pandascore_id\":null,\"yahoo_id\":28477,\"last_name\":\"Mannion\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Foothill (CA)\",\"depth_chart_order\":2,\"stats_id\":557860,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'6\\\"\",\"search_full_name\":\"seanmannion\",\"birth_date\":\"1992-04-25\",\"espn_id\":2517017},\"1101\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029413\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1573247448097,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"C\",\"player_id\":\"1101\",\"birth_city\":null,\"fantasy_data_id\":13969,\"years_exp\":8,\"hashtag\":\"#BenJones-NFL-TEN-60\",\"search_first_name\":\"ben\",\"rotowire_id\":8129,\"rotoworld_id\":7561,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ben Jones\",\"sportradar_id\":\"fa9d0178-a2a7-402f-ad11-c7bea0b80705\",\"pandascore_id\":null,\"yahoo_id\":25809,\"last_name\":\"Jones\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Georgia\",\"high_school\":\"Bibb County (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"benjones\",\"birth_date\":\"1989-07-02\",\"espn_id\":15109},\"7133\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606595734677,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rodgers\",\"depth_chart_position\":\"NB\",\"player_id\":\"7133\",\"birth_city\":null,\"fantasy_data_id\":22139,\"years_exp\":0,\"hashtag\":\"#IsaiahRodgers-NFL-IND-34\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14828,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1932,\"age\":22,\"full_name\":\"Isaiah Rodgers\",\"sportradar_id\":\"72100db3-2daa-4c17-aaa8-6c2c52bea5f3\",\"pandascore_id\":null,\"yahoo_id\":32881,\"last_name\":\"Rodgers\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":\"Blake (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'10\\\"\",\"search_full_name\":\"isaiahrodgers\",\"birth_date\":\"1998-01-07\",\"espn_id\":4044540},\"877\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalil\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"877\",\"birth_city\":null,\"fantasy_data_id\":13033,\"years_exp\":9,\"hashtag\":\"#JalilBrown-NFL-FA-31\",\"search_first_name\":\"jalil\",\"rotowire_id\":7519,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jalil Brown\",\"sportradar_id\":\"10f54c36-26b2-4c6a-94c0-9fed9032cee1\",\"pandascore_id\":null,\"yahoo_id\":24905,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"South Mountain (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jalilbrown\",\"birth_date\":\"1987-10-14\",\"espn_id\":14066},\"4785\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033641\",\"first_name\":\"Kermit\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1546401315643,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whitfield\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4785\",\"birth_city\":null,\"fantasy_data_id\":19440,\"years_exp\":3,\"hashtag\":\"#KermitWhitfield-NFL-FA-17\",\"search_first_name\":\"kermit\",\"rotowire_id\":11884,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kermit Whitfield\",\"sportradar_id\":\"c9610dd0-298c-4dfe-a88c-bac4466d14e3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Whitfield\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kermitwhitfield\",\"birth_date\":\"1993-10-08\",\"espn_id\":null},\"4775\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"olson\",\"depth_chart_position\":null,\"player_id\":\"4775\",\"birth_city\":null,\"fantasy_data_id\":19692,\"years_exp\":2,\"hashtag\":\"#DavidOlson-NFL-FA-1\",\"search_first_name\":\"david\",\"rotowire_id\":12318,\"rotoworld_id\":12998,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"David Olson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30912,\"last_name\":\"Olson\",\"metadata\":null,\"college\":\"null\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553092,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davidolson\",\"birth_date\":null,\"espn_id\":2517777},\"4302\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033232\",\"first_name\":\"Quincy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535929010414,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mauger\",\"depth_chart_position\":null,\"player_id\":\"4302\",\"birth_city\":null,\"fantasy_data_id\":19150,\"years_exp\":3,\"hashtag\":\"#QuincyMauger-NFL-FA-39\",\"search_first_name\":\"quincy\",\"rotowire_id\":12147,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Quincy Mauger\",\"sportradar_id\":\"450fc1ea-0709-4bf0-bb32-273e2ef70f50\",\"pandascore_id\":null,\"yahoo_id\":30460,\"last_name\":\"Mauger\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"quincymauger\",\"birth_date\":\"1995-03-04\",\"espn_id\":3043147},\"3495\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1512070802706,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bercovici\",\"depth_chart_position\":null,\"player_id\":\"3495\",\"birth_city\":null,\"fantasy_data_id\":18261,\"years_exp\":3,\"hashtag\":\"#MikeBercovici-NFL-FA-6\",\"search_first_name\":\"mike\",\"rotowire_id\":11654,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mike Bercovici\",\"sportradar_id\":\"97dc5013-29d0-4231-820b-70ae53ac8f74\",\"pandascore_id\":null,\"yahoo_id\":29516,\"last_name\":\"Bercovici\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":592381,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mikebercovici\",\"birth_date\":\"1993-02-09\",\"espn_id\":2576822},\"5979\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035533\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599700843752,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"connelly\",\"depth_chart_position\":\"WLB\",\"player_id\":\"5979\",\"birth_city\":null,\"fantasy_data_id\":21011,\"years_exp\":1,\"hashtag\":\"#RyanConnelly-NFL-MIN-57\",\"search_first_name\":\"ryan\",\"rotowire_id\":13847,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1633,\"age\":25,\"full_name\":\"Ryan Connelly\",\"sportradar_id\":\"598a8d06-43b3-40f2-b4e1-59e06baddf83\",\"pandascore_id\":null,\"yahoo_id\":31975,\"last_name\":\"Connelly\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Eden Prairie (MN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryanconnelly\",\"birth_date\":\"1995-10-03\",\"espn_id\":3121538},\"3640\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Soma\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vainuku\",\"depth_chart_position\":null,\"player_id\":\"3640\",\"birth_city\":null,\"fantasy_data_id\":18430,\"years_exp\":1,\"hashtag\":\"#SomaVainuku-NFL-FA-42\",\"search_first_name\":\"soma\",\"rotowire_id\":10952,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Soma Vainuku\",\"sportradar_id\":\"fda9f1f1-9480-4418-8684-565c44edf7b4\",\"pandascore_id\":null,\"yahoo_id\":29810,\"last_name\":\"Vainuku\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555692,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'0\\\"\",\"search_full_name\":\"somavainuku\",\"birth_date\":\"1992-05-28\",\"espn_id\":2510605},\"5792\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reaves\",\"depth_chart_position\":\"SS\",\"player_id\":\"5792\",\"birth_city\":null,\"fantasy_data_id\":16072,\"years_exp\":2,\"hashtag\":\"#JeremyReaves-NFL-WAS-39\",\"search_first_name\":\"jeremy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jeremy Reaves\",\"sportradar_id\":\"186a4bda-d3b3-48c1-8ed7-cb4ad1014062\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Reaves\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":\"Pensacola Catholic (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jeremyreaves\",\"birth_date\":\"1996-08-29\",\"espn_id\":3125248},\"2599\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032298\",\"first_name\":\"Bronson\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535831709074,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"2599\",\"birth_city\":null,\"fantasy_data_id\":17067,\"years_exp\":5,\"hashtag\":\"#BronsonHill-NFL-FA-36\",\"search_first_name\":\"bronson\",\"rotowire_id\":10636,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Bronson Hill\",\"sportradar_id\":\"512e3d02-9d44-4ede-bf6b-660cffbf8a31\",\"pandascore_id\":null,\"yahoo_id\":29184,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":603300,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'9\\\"\",\"search_full_name\":\"bronsonhill\",\"birth_date\":\"1993-01-02\",\"espn_id\":2574474},\"2418\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031574\",\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1566599740647,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"2418\",\"birth_city\":null,\"fantasy_data_id\":16874,\"years_exp\":5,\"hashtag\":\"#GabeWright-NFL-FA-57\",\"search_first_name\":\"gabe\",\"rotowire_id\":10321,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Gabe Wright\",\"sportradar_id\":\"8a73dcfa-3e7c-4a8d-acee-7d2b1fee6c2e\",\"pandascore_id\":null,\"yahoo_id\":28501,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Carver (GA)\",\"depth_chart_order\":null,\"stats_id\":593306,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gabewright\",\"birth_date\":\"1992-04-03\",\"espn_id\":2574579},\"6233\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035436\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604186146043,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sokol\",\"depth_chart_position\":\"TE\",\"player_id\":\"6233\",\"birth_city\":null,\"fantasy_data_id\":21158,\"years_exp\":1,\"hashtag\":\"#MattSokol-NFL-LAC-84\",\"search_first_name\":\"matt\",\"rotowire_id\":13686,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Sokol\",\"sportradar_id\":\"21a33144-63ee-4125-ac44-3fc911a39d50\",\"pandascore_id\":null,\"yahoo_id\":32551,\"last_name\":\"Sokol\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Adams (MI)\",\"depth_chart_order\":5,\"stats_id\":824177,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mattsokol\",\"birth_date\":\"1995-11-09\",\"espn_id\":3121378},\"710\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reitz\",\"depth_chart_position\":null,\"player_id\":\"710\",\"birth_city\":null,\"fantasy_data_id\":12204,\"years_exp\":12,\"hashtag\":\"#JoeReitz-NFL-FA-76\",\"search_first_name\":\"joe\",\"rotowire_id\":7276,\"rotoworld_id\":5258,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Joe Reitz\",\"sportradar_id\":\"1400c086-a5b0-45b1-a0f8-7cdc9e803917\",\"pandascore_id\":null,\"yahoo_id\":9159,\"last_name\":\"Reitz\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Hamilton Southeastern (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'7\\\"\",\"search_full_name\":\"joereitz\",\"birth_date\":\"1985-08-24\",\"espn_id\":11842},\"4195\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033787\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606348502416,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":\"K\",\"player_id\":\"4195\",\"birth_city\":null,\"fantasy_data_id\":19041,\"years_exp\":3,\"hashtag\":\"#JakeElliott-NFL-PHI-4\",\"search_first_name\":\"jake\",\"rotowire_id\":12203,\"rotoworld_id\":12367,\"active\":true,\"search_rank\":172,\"age\":25,\"full_name\":\"Jake Elliott\",\"sportradar_id\":\"059e5bb7-1842-4558-9aaf-77c352a21216\",\"pandascore_id\":null,\"yahoo_id\":30266,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Lyons Township (IL)\",\"depth_chart_order\":1,\"stats_id\":746154,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"167\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jakeelliott\",\"birth_date\":\"1995-01-21\",\"espn_id\":3050478},\"5093\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034405\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1538435402932,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LG\",\"player_id\":\"5093\",\"birth_city\":null,\"fantasy_data_id\":19974,\"years_exp\":2,\"hashtag\":\"#SamJones-NFL-FA-0\",\"search_first_name\":\"sam\",\"rotowire_id\":12552,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Sam Jones\",\"sportradar_id\":\"c3de87d2-5461-491f-8f36-1421ec9c0a76\",\"pandascore_id\":null,\"yahoo_id\":31153,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"samjones\",\"birth_date\":\"1996-02-21\",\"espn_id\":3128790},\"6412\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035203\",\"first_name\":\"Jaelin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"6412\",\"birth_city\":null,\"fantasy_data_id\":21300,\"years_exp\":1,\"hashtag\":\"#JaelinRobinson-NFL-FA-65\",\"search_first_name\":\"jaelin\",\"rotowire_id\":14029,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jaelin Robinson\",\"sportradar_id\":\"79348865-f45a-45dd-8b2f-a919b3fcc91b\",\"pandascore_id\":null,\"yahoo_id\":32119,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jaelinrobinson\",\"birth_date\":\"1995-01-08\",\"espn_id\":3138756},\"2731\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031743\",\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1565492115850,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":null,\"player_id\":\"2731\",\"birth_city\":null,\"fantasy_data_id\":17199,\"years_exp\":5,\"hashtag\":\"#AkeemHunt-NFL-FA-35\",\"search_first_name\":\"akeem\",\"rotowire_id\":10197,\"rotoworld_id\":10724,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Akeem Hunt\",\"sportradar_id\":\"d6e545a7-281d-4a0d-8988-2a4340323529\",\"pandascore_id\":null,\"yahoo_id\":28874,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Newton (GA)\",\"depth_chart_order\":null,\"stats_id\":606496,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"akeemhunt\",\"birth_date\":\"1993-02-22\",\"espn_id\":2576408},\"5335\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034165\",\"first_name\":\"Colby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596591950727,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"gossett\",\"depth_chart_position\":null,\"player_id\":\"5335\",\"birth_city\":null,\"fantasy_data_id\":20034,\"years_exp\":2,\"hashtag\":\"#ColbyGossett-NFL-CLE-71\",\"search_first_name\":\"colby\",\"rotowire_id\":12850,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Colby Gossett\",\"sportradar_id\":\"e1f9e986-6deb-4302-8478-eb64abe7aa24\",\"pandascore_id\":null,\"yahoo_id\":31183,\"last_name\":\"Gossett\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"North Forsyth (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'5\\\"\",\"search_full_name\":\"colbygossett\",\"birth_date\":\"1995-06-23\",\"espn_id\":3049575},\"7118\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1589564737624,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pinter\",\"depth_chart_position\":\"RG\",\"player_id\":\"7118\",\"birth_city\":null,\"fantasy_data_id\":22030,\"years_exp\":0,\"hashtag\":\"#DannyPinter-NFL-IND-63\",\"search_first_name\":\"danny\",\"rotowire_id\":14691,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Danny Pinter\",\"sportradar_id\":\"22febe45-170a-4f01-b144-3b35b44c7da4\",\"pandascore_id\":null,\"yahoo_id\":32819,\"last_name\":\"Pinter\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":\"John Adams (IN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dannypinter\",\"birth_date\":\"1996-06-19\",\"espn_id\":3915470},\"949\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028083\",\"first_name\":\"Jacquizz\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567201856561,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rodgers\",\"depth_chart_position\":null,\"player_id\":\"949\",\"birth_city\":null,\"fantasy_data_id\":13299,\"years_exp\":9,\"hashtag\":\"#JacquizzRodgers-NFL-FA-37\",\"search_first_name\":\"jacquizz\",\"rotowire_id\":7253,\"rotoworld_id\":6482,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jacquizz Rodgers\",\"sportradar_id\":\"91a95850-9514-49d5-b2b0-f8e21156daa0\",\"pandascore_id\":null,\"yahoo_id\":24932,\"last_name\":\"Rodgers\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Lamar Consolidated (TX)\",\"depth_chart_order\":null,\"stats_id\":458097,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'6\\\"\",\"search_full_name\":\"jacquizzrodgers\",\"birth_date\":\"1990-02-06\",\"espn_id\":14193},\"2502\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bud\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sasser\",\"depth_chart_position\":null,\"player_id\":\"2502\",\"birth_city\":null,\"fantasy_data_id\":16961,\"years_exp\":0,\"hashtag\":\"#BudSasser-NFL-FA-81\",\"search_first_name\":\"bud\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bud Sasser\",\"sportradar_id\":\"737b5578-eedf-46e8-9c7d-8ba9fe377e5a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sasser\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553241,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"budsasser\",\"birth_date\":null,\"espn_id\":2514129},\"3157\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033127\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606427458824,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3157\",\"birth_city\":null,\"fantasy_data_id\":17916,\"years_exp\":4,\"hashtag\":\"#WillFuller-NFL-HOU-15\",\"search_first_name\":\"will\",\"rotowire_id\":10818,\"rotoworld_id\":11295,\"active\":true,\"search_rank\":73,\"age\":26,\"full_name\":\"Will Fuller\",\"sportradar_id\":\"095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30\",\"pandascore_id\":null,\"yahoo_id\":29255,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Philadelphia Roman Catholic (PA)\",\"depth_chart_order\":1,\"stats_id\":749948,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'0\\\"\",\"search_full_name\":\"willfuller\",\"birth_date\":\"1994-04-16\",\"espn_id\":3052876},\"7445\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khaylan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kearsethomas\",\"depth_chart_position\":null,\"player_id\":\"7445\",\"birth_city\":null,\"fantasy_data_id\":22424,\"years_exp\":0,\"hashtag\":\"#KhaylanKearseThomas-NFL-FA-0\",\"search_first_name\":\"khaylan\",\"rotowire_id\":15160,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Khaylan Kearse-Thomas\",\"sportradar_id\":\"dc9ac528-179a-4841-b68c-16bd6066a6bd\",\"pandascore_id\":null,\"yahoo_id\":33341,\"last_name\":\"Kearse-Thomas\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"khaylankearsethomas\",\"birth_date\":\"1997-02-07\",\"espn_id\":3675959},\"4098\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033923\",\"first_name\":\"Kareem\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606490403213,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":\"RB\",\"player_id\":\"4098\",\"birth_city\":null,\"fantasy_data_id\":18944,\"years_exp\":3,\"hashtag\":\"#KareemHunt-NFL-CLE-27\",\"search_first_name\":\"kareem\",\"rotowire_id\":11739,\"rotoworld_id\":12295,\"active\":true,\"search_rank\":50,\"age\":25,\"full_name\":\"Kareem Hunt\",\"sportradar_id\":\"0ef0d0ca-2d2d-455b-ab63-a20c01303e37\",\"pandascore_id\":null,\"yahoo_id\":30199,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"South (OH)\",\"depth_chart_order\":2,\"stats_id\":746613,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kareemhunt\",\"birth_date\":\"1995-08-06\",\"espn_id\":3059915},\"1809\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031016\",\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602616848849,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cockrell\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1809\",\"birth_city\":null,\"fantasy_data_id\":15988,\"years_exp\":6,\"hashtag\":\"#RossCockrell-NFL-TB-43\",\"search_first_name\":\"ross\",\"rotowire_id\":9655,\"rotoworld_id\":9598,\"active\":true,\"search_rank\":771,\"age\":29,\"full_name\":\"Ross Cockrell\",\"sportradar_id\":\"36da9517-98fe-4258-807d-6d7e4b334c2f\",\"pandascore_id\":null,\"yahoo_id\":27637,\"last_name\":\"Cockrell\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Charlotte Latin (NC)\",\"depth_chart_order\":3,\"stats_id\":499673,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rosscockrell\",\"birth_date\":\"1991-08-06\",\"espn_id\":16843},\"2999\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031911\",\"first_name\":\"Rick\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1574205350657,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lovato\",\"depth_chart_position\":null,\"player_id\":\"2999\",\"birth_city\":null,\"fantasy_data_id\":17527,\"years_exp\":5,\"hashtag\":\"#RickLovato-NFL-PHI-45\",\"search_first_name\":\"rick\",\"rotowire_id\":10600,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Rick Lovato\",\"sportradar_id\":\"444a23cc-f2db-4078-8eec-3f43f8542742\",\"pandascore_id\":null,\"yahoo_id\":28698,\"last_name\":\"Lovato\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"Middletown (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ricklovato\",\"birth_date\":\"1992-09-09\",\"espn_id\":2565971},\"3388\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032803\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598033409416,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mills\",\"depth_chart_position\":\"SS\",\"player_id\":\"3388\",\"birth_city\":null,\"fantasy_data_id\":18149,\"years_exp\":4,\"hashtag\":\"#JalenMills-NFL-PHI-21\",\"search_first_name\":\"jalen\",\"rotowire_id\":11137,\"rotoworld_id\":11311,\"active\":true,\"search_rank\":1041,\"age\":26,\"full_name\":\"Jalen Mills\",\"sportradar_id\":\"12563365-b4aa-4b85-93a3-b220c8212707\",\"pandascore_id\":null,\"yahoo_id\":29467,\"last_name\":\"Mills\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Desoto (TX)\",\"depth_chart_order\":1,\"stats_id\":651021,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jalenmills\",\"birth_date\":\"1994-04-06\",\"espn_id\":2976540},\"1594\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowie\",\"depth_chart_position\":null,\"player_id\":\"1594\",\"birth_city\":null,\"fantasy_data_id\":15253,\"years_exp\":6,\"hashtag\":\"#MichaelBowie-NFL-FA-61\",\"search_first_name\":\"michael\",\"rotowire_id\":9124,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Bowie\",\"sportradar_id\":\"dfd8f952-5326-4f54-8914-c588c0cdacfb\",\"pandascore_id\":null,\"yahoo_id\":26865,\"last_name\":\"Bowie\",\"metadata\":null,\"college\":\"Northeastern State - OK\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaelbowie\",\"birth_date\":\"1991-09-25\",\"espn_id\":15975},\"5788\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034879\",\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sawyer\",\"depth_chart_position\":null,\"player_id\":\"5788\",\"birth_city\":null,\"fantasy_data_id\":20497,\"years_exp\":2,\"hashtag\":\"#DanteSawyer-NFL-FA-63\",\"search_first_name\":\"dante\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dante Sawyer\",\"sportradar_id\":\"59b606fd-cd76-4a01-bee5-ffac60073b3d\",\"pandascore_id\":null,\"yahoo_id\":31784,\"last_name\":\"Sawyer\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dantesawyer\",\"birth_date\":\"1994-12-17\",\"espn_id\":3924375},\"3045\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031711\",\"first_name\":\"Gannon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1536619505752,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sinclair\",\"depth_chart_position\":null,\"player_id\":\"3045\",\"birth_city\":null,\"fantasy_data_id\":17758,\"years_exp\":5,\"hashtag\":\"#GannonSinclair-NFL-FA-48\",\"search_first_name\":\"gannon\",\"rotowire_id\":10626,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Gannon Sinclair\",\"sportradar_id\":\"c28c4493-6fd0-4b02-9dee-0e84c974d2e5\",\"pandascore_id\":null,\"yahoo_id\":28813,\"last_name\":\"Sinclair\",\"metadata\":null,\"college\":\"Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":745276,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'7\\\"\",\"search_full_name\":\"gannonsinclair\",\"birth_date\":\"1993-02-05\",\"espn_id\":3048976},\"1845\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deontae\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535499015772,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"skinner\",\"depth_chart_position\":null,\"player_id\":\"1845\",\"birth_city\":null,\"fantasy_data_id\":16052,\"years_exp\":6,\"hashtag\":\"#DeontaeSkinner-NFL-FA-46\",\"search_first_name\":\"deontae\",\"rotowire_id\":9988,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Deontae Skinner\",\"sportradar_id\":\"41394335-4210-4a64-8fa2-8dbf865073a3\",\"pandascore_id\":null,\"yahoo_id\":28006,\"last_name\":\"Skinner\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deontaeskinner\",\"birth_date\":\"1990-12-18\",\"espn_id\":17250},\"2439\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032169\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535405740269,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hardison\",\"depth_chart_position\":null,\"player_id\":\"2439\",\"birth_city\":null,\"fantasy_data_id\":16896,\"years_exp\":5,\"hashtag\":\"#MarcusHardison-NFL-FA-78\",\"search_first_name\":\"marcus\",\"rotowire_id\":10319,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marcus Hardison\",\"sportradar_id\":\"b6025ffc-496f-40e5-bd23-38469aa50cb7\",\"pandascore_id\":null,\"yahoo_id\":28523,\"last_name\":\"Hardison\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Charlotte (FL)\",\"depth_chart_order\":null,\"stats_id\":732777,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marcushardison\",\"birth_date\":\"1992-02-14\",\"espn_id\":3043238},\"6541\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035389\",\"first_name\":\"Keegan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"render\",\"depth_chart_position\":\"C\",\"player_id\":\"6541\",\"birth_city\":null,\"fantasy_data_id\":21438,\"years_exp\":1,\"hashtag\":\"#KeeganRender-NFL-FA-0\",\"search_first_name\":\"keegan\",\"rotowire_id\":14022,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Keegan Render\",\"sportradar_id\":\"99fb51a5-1ab1-4818-90aa-f0c10944067d\",\"pandascore_id\":null,\"yahoo_id\":32407,\"last_name\":\"Render\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"keeganrender\",\"birth_date\":\"1995-11-23\",\"espn_id\":3144996},\"3779\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3779\",\"birth_city\":null,\"fantasy_data_id\":18592,\"years_exp\":0,\"hashtag\":\"#BruceJohnson-NFL-FA-0\",\"search_first_name\":\"bruce\",\"rotowire_id\":11533,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bruce Johnson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29677,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brucejohnson\",\"birth_date\":\"1992-12-04\",\"espn_id\":null},\"6709\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035690\",\"first_name\":\"Abdul\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beecham\",\"depth_chart_position\":null,\"player_id\":\"6709\",\"birth_city\":null,\"fantasy_data_id\":21628,\"years_exp\":1,\"hashtag\":\"#AbdulBeecham-NFL-FA-65\",\"search_first_name\":\"abdul\",\"rotowire_id\":14325,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Abdul Beecham\",\"sportradar_id\":\"cb175050-09d6-4216-93ee-276fed373aa1\",\"pandascore_id\":null,\"yahoo_id\":32620,\"last_name\":\"Beecham\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'3\\\"\",\"search_full_name\":\"abdulbeecham\",\"birth_date\":\"1997-03-05\",\"espn_id\":4036407},\"917\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027954\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1604247317856,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kerrigan\",\"depth_chart_position\":\"LDE\",\"player_id\":\"917\",\"birth_city\":null,\"fantasy_data_id\":13166,\"years_exp\":9,\"hashtag\":\"#RyanKerrigan-NFL-WAS-91\",\"search_first_name\":\"ryan\",\"rotowire_id\":7448,\"rotoworld_id\":null,\"active\":true,\"search_rank\":641,\"age\":32,\"full_name\":\"Ryan Kerrigan\",\"sportradar_id\":\"a25f92e6-6e67-4463-a32f-77976807b3d8\",\"pandascore_id\":null,\"yahoo_id\":24803,\"last_name\":\"Kerrigan\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Muncie Central (IN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryankerrigan\",\"birth_date\":\"1988-08-16\",\"espn_id\":13973},\"3294\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033077\",\"first_name\":\"Dak\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605039913597,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"prescott\",\"depth_chart_position\":\"QB\",\"player_id\":\"3294\",\"birth_city\":null,\"fantasy_data_id\":18055,\"years_exp\":4,\"hashtag\":\"#DakPrescott-NFL-DAL-4\",\"search_first_name\":\"dak\",\"rotowire_id\":11008,\"rotoworld_id\":11318,\"active\":true,\"search_rank\":51,\"age\":27,\"full_name\":\"Dak Prescott\",\"sportradar_id\":\"86197778-8d4b-4eba-affe-08ef7be7c70b\",\"pandascore_id\":null,\"yahoo_id\":29369,\"last_name\":\"Prescott\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Haughton (LA)\",\"depth_chart_order\":1,\"stats_id\":591816,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dakprescott\",\"birth_date\":\"1993-07-29\",\"espn_id\":2577417},\"1250\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1250\",\"birth_city\":null,\"fantasy_data_id\":14620,\"years_exp\":8,\"hashtag\":\"#WillJohnson-NFL-FA-46\",\"search_first_name\":\"will\",\"rotowire_id\":8191,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Will Johnson\",\"sportradar_id\":\"0ee7e81d-478c-4094-950f-f1478cb9c55c\",\"pandascore_id\":null,\"yahoo_id\":25706,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Centerville (OH)\",\"depth_chart_order\":null,\"stats_id\":403307,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"willjohnson\",\"birth_date\":\"1988-11-14\",\"espn_id\":14870},\"3898\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cheek\",\"depth_chart_position\":null,\"player_id\":\"3898\",\"birth_city\":null,\"fantasy_data_id\":18722,\"years_exp\":0,\"hashtag\":\"#BryceCheek-NFL-FA-45\",\"search_first_name\":\"bryce\",\"rotowire_id\":11461,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bryce Cheek\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30029,\"last_name\":\"Cheek\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brycecheek\",\"birth_date\":\"1993-08-28\",\"espn_id\":null},\"4718\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033854\",\"first_name\":\"Dare\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606519528686,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ogunbowale\",\"depth_chart_position\":\"RB\",\"player_id\":\"4718\",\"birth_city\":null,\"fantasy_data_id\":19626,\"years_exp\":3,\"hashtag\":\"#DareOgunbowale-NFL-JAX-33\",\"search_first_name\":\"dare\",\"rotowire_id\":11768,\"rotoworld_id\":12943,\"active\":true,\"search_rank\":1282,\"age\":26,\"full_name\":\"Dare Ogunbowale\",\"sportradar_id\":\"42b57148-fc06-4aee-b40b-bb941271b5b7\",\"pandascore_id\":null,\"yahoo_id\":30860,\"last_name\":\"Ogunbowale\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Marquette (WI)\",\"depth_chart_order\":3,\"stats_id\":703015,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dareogunbowale\",\"birth_date\":\"1994-05-04\",\"espn_id\":2983509},\"4610\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deante'\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1522115101387,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gray\",\"depth_chart_position\":null,\"player_id\":\"4610\",\"birth_city\":null,\"fantasy_data_id\":19500,\"years_exp\":2,\"hashtag\":\"#DeanteGray-NFL-FA-16\",\"search_first_name\":\"deante\",\"rotowire_id\":12226,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Deante' Gray\",\"sportradar_id\":\"c79d7ce0-e824-4447-9911-407ba962b4ce\",\"pandascore_id\":null,\"yahoo_id\":30806,\"last_name\":\"Gray\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691317,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'8\\\"\",\"search_full_name\":\"deantegray\",\"birth_date\":\"1994-02-27\",\"espn_id\":2971543},\"5877\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035526\",\"first_name\":\"Elgton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601249443285,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":\"LG\",\"player_id\":\"5877\",\"birth_city\":null,\"fantasy_data_id\":20828,\"years_exp\":1,\"hashtag\":\"#ElgtonJenkins-NFL-GB-74\",\"search_first_name\":\"elgton\",\"rotowire_id\":13669,\"rotoworld_id\":14095,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Elgton Jenkins\",\"sportradar_id\":\"b5d116d8-11d4-43b1-8f0b-9a3ba26648c9\",\"pandascore_id\":null,\"yahoo_id\":31876,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Clarksdale (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"elgtonjenkins\",\"birth_date\":\"1995-12-26\",\"espn_id\":3115485},\"174\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ratliff\",\"depth_chart_position\":null,\"player_id\":\"174\",\"birth_city\":null,\"fantasy_data_id\":4517,\"years_exp\":15,\"hashtag\":\"#JayRatliff-NFL-FA-90\",\"search_first_name\":\"jay\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Jay Ratliff\",\"sportradar_id\":\"659e5aea-8030-42ab-a41c-fa07fcda8440\",\"pandascore_id\":null,\"yahoo_id\":7400,\"last_name\":\"Ratliff\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Lowndes (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jayratliff\",\"birth_date\":\"1981-08-29\",\"espn_id\":8638},\"1891\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030780\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1560470707324,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hewitt\",\"depth_chart_position\":null,\"player_id\":\"1891\",\"birth_city\":null,\"fantasy_data_id\":16111,\"years_exp\":6,\"hashtag\":\"#RyanHewitt-NFL-FA-88\",\"search_first_name\":\"ryan\",\"rotowire_id\":9654,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ryan Hewitt\",\"sportradar_id\":\"fa26e15f-2375-4acc-aaae-cf32cfe4bc3e\",\"pandascore_id\":null,\"yahoo_id\":28021,\"last_name\":\"Hewitt\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Mullen (CO)\",\"depth_chart_order\":null,\"stats_id\":503183,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanhewitt\",\"birth_date\":\"1991-01-24\",\"espn_id\":17169},\"6455\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035051\",\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"6455\",\"birth_city\":null,\"fantasy_data_id\":21475,\"years_exp\":1,\"hashtag\":\"#WillieWright-NFL-ATL-66\",\"search_first_name\":\"willie\",\"rotowire_id\":14148,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Willie Wright\",\"sportradar_id\":\"7579c408-f3d3-43a6-a05a-2aec8291a618\",\"pandascore_id\":null,\"yahoo_id\":32290,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":\"Cypress Ridge (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"williewright\",\"birth_date\":\"1996-02-25\",\"espn_id\":3126302},\"5957\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035539\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604199311589,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nauta\",\"depth_chart_position\":\"TE\",\"player_id\":\"5957\",\"birth_city\":null,\"fantasy_data_id\":20893,\"years_exp\":1,\"hashtag\":\"#IsaacNauta-NFL-DET-89\",\"search_first_name\":\"isaac\",\"rotowire_id\":13528,\"rotoworld_id\":null,\"active\":true,\"search_rank\":571,\"age\":23,\"full_name\":\"Isaac Nauta\",\"sportradar_id\":\"e0755328-7fe1-4df7-9dfb-93e9cf9ef5be\",\"pandascore_id\":null,\"yahoo_id\":32056,\"last_name\":\"Nauta\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":3,\"stats_id\":914008,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaacnauta\",\"birth_date\":\"1997-05-21\",\"espn_id\":4035014},\"5745\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1529012401454,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stevens\",\"depth_chart_position\":\"QB\",\"player_id\":\"5745\",\"birth_city\":null,\"fantasy_data_id\":20654,\"years_exp\":1,\"hashtag\":\"#NickStevens-NFL-FA-5\",\"search_first_name\":\"nick\",\"rotowire_id\":12698,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1126,\"age\":24,\"full_name\":\"Nick Stevens\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":31741,\"last_name\":\"Stevens\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":741317,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickstevens\",\"birth_date\":\"1995-01-31\",\"espn_id\":3042933},\"6855\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ashtyn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606099209734,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"SS\",\"player_id\":\"6855\",\"birth_city\":null,\"fantasy_data_id\":21925,\"years_exp\":0,\"hashtag\":\"#AshtynDavis-NFL-NYJ-32\",\"search_first_name\":\"ashtyn\",\"rotowire_id\":14447,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1843,\"age\":24,\"full_name\":\"Ashtyn Davis\",\"sportradar_id\":\"7d491979-7d1b-4b55-9f3a-f68db22d8bb1\",\"pandascore_id\":null,\"yahoo_id\":32738,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Santa Cruz (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ashtyndavis\",\"birth_date\":\"1996-10-10\",\"espn_id\":3858271},\"5823\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034909\",\"first_name\":\"Tristan\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606010410079,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vizcaino\",\"depth_chart_position\":\"K\",\"player_id\":\"5823\",\"birth_city\":null,\"fantasy_data_id\":20717,\"years_exp\":1,\"hashtag\":\"#TristanVizcaino-NFL-MIN-3\",\"search_first_name\":\"tristan\",\"rotowire_id\":13496,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tristan Vizcaino\",\"sportradar_id\":\"cefd0600-93f2-4e0f-9624-81e3dc495c1d\",\"pandascore_id\":null,\"yahoo_id\":31808,\"last_name\":\"Vizcaino\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Damien (CA)\",\"depth_chart_order\":2,\"stats_id\":837827,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tristanvizcaino\",\"birth_date\":\"1996-07-31\",\"espn_id\":3127313},\"1559\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030520\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606319760538,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"glennon\",\"depth_chart_position\":\"QB\",\"player_id\":\"1559\",\"birth_city\":null,\"fantasy_data_id\":15201,\"years_exp\":7,\"hashtag\":\"#MikeGlennon-NFL-JAX-2\",\"search_first_name\":\"mike\",\"rotowire_id\":8745,\"rotoworld_id\":8374,\"active\":true,\"search_rank\":534,\"age\":30,\"full_name\":\"Mike Glennon\",\"sportradar_id\":\"e1235f1e-26ce-438c-8168-3b1ded4ab893\",\"pandascore_id\":null,\"yahoo_id\":26696,\"last_name\":\"Glennon\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Westfield (VA)\",\"depth_chart_order\":1,\"stats_id\":464346,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mikeglennon\",\"birth_date\":\"1989-12-12\",\"espn_id\":15837},\"6971\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Solomon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606531529881,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kindley\",\"depth_chart_position\":\"RG\",\"player_id\":\"6971\",\"birth_city\":null,\"fantasy_data_id\":22037,\"years_exp\":0,\"hashtag\":\"#SolomonKindley-NFL-MIA-66\",\"search_first_name\":\"solomon\",\"rotowire_id\":14476,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Solomon Kindley\",\"sportradar_id\":\"1fcb4a37-ca9d-44ef-8f2e-7d4be04c32ea\",\"pandascore_id\":null,\"yahoo_id\":32781,\"last_name\":\"Kindley\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Raines (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'4\\\"\",\"search_full_name\":\"solomonkindley\",\"birth_date\":\"1997-07-03\",\"espn_id\":4035008},\"367\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027061\",\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606345502334,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cook\",\"depth_chart_position\":\"TE\",\"player_id\":\"367\",\"birth_city\":null,\"fantasy_data_id\":8534,\"years_exp\":11,\"hashtag\":\"#JaredCook-NFL-NO-87\",\"search_first_name\":\"jared\",\"rotowire_id\":5981,\"rotoworld_id\":5165,\"active\":true,\"search_rank\":109,\"age\":33,\"full_name\":\"Jared Cook\",\"sportradar_id\":\"3b7a1409-d154-4e5c-8c94-9d4a0e0993c7\",\"pandascore_id\":null,\"yahoo_id\":9353,\"last_name\":\"Cook\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"North Gwinnett (GA)\",\"depth_chart_order\":1,\"stats_id\":296480,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jaredcook\",\"birth_date\":\"1987-04-07\",\"espn_id\":12537},\"2606\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"2606\",\"birth_city\":null,\"fantasy_data_id\":17074,\"years_exp\":1,\"hashtag\":\"#CedricReed-NFL-FA-66\",\"search_first_name\":\"cedric\",\"rotowire_id\":10343,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cedric Reed\",\"sportradar_id\":\"5ac77ada-1151-454a-a46b-3287fb8998e7\",\"pandascore_id\":null,\"yahoo_id\":28775,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cedricreed\",\"birth_date\":\"1992-10-09\",\"espn_id\":2577574},\"2938\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"worthy\",\"depth_chart_position\":null,\"player_id\":\"2938\",\"birth_city\":null,\"fantasy_data_id\":17408,\"years_exp\":0,\"hashtag\":\"#CamWorthy-NFL-FA-81\",\"search_first_name\":\"cam\",\"rotowire_id\":10537,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cam Worthy\",\"sportradar_id\":\"a9770d45-8e86-4e8e-af09-b88afcf96349\",\"pandascore_id\":null,\"yahoo_id\":28958,\"last_name\":\"Worthy\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693329,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'2\\\"\",\"search_full_name\":\"camworthy\",\"birth_date\":\"1992-04-06\",\"espn_id\":null},\"5078\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034388\",\"first_name\":\"Davontae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605750944034,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5078\",\"birth_city\":null,\"fantasy_data_id\":19967,\"years_exp\":2,\"hashtag\":\"#DavontaeHarris-NFL-BAL-27\",\"search_first_name\":\"davontae\",\"rotowire_id\":12726,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1372,\"age\":25,\"full_name\":\"Davontae Harris\",\"sportradar_id\":\"45c926b6-0f2f-4d29-b806-d21e4ea89ba2\",\"pandascore_id\":null,\"yahoo_id\":31121,\"last_name\":\"Harris\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Illinois State\",\"high_school\":\"Wichita South (KS)\",\"depth_chart_order\":3,\"stats_id\":745203,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"davontaeharris\",\"birth_date\":\"1995-01-21\",\"espn_id\":3047188},\"3964\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"LT\",\"player_id\":\"3964\",\"birth_city\":null,\"fantasy_data_id\":18798,\"years_exp\":2,\"hashtag\":\"#JeffAdams-NFL-FA-63\",\"search_first_name\":\"jeff\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeff Adams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Columbia\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeffadams\",\"birth_date\":\"1989-09-06\",\"espn_id\":null},\"720\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027867\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606524329255,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pierrepaul\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"720\",\"birth_city\":null,\"fantasy_data_id\":12247,\"years_exp\":10,\"hashtag\":\"#JasonPierrePaul-NFL-TB-90\",\"search_first_name\":\"jason\",\"rotowire_id\":6568,\"rotoworld_id\":5681,\"active\":true,\"search_rank\":619,\"age\":31,\"full_name\":\"Jason Pierre-Paul\",\"sportradar_id\":\"e56569f1-eaf4-473b-b92c-fc5c84cc7338\",\"pandascore_id\":null,\"yahoo_id\":23990,\"last_name\":\"Pierre-Paul\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Deerfield Beach (FL)\",\"depth_chart_order\":1,\"stats_id\":504295,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jasonpierrepaul\",\"birth_date\":\"1989-01-01\",\"espn_id\":13256},\"1210\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Audie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":null,\"player_id\":\"1210\",\"birth_city\":null,\"fantasy_data_id\":14442,\"years_exp\":8,\"hashtag\":\"#AudieCole-NFL-FA-46\",\"search_first_name\":\"audie\",\"rotowire_id\":8185,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Audie Cole\",\"sportradar_id\":\"5e8f9ffa-395e-4195-b418-2e892b936583\",\"pandascore_id\":null,\"yahoo_id\":25920,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Monroe (MI)\",\"depth_chart_order\":null,\"stats_id\":401512,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"audiecole\",\"birth_date\":\"1989-06-01\",\"espn_id\":15023},\"3652\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033114\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606527929560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"3652\",\"birth_city\":null,\"fantasy_data_id\":18445,\"years_exp\":4,\"hashtag\":\"#MikeThomas-NFL-CIN-80\",\"search_first_name\":\"mike\",\"rotowire_id\":11076,\"rotoworld_id\":11491,\"active\":true,\"search_rank\":245,\"age\":26,\"full_name\":\"Mike Thomas\",\"sportradar_id\":\"88856dfa-45ce-4b6e-bbf7-4f8413ac89ca\",\"pandascore_id\":null,\"yahoo_id\":29440,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"DuSable (IL)\",\"depth_chart_order\":null,\"stats_id\":835086,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":\"Doubtful\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mikethomas\",\"birth_date\":\"1994-08-16\",\"espn_id\":3123986},\"1610\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spadola\",\"depth_chart_position\":null,\"player_id\":\"1610\",\"birth_city\":null,\"fantasy_data_id\":15285,\"years_exp\":6,\"hashtag\":\"#RyanSpadola-NFL-FA-18\",\"search_first_name\":\"ryan\",\"rotowire_id\":8935,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ryan Spadola\",\"sportradar_id\":\"40652b42-2017-47ac-a6c3-336715bda1b7\",\"pandascore_id\":null,\"yahoo_id\":26995,\"last_name\":\"Spadola\",\"metadata\":null,\"college\":\"Lehigh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":502705,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryanspadola\",\"birth_date\":\"1991-02-15\",\"espn_id\":16230},\"6054\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035446\",\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baity\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6054\",\"birth_city\":null,\"fantasy_data_id\":21019,\"years_exp\":1,\"hashtag\":\"#DerrickBaity-NFL-FA-0\",\"search_first_name\":\"derrick\",\"rotowire_id\":13690,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Derrick Baity\",\"sportradar_id\":\"5bb30e2d-868a-4597-94dd-0e0f6ab76d66\",\"pandascore_id\":null,\"yahoo_id\":32500,\"last_name\":\"Baity\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derrickbaity\",\"birth_date\":\"1996-12-23\",\"espn_id\":3915240},\"1670\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lawrence\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okoye\",\"depth_chart_position\":null,\"player_id\":\"1670\",\"birth_city\":null,\"fantasy_data_id\":15465,\"years_exp\":6,\"hashtag\":\"#LawrenceOkoye-NFL-FA-96\",\"search_first_name\":\"lawrence\",\"rotowire_id\":9131,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Lawrence Okoye\",\"sportradar_id\":\"f06b8fb5-2448-4f38-9b89-17f7e785d484\",\"pandascore_id\":null,\"yahoo_id\":27273,\"last_name\":\"Okoye\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'6\\\"\",\"search_full_name\":\"lawrenceokoye\",\"birth_date\":\"1991-10-06\",\"espn_id\":16155},\"2981\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scheuerman\",\"depth_chart_position\":null,\"player_id\":\"2981\",\"birth_city\":null,\"fantasy_data_id\":17481,\"years_exp\":0,\"hashtag\":\"#RossScheuerman-NFL-FA-48\",\"search_first_name\":\"ross\",\"rotowire_id\":10201,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ross Scheuerman\",\"sportradar_id\":\"4e814f09-f752-47a5-890d-29f5182b52b7\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Scheuerman\",\"metadata\":null,\"college\":\"Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":596807,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rossscheuerman\",\"birth_date\":\"1993-03-05\",\"espn_id\":null},\"2532\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031960\",\"first_name\":\"Da'Ron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2532\",\"birth_city\":null,\"fantasy_data_id\":16992,\"years_exp\":4,\"hashtag\":\"#DaRonBrown-NFL-FA-81\",\"search_first_name\":\"daron\",\"rotowire_id\":10498,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Da'Ron Brown\",\"sportradar_id\":\"e56336e9-0455-4ec1-aefe-b54a4a52c999\",\"pandascore_id\":null,\"yahoo_id\":28621,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557446,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"daronbrown\",\"birth_date\":\"1991-09-21\",\"espn_id\":2513351},\"5581\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034303\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1554754507235,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wint\",\"depth_chart_position\":null,\"player_id\":\"5581\",\"birth_city\":null,\"fantasy_data_id\":20579,\"years_exp\":2,\"hashtag\":\"#AnthonyWint-NFL-FA-52\",\"search_first_name\":\"anthony\",\"rotowire_id\":13160,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Wint\",\"sportradar_id\":\"8bcda483-4714-4caf-bd21-4e64884a1ab3\",\"pandascore_id\":null,\"yahoo_id\":31504,\"last_name\":\"Wint\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":839219,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonywint\",\"birth_date\":\"1995-09-14\",\"espn_id\":3128853},\"3323\":{\"position\":\"DB\",\"injury_notes\":\"Christian will miss 2 weeks for an undisclosed reason.\",\"birth_country\":null,\"gsis_id\":\"00-0032786\",\"first_name\":\"Marqui\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602976557650,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"christian\",\"depth_chart_position\":null,\"player_id\":\"3323\",\"birth_city\":null,\"fantasy_data_id\":18084,\"years_exp\":4,\"hashtag\":\"#MarquiChristian-NFL-CHI-37\",\"search_first_name\":\"marqui\",\"rotowire_id\":11223,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1022,\"age\":26,\"full_name\":\"Marqui Christian\",\"sportradar_id\":\"b6fa8c3c-c729-4178-8e9c-c7e784a872c1\",\"pandascore_id\":null,\"yahoo_id\":29401,\"last_name\":\"Christian\",\"metadata\":null,\"college\":\"Midwestern State\",\"high_school\":\"Spring (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marquichristian\",\"birth_date\":\"1994-10-27\",\"espn_id\":3960454},\"4694\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarrod\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1519415701165,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harper\",\"depth_chart_position\":null,\"player_id\":\"4694\",\"birth_city\":null,\"fantasy_data_id\":19597,\"years_exp\":2,\"hashtag\":\"#JarrodHarper-NFL-FA-35\",\"search_first_name\":\"jarrod\",\"rotowire_id\":12068,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarrod Harper\",\"sportradar_id\":\"539ed9b9-1d63-47dd-b86a-1349356d3e9a\",\"pandascore_id\":null,\"yahoo_id\":30833,\"last_name\":\"Harper\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jarrodharper\",\"birth_date\":\"1994-03-28\",\"espn_id\":2976633},\"2793\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donnie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baggs\",\"depth_chart_position\":null,\"player_id\":\"2793\",\"birth_city\":null,\"fantasy_data_id\":17261,\"years_exp\":0,\"hashtag\":\"#DonnieBaggs-NFL-FA-46\",\"search_first_name\":\"donnie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Donnie Baggs\",\"sportradar_id\":\"a5ca4c0b-82b0-4a6d-aa38-3639c8398f08\",\"pandascore_id\":null,\"yahoo_id\":29109,\"last_name\":\"Baggs\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"donniebaggs\",\"birth_date\":\"1992-12-01\",\"espn_id\":2578696},\"3353\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032794\",\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1595887823541,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"vitale\",\"depth_chart_position\":\"RB\",\"player_id\":\"3353\",\"birth_city\":null,\"fantasy_data_id\":18114,\"years_exp\":4,\"hashtag\":\"#DanVitale-NFL-NE-45\",\"search_first_name\":\"dan\",\"rotowire_id\":10947,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1030,\"age\":27,\"full_name\":\"Dan Vitale\",\"sportradar_id\":\"c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf\",\"pandascore_id\":null,\"yahoo_id\":29431,\"last_name\":\"Vitale\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Northwestern\",\"high_school\":\"Wheaton Warrenville South (IL)\",\"depth_chart_order\":8,\"stats_id\":691856,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'0\\\"\",\"search_full_name\":\"danvitale\",\"birth_date\":\"1993-10-26\",\"espn_id\":2974365},\"3191\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032888\",\"first_name\":\"Karl\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603641006432,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":\"SS\",\"player_id\":\"3191\",\"birth_city\":null,\"fantasy_data_id\":17952,\"years_exp\":4,\"hashtag\":\"#KarlJoseph-NFL-CLE-42\",\"search_first_name\":\"karl\",\"rotowire_id\":11082,\"rotoworld_id\":11364,\"active\":true,\"search_rank\":962,\"age\":27,\"full_name\":\"Karl Joseph\",\"sportradar_id\":\"741c1ab2-378b-45ce-86c7-533e6a031f22\",\"pandascore_id\":null,\"yahoo_id\":29248,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Edgewater (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"karljoseph\",\"birth_date\":\"1993-09-08\",\"espn_id\":2976639},\"328\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kellen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"328\",\"birth_city\":null,\"fantasy_data_id\":8142,\"years_exp\":12,\"hashtag\":\"#KellenDavis-NFL-FA-47\",\"search_first_name\":\"kellen\",\"rotowire_id\":5787,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Kellen Davis\",\"sportradar_id\":\"a5210045-10f8-4f59-9547-675fd0f27840\",\"pandascore_id\":null,\"yahoo_id\":8935,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Adrian (MI)\",\"depth_chart_order\":null,\"stats_id\":264657,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'7\\\"\",\"search_full_name\":\"kellendavis\",\"birth_date\":\"1985-10-11\",\"espn_id\":11392},\"4670\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033706\",\"first_name\":\"Artavis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605747343974,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4670\",\"birth_city\":null,\"fantasy_data_id\":19569,\"years_exp\":3,\"hashtag\":\"#ArtavisScott-NFL-HOU-1\",\"search_first_name\":\"artavis\",\"rotowire_id\":11722,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1279,\"age\":26,\"full_name\":\"Artavis Scott\",\"sportradar_id\":\"a9b58dcf-40f6-4c27-a415-b922fc39f0bb\",\"pandascore_id\":null,\"yahoo_id\":30432,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"East Lake (FL)\",\"depth_chart_order\":3,\"stats_id\":828766,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"artavisscott\",\"birth_date\":\"1994-10-12\",\"espn_id\":3122839},\"3237\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033124\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606076419401,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"redmond\",\"depth_chart_position\":\"FS\",\"player_id\":\"3237\",\"birth_city\":null,\"fantasy_data_id\":17998,\"years_exp\":4,\"hashtag\":\"#WillRedmond-NFL-GB-25\",\"search_first_name\":\"will\",\"rotowire_id\":11117,\"rotoworld_id\":11394,\"active\":true,\"search_rank\":985,\"age\":26,\"full_name\":\"Will Redmond\",\"sportradar_id\":\"c7fccdf9-dd52-4483-862b-d58a94560135\",\"pandascore_id\":null,\"yahoo_id\":29302,\"last_name\":\"Redmond\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"East (TN)\",\"depth_chart_order\":2,\"stats_id\":686835,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"willredmond\",\"birth_date\":\"1993-12-28\",\"espn_id\":2971364},\"6140\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035255\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604697645908,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sheffield\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6140\",\"birth_city\":null,\"fantasy_data_id\":20938,\"years_exp\":1,\"hashtag\":\"#KendallSheffield-NFL-ATL-20\",\"search_first_name\":\"kendall\",\"rotowire_id\":13618,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1598,\"age\":24,\"full_name\":\"Kendall Sheffield\",\"sportradar_id\":\"fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1\",\"pandascore_id\":null,\"yahoo_id\":31943,\"last_name\":\"Sheffield\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Thurgood Marshall (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kendallsheffield\",\"birth_date\":\"1996-05-30\",\"espn_id\":3925358},\"7438\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kristian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605037214072,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilkerson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"7438\",\"birth_city\":null,\"fantasy_data_id\":22417,\"years_exp\":0,\"hashtag\":\"#KristianWilkerson-NFL-NE-17\",\"search_first_name\":\"kristian\",\"rotowire_id\":15163,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kristian Wilkerson\",\"sportradar_id\":\"b9a6720d-9c6f-46f2-bcee-b80550026437\",\"pandascore_id\":null,\"yahoo_id\":33349,\"last_name\":\"Wilkerson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Southeast Missouri\",\"high_school\":\"Craigmont (TN)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kristianwilkerson\",\"birth_date\":\"1997-01-10\",\"espn_id\":3910176},\"6310\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035365\",\"first_name\":\"Tae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600985113793,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hayes\",\"depth_chart_position\":null,\"player_id\":\"6310\",\"birth_city\":null,\"fantasy_data_id\":21210,\"years_exp\":1,\"hashtag\":\"#TaeHayes-NFL-MIA-30\",\"search_first_name\":\"tae\",\"rotowire_id\":14031,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1696,\"age\":23,\"full_name\":\"Tae Hayes\",\"sportradar_id\":\"588d8e04-98dc-478a-b3ba-9e3cb58d9afc\",\"pandascore_id\":null,\"yahoo_id\":32092,\"last_name\":\"Hayes\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Decatur (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"taehayes\",\"birth_date\":\"1997-08-19\",\"espn_id\":3917147},\"7317\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693360060,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rice\",\"depth_chart_position\":null,\"player_id\":\"7317\",\"birth_city\":null,\"fantasy_data_id\":21790,\"years_exp\":0,\"hashtag\":\"#JaredRice-NFL-FA-0\",\"search_first_name\":\"jared\",\"rotowire_id\":14923,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jared Rice\",\"sportradar_id\":\"9d958871-1f29-4cc2-b4e9-dec6c50f2140\",\"pandascore_id\":null,\"yahoo_id\":32988,\"last_name\":\"Rice\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jaredrice\",\"birth_date\":\"1995-12-28\",\"espn_id\":null},\"3416\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032581\",\"first_name\":\"Cre'von\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606276255657,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"leblanc\",\"depth_chart_position\":null,\"player_id\":\"3416\",\"birth_city\":null,\"fantasy_data_id\":18178,\"years_exp\":4,\"hashtag\":\"#CrevonLeBlanc-NFL-PHI-34\",\"search_first_name\":\"crevon\",\"rotowire_id\":11362,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1048,\"age\":26,\"full_name\":\"Cre'von LeBlanc\",\"sportradar_id\":\"06a67b3c-d482-4767-b2ce-49edd8777525\",\"pandascore_id\":null,\"yahoo_id\":29876,\"last_name\":\"LeBlanc\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Glades Central (FL)\",\"depth_chart_order\":null,\"stats_id\":695098,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"crevonleblanc\",\"birth_date\":\"1994-07-25\",\"espn_id\":2982870},\"7154\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrek\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603842055065,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"tuszka\",\"depth_chart_position\":null,\"player_id\":\"7154\",\"birth_city\":null,\"fantasy_data_id\":21873,\"years_exp\":0,\"hashtag\":\"#DerrekTuszka-NFL-DEN-48\",\"search_first_name\":\"derrek\",\"rotowire_id\":14731,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1802,\"age\":24,\"full_name\":\"Derrek Tuszka\",\"sportradar_id\":\"abbfa41c-ccb6-4378-b75b-28ec7d54e277\",\"pandascore_id\":null,\"yahoo_id\":32923,\"last_name\":\"Tuszka\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"North Dakota State\",\"high_school\":\"Warner (SD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'5\\\"\",\"search_full_name\":\"derrektuszka\",\"birth_date\":\"1996-07-11\",\"espn_id\":3930915},\"6377\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035493\",\"first_name\":\"Immanuel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1563666628334,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":null,\"player_id\":\"6377\",\"birth_city\":null,\"fantasy_data_id\":21322,\"years_exp\":1,\"hashtag\":\"#ImmanuelTurner-NFL-FA-92\",\"search_first_name\":\"immanuel\",\"rotowire_id\":13591,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Immanuel Turner\",\"sportradar_id\":\"bd046bf8-70f7-4480-878a-8894e5912102\",\"pandascore_id\":null,\"yahoo_id\":32161,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'3\\\"\",\"search_full_name\":\"immanuelturner\",\"birth_date\":\"1996-12-16\",\"espn_id\":3914384},\"1442\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029747\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602802242348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"banjo\",\"depth_chart_position\":\"FS\",\"player_id\":\"1442\",\"birth_city\":null,\"fantasy_data_id\":15011,\"years_exp\":7,\"hashtag\":\"#ChrisBanjo-NFL-ARI-31\",\"search_first_name\":\"chris\",\"rotowire_id\":9101,\"rotoworld_id\":null,\"active\":true,\"search_rank\":724,\"age\":30,\"full_name\":\"Chris Banjo\",\"sportradar_id\":\"6c7704c2-f833-46aa-9f9c-d975d5ad1297\",\"pandascore_id\":null,\"yahoo_id\":26621,\"last_name\":\"Banjo\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Kempner (TX)\",\"depth_chart_order\":3,\"stats_id\":460828,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'10\\\"\",\"search_full_name\":\"chrisbanjo\",\"birth_date\":\"1990-02-26\",\"espn_id\":15782},\"2721\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harper\",\"depth_chart_position\":null,\"player_id\":\"2721\",\"birth_city\":null,\"fantasy_data_id\":17189,\"years_exp\":5,\"hashtag\":\"#ChrisHarper-NFL-FA-3\",\"search_first_name\":\"chris\",\"rotowire_id\":10240,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Harper\",\"sportradar_id\":\"bbdb52d4-cbc6-473d-999c-fc7c518e55b1\",\"pandascore_id\":null,\"yahoo_id\":28985,\"last_name\":\"Harper\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Crespi Carmelite\",\"depth_chart_order\":null,\"stats_id\":690965,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrisharper\",\"birth_date\":\"1993-12-07\",\"espn_id\":2978196},\"301\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025473\",\"first_name\":\"Marshal\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1583863248432,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"yanda\",\"depth_chart_position\":\"RG\",\"player_id\":\"301\",\"birth_city\":null,\"fantasy_data_id\":7459,\"years_exp\":13,\"hashtag\":\"#MarshalYanda-NFL-FA-73\",\"search_first_name\":\"marshal\",\"rotowire_id\":5394,\"rotoworld_id\":4247,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Marshal Yanda\",\"sportradar_id\":\"fafd2927-7e17-4e85-afa2-aa2c019229ed\",\"pandascore_id\":null,\"yahoo_id\":8340,\"last_name\":\"Yanda\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Anamosa (IA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marshalyanda\",\"birth_date\":\"1984-09-15\",\"espn_id\":10530},\"4819\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034030\",\"first_name\":\"Keionta\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587951057379,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"4819\",\"birth_city\":null,\"fantasy_data_id\":19727,\"years_exp\":3,\"hashtag\":\"#KeiontaDavis-NFL-FA-0\",\"search_first_name\":\"keionta\",\"rotowire_id\":11911,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Keionta Davis\",\"sportradar_id\":\"8725d38b-398b-4ca5-9e80-d43b0bf855bb\",\"pandascore_id\":null,\"yahoo_id\":30934,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Tennessee-Chattanooga\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"keiontadavis\",\"birth_date\":\"1994-03-01\",\"espn_id\":2973627},\"2587\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031504\",\"first_name\":\"Dres\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534359014078,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2587\",\"birth_city\":null,\"fantasy_data_id\":17052,\"years_exp\":5,\"hashtag\":\"#DresAnderson-NFL-FA-18\",\"search_first_name\":\"dres\",\"rotowire_id\":10220,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dres Anderson\",\"sportradar_id\":\"b4659f0e-7262-40df-a45c-2bc7042e882a\",\"pandascore_id\":null,\"yahoo_id\":28793,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":543747,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dresanderson\",\"birth_date\":\"1992-07-20\",\"espn_id\":2514542},\"2985\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031921\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1593381039346,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lamm\",\"depth_chart_position\":\"LT\",\"player_id\":\"2985\",\"birth_city\":null,\"fantasy_data_id\":17490,\"years_exp\":5,\"hashtag\":\"#KendallLamm-NFL-CLE-70\",\"search_first_name\":\"kendall\",\"rotowire_id\":10644,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kendall Lamm\",\"sportradar_id\":\"a87f6156-c028-4634-84a8-e3388d6dff2b\",\"pandascore_id\":null,\"yahoo_id\":28892,\"last_name\":\"Lamm\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Butler (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kendalllamm\",\"birth_date\":\"1992-06-05\",\"espn_id\":2509370},\"6302\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035316\",\"first_name\":\"Kaden\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596849038346,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elliss\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6302\",\"birth_city\":null,\"fantasy_data_id\":21134,\"years_exp\":1,\"hashtag\":\"#KadenElliss-NFL-NO-55\",\"search_first_name\":\"kaden\",\"rotowire_id\":13953,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1677,\"age\":25,\"full_name\":\"Kaden Elliss\",\"sportradar_id\":\"7c51883f-8ea7-4f54-8c03-a562b4524858\",\"pandascore_id\":null,\"yahoo_id\":32076,\"last_name\":\"Elliss\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Judge Memorial Catholic (UT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kadenelliss\",\"birth_date\":\"1995-07-10\",\"espn_id\":3124890},\"7414\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Johnathon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359978,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"7414\",\"birth_city\":null,\"fantasy_data_id\":21726,\"years_exp\":0,\"hashtag\":\"#JohnathonJohnson-NFL-FA-0\",\"search_first_name\":\"johnathon\",\"rotowire_id\":14886,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Johnathon Johnson\",\"sportradar_id\":\"3010aded-373c-41e8-9246-d5fb5aa0a345\",\"pandascore_id\":null,\"yahoo_id\":33206,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"johnathonjohnson\",\"birth_date\":\"1996-09-30\",\"espn_id\":3924325},\"5679\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034506\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"5679\",\"birth_city\":null,\"fantasy_data_id\":20254,\"years_exp\":2,\"hashtag\":\"#RyanCarter-NFL-FA-46\",\"search_first_name\":\"ryan\",\"rotowire_id\":13227,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Carter\",\"sportradar_id\":\"31ac1b75-5119-47b1-9ca0-5b8c329c95b4\",\"pandascore_id\":null,\"yahoo_id\":31600,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ryancarter\",\"birth_date\":\"1994-11-04\",\"espn_id\":3045123},\"2635\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vernon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2635\",\"birth_city\":null,\"fantasy_data_id\":17103,\"years_exp\":0,\"hashtag\":\"#VernonJohnson-NFL-FA-83\",\"search_first_name\":\"vernon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Vernon Johnson\",\"sportradar_id\":\"7dc31508-fd98-4737-acf5-a046ec95c61c\",\"pandascore_id\":null,\"yahoo_id\":28880,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Texas A&M-Commerce\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":847325,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"vernonjohnson\",\"birth_date\":\"1992-04-17\",\"espn_id\":3078581},\"3790\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"3790\",\"birth_city\":null,\"fantasy_data_id\":18604,\"years_exp\":3,\"hashtag\":\"#KevinAnderson-NFL-FA-57\",\"search_first_name\":\"kevin\",\"rotowire_id\":11682,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kevin Anderson\",\"sportradar_id\":\"8c253cad-8720-4528-a5c4-363f21f5f79d\",\"pandascore_id\":null,\"yahoo_id\":29761,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevinanderson\",\"birth_date\":\"1993-04-05\",\"espn_id\":null},\"7407\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606259754845,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7407\",\"birth_city\":null,\"fantasy_data_id\":21755,\"years_exp\":0,\"hashtag\":\"#IsaiahWright-NFL-WAS-83\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14503,\"rotoworld_id\":null,\"active\":true,\"search_rank\":563,\"age\":23,\"full_name\":\"Isaiah Wright\",\"sportradar_id\":\"af534c7d-791e-4b7f-900d-2d8fd47c0d2a\",\"pandascore_id\":null,\"yahoo_id\":33209,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Kingswood-Oxford (CT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"isaiahwright\",\"birth_date\":\"1997-01-13\",\"espn_id\":4044121},\"3793\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032719\",\"first_name\":\"Lenny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1556843108512,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"RDE\",\"player_id\":\"3793\",\"birth_city\":null,\"fantasy_data_id\":18607,\"years_exp\":4,\"hashtag\":\"#LennyJones-NFL-FA-91\",\"search_first_name\":\"lenny\",\"rotowire_id\":11552,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Lenny Jones\",\"sportradar_id\":\"f5181047-2dbb-4058-bed6-34464a138867\",\"pandascore_id\":null,\"yahoo_id\":29767,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lennyjones\",\"birth_date\":\"1991-08-08\",\"espn_id\":2573947},\"1755\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keavon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"milton\",\"depth_chart_position\":null,\"player_id\":\"1755\",\"birth_city\":null,\"fantasy_data_id\":15772,\"years_exp\":6,\"hashtag\":\"#KeavonMilton-NFL-FA-76\",\"search_first_name\":\"keavon\",\"rotowire_id\":9084,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Keavon Milton\",\"sportradar_id\":\"3d3da3db-ce96-4e59-ba40-7975e69d0dde\",\"pandascore_id\":null,\"yahoo_id\":26955,\"last_name\":\"Milton\",\"metadata\":null,\"college\":\"Louisiana - Monroe\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'4\\\"\",\"search_full_name\":\"keavonmilton\",\"birth_date\":\"1990-06-23\",\"espn_id\":16095},\"6402\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034928\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606443960106,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6402\",\"birth_city\":null,\"fantasy_data_id\":21400,\"years_exp\":1,\"hashtag\":\"#StevenSims-NFL-WAS-15\",\"search_first_name\":\"steven\",\"rotowire_id\":14055,\"rotoworld_id\":null,\"active\":true,\"search_rank\":192,\"age\":23,\"full_name\":\"Steven Sims\",\"sportradar_id\":\"4a213e4e-b0ba-4124-833e-33c528bd5908\",\"pandascore_id\":null,\"yahoo_id\":32187,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Travis (TX)\",\"depth_chart_order\":1,\"stats_id\":877596,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'10\\\"\",\"search_full_name\":\"stevensims\",\"birth_date\":\"1997-03-31\",\"espn_id\":3917960},\"770\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027914\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606522529045,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sendejo\",\"depth_chart_position\":\"FS\",\"player_id\":\"770\",\"birth_city\":null,\"fantasy_data_id\":12554,\"years_exp\":10,\"hashtag\":\"#AndrewSendejo-NFL-CLE-23\",\"search_first_name\":\"andrew\",\"rotowire_id\":7214,\"rotoworld_id\":6429,\"active\":true,\"search_rank\":623,\"age\":33,\"full_name\":\"Andrew Sendejo\",\"sportradar_id\":\"39ee3bee-1177-49cd-a78b-7a790ffd0b84\",\"pandascore_id\":null,\"yahoo_id\":24759,\"last_name\":\"Sendejo\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Smithson Valley (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andrewsendejo\",\"birth_date\":\"1987-09-09\",\"espn_id\":13939},\"2057\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ken\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bishop\",\"depth_chart_position\":null,\"player_id\":\"2057\",\"birth_city\":null,\"fantasy_data_id\":16356,\"years_exp\":6,\"hashtag\":\"#KenBishop-NFL-FA-93\",\"search_first_name\":\"ken\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ken Bishop\",\"sportradar_id\":\"58082e7d-926f-4acd-9a6b-8b09d2306e4b\",\"pandascore_id\":null,\"yahoo_id\":27779,\"last_name\":\"Bishop\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Piper (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kenbishop\",\"birth_date\":\"1990-09-08\",\"espn_id\":16953},\"6376\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567185054925,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"folstonjr\",\"depth_chart_position\":null,\"player_id\":\"6376\",\"birth_city\":null,\"fantasy_data_id\":21325,\"years_exp\":1,\"hashtag\":\"#JamesFolstonJr-NFL-FA-49\",\"search_first_name\":\"james\",\"rotowire_id\":14046,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"James Folston Jr.\",\"sportradar_id\":\"7bb26215-7bbf-4f06-bf61-b2545edb1154\",\"pandascore_id\":null,\"yahoo_id\":32157,\"last_name\":\"Folston Jr.\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamesfolstonjr\",\"birth_date\":\"1996-06-14\",\"espn_id\":3123946},\"7032\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyrie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605142507888,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cleveland\",\"depth_chart_position\":\"RWR\",\"player_id\":\"7032\",\"birth_city\":null,\"fantasy_data_id\":21737,\"years_exp\":0,\"hashtag\":\"#TyrieCleveland-NFL-DEN-16\",\"search_first_name\":\"tyrie\",\"rotowire_id\":14621,\"rotoworld_id\":null,\"active\":true,\"search_rank\":365,\"age\":23,\"full_name\":\"Tyrie Cleveland\",\"sportradar_id\":\"8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4\",\"pandascore_id\":null,\"yahoo_id\":32922,\"last_name\":\"Cleveland\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida\",\"high_school\":\"Westfield (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tyriecleveland\",\"birth_date\":\"1997-09-20\",\"espn_id\":4034964},\"3894\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033095\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605985507834,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":\"TE\",\"player_id\":\"3894\",\"birth_city\":null,\"fantasy_data_id\":18716,\"years_exp\":4,\"hashtag\":\"#GarrettGriffin-NFL-NO-45\",\"search_first_name\":\"garrett\",\"rotowire_id\":11502,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1109,\"age\":26,\"full_name\":\"Garrett Griffin\",\"sportradar_id\":\"3cacaa27-a790-43ae-927c-8163b06f1a53\",\"pandascore_id\":null,\"yahoo_id\":30024,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Air Force\",\"high_school\":\"Louisburg (KS)\",\"depth_chart_order\":6,\"stats_id\":703203,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"garrettgriffin\",\"birth_date\":\"1994-03-04\",\"espn_id\":2987440},\"2863\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031738\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1569884423718,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"currie\",\"depth_chart_position\":null,\"player_id\":\"2863\",\"birth_city\":null,\"fantasy_data_id\":17331,\"years_exp\":5,\"hashtag\":\"#JustinCurrie-NFL-FA-47\",\"search_first_name\":\"justin\",\"rotowire_id\":10603,\"rotoworld_id\":10977,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Justin Currie\",\"sportradar_id\":\"47ff835d-2b33-43a7-81e1-26590f6b271a\",\"pandascore_id\":null,\"yahoo_id\":28870,\"last_name\":\"Currie\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":591645,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justincurrie\",\"birth_date\":\"1993-09-19\",\"espn_id\":2574756},\"6013\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035288\",\"first_name\":\"Saquan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600831523887,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hampton\",\"depth_chart_position\":null,\"player_id\":\"6013\",\"birth_city\":null,\"fantasy_data_id\":20785,\"years_exp\":1,\"hashtag\":\"#SaquanHampton-NFL-NYJ-33\",\"search_first_name\":\"saquan\",\"rotowire_id\":13702,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Saquan Hampton\",\"sportradar_id\":\"b8db855b-fd1f-46e6-ac23-466f68130e6c\",\"pandascore_id\":null,\"yahoo_id\":32009,\"last_name\":\"Hampton\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Nottingham (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"saquanhampton\",\"birth_date\":\"1995-12-12\",\"espn_id\":3127367},\"6805\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K.J.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606412458059,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamler\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6805\",\"birth_city\":null,\"fantasy_data_id\":21759,\"years_exp\":0,\"hashtag\":\"#KJHamler-NFL-DEN-13\",\"search_first_name\":\"kj\",\"rotowire_id\":14462,\"rotoworld_id\":null,\"active\":true,\"search_rank\":204,\"age\":21,\"full_name\":\"K.J. Hamler\",\"sportradar_id\":\"89338a12-65a8-4670-ac99-97281732ff79\",\"pandascore_id\":null,\"yahoo_id\":32716,\"last_name\":\"Hamler\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Penn State\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kjhamler\",\"birth_date\":\"1999-07-08\",\"espn_id\":4240380},\"6296\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035000\",\"first_name\":\"Quinton\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603749938947,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"6296\",\"birth_city\":null,\"fantasy_data_id\":21136,\"years_exp\":1,\"hashtag\":\"#QuintonBell-NFL-TB-57\",\"search_first_name\":\"quinton\",\"rotowire_id\":13990,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1678,\"age\":24,\"full_name\":\"Quinton Bell\",\"sportradar_id\":\"c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b\",\"pandascore_id\":null,\"yahoo_id\":32062,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Prairie View\",\"high_school\":\"Costa Mesa (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'4\\\"\",\"search_full_name\":\"quintonbell\",\"birth_date\":\"1996-05-09\",\"espn_id\":3933407},\"5061\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034350\",\"first_name\":\"Uchenna\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606521328835,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nwosu\",\"depth_chart_position\":\"DE/OB\",\"player_id\":\"5061\",\"birth_city\":null,\"fantasy_data_id\":19859,\"years_exp\":2,\"hashtag\":\"#UchennaNwosu-NFL-LAC-42\",\"search_first_name\":\"uchenna\",\"rotowire_id\":12844,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1306,\"age\":23,\"full_name\":\"Uchenna Nwosu\",\"sportradar_id\":\"40941261-cfd0-4e8d-b895-21fb7e20b407\",\"pandascore_id\":null,\"yahoo_id\":31018,\"last_name\":\"Nwosu\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Narbonne (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'2\\\"\",\"search_full_name\":\"uchennanwosu\",\"birth_date\":\"1996-12-28\",\"espn_id\":3120358},\"3249\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033037\",\"first_name\":\"Adolphus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567362936685,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"3249\",\"birth_city\":null,\"fantasy_data_id\":18010,\"years_exp\":4,\"hashtag\":\"#AdolphusWashington-NFL-FA-53\",\"search_first_name\":\"adolphus\",\"rotowire_id\":10892,\"rotoworld_id\":11419,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Adolphus Washington\",\"sportradar_id\":\"af24c36b-adfe-49e5-82a8-67f9ea7264ab\",\"pandascore_id\":null,\"yahoo_id\":29314,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653872,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"adolphuswashington\",\"birth_date\":\"1993-11-30\",\"espn_id\":2976317},\"7286\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marvelle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693362265,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"7286\",\"birth_city\":null,\"fantasy_data_id\":22282,\"years_exp\":0,\"hashtag\":\"#MarvelleRoss-NFL-FA-0\",\"search_first_name\":\"marvelle\",\"rotowire_id\":14952,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Marvelle Ross\",\"sportradar_id\":\"cb617c41-2983-48c6-895e-b759db173528\",\"pandascore_id\":null,\"yahoo_id\":33140,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Notre Dame College (OH)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marvelleross\",\"birth_date\":\"1996-08-13\",\"espn_id\":3939146},\"4548\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033630\",\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1544553632151,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bouagnon\",\"depth_chart_position\":null,\"player_id\":\"4548\",\"birth_city\":null,\"fantasy_data_id\":19428,\"years_exp\":3,\"hashtag\":\"#JoelBouagnon-NFL-FA-44\",\"search_first_name\":\"joel\",\"rotowire_id\":12339,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joel Bouagnon\",\"sportradar_id\":\"856182d1-221e-48ce-bce4-58c7843549fa\",\"pandascore_id\":null,\"yahoo_id\":30717,\"last_name\":\"Bouagnon\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746578,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joelbouagnon\",\"birth_date\":\"1995-03-28\",\"espn_id\":3047969},\"2836\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cook\",\"depth_chart_position\":null,\"player_id\":\"2836\",\"birth_city\":null,\"fantasy_data_id\":17304,\"years_exp\":4,\"hashtag\":\"#KennyCook-NFL-FA-6\",\"search_first_name\":\"kenny\",\"rotowire_id\":10784,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kenny Cook\",\"sportradar_id\":\"b40ab61c-aa64-4124-8117-d21fb3cfac7a\",\"pandascore_id\":null,\"yahoo_id\":29091,\"last_name\":\"Cook\",\"metadata\":null,\"college\":\"Gardner-Webb\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":700912,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kennycook\",\"birth_date\":\"1992-05-20\",\"espn_id\":2987210},\"104\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donnie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"avery\",\"depth_chart_position\":null,\"player_id\":\"104\",\"birth_city\":null,\"fantasy_data_id\":2730,\"years_exp\":7,\"hashtag\":\"#DonnieAvery-NFL-FA-17\",\"search_first_name\":\"donnie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Donnie Avery\",\"sportradar_id\":\"87ff59eb-66e3-4fe6-8c99-8c18b4c0eb36\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Avery\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"donnieavery\",\"birth_date\":\"1984-06-12\",\"espn_id\":11267},\"1481\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sorensen\",\"depth_chart_position\":null,\"player_id\":\"1481\",\"birth_city\":null,\"fantasy_data_id\":15078,\"years_exp\":7,\"hashtag\":\"#BradSorensen-NFL-FA-4\",\"search_first_name\":\"brad\",\"rotowire_id\":8752,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Brad Sorensen\",\"sportradar_id\":\"c6345d52-4a43-4bc2-80bb-d25480f10527\",\"pandascore_id\":null,\"yahoo_id\":26844,\"last_name\":\"Sorensen\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":\"Colton (CA)\",\"depth_chart_order\":null,\"stats_id\":512353,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bradsorensen\",\"birth_date\":\"1988-03-13\",\"espn_id\":16015},\"1609\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pantale\",\"depth_chart_position\":null,\"player_id\":\"1609\",\"birth_city\":null,\"fantasy_data_id\":15281,\"years_exp\":6,\"hashtag\":\"#ChrisPantale-NFL-FA-86\",\"search_first_name\":\"chris\",\"rotowire_id\":8947,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chris Pantale\",\"sportradar_id\":\"614dd7ea-e1ac-4e3f-993b-39f2f62c7eeb\",\"pandascore_id\":null,\"yahoo_id\":26991,\"last_name\":\"Pantale\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":461900,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chrispantale\",\"birth_date\":\"1990-03-22\",\"espn_id\":16210},\"7379\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rysen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1603765540779,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"john\",\"depth_chart_position\":\"TE\",\"player_id\":\"7379\",\"birth_city\":null,\"fantasy_data_id\":22365,\"years_exp\":0,\"hashtag\":\"#RysenJohn-NFL-NYG-47\",\"search_first_name\":\"rysen\",\"rotowire_id\":15068,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Rysen John\",\"sportradar_id\":\"bb3bf01d-c100-4a9f-9b7b-21aff82a9cd7\",\"pandascore_id\":null,\"yahoo_id\":33041,\"last_name\":\"John\",\"metadata\":null,\"college\":\"Simon Fraser\",\"high_school\":\"Vancouver College (BC)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'7\\\"\",\"search_full_name\":\"rysenjohn\",\"birth_date\":\"1997-12-20\",\"espn_id\":4045062},\"2849\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tavaris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1533942604380,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"2849\",\"birth_city\":null,\"fantasy_data_id\":17317,\"years_exp\":5,\"hashtag\":\"#TavarisBarnes-NFL-FA-79\",\"search_first_name\":\"tavaris\",\"rotowire_id\":10697,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tavaris Barnes\",\"sportradar_id\":\"833ca781-7fd3-4f27-a7b3-ed1f71f20399\",\"pandascore_id\":null,\"yahoo_id\":28754,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"First Coast (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tavarisbarnes\",\"birth_date\":\"1991-11-02\",\"espn_id\":2512398},\"6553\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035187\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605569420827,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walter\",\"depth_chart_position\":\"RB\",\"player_id\":\"6553\",\"birth_city\":null,\"fantasy_data_id\":21514,\"years_exp\":1,\"hashtag\":\"#AustinWalter-NFL-SF-48\",\"search_first_name\":\"austin\",\"rotowire_id\":14170,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Walter\",\"sportradar_id\":\"e25b6e0d-efa3-4425-bab6-5f846b902195\",\"pandascore_id\":null,\"yahoo_id\":32383,\"last_name\":\"Walter\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Crosby (TX)\",\"depth_chart_order\":5,\"stats_id\":839390,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'8\\\"\",\"search_full_name\":\"austinwalter\",\"birth_date\":\"1996-08-17\",\"espn_id\":3123857},\"20\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"20\",\"birth_city\":null,\"fantasy_data_id\":622,\"years_exp\":16,\"hashtag\":\"#JaredAllen-NFL-FA-69\",\"search_first_name\":\"jared\",\"rotowire_id\":3996,\"rotoworld_id\":2837,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Jared Allen\",\"sportradar_id\":\"c7699c7c-07c0-479b-977c-33e74327b946\",\"pandascore_id\":null,\"yahoo_id\":6885,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Idaho State\",\"high_school\":\"Los Gatos (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jaredallen\",\"birth_date\":\"1982-04-03\",\"espn_id\":5651},\"5561\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034239\",\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1575072060940,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lundblade\",\"depth_chart_position\":null,\"player_id\":\"5561\",\"birth_city\":null,\"fantasy_data_id\":20353,\"years_exp\":2,\"hashtag\":\"#BradLundblade-NFL-SEA-64\",\"search_first_name\":\"brad\",\"rotowire_id\":12682,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brad Lundblade\",\"sportradar_id\":\"8d77a320-4b95-498b-ba8e-f1db36f033cb\",\"pandascore_id\":null,\"yahoo_id\":31475,\"last_name\":\"Lundblade\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Liberty Christian (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bradlundblade\",\"birth_date\":\"1995-09-21\",\"espn_id\":3122432},\"7217\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"TreVontae\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1597008351314,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hights\",\"depth_chart_position\":null,\"player_id\":\"7217\",\"birth_city\":null,\"fantasy_data_id\":22219,\"years_exp\":0,\"hashtag\":\"#TreVontaeHights-NFL-FA-0\",\"search_first_name\":\"trevontae\",\"rotowire_id\":14969,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"TreVontae Hights\",\"sportradar_id\":\"9cc56ba6-1acb-4d8a-b751-d54f22fd2a7c\",\"pandascore_id\":null,\"yahoo_id\":33141,\"last_name\":\"Hights\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trevontaehights\",\"birth_date\":\"1997-02-07\",\"espn_id\":null},\"591\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Major\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"591\",\"birth_city\":null,\"fantasy_data_id\":11371,\"years_exp\":10,\"hashtag\":\"#MajorWright-NFL-FA-31\",\"search_first_name\":\"major\",\"rotowire_id\":6652,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Major Wright\",\"sportradar_id\":\"be9c22d3-26ee-41b9-bb27-0a6b78cd4c32\",\"pandascore_id\":null,\"yahoo_id\":24050,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'11\\\"\",\"search_full_name\":\"majorwright\",\"birth_date\":\"1988-07-01\",\"espn_id\":13307},\"5772\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lacombe\",\"depth_chart_position\":null,\"player_id\":\"5772\",\"birth_city\":null,\"fantasy_data_id\":20678,\"years_exp\":1,\"hashtag\":\"#AaronLacombe-NFL-LAR-28\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aaron Lacombe\",\"sportradar_id\":\"0d484e6b-f3ba-4cc2-84d6-6034dd1ae509\",\"pandascore_id\":null,\"yahoo_id\":31768,\"last_name\":\"Lacombe\",\"metadata\":null,\"college\":\"Cal Lutheran\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748659,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'3\\\"\",\"search_full_name\":\"aaronlacombe\",\"birth_date\":\"1995-04-06\",\"espn_id\":3056458},\"833\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cameron\",\"depth_chart_position\":null,\"player_id\":\"833\",\"birth_city\":null,\"fantasy_data_id\":12861,\"years_exp\":9,\"hashtag\":\"#JordanCameron-NFL-FA-84\",\"search_first_name\":\"jordan\",\"rotowire_id\":7426,\"rotoworld_id\":6572,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jordan Cameron\",\"sportradar_id\":\"44257544-0a90-4bca-b759-e589a70cf168\",\"pandascore_id\":null,\"yahoo_id\":24889,\"last_name\":\"Cameron\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Newbury Park (CA)\",\"depth_chart_order\":null,\"stats_id\":399286,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jordancameron\",\"birth_date\":\"1988-08-07\",\"espn_id\":14189},\"5369\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034389\",\"first_name\":\"Dane\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605142207967,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cruikshank\",\"depth_chart_position\":null,\"player_id\":\"5369\",\"birth_city\":null,\"fantasy_data_id\":20001,\"years_exp\":2,\"hashtag\":\"#DaneCruikshank-NFL-TEN-29\",\"search_first_name\":\"dane\",\"rotowire_id\":12731,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dane Cruikshank\",\"sportradar_id\":\"7f969cc9-59cd-43e9-bcd0-c1885f0b18b7\",\"pandascore_id\":null,\"yahoo_id\":31122,\"last_name\":\"Cruikshank\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Arizona\",\"high_school\":\"Ayala (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"danecruikshank\",\"birth_date\":\"1995-04-27\",\"espn_id\":3931422},\"3854\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"3854\",\"birth_city\":null,\"fantasy_data_id\":18675,\"years_exp\":3,\"hashtag\":\"#SamBrown-NFL-FA-31\",\"search_first_name\":\"sam\",\"rotowire_id\":11302,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Sam Brown\",\"sportradar_id\":\"031f8302-fbb8-4704-86b6-975723a474f1\",\"pandascore_id\":null,\"yahoo_id\":30006,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sambrown\",\"birth_date\":\"1992-07-30\",\"espn_id\":4002763},\"1867\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jace\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"1867\",\"birth_city\":null,\"fantasy_data_id\":16082,\"years_exp\":1,\"hashtag\":\"#JaceDavis-NFL-FA-16\",\"search_first_name\":\"jace\",\"rotowire_id\":10027,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jace Davis\",\"sportradar_id\":\"758e974f-4af7-4377-9e8c-d4040c6436f5\",\"pandascore_id\":null,\"yahoo_id\":27977,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Northern Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jacedavis\",\"birth_date\":\"1991-08-22\",\"espn_id\":17137},\"1060\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"streeter\",\"depth_chart_position\":null,\"player_id\":\"1060\",\"birth_city\":null,\"fantasy_data_id\":13854,\"years_exp\":2,\"hashtag\":\"#TommyStreeter-NFL-FA-85\",\"search_first_name\":\"tommy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tommy Streeter\",\"sportradar_id\":\"73b3918b-e4e6-4f41-aaa4-42488f757c3d\",\"pandascore_id\":null,\"yahoo_id\":25908,\"last_name\":\"Streeter\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":464668,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tommystreeter\",\"birth_date\":\"1989-10-07\",\"espn_id\":15063},\"2630\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031866\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596168019763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"DT\",\"player_id\":\"2630\",\"birth_city\":null,\"fantasy_data_id\":17098,\"years_exp\":5,\"hashtag\":\"#JordanWilliams-NFL-FA-52\",\"search_first_name\":\"jordan\",\"rotowire_id\":10717,\"rotoworld_id\":null,\"active\":false,\"search_rank\":917,\"age\":27,\"full_name\":\"Jordan Williams\",\"sportradar_id\":\"6baa540c-d745-4804-b20b-20dae69d0d9f\",\"pandascore_id\":null,\"yahoo_id\":28943,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Gainesville (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanwilliams\",\"birth_date\":\"1993-03-23\",\"espn_id\":2577718},\"5522\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034482\",\"first_name\":\"Owen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"obasuyi\",\"depth_chart_position\":null,\"player_id\":\"5522\",\"birth_city\":null,\"fantasy_data_id\":20455,\"years_exp\":2,\"hashtag\":\"#OwenObasuyi-NFL-FA-97\",\"search_first_name\":\"owen\",\"rotowire_id\":13215,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Owen Obasuyi\",\"sportradar_id\":\"3c593d8f-daf8-4902-89ab-d59699482809\",\"pandascore_id\":null,\"yahoo_id\":31315,\"last_name\":\"Obasuyi\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"owenobasuyi\",\"birth_date\":\"1996-05-07\",\"espn_id\":3139339},\"704\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025408\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1544056520872,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"704\",\"birth_city\":null,\"fantasy_data_id\":12167,\"years_exp\":13,\"hashtag\":\"#ReggieNelson-NFL-FA-27\",\"search_first_name\":\"reggie\",\"rotowire_id\":5368,\"rotoworld_id\":4164,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Reggie Nelson\",\"sportradar_id\":\"9029830c-1394-494f-a92c-e192697913cf\",\"pandascore_id\":null,\"yahoo_id\":8275,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Palm Bay (FL)\",\"depth_chart_order\":null,\"stats_id\":296140,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"reggienelson\",\"birth_date\":\"1983-09-21\",\"espn_id\":10465},\"5945\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035343\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587592838550,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ledbetter\",\"depth_chart_position\":null,\"player_id\":\"5945\",\"birth_city\":null,\"fantasy_data_id\":20854,\"years_exp\":1,\"hashtag\":\"#JonathanLedbetter-NFL-MIA-98\",\"search_first_name\":\"jonathan\",\"rotowire_id\":13787,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jonathan Ledbetter\",\"sportradar_id\":\"c03646a8-503b-49a9-8251-b9c44f13a2ff\",\"pandascore_id\":null,\"yahoo_id\":32440,\"last_name\":\"Ledbetter\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Tucker (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonathanledbetter\",\"birth_date\":\"1997-09-12\",\"espn_id\":3728308},\"2557\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lovelocke\",\"depth_chart_position\":null,\"player_id\":\"2557\",\"birth_city\":null,\"fantasy_data_id\":17018,\"years_exp\":0,\"hashtag\":\"#JerryLovelocke-NFL-FA-7\",\"search_first_name\":\"jerry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jerry Lovelocke\",\"sportradar_id\":\"38fe9a81-b824-4845-a37d-47c7df06eb91\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lovelocke\",\"metadata\":null,\"college\":\"Prairie View A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":565355,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jerrylovelocke\",\"birth_date\":\"1992-10-08\",\"espn_id\":2527708},\"7300\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jovahn\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fair\",\"depth_chart_position\":null,\"player_id\":\"7300\",\"birth_city\":null,\"fantasy_data_id\":22294,\"years_exp\":0,\"hashtag\":\"#JovahnFair-NFL-FA-0\",\"search_first_name\":\"jovahn\",\"rotowire_id\":14807,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jovahn Fair\",\"sportradar_id\":\"4481577b-e746-4aa6-bca4-a2f5bd41084f\",\"pandascore_id\":null,\"yahoo_id\":32950,\"last_name\":\"Fair\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jovahnfair\",\"birth_date\":null,\"espn_id\":3923403},\"3583\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032358\",\"first_name\":\"Tevaun\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536333601993,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"3583\",\"birth_city\":null,\"fantasy_data_id\":18362,\"years_exp\":4,\"hashtag\":\"#TevaunSmith-NFL-FA-16\",\"search_first_name\":\"tevaun\",\"rotowire_id\":11202,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Tevaun Smith\",\"sportradar_id\":\"331daf6e-84ba-4944-b956-05c8f4bd4663\",\"pandascore_id\":null,\"yahoo_id\":29612,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691801,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tevaunsmith\",\"birth_date\":\"1993-01-30\",\"espn_id\":2979507},\"6489\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taryn\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1574811036172,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"christion\",\"depth_chart_position\":\"QB\",\"player_id\":\"6489\",\"birth_city\":null,\"fantasy_data_id\":21342,\"years_exp\":1,\"hashtag\":\"#TarynChristion-NFL-FA-3\",\"search_first_name\":\"taryn\",\"rotowire_id\":13976,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Taryn Christion\",\"sportradar_id\":\"2fddb075-e397-48ed-a05c-dc296b08af2f\",\"pandascore_id\":null,\"yahoo_id\":32328,\"last_name\":\"Christion\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":874315,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tarynchristion\",\"birth_date\":\"1997-02-06\",\"espn_id\":3909004},\"7235\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aleva\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359953,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hifo\",\"depth_chart_position\":null,\"player_id\":\"7235\",\"birth_city\":null,\"fantasy_data_id\":22236,\"years_exp\":0,\"hashtag\":\"#AlevaHifo-NFL-FA-0\",\"search_first_name\":\"aleva\",\"rotowire_id\":14879,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Aleva Hifo\",\"sportradar_id\":\"8f71dfc2-f702-431f-a4b0-70b72ebdaad9\",\"pandascore_id\":null,\"yahoo_id\":32945,\"last_name\":\"Hifo\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alevahifo\",\"birth_date\":\"1997-12-23\",\"espn_id\":4046668},\"6292\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035149\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allegretti\",\"depth_chart_position\":\"C\",\"player_id\":\"6292\",\"birth_city\":null,\"fantasy_data_id\":21129,\"years_exp\":1,\"hashtag\":\"#NickAllegretti-NFL-KC-73\",\"search_first_name\":\"nick\",\"rotowire_id\":13682,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nick Allegretti\",\"sportradar_id\":\"806f81d1-6d4b-465c-8a16-b1a767c30fb0\",\"pandascore_id\":null,\"yahoo_id\":32048,\"last_name\":\"Allegretti\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Lincoln-Way East (IL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickallegretti\",\"birth_date\":\"1996-04-21\",\"espn_id\":3115922},\"3200\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032385\",\"first_name\":\"Sterling\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606510527108,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shepard\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3200\",\"birth_city\":null,\"fantasy_data_id\":17961,\"years_exp\":4,\"hashtag\":\"#SterlingShepard-NFL-NYG-87\",\"search_first_name\":\"sterling\",\"rotowire_id\":10988,\"rotoworld_id\":11326,\"active\":true,\"search_rank\":114,\"age\":27,\"full_name\":\"Sterling Shepard\",\"sportradar_id\":\"1ffc735b-74d8-44d2-ab32-00c5485c799f\",\"pandascore_id\":null,\"yahoo_id\":29274,\"last_name\":\"Shepard\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Heritage Hall (OK)\",\"depth_chart_order\":1,\"stats_id\":691278,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'10\\\"\",\"search_full_name\":\"sterlingshepard\",\"birth_date\":\"1993-02-10\",\"espn_id\":2976592},\"5071\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034277\",\"first_name\":\"DeShon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604773550924,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":\"FS\",\"player_id\":\"5071\",\"birth_city\":null,\"fantasy_data_id\":19960,\"years_exp\":2,\"hashtag\":\"#DeShonElliott-NFL-BAL-32\",\"search_first_name\":\"deshon\",\"rotowire_id\":12459,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1367,\"age\":23,\"full_name\":\"DeShon Elliott\",\"sportradar_id\":\"83128a20-392f-4ca7-878e-689c6e6dfbfc\",\"pandascore_id\":null,\"yahoo_id\":31160,\"last_name\":\"Elliott\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Rockwall-Heath (TX)\",\"depth_chart_order\":1,\"stats_id\":884284,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deshonelliott\",\"birth_date\":\"1997-04-21\",\"espn_id\":3929846},\"4715\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darnell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leslie\",\"depth_chart_position\":null,\"player_id\":\"4715\",\"birth_city\":null,\"fantasy_data_id\":19623,\"years_exp\":2,\"hashtag\":\"#DarnellLeslie-NFL-FA-49\",\"search_first_name\":\"darnell\",\"rotowire_id\":12256,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darnell Leslie\",\"sportradar_id\":\"50765a71-fd4c-42db-a608-2261b5358f9c\",\"pandascore_id\":null,\"yahoo_id\":30856,\"last_name\":\"Leslie\",\"metadata\":null,\"college\":\"Monmouth (NJ)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darnellleslie\",\"birth_date\":\"1994-05-16\",\"espn_id\":2972022},\"5225\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535506840673,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frazier\",\"depth_chart_position\":null,\"player_id\":\"5225\",\"birth_city\":null,\"fantasy_data_id\":20184,\"years_exp\":2,\"hashtag\":\"#MarcellFrazier-NFL-FA-57\",\"search_first_name\":\"marcell\",\"rotowire_id\":12729,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marcell Frazier\",\"sportradar_id\":\"8bb4ca0f-be3e-4a7b-bd00-8a51306f2629\",\"pandascore_id\":null,\"yahoo_id\":31473,\"last_name\":\"Frazier\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marcellfrazier\",\"birth_date\":\"1994-01-08\",\"espn_id\":3924315},\"6304\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035541\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dogbe\",\"depth_chart_position\":null,\"player_id\":\"6304\",\"birth_city\":null,\"fantasy_data_id\":21141,\"years_exp\":1,\"hashtag\":\"#MichaelDogbe-NFL-ARI-91\",\"search_first_name\":\"michael\",\"rotowire_id\":13709,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1681,\"age\":24,\"full_name\":\"Michael Dogbe\",\"sportradar_id\":\"cf0c253d-45bd-48f5-9602-88c3d9ca1082\",\"pandascore_id\":null,\"yahoo_id\":32081,\"last_name\":\"Dogbe\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Parsippany Hills (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaeldogbe\",\"birth_date\":\"1996-05-05\",\"espn_id\":3138765},\"1512\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquess\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532464501365,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"1512\",\"birth_city\":null,\"fantasy_data_id\":15118,\"years_exp\":7,\"hashtag\":\"#MarquessWilson-NFL-FA-10\",\"search_first_name\":\"marquess\",\"rotowire_id\":8813,\"rotoworld_id\":8629,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Marquess Wilson\",\"sportradar_id\":\"d8fe880c-a9d8-4041-ac0f-4626bb2a23dd\",\"pandascore_id\":null,\"yahoo_id\":26859,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Tulare Union (CA)\",\"depth_chart_order\":null,\"stats_id\":560213,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marquesswilson\",\"birth_date\":\"1992-09-14\",\"espn_id\":16023},\"959\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Da'Quan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowers\",\"depth_chart_position\":null,\"player_id\":\"959\",\"birth_city\":null,\"fantasy_data_id\":13351,\"years_exp\":9,\"hashtag\":\"#DaQuanBowers-NFL-FA-91\",\"search_first_name\":\"daquan\",\"rotowire_id\":7290,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Da'Quan Bowers\",\"sportradar_id\":\"746bbbd2-8fc7-4ceb-abd4-f1ab3c7649ec\",\"pandascore_id\":null,\"yahoo_id\":24838,\"last_name\":\"Bowers\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Ehrhardt (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'4\\\"\",\"search_full_name\":\"daquanbowers\",\"birth_date\":\"1990-02-23\",\"espn_id\":14046},\"3312\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032975\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604552730202,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"3312\",\"birth_city\":null,\"fantasy_data_id\":18073,\"years_exp\":4,\"hashtag\":\"#JonathanWilliams-NFL-DET-41\",\"search_first_name\":\"jonathan\",\"rotowire_id\":10851,\"rotoworld_id\":11405,\"active\":true,\"search_rank\":1018,\"age\":26,\"full_name\":\"Jonathan Williams\",\"sportradar_id\":\"697200ea-cabb-40b8-aeac-e52763310306\",\"pandascore_id\":null,\"yahoo_id\":29390,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Allen (TX)\",\"depth_chart_order\":3,\"stats_id\":693837,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonathanwilliams\",\"birth_date\":\"1994-02-02\",\"espn_id\":2980077},\"5845\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035232\",\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604937026033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haskins\",\"depth_chart_position\":\"QB\",\"player_id\":\"5845\",\"birth_city\":null,\"fantasy_data_id\":20795,\"years_exp\":1,\"hashtag\":\"#DwayneHaskins-NFL-WAS-7\",\"search_first_name\":\"dwayne\",\"rotowire_id\":13558,\"rotoworld_id\":13979,\"active\":true,\"search_rank\":214,\"age\":23,\"full_name\":\"Dwayne Haskins\",\"sportradar_id\":\"6e4eda90-2656-434f-a262-4e5e9fde3946\",\"pandascore_id\":null,\"yahoo_id\":31847,\"last_name\":\"Haskins\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Bullis School (NJ)\",\"depth_chart_order\":2,\"stats_id\":946582,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dwaynehaskins\",\"birth_date\":\"1997-05-03\",\"espn_id\":4040616},\"5777\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032604\",\"first_name\":\"Malachi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"5777\",\"birth_city\":null,\"fantasy_data_id\":18462,\"years_exp\":4,\"hashtag\":\"#MalachiJones-NFL-FA-2\",\"search_first_name\":\"malachi\",\"rotowire_id\":13375,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Malachi Jones\",\"sportradar_id\":\"31854083-801c-44aa-8dac-f4920b84f5b2\",\"pandascore_id\":null,\"yahoo_id\":29648,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":695382,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"malachijones\",\"birth_date\":\"1994-03-20\",\"espn_id\":2973663},\"1701\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":null,\"player_id\":\"1701\",\"birth_city\":null,\"fantasy_data_id\":15581,\"years_exp\":1,\"hashtag\":\"#EricRogers-NFL-FA-3\",\"search_first_name\":\"eric\",\"rotowire_id\":8929,\"rotoworld_id\":9105,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Eric Rogers\",\"sportradar_id\":\"bb710777-1fa3-45e0-877b-4331b35ce476\",\"pandascore_id\":null,\"yahoo_id\":27338,\"last_name\":\"Rogers\",\"metadata\":null,\"college\":\"Cal Lutheran\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ericrogers\",\"birth_date\":\"1991-02-12\",\"espn_id\":null},\"207\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023894\",\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1570981533280,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"penn\",\"depth_chart_position\":null,\"player_id\":\"207\",\"birth_city\":null,\"fantasy_data_id\":5274,\"years_exp\":14,\"hashtag\":\"#DonaldPenn-NFL-FA-72\",\"search_first_name\":\"donald\",\"rotowire_id\":5150,\"rotoworld_id\":4097,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Donald Penn\",\"sportradar_id\":\"50bcb5d3-62fb-45ac-b25b-5dffbff0cb0c\",\"pandascore_id\":null,\"yahoo_id\":8119,\"last_name\":\"Penn\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"St. Bernard (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"donaldpenn\",\"birth_date\":\"1983-04-27\",\"espn_id\":10062},\"1362\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030474\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyce\",\"depth_chart_position\":null,\"player_id\":\"1362\",\"birth_city\":null,\"fantasy_data_id\":14883,\"years_exp\":6,\"hashtag\":\"#JoshBoyce-NFL-FA-82\",\"search_first_name\":\"josh\",\"rotowire_id\":8811,\"rotoworld_id\":8529,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Boyce\",\"sportradar_id\":\"5b59a91a-3a9c-4473-b2eb-7673c8ec80b8\",\"pandascore_id\":null,\"yahoo_id\":26725,\"last_name\":\"Boyce\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":494919,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshboyce\",\"birth_date\":\"1991-05-06\",\"espn_id\":15998},\"5099\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034396\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606068018495,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":\"SAM\",\"player_id\":\"5099\",\"birth_city\":null,\"fantasy_data_id\":19964,\"years_exp\":2,\"hashtag\":\"#JermaineCarter-NFL-CAR-56\",\"search_first_name\":\"jermaine\",\"rotowire_id\":12988,\"rotoworld_id\":13272,\"active\":true,\"search_rank\":1369,\"age\":25,\"full_name\":\"Jermaine Carter\",\"sportradar_id\":\"829c836e-8040-48ca-aa20-5ad24f0ff37f\",\"pandascore_id\":null,\"yahoo_id\":31131,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Friendship Collegiate Academy (DC)\",\"depth_chart_order\":2,\"stats_id\":745790,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jermainecarter\",\"birth_date\":\"1995-01-14\",\"espn_id\":3053047},\"6972\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Davon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596403218306,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":\"NT\",\"player_id\":\"6972\",\"birth_city\":null,\"fantasy_data_id\":21869,\"years_exp\":0,\"hashtag\":\"#DavonHamilton-NFL-JAX-52\",\"search_first_name\":\"davon\",\"rotowire_id\":14714,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1798,\"age\":23,\"full_name\":\"Davon Hamilton\",\"sportradar_id\":\"a94f0507-44b0-4fb5-9e8c-fd21157ec1a6\",\"pandascore_id\":null,\"yahoo_id\":32743,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Pickerington Central (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davonhamilton\",\"birth_date\":\"1997-02-01\",\"espn_id\":3915520},\"3228\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033053\",\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599413760073,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"FS\",\"player_id\":\"3228\",\"birth_city\":null,\"fantasy_data_id\":17989,\"years_exp\":4,\"hashtag\":\"#SeanDavis-NFL-PIT-21\",\"search_first_name\":\"sean\",\"rotowire_id\":11018,\"rotoworld_id\":11374,\"active\":true,\"search_rank\":978,\"age\":27,\"full_name\":\"Sean Davis\",\"sportradar_id\":\"dfb0b126-9c75-41d3-9371-04065db7506a\",\"pandascore_id\":null,\"yahoo_id\":29292,\"last_name\":\"Davis\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Maryland\",\"high_school\":\"Maret (DC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'1\\\"\",\"search_full_name\":\"seandavis\",\"birth_date\":\"1993-10-23\",\"espn_id\":2976210},\"5129\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034859\",\"first_name\":\"Adonis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":null,\"player_id\":\"5129\",\"birth_city\":null,\"fantasy_data_id\":20056,\"years_exp\":2,\"hashtag\":\"#AdonisJennings-NFL-FA-13\",\"search_first_name\":\"adonis\",\"rotowire_id\":13370,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Adonis Jennings\",\"sportradar_id\":\"9f67736c-0a6d-433e-820b-55fea1bd9960\",\"pandascore_id\":null,\"yahoo_id\":31771,\"last_name\":\"Jennings\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":832453,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'2\\\"\",\"search_full_name\":\"adonisjennings\",\"birth_date\":\"1995-12-31\",\"espn_id\":3123935},\"6090\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035339\",\"first_name\":\"Montre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604783109722,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hartage\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6090\",\"birth_city\":null,\"fantasy_data_id\":20794,\"years_exp\":1,\"hashtag\":\"#MontreHartage-NFL-NYG-36\",\"search_first_name\":\"montre\",\"rotowire_id\":13770,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Montre Hartage\",\"sportradar_id\":\"66e7cb60-bf2e-41a5-96c1-4f7d4f8f9cda\",\"pandascore_id\":null,\"yahoo_id\":32435,\"last_name\":\"Hartage\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Crisp County (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"montrehartage\",\"birth_date\":\"1997-06-16\",\"espn_id\":3915970},\"6533\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035052\",\"first_name\":\"Dedrick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1557274512800,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"6533\",\"birth_city\":null,\"fantasy_data_id\":21288,\"years_exp\":1,\"hashtag\":\"#DedrickYoung-NFL-FA-59\",\"search_first_name\":\"dedrick\",\"rotowire_id\":14140,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dedrick Young\",\"sportradar_id\":\"8777f90a-8280-447b-9fb4-806989838e9f\",\"pandascore_id\":null,\"yahoo_id\":32291,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dedrickyoung\",\"birth_date\":\"1996-11-07\",\"espn_id\":3700080},\"341\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1518051601364,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mcdaniel\",\"depth_chart_position\":null,\"player_id\":\"341\",\"birth_city\":null,\"fantasy_data_id\":8337,\"years_exp\":14,\"hashtag\":\"#TonyMcDaniel-NFL-FA-76\",\"search_first_name\":\"tony\",\"rotowire_id\":4773,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Tony McDaniel\",\"sportradar_id\":\"2f1ff269-5556-4180-a46d-726c8491ae39\",\"pandascore_id\":null,\"yahoo_id\":8039,\"last_name\":\"McDaniel\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Keenan (SC)\",\"depth_chart_order\":null,\"stats_id\":225375,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'7\\\"\",\"search_full_name\":\"tonymcdaniel\",\"birth_date\":\"1985-01-20\",\"espn_id\":10031},\"6133\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035654\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602039936629,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"winovich\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"6133\",\"birth_city\":null,\"fantasy_data_id\":20995,\"years_exp\":1,\"hashtag\":\"#ChaseWinovich-NFL-NE-50\",\"search_first_name\":\"chase\",\"rotowire_id\":13655,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1627,\"age\":25,\"full_name\":\"Chase Winovich\",\"sportradar_id\":\"5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee\",\"pandascore_id\":null,\"yahoo_id\":31909,\"last_name\":\"Winovich\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Michigan\",\"high_school\":\"Thomas Jefferson (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chasewinovich\",\"birth_date\":\"1995-04-19\",\"espn_id\":3115974},\"862\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027948\",\"first_name\":\"Blaine\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1600618806290,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gabbert\",\"depth_chart_position\":\"QB\",\"player_id\":\"862\",\"birth_city\":null,\"fantasy_data_id\":12982,\"years_exp\":9,\"hashtag\":\"#BlaineGabbert-NFL-TB-11\",\"search_first_name\":\"blaine\",\"rotowire_id\":7248,\"rotoworld_id\":6451,\"active\":true,\"search_rank\":533,\"age\":31,\"full_name\":\"Blaine Gabbert\",\"sportradar_id\":\"de816e24-8442-49a4-99cd-dde7e7c05863\",\"pandascore_id\":null,\"yahoo_id\":24797,\"last_name\":\"Gabbert\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Parkway West (MO)\",\"depth_chart_order\":2,\"stats_id\":463393,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"blainegabbert\",\"birth_date\":\"1989-10-15\",\"espn_id\":13987},\"5499\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034155\",\"first_name\":\"Salesi\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"uhatafe\",\"depth_chart_position\":null,\"player_id\":\"5499\",\"birth_city\":null,\"fantasy_data_id\":20439,\"years_exp\":2,\"hashtag\":\"#SalesiUhatafe-NFL-FA-67\",\"search_first_name\":\"salesi\",\"rotowire_id\":12694,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Salesi Uhatafe\",\"sportradar_id\":\"c2648042-c616-4ee7-b9d5-f1b77c560c0e\",\"pandascore_id\":null,\"yahoo_id\":31344,\"last_name\":\"Uhatafe\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"salesiuhatafe\",\"birth_date\":\"1994-10-25\",\"espn_id\":3052516},\"3078\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3078\",\"birth_city\":null,\"fantasy_data_id\":17825,\"years_exp\":4,\"hashtag\":\"#JamelJohnson-NFL-FA-87\",\"search_first_name\":\"jamel\",\"rotowire_id\":9728,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jamel Johnson\",\"sportradar_id\":\"ebf932ff-92e0-4c5b-a363-2c821d97703f\",\"pandascore_id\":null,\"yahoo_id\":29213,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Alabama State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":547082,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jameljohnson\",\"birth_date\":\"1991-07-09\",\"espn_id\":3153437},\"855\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027980\",\"first_name\":\"Brooks\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606276856036,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"855\",\"birth_city\":null,\"fantasy_data_id\":12951,\"years_exp\":9,\"hashtag\":\"#BrooksReed-NFL-FA-50\",\"search_first_name\":\"brooks\",\"rotowire_id\":7451,\"rotoworld_id\":6539,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Brooks Reed\",\"sportradar_id\":\"b6782b61-89e1-4a9d-9ad1-7715eb6ff628\",\"pandascore_id\":null,\"yahoo_id\":24829,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Sabino (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brooksreed\",\"birth_date\":\"1987-02-28\",\"espn_id\":13997},\"6396\":{\"position\":\"TE\",\"injury_notes\":\"Fort will be out at least two weeks.\",\"birth_country\":null,\"gsis_id\":\" 00-0034932\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599328256985,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fort\",\"depth_chart_position\":\"TE\",\"player_id\":\"6396\",\"birth_city\":null,\"fantasy_data_id\":21369,\"years_exp\":1,\"hashtag\":\"#AustinFort-NFL-DEN-89\",\"search_first_name\":\"austin\",\"rotowire_id\":14062,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Fort\",\"sportradar_id\":\"92c3ccc0-b808-4852-a65d-c2c7e9118cef\",\"pandascore_id\":null,\"yahoo_id\":32191,\"last_name\":\"Fort\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wyoming\",\"high_school\":\"Campbell County (WY)\",\"depth_chart_order\":7,\"stats_id\":823871,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austinfort\",\"birth_date\":\"1995-05-14\",\"espn_id\":3125402},\"7447\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cale\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"garrett\",\"depth_chart_position\":null,\"player_id\":\"7447\",\"birth_city\":null,\"fantasy_data_id\":21976,\"years_exp\":0,\"hashtag\":\"#CaleGarrett-NFL-MIN-47\",\"search_first_name\":\"cale\",\"rotowire_id\":14741,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1861,\"age\":22,\"full_name\":\"Cale Garrett\",\"sportradar_id\":\"125950c3-8289-4299-8497-fc9fd2c3b34b\",\"pandascore_id\":null,\"yahoo_id\":33339,\"last_name\":\"Garrett\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Kearney (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"calegarrett\",\"birth_date\":\"1997-12-02\",\"espn_id\":4035109},\"5537\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carrizosa\",\"depth_chart_position\":null,\"player_id\":\"5537\",\"birth_city\":null,\"fantasy_data_id\":20567,\"years_exp\":1,\"hashtag\":\"#MichaelCarrizosa-NFL-CLE-17\",\"search_first_name\":\"michael\",\"rotowire_id\":13140,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Michael Carrizosa\",\"sportradar_id\":\"f5346ba2-69df-444c-a1f8-52aeacbd6ec5\",\"pandascore_id\":null,\"yahoo_id\":31452,\"last_name\":\"Carrizosa\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"5'10\\\"\",\"search_full_name\":\"michaelcarrizosa\",\"birth_date\":null,\"espn_id\":3125286},\"4920\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dax\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dellenbach\",\"depth_chart_position\":null,\"player_id\":\"4920\",\"birth_city\":null,\"fantasy_data_id\":18864,\"years_exp\":1,\"hashtag\":\"#DaxDellenbach-NFL-TB-49\",\"search_first_name\":\"dax\",\"rotowire_id\":11745,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Dax Dellenbach\",\"sportradar_id\":\"e49b6d73-1751-4254-b63f-60a71291e170\",\"pandascore_id\":null,\"yahoo_id\":30095,\"last_name\":\"Dellenbach\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"daxdellenbach\",\"birth_date\":\"1990-04-13\",\"espn_id\":null},\"4986\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034759\",\"first_name\":\"Kolton\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605917703956,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"LT\",\"player_id\":\"4986\",\"birth_city\":null,\"fantasy_data_id\":19840,\"years_exp\":2,\"hashtag\":\"#KoltonMiller-NFL-LV-74\",\"search_first_name\":\"kolton\",\"rotowire_id\":12526,\"rotoworld_id\":13140,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kolton Miller\",\"sportradar_id\":\"e4085e9f-ab3b-4dd6-9cb0-bf6f2bd428fd\",\"pandascore_id\":null,\"yahoo_id\":30985,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Roseville (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'8\\\"\",\"search_full_name\":\"koltonmiller\",\"birth_date\":\"1995-10-09\",\"espn_id\":3134312},\"395\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0027023\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1547051140590,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":null,\"player_id\":\"395\",\"birth_city\":null,\"fantasy_data_id\":8776,\"years_exp\":11,\"hashtag\":\"#MichaelMitchell-NFL-FA-34\",\"search_first_name\":\"michael\",\"rotowire_id\":6102,\"rotoworld_id\":5308,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Michael Mitchell\",\"sportradar_id\":\"ca8815bc-c68f-4d18-80fc-f61e4a2053b8\",\"pandascore_id\":null,\"yahoo_id\":9311,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":\"Highlands (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelmitchell\",\"birth_date\":\"1987-06-10\",\"espn_id\":12619},\"2325\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031549\",\"first_name\":\"Nelson\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606510527110,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"agholor\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2325\",\"birth_city\":null,\"fantasy_data_id\":16781,\"years_exp\":5,\"hashtag\":\"#NelsonAgholor-NFL-LV-15\",\"search_first_name\":\"nelson\",\"rotowire_id\":10132,\"rotoworld_id\":10360,\"active\":true,\"search_rank\":328,\"age\":27,\"full_name\":\"Nelson Agholor\",\"sportradar_id\":\"cfb0ff68-51cb-4dad-ba81-f9e019a93a91\",\"pandascore_id\":null,\"yahoo_id\":28408,\"last_name\":\"Agholor\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Berkeley Prep (FL)\",\"depth_chart_order\":1,\"stats_id\":691055,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nelsonagholor\",\"birth_date\":\"1993-05-24\",\"espn_id\":2971618},\"388\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orton\",\"depth_chart_position\":null,\"player_id\":\"388\",\"birth_city\":null,\"fantasy_data_id\":8703,\"years_exp\":10,\"hashtag\":\"#KyleOrton-NFL-FA-18\",\"search_first_name\":\"kyle\",\"rotowire_id\":null,\"rotoworld_id\":3214,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Kyle Orton\",\"sportradar_id\":\"ef068d71-d18f-4b67-a7b4-71c416a14cba\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Orton\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kyleorton\",\"birth_date\":\"1982-11-14\",\"espn_id\":8520},\"5153\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034514\",\"first_name\":\"Levi\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605815712871,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5153\",\"birth_city\":null,\"fantasy_data_id\":20102,\"years_exp\":2,\"hashtag\":\"#LeviWallace-NFL-BUF-39\",\"search_first_name\":\"levi\",\"rotowire_id\":12843,\"rotoworld_id\":13385,\"active\":true,\"search_rank\":1418,\"age\":25,\"full_name\":\"Levi Wallace\",\"sportradar_id\":\"3cd88d26-6c80-47a1-a044-9164fa96459a\",\"pandascore_id\":null,\"yahoo_id\":31603,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Tucson (AZ)\",\"depth_chart_order\":2,\"stats_id\":843819,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"179\",\"height\":\"6'0\\\"\",\"search_full_name\":\"leviwallace\",\"birth_date\":\"1995-06-12\",\"espn_id\":3133440},\"3444\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032627\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606349103822,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"burgess\",\"depth_chart_position\":null,\"player_id\":\"3444\",\"birth_city\":null,\"fantasy_data_id\":18208,\"years_exp\":4,\"hashtag\":\"#JamesBurgess-NFL-GB-57\",\"search_first_name\":\"james\",\"rotowire_id\":11646,\"rotoworld_id\":11606,\"active\":true,\"search_rank\":1051,\"age\":26,\"full_name\":\"James Burgess\",\"sportradar_id\":\"0b06c168-c660-440a-922e-954ac15c0df0\",\"pandascore_id\":null,\"yahoo_id\":29822,\"last_name\":\"Burgess\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Homestead (FL)\",\"depth_chart_order\":null,\"stats_id\":652611,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jamesburgess\",\"birth_date\":\"1994-03-09\",\"espn_id\":2970181},\"5543\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"CJ\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1534389606949,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"5543\",\"birth_city\":null,\"fantasy_data_id\":20290,\"years_exp\":0,\"hashtag\":\"#CJJohnson-NFL-FA-54\",\"search_first_name\":\"cj\",\"rotowire_id\":13113,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"CJ Johnson\",\"sportradar_id\":\"d2ab6b74-611c-4d76-b364-43a843325087\",\"pandascore_id\":null,\"yahoo_id\":31435,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cjjohnson\",\"birth_date\":\"1994-01-18\",\"espn_id\":2577394},\"4358\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033409\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1515534001591,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"duke\",\"depth_chart_position\":null,\"player_id\":\"4358\",\"birth_city\":null,\"fantasy_data_id\":19215,\"years_exp\":3,\"hashtag\":\"#AustinDuke-NFL-FA-8\",\"search_first_name\":\"austin\",\"rotowire_id\":12440,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Austin Duke\",\"sportradar_id\":\"07055824-4bf8-4518-bcec-03df1e921eec\",\"pandascore_id\":null,\"yahoo_id\":30380,\"last_name\":\"Duke\",\"metadata\":null,\"college\":\"North Carolina-Charlotte\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749410,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"161\",\"height\":\"5'10\\\"\",\"search_full_name\":\"austinduke\",\"birth_date\":\"1993-08-03\",\"espn_id\":3050138},\"6939\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Binjimen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599604526066,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"victor\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6939\",\"birth_city\":null,\"fantasy_data_id\":21722,\"years_exp\":0,\"hashtag\":\"#BinjimenVictor-NFL-NYG-89\",\"search_first_name\":\"binjimen\",\"rotowire_id\":14529,\"rotoworld_id\":null,\"active\":true,\"search_rank\":575,\"age\":23,\"full_name\":\"Binjimen Victor\",\"sportradar_id\":\"630e6b5d-0486-4bc3-a919-1f02687c1291\",\"pandascore_id\":null,\"yahoo_id\":33040,\"last_name\":\"Victor\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Coconut Creek (FL)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'4\\\"\",\"search_full_name\":\"binjimenvictor\",\"birth_date\":\"1997-01-15\",\"espn_id\":4040628},\"2683\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"franks\",\"depth_chart_position\":null,\"player_id\":\"2683\",\"birth_city\":null,\"fantasy_data_id\":17151,\"years_exp\":5,\"hashtag\":\"#AndrewFranks-NFL-FA-3\",\"search_first_name\":\"andrew\",\"rotowire_id\":10647,\"rotoworld_id\":10983,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Andrew Franks\",\"sportradar_id\":\"59da7aea-f21a-43c5-b0bf-2d1e8b19da80\",\"pandascore_id\":null,\"yahoo_id\":28907,\"last_name\":\"Franks\",\"metadata\":null,\"college\":\"Rensselaer Polytech\",\"high_school\":\"Carmel High School (CA)\",\"depth_chart_order\":null,\"stats_id\":870479,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andrewfranks\",\"birth_date\":\"1993-01-11\",\"espn_id\":3893609},\"5184\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034122\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1557803719924,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilmore\",\"depth_chart_position\":null,\"player_id\":\"5184\",\"birth_city\":null,\"fantasy_data_id\":20181,\"years_exp\":2,\"hashtag\":\"#GregGilmore-NFL-FA-68\",\"search_first_name\":\"greg\",\"rotowire_id\":12864,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Greg Gilmore\",\"sportradar_id\":\"7ecac271-87a9-43e6-afea-abc57552a0c1\",\"pandascore_id\":null,\"yahoo_id\":31417,\"last_name\":\"Gilmore\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"greggilmore\",\"birth_date\":\"1994-11-28\",\"espn_id\":3042747},\"5551\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034295\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566169837810,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":null,\"player_id\":\"5551\",\"birth_city\":null,\"fantasy_data_id\":20502,\"years_exp\":2,\"hashtag\":\"#JamesMurray-NFL-NYJ-61\",\"search_first_name\":\"james\",\"rotowire_id\":13178,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"James Murray\",\"sportradar_id\":\"99119082-a5be-4fb0-bebf-ad25cd564b4e\",\"pandascore_id\":null,\"yahoo_id\":31494,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Holy Cross\",\"high_school\":\"Loyola Academy (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jamesmurray\",\"birth_date\":\"1995-05-05\",\"espn_id\":3048026},\"7333\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vaughn\",\"depth_chart_position\":null,\"player_id\":\"7333\",\"birth_city\":null,\"fantasy_data_id\":22325,\"years_exp\":0,\"hashtag\":\"#DonteVaughn-NFL-LAC-39\",\"search_first_name\":\"donte\",\"rotowire_id\":15086,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Donte Vaughn\",\"sportradar_id\":\"323db6a2-c9bd-4598-920b-480c102902d3\",\"pandascore_id\":null,\"yahoo_id\":32992,\"last_name\":\"Vaughn\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Whitehaven (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dontevaughn\",\"birth_date\":\"1997-10-12\",\"espn_id\":4046687},\"456\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"456\",\"birth_city\":null,\"fantasy_data_id\":9362,\"years_exp\":0,\"hashtag\":\"#DeonButler-NFL-FA-3\",\"search_first_name\":\"deon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Deon Butler\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29203,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542152,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"deonbutler\",\"birth_date\":\"1986-01-04\",\"espn_id\":2516392},\"283\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beason\",\"depth_chart_position\":null,\"player_id\":\"283\",\"birth_city\":null,\"fantasy_data_id\":7174,\"years_exp\":13,\"hashtag\":\"#JonBeason-NFL-FA-52\",\"search_first_name\":\"jon\",\"rotowire_id\":5195,\"rotoworld_id\":4192,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jon Beason\",\"sportradar_id\":\"7418f17b-2573-4e03-bfb3-87a3b6938f98\",\"pandascore_id\":null,\"yahoo_id\":8279,\"last_name\":\"Beason\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Chaminade-Madonna (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonbeason\",\"birth_date\":\"1985-01-14\",\"espn_id\":10469},\"1458\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quanterus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1458\",\"birth_city\":null,\"fantasy_data_id\":15040,\"years_exp\":3,\"hashtag\":\"#QuanterusSmith-NFL-FA-79\",\"search_first_name\":\"quanterus\",\"rotowire_id\":8741,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Quanterus Smith\",\"sportradar_id\":\"2efa19c5-c59b-4b45-be85-6a724dc9e191\",\"pandascore_id\":null,\"yahoo_id\":26769,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"quanterussmith\",\"birth_date\":\"1989-11-29\",\"espn_id\":15997},\"5747\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034761\",\"first_name\":\"Kayaune\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1533405320530,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"5747\",\"birth_city\":null,\"fantasy_data_id\":20656,\"years_exp\":2,\"hashtag\":\"#KayauneRoss-NFL-FA-15\",\"search_first_name\":\"kayaune\",\"rotowire_id\":13348,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kayaune Ross\",\"sportradar_id\":\"97961b4d-48d4-49a9-b738-0c984888f0ba\",\"pandascore_id\":null,\"yahoo_id\":31743,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":920060,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kayauneross\",\"birth_date\":\"1994-07-08\",\"espn_id\":4035069},\"4042\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033286\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535761340202,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4042\",\"birth_city\":null,\"fantasy_data_id\":18885,\"years_exp\":3,\"hashtag\":\"#JoeWilliams-NFL-FA-32\",\"search_first_name\":\"joe\",\"rotowire_id\":11778,\"rotoworld_id\":12204,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joe Williams\",\"sportradar_id\":\"bfadb11e-2e89-48f6-a7b2-896be3106dc8\",\"pandascore_id\":null,\"yahoo_id\":30234,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":867383,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joewilliams\",\"birth_date\":\"1993-09-04\",\"espn_id\":3912576},\"5497\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034138\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cunningham\",\"depth_chart_position\":null,\"player_id\":\"5497\",\"birth_city\":null,\"fantasy_data_id\":20522,\"years_exp\":2,\"hashtag\":\"#JonCunningham-NFL-FA-99\",\"search_first_name\":\"jon\",\"rotowire_id\":13088,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jon Cunningham\",\"sportradar_id\":\"cae53a94-89ce-4eb5-aff9-b1b618283db3\",\"pandascore_id\":null,\"yahoo_id\":31362,\"last_name\":\"Cunningham\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"289\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joncunningham\",\"birth_date\":\"1995-08-31\",\"espn_id\":3125884},\"350\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026898\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1563902715581,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sanchez\",\"depth_chart_position\":null,\"player_id\":\"350\",\"birth_city\":null,\"fantasy_data_id\":8415,\"years_exp\":11,\"hashtag\":\"#MarkSanchez-NFL-FA-6\",\"search_first_name\":\"mark\",\"rotowire_id\":5973,\"rotoworld_id\":5192,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Mark Sanchez\",\"sportradar_id\":\"e6c40f79-1bbd-4f62-9391-7f535f110c0d\",\"pandascore_id\":null,\"yahoo_id\":9269,\"last_name\":\"Sanchez\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Mission Viego (CA)\",\"depth_chart_order\":null,\"stats_id\":297127,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marksanchez\",\"birth_date\":\"1986-11-11\",\"espn_id\":12482},\"3638\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tidwell\",\"depth_chart_position\":null,\"player_id\":\"3638\",\"birth_city\":null,\"fantasy_data_id\":18427,\"years_exp\":0,\"hashtag\":\"#JohnTidwell-NFL-FA-45\",\"search_first_name\":\"john\",\"rotowire_id\":11431,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"John Tidwell\",\"sportradar_id\":\"e96f64bd-770d-4fda-8885-2f879a2607ee\",\"pandascore_id\":null,\"yahoo_id\":29635,\"last_name\":\"Tidwell\",\"metadata\":null,\"college\":\"Sioux Falls\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johntidwell\",\"birth_date\":\"1993-03-25\",\"espn_id\":4012549},\"6598\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035341\",\"first_name\":\"Trenton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599332757223,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"irwin\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6598\",\"birth_city\":null,\"fantasy_data_id\":21263,\"years_exp\":1,\"hashtag\":\"#TrentonIrwin-NFL-CIN-16\",\"search_first_name\":\"trenton\",\"rotowire_id\":13626,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1707,\"age\":24,\"full_name\":\"Trenton Irwin\",\"sportradar_id\":\"ee79ad2e-353a-40cd-9344-c9d84f7e4b63\",\"pandascore_id\":null,\"yahoo_id\":32438,\"last_name\":\"Irwin\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Hart (CA)\",\"depth_chart_order\":3,\"stats_id\":884943,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trentonirwin\",\"birth_date\":\"1995-12-10\",\"espn_id\":3931391},\"2170\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031281\",\"first_name\":\"Ra'Shede\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1578978626636,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hageman\",\"depth_chart_position\":null,\"player_id\":\"2170\",\"birth_city\":null,\"fantasy_data_id\":16526,\"years_exp\":6,\"hashtag\":\"#RaShedeHageman-NFL-FA-90\",\"search_first_name\":\"rashede\",\"rotowire_id\":9254,\"rotoworld_id\":9361,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ra'Shede Hageman\",\"sportradar_id\":\"917e7a94-fef2-4293-b50e-94e52f777232\",\"pandascore_id\":null,\"yahoo_id\":27565,\"last_name\":\"Hageman\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Washburn (MN)\",\"depth_chart_order\":null,\"stats_id\":498931,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'6\\\"\",\"search_full_name\":\"rashedehageman\",\"birth_date\":\"1990-08-08\",\"espn_id\":16744},\"5782\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034868\",\"first_name\":\"Erick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wren\",\"depth_chart_position\":null,\"player_id\":\"5782\",\"birth_city\":null,\"fantasy_data_id\":20267,\"years_exp\":2,\"hashtag\":\"#ErickWren-NFL-FA-74\",\"search_first_name\":\"erick\",\"rotowire_id\":13377,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Erick Wren\",\"sportradar_id\":\"593e7567-a8a2-4032-876c-12ef72720dc6\",\"pandascore_id\":null,\"yahoo_id\":31778,\"last_name\":\"Wren\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'2\\\"\",\"search_full_name\":\"erickwren\",\"birth_date\":null,\"espn_id\":3892890},\"7131\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603653009235,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"TE\",\"player_id\":\"7131\",\"birth_city\":null,\"fantasy_data_id\":22138,\"years_exp\":0,\"hashtag\":\"#TylerDavis-NFL-JAX-87\",\"search_first_name\":\"tyler\",\"rotowire_id\":14827,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1931,\"age\":23,\"full_name\":\"Tyler Davis\",\"sportradar_id\":\"e7a9186e-5e19-4f70-b45c-527c888e6fc7\",\"pandascore_id\":null,\"yahoo_id\":32876,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Mepham (NY)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tylerdavis\",\"birth_date\":\"1997-04-02\",\"espn_id\":3914240},\"1224\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fleming\",\"depth_chart_position\":null,\"player_id\":\"1224\",\"birth_city\":null,\"fantasy_data_id\":14497,\"years_exp\":8,\"hashtag\":\"#DariusFleming-NFL-FA-53\",\"search_first_name\":\"darius\",\"rotowire_id\":8292,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Darius Fleming\",\"sportradar_id\":\"191d31c5-46ff-4e35-ab6e-fc77e1fad7cf\",\"pandascore_id\":null,\"yahoo_id\":25875,\"last_name\":\"Fleming\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"St. Rita (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dariusfleming\",\"birth_date\":\"1989-07-19\",\"espn_id\":15080},\"DEN\":{\"team\":\"DEN\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"DEN\",\"last_name\":\"Broncos\",\"injury_status\":null,\"first_name\":\"Denver\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"3121\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"3121\",\"birth_city\":null,\"fantasy_data_id\":17875,\"years_exp\":0,\"hashtag\":\"#JonRobinson-NFL-FA-0\",\"search_first_name\":\"jon\",\"rotowire_id\":null,\"rotoworld_id\":11230,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jon Robinson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jonrobinson\",\"birth_date\":null,\"espn_id\":null},\"1365\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dobson\",\"depth_chart_position\":null,\"player_id\":\"1365\",\"birth_city\":null,\"fantasy_data_id\":14886,\"years_exp\":7,\"hashtag\":\"#AaronDobson-NFL-FA-83\",\"search_first_name\":\"aaron\",\"rotowire_id\":8795,\"rotoworld_id\":8479,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Aaron Dobson\",\"sportradar_id\":\"ac673b16-3268-43df-a521-4dfd864698cc\",\"pandascore_id\":null,\"yahoo_id\":26682,\"last_name\":\"Dobson\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"South Charleston (WV)\",\"depth_chart_order\":null,\"stats_id\":512627,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"aarondobson\",\"birth_date\":\"1991-07-23\",\"espn_id\":15834},\"2099\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031300\",\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603136718943,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":\"LDE\",\"player_id\":\"2099\",\"birth_city\":null,\"fantasy_data_id\":16420,\"years_exp\":6,\"hashtag\":\"#TrentMurphy-NFL-BUF-93\",\"search_first_name\":\"trent\",\"rotowire_id\":9265,\"rotoworld_id\":9637,\"active\":true,\"search_rank\":820,\"age\":29,\"full_name\":\"Trent Murphy\",\"sportradar_id\":\"5d98bad5-1730-4095-825d-3ff8d10d1116\",\"pandascore_id\":null,\"yahoo_id\":27575,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Brophy (AZ)\",\"depth_chart_order\":2,\"stats_id\":503191,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'6\\\"\",\"search_full_name\":\"trentmurphy\",\"birth_date\":\"1990-12-22\",\"espn_id\":16751},\"1100\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crick\",\"depth_chart_position\":null,\"player_id\":\"1100\",\"birth_city\":null,\"fantasy_data_id\":13962,\"years_exp\":8,\"hashtag\":\"#JaredCrick-NFL-FA-93\",\"search_first_name\":\"jared\",\"rotowire_id\":8138,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jared Crick\",\"sportradar_id\":\"9ec9bb80-24ff-42e9-b910-005ade0726b3\",\"pandascore_id\":null,\"yahoo_id\":25836,\"last_name\":\"Crick\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Cozad (NE)\",\"depth_chart_order\":null,\"stats_id\":406421,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jaredcrick\",\"birth_date\":\"1989-08-21\",\"espn_id\":15019},\"3974\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gruden\",\"depth_chart_position\":null,\"player_id\":\"3974\",\"birth_city\":null,\"fantasy_data_id\":18809,\"years_exp\":0,\"hashtag\":\"#JonGruden-NFL-FA-0\",\"search_first_name\":\"jon\",\"rotowire_id\":null,\"rotoworld_id\":9270,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jon Gruden\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gruden\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jongruden\",\"birth_date\":null,\"espn_id\":null},\"1739\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":null,\"player_id\":\"1739\",\"birth_city\":null,\"fantasy_data_id\":15697,\"years_exp\":8,\"hashtag\":\"#ChaseFord-NFL-FA-48\",\"search_first_name\":\"chase\",\"rotowire_id\":8941,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chase Ford\",\"sportradar_id\":\"1efa88ac-9603-4c4b-a412-1aa30c493730\",\"pandascore_id\":null,\"yahoo_id\":26000,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Corrigan-Camben (TX)\",\"depth_chart_order\":null,\"stats_id\":553604,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chaseford\",\"birth_date\":\"1990-07-19\",\"espn_id\":15647},\"1744\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lester\",\"depth_chart_position\":null,\"player_id\":\"1744\",\"birth_city\":null,\"fantasy_data_id\":15727,\"years_exp\":3,\"hashtag\":\"#RobertLester-NFL-FA-38\",\"search_first_name\":\"robert\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Robert Lester\",\"sportradar_id\":\"cffccec0-ada1-4beb-9f4e-ac639115fb54\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lester\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robertlester\",\"birth_date\":\"1988-04-30\",\"espn_id\":16434},\"3239\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033117\",\"first_name\":\"Bronson\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"DL\"],\"news_updated\":1599515404163,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kaufusi\",\"depth_chart_position\":\"TE\",\"player_id\":\"3239\",\"birth_city\":null,\"fantasy_data_id\":18000,\"years_exp\":4,\"hashtag\":\"#BronsonKaufusi-NFL-NYJ-45\",\"search_first_name\":\"bronson\",\"rotowire_id\":11087,\"rotoworld_id\":11381,\"active\":true,\"search_rank\":987,\"age\":29,\"full_name\":\"Bronson Kaufusi\",\"sportradar_id\":\"dac819b2-245f-4845-a73e-b6f92fbe3abb\",\"pandascore_id\":null,\"yahoo_id\":29304,\"last_name\":\"Kaufusi\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Timpview (UT)\",\"depth_chart_order\":6,\"stats_id\":695300,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"bronsonkaufusi\",\"birth_date\":\"1991-07-06\",\"espn_id\":2980444},\"6243\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035422\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599331557117,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"westry\",\"depth_chart_position\":null,\"player_id\":\"6243\",\"birth_city\":null,\"fantasy_data_id\":21174,\"years_exp\":1,\"hashtag\":\"#ChrisWestry-NFL-DAL-39\",\"search_first_name\":\"chris\",\"rotowire_id\":13914,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1688,\"age\":23,\"full_name\":\"Chris Westry\",\"sportradar_id\":\"ac84c815-7ed4-49b2-b84a-08cf6c016eb5\",\"pandascore_id\":null,\"yahoo_id\":32199,\"last_name\":\"Westry\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Oakleaf (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chriswestry\",\"birth_date\":\"1997-07-10\",\"espn_id\":3915255},\"5824\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034908\",\"first_name\":\"Hayden\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1556575558059,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":null,\"player_id\":\"5824\",\"birth_city\":null,\"fantasy_data_id\":20718,\"years_exp\":1,\"hashtag\":\"#HaydenHunt-NFL-TB-1\",\"search_first_name\":\"hayden\",\"rotowire_id\":11830,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Hayden Hunt\",\"sportradar_id\":\"812162ea-0b21-4da6-b7c9-383b1e8ab60e\",\"pandascore_id\":null,\"yahoo_id\":31809,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"haydenhunt\",\"birth_date\":\"1993-06-09\",\"espn_id\":2973605},\"2959\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sage\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harold\",\"depth_chart_position\":null,\"player_id\":\"2959\",\"birth_city\":null,\"fantasy_data_id\":17438,\"years_exp\":0,\"hashtag\":\"#SageHarold-NFL-FA-96\",\"search_first_name\":\"sage\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Sage Harold\",\"sportradar_id\":\"93b04a28-de9f-4b7e-bb27-f31d938b220a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harold\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sageharold\",\"birth_date\":\"1991-11-13\",\"espn_id\":2587811},\"5318\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034385\",\"first_name\":\"Ja'Whaun\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606064118020,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bentley\",\"depth_chart_position\":\"LB\",\"player_id\":\"5318\",\"birth_city\":null,\"fantasy_data_id\":19944,\"years_exp\":2,\"hashtag\":\"#JaWhaunBentley-NFL-NE-51\",\"search_first_name\":\"jawhaun\",\"rotowire_id\":12766,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1358,\"age\":24,\"full_name\":\"Ja'Whaun Bentley\",\"sportradar_id\":\"3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88\",\"pandascore_id\":null,\"yahoo_id\":31113,\"last_name\":\"Bentley\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Purdue\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jawhaunbentley\",\"birth_date\":\"1996-08-24\",\"espn_id\":3116187},\"3783\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032841\",\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535742995004,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":null,\"player_id\":\"3783\",\"birth_city\":null,\"fantasy_data_id\":18596,\"years_exp\":4,\"hashtag\":\"#PaulTurner-NFL-FA-86\",\"search_first_name\":\"paul\",\"rotowire_id\":11540,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Paul Turner\",\"sportradar_id\":\"c92f0c72-f333-4c52-ba7d-4797cbf43078\",\"pandascore_id\":null,\"yahoo_id\":29686,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":589999,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"paulturner\",\"birth_date\":\"1993-05-10\",\"espn_id\":2577286},\"6574\":{\"position\":\"FS\",\"injury_notes\":\"Langford has reverted to the injured reserve list after clearing waivers with an unspecified injury.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rolle\",\"depth_chart_position\":null,\"player_id\":\"6574\",\"birth_city\":null,\"fantasy_data_id\":21270,\"years_exp\":0,\"hashtag\":\"#RobRolle-NFL-FA-4\",\"search_first_name\":\"rob\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rob Rolle\",\"sportradar_id\":\"c27a99d1-8f5c-4b72-b674-f2d74cc5ae4c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rolle\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robrolle\",\"birth_date\":\"1996-05-12\",\"espn_id\":null},\"397\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"myers\",\"depth_chart_position\":null,\"player_id\":\"397\",\"birth_city\":null,\"fantasy_data_id\":8778,\"years_exp\":11,\"hashtag\":\"#BrandonMyers-NFL-FA-82\",\"search_first_name\":\"brandon\",\"rotowire_id\":6128,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brandon Myers\",\"sportradar_id\":\"2cb0ddf8-32c3-415b-bd23-2d6c56e76100\",\"pandascore_id\":null,\"yahoo_id\":9466,\"last_name\":\"Myers\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Prairie City-Monroe (IA)\",\"depth_chart_order\":null,\"stats_id\":264810,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonmyers\",\"birth_date\":\"1985-09-04\",\"espn_id\":12705},\"724\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ness\",\"depth_chart_position\":null,\"player_id\":\"724\",\"birth_city\":null,\"fantasy_data_id\":12274,\"years_exp\":4,\"hashtag\":\"#NateNess-NFL-FA-47\",\"search_first_name\":\"nate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Nate Ness\",\"sportradar_id\":\"ddba2dbd-c1b3-4e34-a118-06daa485ec91\",\"pandascore_id\":null,\"yahoo_id\":9722,\"last_name\":\"Ness\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nateness\",\"birth_date\":\"1986-09-05\",\"espn_id\":13005},\"2684\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corbin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"louks\",\"depth_chart_position\":null,\"player_id\":\"2684\",\"birth_city\":null,\"fantasy_data_id\":17152,\"years_exp\":0,\"hashtag\":\"#CorbinLouks-NFL-FA-6\",\"search_first_name\":\"corbin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Corbin Louks\",\"sportradar_id\":\"1a4af562-3441-4bcf-8ae0-a6e5ad8b6ed3\",\"pandascore_id\":null,\"yahoo_id\":26594,\"last_name\":\"Louks\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":383512,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"corbinlouks\",\"birth_date\":\"1989-04-10\",\"espn_id\":15753},\"412\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022531\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606495803567,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":\"LT\",\"player_id\":\"412\",\"birth_city\":null,\"fantasy_data_id\":8920,\"years_exp\":16,\"hashtag\":\"#JasonPeters-NFL-PHI-71\",\"search_first_name\":\"jason\",\"rotowire_id\":3874,\"rotoworld_id\":3061,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Jason Peters\",\"sportradar_id\":\"46aab8e6-3ca9-4213-a6cb-87db90786f6b\",\"pandascore_id\":null,\"yahoo_id\":7122,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Queen City (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jasonpeters\",\"birth_date\":\"1982-01-22\",\"espn_id\":6012},\"1638\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darryl\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1511899801324,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morris\",\"depth_chart_position\":null,\"player_id\":\"1638\",\"birth_city\":null,\"fantasy_data_id\":15373,\"years_exp\":7,\"hashtag\":\"#DarrylMorris-NFL-FA-23\",\"search_first_name\":\"darryl\",\"rotowire_id\":9171,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Darryl Morris\",\"sportradar_id\":\"bd0e5bd7-1e86-439f-bd90-8e8c44a9fcc3\",\"pandascore_id\":null,\"yahoo_id\":27215,\"last_name\":\"Morris\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":\"Warren (TX)\",\"depth_chart_order\":null,\"stats_id\":470897,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"darrylmorris\",\"birth_date\":\"1990-09-04\",\"espn_id\":16367},\"7310\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"panasiuk\",\"depth_chart_position\":null,\"player_id\":\"7310\",\"birth_city\":null,\"fantasy_data_id\":22302,\"years_exp\":0,\"hashtag\":\"#MikePanasiuk-NFL-CAR-91\",\"search_first_name\":\"mike\",\"rotowire_id\":14905,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Mike Panasiuk\",\"sportradar_id\":\"4f115bb3-1468-4bfb-a239-e55e6dc7ce3f\",\"pandascore_id\":null,\"yahoo_id\":33354,\"last_name\":\"Panasiuk\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Lake Park West (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikepanasiuk\",\"birth_date\":\"1997-10-13\",\"espn_id\":4046721},\"4200\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033291\",\"first_name\":\"Deangelo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567220158216,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"yancey\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4200\",\"birth_city\":null,\"fantasy_data_id\":19046,\"years_exp\":3,\"hashtag\":\"#DeangeloYancey-NFL-FA-18\",\"search_first_name\":\"deangelo\",\"rotowire_id\":12206,\"rotoworld_id\":12382,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Deangelo Yancey\",\"sportradar_id\":\"591ce770-7ca3-49e0-965f-5a69a55f2c07\",\"pandascore_id\":null,\"yahoo_id\":30288,\"last_name\":\"Yancey\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":749082,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"deangeloyancey\",\"birth_date\":\"1994-11-18\",\"espn_id\":3052470},\"4906\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034063\",\"first_name\":\"Kacy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1535771213611,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rodgersii\",\"depth_chart_position\":null,\"player_id\":\"4906\",\"birth_city\":null,\"fantasy_data_id\":19808,\"years_exp\":2,\"hashtag\":\"#KacyRodgersII-NFL-FA-39\",\"search_first_name\":\"kacy\",\"rotowire_id\":12931,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kacy Rodgers II\",\"sportradar_id\":\"d23b7135-c37d-4a5d-b034-2400b3666fa0\",\"pandascore_id\":null,\"yahoo_id\":30961,\"last_name\":\"Rodgers II\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kacyrodgersii\",\"birth_date\":\"1992-04-02\",\"espn_id\":2512591},\"6056\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034982\",\"first_name\":\"Dre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606434361093,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"greenlaw\",\"depth_chart_position\":\"SAM\",\"player_id\":\"6056\",\"birth_city\":null,\"fantasy_data_id\":20778,\"years_exp\":1,\"hashtag\":\"#DreGreenlaw-NFL-SF-57\",\"search_first_name\":\"dre\",\"rotowire_id\":13804,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1541,\"age\":23,\"full_name\":\"Dre Greenlaw\",\"sportradar_id\":\"e6eb9d50-9231-44ff-89eb-7f7b996e042f\",\"pandascore_id\":null,\"yahoo_id\":31980,\"last_name\":\"Greenlaw\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Fayetteville (AR)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dregreenlaw\",\"birth_date\":\"1997-05-25\",\"espn_id\":3916903},\"2571\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"luc\",\"depth_chart_position\":null,\"player_id\":\"2571\",\"birth_city\":null,\"fantasy_data_id\":17036,\"years_exp\":1,\"hashtag\":\"#JeffLuc-NFL-FA-0\",\"search_first_name\":\"jeff\",\"rotowire_id\":10376,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeff Luc\",\"sportradar_id\":\"6fb134a4-9fe7-474a-acd4-fe038e4bc641\",\"pandascore_id\":null,\"yahoo_id\":28912,\"last_name\":\"Luc\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jeffluc\",\"birth_date\":\"1992-02-14\",\"espn_id\":2512509},\"5903\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035251\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606065917862,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grier\",\"depth_chart_position\":\"QB\",\"player_id\":\"5903\",\"birth_city\":null,\"fantasy_data_id\":20779,\"years_exp\":1,\"hashtag\":\"#WillGrier-NFL-CAR-7\",\"search_first_name\":\"will\",\"rotowire_id\":13446,\"rotoworld_id\":13977,\"active\":true,\"search_rank\":439,\"age\":25,\"full_name\":\"Will Grier\",\"sportradar_id\":\"7905e9be-2f66-4ff5-a6e9-dbe281bf4822\",\"pandascore_id\":null,\"yahoo_id\":31932,\"last_name\":\"Grier\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Davidson Day School (NC)\",\"depth_chart_order\":3,\"stats_id\":820423,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"willgrier\",\"birth_date\":\"1995-04-03\",\"espn_id\":3115252},\"3468\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kugler\",\"depth_chart_position\":null,\"player_id\":\"3468\",\"birth_city\":null,\"fantasy_data_id\":18232,\"years_exp\":0,\"hashtag\":\"#RobertKugler-NFL-FA-67\",\"search_first_name\":\"robert\",\"rotowire_id\":11322,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Robert Kugler\",\"sportradar_id\":\"21aa31bb-8822-4cd3-a8df-619875785086\",\"pandascore_id\":null,\"yahoo_id\":29551,\"last_name\":\"Kugler\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"robertkugler\",\"birth_date\":\"1992-12-11\",\"espn_id\":null},\"6706\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035673\",\"first_name\":\"Sione\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1590848415409,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"teuhema\",\"depth_chart_position\":\"LOLB\",\"player_id\":\"6706\",\"birth_city\":null,\"fantasy_data_id\":21624,\"years_exp\":1,\"hashtag\":\"#SioneTeuhema-NFL-FA-0\",\"search_first_name\":\"sione\",\"rotowire_id\":14323,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1768,\"age\":24,\"full_name\":\"Sione Teuhema\",\"sportradar_id\":\"a01280a0-41f3-406a-83bf-3d57e2a6db90\",\"pandascore_id\":null,\"yahoo_id\":32617,\"last_name\":\"Teuhema\",\"metadata\":null,\"college\":\"Southeastern Louisiana\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sioneteuhema\",\"birth_date\":\"1995-09-28\",\"espn_id\":3115384},\"4303\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033233\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1544580637053,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"4303\",\"birth_city\":null,\"fantasy_data_id\":19151,\"years_exp\":3,\"hashtag\":\"#JordanMoore-NFL-FA-30\",\"search_first_name\":\"jordan\",\"rotowire_id\":12509,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Moore\",\"sportradar_id\":\"e8aca261-6e92-4e6d-bd21-3cfeb70ce9e4\",\"pandascore_id\":null,\"yahoo_id\":30461,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanmoore\",\"birth_date\":\"1993-12-13\",\"espn_id\":2971542},\"394\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026983\",\"first_name\":\"Darrius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1546629047318,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"heywardbey\",\"depth_chart_position\":null,\"player_id\":\"394\",\"birth_city\":null,\"fantasy_data_id\":8771,\"years_exp\":11,\"hashtag\":\"#DarriusHeywardBey-NFL-FA-88\",\"search_first_name\":\"darrius\",\"rotowire_id\":5993,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Darrius Heyward-Bey\",\"sportradar_id\":\"c456e060-d4d8-46cb-acf4-296edfb4f7bd\",\"pandascore_id\":null,\"yahoo_id\":9271,\"last_name\":\"Heyward-Bey\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"McDonogh (MD)\",\"depth_chart_order\":null,\"stats_id\":284925,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darriusheywardbey\",\"birth_date\":\"1987-02-26\",\"espn_id\":12570},\"955\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isa\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abdulquddus\",\"depth_chart_position\":null,\"player_id\":\"955\",\"birth_city\":null,\"fantasy_data_id\":13330,\"years_exp\":9,\"hashtag\":\"#IsaAbdulQuddus-NFL-FA-24\",\"search_first_name\":\"isa\",\"rotowire_id\":7843,\"rotoworld_id\":6995,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Isa Abdul-Quddus\",\"sportradar_id\":\"1cf89a44-0b07-4eaf-87b6-face89587820\",\"pandascore_id\":null,\"yahoo_id\":25275,\"last_name\":\"Abdul-Quddus\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":\"Union (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"isaabdulquddus\",\"birth_date\":\"1988-12-14\",\"espn_id\":14466},\"1881\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031177\",\"first_name\":\"Brent\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603036806560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"urban\",\"depth_chart_position\":\"DT\",\"player_id\":\"1881\",\"birth_city\":null,\"fantasy_data_id\":16100,\"years_exp\":6,\"hashtag\":\"#BrentUrban-NFL-CHI-92\",\"search_first_name\":\"brent\",\"rotowire_id\":9415,\"rotoworld_id\":9566,\"active\":true,\"search_rank\":778,\"age\":29,\"full_name\":\"Brent Urban\",\"sportradar_id\":\"63cef4ac-6e22-497b-9f8c-fbccd0694d17\",\"pandascore_id\":null,\"yahoo_id\":27662,\"last_name\":\"Urban\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Lorne Park Secondary (CAN)\",\"depth_chart_order\":2,\"stats_id\":509425,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brenturban\",\"birth_date\":\"1991-05-05\",\"espn_id\":16831},\"2376\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031561\",\"first_name\":\"Hroniss\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606346703455,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grasu\",\"depth_chart_position\":\"C\",\"player_id\":\"2376\",\"birth_city\":null,\"fantasy_data_id\":16832,\"years_exp\":5,\"hashtag\":\"#HronissGrasu-NFL-SF-50\",\"search_first_name\":\"hroniss\",\"rotowire_id\":10274,\"rotoworld_id\":10393,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Hroniss Grasu\",\"sportradar_id\":\"1c435ae4-8e29-4006-905b-7fa34f87604b\",\"pandascore_id\":null,\"yahoo_id\":28459,\"last_name\":\"Grasu\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Crespi (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hronissgrasu\",\"birth_date\":\"1991-08-12\",\"espn_id\":2516984},\"6381\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035104\",\"first_name\":\"Alexander\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599417960210,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hollins\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6381\",\"birth_city\":null,\"fantasy_data_id\":21312,\"years_exp\":1,\"hashtag\":\"#AlexanderHollins-NFL-MIN-15\",\"search_first_name\":\"alexander\",\"rotowire_id\":14049,\"rotoworld_id\":null,\"active\":true,\"search_rank\":454,\"age\":24,\"full_name\":\"Alexander Hollins\",\"sportradar_id\":\"d0780152-5d3e-4add-99bd-e330c258df10\",\"pandascore_id\":null,\"yahoo_id\":32143,\"last_name\":\"Hollins\",\"metadata\":null,\"college\":\"Eastern Illinois\",\"high_school\":\"Yazoo County (MS)\",\"depth_chart_order\":3,\"stats_id\":1050926,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"166\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alexanderhollins\",\"birth_date\":\"1996-11-24\",\"espn_id\":4249496},\"2450\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031589\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1584899124857,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hundley\",\"depth_chart_position\":\"QB\",\"player_id\":\"2450\",\"birth_city\":null,\"fantasy_data_id\":16907,\"years_exp\":5,\"hashtag\":\"#BrettHundley-NFL-ARI-7\",\"search_first_name\":\"brett\",\"rotowire_id\":9706,\"rotoworld_id\":10402,\"active\":true,\"search_rank\":510,\"age\":27,\"full_name\":\"Brett Hundley\",\"sportradar_id\":\"e97f5ca9-186e-4346-ae65-1cd757ada455\",\"pandascore_id\":null,\"yahoo_id\":28535,\"last_name\":\"Hundley\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":2,\"stats_id\":590420,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bretthundley\",\"birth_date\":\"1993-06-15\",\"espn_id\":2577189},\"4239\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033581\",\"first_name\":\"De'Angelo\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1578978327169,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"4239\",\"birth_city\":null,\"fantasy_data_id\":19085,\"years_exp\":3,\"hashtag\":\"#DeAngeloHenderson-NFL-FA-48\",\"search_first_name\":\"deangelo\",\"rotowire_id\":11762,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"De'Angelo Henderson\",\"sportradar_id\":\"294b247f-c8b9-4fe7-9fce-bb4011fff02f\",\"pandascore_id\":null,\"yahoo_id\":30319,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":602310,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'7\\\"\",\"search_full_name\":\"deangelohenderson\",\"birth_date\":\"1992-11-24\",\"espn_id\":2968226},\"2975\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031502\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1603587057592,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"berry\",\"depth_chart_position\":null,\"player_id\":\"2975\",\"birth_city\":null,\"fantasy_data_id\":17470,\"years_exp\":5,\"hashtag\":\"#JordanBerry-NFL-PIT-4\",\"search_first_name\":\"jordan\",\"rotowire_id\":10172,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jordan Berry\",\"sportradar_id\":\"e20a7609-8129-400f-87b9-d11dda3836b4\",\"pandascore_id\":null,\"yahoo_id\":28388,\"last_name\":\"Berry\",\"metadata\":null,\"college\":\"Eastern Kentucky\",\"high_school\":\"Melbourne (AUS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jordanberry\",\"birth_date\":\"1991-03-18\",\"espn_id\":2472364},\"1760\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"childers\",\"depth_chart_position\":null,\"player_id\":\"1760\",\"birth_city\":null,\"fantasy_data_id\":15790,\"years_exp\":1,\"hashtag\":\"#JamieChilders-NFL-FA-40\",\"search_first_name\":\"jamie\",\"rotowire_id\":10715,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jamie Childers\",\"sportradar_id\":\"7bad4152-145c-4360-8e07-3f500c6043f9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Childers\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":404415,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jamiechilders\",\"birth_date\":\"1988-06-16\",\"espn_id\":null},\"1425\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030108\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606101910332,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":\"TE\",\"player_id\":\"1425\",\"birth_city\":null,\"fantasy_data_id\":14985,\"years_exp\":7,\"hashtag\":\"#RyanGriffin-NFL-NYJ-84\",\"search_first_name\":\"ryan\",\"rotowire_id\":8911,\"rotoworld_id\":8600,\"active\":true,\"search_rank\":465,\"age\":30,\"full_name\":\"Ryan Griffin\",\"sportradar_id\":\"cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71\",\"pandascore_id\":null,\"yahoo_id\":26824,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Londonderry (NH)\",\"depth_chart_order\":2,\"stats_id\":465129,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ryangriffin\",\"birth_date\":\"1990-01-11\",\"espn_id\":15887},\"3497\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darion\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"griswold\",\"depth_chart_position\":null,\"player_id\":\"3497\",\"birth_city\":null,\"fantasy_data_id\":18263,\"years_exp\":3,\"hashtag\":\"#DarionGriswold-NFL-FA-83\",\"search_first_name\":\"darion\",\"rotowire_id\":11253,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Darion Griswold\",\"sportradar_id\":\"4a113c60-838b-429b-bbea-378db16942ce\",\"pandascore_id\":null,\"yahoo_id\":29600,\"last_name\":\"Griswold\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608346,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dariongriswold\",\"birth_date\":\"1992-12-23\",\"espn_id\":2572850},\"2665\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"legree\",\"depth_chart_position\":null,\"player_id\":\"2665\",\"birth_city\":null,\"fantasy_data_id\":17133,\"years_exp\":1,\"hashtag\":\"#JimmyLegree-NFL-FA-46\",\"search_first_name\":\"jimmy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jimmy Legree\",\"sportradar_id\":\"688b98e5-6833-49df-890e-dabe5c724158\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Legree\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jimmylegree\",\"birth_date\":\"1991-01-13\",\"espn_id\":17015},\"3361\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032798\",\"first_name\":\"Harlan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1545174057114,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"LCB\",\"player_id\":\"3361\",\"birth_city\":null,\"fantasy_data_id\":18122,\"years_exp\":4,\"hashtag\":\"#HarlanMiller-NFL-FA-48\",\"search_first_name\":\"harlan\",\"rotowire_id\":11136,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Harlan Miller\",\"sportradar_id\":\"a0b23166-6964-4d52-a7b4-9705b61a7e56\",\"pandascore_id\":null,\"yahoo_id\":29439,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"SE Louisiana\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":697963,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'0\\\"\",\"search_full_name\":\"harlanmiller\",\"birth_date\":\"1994-06-20\",\"espn_id\":2974631},\"1068\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029560\",\"first_name\":\"Dre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605743443373,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kirkpatrick\",\"depth_chart_position\":\"RCB\",\"player_id\":\"1068\",\"birth_city\":null,\"fantasy_data_id\":13871,\"years_exp\":8,\"hashtag\":\"#DreKirkpatrick-NFL-ARI-20\",\"search_first_name\":\"dre\",\"rotowire_id\":8163,\"rotoworld_id\":7463,\"active\":true,\"search_rank\":663,\"age\":31,\"full_name\":\"Dre Kirkpatrick\",\"sportradar_id\":\"e972d67d-8302-4c64-9c1c-bc3121b90af4\",\"pandascore_id\":null,\"yahoo_id\":25727,\"last_name\":\"Kirkpatrick\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Gadsden City (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"drekirkpatrick\",\"birth_date\":\"1989-10-26\",\"espn_id\":14940},\"5415\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034542\",\"first_name\":\"Zachary\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1557961503236,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crabtree\",\"depth_chart_position\":\"LT\",\"player_id\":\"5415\",\"birth_city\":null,\"fantasy_data_id\":20433,\"years_exp\":2,\"hashtag\":\"#ZacharyCrabtree-NFL-FA-60\",\"search_first_name\":\"zachary\",\"rotowire_id\":12732,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zachary Crabtree\",\"sportradar_id\":\"f73a26da-0da4-4a51-88b5-98988ca94c58\",\"pandascore_id\":null,\"yahoo_id\":31673,\"last_name\":\"Crabtree\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'6\\\"\",\"search_full_name\":\"zacharycrabtree\",\"birth_date\":\"1994-09-16\",\"espn_id\":3046323},\"6109\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035125\",\"first_name\":\"Alec\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605319855389,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ingold\",\"depth_chart_position\":\"RB\",\"player_id\":\"6109\",\"birth_city\":null,\"fantasy_data_id\":20819,\"years_exp\":1,\"hashtag\":\"#AlecIngold-NFL-LV-45\",\"search_first_name\":\"alec\",\"rotowire_id\":13806,\"rotoworld_id\":null,\"active\":true,\"search_rank\":386,\"age\":24,\"full_name\":\"Alec Ingold\",\"sportradar_id\":\"7ade135c-0760-4548-b7d9-cf1174e2be33\",\"pandascore_id\":null,\"yahoo_id\":32344,\"last_name\":\"Ingold\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Bay Port (WI)\",\"depth_chart_order\":4,\"stats_id\":880322,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alecingold\",\"birth_date\":\"1996-07-09\",\"espn_id\":3917668},\"4059\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033874\",\"first_name\":\"Marshon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606345203106,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lattimore\",\"depth_chart_position\":\"RCB\",\"player_id\":\"4059\",\"birth_city\":null,\"fantasy_data_id\":18905,\"years_exp\":3,\"hashtag\":\"#MarshonLattimore-NFL-NO-23\",\"search_first_name\":\"marshon\",\"rotowire_id\":12023,\"rotoworld_id\":12229,\"active\":true,\"search_rank\":1117,\"age\":24,\"full_name\":\"Marshon Lattimore\",\"sportradar_id\":\"66386076-7d61-47b7-88e2-34a883de250f\",\"pandascore_id\":null,\"yahoo_id\":30124,\"last_name\":\"Lattimore\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marshonlattimore\",\"birth_date\":\"1996-05-20\",\"espn_id\":3121421},\"791\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0028424\",\"first_name\":\"Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"DL\",\"DB\"],\"news_updated\":1564194358191,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thornton\",\"depth_chart_position\":null,\"player_id\":\"791\",\"birth_city\":null,\"fantasy_data_id\":12716,\"years_exp\":9,\"hashtag\":\"#CedricThornton-NFL-FA-63\",\"search_first_name\":\"cedric\",\"rotowire_id\":7874,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Cedric Thornton\",\"sportradar_id\":\"1e110bd9-4eca-410f-82ed-e4d8af131574\",\"pandascore_id\":null,\"yahoo_id\":25048,\"last_name\":\"Thornton\",\"metadata\":null,\"college\":\"Southern Arkansas\",\"high_school\":\"Star City (AR)\",\"depth_chart_order\":null,\"stats_id\":407045,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cedricthornton\",\"birth_date\":\"1988-06-21\",\"espn_id\":14310},\"749\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027125\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1555446948936,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"749\",\"birth_city\":null,\"fantasy_data_id\":12415,\"years_exp\":11,\"hashtag\":\"#ZachMiller-NFL-FA-86\",\"search_first_name\":\"zach\",\"rotowire_id\":6124,\"rotoworld_id\":5394,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Zach Miller\",\"sportradar_id\":\"338b1ed8-131f-41f4-850a-1f93534558c7\",\"pandascore_id\":null,\"yahoo_id\":9444,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Nebraska-Omaha\",\"high_school\":\"Bishop Neumann (NE)\",\"depth_chart_order\":null,\"stats_id\":245993,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zachmiller\",\"birth_date\":\"1984-10-04\",\"espn_id\":12699},\"6901\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600452341339,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"metellus\",\"depth_chart_position\":\"FS\",\"player_id\":\"6901\",\"birth_city\":null,\"fantasy_data_id\":21929,\"years_exp\":0,\"hashtag\":\"#JoshMetellus-NFL-MIN-44\",\"search_first_name\":\"josh\",\"rotowire_id\":14479,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1847,\"age\":22,\"full_name\":\"Josh Metellus\",\"sportradar_id\":\"e135eaa4-1688-487a-a924-4d83b16977df\",\"pandascore_id\":null,\"yahoo_id\":32875,\"last_name\":\"Metellus\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Flanagan (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshmetellus\",\"birth_date\":\"1998-01-21\",\"espn_id\":4046537},\"5973\":{\"position\":\"TE\",\"injury_notes\":\"Oliver suffered the injury during practice and will undergo surgery. He is considered out indefinitely at this time.\",\"birth_country\":null,\"gsis_id\":\" 00-0035249\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1597945831709,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"oliver\",\"depth_chart_position\":\"TE\",\"player_id\":\"5973\",\"birth_city\":null,\"fantasy_data_id\":20899,\"years_exp\":1,\"hashtag\":\"#JoshOliver-NFL-JAX-89\",\"search_first_name\":\"josh\",\"rotowire_id\":13786,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Oliver\",\"sportradar_id\":\"dc83f7af-7b30-4c4a-9c93-f67bd8db954b\",\"pandascore_id\":null,\"yahoo_id\":31901,\"last_name\":\"Oliver\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Paso Robles (CA)\",\"depth_chart_order\":6,\"stats_id\":881779,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"josholiver\",\"birth_date\":\"1997-03-21\",\"espn_id\":3921690},\"6603\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035055\",\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tucker\",\"depth_chart_position\":null,\"player_id\":\"6603\",\"birth_city\":null,\"fantasy_data_id\":21501,\"years_exp\":1,\"hashtag\":\"#MarquezTucker-NFL-FA-71\",\"search_first_name\":\"marquez\",\"rotowire_id\":14151,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Marquez Tucker\",\"sportradar_id\":\"c54e7e12-8433-46de-80fa-ae98cb5407dd\",\"pandascore_id\":null,\"yahoo_id\":32264,\"last_name\":\"Tucker\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marqueztucker\",\"birth_date\":\"1996-09-19\",\"espn_id\":4251009},\"3369\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032442\",\"first_name\":\"Elandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604524828202,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":\"LB\",\"player_id\":\"3369\",\"birth_city\":null,\"fantasy_data_id\":18130,\"years_exp\":4,\"hashtag\":\"#ElandonRoberts-NFL-MIA-44\",\"search_first_name\":\"elandon\",\"rotowire_id\":11234,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1037,\"age\":26,\"full_name\":\"Elandon Roberts\",\"sportradar_id\":\"f6d7cf0f-72d2-473f-a44b-4a253587ca0f\",\"pandascore_id\":null,\"yahoo_id\":29448,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Memorial (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"elandonroberts\",\"birth_date\":\"1994-04-22\",\"espn_id\":2987743},\"2723\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"RJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"2723\",\"birth_city\":null,\"fantasy_data_id\":17191,\"years_exp\":1,\"hashtag\":\"#RJHarris-NFL-FA-14\",\"search_first_name\":\"rj\",\"rotowire_id\":10546,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"RJ Harris\",\"sportradar_id\":\"77246163-5f43-42ce-a451-044aeea11ac4\",\"pandascore_id\":null,\"yahoo_id\":28757,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"New Hampshire\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":552237,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rjharris\",\"birth_date\":\"1992-06-03\",\"espn_id\":2507284},\"5935\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035314\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597716613196,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jelks\",\"depth_chart_position\":null,\"player_id\":\"5935\",\"birth_city\":null,\"fantasy_data_id\":20827,\"years_exp\":1,\"hashtag\":\"#JalenJelks-NFL-WAS-96\",\"search_first_name\":\"jalen\",\"rotowire_id\":13807,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1556,\"age\":24,\"full_name\":\"Jalen Jelks\",\"sportradar_id\":\"38bf12bf-5a77-4b2a-9d2a-e63008fe8be1\",\"pandascore_id\":null,\"yahoo_id\":32073,\"last_name\":\"Jelks\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Desert Vista (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jalenjelks\",\"birth_date\":\"1996-08-03\",\"espn_id\":3122692},\"1816\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cyril\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"1816\",\"birth_city\":null,\"fantasy_data_id\":16001,\"years_exp\":5,\"hashtag\":\"#CyrilRichardson-NFL-FA-73\",\"search_first_name\":\"cyril\",\"rotowire_id\":9267,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cyril Richardson\",\"sportradar_id\":\"9d63314e-bd79-422a-8b98-929fe82acd48\",\"pandascore_id\":null,\"yahoo_id\":27681,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cyrilrichardson\",\"birth_date\":\"1990-12-27\",\"espn_id\":16825},\"3883\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Romar\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morris\",\"depth_chart_position\":null,\"player_id\":\"3883\",\"birth_city\":null,\"fantasy_data_id\":18705,\"years_exp\":3,\"hashtag\":\"#RomarMorris-NFL-FA-30\",\"search_first_name\":\"romar\",\"rotowire_id\":11205,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Romar Morris\",\"sportradar_id\":\"03ce79bb-bcad-457e-b7a8-3c1f0b2de252\",\"pandascore_id\":null,\"yahoo_id\":30016,\"last_name\":\"Morris\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605757,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"romarmorris\",\"birth_date\":\"1992-10-21\",\"espn_id\":2577106},\"2158\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":null,\"player_id\":\"2158\",\"birth_city\":null,\"fantasy_data_id\":16504,\"years_exp\":1,\"hashtag\":\"#DonteFoster-NFL-FA-85\",\"search_first_name\":\"donte\",\"rotowire_id\":9734,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Donte Foster\",\"sportradar_id\":\"c2d11625-628a-4616-acd6-02ea8c5e13da\",\"pandascore_id\":null,\"yahoo_id\":27897,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":560723,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dontefoster\",\"birth_date\":\"1990-11-10\",\"espn_id\":17062},\"3229\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032390\",\"first_name\":\"Cyrus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1576251902066,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"3229\",\"birth_city\":null,\"fantasy_data_id\":17990,\"years_exp\":4,\"hashtag\":\"#CyrusJones-NFL-FA-0\",\"search_first_name\":\"cyrus\",\"rotowire_id\":11075,\"rotoworld_id\":11413,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cyrus Jones\",\"sportradar_id\":\"342fe758-e8d0-4baf-af71-1fa568197837\",\"pandascore_id\":null,\"yahoo_id\":29294,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cyrusjones\",\"birth_date\":\"1993-11-29\",\"espn_id\":2979849},\"1356\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030555\",\"first_name\":\"Dion\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600880708411,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jordan\",\"depth_chart_position\":\"LDE\",\"player_id\":\"1356\",\"birth_city\":null,\"fantasy_data_id\":14875,\"years_exp\":7,\"hashtag\":\"#DionJordan-NFL-SF-96\",\"search_first_name\":\"dion\",\"rotowire_id\":8658,\"rotoworld_id\":8384,\"active\":true,\"search_rank\":709,\"age\":30,\"full_name\":\"Dion Jordan\",\"sportradar_id\":\"94ee954f-baf6-489c-b50f-3b60b2506f33\",\"pandascore_id\":null,\"yahoo_id\":26626,\"last_name\":\"Jordan\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":2,\"stats_id\":459199,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"dionjordan\",\"birth_date\":\"1990-03-05\",\"espn_id\":15800},\"7172\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mikey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599266154671,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daniel\",\"depth_chart_position\":null,\"player_id\":\"7172\",\"birth_city\":null,\"fantasy_data_id\":22174,\"years_exp\":0,\"hashtag\":\"#MikeyDaniel-NFL-FA-0\",\"search_first_name\":\"mikey\",\"rotowire_id\":14995,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Mikey Daniel\",\"sportradar_id\":\"c0a0eb54-1070-43d2-bd33-1ae8315b2c0f\",\"pandascore_id\":null,\"yahoo_id\":33048,\"last_name\":\"Daniel\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mikeydaniel\",\"birth_date\":\"1996-11-03\",\"espn_id\":4031003},\"3215\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033050\",\"first_name\":\"Xavien\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603118716632,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":\"RCB\",\"player_id\":\"3215\",\"birth_city\":null,\"fantasy_data_id\":17976,\"years_exp\":4,\"hashtag\":\"#XavienHoward-NFL-MIA-25\",\"search_first_name\":\"xavien\",\"rotowire_id\":11061,\"rotoworld_id\":11338,\"active\":true,\"search_rank\":970,\"age\":27,\"full_name\":\"Xavien Howard\",\"sportradar_id\":\"e6bcb4f1-c2c8-4dd9-b826-af01182875f2\",\"pandascore_id\":null,\"yahoo_id\":29272,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Wheatley (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"xavienhoward\",\"birth_date\":\"1993-07-04\",\"espn_id\":2978935},\"1162\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jayron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hosley\",\"depth_chart_position\":null,\"player_id\":\"1162\",\"birth_city\":null,\"fantasy_data_id\":14233,\"years_exp\":8,\"hashtag\":\"#JayronHosley-NFL-FA-28\",\"search_first_name\":\"jayron\",\"rotowire_id\":8173,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jayron Hosley\",\"sportradar_id\":\"9875ed64-766b-481e-bba2-3f085d4bac24\",\"pandascore_id\":null,\"yahoo_id\":25804,\"last_name\":\"Hosley\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Atlantic (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jayronhosley\",\"birth_date\":\"1990-09-18\",\"espn_id\":14983},\"587\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027215\",\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1584623131225,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"paulsen\",\"depth_chart_position\":null,\"player_id\":\"587\",\"birth_city\":null,\"fantasy_data_id\":11345,\"years_exp\":10,\"hashtag\":\"#LoganPaulsen-NFL-FA-82\",\"search_first_name\":\"logan\",\"rotowire_id\":6871,\"rotoworld_id\":6368,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Logan Paulsen\",\"sportradar_id\":\"518c96c5-65bb-4559-8074-9cdb2ca32f99\",\"pandascore_id\":null,\"yahoo_id\":24608,\"last_name\":\"Paulsen\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":300115,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'5\\\"\",\"search_full_name\":\"loganpaulsen\",\"birth_date\":\"1987-02-26\",\"espn_id\":13726},\"5670\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034655\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"LB\"],\"news_updated\":1564784114779,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"deluca\",\"depth_chart_position\":\"TE\",\"player_id\":\"5670\",\"birth_city\":null,\"fantasy_data_id\":20383,\"years_exp\":2,\"hashtag\":\"#NickDeluca-NFL-FA-58\",\"search_first_name\":\"nick\",\"rotowire_id\":12793,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Nick Deluca\",\"sportradar_id\":\"d9625727-d02c-45c9-ac7c-eeb0a910a970\",\"pandascore_id\":null,\"yahoo_id\":31614,\"last_name\":\"Deluca\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":748317,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickdeluca\",\"birth_date\":\"1995-01-27\",\"espn_id\":3060410},\"4621\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bluiett\",\"depth_chart_position\":null,\"player_id\":\"4621\",\"birth_city\":null,\"fantasy_data_id\":19513,\"years_exp\":2,\"hashtag\":\"#CalebBluiett-NFL-FA-85\",\"search_first_name\":\"caleb\",\"rotowire_id\":12046,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Caleb Bluiett\",\"sportradar_id\":\"e64f9640-966b-48e7-93b5-c02c8425830d\",\"pandascore_id\":null,\"yahoo_id\":30395,\"last_name\":\"Bluiett\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691333,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'3\\\"\",\"search_full_name\":\"calebbluiett\",\"birth_date\":\"1993-10-06\",\"espn_id\":2971695},\"2281\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"staten\",\"depth_chart_position\":null,\"player_id\":\"2281\",\"birth_city\":null,\"fantasy_data_id\":16697,\"years_exp\":6,\"hashtag\":\"#JimmyStaten-NFL-FA-0\",\"search_first_name\":\"jimmy\",\"rotowire_id\":9767,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jimmy Staten\",\"sportradar_id\":\"537da76a-5a6a-4b9b-9861-bb1eaecca670\",\"pandascore_id\":null,\"yahoo_id\":27700,\"last_name\":\"Staten\",\"metadata\":null,\"college\":\"Middle Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jimmystaten\",\"birth_date\":\"1991-05-04\",\"espn_id\":16822},\"3637\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032480\",\"first_name\":\"Eddie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600115463707,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"yarbrough\",\"depth_chart_position\":null,\"player_id\":\"3637\",\"birth_city\":null,\"fantasy_data_id\":18426,\"years_exp\":4,\"hashtag\":\"#EddieYarbrough-NFL-MIN-52\",\"search_first_name\":\"eddie\",\"rotowire_id\":11432,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1077,\"age\":27,\"full_name\":\"Eddie Yarbrough\",\"sportradar_id\":\"fdc01035-18e4-4928-808f-26ee414948d4\",\"pandascore_id\":null,\"yahoo_id\":29636,\"last_name\":\"Yarbrough\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Grandview (CO)\",\"depth_chart_order\":null,\"stats_id\":592445,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eddieyarbrough\",\"birth_date\":\"1993-04-24\",\"espn_id\":2576040},\"6522\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1569027932836,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"linta\",\"depth_chart_position\":null,\"player_id\":\"6522\",\"birth_city\":null,\"fantasy_data_id\":21372,\"years_exp\":1,\"hashtag\":\"#TJLinta-NFL-KC-9\",\"search_first_name\":\"tj\",\"rotowire_id\":14183,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"T.J. Linta\",\"sportradar_id\":\"4e2bc518-b039-4341-be4e-8385fa1265c8\",\"pandascore_id\":null,\"yahoo_id\":32363,\"last_name\":\"Linta\",\"metadata\":null,\"college\":\"Wagner\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":831943,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tjlinta\",\"birth_date\":null,\"espn_id\":3118131},\"5759\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034802\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598195144116,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holley\",\"depth_chart_position\":null,\"player_id\":\"5759\",\"birth_city\":null,\"fantasy_data_id\":20665,\"years_exp\":2,\"hashtag\":\"#NateHolley-NFL-MIA-36\",\"search_first_name\":\"nate\",\"rotowire_id\":15178,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1507,\"age\":25,\"full_name\":\"Nate Holley\",\"sportradar_id\":\"f8f7c003-1c6d-4715-bef7-5238bdb600dd\",\"pandascore_id\":null,\"yahoo_id\":31754,\"last_name\":\"Holley\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Whitmer (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"nateholley\",\"birth_date\":\"1994-12-05\",\"espn_id\":3052527},\"495\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026618\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1578420941934,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bennett\",\"depth_chart_position\":null,\"player_id\":\"495\",\"birth_city\":null,\"fantasy_data_id\":9994,\"years_exp\":11,\"hashtag\":\"#MichaelBennett-NFL-FA-79\",\"search_first_name\":\"michael\",\"rotowire_id\":6381,\"rotoworld_id\":5530,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Michael Bennett\",\"sportradar_id\":\"485369eb-3586-4aa2-9628-77d954f23da3\",\"pandascore_id\":null,\"yahoo_id\":9568,\"last_name\":\"Bennett\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Alief Taylor (TX)\",\"depth_chart_order\":null,\"stats_id\":284055,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"274\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaelbennett\",\"birth_date\":\"1985-11-13\",\"espn_id\":12762},\"7298\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darryl\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"7298\",\"birth_city\":null,\"fantasy_data_id\":22034,\"years_exp\":0,\"hashtag\":\"#DarrylWilliams-NFL-KC-61\",\"search_first_name\":\"darryl\",\"rotowire_id\":14695,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Darryl Williams\",\"sportradar_id\":\"24c28a64-43b0-4855-a9e7-c46c7b30c15d\",\"pandascore_id\":null,\"yahoo_id\":32951,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Bessemer City (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"darrylwilliams\",\"birth_date\":\"1997-06-10\",\"espn_id\":3917290},\"505\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carrington\",\"depth_chart_position\":null,\"player_id\":\"505\",\"birth_city\":null,\"fantasy_data_id\":10935,\"years_exp\":10,\"hashtag\":\"#AlexCarrington-NFL-FA-98\",\"search_first_name\":\"alex\",\"rotowire_id\":6580,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Alex Carrington\",\"sportradar_id\":\"f34a5499-7aed-47e9-bcde-793f008ed0d4\",\"pandascore_id\":null,\"yahoo_id\":24047,\"last_name\":\"Carrington\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Tupelo (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'5\\\"\",\"search_full_name\":\"alexcarrington\",\"birth_date\":\"1987-06-19\",\"espn_id\":13266},\"4618\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"4618\",\"birth_city\":null,\"fantasy_data_id\":19510,\"years_exp\":3,\"hashtag\":\"#MalikSmith-NFL-FA-0\",\"search_first_name\":\"malik\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Malik Smith\",\"sportradar_id\":\"211e0cb2-dafd-4adf-8aae-6ad44c605f42\",\"pandascore_id\":null,\"yahoo_id\":30796,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"maliksmith\",\"birth_date\":\"1995-08-28\",\"espn_id\":3047516},\"3401\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032366\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1584469514947,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"matakevich\",\"depth_chart_position\":\"MLB\",\"player_id\":\"3401\",\"birth_city\":null,\"fantasy_data_id\":18162,\"years_exp\":4,\"hashtag\":\"#TylerMatakevich-NFL-BUF-44\",\"search_first_name\":\"tyler\",\"rotowire_id\":11129,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1045,\"age\":27,\"full_name\":\"Tyler Matakevich\",\"sportradar_id\":\"b217c699-2eb4-4c60-9d7f-2df8e4232009\",\"pandascore_id\":null,\"yahoo_id\":29480,\"last_name\":\"Matakevich\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"St. Joseph (CT)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tylermatakevich\",\"birth_date\":\"1992-12-22\",\"espn_id\":2976249},\"3332\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032956\",\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606338902936,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"janovich\",\"depth_chart_position\":\"RB\",\"player_id\":\"3332\",\"birth_city\":null,\"fantasy_data_id\":18093,\"years_exp\":4,\"hashtag\":\"#AndyJanovich-NFL-CLE-31\",\"search_first_name\":\"andy\",\"rotowire_id\":11068,\"rotoworld_id\":11466,\"active\":true,\"search_rank\":278,\"age\":27,\"full_name\":\"Andy Janovich\",\"sportradar_id\":\"2c35ed5f-7317-4776-8ee7-0438e0286508\",\"pandascore_id\":null,\"yahoo_id\":29410,\"last_name\":\"Janovich\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Gretna (NE)\",\"depth_chart_order\":6,\"stats_id\":651653,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andyjanovich\",\"birth_date\":\"1993-05-23\",\"espn_id\":2974317},\"1480\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030505\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601334611885,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fluker\",\"depth_chart_position\":\"RT\",\"player_id\":\"1480\",\"birth_city\":null,\"fantasy_data_id\":15077,\"years_exp\":7,\"hashtag\":\"#DJFluker-NFL-BAL-70\",\"search_first_name\":\"dj\",\"rotowire_id\":8729,\"rotoworld_id\":8332,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"D.J. Fluker\",\"sportradar_id\":\"a3855ea8-e71c-4028-86fb-5a1abbd94488\",\"pandascore_id\":null,\"yahoo_id\":26634,\"last_name\":\"Fluker\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Foley (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"342\",\"height\":\"6'5\\\"\",\"search_full_name\":\"djfluker\",\"birth_date\":\"1991-03-13\",\"espn_id\":15792},\"7221\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"horton\",\"depth_chart_position\":null,\"player_id\":\"7221\",\"birth_city\":null,\"fantasy_data_id\":22223,\"years_exp\":0,\"hashtag\":\"#MikeHorton-NFL-CAR-66\",\"search_first_name\":\"mike\",\"rotowire_id\":14970,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Mike Horton\",\"sportradar_id\":\"d4acfff4-7bee-49f7-abc2-3847a8b85dce\",\"pandascore_id\":null,\"yahoo_id\":33142,\"last_name\":\"Horton\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Lakeside (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikehorton\",\"birth_date\":\"1996-10-07\",\"espn_id\":3916943},\"5096\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034407\",\"first_name\":\"Ray-Ray\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606161014290,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccloud\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5096\",\"birth_city\":null,\"fantasy_data_id\":19961,\"years_exp\":2,\"hashtag\":\"#RayRayMcCloud-NFL-PIT-14\",\"search_first_name\":\"rayray\",\"rotowire_id\":12570,\"rotoworld_id\":null,\"active\":true,\"search_rank\":426,\"age\":24,\"full_name\":\"Ray-Ray McCloud\",\"sportradar_id\":\"f7ff7599-a175-4a0c-b887-3ae9e596fc64\",\"pandascore_id\":null,\"yahoo_id\":31157,\"last_name\":\"McCloud\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Clemson\",\"high_school\":\"Sickles (FL)\",\"depth_chart_order\":2,\"stats_id\":867759,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"rayraymccloud\",\"birth_date\":\"1996-10-15\",\"espn_id\":3728262},\"2429\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032109\",\"first_name\":\"Kwon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604982930817,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":\"WLB\",\"player_id\":\"2429\",\"birth_city\":null,\"fantasy_data_id\":16885,\"years_exp\":5,\"hashtag\":\"#KwonAlexander-NFL-NO-58\",\"search_first_name\":\"kwon\",\"rotowire_id\":10360,\"rotoworld_id\":10510,\"active\":true,\"search_rank\":892,\"age\":26,\"full_name\":\"Kwon Alexander\",\"sportradar_id\":\"fd3bd475-4327-4ba7-8540-ab6cc8ecf12f\",\"pandascore_id\":null,\"yahoo_id\":28512,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Oxford (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kwonalexander\",\"birth_date\":\"1994-08-03\",\"espn_id\":2976541},\"3847\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Uani'\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"unga\",\"depth_chart_position\":\"MLB\",\"player_id\":\"3847\",\"birth_city\":null,\"fantasy_data_id\":18667,\"years_exp\":2,\"hashtag\":\"#UaniUnga-NFL-FA-47\",\"search_first_name\":\"uani\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Uani' Unga\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Unga\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'1\\\"\",\"search_full_name\":\"uaniunga\",\"birth_date\":\"1987-12-28\",\"espn_id\":null},\"4310\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrish\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":null,\"player_id\":\"4310\",\"birth_city\":null,\"fantasy_data_id\":19159,\"years_exp\":2,\"hashtag\":\"#TerrishWebb-NFL-FA-39\",\"search_first_name\":\"terrish\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Terrish Webb\",\"sportradar_id\":\"ff9dcda5-fef7-47ee-8b4c-add567c689ce\",\"pandascore_id\":null,\"yahoo_id\":30392,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"terrishwebb\",\"birth_date\":\"1995-09-07\",\"espn_id\":3045143},\"5231\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034549\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567196755092,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunt\",\"depth_chart_position\":null,\"player_id\":\"5231\",\"birth_city\":null,\"fantasy_data_id\":20152,\"years_exp\":2,\"hashtag\":\"#ColeHunt-NFL-FA-81\",\"search_first_name\":\"cole\",\"rotowire_id\":13052,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cole Hunt\",\"sportradar_id\":\"8e73bb69-7907-4220-a09d-d97efc006606\",\"pandascore_id\":null,\"yahoo_id\":31680,\"last_name\":\"Hunt\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746513,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'6\\\"\",\"search_full_name\":\"colehunt\",\"birth_date\":\"1995-05-30\",\"espn_id\":3047912},\"1037\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029669\",\"first_name\":\"Dont'a\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1595942429073,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"hightower\",\"depth_chart_position\":null,\"player_id\":\"1037\",\"birth_city\":null,\"fantasy_data_id\":13748,\"years_exp\":8,\"hashtag\":\"#DontaHightower-NFL-NE-54\",\"search_first_name\":\"donta\",\"rotowire_id\":8201,\"rotoworld_id\":7464,\"active\":true,\"search_rank\":656,\"age\":30,\"full_name\":\"Dont'a Hightower\",\"sportradar_id\":\"e7a18744-0608-4118-888f-f51de5645ce9\",\"pandascore_id\":null,\"yahoo_id\":25735,\"last_name\":\"Hightower\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Alabama\",\"high_school\":\"Marshall County (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dontahightower\",\"birth_date\":\"1990-03-12\",\"espn_id\":14933},\"1934\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030792\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584915625982,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":\"C\",\"player_id\":\"1934\",\"birth_city\":null,\"fantasy_data_id\":16173,\"years_exp\":6,\"hashtag\":\"#JustinMcCray-NFL-ATL-65\",\"search_first_name\":\"justin\",\"rotowire_id\":10096,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Justin McCray\",\"sportradar_id\":\"ca2ced2e-dc69-403b-8675-b92b7a0b3a75\",\"pandascore_id\":null,\"yahoo_id\":27948,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Miami Southridge (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinmccray\",\"birth_date\":\"1992-05-31\",\"espn_id\":17211},\"1642\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030443\",\"first_name\":\"Levine\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600121102713,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"toilolo\",\"depth_chart_position\":\"TE\",\"player_id\":\"1642\",\"birth_city\":null,\"fantasy_data_id\":15378,\"years_exp\":7,\"hashtag\":\"#LevineToilolo-NFL-NYG-85\",\"search_first_name\":\"levine\",\"rotowire_id\":8789,\"rotoworld_id\":null,\"active\":true,\"search_rank\":428,\"age\":29,\"full_name\":\"Levine Toilolo\",\"sportradar_id\":\"67d56171-7522-430c-b7d9-8f7e2b6624d3\",\"pandascore_id\":null,\"yahoo_id\":26756,\"last_name\":\"Toilolo\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Helix (CA)\",\"depth_chart_order\":2,\"stats_id\":503205,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"268\",\"height\":\"6'8\\\"\",\"search_full_name\":\"levinetoilolo\",\"birth_date\":\"1991-07-30\",\"espn_id\":15980},\"267\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1520896802173,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"strief\",\"depth_chart_position\":null,\"player_id\":\"267\",\"birth_city\":null,\"fantasy_data_id\":6688,\"years_exp\":14,\"hashtag\":\"#ZachStrief-NFL-FA-64\",\"search_first_name\":\"zach\",\"rotowire_id\":5010,\"rotoworld_id\":4001,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Zach Strief\",\"sportradar_id\":\"31e05e3b-3d84-4075-918b-41f676a74868\",\"pandascore_id\":null,\"yahoo_id\":7959,\"last_name\":\"Strief\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Milford (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'7\\\"\",\"search_full_name\":\"zachstrief\",\"birth_date\":\"1983-09-22\",\"espn_id\":9796},\"5365\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034334\",\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606065317941,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"apke\",\"depth_chart_position\":\"FS\",\"player_id\":\"5365\",\"birth_city\":null,\"fantasy_data_id\":19955,\"years_exp\":2,\"hashtag\":\"#TroyApke-NFL-WAS-30\",\"search_first_name\":\"troy\",\"rotowire_id\":12914,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1366,\"age\":25,\"full_name\":\"Troy Apke\",\"sportradar_id\":\"d187953e-102f-4f78-b840-79fb385fa15a\",\"pandascore_id\":null,\"yahoo_id\":31079,\"last_name\":\"Apke\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Mount Lebanon (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"troyapke\",\"birth_date\":\"1995-04-11\",\"espn_id\":3116152},\"7302\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Omari\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cobb\",\"depth_chart_position\":null,\"player_id\":\"7302\",\"birth_city\":null,\"fantasy_data_id\":22296,\"years_exp\":0,\"hashtag\":\"#OmariCobb-NFL-KC-59\",\"search_first_name\":\"omari\",\"rotowire_id\":15075,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Omari Cobb\",\"sportradar_id\":\"877c9dd4-a60d-4b8a-865c-ab46fb2efefc\",\"pandascore_id\":null,\"yahoo_id\":32953,\"last_name\":\"Cobb\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Treasure Coast (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'4\\\"\",\"search_full_name\":\"omaricobb\",\"birth_date\":\"1997-05-31\",\"espn_id\":4043618},\"2507\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031612\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1556984439751,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ripkowski\",\"depth_chart_position\":null,\"player_id\":\"2507\",\"birth_city\":null,\"fantasy_data_id\":16966,\"years_exp\":5,\"hashtag\":\"#AaronRipkowski-NFL-FA-22\",\"search_first_name\":\"aaron\",\"rotowire_id\":10205,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Aaron Ripkowski\",\"sportradar_id\":\"b936b29c-59ab-42ba-996a-00131b4b8580\",\"pandascore_id\":null,\"yahoo_id\":28594,\"last_name\":\"Ripkowski\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Dayton (TX)\",\"depth_chart_order\":null,\"stats_id\":605277,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"aaronripkowski\",\"birth_date\":\"1992-12-20\",\"espn_id\":2577467},\"6158\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034994\",\"first_name\":\"Olisaemeka\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597374636166,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"udoh\",\"depth_chart_position\":\"RT\",\"player_id\":\"6158\",\"birth_city\":null,\"fantasy_data_id\":20969,\"years_exp\":1,\"hashtag\":\"#OlisaemekaUdoh-NFL-MIN-74\",\"search_first_name\":\"olisaemeka\",\"rotowire_id\":13645,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Olisaemeka Udoh\",\"sportradar_id\":\"8afd3fea-20d7-4a2d-9ce4-e610f7961e3e\",\"pandascore_id\":null,\"yahoo_id\":32025,\"last_name\":\"Udoh\",\"metadata\":null,\"college\":\"Elon\",\"high_school\":\"Sanford (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'5\\\"\",\"search_full_name\":\"olisaemekaudoh\",\"birth_date\":\"1997-02-14\",\"espn_id\":3120502},\"4381\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033357\",\"first_name\":\"Taysom\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606343102151,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"QB\",\"player_id\":\"4381\",\"birth_city\":null,\"fantasy_data_id\":19238,\"years_exp\":3,\"hashtag\":\"#TaysomHill-NFL-NO-7\",\"search_first_name\":\"taysom\",\"rotowire_id\":12063,\"rotoworld_id\":12729,\"active\":true,\"search_rank\":305,\"age\":30,\"full_name\":\"Taysom Hill\",\"sportradar_id\":\"3c8a55dd-20a8-4375-b711-49eb5e6e1d0e\",\"pandascore_id\":null,\"yahoo_id\":30614,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Highland (ID)\",\"depth_chart_order\":1,\"stats_id\":503184,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"taysomhill\",\"birth_date\":\"1990-08-23\",\"espn_id\":2468609},\"3767\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032646\",\"first_name\":\"Cedrick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"OL\"],\"news_updated\":1567284906477,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lang\",\"depth_chart_position\":\"LG\",\"player_id\":\"3767\",\"birth_city\":null,\"fantasy_data_id\":18579,\"years_exp\":4,\"hashtag\":\"#CedrickLang-NFL-FA-0\",\"search_first_name\":\"cedrick\",\"rotowire_id\":11741,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cedrick Lang\",\"sportradar_id\":\"f5664cdc-9ce6-4533-b55c-89d3bafa7012\",\"pandascore_id\":null,\"yahoo_id\":29850,\"last_name\":\"Lang\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":870793,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'7\\\"\",\"search_full_name\":\"cedricklang\",\"birth_date\":\"1992-05-12\",\"espn_id\":3915883},\"4619\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033779\",\"first_name\":\"Dee\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599621613209,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"virgin\",\"depth_chart_position\":null,\"player_id\":\"4619\",\"birth_city\":null,\"fantasy_data_id\":19511,\"years_exp\":3,\"hashtag\":\"#DeeVirgin-NFL-DET-36\",\"search_first_name\":\"dee\",\"rotowire_id\":12409,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Dee Virgin\",\"sportradar_id\":\"b4464e0d-acbf-4a69-9450-ca7d59e8dff9\",\"pandascore_id\":null,\"yahoo_id\":30794,\"last_name\":\"Virgin\",\"metadata\":null,\"college\":\"West Alabama\",\"high_school\":\"Seminole County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"deevirgin\",\"birth_date\":\"1993-10-29\",\"espn_id\":2973647},\"6647\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035327\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603036206487,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"6647\",\"birth_city\":null,\"fantasy_data_id\":21538,\"years_exp\":1,\"hashtag\":\"#CJMoore-NFL-DET-49\",\"search_first_name\":\"cj\",\"rotowire_id\":14209,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1754,\"age\":24,\"full_name\":\"C.J. Moore\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":32454,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cjmoore\",\"birth_date\":\"1995-12-15\",\"espn_id\":3128745},\"3085\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grigson\",\"depth_chart_position\":null,\"player_id\":\"3085\",\"birth_city\":null,\"fantasy_data_id\":17835,\"years_exp\":0,\"hashtag\":\"#RyanGrigson-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":9501,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ryan Grigson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Grigson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ryangrigson\",\"birth_date\":null,\"espn_id\":null},\"4496\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033486\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534631412278,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sterns\",\"depth_chart_position\":null,\"player_id\":\"4496\",\"birth_city\":null,\"fantasy_data_id\":19366,\"years_exp\":3,\"hashtag\":\"#JordanSterns-NFL-FA-46\",\"search_first_name\":\"jordan\",\"rotowire_id\":12334,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Sterns\",\"sportradar_id\":\"f18e87b1-2548-4bdd-8b30-25fc04c9788a\",\"pandascore_id\":null,\"yahoo_id\":30687,\"last_name\":\"Sterns\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordansterns\",\"birth_date\":\"1994-05-28\",\"espn_id\":3046342},\"6086\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035134\",\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roemer\",\"depth_chart_position\":null,\"player_id\":\"6086\",\"birth_city\":null,\"fantasy_data_id\":20927,\"years_exp\":1,\"hashtag\":\"#TylerRoemer-NFL-FA-76\",\"search_first_name\":\"tyler\",\"rotowire_id\":13882,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Tyler Roemer\",\"sportradar_id\":\"8e57530b-1a1c-48d0-a6df-9fb2fa75f581\",\"pandascore_id\":null,\"yahoo_id\":32349,\"last_name\":\"Roemer\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'6\\\"\",\"search_full_name\":\"tylerroemer\",\"birth_date\":\"1998-03-06\",\"espn_id\":4036833},\"671\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brady\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quinn\",\"depth_chart_position\":null,\"player_id\":\"671\",\"birth_city\":null,\"fantasy_data_id\":11838,\"years_exp\":7,\"hashtag\":\"#BradyQuinn-NFL-FA-7\",\"search_first_name\":\"brady\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Brady Quinn\",\"sportradar_id\":\"37554760-5609-4cc2-8de2-379f2ba528b3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Quinn\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bradyquinn\",\"birth_date\":\"1984-10-27\",\"espn_id\":null},\"4938\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Speedy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"noil\",\"depth_chart_position\":null,\"player_id\":\"4938\",\"birth_city\":null,\"fantasy_data_id\":19606,\"years_exp\":1,\"hashtag\":\"#SpeedyNoil-NFL-SEA-0\",\"search_first_name\":\"speedy\",\"rotowire_id\":11701,\"rotoworld_id\":12931,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Speedy Noil\",\"sportradar_id\":\"257c2ef8-cd08-4bab-b0bf-68e1957420de\",\"pandascore_id\":null,\"yahoo_id\":30854,\"last_name\":\"Noil\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":822349,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"speedynoil\",\"birth_date\":\"1995-10-14\",\"espn_id\":null},\"4810\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kwayde\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"4810\",\"birth_city\":null,\"fantasy_data_id\":19247,\"years_exp\":2,\"hashtag\":\"#KwaydeMiller-NFL-FA-63\",\"search_first_name\":\"kwayde\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kwayde Miller\",\"sportradar_id\":\"e2610400-52c1-4894-85a2-26437b5d9367\",\"pandascore_id\":null,\"yahoo_id\":30668,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'7\\\"\",\"search_full_name\":\"kwaydemiller\",\"birth_date\":\"1993-12-11\",\"espn_id\":2976120},\"6387\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035621\",\"first_name\":\"Nsimba\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602563453831,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"webster\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6387\",\"birth_city\":null,\"fantasy_data_id\":21295,\"years_exp\":1,\"hashtag\":\"#NsimbaWebster-NFL-LAR-14\",\"search_first_name\":\"nsimba\",\"rotowire_id\":14012,\"rotoworld_id\":null,\"active\":true,\"search_rank\":443,\"age\":24,\"full_name\":\"Nsimba Webster\",\"sportradar_id\":\"bbc981ff-556b-4346-abea-f6efc0f94001\",\"pandascore_id\":null,\"yahoo_id\":32137,\"last_name\":\"Webster\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":\"Deer Valley (CA)\",\"depth_chart_order\":2,\"stats_id\":828656,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"nsimbawebster\",\"birth_date\":\"1996-01-27\",\"espn_id\":3119317},\"766\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1513047602170,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"drescher\",\"depth_chart_position\":null,\"player_id\":\"766\",\"birth_city\":null,\"fantasy_data_id\":12522,\"years_exp\":10,\"hashtag\":\"#JustinDrescher-NFL-FA-49\",\"search_first_name\":\"justin\",\"rotowire_id\":8555,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Justin Drescher\",\"sportradar_id\":\"3a65f3fc-8765-456d-b530-5732653b9f71\",\"pandascore_id\":null,\"yahoo_id\":24264,\"last_name\":\"Drescher\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Carroll (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justindrescher\",\"birth_date\":\"1988-01-01\",\"espn_id\":13559},\"5918\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035299\",\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1597695337116,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"RB\",\"player_id\":\"5918\",\"birth_city\":null,\"fantasy_data_id\":20741,\"years_exp\":1,\"hashtag\":\"#RodneyAnderson-NFL-FA-0\",\"search_first_name\":\"rodney\",\"rotowire_id\":13637,\"rotoworld_id\":14180,\"active\":true,\"search_rank\":1523,\"age\":24,\"full_name\":\"Rodney Anderson\",\"sportradar_id\":\"f3c3c5ba-2788-4708-bbc5-4ea525d06a81\",\"pandascore_id\":null,\"yahoo_id\":32043,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":21,\"stats_id\":865896,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rodneyanderson\",\"birth_date\":\"1996-09-12\",\"espn_id\":3705353},\"3154\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030396\",\"first_name\":\"Freddie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1532460601748,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bishop\",\"depth_chart_position\":null,\"player_id\":\"3154\",\"birth_city\":null,\"fantasy_data_id\":17910,\"years_exp\":7,\"hashtag\":\"#FreddieBishop-NFL-FA-49\",\"search_first_name\":\"freddie\",\"rotowire_id\":10862,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Freddie Bishop\",\"sportradar_id\":\"366703df-ee7c-4f00-b6a4-ae475956f039\",\"pandascore_id\":null,\"yahoo_id\":900007,\"last_name\":\"Bishop\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'3\\\"\",\"search_full_name\":\"freddiebishop\",\"birth_date\":\"1990-02-25\",\"espn_id\":16573},\"6014\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035147\",\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605915903847,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fenton\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6014\",\"birth_city\":null,\"fantasy_data_id\":20754,\"years_exp\":1,\"hashtag\":\"#RashadFenton-NFL-KC-27\",\"search_first_name\":\"rashad\",\"rotowire_id\":13703,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1528,\"age\":23,\"full_name\":\"Rashad Fenton\",\"sportradar_id\":\"a76eb878-71ee-418e-a46f-b35f6950aa95\",\"pandascore_id\":null,\"yahoo_id\":32033,\"last_name\":\"Fenton\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Miami Carol City (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rashadfenton\",\"birth_date\":\"1997-02-17\",\"espn_id\":3924364},\"2940\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1523056801513,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lawrence\",\"depth_chart_position\":null,\"player_id\":\"2940\",\"birth_city\":null,\"fantasy_data_id\":17411,\"years_exp\":2,\"hashtag\":\"#DesmondLawrence-NFL-FA-46\",\"search_first_name\":\"desmond\",\"rotowire_id\":12351,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Desmond Lawrence\",\"sportradar_id\":\"27af2ee9-be1e-4aac-a59b-f8dcfe243211\",\"pandascore_id\":null,\"yahoo_id\":30771,\"last_name\":\"Lawrence\",\"metadata\":null,\"college\":\"North Carolina A&T\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557416,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"desmondlawrence\",\"birth_date\":\"1994-11-30\",\"espn_id\":3039722},\"1581\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carter\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bykowski\",\"depth_chart_position\":null,\"player_id\":\"1581\",\"birth_city\":null,\"fantasy_data_id\":15232,\"years_exp\":3,\"hashtag\":\"#CarterBykowski-NFL-FA-61\",\"search_first_name\":\"carter\",\"rotowire_id\":10019,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Carter Bykowski\",\"sportradar_id\":\"c41d780f-c5e9-4593-8091-aa102dfa9c2e\",\"pandascore_id\":null,\"yahoo_id\":26869,\"last_name\":\"Bykowski\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'7\\\"\",\"search_full_name\":\"carterbykowski\",\"birth_date\":\"1990-07-25\",\"espn_id\":15892},\"2202\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030805\",\"first_name\":\"Je'Ron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1544148015550,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamm\",\"depth_chart_position\":null,\"player_id\":\"2202\",\"birth_city\":null,\"fantasy_data_id\":16574,\"years_exp\":6,\"hashtag\":\"#JeRonHamm-NFL-FA-41\",\"search_first_name\":\"jeron\",\"rotowire_id\":9901,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Je'Ron Hamm\",\"sportradar_id\":\"caca998b-2475-4ec4-85fa-42ff312c9c5e\",\"pandascore_id\":null,\"yahoo_id\":27926,\"last_name\":\"Hamm\",\"metadata\":null,\"college\":\"Louisiana-Monroe\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":544242,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeronhamm\",\"birth_date\":\"1992-06-15\",\"espn_id\":17165},\"413\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dallas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"413\",\"birth_city\":null,\"fantasy_data_id\":8921,\"years_exp\":11,\"hashtag\":\"#DallasReynolds-NFL-FA-61\",\"search_first_name\":\"dallas\",\"rotowire_id\":6964,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Dallas Reynolds\",\"sportradar_id\":\"ee896de9-1d51-46d7-b059-0bf81659b5ad\",\"pandascore_id\":null,\"yahoo_id\":9715,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Timpview (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dallasreynolds\",\"birth_date\":\"1984-04-23\",\"espn_id\":12839},\"4753\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033995\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1519341301275,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dunn\",\"depth_chart_position\":null,\"player_id\":\"4753\",\"birth_city\":null,\"fantasy_data_id\":19672,\"years_exp\":3,\"hashtag\":\"#MichaelDunn-NFL-CLE-68\",\"search_first_name\":\"michael\",\"rotowire_id\":12290,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Michael Dunn\",\"sportradar_id\":\"c5ae93f5-f293-4e9f-89a0-6d8bda64ee1e\",\"pandascore_id\":null,\"yahoo_id\":30902,\"last_name\":\"Dunn\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Whitman (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaeldunn\",\"birth_date\":\"1994-08-28\",\"espn_id\":2976213},\"6389\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035605\",\"first_name\":\"Keenan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1571531727711,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"TE\",\"player_id\":\"6389\",\"birth_city\":null,\"fantasy_data_id\":21297,\"years_exp\":1,\"hashtag\":\"#KeenanBrown-NFL-FA-84\",\"search_first_name\":\"keenan\",\"rotowire_id\":13437,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Keenan Brown\",\"sportradar_id\":\"d7e8585f-8213-4810-81d5-8005ecf55e5e\",\"pandascore_id\":null,\"yahoo_id\":32128,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":1165728,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"keenanbrown\",\"birth_date\":\"1995-12-22\",\"espn_id\":3122421},\"7134\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1589565337740,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"glasgow\",\"depth_chart_position\":\"WLB\",\"player_id\":\"7134\",\"birth_city\":null,\"fantasy_data_id\":22140,\"years_exp\":0,\"hashtag\":\"#JordanGlasgow-NFL-IND-59\",\"search_first_name\":\"jordan\",\"rotowire_id\":14799,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1933,\"age\":24,\"full_name\":\"Jordan Glasgow\",\"sportradar_id\":\"08765a08-c1cf-4065-81b3-67cbad7e0e17\",\"pandascore_id\":null,\"yahoo_id\":32883,\"last_name\":\"Glasgow\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Marmion Academy (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanglasgow\",\"birth_date\":\"1996-06-28\",\"espn_id\":3929928},\"7404\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Noah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606347003290,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"togiai\",\"depth_chart_position\":\"TE\",\"player_id\":\"7404\",\"birth_city\":null,\"fantasy_data_id\":21796,\"years_exp\":0,\"hashtag\":\"#NoahTogiai-NFL-IND-86\",\"search_first_name\":\"noah\",\"rotowire_id\":14843,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Noah Togiai\",\"sportradar_id\":\"86707c8e-fec4-4ebe-9111-4d3ad238ad43\",\"pandascore_id\":null,\"yahoo_id\":32970,\"last_name\":\"Togiai\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Hunter (UT)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'4\\\"\",\"search_full_name\":\"noahtogiai\",\"birth_date\":\"1997-07-06\",\"espn_id\":3930298},\"1665\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tobais\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"1665\",\"birth_city\":null,\"fantasy_data_id\":15447,\"years_exp\":1,\"hashtag\":\"#TobaisPalmer-NFL-FA-8\",\"search_first_name\":\"tobais\",\"rotowire_id\":9026,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tobais Palmer\",\"sportradar_id\":\"a9583b7a-4de8-42e9-8ad1-6c97f8475095\",\"pandascore_id\":null,\"yahoo_id\":26972,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tobaispalmer\",\"birth_date\":\"1990-02-20\",\"espn_id\":16447},\"2016\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030997\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1570071920701,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fulton\",\"depth_chart_position\":\"RG\",\"player_id\":\"2016\",\"birth_city\":null,\"fantasy_data_id\":16295,\"years_exp\":6,\"hashtag\":\"#ZachFulton-NFL-HOU-73\",\"search_first_name\":\"zach\",\"rotowire_id\":9451,\"rotoworld_id\":9618,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Fulton\",\"sportradar_id\":\"5408024f-0014-4abe-9d27-4467d802d50a\",\"pandascore_id\":null,\"yahoo_id\":27721,\"last_name\":\"Fulton\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Homewood-Flossmoor (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"zachfulton\",\"birth_date\":\"1991-09-23\",\"espn_id\":16923},\"5767\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034840\",\"first_name\":\"Adonis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567540821573,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5767\",\"birth_city\":null,\"fantasy_data_id\":20674,\"years_exp\":2,\"hashtag\":\"#AdonisAlexander-NFL-FA-0\",\"search_first_name\":\"adonis\",\"rotowire_id\":13354,\"rotoworld_id\":13879,\"active\":true,\"search_rank\":1510,\"age\":23,\"full_name\":\"Adonis Alexander\",\"sportradar_id\":\"ff214afc-4e6a-48c1-986e-d52271c6ad8e\",\"pandascore_id\":null,\"yahoo_id\":31762,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":868023,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"adonisalexander\",\"birth_date\":\"1996-11-07\",\"espn_id\":3871875},\"2093\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031068\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1579646111536,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grant\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2093\",\"birth_city\":null,\"fantasy_data_id\":16411,\"years_exp\":6,\"hashtag\":\"#RyanGrant-NFL-FA-11\",\"search_first_name\":\"ryan\",\"rotowire_id\":9462,\"rotoworld_id\":9666,\"active\":true,\"search_rank\":819,\"age\":29,\"full_name\":\"Ryan Grant\",\"sportradar_id\":\"cc9df25a-bb22-4737-83df-ff01d3fd7695\",\"pandascore_id\":null,\"yahoo_id\":27670,\"last_name\":\"Grant\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"West Brook (TX)\",\"depth_chart_order\":5,\"stats_id\":497786,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ryangrant\",\"birth_date\":\"1990-12-19\",\"espn_id\":16845},\"1499\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bacarri\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1531278901498,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rambo\",\"depth_chart_position\":null,\"player_id\":\"1499\",\"birth_city\":null,\"fantasy_data_id\":15099,\"years_exp\":7,\"hashtag\":\"#BacarriRambo-NFL-FA-30\",\"search_first_name\":\"bacarri\",\"rotowire_id\":8687,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Bacarri Rambo\",\"sportradar_id\":\"81c637e8-8f81-4455-887c-9763f1d18b15\",\"pandascore_id\":null,\"yahoo_id\":26814,\"last_name\":\"Rambo\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Seminole County (GA)\",\"depth_chart_order\":null,\"stats_id\":465715,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bacarrirambo\",\"birth_date\":\"1990-06-27\",\"espn_id\":15912},\"824\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1507679642790,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reid\",\"depth_chart_position\":null,\"player_id\":\"824\",\"birth_city\":null,\"fantasy_data_id\":12824,\"years_exp\":9,\"hashtag\":\"#JahReid-NFL-FA-75\",\"search_first_name\":\"jah\",\"rotowire_id\":7557,\"rotoworld_id\":6625,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jah Reid\",\"sportradar_id\":\"a135ab63-8b05-48b0-b0df-98b67c27e10d\",\"pandascore_id\":null,\"yahoo_id\":24872,\"last_name\":\"Reid\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Haines City (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jahreid\",\"birth_date\":\"1988-07-21\",\"espn_id\":13999},\"3558\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032762\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604708446700,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"LDT\",\"player_id\":\"3558\",\"birth_city\":null,\"fantasy_data_id\":18331,\"years_exp\":4,\"hashtag\":\"#ChrisJones-NFL-KC-95\",\"search_first_name\":\"chris\",\"rotowire_id\":11074,\"rotoworld_id\":11221,\"active\":true,\"search_rank\":1065,\"age\":26,\"full_name\":\"Chris Jones\",\"sportradar_id\":\"ef7b5ce8-a929-46be-b9f3-328752c6d125\",\"pandascore_id\":null,\"yahoo_id\":29271,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Houston (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'6\\\"\",\"search_full_name\":\"chrisjones\",\"birth_date\":\"1994-07-03\",\"espn_id\":3044859},\"1625\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1625\",\"birth_city\":null,\"fantasy_data_id\":15316,\"years_exp\":7,\"hashtag\":\"#JoshJohnson-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":8882,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Josh Johnson\",\"sportradar_id\":\"c3fa89c7-6f21-42f4-8703-32de7e41f376\",\"pandascore_id\":null,\"yahoo_id\":26927,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":505754,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'9\\\"\",\"search_full_name\":\"joshjohnson\",\"birth_date\":\"1990-09-10\",\"espn_id\":16080},\"6881\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599936618705,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hennessy\",\"depth_chart_position\":\"LG\",\"player_id\":\"6881\",\"birth_city\":null,\"fantasy_data_id\":21951,\"years_exp\":0,\"hashtag\":\"#MattHennessy-NFL-ATL-61\",\"search_first_name\":\"matt\",\"rotowire_id\":14408,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Matt Hennessy\",\"sportradar_id\":\"c498bd15-f54b-4371-ab38-549b1c6d9201\",\"pandascore_id\":null,\"yahoo_id\":32748,\"last_name\":\"Hennessy\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Don Bosco Prep (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"matthennessy\",\"birth_date\":\"1997-11-17\",\"espn_id\":4044138},\"6299\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035598\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567546521452,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"denmark\",\"depth_chart_position\":null,\"player_id\":\"6299\",\"birth_city\":null,\"fantasy_data_id\":21121,\"years_exp\":1,\"hashtag\":\"#StephenDenmark-NFL-CLE-37\",\"search_first_name\":\"stephen\",\"rotowire_id\":13966,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Stephen Denmark\",\"sportradar_id\":\"44750689-c0ca-4d26-86eb-ed40882f00f6\",\"pandascore_id\":null,\"yahoo_id\":32070,\"last_name\":\"Denmark\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":\"James S. Rickards (FL)\",\"depth_chart_order\":null,\"stats_id\":1165637,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'2\\\"\",\"search_full_name\":\"stephendenmark\",\"birth_date\":\"1996-04-20\",\"espn_id\":4408864},\"22\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"LaMarr\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodley\",\"depth_chart_position\":null,\"player_id\":\"22\",\"birth_city\":null,\"fantasy_data_id\":711,\"years_exp\":13,\"hashtag\":\"#LaMarrWoodley-NFL-FA-56\",\"search_first_name\":\"lamarr\",\"rotowire_id\":5317,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"LaMarr Woodley\",\"sportradar_id\":\"d9f95cb5-2563-4119-91c5-841b0f2d4bb8\",\"pandascore_id\":null,\"yahoo_id\":8300,\"last_name\":\"Woodley\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Saginaw (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lamarrwoodley\",\"birth_date\":\"1984-11-03\",\"espn_id\":10490},\"7208\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"7208\",\"birth_city\":null,\"fantasy_data_id\":22211,\"years_exp\":0,\"hashtag\":\"#JoshThomas-NFL-BUF-36\",\"search_first_name\":\"josh\",\"rotowire_id\":14882,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Josh Thomas\",\"sportradar_id\":\"9c84646c-75d9-41f3-9cad-f3f002ca82a5\",\"pandascore_id\":null,\"yahoo_id\":33358,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Montgomery Academy (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshthomas\",\"birth_date\":\"1996-11-19\",\"espn_id\":3917159},\"3861\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kieren\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"duncan\",\"depth_chart_position\":null,\"player_id\":\"3861\",\"birth_city\":null,\"fantasy_data_id\":18682,\"years_exp\":0,\"hashtag\":\"#KierenDuncan-NFL-FA-85\",\"search_first_name\":\"kieren\",\"rotowire_id\":11275,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kieren Duncan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29987,\"last_name\":\"Duncan\",\"metadata\":null,\"college\":\"Colorado State-Pueblo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":755964,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kierenduncan\",\"birth_date\":\"1993-10-12\",\"espn_id\":3059552},\"1717\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"1717\",\"birth_city\":null,\"fantasy_data_id\":15639,\"years_exp\":7,\"hashtag\":\"#CaseyWalker-NFL-FA-69\",\"search_first_name\":\"casey\",\"rotowire_id\":9931,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Casey Walker\",\"sportradar_id\":\"a0708495-9af6-42b6-b391-71520c71ac3c\",\"pandascore_id\":null,\"yahoo_id\":27100,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'1\\\"\",\"search_full_name\":\"caseywalker\",\"birth_date\":\"1989-12-06\",\"espn_id\":16441},\"2183\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031262\",\"first_name\":\"Bene'\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1566924307091,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"benwikere\",\"depth_chart_position\":null,\"player_id\":\"2183\",\"birth_city\":null,\"fantasy_data_id\":16551,\"years_exp\":6,\"hashtag\":\"#BeneBenwikere-NFL-FA-46\",\"search_first_name\":\"bene\",\"rotowire_id\":9618,\"rotoworld_id\":9579,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bene' Benwikere\",\"sportradar_id\":\"4c0a966e-797d-4e60-8ba9-a67b5749ec5f\",\"pandascore_id\":null,\"yahoo_id\":27676,\"last_name\":\"Benwikere\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Serra (CA)\",\"depth_chart_order\":null,\"stats_id\":558950,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"benebenwikere\",\"birth_date\":\"1991-09-03\",\"espn_id\":16872},\"7096\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kaleb\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barker\",\"depth_chart_position\":null,\"player_id\":\"7096\",\"birth_city\":null,\"fantasy_data_id\":22124,\"years_exp\":0,\"hashtag\":\"#KalebBarker-NFL-FA-0\",\"search_first_name\":\"kaleb\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kaleb Barker\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Barker\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kalebbarker\",\"birth_date\":\"1997-08-01\",\"espn_id\":null},\"3359\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032796\",\"first_name\":\"Dadi\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1569363042290,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nicolas\",\"depth_chart_position\":null,\"player_id\":\"3359\",\"birth_city\":null,\"fantasy_data_id\":18120,\"years_exp\":4,\"hashtag\":\"#DadiNicolas-NFL-FA-50\",\"search_first_name\":\"dadi\",\"rotowire_id\":11147,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Dadi Nicolas\",\"sportradar_id\":\"36c85a2b-ce62-43b4-b6ec-0497323da1a1\",\"pandascore_id\":null,\"yahoo_id\":29437,\"last_name\":\"Nicolas\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":601611,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dadinicolas\",\"birth_date\":\"1992-09-29\",\"espn_id\":3929954},\"206\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"206\",\"birth_city\":null,\"fantasy_data_id\":5267,\"years_exp\":12,\"hashtag\":\"#CodyWallace-NFL-FA-72\",\"search_first_name\":\"cody\",\"rotowire_id\":7305,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Cody Wallace\",\"sportradar_id\":\"adeb92c4-bbf2-4cfa-8c76-55b1d30d1c1b\",\"pandascore_id\":null,\"yahoo_id\":8884,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Cuero (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"codywallace\",\"birth_date\":\"1984-11-26\",\"espn_id\":11341},\"6660\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035565\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bonner\",\"depth_chart_position\":null,\"player_id\":\"6660\",\"birth_city\":null,\"fantasy_data_id\":21570,\"years_exp\":1,\"hashtag\":\"#JonathanBonner-NFL-FA-75\",\"search_first_name\":\"jonathan\",\"rotowire_id\":14301,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jonathan Bonner\",\"sportradar_id\":\"bf4a641d-bdf6-4e62-bbe1-a74a956226ea\",\"pandascore_id\":null,\"yahoo_id\":32592,\"last_name\":\"Bonner\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonathanbonner\",\"birth_date\":\"1996-06-17\",\"espn_id\":3129292},\"2995\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"huey\",\"depth_chart_position\":null,\"player_id\":\"2995\",\"birth_city\":null,\"fantasy_data_id\":17521,\"years_exp\":1,\"hashtag\":\"#MichaelHuey-NFL-FA-74\",\"search_first_name\":\"michael\",\"rotowire_id\":10790,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Michael Huey\",\"sportradar_id\":\"5210eb1c-b045-45b8-9549-8dc825c822a8\",\"pandascore_id\":null,\"yahoo_id\":25097,\"last_name\":\"Huey\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelhuey\",\"birth_date\":\"1988-09-28\",\"espn_id\":null},\"5895\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035630\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605159609314,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lindstrom\",\"depth_chart_position\":\"RG\",\"player_id\":\"5895\",\"birth_city\":null,\"fantasy_data_id\":20857,\"years_exp\":1,\"hashtag\":\"#ChrisLindstrom-NFL-ATL-63\",\"search_first_name\":\"chris\",\"rotowire_id\":13808,\"rotoworld_id\":14088,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chris Lindstrom\",\"sportradar_id\":\"e02c98ff-b5d8-4647-a4ed-bba595ae9e5a\",\"pandascore_id\":null,\"yahoo_id\":31846,\"last_name\":\"Lindstrom\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Shepherd Hill (MA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrislindstrom\",\"birth_date\":\"1997-02-28\",\"espn_id\":3672833},\"2360\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031558\",\"first_name\":\"Maxx\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606434361093,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"TE\",\"player_id\":\"2360\",\"birth_city\":null,\"fantasy_data_id\":16816,\"years_exp\":5,\"hashtag\":\"#MaxxWilliams-NFL-ARI-87\",\"search_first_name\":\"maxx\",\"rotowire_id\":10128,\"rotoworld_id\":10298,\"active\":true,\"search_rank\":440,\"age\":26,\"full_name\":\"Maxx Williams\",\"sportradar_id\":\"52f4a43a-64a9-4d69-a9e2-28bd60f68e49\",\"pandascore_id\":null,\"yahoo_id\":28443,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"Waconia (MN)\",\"depth_chart_order\":2,\"stats_id\":651658,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"maxxwilliams\",\"birth_date\":\"1994-04-12\",\"espn_id\":2970726},\"2151\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031256\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600715715473,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"barr\",\"depth_chart_position\":null,\"player_id\":\"2151\",\"birth_city\":null,\"fantasy_data_id\":16496,\"years_exp\":6,\"hashtag\":\"#AnthonyBarr-NFL-MIN-55\",\"search_first_name\":\"anthony\",\"rotowire_id\":9247,\"rotoworld_id\":9432,\"active\":true,\"search_rank\":830,\"age\":28,\"full_name\":\"Anthony Barr\",\"sportradar_id\":\"23616a22-8266-4b0c-b0b9-5f8187178168\",\"pandascore_id\":null,\"yahoo_id\":27537,\"last_name\":\"Barr\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Loyola (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"anthonybarr\",\"birth_date\":\"1992-03-18\",\"espn_id\":16711},\"7424\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693359926,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"7424\",\"birth_city\":null,\"fantasy_data_id\":22404,\"years_exp\":0,\"hashtag\":\"#AnthonyJones-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":14870,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Anthony Jones\",\"sportradar_id\":\"79a45bfb-f168-4d9e-920f-3f63ad9426c8\",\"pandascore_id\":null,\"yahoo_id\":33284,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"anthonyjones\",\"birth_date\":\"1997-02-07\",\"espn_id\":null},\"1208\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029640\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567272904930,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"quick\",\"depth_chart_position\":null,\"player_id\":\"1208\",\"birth_city\":null,\"fantasy_data_id\":14424,\"years_exp\":8,\"hashtag\":\"#BrianQuick-NFL-FA-83\",\"search_first_name\":\"brian\",\"rotowire_id\":8095,\"rotoworld_id\":7477,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Brian Quick\",\"sportradar_id\":\"f8ca735c-2779-4d0c-914e-e58e11c2356d\",\"pandascore_id\":null,\"yahoo_id\":25743,\"last_name\":\"Quick\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Ridge View (SC)\",\"depth_chart_order\":null,\"stats_id\":390159,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brianquick\",\"birth_date\":\"1989-06-05\",\"espn_id\":14914},\"1783\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1783\",\"birth_city\":null,\"fantasy_data_id\":15902,\"years_exp\":1,\"hashtag\":\"#DevinSmith-NFL-FA-30\",\"search_first_name\":\"devin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Devin Smith\",\"sportradar_id\":\"8c7256df-09f7-4a3c-909c-8ead24d32a2c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"devinsmith\",\"birth_date\":\"1990-08-08\",\"espn_id\":null},\"6173\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034941\",\"first_name\":\"Mitch\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wishnowsky\",\"depth_chart_position\":null,\"player_id\":\"6173\",\"birth_city\":null,\"fantasy_data_id\":20996,\"years_exp\":1,\"hashtag\":\"#MitchWishnowsky-NFL-SF-6\",\"search_first_name\":\"mitch\",\"rotowire_id\":13816,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mitch Wishnowsky\",\"sportradar_id\":\"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea\",\"pandascore_id\":null,\"yahoo_id\":31942,\"last_name\":\"Wishnowsky\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Lumen Christi College (AUS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mitchwishnowsky\",\"birth_date\":\"1992-03-03\",\"espn_id\":4035685},\"693\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"693\",\"birth_city\":null,\"fantasy_data_id\":12098,\"years_exp\":0,\"hashtag\":\"#JoeyPorter-NFL-FA-55\",\"search_first_name\":\"joey\",\"rotowire_id\":null,\"rotoworld_id\":653,\"active\":false,\"search_rank\":9999999,\"age\":43,\"full_name\":\"Joey Porter\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joeyporter\",\"birth_date\":\"1977-03-22\",\"espn_id\":null},\"4052\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rooney\",\"depth_chart_position\":null,\"player_id\":\"4052\",\"birth_city\":null,\"fantasy_data_id\":18898,\"years_exp\":0,\"hashtag\":\"#DanRooney-NFL-FA-0\",\"search_first_name\":\"dan\",\"rotowire_id\":null,\"rotoworld_id\":9466,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dan Rooney\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rooney\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"danrooney\",\"birth_date\":null,\"espn_id\":null},\"5353\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034225\",\"first_name\":\"Dimitri\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1557442808504,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flowers\",\"depth_chart_position\":\"RB\",\"player_id\":\"5353\",\"birth_city\":null,\"fantasy_data_id\":20405,\"years_exp\":2,\"hashtag\":\"#DimitriFlowers-NFL-FA-35\",\"search_first_name\":\"dimitri\",\"rotowire_id\":12789,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dimitri Flowers\",\"sportradar_id\":\"a0c708a2-4620-4b5a-8453-967c2a9bd426\",\"pandascore_id\":null,\"yahoo_id\":31443,\"last_name\":\"Flowers\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":820707,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dimitriflowers\",\"birth_date\":\"1996-01-20\",\"espn_id\":3116375},\"7028\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603741238114,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"7028\",\"birth_city\":null,\"fantasy_data_id\":22019,\"years_exp\":0,\"hashtag\":\"#AlexTaylor-NFL-CLE-67\",\"search_first_name\":\"alex\",\"rotowire_id\":14694,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Alex Taylor\",\"sportradar_id\":\"491a4774-9f2d-4b70-9933-2c7c89abbeba\",\"pandascore_id\":null,\"yahoo_id\":33312,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"Berkeley (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'9\\\"\",\"search_full_name\":\"alextaylor\",\"birth_date\":\"1997-04-29\",\"espn_id\":4384564},\"4446\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"humes\",\"depth_chart_position\":null,\"player_id\":\"4446\",\"birth_city\":null,\"fantasy_data_id\":19307,\"years_exp\":2,\"hashtag\":\"#ChrisHumes-NFL-FA-36\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Humes\",\"sportradar_id\":\"fb717581-7745-400f-b7a0-048ec97eadc1\",\"pandascore_id\":null,\"yahoo_id\":30630,\"last_name\":\"Humes\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrishumes\",\"birth_date\":\"1994-07-31\",\"espn_id\":2985457},\"1409\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"1409\",\"birth_city\":null,\"fantasy_data_id\":14968,\"years_exp\":2,\"hashtag\":\"#JustinBrown-NFL-FA-15\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Justin Brown\",\"sportradar_id\":\"3a5db4d8-1ae9-4b89-8559-ab2d9734c080\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":514112,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinbrown\",\"birth_date\":\"1991-03-10\",\"espn_id\":16011},\"5373\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034283\",\"first_name\":\"Jullian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604448346420,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"5373\",\"birth_city\":null,\"fantasy_data_id\":20045,\"years_exp\":2,\"hashtag\":\"#JullianTaylor-NFL-SF-77\",\"search_first_name\":\"jullian\",\"rotowire_id\":13002,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1403,\"age\":25,\"full_name\":\"Jullian Taylor\",\"sportradar_id\":\"2a97c476-70e9-479a-be0b-11ebaeee11d3\",\"pandascore_id\":null,\"yahoo_id\":31193,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Williamstown (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"julliantaylor\",\"birth_date\":\"1995-01-30\",\"espn_id\":3051320},\"6976\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shackelford\",\"depth_chart_position\":null,\"player_id\":\"6976\",\"birth_city\":null,\"fantasy_data_id\":22096,\"years_exp\":0,\"hashtag\":\"#ZachShackelford-NFL-TB-59\",\"search_first_name\":\"zach\",\"rotowire_id\":14912,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Zach Shackelford\",\"sportradar_id\":\"f6d49e36-b9b1-47c6-af3b-a6134d022ea6\",\"pandascore_id\":null,\"yahoo_id\":33278,\"last_name\":\"Shackelford\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Belton (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"zachshackelford\",\"birth_date\":\"1997-05-30\",\"espn_id\":4039042},\"7167\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shuler\",\"depth_chart_position\":null,\"player_id\":\"7167\",\"birth_city\":null,\"fantasy_data_id\":22169,\"years_exp\":0,\"hashtag\":\"#AdamShuler-NFL-SF-68\",\"search_first_name\":\"adam\",\"rotowire_id\":15101,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Adam Shuler\",\"sportradar_id\":\"3c2fcad1-f609-4003-901b-651fb04bb137\",\"pandascore_id\":null,\"yahoo_id\":33085,\"last_name\":\"Shuler\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Lyman (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'3\\\"\",\"search_full_name\":\"adamshuler\",\"birth_date\":\"1996-12-16\",\"espn_id\":3929896},\"4725\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Phazahn\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"odom\",\"depth_chart_position\":null,\"player_id\":\"4725\",\"birth_city\":null,\"fantasy_data_id\":19635,\"years_exp\":2,\"hashtag\":\"#PhazahnOdom-NFL-FA-87\",\"search_first_name\":\"phazahn\",\"rotowire_id\":12246,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Phazahn Odom\",\"sportradar_id\":\"e5956f10-69fd-4b5d-a7aa-b9da0d980fe0\",\"pandascore_id\":null,\"yahoo_id\":30858,\"last_name\":\"Odom\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692598,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'8\\\"\",\"search_full_name\":\"phazahnodom\",\"birth_date\":\"1994-06-08\",\"espn_id\":2973301},\"3144\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032320\",\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1580152543703,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"FS\",\"player_id\":\"3144\",\"birth_city\":null,\"fantasy_data_id\":17899,\"years_exp\":4,\"hashtag\":\"#ErikHarris-NFL-LV-25\",\"search_first_name\":\"erik\",\"rotowire_id\":10858,\"rotoworld_id\":null,\"active\":true,\"search_rank\":943,\"age\":30,\"full_name\":\"Erik Harris\",\"sportradar_id\":\"3cd103cf-cc2e-458e-94bc-a7a7ce1632c0\",\"pandascore_id\":null,\"yahoo_id\":29224,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"California, Pa.\",\"high_school\":\"New Oxford (PA)\",\"depth_chart_order\":1,\"stats_id\":737186,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"erikharris\",\"birth_date\":\"1990-04-02\",\"espn_id\":4010714},\"3028\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chuck\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547259037677,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pagano\",\"depth_chart_position\":null,\"player_id\":\"3028\",\"birth_city\":null,\"fantasy_data_id\":17709,\"years_exp\":0,\"hashtag\":\"#ChuckPagano-NFL-FA-0\",\"search_first_name\":\"chuck\",\"rotowire_id\":null,\"rotoworld_id\":8348,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Chuck Pagano\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pagano\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"chuckpagano\",\"birth_date\":null,\"espn_id\":null},\"1003\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trindon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holliday\",\"depth_chart_position\":null,\"player_id\":\"1003\",\"birth_city\":null,\"fantasy_data_id\":13555,\"years_exp\":6,\"hashtag\":\"#TrindonHolliday-NFL-FA-15\",\"search_first_name\":\"trindon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Trindon Holliday\",\"sportradar_id\":\"1b102bf3-d9b0-47eb-b862-a0240362bf23\",\"pandascore_id\":null,\"yahoo_id\":24173,\"last_name\":\"Holliday\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":303892,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"159\",\"height\":\"5'5\\\"\",\"search_full_name\":\"trindonholliday\",\"birth_date\":\"1986-04-27\",\"espn_id\":13386},\"1476\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030513\",\"first_name\":\"Latavius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606344002361,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":\"RB\",\"player_id\":\"1476\",\"birth_city\":null,\"fantasy_data_id\":15071,\"years_exp\":7,\"hashtag\":\"#LataviusMurray-NFL-NO-28\",\"search_first_name\":\"latavius\",\"rotowire_id\":8772,\"rotoworld_id\":8585,\"active\":true,\"search_rank\":87,\"age\":30,\"full_name\":\"Latavius Murray\",\"sportradar_id\":\"540f8b30-900e-4d17-8756-c262ba5fa039\",\"pandascore_id\":null,\"yahoo_id\":26804,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Onondaga Central (FL)\",\"depth_chart_order\":2,\"stats_id\":467405,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lataviusmurray\",\"birth_date\":\"1990-01-18\",\"espn_id\":15920},\"5205\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034630\",\"first_name\":\"Kingsley\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"opara\",\"depth_chart_position\":null,\"player_id\":\"5205\",\"birth_city\":null,\"fantasy_data_id\":20140,\"years_exp\":2,\"hashtag\":\"#KingsleyOpara-NFL-FA-60\",\"search_first_name\":\"kingsley\",\"rotowire_id\":13260,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kingsley Opara\",\"sportradar_id\":\"49c20233-70a2-4de5-b3cc-9bf7039f1cb7\",\"pandascore_id\":null,\"yahoo_id\":31586,\"last_name\":\"Opara\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kingsleyopara\",\"birth_date\":\"1994-10-13\",\"espn_id\":3053061},\"7305\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"julius\",\"depth_chart_position\":null,\"player_id\":\"7305\",\"birth_city\":null,\"fantasy_data_id\":22298,\"years_exp\":0,\"hashtag\":\"#JalenJulius-NFL-FA-0\",\"search_first_name\":\"jalen\",\"rotowire_id\":15076,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jalen Julius\",\"sportradar_id\":\"f1d18900-126e-4d88-948b-ec3c255b95c6\",\"pandascore_id\":null,\"yahoo_id\":32956,\"last_name\":\"Julius\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jalenjulius\",\"birth_date\":\"1996-08-19\",\"espn_id\":null},\"7367\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693357324,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hastings\",\"depth_chart_position\":null,\"player_id\":\"7367\",\"birth_city\":null,\"fantasy_data_id\":22354,\"years_exp\":0,\"hashtag\":\"#WillHastings-NFL-FA-0\",\"search_first_name\":\"will\",\"rotowire_id\":14762,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1990,\"age\":24,\"full_name\":\"Will Hastings\",\"sportradar_id\":\"5d52e146-9f64-4b04-bcea-b5ae28a027de\",\"pandascore_id\":null,\"yahoo_id\":33017,\"last_name\":\"Hastings\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'10\\\"\",\"search_full_name\":\"willhastings\",\"birth_date\":\"1996-07-30\",\"espn_id\":3916927},\"6385\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035606\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colburnii\",\"depth_chart_position\":null,\"player_id\":\"6385\",\"birth_city\":null,\"fantasy_data_id\":21293,\"years_exp\":1,\"hashtag\":\"#MatthewColburnII-NFL-FA-37\",\"search_first_name\":\"matthew\",\"rotowire_id\":14011,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Matthew Colburn II\",\"sportradar_id\":\"802d7f08-9fbf-41bc-aa67-2bc6c8a09963\",\"pandascore_id\":null,\"yahoo_id\":32129,\"last_name\":\"Colburn II\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":884328,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"matthewcolburnii\",\"birth_date\":\"1997-07-27\",\"espn_id\":3919544},\"3571\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rawls\",\"depth_chart_position\":null,\"player_id\":\"3571\",\"birth_city\":null,\"fantasy_data_id\":18346,\"years_exp\":0,\"hashtag\":\"#EricRawls-NFL-FA-36\",\"search_first_name\":\"eric\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eric Rawls\",\"sportradar_id\":\"321db83d-bae7-479d-8fc0-33ad4b2e936a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rawls\",\"metadata\":null,\"college\":\"Kentucky State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ericrawls\",\"birth_date\":null,\"espn_id\":null},\"7336\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693357491,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gilbertjr\",\"depth_chart_position\":null,\"player_id\":\"7336\",\"birth_city\":null,\"fantasy_data_id\":21851,\"years_exp\":0,\"hashtag\":\"#JamesGilbertJr-NFL-FA-0\",\"search_first_name\":\"james\",\"rotowire_id\":14575,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"James Gilbert Jr.\",\"sportradar_id\":\"986b07ef-f1f7-4fa8-9e37-c790ebb4b27b\",\"pandascore_id\":null,\"yahoo_id\":33251,\"last_name\":\"Gilbert Jr.\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jamesgilbertjr\",\"birth_date\":\"1995-11-10\",\"espn_id\":null},\"1909\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031232\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535826901651,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"1909\",\"birth_city\":null,\"fantasy_data_id\":16137,\"years_exp\":6,\"hashtag\":\"#RobertNelson-NFL-FA-36\",\"search_first_name\":\"robert\",\"rotowire_id\":9952,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Robert Nelson\",\"sportradar_id\":\"87dd051c-c8c0-4c96-bec7-d342f5ba4797\",\"pandascore_id\":null,\"yahoo_id\":28237,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"North Gwinnett (FL)\",\"depth_chart_order\":null,\"stats_id\":499468,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"robertnelson\",\"birth_date\":\"1990-02-16\",\"espn_id\":17416},\"3088\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pederson\",\"depth_chart_position\":null,\"player_id\":\"3088\",\"birth_city\":null,\"fantasy_data_id\":17838,\"years_exp\":0,\"hashtag\":\"#DougPederson-NFL-FA-0\",\"search_first_name\":\"doug\",\"rotowire_id\":null,\"rotoworld_id\":9477,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Doug Pederson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pederson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dougpederson\",\"birth_date\":null,\"espn_id\":null},\"319\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026205\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1519237201463,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"greco\",\"depth_chart_position\":null,\"player_id\":\"319\",\"birth_city\":null,\"fantasy_data_id\":7815,\"years_exp\":12,\"hashtag\":\"#JohnGreco-NFL-FA-73\",\"search_first_name\":\"john\",\"rotowire_id\":5717,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"John Greco\",\"sportradar_id\":\"a54b32de-57a0-4ebb-9eca-059d956fee22\",\"pandascore_id\":null,\"yahoo_id\":8842,\"last_name\":\"Greco\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Boardman (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johngreco\",\"birth_date\":\"1985-03-24\",\"espn_id\":11299},\"1349\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030526\",\"first_name\":\"E.J.\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1557834923932,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manuel\",\"depth_chart_position\":null,\"player_id\":\"1349\",\"birth_city\":null,\"fantasy_data_id\":14868,\"years_exp\":7,\"hashtag\":\"#EJManuel-NFL-FA-3\",\"search_first_name\":\"ej\",\"rotowire_id\":8749,\"rotoworld_id\":8331,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"E.J. Manuel\",\"sportradar_id\":\"19d00799-4271-40ac-b5c4-4ea8b410a704\",\"pandascore_id\":null,\"yahoo_id\":26639,\"last_name\":\"Manuel\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Bayside (VA)\",\"depth_chart_order\":null,\"stats_id\":461919,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ejmanuel\",\"birth_date\":\"1990-03-19\",\"espn_id\":15803},\"5011\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034160\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1579134337060,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dickson\",\"depth_chart_position\":null,\"player_id\":\"5011\",\"birth_city\":null,\"fantasy_data_id\":19956,\"years_exp\":2,\"hashtag\":\"#MichaelDickson-NFL-SEA-4\",\"search_first_name\":\"michael\",\"rotowire_id\":12481,\"rotoworld_id\":13265,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Michael Dickson\",\"sportradar_id\":\"d1ae3222-8892-49bc-bb3e-0bcd7c74522e\",\"pandascore_id\":null,\"yahoo_id\":31119,\"last_name\":\"Dickson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Kirrawee (AUS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaeldickson\",\"birth_date\":\"1996-01-04\",\"espn_id\":3929851},\"1596\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030432\",\"first_name\":\"Christine\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1537835703205,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"michael\",\"depth_chart_position\":null,\"player_id\":\"1596\",\"birth_city\":null,\"fantasy_data_id\":15256,\"years_exp\":7,\"hashtag\":\"#ChristineMichael-NFL-FA-38\",\"search_first_name\":\"christine\",\"rotowire_id\":8758,\"rotoworld_id\":8469,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Christine Michael\",\"sportradar_id\":\"cf8e8522-6220-4612-a8a1-72c496dac536\",\"pandascore_id\":null,\"yahoo_id\":26685,\"last_name\":\"Michael\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"West Brook (TX)\",\"depth_chart_order\":null,\"stats_id\":511398,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"5'10\\\"\",\"search_full_name\":\"christinemichael\",\"birth_date\":\"1990-11-09\",\"espn_id\":15855},\"4508\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marks\",\"depth_chart_position\":null,\"player_id\":\"4508\",\"birth_city\":null,\"fantasy_data_id\":19380,\"years_exp\":2,\"hashtag\":\"#GabeMarks-NFL-FA-2\",\"search_first_name\":\"gabe\",\"rotowire_id\":11865,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Gabe Marks\",\"sportradar_id\":\"3d750cde-31df-4759-915b-7725678b8885\",\"pandascore_id\":null,\"yahoo_id\":30575,\"last_name\":\"Marks\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652582,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"gabemarks\",\"birth_date\":\"1994-08-06\",\"espn_id\":2978344},\"3842\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032932\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1534722614607,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"omalley\",\"depth_chart_position\":null,\"player_id\":\"3842\",\"birth_city\":null,\"fantasy_data_id\":18662,\"years_exp\":4,\"hashtag\":\"#RyanOMalley-NFL-FA-81\",\"search_first_name\":\"ryan\",\"rotowire_id\":11647,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan O'Malley\",\"sportradar_id\":\"66478107-d228-42de-aa84-bc8a2ac01cb9\",\"pandascore_id\":null,\"yahoo_id\":29963,\"last_name\":\"O'Malley\",\"metadata\":null,\"college\":\"Pennsylvania\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":681240,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryanomalley\",\"birth_date\":\"1993-07-24\",\"espn_id\":2566643},\"6620\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035081\",\"first_name\":\"Javien\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565388608706,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"6620\",\"birth_city\":null,\"fantasy_data_id\":21416,\"years_exp\":1,\"hashtag\":\"#JavienHamilton-NFL-FA-47\",\"search_first_name\":\"javien\",\"rotowire_id\":14105,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Javien Hamilton\",\"sportradar_id\":\"60798c13-45d8-4a6d-b04f-0afe219e3cbe\",\"pandascore_id\":null,\"yahoo_id\":32269,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Ole Miss\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"176\",\"height\":\"5'10\\\"\",\"search_full_name\":\"javienhamilton\",\"birth_date\":\"1996-09-02\",\"espn_id\":4242420},\"4517\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033513\",\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1536003608512,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alifua\",\"depth_chart_position\":null,\"player_id\":\"4517\",\"birth_city\":null,\"fantasy_data_id\":19389,\"years_exp\":3,\"hashtag\":\"#RickyAlifua-NFL-FA-61\",\"search_first_name\":\"ricky\",\"rotowire_id\":12634,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ricky Ali'fua\",\"sportradar_id\":\"49c6000a-8ca5-472c-a166-b0a0911a00bb\",\"pandascore_id\":null,\"yahoo_id\":30701,\"last_name\":\"Ali'fua\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"276\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rickyalifua\",\"birth_date\":\"1991-12-02\",\"espn_id\":2469470},\"3339\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032789\",\"first_name\":\"Devante\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602203733178,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bond\",\"depth_chart_position\":null,\"player_id\":\"3339\",\"birth_city\":null,\"fantasy_data_id\":18100,\"years_exp\":4,\"hashtag\":\"#DevanteBond-NFL-CHI-44\",\"search_first_name\":\"devante\",\"rotowire_id\":10912,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1025,\"age\":27,\"full_name\":\"Devante Bond\",\"sportradar_id\":\"bd6ca667-99e9-42ea-9be7-a680945eece9\",\"pandascore_id\":null,\"yahoo_id\":29417,\"last_name\":\"Bond\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Foothill (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'1\\\"\",\"search_full_name\":\"devantebond\",\"birth_date\":\"1993-07-03\",\"espn_id\":3116368},\"4598\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033752\",\"first_name\":\"Storm\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604538329173,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"norton\",\"depth_chart_position\":\"RT\",\"player_id\":\"4598\",\"birth_city\":null,\"fantasy_data_id\":19486,\"years_exp\":3,\"hashtag\":\"#StormNorton-NFL-LAC-74\",\"search_first_name\":\"storm\",\"rotowire_id\":12437,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Storm Norton\",\"sportradar_id\":\"3d169c3f-93fe-44b5-8495-681241f285bb\",\"pandascore_id\":null,\"yahoo_id\":30772,\"last_name\":\"Norton\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Whitmer (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'7\\\"\",\"search_full_name\":\"stormnorton\",\"birth_date\":\"1994-05-16\",\"espn_id\":2973014},\"4114\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033902\",\"first_name\":\"Tanoh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1582236027695,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kpassagnon\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4114\",\"birth_city\":null,\"fantasy_data_id\":18960,\"years_exp\":3,\"hashtag\":\"#TanohKpassagnon-NFL-KC-92\",\"search_first_name\":\"tanoh\",\"rotowire_id\":11924,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1154,\"age\":26,\"full_name\":\"Tanoh Kpassagnon\",\"sportradar_id\":\"cb43fb1e-9c65-4462-8c05-798d5885b845\",\"pandascore_id\":null,\"yahoo_id\":30172,\"last_name\":\"Kpassagnon\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":\"Wissahickon (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"289\",\"height\":\"6'7\\\"\",\"search_full_name\":\"tanohkpassagnon\",\"birth_date\":\"1994-06-14\",\"espn_id\":2982313},\"436\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mackenzy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bernadeau\",\"depth_chart_position\":null,\"player_id\":\"436\",\"birth_city\":null,\"fantasy_data_id\":9138,\"years_exp\":12,\"hashtag\":\"#MackenzyBernadeau-NFL-FA-74\",\"search_first_name\":\"mackenzy\",\"rotowire_id\":6384,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Mackenzy Bernadeau\",\"sportradar_id\":\"8720973c-9bde-4e66-a88e-66e933a99683\",\"pandascore_id\":null,\"yahoo_id\":9027,\"last_name\":\"Bernadeau\",\"metadata\":null,\"college\":\"Bentley\",\"high_school\":\"Waltham (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mackenzybernadeau\",\"birth_date\":\"1986-01-03\",\"espn_id\":11484},\"3291\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032408\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604966129184,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"martinez\",\"depth_chart_position\":\"RILB\",\"player_id\":\"3291\",\"birth_city\":null,\"fantasy_data_id\":18052,\"years_exp\":4,\"hashtag\":\"#BlakeMartinez-NFL-NYG-54\",\"search_first_name\":\"blake\",\"rotowire_id\":11127,\"rotoworld_id\":11442,\"active\":true,\"search_rank\":1010,\"age\":26,\"full_name\":\"Blake Martinez\",\"sportradar_id\":\"0392b852-2783-4ce4-ad39-dc8661a5be3d\",\"pandascore_id\":null,\"yahoo_id\":29365,\"last_name\":\"Martinez\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Canyon del Oro (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'2\\\"\",\"search_full_name\":\"blakemartinez\",\"birth_date\":\"1994-01-09\",\"espn_id\":2978273},\"431\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamarca\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanford\",\"depth_chart_position\":null,\"player_id\":\"431\",\"birth_city\":null,\"fantasy_data_id\":9095,\"years_exp\":11,\"hashtag\":\"#JamarcaSanford-NFL-FA-33\",\"search_first_name\":\"jamarca\",\"rotowire_id\":6139,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jamarca Sanford\",\"sportradar_id\":\"bcce626d-b0b5-4b1a-98a8-e6021d5af145\",\"pandascore_id\":null,\"yahoo_id\":9495,\"last_name\":\"Sanford\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"South Panola (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jamarcasanford\",\"birth_date\":\"1985-08-27\",\"espn_id\":12721},\"927\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1517874901399,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fairley\",\"depth_chart_position\":null,\"player_id\":\"927\",\"birth_city\":null,\"fantasy_data_id\":13214,\"years_exp\":9,\"hashtag\":\"#NickFairley-NFL-FA-90\",\"search_first_name\":\"nick\",\"rotowire_id\":7258,\"rotoworld_id\":6492,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Nick Fairley\",\"sportradar_id\":\"6b2ce6f9-6c0c-4690-9d64-2eaf3fd3ac3e\",\"pandascore_id\":null,\"yahoo_id\":24800,\"last_name\":\"Fairley\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Williamson (AL)\",\"depth_chart_order\":null,\"stats_id\":508587,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickfairley\",\"birth_date\":\"1988-01-23\",\"espn_id\":13990},\"674\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quentin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"groves\",\"depth_chart_position\":null,\"player_id\":\"674\",\"birth_city\":null,\"fantasy_data_id\":11863,\"years_exp\":7,\"hashtag\":\"#QuentinGroves-NFL-FA-53\",\"search_first_name\":\"quentin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Quentin Groves\",\"sportradar_id\":\"066081cd-aecf-4074-9208-dbe95c02ea57\",\"pandascore_id\":null,\"yahoo_id\":8829,\"last_name\":\"Groves\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"quentingroves\",\"birth_date\":\"1984-07-05\",\"espn_id\":11286},\"2098\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031330\",\"first_name\":\"Morgan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1601828139109,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moses\",\"depth_chart_position\":\"RT\",\"player_id\":\"2098\",\"birth_city\":null,\"fantasy_data_id\":16419,\"years_exp\":6,\"hashtag\":\"#MorganMoses-NFL-WAS-76\",\"search_first_name\":\"morgan\",\"rotowire_id\":9418,\"rotoworld_id\":9632,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Morgan Moses\",\"sportradar_id\":\"e15a26bb-db24-4e5a-b3a5-cc4d4eb4f0b6\",\"pandascore_id\":null,\"yahoo_id\":27594,\"last_name\":\"Moses\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Meadowbrook (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'6\\\"\",\"search_full_name\":\"morganmoses\",\"birth_date\":\"1991-03-03\",\"espn_id\":16771},\"3098\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reese\",\"depth_chart_position\":null,\"player_id\":\"3098\",\"birth_city\":null,\"fantasy_data_id\":17848,\"years_exp\":0,\"hashtag\":\"#JerryReese-NFL-FA-0\",\"search_first_name\":\"jerry\",\"rotowire_id\":null,\"rotoworld_id\":9507,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jerry Reese\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Reese\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jerryreese\",\"birth_date\":null,\"espn_id\":null},\"4276\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033861\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567485916205,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tyson\",\"depth_chart_position\":null,\"player_id\":\"4276\",\"birth_city\":null,\"fantasy_data_id\":19122,\"years_exp\":3,\"hashtag\":\"#MikeTyson-NFL-FA-32\",\"search_first_name\":\"mike\",\"rotowire_id\":12006,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mike Tyson\",\"sportradar_id\":\"24a25ff7-0690-4769-9dc9-8265ecdcf1f2\",\"pandascore_id\":null,\"yahoo_id\":30300,\"last_name\":\"Tyson\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749106,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"miketyson\",\"birth_date\":\"1993-07-19\",\"espn_id\":3056913},\"452\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fletcher\",\"depth_chart_position\":null,\"player_id\":\"452\",\"birth_city\":null,\"fantasy_data_id\":9266,\"years_exp\":11,\"hashtag\":\"#BradleyFletcher-NFL-FA-24\",\"search_first_name\":\"bradley\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Bradley Fletcher\",\"sportradar_id\":\"f3ba2433-2faf-4692-a5e5-3d5bc4153d01\",\"pandascore_id\":null,\"yahoo_id\":9330,\"last_name\":\"Fletcher\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Liberty (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bradleyfletcher\",\"birth_date\":\"1986-06-25\",\"espn_id\":12652},\"21\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Red\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"21\",\"birth_city\":null,\"fantasy_data_id\":678,\"years_exp\":12,\"hashtag\":\"#RedBryant-NFL-FA-71\",\"search_first_name\":\"red\",\"rotowire_id\":6367,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Red Bryant\",\"sportradar_id\":\"742397f3-c997-44b7-9ff4-63007afec291\",\"pandascore_id\":null,\"yahoo_id\":8901,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Jasper (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'4\\\"\",\"search_full_name\":\"redbryant\",\"birth_date\":\"1984-04-18\",\"espn_id\":11358},\"141\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reddick\",\"depth_chart_position\":null,\"player_id\":\"141\",\"birth_city\":null,\"fantasy_data_id\":3847,\"years_exp\":7,\"hashtag\":\"#KevinReddick-NFL-FA-51\",\"search_first_name\":\"kevin\",\"rotowire_id\":8699,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kevin Reddick\",\"sportradar_id\":\"140e83c6-3161-40d4-8234-6918045874ba\",\"pandascore_id\":null,\"yahoo_id\":26956,\"last_name\":\"Reddick\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"New Bern (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kevinreddick\",\"birth_date\":\"1989-12-28\",\"espn_id\":16157},\"5563\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034246\",\"first_name\":\"Eddy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"5563\",\"birth_city\":null,\"fantasy_data_id\":20358,\"years_exp\":2,\"hashtag\":\"#EddyWilson-NFL-FA-40\",\"search_first_name\":\"eddy\",\"rotowire_id\":12639,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Eddy Wilson\",\"sportradar_id\":\"2bb28fc2-96ec-452c-9dbb-22130681c4eb\",\"pandascore_id\":null,\"yahoo_id\":31474,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eddywilson\",\"birth_date\":\"1997-02-13\",\"espn_id\":3918012},\"4777\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gump\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hayes\",\"depth_chart_position\":null,\"player_id\":\"4777\",\"birth_city\":null,\"fantasy_data_id\":19643,\"years_exp\":0,\"hashtag\":\"#GumpHayes-NFL-FA-0\",\"search_first_name\":\"gump\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Gump Hayes\",\"sportradar_id\":\"d3df41e5-f6ef-49d2-a0a7-59688b4e19a8\",\"pandascore_id\":null,\"yahoo_id\":30486,\"last_name\":\"Hayes\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"gumphayes\",\"birth_date\":null,\"espn_id\":null},\"2167\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031181\",\"first_name\":\"Ricardo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604950527604,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"SS\",\"player_id\":\"2167\",\"birth_city\":null,\"fantasy_data_id\":16520,\"years_exp\":6,\"hashtag\":\"#RicardoAllen-NFL-ATL-37\",\"search_first_name\":\"ricardo\",\"rotowire_id\":9609,\"rotoworld_id\":9667,\"active\":true,\"search_rank\":832,\"age\":28,\"full_name\":\"Ricardo Allen\",\"sportradar_id\":\"4ba33131-8214-45bf-9ce1-5ac08f1b68c5\",\"pandascore_id\":null,\"yahoo_id\":27675,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Mainland (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ricardoallen\",\"birth_date\":\"1991-12-18\",\"espn_id\":16882},\"2174\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030741\",\"first_name\":\"Roosevelt\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1598920830072,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nix\",\"depth_chart_position\":\"RB\",\"player_id\":\"2174\",\"birth_city\":null,\"fantasy_data_id\":16534,\"years_exp\":6,\"hashtag\":\"#RooseveltNix-NFL-FA-33\",\"search_first_name\":\"roosevelt\",\"rotowire_id\":9857,\"rotoworld_id\":null,\"active\":true,\"search_rank\":833,\"age\":28,\"full_name\":\"Roosevelt Nix\",\"sportradar_id\":\"f611f87a-1e49-4196-9088-8c760f26006d\",\"pandascore_id\":null,\"yahoo_id\":28068,\"last_name\":\"Nix\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Reynoldsburg (OH)\",\"depth_chart_order\":11,\"stats_id\":546742,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rooseveltnix\",\"birth_date\":\"1992-03-30\",\"espn_id\":17223},\"6501\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035009\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1588119320291,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conrad\",\"depth_chart_position\":null,\"player_id\":\"6501\",\"birth_city\":null,\"fantasy_data_id\":21497,\"years_exp\":1,\"hashtag\":\"#CJConrad-NFL-FA-0\",\"search_first_name\":\"cj\",\"rotowire_id\":13687,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"C.J. Conrad\",\"sportradar_id\":\"16551ae2-a27c-4c2d-aa48-0fce4fde68a8\",\"pandascore_id\":null,\"yahoo_id\":32352,\"last_name\":\"Conrad\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":867993,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cjconrad\",\"birth_date\":\"1996-05-09\",\"espn_id\":3915230},\"3594\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032741\",\"first_name\":\"Peyton\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606443360452,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barber\",\"depth_chart_position\":\"RB\",\"player_id\":\"3594\",\"birth_city\":null,\"fantasy_data_id\":18375,\"years_exp\":4,\"hashtag\":\"#PeytonBarber-NFL-WAS-34\",\"search_first_name\":\"peyton\",\"rotowire_id\":10902,\"rotoworld_id\":11708,\"active\":true,\"search_rank\":211,\"age\":26,\"full_name\":\"Peyton Barber\",\"sportradar_id\":\"86363c46-567e-41d6-a59a-3fed9ca64591\",\"pandascore_id\":null,\"yahoo_id\":29560,\"last_name\":\"Barber\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Milton (GA)\",\"depth_chart_order\":3,\"stats_id\":744436,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"5'11\\\"\",\"search_full_name\":\"peytonbarber\",\"birth_date\":\"1994-06-27\",\"espn_id\":3051902},\"2575\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taiwan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"2575\",\"birth_city\":null,\"fantasy_data_id\":17040,\"years_exp\":5,\"hashtag\":\"#TaiwanJones-NFL-FA-49\",\"search_first_name\":\"taiwan\",\"rotowire_id\":10364,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Taiwan Jones\",\"sportradar_id\":\"1dba399d-91a3-4104-9d60-f757caa30db0\",\"pandascore_id\":null,\"yahoo_id\":28939,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Anchor Bay\",\"depth_chart_order\":null,\"stats_id\":606109,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"taiwanjones\",\"birth_date\":\"1993-12-01\",\"espn_id\":2576268},\"4270\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033531\",\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1575158107513,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holba\",\"depth_chart_position\":null,\"player_id\":\"4270\",\"birth_city\":null,\"fantasy_data_id\":19116,\"years_exp\":3,\"hashtag\":\"#ColinHolba-NFL-FA-0\",\"search_first_name\":\"colin\",\"rotowire_id\":12213,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Colin Holba\",\"sportradar_id\":\"d3b0e29f-d97c-4fc4-ae29-c5266686e39d\",\"pandascore_id\":null,\"yahoo_id\":30326,\"last_name\":\"Holba\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"colinholba\",\"birth_date\":\"1994-07-08\",\"espn_id\":3040072},\"2882\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"2882\",\"birth_city\":null,\"fantasy_data_id\":17350,\"years_exp\":2,\"hashtag\":\"#JimmyHall-NFL-FA-43\",\"search_first_name\":\"jimmy\",\"rotowire_id\":10698,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jimmy Hall\",\"sportradar_id\":\"b83f881d-06a0-4c7d-baad-867550af1a15\",\"pandascore_id\":null,\"yahoo_id\":28963,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jimmyhall\",\"birth_date\":\"1991-11-18\",\"espn_id\":2511098},\"7463\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dishon\",\"depth_chart_position\":null,\"player_id\":\"7463\",\"birth_city\":null,\"fantasy_data_id\":22439,\"years_exp\":0,\"hashtag\":\"#TreyDishon-NFL-FA-0\",\"search_first_name\":\"trey\",\"rotowire_id\":14989,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2006,\"age\":23,\"full_name\":\"Trey Dishon\",\"sportradar_id\":\"2a46de76-29f1-4870-a2d0-4fba87de1f29\",\"pandascore_id\":null,\"yahoo_id\":33160,\"last_name\":\"Dishon\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'2\\\"\",\"search_full_name\":\"treydishon\",\"birth_date\":\"1997-05-18\",\"espn_id\":3916105},\"62\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1514209201069,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":null,\"player_id\":\"62\",\"birth_city\":null,\"fantasy_data_id\":1750,\"years_exp\":15,\"hashtag\":\"#TrentCole-NFL-FA-58\",\"search_first_name\":\"trent\",\"rotowire_id\":4555,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Trent Cole\",\"sportradar_id\":\"dcf82516-a1ae-4db5-8404-6ce090a59970\",\"pandascore_id\":null,\"yahoo_id\":7322,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Xenia (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trentcole\",\"birth_date\":\"1982-10-05\",\"espn_id\":8560},\"4602\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033757\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1606512627803,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tonyan\",\"depth_chart_position\":\"TE\",\"player_id\":\"4602\",\"birth_city\":null,\"fantasy_data_id\":19491,\"years_exp\":3,\"hashtag\":\"#RobertTonyan-NFL-GB-85\",\"search_first_name\":\"robert\",\"rotowire_id\":12389,\"rotoworld_id\":12868,\"active\":true,\"search_rank\":398,\"age\":26,\"full_name\":\"Robert Tonyan\",\"sportradar_id\":\"7c9c7800-69d0-459b-812b-a07ac48e9f2a\",\"pandascore_id\":null,\"yahoo_id\":30777,\"last_name\":\"Tonyan\",\"metadata\":null,\"college\":\"Indiana State\",\"high_school\":\"McHenry East (IL)\",\"depth_chart_order\":1,\"stats_id\":660151,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'5\\\"\",\"search_full_name\":\"roberttonyan\",\"birth_date\":\"1994-04-30\",\"espn_id\":2975674},\"336\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1521819601083,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"berger\",\"depth_chart_position\":null,\"player_id\":\"336\",\"birth_city\":null,\"fantasy_data_id\":8319,\"years_exp\":15,\"hashtag\":\"#JoeBerger-NFL-FA-61\",\"search_first_name\":\"joe\",\"rotowire_id\":6370,\"rotoworld_id\":3378,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Joe Berger\",\"sportradar_id\":\"9163afa3-2f7d-4fc0-bf96-f5d8f618969a\",\"pandascore_id\":null,\"yahoo_id\":7383,\"last_name\":\"Berger\",\"metadata\":null,\"college\":\"Michigan Tech\",\"high_school\":\"Newaygo (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joeberger\",\"birth_date\":\"1982-05-25\",\"espn_id\":8621},\"2965\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darryl\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baldwin\",\"depth_chart_position\":null,\"player_id\":\"2965\",\"birth_city\":null,\"fantasy_data_id\":17453,\"years_exp\":1,\"hashtag\":\"#DarrylBaldwin-NFL-FA-69\",\"search_first_name\":\"darryl\",\"rotowire_id\":10863,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Darryl Baldwin\",\"sportradar_id\":\"d8e14c6a-8f15-414d-be0e-41c9d4d4133b\",\"pandascore_id\":null,\"yahoo_id\":28945,\"last_name\":\"Baldwin\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'6\\\"\",\"search_full_name\":\"darrylbaldwin\",\"birth_date\":\"1991-10-06\",\"espn_id\":null},\"1894\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lockett\",\"depth_chart_position\":null,\"player_id\":\"1894\",\"birth_city\":null,\"fantasy_data_id\":16115,\"years_exp\":1,\"hashtag\":\"#ColinLockett-NFL-FA-13\",\"search_first_name\":\"colin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Colin Lockett\",\"sportradar_id\":\"2a3783fe-1a82-4a99-af37-65a146ec00dc\",\"pandascore_id\":null,\"yahoo_id\":28028,\"last_name\":\"Lockett\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":512368,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'11\\\"\",\"search_full_name\":\"colinlockett\",\"birth_date\":\"1991-04-05\",\"espn_id\":17200},\"117\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathis\",\"depth_chart_position\":null,\"player_id\":\"117\",\"birth_city\":null,\"fantasy_data_id\":3242,\"years_exp\":17,\"hashtag\":\"#RasheanMathis-NFL-FA-31\",\"search_first_name\":\"rashean\",\"rotowire_id\":3060,\"rotoworld_id\":1420,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Rashean Mathis\",\"sportradar_id\":\"83a4271e-b7bb-4269-86d6-efe2892a5a7e\",\"pandascore_id\":null,\"yahoo_id\":6375,\"last_name\":\"Mathis\",\"metadata\":null,\"college\":\"Bethune-Cookman\",\"high_school\":\"Englewood (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rasheanmathis\",\"birth_date\":\"1980-08-27\",\"espn_id\":4497},\"4366\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Landon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lechler\",\"depth_chart_position\":null,\"player_id\":\"4366\",\"birth_city\":null,\"fantasy_data_id\":19223,\"years_exp\":2,\"hashtag\":\"#LandonLechler-NFL-FA-77\",\"search_first_name\":\"landon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Landon Lechler\",\"sportradar_id\":\"3b8e195e-3c89-4624-8fd7-03eaf0996ce2\",\"pandascore_id\":null,\"yahoo_id\":30581,\"last_name\":\"Lechler\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'8\\\"\",\"search_full_name\":\"landonlechler\",\"birth_date\":\"1993-08-11\",\"espn_id\":2969462},\"5440\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034108\",\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"5440\",\"birth_city\":null,\"fantasy_data_id\":20483,\"years_exp\":2,\"hashtag\":\"#LeonJohnson-NFL-FA-63\",\"search_first_name\":\"leon\",\"rotowire_id\":13389,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Leon Johnson\",\"sportradar_id\":\"092b8c48-e863-474c-ac81-212d1265dedc\",\"pandascore_id\":null,\"yahoo_id\":31378,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"334\",\"height\":\"6'4\\\"\",\"search_full_name\":\"leonjohnson\",\"birth_date\":\"1995-06-04\",\"espn_id\":3051321},\"517\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027236\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599173754245,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"love\",\"depth_chart_position\":\"NT\",\"player_id\":\"517\",\"birth_city\":null,\"fantasy_data_id\":10977,\"years_exp\":10,\"hashtag\":\"#KyleLove-NFL-FA-77\",\"search_first_name\":\"kyle\",\"rotowire_id\":6973,\"rotoworld_id\":null,\"active\":true,\"search_rank\":597,\"age\":33,\"full_name\":\"Kyle Love\",\"sportradar_id\":\"f0d837e0-54e6-496d-9334-e2d6365d16d6\",\"pandascore_id\":null,\"yahoo_id\":24294,\"last_name\":\"Love\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"North Clayton (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kylelove\",\"birth_date\":\"1986-11-18\",\"espn_id\":13608},\"4253\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033469\",\"first_name\":\"Vincent\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604265321153,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"RDT\",\"player_id\":\"4253\",\"birth_city\":null,\"fantasy_data_id\":19099,\"years_exp\":3,\"hashtag\":\"#VincentTaylor-NFL-CLE-96\",\"search_first_name\":\"vincent\",\"rotowire_id\":11944,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1218,\"age\":26,\"full_name\":\"Vincent Taylor\",\"sportradar_id\":\"eb904c68-f01b-4af3-9427-dd6a6c35511b\",\"pandascore_id\":null,\"yahoo_id\":30307,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"James Madison (TX)\",\"depth_chart_order\":2,\"stats_id\":744902,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vincenttaylor\",\"birth_date\":\"1994-01-05\",\"espn_id\":3046343},\"4677\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033740\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roos\",\"depth_chart_position\":null,\"player_id\":\"4677\",\"birth_city\":null,\"fantasy_data_id\":19578,\"years_exp\":3,\"hashtag\":\"#JordanRoos-NFL-NE-64\",\"search_first_name\":\"jordan\",\"rotowire_id\":12435,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jordan Roos\",\"sportradar_id\":\"dbce7118-3f7f-42b4-8da4-83a864f91aed\",\"pandascore_id\":null,\"yahoo_id\":30762,\"last_name\":\"Roos\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Purdue\",\"high_school\":\"Celina (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanroos\",\"birth_date\":\"1993-07-06\",\"espn_id\":2977779},\"4624\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"PJ\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"4624\",\"birth_city\":null,\"fantasy_data_id\":19518,\"years_exp\":2,\"hashtag\":\"#PJDavis-NFL-FA-58\",\"search_first_name\":\"pj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"PJ Davis\",\"sportradar_id\":\"72defdf9-bdbc-4378-aab1-cd6f0c9e30ad\",\"pandascore_id\":null,\"yahoo_id\":30399,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"pjdavis\",\"birth_date\":\"1995-01-22\",\"espn_id\":3055901},\"4337\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033279\",\"first_name\":\"Ethan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533686425538,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"4337\",\"birth_city\":null,\"fantasy_data_id\":19193,\"years_exp\":3,\"hashtag\":\"#EthanCooper-NFL-FA-62\",\"search_first_name\":\"ethan\",\"rotowire_id\":11786,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ethan Cooper\",\"sportradar_id\":\"a1cb7e9f-cd33-4c3f-9321-0c2258750eac\",\"pandascore_id\":null,\"yahoo_id\":30385,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Indiana (PA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ethancooper\",\"birth_date\":\"1995-06-11\",\"espn_id\":4081136},\"6162\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"west\",\"depth_chart_position\":null,\"player_id\":\"6162\",\"birth_city\":null,\"fantasy_data_id\":20980,\"years_exp\":0,\"hashtag\":\"#DariusWest-NFL-FA-0\",\"search_first_name\":\"darius\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Darius West\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"West\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dariuswest\",\"birth_date\":null,\"espn_id\":null},\"6319\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035398\",\"first_name\":\"Tyree\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596406818560,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kinnel\",\"depth_chart_position\":null,\"player_id\":\"6319\",\"birth_city\":null,\"fantasy_data_id\":21223,\"years_exp\":1,\"hashtag\":\"#TyreeKinnel-NFL-FA-0\",\"search_first_name\":\"tyree\",\"rotowire_id\":13644,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tyree Kinnel\",\"sportradar_id\":\"c5915cd7-c21d-4441-8960-c394f680dd17\",\"pandascore_id\":null,\"yahoo_id\":32468,\"last_name\":\"Kinnel\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tyreekinnel\",\"birth_date\":\"1997-01-31\",\"espn_id\":3929926},\"6365\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035367\",\"first_name\":\"Carson\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1597451106850,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meier\",\"depth_chart_position\":\"TE\",\"player_id\":\"6365\",\"birth_city\":null,\"fantasy_data_id\":21256,\"years_exp\":1,\"hashtag\":\"#CarsonMeier-NFL-FA-0\",\"search_first_name\":\"carson\",\"rotowire_id\":13666,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1706,\"age\":25,\"full_name\":\"Carson Meier\",\"sportradar_id\":\"b72e251b-b993-4d6c-b470-10ee78178d78\",\"pandascore_id\":null,\"yahoo_id\":32094,\"last_name\":\"Meier\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":820726,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"carsonmeier\",\"birth_date\":\"1995-06-29\",\"espn_id\":3116384},\"1213\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029606\",\"first_name\":\"Harrison\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606514427972,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"SS\",\"player_id\":\"1213\",\"birth_city\":null,\"fantasy_data_id\":14461,\"years_exp\":8,\"hashtag\":\"#HarrisonSmith-NFL-MIN-22\",\"search_first_name\":\"harrison\",\"rotowire_id\":8202,\"rotoworld_id\":7488,\"active\":true,\"search_rank\":686,\"age\":31,\"full_name\":\"Harrison Smith\",\"sportradar_id\":\"407f1923-6659-4564-800f-25b8746d6d3e\",\"pandascore_id\":null,\"yahoo_id\":25739,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Knoxville Catholic (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"harrisonsmith\",\"birth_date\":\"1989-02-02\",\"espn_id\":14945},\"512\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"odrick\",\"depth_chart_position\":null,\"player_id\":\"512\",\"birth_city\":null,\"fantasy_data_id\":10962,\"years_exp\":10,\"hashtag\":\"#JaredOdrick-NFL-FA-75\",\"search_first_name\":\"jared\",\"rotowire_id\":6586,\"rotoworld_id\":5844,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jared Odrick\",\"sportradar_id\":\"a763f347-f201-4247-9f48-47060de57d41\",\"pandascore_id\":null,\"yahoo_id\":24003,\"last_name\":\"Odrick\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Lebanon (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jaredodrick\",\"birth_date\":\"1987-12-31\",\"espn_id\":13244},\"2992\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032192\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604808011162,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"munyer\",\"depth_chart_position\":null,\"player_id\":\"2992\",\"birth_city\":null,\"fantasy_data_id\":17511,\"years_exp\":5,\"hashtag\":\"#DanielMunyer-NFL-TEN-52\",\"search_first_name\":\"daniel\",\"rotowire_id\":10716,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Daniel Munyer\",\"sportradar_id\":\"e2ba47b5-f503-42fc-86d2-2f6061551a30\",\"pandascore_id\":null,\"yahoo_id\":29133,\"last_name\":\"Munyer\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Colorado\",\"high_school\":\"Notre Dame (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'1\\\"\",\"search_full_name\":\"danielmunyer\",\"birth_date\":\"1992-03-04\",\"espn_id\":2511330},\"5913\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035679\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1593400843165,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcgovern\",\"depth_chart_position\":\"RG\",\"player_id\":\"5913\",\"birth_city\":null,\"fantasy_data_id\":20871,\"years_exp\":1,\"hashtag\":\"#ConnorMcGovern-NFL-DAL-66\",\"search_first_name\":\"connor\",\"rotowire_id\":13509,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Connor McGovern\",\"sportradar_id\":\"0c827cf4-d8ac-4efc-b030-019baa3c7216\",\"pandascore_id\":null,\"yahoo_id\":31922,\"last_name\":\"McGovern\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Lake-Lehman (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'5\\\"\",\"search_full_name\":\"connormcgovern\",\"birth_date\":\"1997-11-03\",\"espn_id\":4033748},\"3965\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"olson\",\"depth_chart_position\":null,\"player_id\":\"3965\",\"birth_city\":null,\"fantasy_data_id\":18799,\"years_exp\":0,\"hashtag\":\"#GregOlson-NFL-FA-0\",\"search_first_name\":\"greg\",\"rotowire_id\":null,\"rotoworld_id\":9478,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Greg Olson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Olson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"gregolson\",\"birth_date\":null,\"espn_id\":null},\"1914\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dri\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"archer\",\"depth_chart_position\":null,\"player_id\":\"1914\",\"birth_city\":null,\"fantasy_data_id\":16144,\"years_exp\":6,\"hashtag\":\"#DriArcher-NFL-FA-13\",\"search_first_name\":\"dri\",\"rotowire_id\":9474,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dri Archer\",\"sportradar_id\":\"4aeef161-65c6-4bc6-89c5-ceb7d6d1a25b\",\"pandascore_id\":null,\"yahoo_id\":27625,\"last_name\":\"Archer\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Venice (FL)\",\"depth_chart_order\":null,\"stats_id\":506529,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'8\\\"\",\"search_full_name\":\"driarcher\",\"birth_date\":\"1991-08-09\",\"espn_id\":16755},\"7262\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693360001,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morton\",\"depth_chart_position\":null,\"player_id\":\"7262\",\"birth_city\":null,\"fantasy_data_id\":22261,\"years_exp\":0,\"hashtag\":\"#JalenMorton-NFL-FA-0\",\"search_first_name\":\"jalen\",\"rotowire_id\":14894,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jalen Morton\",\"sportradar_id\":\"bcf6e7cb-0fc7-4301-93fd-6a9aa4806cfa\",\"pandascore_id\":null,\"yahoo_id\":33229,\"last_name\":\"Morton\",\"metadata\":null,\"college\":\"Prairie View A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jalenmorton\",\"birth_date\":null,\"espn_id\":null},\"2236\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watts\",\"depth_chart_position\":null,\"player_id\":\"2236\",\"birth_city\":null,\"fantasy_data_id\":16636,\"years_exp\":6,\"hashtag\":\"#TreyWatts-NFL-FA-42\",\"search_first_name\":\"trey\",\"rotowire_id\":9542,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Trey Watts\",\"sportradar_id\":\"e7932199-4d0f-4a94-9f96-dd752d594d56\",\"pandascore_id\":null,\"yahoo_id\":27971,\"last_name\":\"Watts\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":\"Oakton (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'9\\\"\",\"search_full_name\":\"treywatts\",\"birth_date\":\"1991-02-13\",\"espn_id\":17282},\"5964\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035300\",\"first_name\":\"Dennis\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606083335833,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"daley\",\"depth_chart_position\":\"LG\",\"player_id\":\"5964\",\"birth_city\":null,\"fantasy_data_id\":21057,\"years_exp\":1,\"hashtag\":\"#DennisDaley-NFL-CAR-65\",\"search_first_name\":\"dennis\",\"rotowire_id\":13790,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Dennis Daley\",\"sportradar_id\":\"06f3a0fc-2a07-4ecc-b5c3-873b2f615809\",\"pandascore_id\":null,\"yahoo_id\":32044,\"last_name\":\"Daley\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Ridge View (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'6\\\"\",\"search_full_name\":\"dennisdaley\",\"birth_date\":\"1996-08-07\",\"espn_id\":4259480},\"5712\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034695\",\"first_name\":\"Tyrice\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535901902042,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beverette\",\"depth_chart_position\":null,\"player_id\":\"5712\",\"birth_city\":null,\"fantasy_data_id\":20638,\"years_exp\":2,\"hashtag\":\"#TyriceBeverette-NFL-FA-37\",\"search_first_name\":\"tyrice\",\"rotowire_id\":13329,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyrice Beverette\",\"sportradar_id\":\"e3a87257-7012-48c5-8ab2-8322f3a95f2d\",\"pandascore_id\":null,\"yahoo_id\":31693,\"last_name\":\"Beverette\",\"metadata\":null,\"college\":\"Stony Brook\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tyricebeverette\",\"birth_date\":\"1995-01-28\",\"espn_id\":3049935},\"146\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024061\",\"first_name\":\"Tramon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605061801153,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LCB\",\"player_id\":\"146\",\"birth_city\":null,\"fantasy_data_id\":3942,\"years_exp\":14,\"hashtag\":\"#TramonWilliams-NFL-BAL-29\",\"search_first_name\":\"tramon\",\"rotowire_id\":5861,\"rotoworld_id\":4327,\"active\":true,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Tramon Williams\",\"sportradar_id\":\"640710b9-72f2-47e1-9afa-f3070b23c119\",\"pandascore_id\":null,\"yahoo_id\":8212,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Assumption (LA)\",\"depth_chart_order\":2,\"stats_id\":231508,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tramonwilliams\",\"birth_date\":\"1983-03-16\",\"espn_id\":5432},\"5657\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034458\",\"first_name\":\"Asantay\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1564968372726,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"5657\",\"birth_city\":null,\"fantasy_data_id\":20545,\"years_exp\":2,\"hashtag\":\"#AsantayBrown-NFL-FA-50\",\"search_first_name\":\"asantay\",\"rotowire_id\":13278,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Asantay Brown\",\"sportradar_id\":\"53542368-9d32-4728-a72a-4e788f9d9ab3\",\"pandascore_id\":null,\"yahoo_id\":31568,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"asantaybrown\",\"birth_date\":\"1995-02-03\",\"espn_id\":3126120},\"56\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025405\",\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1543619406482,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"56\",\"birth_city\":null,\"fantasy_data_id\":1650,\"years_exp\":13,\"hashtag\":\"#LeonHall-NFL-FA-29\",\"search_first_name\":\"leon\",\"rotowire_id\":5348,\"rotoworld_id\":4204,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Leon Hall\",\"sportradar_id\":\"16340de5-372b-4c20-953f-07a0fe26be69\",\"pandascore_id\":null,\"yahoo_id\":8272,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Vista (CA)\",\"depth_chart_order\":null,\"stats_id\":216026,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"leonhall\",\"birth_date\":\"1984-12-09\",\"espn_id\":10462},\"4320\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quick\",\"depth_chart_position\":null,\"player_id\":\"4320\",\"birth_city\":null,\"fantasy_data_id\":19173,\"years_exp\":2,\"hashtag\":\"#JamesQuick-NFL-FA-17\",\"search_first_name\":\"james\",\"rotowire_id\":11869,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"James Quick\",\"sportradar_id\":\"e19d1543-7c1f-488d-a43a-768b424cb910\",\"pandascore_id\":null,\"yahoo_id\":30503,\"last_name\":\"Quick\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741538,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jamesquick\",\"birth_date\":\"1994-10-06\",\"espn_id\":3040052},\"6416\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035378\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605409261073,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wingard\",\"depth_chart_position\":\"FS\",\"player_id\":\"6416\",\"birth_city\":null,\"fantasy_data_id\":21281,\"years_exp\":1,\"hashtag\":\"#AndrewWingard-NFL-JAX-42\",\"search_first_name\":\"andrew\",\"rotowire_id\":13768,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1709,\"age\":23,\"full_name\":\"Andrew Wingard\",\"sportradar_id\":\"65e778fa-4639-4973-bb82-c76efa2ff309\",\"pandascore_id\":null,\"yahoo_id\":32105,\"last_name\":\"Wingard\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Ralston Valley (CO)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"andrewwingard\",\"birth_date\":\"1996-12-05\",\"espn_id\":3918331},\"4220\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033954\",\"first_name\":\"Jayon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606263054860,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4220\",\"birth_city\":null,\"fantasy_data_id\":19066,\"years_exp\":3,\"hashtag\":\"#JayonBrown-NFL-TEN-55\",\"search_first_name\":\"jayon\",\"rotowire_id\":11963,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1204,\"age\":25,\"full_name\":\"Jayon Brown\",\"sportradar_id\":\"29c53cbc-9d94-46af-b46a-674f9c1e5c79\",\"pandascore_id\":null,\"yahoo_id\":30268,\"last_name\":\"Brown\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"UCLA\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jayonbrown\",\"birth_date\":\"1995-02-26\",\"espn_id\":3047559},\"1105\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029689\",\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567351534824,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"1105\",\"birth_city\":null,\"fantasy_data_id\":13987,\"years_exp\":8,\"hashtag\":\"#DwayneAllen-NFL-FA-89\",\"search_first_name\":\"dwayne\",\"rotowire_id\":8041,\"rotoworld_id\":7452,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Dwayne Allen\",\"sportradar_id\":\"cc745cc3-d52a-454b-98c8-ac9155a9405c\",\"pandascore_id\":null,\"yahoo_id\":25774,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Terry Sanford (NC)\",\"depth_chart_order\":null,\"stats_id\":463515,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dwayneallen\",\"birth_date\":\"1990-02-24\",\"espn_id\":14901},\"439\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026027\",\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1567624259662,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jansen\",\"depth_chart_position\":null,\"player_id\":\"439\",\"birth_city\":null,\"fantasy_data_id\":9162,\"years_exp\":12,\"hashtag\":\"#JJJansen-NFL-CAR-44\",\"search_first_name\":\"jj\",\"rotowire_id\":7078,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"J.J. Jansen\",\"sportradar_id\":\"e2ee3901-8de4-4585-a6ca-b7d77d271d9e\",\"pandascore_id\":null,\"yahoo_id\":9585,\"last_name\":\"Jansen\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Brophy Prep (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jjjansen\",\"birth_date\":\"1986-01-20\",\"espn_id\":11759},\"270\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lance\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"270\",\"birth_city\":null,\"fantasy_data_id\":6768,\"years_exp\":15,\"hashtag\":\"#LanceMoore-NFL-FA-16\",\"search_first_name\":\"lance\",\"rotowire_id\":4717,\"rotoworld_id\":3545,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Lance Moore\",\"sportradar_id\":\"65ec05af-e851-4988-86f4-62c4f775a1a3\",\"pandascore_id\":null,\"yahoo_id\":7544,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Westerville South (OH)\",\"depth_chart_order\":null,\"stats_id\":166655,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"lancemoore\",\"birth_date\":\"1983-08-31\",\"espn_id\":9400},\"5613\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034461\",\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597006251123,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hector\",\"depth_chart_position\":null,\"player_id\":\"5613\",\"birth_city\":null,\"fantasy_data_id\":20541,\"years_exp\":2,\"hashtag\":\"#BruceHector-NFL-CAR-77\",\"search_first_name\":\"bruce\",\"rotowire_id\":13280,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1489,\"age\":26,\"full_name\":\"Bruce Hector\",\"sportradar_id\":\"dcd1b7b0-5768-4b66-b760-30dbcfd04b93\",\"pandascore_id\":null,\"yahoo_id\":31572,\"last_name\":\"Hector\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Robinson (FL)\",\"depth_chart_order\":null,\"stats_id\":741773,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brucehector\",\"birth_date\":\"1994-10-07\",\"espn_id\":3051369},\"4265\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033975\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567530919504,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hood\",\"depth_chart_position\":null,\"player_id\":\"4265\",\"birth_city\":null,\"fantasy_data_id\":19111,\"years_exp\":3,\"hashtag\":\"#ElijahHood-NFL-FA-35\",\"search_first_name\":\"elijah\",\"rotowire_id\":11706,\"rotoworld_id\":12200,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Elijah Hood\",\"sportradar_id\":\"385eccc0-c138-4cda-8c50-84b996d21b8f\",\"pandascore_id\":null,\"yahoo_id\":30354,\"last_name\":\"Hood\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":823107,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"5'11\\\"\",\"search_full_name\":\"elijahhood\",\"birth_date\":\"1996-04-22\",\"espn_id\":3116690},\"6774\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"easterby\",\"depth_chart_position\":null,\"player_id\":\"6774\",\"birth_city\":null,\"fantasy_data_id\":21858,\"years_exp\":0,\"hashtag\":\"#JackEasterby-NFL-FA-0\",\"search_first_name\":\"jack\",\"rotowire_id\":null,\"rotoworld_id\":14866,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jack Easterby\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Easterby\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jackeasterby\",\"birth_date\":null,\"espn_id\":null},\"1085\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029677\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1533997544873,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"weeden\",\"depth_chart_position\":null,\"player_id\":\"1085\",\"birth_city\":null,\"fantasy_data_id\":13910,\"years_exp\":8,\"hashtag\":\"#BrandonWeeden-NFL-FA-3\",\"search_first_name\":\"brandon\",\"rotowire_id\":8056,\"rotoworld_id\":7480,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Brandon Weeden\",\"sportradar_id\":\"01291a8d-d97c-4d88-b497-b5ad4b72f626\",\"pandascore_id\":null,\"yahoo_id\":25732,\"last_name\":\"Weeden\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Edmond Santa Fe (OK)\",\"depth_chart_order\":null,\"stats_id\":397523,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonweeden\",\"birth_date\":\"1983-10-14\",\"espn_id\":14878},\"631\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1583276417393,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boone\",\"depth_chart_position\":null,\"player_id\":\"631\",\"birth_city\":null,\"fantasy_data_id\":11577,\"years_exp\":11,\"hashtag\":\"#AlexBoone-NFL-FA-75\",\"search_first_name\":\"alex\",\"rotowire_id\":7138,\"rotoworld_id\":5247,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Alex Boone\",\"sportradar_id\":\"d7055ba2-f8b4-4407-b491-60c05dff6162\",\"pandascore_id\":null,\"yahoo_id\":9649,\"last_name\":\"Boone\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Edward (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'8\\\"\",\"search_full_name\":\"alexboone\",\"birth_date\":\"1987-05-04\",\"espn_id\":12910},\"4843\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maysiii\",\"depth_chart_position\":null,\"player_id\":\"4843\",\"birth_city\":null,\"fantasy_data_id\":19746,\"years_exp\":2,\"hashtag\":\"#WillieMaysIII-NFL-FA-71\",\"search_first_name\":\"willie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Willie Mays III\",\"sportradar_id\":\"c7f3f107-e798-4b81-8465-e78002ad3b51\",\"pandascore_id\":null,\"yahoo_id\":30952,\"last_name\":\"Mays III\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"williemaysiii\",\"birth_date\":null,\"espn_id\":4069948},\"1136\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029627\",\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597981834819,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":\"DE\",\"player_id\":\"1136\",\"birth_city\":null,\"fantasy_data_id\":14096,\"years_exp\":8,\"hashtag\":\"#JackCrawford-NFL-TEN-94\",\"search_first_name\":\"jack\",\"rotowire_id\":8148,\"rotoworld_id\":7608,\"active\":true,\"search_rank\":673,\"age\":32,\"full_name\":\"Jack Crawford\",\"sportradar_id\":\"3a2a4022-a54c-4325-b521-e46e460559ab\",\"pandascore_id\":null,\"yahoo_id\":25868,\"last_name\":\"Crawford\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Penn State\",\"high_school\":\"St. Augustine Prep (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jackcrawford\",\"birth_date\":\"1988-09-07\",\"espn_id\":15090},\"5791\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034883\",\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534541731493,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":null,\"player_id\":\"5791\",\"birth_city\":null,\"fantasy_data_id\":20690,\"years_exp\":2,\"hashtag\":\"#GeraldHolmes-NFL-FA-34\",\"search_first_name\":\"gerald\",\"rotowire_id\":13385,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Gerald Holmes\",\"sportradar_id\":\"8b08fa71-adf7-400c-84d7-f247e57ea93f\",\"pandascore_id\":null,\"yahoo_id\":31787,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748700,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"geraldholmes\",\"birth_date\":\"1994-11-15\",\"espn_id\":3052624},\"3204\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032393\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606479003173,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"prosise\",\"depth_chart_position\":\"RB\",\"player_id\":\"3204\",\"birth_city\":null,\"fantasy_data_id\":17965,\"years_exp\":4,\"hashtag\":\"#CJProsise-NFL-HOU-24\",\"search_first_name\":\"cj\",\"rotowire_id\":10738,\"rotoworld_id\":11319,\"active\":true,\"search_rank\":966,\"age\":26,\"full_name\":\"C.J. Prosise\",\"sportradar_id\":\"f4992e8f-73f0-43e4-a9ca-c83953fe3f5b\",\"pandascore_id\":null,\"yahoo_id\":29324,\"last_name\":\"Prosise\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Woodberry Forest (VA)\",\"depth_chart_order\":2,\"stats_id\":697479,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cjprosise\",\"birth_date\":\"1994-05-20\",\"espn_id\":2980148},\"6536\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035334\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600737617849,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"strong\",\"depth_chart_position\":null,\"player_id\":\"6536\",\"birth_city\":null,\"fantasy_data_id\":21536,\"years_exp\":1,\"hashtag\":\"#KevinStrong-NFL-DET-92\",\"search_first_name\":\"kevin\",\"rotowire_id\":14213,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1756,\"age\":24,\"full_name\":\"Kevin Strong\",\"sportradar_id\":\"6c8c270b-7412-452a-a221-7ec5600cc2a3\",\"pandascore_id\":null,\"yahoo_id\":32461,\"last_name\":\"Strong\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":\"Cleveland (TX)\",\"depth_chart_order\":null,\"stats_id\":835485,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kevinstrong\",\"birth_date\":\"1996-08-05\",\"espn_id\":3124052},\"6856\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605540917899,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pride\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6856\",\"birth_city\":null,\"fantasy_data_id\":22055,\"years_exp\":0,\"hashtag\":\"#TroyPride-NFL-CAR-25\",\"search_first_name\":\"troy\",\"rotowire_id\":14581,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1890,\"age\":22,\"full_name\":\"Troy Pride\",\"sportradar_id\":\"0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9\",\"pandascore_id\":null,\"yahoo_id\":32783,\"last_name\":\"Pride\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Greer (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"troypride\",\"birth_date\":\"1998-01-19\",\"espn_id\":4046679},\"4331\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033269\",\"first_name\":\"Rigoberto\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1572540038465,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sanchez\",\"depth_chart_position\":null,\"player_id\":\"4331\",\"birth_city\":null,\"fantasy_data_id\":19187,\"years_exp\":3,\"hashtag\":\"#RigobertoSanchez-NFL-IND-8\",\"search_first_name\":\"rigoberto\",\"rotowire_id\":12390,\"rotoworld_id\":12663,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rigoberto Sanchez\",\"sportradar_id\":\"8237c04f-a1c4-4c31-b5de-3afb3c81389f\",\"pandascore_id\":null,\"yahoo_id\":30534,\"last_name\":\"Sanchez\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Hamilton Union (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rigobertosanchez\",\"birth_date\":\"1994-09-08\",\"espn_id\":3914922},\"2197\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031236\",\"first_name\":\"Brandin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606427759318,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cooks\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2197\",\"birth_city\":null,\"fantasy_data_id\":16568,\"years_exp\":6,\"hashtag\":\"#BrandinCooks-NFL-HOU-13\",\"search_first_name\":\"brandin\",\"rotowire_id\":9260,\"rotoworld_id\":9404,\"active\":true,\"search_rank\":79,\"age\":27,\"full_name\":\"Brandin Cooks\",\"sportradar_id\":\"b6b954eb-4591-4b7a-86b9-a481f15fdd58\",\"pandascore_id\":null,\"yahoo_id\":27548,\"last_name\":\"Cooks\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Lincoln (CA)\",\"depth_chart_order\":1,\"stats_id\":607864,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"brandincooks\",\"birth_date\":\"1993-09-25\",\"espn_id\":16731},\"931\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"931\",\"birth_city\":null,\"fantasy_data_id\":13240,\"years_exp\":9,\"hashtag\":\"#BrandianRoss-NFL-FA-27\",\"search_first_name\":\"brandian\",\"rotowire_id\":7857,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Brandian Ross\",\"sportradar_id\":\"b825885a-cbcf-4b7e-a417-4bf2af49835c\",\"pandascore_id\":null,\"yahoo_id\":25473,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Youngstown State\",\"high_school\":\"Meadowbrook (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandianross\",\"birth_date\":\"1989-09-28\",\"espn_id\":14697},\"6185\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035282\",\"first_name\":\"Easton\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1601224840018,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stick\",\"depth_chart_position\":\"QB\",\"player_id\":\"6185\",\"birth_city\":null,\"fantasy_data_id\":20953,\"years_exp\":1,\"hashtag\":\"#EastonStick-NFL-LAC-2\",\"search_first_name\":\"easton\",\"rotowire_id\":13627,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1602,\"age\":25,\"full_name\":\"Easton Stick\",\"sportradar_id\":\"af291d43-a51f-44ce-b8ac-430ec68c78c8\",\"pandascore_id\":null,\"yahoo_id\":31998,\"last_name\":\"Stick\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Creighton Prep (NE)\",\"depth_chart_order\":3,\"stats_id\":831007,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"eastonstick\",\"birth_date\":\"1995-09-15\",\"espn_id\":3120590},\"797\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rogers\",\"depth_chart_position\":null,\"player_id\":\"797\",\"birth_city\":null,\"fantasy_data_id\":12740,\"years_exp\":9,\"hashtag\":\"#JustinRogers-NFL-FA-35\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Justin Rogers\",\"sportradar_id\":\"cd027e2e-1b7e-48cc-908e-fec67cf2c05d\",\"pandascore_id\":null,\"yahoo_id\":24993,\"last_name\":\"Rogers\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Redemptorist (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'11\\\"\",\"search_full_name\":\"justinrogers\",\"birth_date\":\"1988-01-16\",\"espn_id\":14071},\"5379\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034756\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604096140435,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"flowers\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5379\",\"birth_city\":null,\"fantasy_data_id\":19951,\"years_exp\":2,\"hashtag\":\"#TreFlowers-NFL-SEA-21\",\"search_first_name\":\"tre\",\"rotowire_id\":12671,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1362,\"age\":25,\"full_name\":\"Tre Flowers\",\"sportradar_id\":\"73c958ee-0d55-49e9-a613-f4475b444fd5\",\"pandascore_id\":null,\"yahoo_id\":31116,\"last_name\":\"Flowers\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Judson (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'3\\\"\",\"search_full_name\":\"treflowers\",\"birth_date\":\"1995-06-02\",\"espn_id\":3046326},\"4100\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033915\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1573000817906,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4100\",\"birth_city\":null,\"fantasy_data_id\":18946,\"years_exp\":3,\"hashtag\":\"#TimWilliams-NFL-SEA-47\",\"search_first_name\":\"tim\",\"rotowire_id\":11952,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1144,\"age\":26,\"full_name\":\"Tim Williams\",\"sportradar_id\":\"e1677afe-2d03-4e11-b6af-ba3810720799\",\"pandascore_id\":null,\"yahoo_id\":30191,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"University Lab (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"timwilliams\",\"birth_date\":\"1993-11-12\",\"espn_id\":3054862},\"4806\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033268\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1514938801672,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"radcliff\",\"depth_chart_position\":null,\"player_id\":\"4806\",\"birth_city\":null,\"fantasy_data_id\":19186,\"years_exp\":3,\"hashtag\":\"#BrandonRadcliff-NFL-FA-37\",\"search_first_name\":\"brandon\",\"rotowire_id\":12336,\"rotoworld_id\":12662,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brandon Radcliff\",\"sportradar_id\":\"bab97866-4834-4b76-a712-fb7069a5f803\",\"pandascore_id\":null,\"yahoo_id\":30533,\"last_name\":\"Radcliff\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":692182,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'9\\\"\",\"search_full_name\":\"brandonradcliff\",\"birth_date\":\"1993-03-18\",\"espn_id\":2970183},\"4427\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033393\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605903902739,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":\"NB\",\"player_id\":\"4427\",\"birth_city\":null,\"fantasy_data_id\":19287,\"years_exp\":3,\"hashtag\":\"#KennyMoore-NFL-IND-23\",\"search_first_name\":\"kenny\",\"rotowire_id\":12431,\"rotoworld_id\":12775,\"active\":true,\"search_rank\":1249,\"age\":25,\"full_name\":\"Kenny Moore\",\"sportradar_id\":\"cbfb7144-357e-4feb-82d7-a6104fdbf908\",\"pandascore_id\":null,\"yahoo_id\":30669,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":\"Lowndes (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"kennymoore\",\"birth_date\":\"1995-08-23\",\"espn_id\":4218312},\"5582\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034312\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535838931569,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"5582\",\"birth_city\":null,\"fantasy_data_id\":20583,\"years_exp\":2,\"hashtag\":\"#BrettTaylor-NFL-FA-45\",\"search_first_name\":\"brett\",\"rotowire_id\":13173,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brett Taylor\",\"sportradar_id\":\"16912b78-47fa-4742-ac95-60df2585a00e\",\"pandascore_id\":null,\"yahoo_id\":31511,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bretttaylor\",\"birth_date\":\"1994-08-08\",\"espn_id\":3049262},\"3866\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hansley\",\"depth_chart_position\":null,\"player_id\":\"3866\",\"birth_city\":null,\"fantasy_data_id\":18688,\"years_exp\":0,\"hashtag\":\"#JoeHansley-NFL-FA-9\",\"search_first_name\":\"joe\",\"rotowire_id\":11519,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joe Hansley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29998,\"last_name\":\"Hansley\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"169\",\"height\":\"5'9\\\"\",\"search_full_name\":\"joehansley\",\"birth_date\":\"1994-02-07\",\"espn_id\":2973604},\"3161\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032950\",\"first_name\":\"Carson\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606345502334,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wentz\",\"depth_chart_position\":\"QB\",\"player_id\":\"3161\",\"birth_city\":null,\"fantasy_data_id\":17920,\"years_exp\":4,\"hashtag\":\"#CarsonWentz-NFL-PHI-11\",\"search_first_name\":\"carson\",\"rotowire_id\":10856,\"rotoworld_id\":11257,\"active\":true,\"search_rank\":104,\"age\":27,\"full_name\":\"Carson Wentz\",\"sportradar_id\":\"e9a5c16b-4472-4be9-8030-3f77be7890cb\",\"pandascore_id\":null,\"yahoo_id\":29236,\"last_name\":\"Wentz\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Century (ND)\",\"depth_chart_order\":1,\"stats_id\":613866,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'5\\\"\",\"search_full_name\":\"carsonwentz\",\"birth_date\":\"1992-12-30\",\"espn_id\":2573079},\"1265\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daryl\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"1265\",\"birth_city\":null,\"fantasy_data_id\":14696,\"years_exp\":8,\"hashtag\":\"#DarylRichardson-NFL-FA-43\",\"search_first_name\":\"daryl\",\"rotowire_id\":8309,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Daryl Richardson\",\"sportradar_id\":\"837bce25-3d09-47a7-9840-b9afa3c0074c\",\"pandascore_id\":null,\"yahoo_id\":25962,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Abilene Christian\",\"high_school\":\"Sandalwood (FL)\",\"depth_chart_order\":null,\"stats_id\":616069,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'10\\\"\",\"search_full_name\":\"darylrichardson\",\"birth_date\":\"1990-04-12\",\"espn_id\":15111},\"2398\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032269\",\"first_name\":\"Henry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605913503485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"LDE\",\"player_id\":\"2398\",\"birth_city\":null,\"fantasy_data_id\":16854,\"years_exp\":5,\"hashtag\":\"#HenryAnderson-NFL-NYJ-96\",\"search_first_name\":\"henry\",\"rotowire_id\":10324,\"rotoworld_id\":10472,\"active\":true,\"search_rank\":884,\"age\":29,\"full_name\":\"Henry Anderson\",\"sportradar_id\":\"2d3a6c81-183f-431b-9b3f-d7f1ce2b294b\",\"pandascore_id\":null,\"yahoo_id\":28481,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Woodward Academy (GA)\",\"depth_chart_order\":1,\"stats_id\":553067,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'6\\\"\",\"search_full_name\":\"henryanderson\",\"birth_date\":\"1991-08-03\",\"espn_id\":2517752},\"3893\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033092\",\"first_name\":\"Reece\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1554855027159,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"horn\",\"depth_chart_position\":\"SWR\",\"player_id\":\"3893\",\"birth_city\":null,\"fantasy_data_id\":18715,\"years_exp\":4,\"hashtag\":\"#ReeceHorn-NFL-FA-18\",\"search_first_name\":\"reece\",\"rotowire_id\":11398,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Reece Horn\",\"sportradar_id\":\"f28143c1-321c-4c45-a717-c154ee4cb6a4\",\"pandascore_id\":null,\"yahoo_id\":30063,\"last_name\":\"Horn\",\"metadata\":null,\"college\":\"Indianapolis\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":704783,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'3\\\"\",\"search_full_name\":\"reecehorn\",\"birth_date\":\"1993-02-01\",\"espn_id\":2989641},\"2234\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031386\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1582166430796,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"2234\",\"birth_city\":null,\"fantasy_data_id\":16631,\"years_exp\":6,\"hashtag\":\"#GregRobinson-NFL-FA-78\",\"search_first_name\":\"greg\",\"rotowire_id\":9279,\"rotoworld_id\":9313,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Greg Robinson\",\"sportradar_id\":\"b7628a7f-101e-4ae3-ad6a-470ef00ffd32\",\"pandascore_id\":null,\"yahoo_id\":27530,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Thibodaux (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"332\",\"height\":\"6'5\\\"\",\"search_full_name\":\"gregrobinson\",\"birth_date\":\"1992-10-21\",\"espn_id\":7439},\"4588\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033672\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604961928985,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sloter\",\"depth_chart_position\":\"QB\",\"player_id\":\"4588\",\"birth_city\":null,\"fantasy_data_id\":19475,\"years_exp\":3,\"hashtag\":\"#KyleSloter-NFL-CHI-1\",\"search_first_name\":\"kyle\",\"rotowire_id\":12363,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Sloter\",\"sportradar_id\":\"e23505d9-b677-4a86-ba17-564c165a6e66\",\"pandascore_id\":null,\"yahoo_id\":30822,\"last_name\":\"Sloter\",\"metadata\":null,\"college\":\"Northern Colorado\",\"high_school\":\"Mount Pisgah Christian (GA)\",\"depth_chart_order\":4,\"stats_id\":693430,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kylesloter\",\"birth_date\":\"1994-02-07\",\"espn_id\":2972092},\"811\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028011\",\"first_name\":\"Stevan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1546397118514,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ridley\",\"depth_chart_position\":null,\"player_id\":\"811\",\"birth_city\":null,\"fantasy_data_id\":12774,\"years_exp\":9,\"hashtag\":\"#StevanRidley-NFL-FA-22\",\"search_first_name\":\"stevan\",\"rotowire_id\":7361,\"rotoworld_id\":6487,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Stevan Ridley\",\"sportradar_id\":\"170b4c5f-a345-4899-8d81-e8982b0f3d65\",\"pandascore_id\":null,\"yahoo_id\":24860,\"last_name\":\"Ridley\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Trinity Episcopal (MS)\",\"depth_chart_order\":null,\"stats_id\":381639,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"stevanridley\",\"birth_date\":\"1989-01-27\",\"espn_id\":14028},\"1557\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030469\",\"first_name\":\"Johnthan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1507679941362,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"banks\",\"depth_chart_position\":null,\"player_id\":\"1557\",\"birth_city\":null,\"fantasy_data_id\":15199,\"years_exp\":7,\"hashtag\":\"#JohnthanBanks-NFL-FA-33\",\"search_first_name\":\"johnthan\",\"rotowire_id\":8638,\"rotoworld_id\":8446,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Johnthan Banks\",\"sportradar_id\":\"ed34cf85-1e5f-4967-89b0-3ff70e5555fa\",\"pandascore_id\":null,\"yahoo_id\":26666,\"last_name\":\"Banks\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"East Webster (MS)\",\"depth_chart_order\":null,\"stats_id\":512197,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnthanbanks\",\"birth_date\":\"1989-10-03\",\"espn_id\":15824},\"6340\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035461\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"middleton\",\"depth_chart_position\":null,\"player_id\":\"6340\",\"birth_city\":null,\"fantasy_data_id\":21247,\"years_exp\":1,\"hashtag\":\"#ChaseMiddleton-NFL-FA-35\",\"search_first_name\":\"chase\",\"rotowire_id\":14230,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chase Middleton\",\"sportradar_id\":\"b454036c-4cca-4b02-b847-c7c9f68c345d\",\"pandascore_id\":null,\"yahoo_id\":32514,\"last_name\":\"Middleton\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chasemiddleton\",\"birth_date\":\"1997-03-24\",\"espn_id\":3917548},\"48\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1523889601701,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harrison\",\"depth_chart_position\":null,\"player_id\":\"48\",\"birth_city\":null,\"fantasy_data_id\":1370,\"years_exp\":18,\"hashtag\":\"#JamesHarrison-NFL-FA-92\",\"search_first_name\":\"james\",\"rotowire_id\":4291,\"rotoworld_id\":665,\"active\":false,\"search_rank\":9999999,\"age\":42,\"full_name\":\"James Harrison\",\"sportradar_id\":\"aeca5ea8-967c-4113-9c7a-2d7b91a84b1e\",\"pandascore_id\":null,\"yahoo_id\":6314,\"last_name\":\"Harrison\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":\"Coventry (OH)\",\"depth_chart_order\":null,\"stats_id\":183237,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jamesharrison\",\"birth_date\":\"1978-05-04\",\"espn_id\":4433},\"140\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Erin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"140\",\"birth_city\":null,\"fantasy_data_id\":3825,\"years_exp\":12,\"hashtag\":\"#ErinHenderson-NFL-FA-58\",\"search_first_name\":\"erin\",\"rotowire_id\":5597,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Erin Henderson\",\"sportradar_id\":\"0612e146-6fa8-4770-a3a7-a142e46678cd\",\"pandascore_id\":null,\"yahoo_id\":9045,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Aberdeen (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"erinhenderson\",\"birth_date\":\"1986-07-01\",\"espn_id\":11636},\"3357\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032434\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606319460465,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"QB\",\"player_id\":\"3357\",\"birth_city\":null,\"fantasy_data_id\":18118,\"years_exp\":4,\"hashtag\":\"#BrandonAllen-NFL-CIN-8\",\"search_first_name\":\"brandon\",\"rotowire_id\":10882,\"rotoworld_id\":11488,\"active\":true,\"search_rank\":1031,\"age\":28,\"full_name\":\"Brandon Allen\",\"sportradar_id\":\"a8c3bcd7-69d0-4c5e-a876-6b33857942bc\",\"pandascore_id\":null,\"yahoo_id\":29435,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Fayetteville (AR)\",\"depth_chart_order\":1,\"stats_id\":604390,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brandonallen\",\"birth_date\":\"1992-09-05\",\"espn_id\":2574511},\"3050\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"SWR\",\"player_id\":\"3050\",\"birth_city\":null,\"fantasy_data_id\":17765,\"years_exp\":3,\"hashtag\":\"#MylesWhite-NFL-NYJ-16\",\"search_first_name\":\"myles\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":699,\"age\":27,\"full_name\":\"Myles White\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":27361,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'0\\\"\",\"search_full_name\":\"myleswhite\",\"birth_date\":\"1990-03-03\",\"espn_id\":null},\"5654\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534472439482,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":null,\"player_id\":\"5654\",\"birth_city\":null,\"fantasy_data_id\":20403,\"years_exp\":2,\"hashtag\":\"#StephenRoberts-NFL-FA-38\",\"search_first_name\":\"stephen\",\"rotowire_id\":12956,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Stephen Roberts\",\"sportradar_id\":\"d19ec722-8d49-49d1-9c89-fff955583322\",\"pandascore_id\":null,\"yahoo_id\":31585,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"stephenroberts\",\"birth_date\":\"1996-01-21\",\"espn_id\":3121589},\"2755\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031690\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606173915716,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tomlinson\",\"depth_chart_position\":\"TE\",\"player_id\":\"2755\",\"birth_city\":null,\"fantasy_data_id\":17223,\"years_exp\":5,\"hashtag\":\"#EricTomlinson-NFL-BAL-83\",\"search_first_name\":\"eric\",\"rotowire_id\":10553,\"rotoworld_id\":null,\"active\":true,\"search_rank\":929,\"age\":28,\"full_name\":\"Eric Tomlinson\",\"sportradar_id\":\"b3d7169b-9cf6-4fea-815a-26e4fb0ec16a\",\"pandascore_id\":null,\"yahoo_id\":28658,\"last_name\":\"Tomlinson\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":\"Klein (TX)\",\"depth_chart_order\":5,\"stats_id\":554431,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'6\\\"\",\"search_full_name\":\"erictomlinson\",\"birth_date\":\"1992-04-22\",\"espn_id\":2511973},\"3928\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walsh\",\"depth_chart_position\":\"RT\",\"player_id\":\"3928\",\"birth_city\":null,\"fantasy_data_id\":18757,\"years_exp\":0,\"hashtag\":\"#JordanWalsh-NFL-FA-79\",\"search_first_name\":\"jordan\",\"rotowire_id\":11629,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Walsh\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30055,\"last_name\":\"Walsh\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanwalsh\",\"birth_date\":\"1992-12-11\",\"espn_id\":null},\"3299\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032413\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602891605065,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"blair\",\"depth_chart_position\":null,\"player_id\":\"3299\",\"birth_city\":null,\"fantasy_data_id\":18060,\"years_exp\":4,\"hashtag\":\"#RonaldBlair-NFL-SF-98\",\"search_first_name\":\"ronald\",\"rotowire_id\":10908,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1014,\"age\":27,\"full_name\":\"Ronald Blair\",\"sportradar_id\":\"e8fa43ed-ae19-4603-b69c-a555664bd368\",\"pandascore_id\":null,\"yahoo_id\":29376,\"last_name\":\"Blair\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Greene County (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ronaldblair\",\"birth_date\":\"1993-01-21\",\"espn_id\":2567711},\"1807\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029151\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1567624859334,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simms\",\"depth_chart_position\":null,\"player_id\":\"1807\",\"birth_city\":null,\"fantasy_data_id\":15982,\"years_exp\":8,\"hashtag\":\"#MattSimms-NFL-FA-0\",\"search_first_name\":\"matt\",\"rotowire_id\":8374,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Matt Simms\",\"sportradar_id\":\"a6155092-1005-4b4c-8e37-21422ce93b42\",\"pandascore_id\":null,\"yahoo_id\":26317,\"last_name\":\"Simms\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":403313,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattsimms\",\"birth_date\":\"1988-09-27\",\"espn_id\":15407},\"4060\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"licht\",\"depth_chart_position\":null,\"player_id\":\"4060\",\"birth_city\":null,\"fantasy_data_id\":18906,\"years_exp\":0,\"hashtag\":\"#JasonLicht-NFL-FA-0\",\"search_first_name\":\"jason\",\"rotowire_id\":null,\"rotoworld_id\":9345,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jason Licht\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Licht\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jasonlicht\",\"birth_date\":null,\"espn_id\":null},\"5159\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034481\",\"first_name\":\"Deatrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597376436156,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nichols\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5159\",\"birth_city\":null,\"fantasy_data_id\":20086,\"years_exp\":2,\"hashtag\":\"#DeatrickNichols-NFL-FA-0\",\"search_first_name\":\"deatrick\",\"rotowire_id\":12758,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1414,\"age\":26,\"full_name\":\"Deatrick Nichols\",\"sportradar_id\":\"2238219b-a0bc-464f-b83d-ff902e65bb87\",\"pandascore_id\":null,\"yahoo_id\":31314,\"last_name\":\"Nichols\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'10\\\"\",\"search_full_name\":\"deatricknichols\",\"birth_date\":\"1994-06-08\",\"espn_id\":3126311},\"3896\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Benson\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"browne\",\"depth_chart_position\":null,\"player_id\":\"3896\",\"birth_city\":null,\"fantasy_data_id\":18719,\"years_exp\":0,\"hashtag\":\"#BensonBrowne-NFL-FA-82\",\"search_first_name\":\"benson\",\"rotowire_id\":11569,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Benson Browne\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30026,\"last_name\":\"Browne\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":600746,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bensonbrowne\",\"birth_date\":\"1992-09-29\",\"espn_id\":null},\"6882\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darnay\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604188846189,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6882\",\"birth_city\":null,\"fantasy_data_id\":22050,\"years_exp\":0,\"hashtag\":\"#DarnayHolmes-NFL-NYG-30\",\"search_first_name\":\"darnay\",\"rotowire_id\":14535,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1885,\"age\":22,\"full_name\":\"Darnay Holmes\",\"sportradar_id\":\"8e19d167-cee8-4048-8f28-d476b11ec330\",\"pandascore_id\":null,\"yahoo_id\":32780,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Calabasas (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"darnayholmes\",\"birth_date\":\"1998-06-23\",\"espn_id\":4242973},\"1635\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029910\",\"first_name\":\"Timothy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1523420401117,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"1635\",\"birth_city\":null,\"fantasy_data_id\":15367,\"years_exp\":7,\"hashtag\":\"#TimothyWright-NFL-FA-81\",\"search_first_name\":\"timothy\",\"rotowire_id\":9136,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Timothy Wright\",\"sportradar_id\":\"6310d6aa-02d4-46de-8839-9251cb319dea\",\"pandascore_id\":null,\"yahoo_id\":27050,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Wall\",\"depth_chart_order\":null,\"stats_id\":464779,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"timothywright\",\"birth_date\":\"1990-04-07\",\"espn_id\":16285},\"651\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Santonio\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"holmes\",\"depth_chart_position\":null,\"player_id\":\"651\",\"birth_city\":null,\"fantasy_data_id\":11697,\"years_exp\":9,\"hashtag\":\"#SantonioHolmes-NFL-FA-14\",\"search_first_name\":\"santonio\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Santonio Holmes\",\"sportradar_id\":\"859a34fe-86c3-42dc-940f-5856a671fe02\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Holmes\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"santonioholmes\",\"birth_date\":\"1984-03-03\",\"espn_id\":9611},\"4613\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaq\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"4613\",\"birth_city\":null,\"fantasy_data_id\":19503,\"years_exp\":2,\"hashtag\":\"#ShaqHill-NFL-FA-89\",\"search_first_name\":\"shaq\",\"rotowire_id\":12331,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Shaq Hill\",\"sportradar_id\":\"c1ad41f8-86b0-4801-94b9-027a276eaaa2\",\"pandascore_id\":null,\"yahoo_id\":30809,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":593407,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'10\\\"\",\"search_full_name\":\"shaqhill\",\"birth_date\":\"1993-05-12\",\"espn_id\":2565330},\"2969\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bennett\",\"depth_chart_position\":null,\"player_id\":\"2969\",\"birth_city\":null,\"fantasy_data_id\":17461,\"years_exp\":1,\"hashtag\":\"#MichaelBennett-NFL-FA-80\",\"search_first_name\":\"michael\",\"rotowire_id\":10638,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Michael Bennett\",\"sportradar_id\":\"d446a34b-5045-4462-9f27-7ce3cdebcb5c\",\"pandascore_id\":null,\"yahoo_id\":29201,\"last_name\":\"Bennett\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":552814,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaelbennett\",\"birth_date\":\"1991-12-19\",\"espn_id\":2516079},\"321\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerome\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simpson\",\"depth_chart_position\":null,\"player_id\":\"321\",\"birth_city\":null,\"fantasy_data_id\":7857,\"years_exp\":12,\"hashtag\":\"#JeromeSimpson-NFL-FA-14\",\"search_first_name\":\"jerome\",\"rotowire_id\":5683,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jerome Simpson\",\"sportradar_id\":\"3fd6bc25-acc1-40c1-b813-610be538a736\",\"pandascore_id\":null,\"yahoo_id\":8823,\"last_name\":\"Simpson\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":\"Reidsville (NC)\",\"depth_chart_order\":null,\"stats_id\":268442,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeromesimpson\",\"birth_date\":\"1986-02-04\",\"espn_id\":11280},\"2540\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ifo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ekpreolomu\",\"depth_chart_position\":null,\"player_id\":\"2540\",\"birth_city\":null,\"fantasy_data_id\":17000,\"years_exp\":1,\"hashtag\":\"#IfoEkpreOlomu-NFL-FA-33\",\"search_first_name\":\"ifo\",\"rotowire_id\":10415,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ifo Ekpre-Olomu\",\"sportradar_id\":\"67c55b91-727c-4229-bc2b-95db080f44be\",\"pandascore_id\":null,\"yahoo_id\":28629,\"last_name\":\"Ekpre-Olomu\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ifoekpreolomu\",\"birth_date\":\"1993-07-10\",\"espn_id\":2576969},\"1078\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028932\",\"first_name\":\"L.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606063217265,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fort\",\"depth_chart_position\":\"WLB\",\"player_id\":\"1078\",\"birth_city\":null,\"fantasy_data_id\":13892,\"years_exp\":8,\"hashtag\":\"#LJFort-NFL-BAL-58\",\"search_first_name\":\"lj\",\"rotowire_id\":8526,\"rotoworld_id\":null,\"active\":true,\"search_rank\":665,\"age\":30,\"full_name\":\"L.J. Fort\",\"sportradar_id\":\"0cc99dff-5895-48ed-9f30-e70e916bb52a\",\"pandascore_id\":null,\"yahoo_id\":26370,\"last_name\":\"Fort\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":\"Waynesville (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ljfort\",\"birth_date\":\"1990-01-03\",\"espn_id\":15264},\"3079\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1578333937599,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccarthy\",\"depth_chart_position\":null,\"player_id\":\"3079\",\"birth_city\":null,\"fantasy_data_id\":17827,\"years_exp\":0,\"hashtag\":\"#MikeMcCarthy-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":8346,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike McCarthy\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McCarthy\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikemccarthy\",\"birth_date\":null,\"espn_id\":null},\"4611\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033770\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1604766950556,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hardee\",\"depth_chart_position\":null,\"player_id\":\"4611\",\"birth_city\":null,\"fantasy_data_id\":19501,\"years_exp\":3,\"hashtag\":\"#JustinHardee-NFL-NO-34\",\"search_first_name\":\"justin\",\"rotowire_id\":12442,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1270,\"age\":26,\"full_name\":\"Justin Hardee\",\"sportradar_id\":\"35150d4a-0dca-4daa-91b3-ffc46d44d1b8\",\"pandascore_id\":null,\"yahoo_id\":30811,\"last_name\":\"Hardee\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":null,\"stats_id\":691750,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justinhardee\",\"birth_date\":\"1994-02-07\",\"espn_id\":2970625},\"3996\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burke\",\"depth_chart_position\":null,\"player_id\":\"3996\",\"birth_city\":null,\"fantasy_data_id\":18833,\"years_exp\":0,\"hashtag\":\"#MattBurke-NFL-FA-0\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":12153,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Matt Burke\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Burke\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mattburke\",\"birth_date\":null,\"espn_id\":null},\"1971\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031339\",\"first_name\":\"Donte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606173015244,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moncrief\",\"depth_chart_position\":\"RWR\",\"player_id\":\"1971\",\"birth_city\":null,\"fantasy_data_id\":16232,\"years_exp\":6,\"hashtag\":\"#DonteMoncrief-NFL-NE-14\",\"search_first_name\":\"donte\",\"rotowire_id\":9276,\"rotoworld_id\":9427,\"active\":true,\"search_rank\":333,\"age\":27,\"full_name\":\"Donte Moncrief\",\"sportradar_id\":\"f404283a-7c04-4a1c-899c-3243424a8d70\",\"pandascore_id\":null,\"yahoo_id\":27618,\"last_name\":\"Moncrief\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Raleigh (MS)\",\"depth_chart_order\":2,\"stats_id\":607351,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dontemoncrief\",\"birth_date\":\"1993-08-06\",\"espn_id\":16791},\"763\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaun\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"suisham\",\"depth_chart_position\":null,\"player_id\":\"763\",\"birth_city\":null,\"fantasy_data_id\":12508,\"years_exp\":12,\"hashtag\":\"#ShaunSuisham-NFL-FA-6\",\"search_first_name\":\"shaun\",\"rotowire_id\":4694,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Shaun Suisham\",\"sportradar_id\":\"d1a06132-76d1-4654-af3e-633c5f07a4b4\",\"pandascore_id\":null,\"yahoo_id\":7527,\"last_name\":\"Suisham\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":144659,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaunsuisham\",\"birth_date\":\"1981-12-29\",\"espn_id\":9361},\"3690\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antwane\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grant\",\"depth_chart_position\":null,\"player_id\":\"3690\",\"birth_city\":null,\"fantasy_data_id\":18490,\"years_exp\":0,\"hashtag\":\"#AntwaneGrant-NFL-FA-82\",\"search_first_name\":\"antwane\",\"rotowire_id\":11361,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Antwane Grant\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29704,\"last_name\":\"Grant\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"antwanegrant\",\"birth_date\":\"1992-08-14\",\"espn_id\":3124785},\"3426\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032875\",\"first_name\":\"Ken\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604261720546,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crawley\",\"depth_chart_position\":\"RCB\",\"player_id\":\"3426\",\"birth_city\":null,\"fantasy_data_id\":18190,\"years_exp\":4,\"hashtag\":\"#KenCrawley-NFL-NO-25\",\"search_first_name\":\"ken\",\"rotowire_id\":10986,\"rotoworld_id\":11624,\"active\":true,\"search_rank\":1049,\"age\":27,\"full_name\":\"Ken Crawley\",\"sportradar_id\":\"f12ecfb0-085f-42d6-b063-97f0bc4fd5ee\",\"pandascore_id\":null,\"yahoo_id\":29842,\"last_name\":\"Crawley\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"H.D. Woodson (DC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kencrawley\",\"birth_date\":\"1993-02-08\",\"espn_id\":2979612},\"2669\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alani\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fua\",\"depth_chart_position\":null,\"player_id\":\"2669\",\"birth_city\":null,\"fantasy_data_id\":17137,\"years_exp\":5,\"hashtag\":\"#AlaniFua-NFL-FA-59\",\"search_first_name\":\"alani\",\"rotowire_id\":10368,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Alani Fua\",\"sportradar_id\":\"f5701032-4b23-4438-8446-6394665312a5\",\"pandascore_id\":null,\"yahoo_id\":28804,\"last_name\":\"Fua\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Oaks Christian (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'5\\\"\",\"search_full_name\":\"alanifua\",\"birth_date\":\"1992-01-01\",\"espn_id\":2513206},\"476\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1515006301457,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"476\",\"birth_city\":null,\"fantasy_data_id\":9783,\"years_exp\":11,\"hashtag\":\"#RashadJohnson-NFL-FA-25\",\"search_first_name\":\"rashad\",\"rotowire_id\":6094,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Rashad Johnson\",\"sportradar_id\":\"07f5c9ca-fdcd-4f76-ba60-28b4da8c1327\",\"pandascore_id\":null,\"yahoo_id\":9359,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Sulligent (AL)\",\"depth_chart_order\":null,\"stats_id\":272105,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rashadjohnson\",\"birth_date\":\"1986-01-02\",\"espn_id\":12674},\"2649\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brindza\",\"depth_chart_position\":null,\"player_id\":\"2649\",\"birth_city\":null,\"fantasy_data_id\":17117,\"years_exp\":5,\"hashtag\":\"#KyleBrindza-NFL-FA-2\",\"search_first_name\":\"kyle\",\"rotowire_id\":10641,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kyle Brindza\",\"sportradar_id\":\"91c4f25c-e9cf-4bd3-baad-8ca97ca6df7e\",\"pandascore_id\":null,\"yahoo_id\":28878,\"last_name\":\"Brindza\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Plymouth (MI)\",\"depth_chart_order\":null,\"stats_id\":592899,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kylebrindza\",\"birth_date\":\"1993-01-13\",\"espn_id\":2576045},\"5147\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034139\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604743848492,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ellerbee\",\"depth_chart_position\":null,\"player_id\":\"5147\",\"birth_city\":null,\"fantasy_data_id\":20094,\"years_exp\":2,\"hashtag\":\"#EmmanuelEllerbee-NFL-HOU-52\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":13090,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Emmanuel Ellerbee\",\"sportradar_id\":\"68c82358-44df-4884-9e5d-f5102435c32d\",\"pandascore_id\":null,\"yahoo_id\":31356,\"last_name\":\"Ellerbee\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Strake Jesuit (TX)\",\"depth_chart_order\":null,\"stats_id\":839369,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"emmanuelellerbee\",\"birth_date\":\"1996-11-20\",\"espn_id\":3123863},\"1414\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0030500\",\"first_name\":\"Nicholas\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605829514148,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RDT\",\"player_id\":\"1414\",\"birth_city\":null,\"fantasy_data_id\":14974,\"years_exp\":7,\"hashtag\":\"#NicholasWilliams-NFL-DET-97\",\"search_first_name\":\"nicholas\",\"rotowire_id\":8969,\"rotoworld_id\":null,\"active\":true,\"search_rank\":755,\"age\":30,\"full_name\":\"Nicholas Williams\",\"sportradar_id\":\"e03775ef-3287-476c-9386-ff16ea31d7b8\",\"pandascore_id\":null,\"yahoo_id\":26846,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Minor (AL)\",\"depth_chart_order\":1,\"stats_id\":459747,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nicholaswilliams\",\"birth_date\":\"1990-02-21\",\"espn_id\":2317118},\"2951\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hornsey\",\"depth_chart_position\":null,\"player_id\":\"2951\",\"birth_city\":null,\"fantasy_data_id\":17423,\"years_exp\":1,\"hashtag\":\"#TomHornsey-NFL-FA-1\",\"search_first_name\":\"tom\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tom Hornsey\",\"sportradar_id\":\"0325693c-570c-4718-b0ec-682453613210\",\"pandascore_id\":null,\"yahoo_id\":28353,\"last_name\":\"Hornsey\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tomhornsey\",\"birth_date\":\"1989-02-17\",\"espn_id\":2515576},\"1305\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028581\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599606612978,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"dimarco\",\"depth_chart_position\":\"RB\",\"player_id\":\"1305\",\"birth_city\":null,\"fantasy_data_id\":14786,\"years_exp\":9,\"hashtag\":\"#PatrickDiMarco-NFL-FA-42\",\"search_first_name\":\"patrick\",\"rotowire_id\":7970,\"rotoworld_id\":6880,\"active\":true,\"search_rank\":702,\"age\":31,\"full_name\":\"Patrick DiMarco\",\"sportradar_id\":\"349f647e-bfc3-4d84-af89-b33f8a08e26e\",\"pandascore_id\":null,\"yahoo_id\":25158,\"last_name\":\"DiMarco\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Lake Brantley (FL)\",\"depth_chart_order\":6,\"stats_id\":406457,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'1\\\"\",\"search_full_name\":\"patrickdimarco\",\"birth_date\":\"1989-04-30\",\"espn_id\":14332},\"4664\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033700\",\"first_name\":\"Nigel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577142658310,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"LILB\",\"player_id\":\"4664\",\"birth_city\":null,\"fantasy_data_id\":19563,\"years_exp\":3,\"hashtag\":\"#NigelHarris-NFL-FA-0\",\"search_first_name\":\"nigel\",\"rotowire_id\":12355,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1277,\"age\":25,\"full_name\":\"Nigel Harris\",\"sportradar_id\":\"57b80476-cfca-4d31-a7c3-cf84ea3261b0\",\"pandascore_id\":null,\"yahoo_id\":30424,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":741772,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nigelharris\",\"birth_date\":\"1994-12-07\",\"espn_id\":3051368},\"3630\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Durron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":null,\"player_id\":\"3630\",\"birth_city\":null,\"fantasy_data_id\":18417,\"years_exp\":0,\"hashtag\":\"#DurronNeal-NFL-FA-5\",\"search_first_name\":\"durron\",\"rotowire_id\":11425,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Durron Neal\",\"sportradar_id\":\"da83ac97-1676-42d1-ac8e-9b4182bd4c36\",\"pandascore_id\":null,\"yahoo_id\":29626,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691274,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"durronneal\",\"birth_date\":\"1992-11-03\",\"espn_id\":2976594},\"2906\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Braylon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"2906\",\"birth_city\":null,\"fantasy_data_id\":17374,\"years_exp\":null,\"hashtag\":\"#BraylonBell-NFL-FA-0\",\"search_first_name\":\"braylon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Braylon Bell\",\"sportradar_id\":\"96b3ac5f-bacf-43e6-9f7d-f6e0e02051dd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bell\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":736104,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"braylonbell\",\"birth_date\":null,\"espn_id\":null},\"1868\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Crockett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1519240801000,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gillmore\",\"depth_chart_position\":null,\"player_id\":\"1868\",\"birth_city\":null,\"fantasy_data_id\":16083,\"years_exp\":6,\"hashtag\":\"#CrockettGillmore-NFL-FA-80\",\"search_first_name\":\"crockett\",\"rotowire_id\":9555,\"rotoworld_id\":9625,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Crockett Gillmore\",\"sportradar_id\":\"988d1e04-588f-405e-968a-08813d019a72\",\"pandascore_id\":null,\"yahoo_id\":27627,\"last_name\":\"Gillmore\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Bushland (TX)\",\"depth_chart_order\":null,\"stats_id\":541468,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"crockettgillmore\",\"birth_date\":\"1991-11-16\",\"espn_id\":16775},\"6037\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034955\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606074619056,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rypien\",\"depth_chart_position\":\"QB\",\"player_id\":\"6037\",\"birth_city\":null,\"fantasy_data_id\":20929,\"years_exp\":1,\"hashtag\":\"#BrettRypien-NFL-DEN-4\",\"search_first_name\":\"brett\",\"rotowire_id\":13620,\"rotoworld_id\":14049,\"active\":true,\"search_rank\":1595,\"age\":24,\"full_name\":\"Brett Rypien\",\"sportradar_id\":\"9ab44516-2a26-4049-b630-66539c7a5dfd\",\"pandascore_id\":null,\"yahoo_id\":32221,\"last_name\":\"Rypien\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Boise State\",\"high_school\":\"Shadle Park (WA)\",\"depth_chart_order\":2,\"stats_id\":866216,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brettrypien\",\"birth_date\":\"1996-07-09\",\"espn_id\":3722362},\"2169\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devonta\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gloverwright\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2169\",\"birth_city\":null,\"fantasy_data_id\":16525,\"years_exp\":5,\"hashtag\":\"#DevontaGloverWright-NFL-FA-47\",\"search_first_name\":\"devonta\",\"rotowire_id\":9850,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Devonta Glover-Wright\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Glover-Wright\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'0\\\"\",\"search_full_name\":\"devontagloverwright\",\"birth_date\":\"1992-06-28\",\"espn_id\":null},\"232\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023500\",\"first_name\":\"Frank\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606580432557,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gore\",\"depth_chart_position\":\"RB\",\"player_id\":\"232\",\"birth_city\":null,\"fantasy_data_id\":5820,\"years_exp\":15,\"hashtag\":\"#FrankGore-NFL-NYJ-21\",\"search_first_name\":\"frank\",\"rotowire_id\":4400,\"rotoworld_id\":3205,\"active\":true,\"search_rank\":187,\"age\":37,\"full_name\":\"Frank Gore\",\"sportradar_id\":\"6a2b129d-a9e5-4131-b491-82269b323f77\",\"pandascore_id\":null,\"yahoo_id\":7241,\"last_name\":\"Gore\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Coral Gables (FL)\",\"depth_chart_order\":1,\"stats_id\":157341,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'9\\\"\",\"search_full_name\":\"frankgore\",\"birth_date\":\"1983-05-14\",\"espn_id\":8479},\"5320\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034287\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1588726503288,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"donnerson\",\"depth_chart_position\":null,\"player_id\":\"5320\",\"birth_city\":null,\"fantasy_data_id\":20060,\"years_exp\":2,\"hashtag\":\"#KendallDonnerson-NFL-CIN-53\",\"search_first_name\":\"kendall\",\"rotowire_id\":13014,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kendall Donnerson\",\"sportradar_id\":\"eb2a534f-2dd9-484c-b464-455311f1a9e3\",\"pandascore_id\":null,\"yahoo_id\":31218,\"last_name\":\"Donnerson\",\"metadata\":null,\"college\":\"Southeast Missouri\",\"high_school\":\"Maumelle (AR)\",\"depth_chart_order\":null,\"stats_id\":832895,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kendalldonnerson\",\"birth_date\":\"1996-04-22\",\"espn_id\":3112083},\"7495\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Courtney\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wallace\",\"depth_chart_position\":null,\"player_id\":\"7495\",\"birth_city\":null,\"fantasy_data_id\":22470,\"years_exp\":0,\"hashtag\":\"#CourtneyWallace-NFL-FA-0\",\"search_first_name\":\"courtney\",\"rotowire_id\":14911,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Courtney Wallace\",\"sportradar_id\":\"7d9db1c5-3b67-4b91-b430-94e60af13d77\",\"pandascore_id\":null,\"yahoo_id\":33324,\"last_name\":\"Wallace\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"courtneywallace\",\"birth_date\":\"1996-12-31\",\"espn_id\":null},\"6769\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Graham\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harrell\",\"depth_chart_position\":null,\"player_id\":\"6769\",\"birth_city\":null,\"fantasy_data_id\":12635,\"years_exp\":10,\"hashtag\":\"#GrahamHarrell-NFL-FA-8\",\"search_first_name\":\"graham\",\"rotowire_id\":null,\"rotoworld_id\":5209,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Graham Harrell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harrell\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"grahamharrell\",\"birth_date\":\"1985-05-22\",\"espn_id\":null},\"3065\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ken\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whisenhunt\",\"depth_chart_position\":null,\"player_id\":\"3065\",\"birth_city\":null,\"fantasy_data_id\":17805,\"years_exp\":0,\"hashtag\":\"#KenWhisenhunt-NFL-FA-0\",\"search_first_name\":\"ken\",\"rotowire_id\":null,\"rotoworld_id\":9269,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ken Whisenhunt\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Whisenhunt\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kenwhisenhunt\",\"birth_date\":null,\"espn_id\":null},\"2830\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031848\",\"first_name\":\"Caushaud\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1557793815436,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lyons\",\"depth_chart_position\":null,\"player_id\":\"2830\",\"birth_city\":null,\"fantasy_data_id\":17298,\"years_exp\":5,\"hashtag\":\"#CaushaudLyons-NFL-FA-97\",\"search_first_name\":\"caushaud\",\"rotowire_id\":10668,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Caushaud Lyons\",\"sportradar_id\":\"3920baeb-570e-4b1a-bc44-c4bfd936e41f\",\"pandascore_id\":null,\"yahoo_id\":28789,\"last_name\":\"Lyons\",\"metadata\":null,\"college\":\"Tusculum\",\"high_school\":\"Woodland (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"caushaudlyons\",\"birth_date\":\"1993-01-03\",\"espn_id\":3908873},\"7112\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyre\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606277156130,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"7112\",\"birth_city\":null,\"fantasy_data_id\":22027,\"years_exp\":0,\"hashtag\":\"#TyrePhillips-NFL-BAL-74\",\"search_first_name\":\"tyre\",\"rotowire_id\":14685,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tyre Phillips\",\"sportradar_id\":\"b4908ca3-f723-4d41-ab98-58acf0aa4a94\",\"pandascore_id\":null,\"yahoo_id\":32776,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"East Mississippi (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tyrephillips\",\"birth_date\":\"1997-01-29\",\"espn_id\":4242247},\"4236\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033590\",\"first_name\":\"Joey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1576362602854,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ivie\",\"depth_chart_position\":null,\"player_id\":\"4236\",\"birth_city\":null,\"fantasy_data_id\":19082,\"years_exp\":3,\"hashtag\":\"#JoeyIvie-NFL-CLE-66\",\"search_first_name\":\"joey\",\"rotowire_id\":12051,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1212,\"age\":25,\"full_name\":\"Joey Ivie\",\"sportradar_id\":\"4e710e1a-2654-4e2f-9be0-5b9941025477\",\"pandascore_id\":null,\"yahoo_id\":30341,\"last_name\":\"Ivie\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Pasco (FL)\",\"depth_chart_order\":null,\"stats_id\":727275,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joeyivie\",\"birth_date\":\"1995-01-22\",\"espn_id\":3043112},\"6099\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034923\",\"first_name\":\"BJ\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blunt\",\"depth_chart_position\":null,\"player_id\":\"6099\",\"birth_city\":null,\"fantasy_data_id\":21034,\"years_exp\":1,\"hashtag\":\"#BJBlunt-NFL-FA-48\",\"search_first_name\":\"bj\",\"rotowire_id\":13731,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"BJ Blunt\",\"sportradar_id\":\"889052f9-12d3-4540-af7f-2728c1ad91de\",\"pandascore_id\":null,\"yahoo_id\":32181,\"last_name\":\"Blunt\",\"metadata\":null,\"college\":\"McNeese\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1069758,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"bjblunt\",\"birth_date\":\"1995-04-21\",\"espn_id\":4250485},\"6464\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035054\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wirtel\",\"depth_chart_position\":null,\"player_id\":\"6464\",\"birth_city\":null,\"fantasy_data_id\":21469,\"years_exp\":1,\"hashtag\":\"#JohnWirtel-NFL-FA-53\",\"search_first_name\":\"john\",\"rotowire_id\":14152,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"John Wirtel\",\"sportradar_id\":\"189d2495-ff24-4ffb-9887-8fdc717cf4c0\",\"pandascore_id\":null,\"yahoo_id\":32265,\"last_name\":\"Wirtel\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnwirtel\",\"birth_date\":\"1995-08-24\",\"espn_id\":3039982},\"4192\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033289\",\"first_name\":\"Corn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577638217148,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elder\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4192\",\"birth_city\":null,\"fantasy_data_id\":19038,\"years_exp\":3,\"hashtag\":\"#CornElder-NFL-CAR-29\",\"search_first_name\":\"corn\",\"rotowire_id\":12014,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1190,\"age\":26,\"full_name\":\"Corn Elder\",\"sportradar_id\":\"fde0f790-29a9-4212-a357-17657055c1db\",\"pandascore_id\":null,\"yahoo_id\":30265,\"last_name\":\"Elder\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"The Ensworth School (TN)\",\"depth_chart_order\":2,\"stats_id\":739800,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cornelder\",\"birth_date\":\"1994-10-09\",\"espn_id\":3051929},\"4979\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034728\",\"first_name\":\"Jaire\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606524629084,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4979\",\"birth_city\":null,\"fantasy_data_id\":19839,\"years_exp\":2,\"hashtag\":\"#JaireAlexander-NFL-GB-23\",\"search_first_name\":\"jaire\",\"rotowire_id\":12549,\"rotoworld_id\":13125,\"active\":true,\"search_rank\":1297,\"age\":23,\"full_name\":\"Jaire Alexander\",\"sportradar_id\":\"db9fa46f-f0f6-40b8-a207-60d46173d7e1\",\"pandascore_id\":null,\"yahoo_id\":30988,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Rocky River (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jairealexander\",\"birth_date\":\"1997-02-09\",\"espn_id\":3895429},\"7137\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stantley\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600296957871,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomasoliver\",\"depth_chart_position\":\"RCB\",\"player_id\":\"7137\",\"birth_city\":null,\"fantasy_data_id\":22088,\"years_exp\":0,\"hashtag\":\"#StantleyThomasOliver-NFL-CAR-23\",\"search_first_name\":\"stantley\",\"rotowire_id\":14707,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1918,\"age\":22,\"full_name\":\"Stantley Thomas-Oliver\",\"sportradar_id\":\"6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5\",\"pandascore_id\":null,\"yahoo_id\":32891,\"last_name\":\"Thomas-Oliver\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":\"Charlotte (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'2\\\"\",\"search_full_name\":\"stantleythomasoliver\",\"birth_date\":\"1998-06-04\",\"espn_id\":4046353},\"1045\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":null,\"player_id\":\"1045\",\"birth_city\":null,\"fantasy_data_id\":13763,\"years_exp\":8,\"hashtag\":\"#TrevorGraham-NFL-FA-87\",\"search_first_name\":\"trevor\",\"rotowire_id\":8101,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Trevor Graham\",\"sportradar_id\":\"26f82a1b-2f90-4e82-8c6b-8036912a6d20\",\"pandascore_id\":null,\"yahoo_id\":25779,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Wakefield (NC)\",\"depth_chart_order\":null,\"stats_id\":463700,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trevorgraham\",\"birth_date\":\"1989-07-27\",\"espn_id\":14920},\"5084\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034398\",\"first_name\":\"Natrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601420746710,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jamerson\",\"depth_chart_position\":null,\"player_id\":\"5084\",\"birth_city\":null,\"fantasy_data_id\":19992,\"years_exp\":2,\"hashtag\":\"#NatrellJamerson-NFL-CAR-30\",\"search_first_name\":\"natrell\",\"rotowire_id\":12722,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1383,\"age\":24,\"full_name\":\"Natrell Jamerson\",\"sportradar_id\":\"f2f71ec1-cc13-4215-aa5d-1948c42c6b28\",\"pandascore_id\":null,\"yahoo_id\":31134,\"last_name\":\"Jamerson\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Vanguard (FL)\",\"depth_chart_order\":null,\"stats_id\":836196,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'11\\\"\",\"search_full_name\":\"natrelljamerson\",\"birth_date\":\"1995-12-15\",\"espn_id\":3121552},\"5662\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034594\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605411361386,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"5662\",\"birth_city\":null,\"fantasy_data_id\":20513,\"years_exp\":2,\"hashtag\":\"#AJMoore-NFL-HOU-33\",\"search_first_name\":\"aj\",\"rotowire_id\":13189,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1484,\"age\":24,\"full_name\":\"A.J. Moore\",\"sportradar_id\":\"f9ae156c-f690-401f-b964-34b0ff6187f9\",\"pandascore_id\":null,\"yahoo_id\":31652,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"Bassfield (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ajmoore\",\"birth_date\":\"1995-12-15\",\"espn_id\":3128746},\"3181\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032382\",\"first_name\":\"Keanu\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606195550523,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":\"S\",\"player_id\":\"3181\",\"birth_city\":null,\"fantasy_data_id\":17942,\"years_exp\":4,\"hashtag\":\"#KeanuNeal-NFL-ATL-22\",\"search_first_name\":\"keanu\",\"rotowire_id\":11143,\"rotoworld_id\":11337,\"active\":true,\"search_rank\":955,\"age\":25,\"full_name\":\"Keanu Neal\",\"sportradar_id\":\"cc9c2006-e72b-4073-afcc-69c187cb28b7\",\"pandascore_id\":null,\"yahoo_id\":29251,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"South Sumter (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keanuneal\",\"birth_date\":\"1995-07-26\",\"espn_id\":3054962},\"4633\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ezra\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"4633\",\"birth_city\":null,\"fantasy_data_id\":19527,\"years_exp\":2,\"hashtag\":\"#EzraRobinson-NFL-FA-34\",\"search_first_name\":\"ezra\",\"rotowire_id\":12028,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ezra Robinson\",\"sportradar_id\":\"1c12e6d8-db1e-4d39-996c-5a54d2486ec8\",\"pandascore_id\":null,\"yahoo_id\":30406,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ezrarobinson\",\"birth_date\":\"1994-02-19\",\"espn_id\":2979555},\"5055\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034355\",\"first_name\":\"M.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600012557666,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5055\",\"birth_city\":null,\"fantasy_data_id\":19893,\"years_exp\":2,\"hashtag\":\"#MJStewart-NFL-CLE-36\",\"search_first_name\":\"mj\",\"rotowire_id\":12836,\"rotoworld_id\":13166,\"active\":true,\"search_rank\":1329,\"age\":25,\"full_name\":\"M.J. Stewart\",\"sportradar_id\":\"3d405d21-bfdd-4495-afe3-9e96d1972ee2\",\"pandascore_id\":null,\"yahoo_id\":31023,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Yorktown (VA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mjstewart\",\"birth_date\":\"1995-09-16\",\"espn_id\":3116679},\"4293\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033221\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"OL\"],\"news_updated\":1584735009383,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brunskill\",\"depth_chart_position\":\"RG\",\"player_id\":\"4293\",\"birth_city\":null,\"fantasy_data_id\":19139,\"years_exp\":3,\"hashtag\":\"#DanielBrunskill-NFL-SF-60\",\"search_first_name\":\"daniel\",\"rotowire_id\":11781,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Daniel Brunskill\",\"sportradar_id\":\"8925f38d-5c75-42c7-aa52-e3bcca16a21c\",\"pandascore_id\":null,\"yahoo_id\":30449,\"last_name\":\"Brunskill\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Valley Center (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"danielbrunskill\",\"birth_date\":\"1994-01-27\",\"espn_id\":2976117},\"4005\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rick\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dennison\",\"depth_chart_position\":null,\"player_id\":\"4005\",\"birth_city\":null,\"fantasy_data_id\":18844,\"years_exp\":0,\"hashtag\":\"#RickDennison-NFL-FA-0\",\"search_first_name\":\"rick\",\"rotowire_id\":null,\"rotoworld_id\":10333,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Rick Dennison\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dennison\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rickdennison\",\"birth_date\":null,\"espn_id\":null},\"3775\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"depalma\",\"depth_chart_position\":null,\"player_id\":\"3775\",\"birth_city\":null,\"fantasy_data_id\":18588,\"years_exp\":0,\"hashtag\":\"#JohnDepalma-NFL-FA-48\",\"search_first_name\":\"john\",\"rotowire_id\":11530,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"John Depalma\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29673,\"last_name\":\"Depalma\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johndepalma\",\"birth_date\":\"1993-09-16\",\"espn_id\":2976628},\"6422\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035421\",\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":\"LDT\",\"player_id\":\"6422\",\"birth_city\":null,\"fantasy_data_id\":21446,\"years_exp\":1,\"hashtag\":\"#RickyWalker-NFL-FA-0\",\"search_first_name\":\"ricky\",\"rotowire_id\":13705,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1736,\"age\":24,\"full_name\":\"Ricky Walker\",\"sportradar_id\":\"b27621a8-1629-45d2-838e-5e74a26f350b\",\"pandascore_id\":null,\"yahoo_id\":32203,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rickywalker\",\"birth_date\":\"1996-04-18\",\"espn_id\":3124087},\"6746\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1594169119918,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":null,\"player_id\":\"6746\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#DuplicatePlayer-NFL-FA-0\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Player\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":\"1997-06-19\",\"espn_id\":null},\"2058\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":null,\"player_id\":\"2058\",\"birth_city\":null,\"fantasy_data_id\":16357,\"years_exp\":1,\"hashtag\":\"#ChrisBoyd-NFL-FA-14\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Boyd\",\"sportradar_id\":\"081c5f81-30a3-4bd7-add0-7f3f870af4c9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisboyd\",\"birth_date\":\"1991-12-16\",\"espn_id\":null},\"1423\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030541\",\"first_name\":\"Blidi\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604081439079,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wrehwilson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"1423\",\"birth_city\":null,\"fantasy_data_id\":14983,\"years_exp\":7,\"hashtag\":\"#BlidiWrehWilson-NFL-ATL-33\",\"search_first_name\":\"blidi\",\"rotowire_id\":8646,\"rotoworld_id\":null,\"active\":true,\"search_rank\":722,\"age\":30,\"full_name\":\"Blidi Wreh-Wilson\",\"sportradar_id\":\"829307ad-fb1d-4c7b-b073-3098be9464e7\",\"pandascore_id\":null,\"yahoo_id\":26693,\"last_name\":\"Wreh-Wilson\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"General McLane (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"blidiwrehwilson\",\"birth_date\":\"1989-12-05\",\"espn_id\":15881},\"3147\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dooley\",\"depth_chart_position\":null,\"player_id\":\"3147\",\"birth_city\":null,\"fantasy_data_id\":17903,\"years_exp\":1,\"hashtag\":\"#MattDooley-NFL-FA-42\",\"search_first_name\":\"matt\",\"rotowire_id\":10869,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Matt Dooley\",\"sportradar_id\":\"c490df3e-c4c5-4b7d-8c00-6e9b604d4f65\",\"pandascore_id\":null,\"yahoo_id\":29225,\"last_name\":\"Dooley\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mattdooley\",\"birth_date\":\"1993-02-24\",\"espn_id\":2981804},\"4954\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034064\",\"first_name\":\"Colby\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1587832542141,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wadman\",\"depth_chart_position\":null,\"player_id\":\"4954\",\"birth_city\":null,\"fantasy_data_id\":19818,\"years_exp\":2,\"hashtag\":\"#ColbyWadman-NFL-FA-0\",\"search_first_name\":\"colby\",\"rotowire_id\":13419,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Colby Wadman\",\"sportradar_id\":\"9d8effd8-9693-4b7a-b235-cf1d5124af64\",\"pandascore_id\":null,\"yahoo_id\":30967,\"last_name\":\"Wadman\",\"metadata\":null,\"college\":\"California-Davis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":784816,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"colbywadman\",\"birth_date\":\"1995-04-19\",\"espn_id\":3050015},\"4015\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Boseko\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525134901642,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lokombo\",\"depth_chart_position\":null,\"player_id\":\"4015\",\"birth_city\":null,\"fantasy_data_id\":18855,\"years_exp\":2,\"hashtag\":\"#BosekoLokombo-NFL-FA-49\",\"search_first_name\":\"boseko\",\"rotowire_id\":9692,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Boseko Lokombo\",\"sportradar_id\":\"849e7dec-2582-41f8-b391-4e3c287d28c9\",\"pandascore_id\":null,\"yahoo_id\":30103,\"last_name\":\"Lokombo\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bosekolokombo\",\"birth_date\":\"1990-10-15\",\"espn_id\":2475164},\"7144\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clay\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599330957042,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnston\",\"depth_chart_position\":null,\"player_id\":\"7144\",\"birth_city\":null,\"fantasy_data_id\":21980,\"years_exp\":0,\"hashtag\":\"#ClayJohnston-NFL-CAR-47\",\"search_first_name\":\"clay\",\"rotowire_id\":14743,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1864,\"age\":24,\"full_name\":\"Clay Johnston\",\"sportradar_id\":\"d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d\",\"pandascore_id\":null,\"yahoo_id\":32904,\"last_name\":\"Johnston\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Wylie (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"clayjohnston\",\"birth_date\":\"1996-08-08\",\"espn_id\":3928928},\"3643\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032697\",\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605408961132,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"middleton\",\"depth_chart_position\":\"SS\",\"player_id\":\"3643\",\"birth_city\":null,\"fantasy_data_id\":18434,\"years_exp\":4,\"hashtag\":\"#DougMiddleton-NFL-JAX-39\",\"search_first_name\":\"doug\",\"rotowire_id\":11459,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1078,\"age\":27,\"full_name\":\"Doug Middleton\",\"sportradar_id\":\"0e41e388-6e5b-4a12-aa2f-45bf83ffadc5\",\"pandascore_id\":null,\"yahoo_id\":29798,\"last_name\":\"Middleton\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Parkland (NC)\",\"depth_chart_order\":2,\"stats_id\":597547,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dougmiddleton\",\"birth_date\":\"1993-09-25\",\"espn_id\":2567725},\"7238\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598405139635,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"knipfel\",\"depth_chart_position\":null,\"player_id\":\"7238\",\"birth_city\":null,\"fantasy_data_id\":22239,\"years_exp\":0,\"hashtag\":\"#JoshKnipfel-NFL-CIN-75\",\"search_first_name\":\"josh\",\"rotowire_id\":14990,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Josh Knipfel\",\"sportradar_id\":\"066512d3-661c-4f08-85c4-a124e5de03c7\",\"pandascore_id\":null,\"yahoo_id\":33162,\"last_name\":\"Knipfel\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Hampton-Dumont (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshknipfel\",\"birth_date\":\"1998-02-26\",\"espn_id\":4241256},\"2346\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032055\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1595972703045,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"funchess\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2346\",\"birth_city\":null,\"fantasy_data_id\":16802,\"years_exp\":5,\"hashtag\":\"#DevinFunchess-NFL-GB-11\",\"search_first_name\":\"devin\",\"rotowire_id\":10138,\"rotoworld_id\":10391,\"active\":true,\"search_rank\":866,\"age\":26,\"full_name\":\"Devin Funchess\",\"sportradar_id\":\"7f5f2a81-ac40-420c-9421-5b9e2a21faf8\",\"pandascore_id\":null,\"yahoo_id\":28429,\"last_name\":\"Funchess\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Harrison (MI)\",\"depth_chart_order\":3,\"stats_id\":696127,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"devinfunchess\",\"birth_date\":\"1994-05-21\",\"espn_id\":2977609},\"347\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sebastian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vollmer\",\"depth_chart_position\":null,\"player_id\":\"347\",\"birth_city\":null,\"fantasy_data_id\":8375,\"years_exp\":11,\"hashtag\":\"#SebastianVollmer-NFL-FA-76\",\"search_first_name\":\"sebastian\",\"rotowire_id\":6106,\"rotoworld_id\":5313,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Sebastian Vollmer\",\"sportradar_id\":\"5b0ed7fc-21ed-426f-b8b6-145116cbc9ee\",\"pandascore_id\":null,\"yahoo_id\":9322,\"last_name\":\"Vollmer\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"Quirinus Gymnasium (DEU)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'8\\\"\",\"search_full_name\":\"sebastianvollmer\",\"birth_date\":\"1984-07-10\",\"espn_id\":12626},\"3033\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"drake\",\"depth_chart_position\":null,\"player_id\":\"3033\",\"birth_city\":null,\"fantasy_data_id\":17720,\"years_exp\":null,\"hashtag\":\"#AdamDrake-NFL-FA-0\",\"search_first_name\":\"adam\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Adam Drake\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Drake\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555383,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"adamdrake\",\"birth_date\":null,\"espn_id\":null},\"1334\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030148\",\"first_name\":\"Damion\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596936945350,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"square\",\"depth_chart_position\":\"NT\",\"player_id\":\"1334\",\"birth_city\":null,\"fantasy_data_id\":14851,\"years_exp\":7,\"hashtag\":\"#DamionSquare-NFL-LAC-71\",\"search_first_name\":\"damion\",\"rotowire_id\":9118,\"rotoworld_id\":null,\"active\":true,\"search_rank\":705,\"age\":31,\"full_name\":\"Damion Square\",\"sportradar_id\":\"fc28047a-18cf-4431-9e1b-317db75c4495\",\"pandascore_id\":null,\"yahoo_id\":27056,\"last_name\":\"Square\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Yates (TX)\",\"depth_chart_order\":2,\"stats_id\":465620,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'2\\\"\",\"search_full_name\":\"damionsquare\",\"birth_date\":\"1989-02-06\",\"espn_id\":16231},\"2659\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Manuel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"asprilla\",\"depth_chart_position\":null,\"player_id\":\"2659\",\"birth_city\":null,\"fantasy_data_id\":17127,\"years_exp\":0,\"hashtag\":\"#ManuelAsprilla-NFL-FA-38\",\"search_first_name\":\"manuel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Manuel Asprilla\",\"sportradar_id\":\"8c89f66b-a49c-4f5f-9a11-a31270382939\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Asprilla\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"5'11\\\"\",\"search_full_name\":\"manuelasprilla\",\"birth_date\":\"1993-04-04\",\"espn_id\":2576460},\"1820\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031317\",\"first_name\":\"Terrence\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1564865149511,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fede\",\"depth_chart_position\":null,\"player_id\":\"1820\",\"birth_city\":null,\"fantasy_data_id\":16010,\"years_exp\":6,\"hashtag\":\"#TerrenceFede-NFL-FA-69\",\"search_first_name\":\"terrence\",\"rotowire_id\":9784,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Terrence Fede\",\"sportradar_id\":\"5064d069-aa24-4828-81c9-c78e0e56fb78\",\"pandascore_id\":null,\"yahoo_id\":27762,\"last_name\":\"Fede\",\"metadata\":null,\"college\":\"Marist\",\"high_school\":\"Nyack (NY)\",\"depth_chart_order\":null,\"stats_id\":518076,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'4\\\"\",\"search_full_name\":\"terrencefede\",\"birth_date\":\"1991-11-19\",\"espn_id\":16860},\"2225\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bayer\",\"depth_chart_position\":null,\"player_id\":\"2225\",\"birth_city\":null,\"fantasy_data_id\":16614,\"years_exp\":2,\"hashtag\":\"#AlexBayer-NFL-FA-82\",\"search_first_name\":\"alex\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Alex Bayer\",\"sportradar_id\":\"bfb571f9-c850-479f-82e5-e14090ccbe2e\",\"pandascore_id\":null,\"yahoo_id\":27959,\"last_name\":\"Bayer\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":509911,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexbayer\",\"birth_date\":\"1990-11-08\",\"espn_id\":17110},\"3448\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Giorgio\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"newberry\",\"depth_chart_position\":null,\"player_id\":\"3448\",\"birth_city\":null,\"fantasy_data_id\":18212,\"years_exp\":3,\"hashtag\":\"#GiorgioNewberry-NFL-FA-57\",\"search_first_name\":\"giorgio\",\"rotowire_id\":11145,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Giorgio Newberry\",\"sportradar_id\":\"50d30269-17f1-448f-9b81-a488e4a8507e\",\"pandascore_id\":null,\"yahoo_id\":29491,\"last_name\":\"Newberry\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"289\",\"height\":\"6'6\\\"\",\"search_full_name\":\"giorgionewberry\",\"birth_date\":\"1991-11-26\",\"espn_id\":2576801},\"1033\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"polk\",\"depth_chart_position\":null,\"player_id\":\"1033\",\"birth_city\":null,\"fantasy_data_id\":13735,\"years_exp\":8,\"hashtag\":\"#ChrisPolk-NFL-FA-22\",\"search_first_name\":\"chris\",\"rotowire_id\":8024,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Polk\",\"sportradar_id\":\"80ced4c0-5edb-4632-aeae-942b1703c20c\",\"pandascore_id\":null,\"yahoo_id\":26006,\"last_name\":\"Polk\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"East Valley (CA)\",\"depth_chart_order\":null,\"stats_id\":458094,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrispolk\",\"birth_date\":\"1989-12-16\",\"espn_id\":14889},\"108\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"108\",\"birth_city\":null,\"fantasy_data_id\":2950,\"years_exp\":12,\"hashtag\":\"#SteveJohnson-NFL-FA-11\",\"search_first_name\":\"steve\",\"rotowire_id\":5798,\"rotoworld_id\":4962,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Steve Johnson\",\"sportradar_id\":\"c1b5db36-a2e2-4bbc-87c1-cdd216b4474c\",\"pandascore_id\":null,\"yahoo_id\":9001,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Rodriguez (CA)\",\"depth_chart_order\":null,\"stats_id\":333980,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"stevejohnson\",\"birth_date\":\"1986-07-22\",\"espn_id\":11458},\"2204\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031239\",\"first_name\":\"Stanley\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567711213031,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jeanbaptiste\",\"depth_chart_position\":null,\"player_id\":\"2204\",\"birth_city\":null,\"fantasy_data_id\":16577,\"years_exp\":6,\"hashtag\":\"#StanleyJeanBaptiste-NFL-FA-38\",\"search_first_name\":\"stanley\",\"rotowire_id\":9381,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Stanley Jean-Baptiste\",\"sportradar_id\":\"5e12087c-579d-4ab8-a5b8-4d6b89331337\",\"pandascore_id\":null,\"yahoo_id\":27586,\"last_name\":\"Jean-Baptiste\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stanleyjeanbaptiste\",\"birth_date\":\"1990-04-12\",\"espn_id\":16774},\"7199\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603411249235,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nurse\",\"depth_chart_position\":null,\"player_id\":\"7199\",\"birth_city\":null,\"fantasy_data_id\":22201,\"years_exp\":0,\"hashtag\":\"#JoshNurse-NFL-JAX-38\",\"search_first_name\":\"josh\",\"rotowire_id\":14810,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1948,\"age\":24,\"full_name\":\"Josh Nurse\",\"sportradar_id\":\"cf82c333-e8ca-4128-9aa3-375ea5629b30\",\"pandascore_id\":null,\"yahoo_id\":33002,\"last_name\":\"Nurse\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Sandy Creek (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshnurse\",\"birth_date\":\"1996-07-17\",\"espn_id\":4249092},\"469\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mulligan\",\"depth_chart_position\":null,\"player_id\":\"469\",\"birth_city\":null,\"fantasy_data_id\":9671,\"years_exp\":12,\"hashtag\":\"#MatthewMulligan-NFL-FA-82\",\"search_first_name\":\"matthew\",\"rotowire_id\":6269,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Matthew Mulligan\",\"sportradar_id\":\"1789597d-7344-4afb-bb7d-0d0124b5810a\",\"pandascore_id\":null,\"yahoo_id\":9149,\"last_name\":\"Mulligan\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":\"Penobscot Valley (ME)\",\"depth_chart_order\":null,\"stats_id\":325844,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'4\\\"\",\"search_full_name\":\"matthewmulligan\",\"birth_date\":\"1985-01-18\",\"espn_id\":11708},\"2123\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030725\",\"first_name\":\"Cornelius\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606421759485,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lucas\",\"depth_chart_position\":\"LT\",\"player_id\":\"2123\",\"birth_city\":null,\"fantasy_data_id\":16458,\"years_exp\":6,\"hashtag\":\"#CorneliusLucas-NFL-WAS-78\",\"search_first_name\":\"cornelius\",\"rotowire_id\":9429,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Cornelius Lucas\",\"sportradar_id\":\"4c22d0dd-3f8e-4abf-84ca-7f08c046e3a5\",\"pandascore_id\":null,\"yahoo_id\":28000,\"last_name\":\"Lucas\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Edna Karr (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'8\\\"\",\"search_full_name\":\"corneliuslucas\",\"birth_date\":\"1991-07-18\",\"espn_id\":17202},\"6559\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035439\",\"first_name\":\"Tanner\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"volson\",\"depth_chart_position\":\"C\",\"player_id\":\"6559\",\"birth_city\":null,\"fantasy_data_id\":21159,\"years_exp\":1,\"hashtag\":\"#TannerVolson-NFL-FA-0\",\"search_first_name\":\"tanner\",\"rotowire_id\":14268,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tanner Volson\",\"sportradar_id\":\"95abcdcb-16c4-4a13-8b52-ecd499c25c07\",\"pandascore_id\":null,\"yahoo_id\":32554,\"last_name\":\"Volson\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tannervolson\",\"birth_date\":\"1996-05-04\",\"espn_id\":3120593},\"5646\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034500\",\"first_name\":\"Tae\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602889205055,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"MLB\",\"player_id\":\"5646\",\"birth_city\":null,\"fantasy_data_id\":20338,\"years_exp\":2,\"hashtag\":\"#TaeDavis-NFL-CLE-55\",\"search_first_name\":\"tae\",\"rotowire_id\":13276,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1455,\"age\":24,\"full_name\":\"Tae Davis\",\"sportradar_id\":\"b220a72d-6870-418a-98af-ef50632be774\",\"pandascore_id\":null,\"yahoo_id\":31552,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Chattanooga\",\"high_school\":\"Oxford (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'1\\\"\",\"search_full_name\":\"taedavis\",\"birth_date\":\"1996-08-14\",\"espn_id\":3131775},\"6802\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606346103557,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"epenesa\",\"depth_chart_position\":\"RDE\",\"player_id\":\"6802\",\"birth_city\":null,\"fantasy_data_id\":21881,\"years_exp\":0,\"hashtag\":\"#AJEpenesa-NFL-BUF-57\",\"search_first_name\":\"aj\",\"rotowire_id\":14501,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1807,\"age\":22,\"full_name\":\"A.J. Epenesa\",\"sportradar_id\":\"3fa3a270-f8b2-4d53-a265-84bc928af5c5\",\"pandascore_id\":null,\"yahoo_id\":32724,\"last_name\":\"Epenesa\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Edwardsville (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ajepenesa\",\"birth_date\":\"1998-09-15\",\"espn_id\":4240585},\"6222\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034990\",\"first_name\":\"Ka'dar\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606076719467,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hollman\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6222\",\"birth_city\":null,\"fantasy_data_id\":21116,\"years_exp\":1,\"hashtag\":\"#KadarHollman-NFL-GB-29\",\"search_first_name\":\"kadar\",\"rotowire_id\":13729,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1664,\"age\":26,\"full_name\":\"Ka'dar Hollman\",\"sportradar_id\":\"ca08b2bc-7fad-4dec-88d9-5f5f9712a830\",\"pandascore_id\":null,\"yahoo_id\":32017,\"last_name\":\"Hollman\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Burlington Township (NJ)\",\"depth_chart_order\":3,\"stats_id\":871187,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kadarhollman\",\"birth_date\":\"1994-09-18\",\"espn_id\":3916676},\"1099\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029421\",\"first_name\":\"Randy\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606153513896,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bullock\",\"depth_chart_position\":\"K\",\"player_id\":\"1099\",\"birth_city\":null,\"fantasy_data_id\":13961,\"years_exp\":8,\"hashtag\":\"#RandyBullock-NFL-CIN-4\",\"search_first_name\":\"randy\",\"rotowire_id\":8222,\"rotoworld_id\":7610,\"active\":true,\"search_rank\":395,\"age\":30,\"full_name\":\"Randy Bullock\",\"sportradar_id\":\"c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e\",\"pandascore_id\":null,\"yahoo_id\":25871,\"last_name\":\"Bullock\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Klein (TX)\",\"depth_chart_order\":1,\"stats_id\":469127,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'9\\\"\",\"search_full_name\":\"randybullock\",\"birth_date\":\"1989-12-16\",\"espn_id\":15091},\"4784\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Levonte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whitfield\",\"depth_chart_position\":null,\"player_id\":\"4784\",\"birth_city\":null,\"fantasy_data_id\":19695,\"years_exp\":0,\"hashtag\":\"#LevonteWhitfield-NFL-FA-17\",\"search_first_name\":\"levonte\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Levonte Whitfield\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30729,\"last_name\":\"Whitfield\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742158,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"\",\"search_full_name\":\"levontewhitfield\",\"birth_date\":null,\"espn_id\":3045379},\"95\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026156\",\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1568835021611,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rodgerscromartie\",\"depth_chart_position\":null,\"player_id\":\"95\",\"birth_city\":null,\"fantasy_data_id\":2556,\"years_exp\":12,\"hashtag\":\"#DominiqueRodgersCromartie-NFL-FA-45\",\"search_first_name\":\"dominique\",\"rotowire_id\":5749,\"rotoworld_id\":4715,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Dominique Rodgers-Cromartie\",\"sportradar_id\":\"c881b179-070d-4289-909f-4d3594abbd79\",\"pandascore_id\":null,\"yahoo_id\":8793,\"last_name\":\"Rodgers-Cromartie\",\"metadata\":null,\"college\":\"Tennessee State\",\"high_school\":\"Lakewood Ranch (FL)\",\"depth_chart_order\":null,\"stats_id\":272727,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dominiquerodgerscromartie\",\"birth_date\":\"1986-04-07\",\"espn_id\":11250},\"554\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027862\",\"first_name\":\"Tyson\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605310254759,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alualu\",\"depth_chart_position\":\"NT\",\"player_id\":\"554\",\"birth_city\":null,\"fantasy_data_id\":11151,\"years_exp\":10,\"hashtag\":\"#TysonAlualu-NFL-PIT-94\",\"search_first_name\":\"tyson\",\"rotowire_id\":6590,\"rotoworld_id\":null,\"active\":true,\"search_rank\":606,\"age\":33,\"full_name\":\"Tyson Alualu\",\"sportradar_id\":\"1aa8d83f-c084-4893-b9b0-b1296ec822f1\",\"pandascore_id\":null,\"yahoo_id\":23985,\"last_name\":\"Alualu\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"California\",\"high_school\":\"St. Louis (HI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tysonalualu\",\"birth_date\":\"1987-05-12\",\"espn_id\":13233},\"714\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027762\",\"first_name\":\"Reshad\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1595378156592,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"SS\",\"player_id\":\"714\",\"birth_city\":null,\"fantasy_data_id\":12215,\"years_exp\":10,\"hashtag\":\"#ReshadJones-NFL-FA-20\",\"search_first_name\":\"reshad\",\"rotowire_id\":6650,\"rotoworld_id\":5649,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Reshad Jones\",\"sportradar_id\":\"76f95387-3bc1-4756-a714-a4b1a93f23ff\",\"pandascore_id\":null,\"yahoo_id\":24139,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Washington (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"reshadjones\",\"birth_date\":\"1988-02-25\",\"espn_id\":13395},\"3955\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colquitt\",\"depth_chart_position\":null,\"player_id\":\"3955\",\"birth_city\":null,\"fantasy_data_id\":18788,\"years_exp\":0,\"hashtag\":\"#DColquitt-NFL-FA-0\",\"search_first_name\":\"d\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"D Colquitt\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Colquitt\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dcolquitt\",\"birth_date\":null,\"espn_id\":4051631},\"2747\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031492\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1605895202018,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"myers\",\"depth_chart_position\":\"K\",\"player_id\":\"2747\",\"birth_city\":null,\"fantasy_data_id\":17215,\"years_exp\":5,\"hashtag\":\"#JasonMyers-NFL-SEA-5\",\"search_first_name\":\"jason\",\"rotowire_id\":10157,\"rotoworld_id\":10436,\"active\":true,\"search_rank\":168,\"age\":29,\"full_name\":\"Jason Myers\",\"sportradar_id\":\"7af4c94b-529b-4403-ab66-2bfed3fcf0c7\",\"pandascore_id\":null,\"yahoo_id\":28378,\"last_name\":\"Myers\",\"metadata\":null,\"college\":\"Marist\",\"high_school\":\"Mater Dei Catholic (CA)\",\"depth_chart_order\":1,\"stats_id\":518088,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jasonmyers\",\"birth_date\":\"1991-05-12\",\"espn_id\":2473037},\"7273\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cordel\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"iwuagwu\",\"depth_chart_position\":null,\"player_id\":\"7273\",\"birth_city\":null,\"fantasy_data_id\":21946,\"years_exp\":0,\"hashtag\":\"#CordelIwuagwu-NFL-HOU-70\",\"search_first_name\":\"cordel\",\"rotowire_id\":14422,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cordel Iwuagwu\",\"sportradar_id\":\"955c65c6-5557-4525-a549-3fab45765cec\",\"pandascore_id\":null,\"yahoo_id\":33157,\"last_name\":\"Iwuagwu\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Westfield (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cordeliwuagwu\",\"birth_date\":\"1996-09-04\",\"espn_id\":3676763},\"1416\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lavar\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1513214403551,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"1416\",\"birth_city\":null,\"fantasy_data_id\":14976,\"years_exp\":7,\"hashtag\":\"#LavarEdwards-NFL-FA-92\",\"search_first_name\":\"lavar\",\"rotowire_id\":8665,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Lavar Edwards\",\"sportradar_id\":\"4b916404-c9b7-4d04-b88d-e233ea881ecf\",\"pandascore_id\":null,\"yahoo_id\":26765,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Desire Street Academy (LA)\",\"depth_chart_order\":null,\"stats_id\":450890,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'4\\\"\",\"search_full_name\":\"lavaredwards\",\"birth_date\":\"1990-04-29\",\"espn_id\":15909},\"1279\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Orie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lemon\",\"depth_chart_position\":null,\"player_id\":\"1279\",\"birth_city\":null,\"fantasy_data_id\":14725,\"years_exp\":9,\"hashtag\":\"#OrieLemon-NFL-FA-45\",\"search_first_name\":\"orie\",\"rotowire_id\":7908,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Orie Lemon\",\"sportradar_id\":\"2c3874aa-2fdd-4b2f-89ba-cd0ce8472754\",\"pandascore_id\":null,\"yahoo_id\":25433,\"last_name\":\"Lemon\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Jack Yates (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"orielemon\",\"birth_date\":\"1987-09-09\",\"espn_id\":14343},\"6777\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"polamalu\",\"depth_chart_position\":null,\"player_id\":\"6777\",\"birth_city\":null,\"fantasy_data_id\":6344,\"years_exp\":17,\"hashtag\":\"#TroyPolamalu-NFL-FA-43\",\"search_first_name\":\"troy\",\"rotowire_id\":null,\"rotoworld_id\":681,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Troy Polamalu\",\"sportradar_id\":\"30b70aad-fc6c-4c35-a375-afc10efa6a43\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Polamalu\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'10\\\"\",\"search_full_name\":\"troypolamalu\",\"birth_date\":\"1981-04-19\",\"espn_id\":4474},\"2419\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031575\",\"first_name\":\"Jamil\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600900809628,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"douglas\",\"depth_chart_position\":\"RG\",\"player_id\":\"2419\",\"birth_city\":null,\"fantasy_data_id\":16875,\"years_exp\":5,\"hashtag\":\"#JamilDouglas-NFL-TEN-75\",\"search_first_name\":\"jamil\",\"rotowire_id\":10294,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jamil Douglas\",\"sportradar_id\":\"9be53b35-e7fe-4f28-97bc-09d87f782ced\",\"pandascore_id\":null,\"yahoo_id\":28502,\"last_name\":\"Douglas\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Arizona State\",\"high_school\":\"Cypress (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jamildouglas\",\"birth_date\":\"1992-02-28\",\"espn_id\":2516927},\"5948\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035666\",\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602808842879,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":\"RT\",\"player_id\":\"5948\",\"birth_city\":null,\"fantasy_data_id\":20752,\"years_exp\":1,\"hashtag\":\"#BobbyEvans-NFL-LAR-71\",\"search_first_name\":\"bobby\",\"rotowire_id\":13574,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Bobby Evans\",\"sportradar_id\":\"65b9a754-40b9-446b-b9c0-b2dee46ba3f6\",\"pandascore_id\":null,\"yahoo_id\":31929,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Allen (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bobbyevans\",\"birth_date\":\"1997-03-24\",\"espn_id\":3706968},\"4186\":{\"position\":\"RB\",\"injury_notes\":\"Logan will miss a significant part of the season.\",\"birth_country\":null,\"gsis_id\":\"00-0033789\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605911103408,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"logan\",\"depth_chart_position\":\"RB\",\"player_id\":\"4186\",\"birth_city\":null,\"fantasy_data_id\":19032,\"years_exp\":3,\"hashtag\":\"#TJLogan-NFL-TB-22\",\"search_first_name\":\"tj\",\"rotowire_id\":11764,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"T.J. Logan\",\"sportradar_id\":\"987fb8b2-98ba-4a01-bd84-d962dcdcd053\",\"pandascore_id\":null,\"yahoo_id\":30292,\"last_name\":\"Logan\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Northern Guilford (NC)\",\"depth_chart_order\":6,\"stats_id\":728165,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tjlogan\",\"birth_date\":\"1994-09-03\",\"espn_id\":3039723},\"3264\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1532980518587,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perry\",\"depth_chart_position\":null,\"player_id\":\"3264\",\"birth_city\":null,\"fantasy_data_id\":18025,\"years_exp\":4,\"hashtag\":\"#JoshuaPerry-NFL-FA-46\",\"search_first_name\":\"joshua\",\"rotowire_id\":11099,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joshua Perry\",\"sportradar_id\":\"69a0a587-2b93-4edd-8bea-57c6a1bb8ef2\",\"pandascore_id\":null,\"yahoo_id\":29336,\"last_name\":\"Perry\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653690,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshuaperry\",\"birth_date\":\"1994-04-27\",\"espn_id\":2976306},\"5330\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034373\",\"first_name\":\"Dorance\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1573005017302,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"armstrong\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5330\",\"birth_city\":null,\"fantasy_data_id\":19932,\"years_exp\":2,\"hashtag\":\"#DoranceArmstrong-NFL-DAL-92\",\"search_first_name\":\"dorance\",\"rotowire_id\":12548,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1351,\"age\":23,\"full_name\":\"Dorance Armstrong\",\"sportradar_id\":\"a28daf84-6354-49e6-a047-1bc549997f29\",\"pandascore_id\":null,\"yahoo_id\":31086,\"last_name\":\"Armstrong\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dorancearmstrong\",\"birth_date\":\"1997-06-10\",\"espn_id\":3928979},\"6355\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035098\",\"first_name\":\"Micah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abernathy\",\"depth_chart_position\":null,\"player_id\":\"6355\",\"birth_city\":null,\"fantasy_data_id\":21334,\"years_exp\":1,\"hashtag\":\"#MicahAbernathy-NFL-FA-36\",\"search_first_name\":\"micah\",\"rotowire_id\":14154,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Micah Abernathy\",\"sportradar_id\":\"5e32839d-6ea9-4f92-8209-520a980ffcde\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Abernathy\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":877193,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"micahabernathy\",\"birth_date\":\"1997-02-10\",\"espn_id\":3915373},\"874\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028067\",\"first_name\":\"Julius\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1535142922119,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"874\",\"birth_city\":null,\"fantasy_data_id\":13027,\"years_exp\":9,\"hashtag\":\"#JuliusThomas-NFL-FA-89\",\"search_first_name\":\"julius\",\"rotowire_id\":7415,\"rotoworld_id\":6598,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Julius Thomas\",\"sportradar_id\":\"87f6826a-f35a-4b49-9673-da54ccb9becd\",\"pandascore_id\":null,\"yahoo_id\":24916,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":\"Tokay (CA)\",\"depth_chart_order\":null,\"stats_id\":550870,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"262\",\"height\":\"6'5\\\"\",\"search_full_name\":\"juliusthomas\",\"birth_date\":\"1988-06-27\",\"espn_id\":14204},\"5039\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034352\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597977634992,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LG\",\"player_id\":\"5039\",\"birth_city\":null,\"fantasy_data_id\":19875,\"years_exp\":2,\"hashtag\":\"#ConnorWilliams-NFL-DAL-52\",\"search_first_name\":\"connor\",\"rotowire_id\":12458,\"rotoworld_id\":13043,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Connor Williams\",\"sportradar_id\":\"96d94c76-9563-460a-91e5-47b99f29587b\",\"pandascore_id\":null,\"yahoo_id\":31020,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Coppell (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"connorwilliams\",\"birth_date\":\"1997-05-12\",\"espn_id\":3821577},\"7329\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"christiansen\",\"depth_chart_position\":null,\"player_id\":\"7329\",\"birth_city\":null,\"fantasy_data_id\":22321,\"years_exp\":0,\"hashtag\":\"#ColeChristiansen-NFL-LAC-50\",\"search_first_name\":\"cole\",\"rotowire_id\":15080,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Cole Christiansen\",\"sportradar_id\":\"ae372a9d-6f85-4e37-a910-47fd77483ebc\",\"pandascore_id\":null,\"yahoo_id\":32977,\"last_name\":\"Christiansen\",\"metadata\":null,\"college\":\"Army\",\"high_school\":\"Nansemond-Suffolk Academy (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"colechristiansen\",\"birth_date\":\"1997-07-30\",\"espn_id\":4036959},\"2998\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535148303460,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":null,\"player_id\":\"2998\",\"birth_city\":null,\"fantasy_data_id\":17526,\"years_exp\":5,\"hashtag\":\"#CameronJefferson-NFL-FA-78\",\"search_first_name\":\"cameron\",\"rotowire_id\":10599,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Cameron Jefferson\",\"sportradar_id\":\"bbb92851-0e33-40e3-9b81-677909f7fc6e\",\"pandascore_id\":null,\"yahoo_id\":28699,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronjefferson\",\"birth_date\":\"1992-05-02\",\"espn_id\":2514517},\"5875\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035242\",\"first_name\":\"Erik\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564767610439,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccoy\",\"depth_chart_position\":\"C\",\"player_id\":\"5875\",\"birth_city\":null,\"fantasy_data_id\":20869,\"years_exp\":1,\"hashtag\":\"#ErikMcCoy-NFL-NO-78\",\"search_first_name\":\"erik\",\"rotowire_id\":13541,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Erik McCoy\",\"sportradar_id\":\"b2fc64a2-3df5-4f65-92e7-922d41723bef\",\"pandascore_id\":null,\"yahoo_id\":31880,\"last_name\":\"McCoy\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Lufkin (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"erikmccoy\",\"birth_date\":\"1997-08-27\",\"espn_id\":3917331},\"1883\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wenning\",\"depth_chart_position\":null,\"player_id\":\"1883\",\"birth_city\":null,\"fantasy_data_id\":16103,\"years_exp\":6,\"hashtag\":\"#KeithWenning-NFL-FA-3\",\"search_first_name\":\"keith\",\"rotowire_id\":9698,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Keith Wenning\",\"sportradar_id\":\"5881b91d-5797-49f9-b0a1-becbb7068ee7\",\"pandascore_id\":null,\"yahoo_id\":27722,\"last_name\":\"Wenning\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":\"Coldwater (OH)\",\"depth_chart_order\":null,\"stats_id\":542289,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keithwenning\",\"birth_date\":\"1991-02-14\",\"espn_id\":16915},\"7215\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corliss\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"waitman\",\"depth_chart_position\":null,\"player_id\":\"7215\",\"birth_city\":null,\"fantasy_data_id\":22218,\"years_exp\":0,\"hashtag\":\"#CorlissWaitman-NFL-PIT-8\",\"search_first_name\":\"corliss\",\"rotowire_id\":15012,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Corliss Waitman\",\"sportradar_id\":\"32b2d6f6-a636-4d73-927c-361c1aa809f5\",\"pandascore_id\":null,\"yahoo_id\":32942,\"last_name\":\"Waitman\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"South Alabama\",\"high_school\":\"Milton (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"corlisswaitman\",\"birth_date\":\"1995-07-21\",\"espn_id\":3125280},\"4352\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033420\",\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1599351658119,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"payne\",\"depth_chart_position\":null,\"player_id\":\"4352\",\"birth_city\":null,\"fantasy_data_id\":19208,\"years_exp\":3,\"hashtag\":\"#DonaldPayne-NFL-MIA-45\",\"search_first_name\":\"donald\",\"rotowire_id\":12422,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1235,\"age\":26,\"full_name\":\"Donald Payne\",\"sportradar_id\":\"93d10760-436e-4638-b506-a5c655ed5365\",\"pandascore_id\":null,\"yahoo_id\":30622,\"last_name\":\"Payne\",\"metadata\":null,\"college\":\"Stetson University\",\"high_school\":\"Landmark Christian (GA)\",\"depth_chart_order\":null,\"stats_id\":752222,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"5'11\\\"\",\"search_full_name\":\"donaldpayne\",\"birth_date\":\"1994-07-12\",\"espn_id\":3048402},\"3979\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marty\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mornhinweg\",\"depth_chart_position\":null,\"player_id\":\"3979\",\"birth_city\":null,\"fantasy_data_id\":18814,\"years_exp\":0,\"hashtag\":\"#MartyMornhinweg-NFL-FA-0\",\"search_first_name\":\"marty\",\"rotowire_id\":null,\"rotoworld_id\":9475,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marty Mornhinweg\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mornhinweg\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"martymornhinweg\",\"birth_date\":null,\"espn_id\":null},\"5209\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034208\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605064202671,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boone\",\"depth_chart_position\":\"RB\",\"player_id\":\"5209\",\"birth_city\":null,\"fantasy_data_id\":20159,\"years_exp\":2,\"hashtag\":\"#MikeBoone-NFL-MIN-23\",\"search_first_name\":\"mike\",\"rotowire_id\":13067,\"rotoworld_id\":13438,\"active\":true,\"search_rank\":247,\"age\":25,\"full_name\":\"Mike Boone\",\"sportradar_id\":\"9424475a-fba7-4bfd-b79c-f372ad28082a\",\"pandascore_id\":null,\"yahoo_id\":31228,\"last_name\":\"Boone\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Baker County (FL)\",\"depth_chart_order\":3,\"stats_id\":842181,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikeboone\",\"birth_date\":\"1995-07-30\",\"espn_id\":3139033},\"2267\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031298\",\"first_name\":\"Jimmie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604261420427,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":\"FS\",\"player_id\":\"2267\",\"birth_city\":null,\"fantasy_data_id\":16678,\"years_exp\":6,\"hashtag\":\"#JimmieWard-NFL-SF-20\",\"search_first_name\":\"jimmie\",\"rotowire_id\":9308,\"rotoworld_id\":9434,\"active\":true,\"search_rank\":844,\"age\":29,\"full_name\":\"Jimmie Ward\",\"sportradar_id\":\"1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931\",\"pandascore_id\":null,\"yahoo_id\":27558,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Davidson (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jimmieward\",\"birth_date\":\"1991-07-18\",\"espn_id\":16717},\"2687\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"worthy\",\"depth_chart_position\":null,\"player_id\":\"2687\",\"birth_city\":null,\"fantasy_data_id\":17155,\"years_exp\":5,\"hashtag\":\"#ChandlerWorthy-NFL-FA-16\",\"search_first_name\":\"chandler\",\"rotowire_id\":10500,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Chandler Worthy\",\"sportradar_id\":\"2a9d5be3-ba82-4d76-b964-2819d071d222\",\"pandascore_id\":null,\"yahoo_id\":28903,\"last_name\":\"Worthy\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Griffin\",\"depth_chart_order\":null,\"stats_id\":615087,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'9\\\"\",\"search_full_name\":\"chandlerworthy\",\"birth_date\":\"1993-09-15\",\"espn_id\":2581319},\"3958\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bean\",\"depth_chart_position\":null,\"player_id\":\"3958\",\"birth_city\":null,\"fantasy_data_id\":18791,\"years_exp\":3,\"hashtag\":\"#JimmyBean-NFL-FA-63\",\"search_first_name\":\"jimmy\",\"rotowire_id\":10903,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jimmy Bean\",\"sportradar_id\":\"65d78e5d-188c-4914-ba00-ebe4d7da893d\",\"pandascore_id\":null,\"yahoo_id\":30083,\"last_name\":\"Bean\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jimmybean\",\"birth_date\":\"1993-11-08\",\"espn_id\":2577505},\"1326\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029520\",\"first_name\":\"Eddie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1547843158696,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pleasant\",\"depth_chart_position\":null,\"player_id\":\"1326\",\"birth_city\":null,\"fantasy_data_id\":14824,\"years_exp\":8,\"hashtag\":\"#EddiePleasant-NFL-FA-35\",\"search_first_name\":\"eddie\",\"rotowire_id\":8495,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Eddie Pleasant\",\"sportradar_id\":\"4b6a70aa-3123-4ac4-939d-00f81fde0e33\",\"pandascore_id\":null,\"yahoo_id\":26484,\"last_name\":\"Pleasant\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Kennedy (CA)\",\"depth_chart_order\":null,\"stats_id\":401826,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"eddiepleasant\",\"birth_date\":\"1988-12-17\",\"espn_id\":15612},\"596\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027875\",\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605471612452,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bulaga\",\"depth_chart_position\":\"RT\",\"player_id\":\"596\",\"birth_city\":null,\"fantasy_data_id\":11385,\"years_exp\":10,\"hashtag\":\"#BryanBulaga-NFL-LAC-75\",\"search_first_name\":\"bryan\",\"rotowire_id\":6540,\"rotoworld_id\":5693,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Bryan Bulaga\",\"sportradar_id\":\"2f80e90d-dbff-4395-81c9-4e61c247d0f1\",\"pandascore_id\":null,\"yahoo_id\":23998,\"last_name\":\"Bulaga\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Marian Central Central (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bryanbulaga\",\"birth_date\":\"1989-03-21\",\"espn_id\":13247},\"3724\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randall\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jette\",\"depth_chart_position\":null,\"player_id\":\"3724\",\"birth_city\":null,\"fantasy_data_id\":18532,\"years_exp\":0,\"hashtag\":\"#RandallJette-NFL-FA-41\",\"search_first_name\":\"randall\",\"rotowire_id\":11449,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Randall Jette\",\"sportradar_id\":\"c3330180-f880-4462-8524-d92567917f2a\",\"pandascore_id\":null,\"yahoo_id\":29734,\"last_name\":\"Jette\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'11\\\"\",\"search_full_name\":\"randalljette\",\"birth_date\":\"1993-03-27\",\"espn_id\":2593183},\"7236\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devwah\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599693357437,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whaley\",\"depth_chart_position\":null,\"player_id\":\"7236\",\"birth_city\":null,\"fantasy_data_id\":22237,\"years_exp\":0,\"hashtag\":\"#DevwahWhaley-NFL-FA-0\",\"search_first_name\":\"devwah\",\"rotowire_id\":14772,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Devwah Whaley\",\"sportradar_id\":\"09497361-f2fb-4397-9dcd-fc19b197e0b9\",\"pandascore_id\":null,\"yahoo_id\":33170,\"last_name\":\"Whaley\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"devwahwhaley\",\"birth_date\":\"1997-11-03\",\"espn_id\":null},\"953\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028003\",\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1576017946680,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclain\",\"depth_chart_position\":\"LDT\",\"player_id\":\"953\",\"birth_city\":null,\"fantasy_data_id\":13319,\"years_exp\":9,\"hashtag\":\"#TerrellMcClain-NFL-FA-93\",\"search_first_name\":\"terrell\",\"rotowire_id\":7474,\"rotoworld_id\":6618,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Terrell McClain\",\"sportradar_id\":\"97d98203-7785-4286-b01c-2611c6f5a44e\",\"pandascore_id\":null,\"yahoo_id\":24852,\"last_name\":\"McClain\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Pensacola (FL)\",\"depth_chart_order\":2,\"stats_id\":403290,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terrellmcclain\",\"birth_date\":\"1988-07-20\",\"espn_id\":14014},\"2622\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Warren\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herring\",\"depth_chart_position\":null,\"player_id\":\"2622\",\"birth_city\":null,\"fantasy_data_id\":17090,\"years_exp\":0,\"hashtag\":\"#WarrenHerring-NFL-FA-65\",\"search_first_name\":\"warren\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Warren Herring\",\"sportradar_id\":\"9dc60b55-ea11-4418-937c-da5d7ffaa3b6\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Herring\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"warrenherring\",\"birth_date\":\"1992-01-11\",\"espn_id\":2515615},\"5928\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035292\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605566419850,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":null,\"player_id\":\"5928\",\"birth_city\":null,\"fantasy_data_id\":20862,\"years_exp\":1,\"hashtag\":\"#DavidLong-NFL-TEN-51\",\"search_first_name\":\"david\",\"rotowire_id\":13486,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1569,\"age\":24,\"full_name\":\"David Long\",\"sportradar_id\":\"55d7adb4-be58-4c59-9a6e-1ceb73c10c4d\",\"pandascore_id\":null,\"yahoo_id\":32020,\"last_name\":\"Long\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"West Virginia\",\"high_school\":\"Winton Woods (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"davidlong\",\"birth_date\":\"1996-10-12\",\"espn_id\":3916074},\"2568\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hodges\",\"depth_chart_position\":null,\"player_id\":\"2568\",\"birth_city\":null,\"fantasy_data_id\":17032,\"years_exp\":1,\"hashtag\":\"#ZachHodges-NFL-FA-40\",\"search_first_name\":\"zach\",\"rotowire_id\":10383,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zach Hodges\",\"sportradar_id\":\"9ef09a2d-f0b1-407c-9cc3-f9ffec67f21a\",\"pandascore_id\":null,\"yahoo_id\":28744,\"last_name\":\"Hodges\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"zachhodges\",\"birth_date\":\"1991-10-31\",\"espn_id\":2566598},\"757\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026964\",\"first_name\":\"Clinton\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1573068322149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"757\",\"birth_city\":null,\"fantasy_data_id\":12460,\"years_exp\":11,\"hashtag\":\"#ClintonMcDonald-NFL-FA-93\",\"search_first_name\":\"clinton\",\"rotowire_id\":7202,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Clinton McDonald\",\"sportradar_id\":\"c3b6a5da-b9a5-415a-8239-1fd92dd34b80\",\"pandascore_id\":null,\"yahoo_id\":9513,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Jacksonville (AR)\",\"depth_chart_order\":null,\"stats_id\":300747,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"297\",\"height\":\"6'2\\\"\",\"search_full_name\":\"clintonmcdonald\",\"birth_date\":\"1987-01-06\",\"espn_id\":12692},\"4866\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034844\",\"first_name\":\"Saquon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604181045246,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"barkley\",\"depth_chart_position\":\"RB\",\"player_id\":\"4866\",\"birth_city\":null,\"fantasy_data_id\":19766,\"years_exp\":2,\"hashtag\":\"#SaquonBarkley-NFL-NYG-26\",\"search_first_name\":\"saquon\",\"rotowire_id\":12507,\"rotoworld_id\":13048,\"active\":true,\"search_rank\":3,\"age\":23,\"full_name\":\"Saquon Barkley\",\"sportradar_id\":\"9811b753-347c-467a-b3cb-85937e71e2b9\",\"pandascore_id\":null,\"yahoo_id\":30972,\"last_name\":\"Barkley\",\"metadata\":{\"injury_override_regular_2020_3\":\"IR\"},\"college\":\"Penn State\",\"high_school\":\"Whitehall (PA)\",\"depth_chart_order\":6,\"stats_id\":883302,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"5'11\\\"\",\"search_full_name\":\"saquonbarkley\",\"birth_date\":\"1997-02-09\",\"espn_id\":3929630},\"946\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1549394703508,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dent\",\"depth_chart_position\":null,\"player_id\":\"946\",\"birth_city\":null,\"fantasy_data_id\":13285,\"years_exp\":9,\"hashtag\":\"#AkeemDent-NFL-FA-57\",\"search_first_name\":\"akeem\",\"rotowire_id\":7501,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Akeem Dent\",\"sportradar_id\":\"9f897fa7-7363-47cc-9020-a2904ce3a3de\",\"pandascore_id\":null,\"yahoo_id\":24878,\"last_name\":\"Dent\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Douglass (GA)\",\"depth_chart_order\":null,\"stats_id\":332748,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'1\\\"\",\"search_full_name\":\"akeemdent\",\"birth_date\":\"1987-09-27\",\"espn_id\":14006},\"1549\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030448\",\"first_name\":\"Kawann\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602800742433,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"short\",\"depth_chart_position\":null,\"player_id\":\"1549\",\"birth_city\":null,\"fantasy_data_id\":15189,\"years_exp\":7,\"hashtag\":\"#KawannShort-NFL-CAR-99\",\"search_first_name\":\"kawann\",\"rotowire_id\":8674,\"rotoworld_id\":8434,\"active\":true,\"search_rank\":740,\"age\":31,\"full_name\":\"Kawann Short\",\"sportradar_id\":\"123f0733-0afb-4291-8e57-9970e229309b\",\"pandascore_id\":null,\"yahoo_id\":26667,\"last_name\":\"Short\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Central (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kawannshort\",\"birth_date\":\"1989-02-02\",\"espn_id\":15862},\"5760\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034819\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1556985040628,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crockett\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5760\",\"birth_city\":null,\"fantasy_data_id\":20667,\"years_exp\":2,\"hashtag\":\"#JoshCrockett-NFL-FA-6\",\"search_first_name\":\"josh\",\"rotowire_id\":13363,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Josh Crockett\",\"sportradar_id\":\"f858a3b1-7ecd-4caa-be5e-7d1e6b66523b\",\"pandascore_id\":null,\"yahoo_id\":31758,\"last_name\":\"Crockett\",\"metadata\":null,\"college\":\"Central Oklahoma\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":1120577,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshcrockett\",\"birth_date\":\"1995-03-13\",\"espn_id\":4350798},\"177\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"welker\",\"depth_chart_position\":null,\"player_id\":\"177\",\"birth_city\":null,\"fantasy_data_id\":4631,\"years_exp\":16,\"hashtag\":\"#WesWelker-NFL-FA-19\",\"search_first_name\":\"wes\",\"rotowire_id\":4248,\"rotoworld_id\":2964,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Wes Welker\",\"sportradar_id\":\"de587dab-dcc9-4e33-8ddf-90f581fae2ec\",\"pandascore_id\":null,\"yahoo_id\":7027,\"last_name\":\"Welker\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Heritage Hall (OK)\",\"depth_chart_order\":null,\"stats_id\":251241,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"weswelker\",\"birth_date\":\"1981-05-01\",\"espn_id\":5941},\"2628\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Boris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anyama\",\"depth_chart_position\":null,\"player_id\":\"2628\",\"birth_city\":null,\"fantasy_data_id\":17096,\"years_exp\":0,\"hashtag\":\"#BorisAnyama-NFL-FA-46\",\"search_first_name\":\"boris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Boris Anyama\",\"sportradar_id\":\"4ae9307c-6aaf-421f-b463-98b5738b3d1a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Anyama\",\"metadata\":null,\"college\":\"Louisiana Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'3\\\"\",\"search_full_name\":\"borisanyama\",\"birth_date\":\"1991-09-13\",\"espn_id\":2517537},\"468\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hartsock\",\"depth_chart_position\":null,\"player_id\":\"468\",\"birth_city\":null,\"fantasy_data_id\":9670,\"years_exp\":8,\"hashtag\":\"#BenHartsock-NFL-FA-88\",\"search_first_name\":\"ben\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Ben Hartsock\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hartsock\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"benhartsock\",\"birth_date\":\"1980-07-05\",\"espn_id\":null},\"2146\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031384\",\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606200051406,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rodgers\",\"depth_chart_position\":\"TE\",\"player_id\":\"2146\",\"birth_city\":null,\"fantasy_data_id\":16491,\"years_exp\":6,\"hashtag\":\"#RichardRodgers-NFL-PHI-85\",\"search_first_name\":\"richard\",\"rotowire_id\":9559,\"rotoworld_id\":9547,\"active\":true,\"search_rank\":542,\"age\":28,\"full_name\":\"Richard Rodgers\",\"sportradar_id\":\"e00b3426-238b-4bdb-85c3-bbf08b7469e3\",\"pandascore_id\":null,\"yahoo_id\":27626,\"last_name\":\"Rodgers\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"St. John's (MA)\",\"depth_chart_order\":3,\"stats_id\":607699,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'4\\\"\",\"search_full_name\":\"richardrodgers\",\"birth_date\":\"1992-01-22\",\"espn_id\":16786},\"3073\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chip\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":null,\"player_id\":\"3073\",\"birth_city\":null,\"fantasy_data_id\":17819,\"years_exp\":0,\"hashtag\":\"#ChipKelly-NFL-FA-0\",\"search_first_name\":\"chip\",\"rotowire_id\":null,\"rotoworld_id\":8367,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Chip Kelly\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"chipkelly\",\"birth_date\":null,\"espn_id\":null},\"3099\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dirk\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547004035697,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"koetter\",\"depth_chart_position\":null,\"player_id\":\"3099\",\"birth_city\":null,\"fantasy_data_id\":17849,\"years_exp\":0,\"hashtag\":\"#DirkKoetter-NFL-FA-0\",\"search_first_name\":\"dirk\",\"rotowire_id\":null,\"rotoworld_id\":9347,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dirk Koetter\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Koetter\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dirkkoetter\",\"birth_date\":null,\"espn_id\":null},\"6597\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035337\",\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"farnsworth\",\"depth_chart_position\":null,\"player_id\":\"6597\",\"birth_city\":null,\"fantasy_data_id\":21262,\"years_exp\":1,\"hashtag\":\"#WesFarnsworth-NFL-FA-0\",\"search_first_name\":\"wes\",\"rotowire_id\":14279,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Wes Farnsworth\",\"sportradar_id\":\"c83a2be7-048e-421a-9734-ff1a26a05484\",\"pandascore_id\":null,\"yahoo_id\":32433,\"last_name\":\"Farnsworth\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"wesfarnsworth\",\"birth_date\":\"1997-04-10\",\"espn_id\":3914817},\"3325\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032425\",\"first_name\":\"Antwione\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567261202788,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3325\",\"birth_city\":null,\"fantasy_data_id\":18086,\"years_exp\":4,\"hashtag\":\"#AntwioneWilliams-NFL-FA-49\",\"search_first_name\":\"antwione\",\"rotowire_id\":11263,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Antwione Williams\",\"sportradar_id\":\"d65013f2-51b0-45a6-8f26-608574abeee2\",\"pandascore_id\":null,\"yahoo_id\":29403,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605913,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'3\\\"\",\"search_full_name\":\"antwionewilliams\",\"birth_date\":\"1993-05-26\",\"espn_id\":2567868},\"6169\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567006226114,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"6169\",\"birth_city\":null,\"fantasy_data_id\":21081,\"years_exp\":1,\"hashtag\":\"#JamesWilliams-NFL-FA-32\",\"search_first_name\":\"james\",\"rotowire_id\":13549,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"James Williams\",\"sportradar_id\":\"495651ef-1a14-42be-9f6a-40385a428dd8\",\"pandascore_id\":null,\"yahoo_id\":32368,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jameswilliams\",\"birth_date\":null,\"espn_id\":3884368},\"4311\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033242\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596385216436,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grace\",\"depth_chart_position\":null,\"player_id\":\"4311\",\"birth_city\":null,\"fantasy_data_id\":19160,\"years_exp\":3,\"hashtag\":\"#JermaineGrace-NFL-NYG-48\",\"search_first_name\":\"jermaine\",\"rotowire_id\":12043,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1232,\"age\":26,\"full_name\":\"Jermaine Grace\",\"sportradar_id\":\"eceef7ad-494e-4a84-a6d6-e7253fb554f0\",\"pandascore_id\":null,\"yahoo_id\":30499,\"last_name\":\"Grace\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miramar (FL)\",\"depth_chart_order\":null,\"stats_id\":739802,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jermainegrace\",\"birth_date\":\"1993-11-08\",\"espn_id\":3051924},\"3728\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032649\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597715714140,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"3728\",\"birth_city\":null,\"fantasy_data_id\":18537,\"years_exp\":4,\"hashtag\":\"#BrianPrice-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":11566,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1090,\"age\":26,\"full_name\":\"Brian Price\",\"sportradar_id\":\"eddd3f47-fdd1-4d53-9e31-93b46624fd0f\",\"pandascore_id\":null,\"yahoo_id\":29747,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":729627,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brianprice\",\"birth_date\":\"1994-06-24\",\"espn_id\":3040661},\"5344\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034792\",\"first_name\":\"Cornell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603412749723,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"armstrong\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5344\",\"birth_city\":null,\"fantasy_data_id\":20032,\"years_exp\":2,\"hashtag\":\"#CornellArmstrong-NFL-HOU-30\",\"search_first_name\":\"cornell\",\"rotowire_id\":12999,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1398,\"age\":25,\"full_name\":\"Cornell Armstrong\",\"sportradar_id\":\"0a08ca62-e488-4369-8e26-8b158443865f\",\"pandascore_id\":null,\"yahoo_id\":31179,\"last_name\":\"Armstrong\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Bassfield (MS)\",\"depth_chart_order\":2,\"stats_id\":835063,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"cornellarmstrong\",\"birth_date\":\"1995-09-22\",\"espn_id\":3123963},\"4863\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034343\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599595539925,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rosen\",\"depth_chart_position\":\"QB\",\"player_id\":\"4863\",\"birth_city\":null,\"fantasy_data_id\":19763,\"years_exp\":2,\"hashtag\":\"#JoshRosen-NFL-TB-2\",\"search_first_name\":\"josh\",\"rotowire_id\":12489,\"rotoworld_id\":13047,\"active\":true,\"search_rank\":519,\"age\":23,\"full_name\":\"Josh Rosen\",\"sportradar_id\":\"5c079a21-ae9e-4b38-a69a-47706fa8dd67\",\"pandascore_id\":null,\"yahoo_id\":30980,\"last_name\":\"Rosen\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"St. John Bosco (CA)\",\"depth_chart_order\":4,\"stats_id\":868876,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'4\\\"\",\"search_full_name\":\"joshrosen\",\"birth_date\":\"1997-02-10\",\"espn_id\":3886377},\"4679\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033741\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599192655081,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"usher\",\"depth_chart_position\":null,\"player_id\":\"4679\",\"birth_city\":null,\"fantasy_data_id\":19580,\"years_exp\":3,\"hashtag\":\"#NickUsher-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":14483,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1280,\"age\":25,\"full_name\":\"Nick Usher\",\"sportradar_id\":\"ac973c8c-c148-4866-b3fc-f39e402d61d9\",\"pandascore_id\":null,\"yahoo_id\":30764,\"last_name\":\"Usher\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickusher\",\"birth_date\":\"1995-01-22\",\"espn_id\":3042536},\"5222\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034446\",\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598921430046,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"5222\",\"birth_city\":null,\"fantasy_data_id\":20157,\"years_exp\":2,\"hashtag\":\"#JalenDavis-NFL-CIN-37\",\"search_first_name\":\"jalen\",\"rotowire_id\":13263,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1424,\"age\":24,\"full_name\":\"Jalen Davis\",\"sportradar_id\":\"57a21028-b3a1-494b-ade8-7e94c7108823\",\"pandascore_id\":null,\"yahoo_id\":31534,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Helix (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jalendavis\",\"birth_date\":\"1996-02-02\",\"espn_id\":3125356},\"7277\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamir\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"7277\",\"birth_city\":null,\"fantasy_data_id\":22274,\"years_exp\":0,\"hashtag\":\"#JamirJones-NFL-FA-0\",\"search_first_name\":\"jamir\",\"rotowire_id\":14852,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Jamir Jones\",\"sportradar_id\":\"86e5c278-2cd6-4633-ba0b-bc5e7a1c1372\",\"pandascore_id\":null,\"yahoo_id\":33159,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jamirjones\",\"birth_date\":\"1998-06-14\",\"espn_id\":null},\"6265\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567285506251,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"6265\",\"birth_city\":null,\"fantasy_data_id\":21200,\"years_exp\":1,\"hashtag\":\"#ChrisNelson-NFL-FA-70\",\"search_first_name\":\"chris\",\"rotowire_id\":13777,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Chris Nelson\",\"sportradar_id\":\"96762dff-ae92-4382-8758-2d8c025c36cc\",\"pandascore_id\":null,\"yahoo_id\":32172,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrisnelson\",\"birth_date\":null,\"espn_id\":3125125},\"6964\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600105563705,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mckeon\",\"depth_chart_position\":null,\"player_id\":\"6964\",\"birth_city\":null,\"fantasy_data_id\":21781,\"years_exp\":0,\"hashtag\":\"#SeanMcKeon-NFL-DAL-84\",\"search_first_name\":\"sean\",\"rotowire_id\":14478,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Sean McKeon\",\"sportradar_id\":\"0f369885-8ecd-4ca0-a3dc-df8530a0db6e\",\"pandascore_id\":null,\"yahoo_id\":33101,\"last_name\":\"McKeon\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Shepherd Hill Regional (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'5\\\"\",\"search_full_name\":\"seanmckeon\",\"birth_date\":\"1997-12-28\",\"espn_id\":4036275},\"6227\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035353\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1597589111997,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"easley\",\"depth_chart_position\":null,\"player_id\":\"6227\",\"birth_city\":null,\"fantasy_data_id\":21149,\"years_exp\":1,\"hashtag\":\"#NickEasley-NFL-FA-0\",\"search_first_name\":\"nick\",\"rotowire_id\":13918,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nick Easley\",\"sportradar_id\":\"862b132b-c187-4c43-ba6d-242ae660ebda\",\"pandascore_id\":null,\"yahoo_id\":32412,\"last_name\":\"Easley\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":976405,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nickeasley\",\"birth_date\":\"1997-01-14\",\"espn_id\":4240591},\"1861\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1518465002703,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reilly\",\"depth_chart_position\":null,\"player_id\":\"1861\",\"birth_city\":null,\"fantasy_data_id\":16073,\"years_exp\":6,\"hashtag\":\"#TrevorReilly-NFL-FA-51\",\"search_first_name\":\"trevor\",\"rotowire_id\":9341,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Trevor Reilly\",\"sportradar_id\":\"d8786e1c-7bf4-42e2-9ee3-a80d8630728b\",\"pandascore_id\":null,\"yahoo_id\":27761,\"last_name\":\"Reilly\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Valley Center (CA)\",\"depth_chart_order\":null,\"stats_id\":325069,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"trevorreilly\",\"birth_date\":\"1988-01-17\",\"espn_id\":16834},\"4227\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033303\",\"first_name\":\"Harrison\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606237254010,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"butker\",\"depth_chart_position\":\"K\",\"player_id\":\"4227\",\"birth_city\":null,\"fantasy_data_id\":19073,\"years_exp\":3,\"hashtag\":\"#HarrisonButker-NFL-KC-7\",\"search_first_name\":\"harrison\",\"rotowire_id\":11783,\"rotoworld_id\":12433,\"active\":true,\"search_rank\":147,\"age\":25,\"full_name\":\"Harrison Butker\",\"sportradar_id\":\"4ceb866c-8eaf-49b5-9043-56228e43a2e5\",\"pandascore_id\":null,\"yahoo_id\":30346,\"last_name\":\"Butker\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Westminster (GA)\",\"depth_chart_order\":1,\"stats_id\":748560,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'4\\\"\",\"search_full_name\":\"harrisonbutker\",\"birth_date\":\"1995-07-14\",\"espn_id\":3055899},\"6041\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Breckyn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hager\",\"depth_chart_position\":null,\"player_id\":\"6041\",\"birth_city\":null,\"fantasy_data_id\":20781,\"years_exp\":0,\"hashtag\":\"#BreckynHager-NFL-FA-0\",\"search_first_name\":\"breckyn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Breckyn Hager\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hager\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'2\\\"\",\"search_full_name\":\"breckynhager\",\"birth_date\":null,\"espn_id\":null},\"6393\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elkanah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":null,\"player_id\":\"6393\",\"birth_city\":null,\"fantasy_data_id\":21401,\"years_exp\":0,\"hashtag\":\"#ElkanahDillon-NFL-FA-85\",\"search_first_name\":\"elkanah\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Elkanah Dillon\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"\",\"search_full_name\":\"elkanahdillon\",\"birth_date\":null,\"espn_id\":3139590},\"1776\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"warren\",\"depth_chart_position\":null,\"player_id\":\"1776\",\"birth_city\":null,\"fantasy_data_id\":15865,\"years_exp\":8,\"hashtag\":\"#JeremiahWarren-NFL-FA-60\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jeremiah Warren\",\"sportradar_id\":\"f1dabfaf-ff04-4616-a55b-7f333078cea1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Warren\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Bay (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremiahwarren\",\"birth_date\":\"1987-09-20\",\"espn_id\":15463},\"2280\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kiero\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"small\",\"depth_chart_position\":null,\"player_id\":\"2280\",\"birth_city\":null,\"fantasy_data_id\":16696,\"years_exp\":1,\"hashtag\":\"#KieroSmall-NFL-FA-37\",\"search_first_name\":\"kiero\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kiero Small\",\"sportradar_id\":\"44a87172-9ac1-434a-9f63-f31c654f8aae\",\"pandascore_id\":null,\"yahoo_id\":27755,\"last_name\":\"Small\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604744,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kierosmall\",\"birth_date\":\"1989-05-01\",\"espn_id\":16939},\"5098\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034391\",\"first_name\":\"Siran\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596653112816,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":\"CB\",\"player_id\":\"5098\",\"birth_city\":null,\"fantasy_data_id\":19963,\"years_exp\":2,\"hashtag\":\"#SiranNeal-NFL-BUF-33\",\"search_first_name\":\"siran\",\"rotowire_id\":12817,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1368,\"age\":26,\"full_name\":\"Siran Neal\",\"sportradar_id\":\"82100457-f4ee-4f24-8ca2-584bfdc85749\",\"pandascore_id\":null,\"yahoo_id\":31124,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":\"Eufaula (AL)\",\"depth_chart_order\":2,\"stats_id\":750324,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"siranneal\",\"birth_date\":\"1994-08-04\",\"espn_id\":3057524},\"4993\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034829\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606503004099,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gesicki\",\"depth_chart_position\":\"TE\",\"player_id\":\"4993\",\"birth_city\":null,\"fantasy_data_id\":19853,\"years_exp\":2,\"hashtag\":\"#MikeGesicki-NFL-MIA-88\",\"search_first_name\":\"mike\",\"rotowire_id\":12764,\"rotoworld_id\":13104,\"active\":true,\"search_rank\":150,\"age\":25,\"full_name\":\"Mike Gesicki\",\"sportradar_id\":\"1012cbe0-7eba-4169-bfca-183a0204e1a7\",\"pandascore_id\":null,\"yahoo_id\":31012,\"last_name\":\"Gesicki\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Southern Regional (NJ)\",\"depth_chart_order\":1,\"stats_id\":836152,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mikegesicki\",\"birth_date\":\"1995-10-03\",\"espn_id\":3116164},\"850\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1513125301262,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"braman\",\"depth_chart_position\":null,\"player_id\":\"850\",\"birth_city\":null,\"fantasy_data_id\":12935,\"years_exp\":9,\"hashtag\":\"#BryanBraman-NFL-FA-50\",\"search_first_name\":\"bryan\",\"rotowire_id\":7780,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Bryan Braman\",\"sportradar_id\":\"d961c830-01d2-46d6-9b69-3b8357841204\",\"pandascore_id\":null,\"yahoo_id\":25519,\"last_name\":\"Braman\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"Spokane Shadle Park (WA)\",\"depth_chart_order\":null,\"stats_id\":286595,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bryanbraman\",\"birth_date\":\"1987-05-04\",\"espn_id\":14524},\"6206\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034919\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1573596355589,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"6206\",\"birth_city\":null,\"fantasy_data_id\":21103,\"years_exp\":1,\"hashtag\":\"#CodyBrown-NFL-FA-39\",\"search_first_name\":\"cody\",\"rotowire_id\":13940,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cody Brown\",\"sportradar_id\":\"011b1396-4a13-4bdf-a48d-978688a9eb35\",\"pandascore_id\":null,\"yahoo_id\":31829,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"codybrown\",\"birth_date\":\"1994-03-04\",\"espn_id\":2161946},\"1274\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gerell\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1274\",\"birth_city\":null,\"fantasy_data_id\":14716,\"years_exp\":2,\"hashtag\":\"#GerellRobinson-NFL-FA-89\",\"search_first_name\":\"gerell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Gerell Robinson\",\"sportradar_id\":\"b97e3780-7091-4ee8-b939-edbb994018bd\",\"pandascore_id\":null,\"yahoo_id\":25984,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":460971,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gerellrobinson\",\"birth_date\":\"1989-10-13\",\"espn_id\":15214},\"5407\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034618\",\"first_name\":\"Ervin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"5407\",\"birth_city\":null,\"fantasy_data_id\":20504,\"years_exp\":2,\"hashtag\":\"#ErvinPhillips-NFL-FA-89\",\"search_first_name\":\"ervin\",\"rotowire_id\":13027,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ervin Phillips\",\"sportradar_id\":\"9e0a37e5-9814-4b43-a79d-0a51c97ec5c3\",\"pandascore_id\":null,\"yahoo_id\":31275,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":836230,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ervinphillips\",\"birth_date\":\"1995-01-18\",\"espn_id\":null},\"7159\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reid\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599704143821,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sinnett\",\"depth_chart_position\":\"QB\",\"player_id\":\"7159\",\"birth_city\":null,\"fantasy_data_id\":22160,\"years_exp\":0,\"hashtag\":\"#ReidSinnett-NFL-MIA-7\",\"search_first_name\":\"reid\",\"rotowire_id\":14846,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Reid Sinnett\",\"sportradar_id\":\"7debccec-8ec2-443a-b4a7-a52f14464883\",\"pandascore_id\":null,\"yahoo_id\":33279,\"last_name\":\"Sinnett\",\"metadata\":null,\"college\":\"San Diego\",\"high_school\":\"Johnston (IA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"reidsinnett\",\"birth_date\":\"1997-02-05\",\"espn_id\":3926936},\"3166\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032968\",\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605516015866,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jack\",\"depth_chart_position\":\"WLB\",\"player_id\":\"3166\",\"birth_city\":null,\"fantasy_data_id\":17925,\"years_exp\":4,\"hashtag\":\"#MylesJack-NFL-JAX-44\",\"search_first_name\":\"myles\",\"rotowire_id\":11064,\"rotoworld_id\":11302,\"active\":true,\"search_rank\":947,\"age\":25,\"full_name\":\"Myles Jack\",\"sportradar_id\":\"66e776e7-f354-4939-835b-a23dc889c6ae\",\"pandascore_id\":null,\"yahoo_id\":29270,\"last_name\":\"Jack\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Bellevue (WA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mylesjack\",\"birth_date\":\"1995-09-03\",\"espn_id\":3047566},\"1977\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030652\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1544826627744,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"1977\",\"birth_city\":null,\"fantasy_data_id\":16241,\"years_exp\":6,\"hashtag\":\"#JoshWalker-NFL-FA-73\",\"search_first_name\":\"josh\",\"rotowire_id\":10088,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Josh Walker\",\"sportradar_id\":\"89398fe2-d54f-4672-9324-3012c06ce2a6\",\"pandascore_id\":null,\"yahoo_id\":27917,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Rhea County (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshwalker\",\"birth_date\":\"1991-06-02\",\"espn_id\":17095},\"4623\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033683\",\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1516723201203,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cook\",\"depth_chart_position\":null,\"player_id\":\"4623\",\"birth_city\":null,\"fantasy_data_id\":19516,\"years_exp\":3,\"hashtag\":\"#TimCook-NFL-FA-41\",\"search_first_name\":\"tim\",\"rotowire_id\":12116,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tim Cook\",\"sportradar_id\":\"5dac4c6d-332a-48fb-b4ab-f90240800351\",\"pandascore_id\":null,\"yahoo_id\":30398,\"last_name\":\"Cook\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":884978,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"timcook\",\"birth_date\":\"1994-04-19\",\"espn_id\":3930272},\"124\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026275\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1554399602962,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sitton\",\"depth_chart_position\":null,\"player_id\":\"124\",\"birth_city\":null,\"fantasy_data_id\":3339,\"years_exp\":12,\"hashtag\":\"#JoshSitton-NFL-FA-71\",\"search_first_name\":\"josh\",\"rotowire_id\":6323,\"rotoworld_id\":4891,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Josh Sitton\",\"sportradar_id\":\"9c2bf2fc-d6cb-479d-8ece-f2ab4d1cda91\",\"pandascore_id\":null,\"yahoo_id\":8925,\"last_name\":\"Sitton\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Pensacola Catholic (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshsitton\",\"birth_date\":\"1986-06-16\",\"espn_id\":11382},\"5822\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034887\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603122016886,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LILB\",\"player_id\":\"5822\",\"birth_city\":null,\"fantasy_data_id\":20715,\"years_exp\":2,\"hashtag\":\"#AJJohnson-NFL-DEN-45\",\"search_first_name\":\"aj\",\"rotowire_id\":13391,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1513,\"age\":28,\"full_name\":\"A.J. Johnson\",\"sportradar_id\":\"e9b50746-32c9-478c-a8cc-3f037e762ecc\",\"pandascore_id\":null,\"yahoo_id\":31792,\"last_name\":\"Johnson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Tennessee\",\"high_school\":\"Gainesville (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ajjohnson\",\"birth_date\":\"1991-12-24\",\"espn_id\":2577712},\"639\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027733\",\"first_name\":\"Kam\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1557434406200,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chancellor\",\"depth_chart_position\":\"SS\",\"player_id\":\"639\",\"birth_city\":null,\"fantasy_data_id\":11598,\"years_exp\":10,\"hashtag\":\"#KamChancellor-NFL-FA-31\",\"search_first_name\":\"kam\",\"rotowire_id\":6651,\"rotoworld_id\":5910,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Kam Chancellor\",\"sportradar_id\":\"1f49b95a-97cb-426e-8bd0-aeeb4b5b0ad1\",\"pandascore_id\":null,\"yahoo_id\":24109,\"last_name\":\"Chancellor\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Maury (VA)\",\"depth_chart_order\":3,\"stats_id\":333474,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kamchancellor\",\"birth_date\":\"1988-04-03\",\"espn_id\":13336},\"2144\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perillo\",\"depth_chart_position\":null,\"player_id\":\"2144\",\"birth_city\":null,\"fantasy_data_id\":16487,\"years_exp\":6,\"hashtag\":\"#JustinPerillo-NFL-FA-80\",\"search_first_name\":\"justin\",\"rotowire_id\":10007,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Justin Perillo\",\"sportradar_id\":\"22dc9bf1-bf01-4b65-9792-15c0cae4d25e\",\"pandascore_id\":null,\"yahoo_id\":28086,\"last_name\":\"Perillo\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":\"The Tatnall School (DE)\",\"depth_chart_order\":null,\"stats_id\":500107,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinperillo\",\"birth_date\":\"1991-01-05\",\"espn_id\":17231},\"6894\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1588113019977,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilcox\",\"depth_chart_position\":\"TE\",\"player_id\":\"6894\",\"birth_city\":null,\"fantasy_data_id\":21800,\"years_exp\":0,\"hashtag\":\"#MitchellWilcox-NFL-CIN-84\",\"search_first_name\":\"mitchell\",\"rotowire_id\":14634,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Mitchell Wilcox\",\"sportradar_id\":\"b2d98b60-b4b3-4610-81d2-2154c723fdbb\",\"pandascore_id\":null,\"yahoo_id\":33171,\"last_name\":\"Wilcox\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Tarpon Springs (FL)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mitchellwilcox\",\"birth_date\":\"1996-11-07\",\"espn_id\":3923392},\"6236\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035212\",\"first_name\":\"Travon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcmillian\",\"depth_chart_position\":\"RB\",\"player_id\":\"6236\",\"birth_city\":null,\"fantasy_data_id\":21166,\"years_exp\":1,\"hashtag\":\"#TravonMcMillian-NFL-FA-35\",\"search_first_name\":\"travon\",\"rotowire_id\":13832,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Travon McMillian\",\"sportradar_id\":\"211e459d-99a9-4ae6-bbc9-ec2183046d6e\",\"pandascore_id\":null,\"yahoo_id\":32170,\"last_name\":\"McMillian\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":836944,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"travonmcmillian\",\"birth_date\":\"1996-02-05\",\"espn_id\":3124074},\"6611\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035412\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1569883524394,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dowell\",\"depth_chart_position\":null,\"player_id\":\"6611\",\"birth_city\":null,\"fantasy_data_id\":21445,\"years_exp\":1,\"hashtag\":\"#AndrewDowell-NFL-NO-50\",\"search_first_name\":\"andrew\",\"rotowire_id\":14067,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1735,\"age\":24,\"full_name\":\"Andrew Dowell\",\"sportradar_id\":\"8ad3600e-08b4-4390-8ce0-70065776b781\",\"pandascore_id\":null,\"yahoo_id\":32208,\"last_name\":\"Dowell\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"St. Edward (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andrewdowell\",\"birth_date\":\"1996-11-16\",\"espn_id\":3929818},\"4064\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033889\",\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605836414599,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"LT\",\"player_id\":\"4064\",\"birth_city\":null,\"fantasy_data_id\":18910,\"years_exp\":3,\"hashtag\":\"#CamRobinson-NFL-JAX-74\",\"search_first_name\":\"cam\",\"rotowire_id\":11815,\"rotoworld_id\":12223,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cam Robinson\",\"sportradar_id\":\"a7f7153a-c574-4f57-a8cb-760aba8eb629\",\"pandascore_id\":null,\"yahoo_id\":30147,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"West Monroe (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"camrobinson\",\"birth_date\":\"1995-10-09\",\"espn_id\":3115313},\"5612\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mahoungou\",\"depth_chart_position\":null,\"player_id\":\"5612\",\"birth_city\":null,\"fantasy_data_id\":20539,\"years_exp\":2,\"hashtag\":\"#AnthonyMahoungou-NFL-FA-6\",\"search_first_name\":\"anthony\",\"rotowire_id\":13281,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Anthony Mahoungou\",\"sportradar_id\":\"d01e73a9-481f-4e37-823c-0b074fa7b207\",\"pandascore_id\":null,\"yahoo_id\":31574,\"last_name\":\"Mahoungou\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":867014,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonymahoungou\",\"birth_date\":\"1994-02-12\",\"espn_id\":3892746},\"7113\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1587792039493,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"highsmith\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"7113\",\"birth_city\":null,\"fantasy_data_id\":21897,\"years_exp\":0,\"hashtag\":\"#AlexHighsmith-NFL-PIT-56\",\"search_first_name\":\"alex\",\"rotowire_id\":14724,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1821,\"age\":23,\"full_name\":\"Alex Highsmith\",\"sportradar_id\":\"3f4025d1-5782-43e4-9f42-8eee2da66a95\",\"pandascore_id\":null,\"yahoo_id\":32772,\"last_name\":\"Highsmith\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"North Carolina-Charlotte\",\"high_school\":\"Eugene Ashley (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexhighsmith\",\"birth_date\":\"1997-08-07\",\"espn_id\":4037333},\"4332\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033270\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1564701962533,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sickels\",\"depth_chart_position\":null,\"player_id\":\"4332\",\"birth_city\":null,\"fantasy_data_id\":19188,\"years_exp\":3,\"hashtag\":\"#GarrettSickels-NFL-FA-59\",\"search_first_name\":\"garrett\",\"rotowire_id\":11940,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Garrett Sickels\",\"sportradar_id\":\"edb39e18-4683-4774-ac05-af4019fe2aba\",\"pandascore_id\":null,\"yahoo_id\":30535,\"last_name\":\"Sickels\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrettsickels\",\"birth_date\":\"1994-09-24\",\"espn_id\":3057998},\"4695\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maurice\",\"depth_chart_position\":null,\"player_id\":\"4695\",\"birth_city\":null,\"fantasy_data_id\":19598,\"years_exp\":2,\"hashtag\":\"#KevinMaurice-NFL-FA-75\",\"search_first_name\":\"kevin\",\"rotowire_id\":12249,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kevin Maurice\",\"sportradar_id\":\"0102868a-bc03-4a76-b37e-698bb857d303\",\"pandascore_id\":null,\"yahoo_id\":30834,\"last_name\":\"Maurice\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kevinmaurice\",\"birth_date\":\"1994-07-19\",\"espn_id\":3040491},\"4521\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"panfil\",\"depth_chart_position\":null,\"player_id\":\"4521\",\"birth_city\":null,\"fantasy_data_id\":19397,\"years_exp\":3,\"hashtag\":\"#EvanPanfil-NFL-FA-0\",\"search_first_name\":\"evan\",\"rotowire_id\":12242,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Evan Panfil\",\"sportradar_id\":\"fdf35da4-edb3-4e22-8154-7bb077f0037a\",\"pandascore_id\":null,\"yahoo_id\":30706,\"last_name\":\"Panfil\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"evanpanfil\",\"birth_date\":\"1995-03-31\",\"espn_id\":3052462},\"2017\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031015\",\"first_name\":\"Phillip\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599450661750,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gaines\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2017\",\"birth_city\":null,\"fantasy_data_id\":16297,\"years_exp\":6,\"hashtag\":\"#PhillipGaines-NFL-HOU-29\",\"search_first_name\":\"phillip\",\"rotowire_id\":9710,\"rotoworld_id\":9441,\"active\":true,\"search_rank\":801,\"age\":29,\"full_name\":\"Phillip Gaines\",\"sportradar_id\":\"5f173aec-86fc-40b5-b0ae-805b46476022\",\"pandascore_id\":null,\"yahoo_id\":27615,\"last_name\":\"Gaines\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Judson (MA)\",\"depth_chart_order\":2,\"stats_id\":504442,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'0\\\"\",\"search_full_name\":\"phillipgaines\",\"birth_date\":\"1991-04-04\",\"espn_id\":16750},\"654\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"LaDainian\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tomlinson\",\"depth_chart_position\":null,\"player_id\":\"654\",\"birth_city\":null,\"fantasy_data_id\":11708,\"years_exp\":11,\"hashtag\":\"#LaDainianTomlinson-NFL-FA-21\",\"search_first_name\":\"ladainian\",\"rotowire_id\":null,\"rotoworld_id\":561,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"LaDainian Tomlinson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tomlinson\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ladainiantomlinson\",\"birth_date\":\"1979-06-23\",\"espn_id\":null},\"2971\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ezeakunne\",\"depth_chart_position\":null,\"player_id\":\"2971\",\"birth_city\":null,\"fantasy_data_id\":17466,\"years_exp\":0,\"hashtag\":\"#AnthonyEzeakunne-NFL-FA-89\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anthony Ezeakunne\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29202,\"last_name\":\"Ezeakunne\",\"metadata\":null,\"college\":\"Chapman\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":888078,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonyezeakunne\",\"birth_date\":null,\"espn_id\":null},\"7426\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Seth\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599186654818,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dawkins\",\"depth_chart_position\":null,\"player_id\":\"7426\",\"birth_city\":null,\"fantasy_data_id\":22406,\"years_exp\":0,\"hashtag\":\"#SethDawkins-NFL-FA-0\",\"search_first_name\":\"seth\",\"rotowire_id\":15018,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Seth Dawkins\",\"sportradar_id\":\"db28848e-17d9-4855-a8c0-b66765f3d041\",\"pandascore_id\":null,\"yahoo_id\":33282,\"last_name\":\"Dawkins\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"sethdawkins\",\"birth_date\":\"1998-08-16\",\"espn_id\":4035996},\"1734\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rod\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sweeting\",\"depth_chart_position\":null,\"player_id\":\"1734\",\"birth_city\":null,\"fantasy_data_id\":15685,\"years_exp\":2,\"hashtag\":\"#RodSweeting-NFL-FA-38\",\"search_first_name\":\"rod\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Rod Sweeting\",\"sportradar_id\":\"e16ab664-6b3a-42ef-8956-ec61a9cb137c\",\"pandascore_id\":null,\"yahoo_id\":26958,\"last_name\":\"Sweeting\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rodsweeting\",\"birth_date\":\"1990-09-28\",\"espn_id\":16164},\"1117\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"1117\",\"birth_city\":null,\"fantasy_data_id\":14030,\"years_exp\":4,\"hashtag\":\"#MikeHarris-NFL-FA-20\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mike Harris\",\"sportradar_id\":\"235e3d67-b8ba-4893-8e69-ab6daa34f483\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikeharris\",\"birth_date\":\"1989-01-15\",\"espn_id\":15106},\"1621\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030313\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1536203706895,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"becton\",\"depth_chart_position\":null,\"player_id\":\"1621\",\"birth_city\":null,\"fantasy_data_id\":15307,\"years_exp\":7,\"hashtag\":\"#NickBecton-NFL-FA-61\",\"search_first_name\":\"nick\",\"rotowire_id\":9174,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Nick Becton\",\"sportradar_id\":\"d4c3b274-7bef-44de-baa5-c8709b1c78d2\",\"pandascore_id\":null,\"yahoo_id\":26918,\"last_name\":\"Becton\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"New Hanover (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'6\\\"\",\"search_full_name\":\"nickbecton\",\"birth_date\":\"1990-02-11\",\"espn_id\":16047},\"4921\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fortunato\",\"depth_chart_position\":null,\"player_id\":\"4921\",\"birth_city\":null,\"fantasy_data_id\":18887,\"years_exp\":3,\"hashtag\":\"#JoeFortunato-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":11971,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joe Fortunato\",\"sportradar_id\":\"5045eaf0-9ca5-446b-b420-ba5a12d1c902\",\"pandascore_id\":null,\"yahoo_id\":30104,\"last_name\":\"Fortunato\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joefortunato\",\"birth_date\":\"1994-04-07\",\"espn_id\":null},\"1419\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030486\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564068041076,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schwenke\",\"depth_chart_position\":null,\"player_id\":\"1419\",\"birth_city\":null,\"fantasy_data_id\":14979,\"years_exp\":7,\"hashtag\":\"#BrianSchwenke-NFL-FA-63\",\"search_first_name\":\"brian\",\"rotowire_id\":8634,\"rotoworld_id\":8533,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brian Schwenke\",\"sportradar_id\":\"a6025030-596c-4829-9138-8281df21d841\",\"pandascore_id\":null,\"yahoo_id\":26730,\"last_name\":\"Schwenke\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Oceanside (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brianschwenke\",\"birth_date\":\"1991-03-22\",\"espn_id\":15978},\"1829\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030621\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1577572211221,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ola\",\"depth_chart_position\":\"LT\",\"player_id\":\"1829\",\"birth_city\":null,\"fantasy_data_id\":16025,\"years_exp\":6,\"hashtag\":\"#MichaelOla-NFL-FA-70\",\"search_first_name\":\"michael\",\"rotowire_id\":9244,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Michael Ola\",\"sportradar_id\":\"f93fd6fd-e301-45c9-825a-4eb3129a7e23\",\"pandascore_id\":null,\"yahoo_id\":27510,\"last_name\":\"Ola\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":\"Riverdale (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'5\\\"\",\"search_full_name\":\"michaelola\",\"birth_date\":\"1988-04-19\",\"espn_id\":16680},\"5403\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034219\",\"first_name\":\"Peter\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pujals\",\"depth_chart_position\":null,\"player_id\":\"5403\",\"birth_city\":null,\"fantasy_data_id\":20453,\"years_exp\":2,\"hashtag\":\"#PeterPujals-NFL-FA-6\",\"search_first_name\":\"peter\",\"rotowire_id\":13151,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Peter Pujals\",\"sportradar_id\":\"2b136f32-c023-427c-a663-29b921e5ce90\",\"pandascore_id\":null,\"yahoo_id\":31239,\"last_name\":\"Pujals\",\"metadata\":null,\"college\":\"Holy Cross\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":750176,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"peterpujals\",\"birth_date\":\"1995-01-23\",\"espn_id\":3048030},\"1367\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030411\",\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604690745632,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ryan\",\"depth_chart_position\":\"FS\",\"player_id\":\"1367\",\"birth_city\":null,\"fantasy_data_id\":14888,\"years_exp\":7,\"hashtag\":\"#LoganRyan-NFL-NYG-23\",\"search_first_name\":\"logan\",\"rotowire_id\":8640,\"rotoworld_id\":8516,\"active\":true,\"search_rank\":713,\"age\":29,\"full_name\":\"Logan Ryan\",\"sportradar_id\":\"e829aa7e-04a7-425a-9717-c334ca9febe9\",\"pandascore_id\":null,\"yahoo_id\":26706,\"last_name\":\"Ryan\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Eastern (NJ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"loganryan\",\"birth_date\":\"1991-02-09\",\"espn_id\":15861},\"4183\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033958\",\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599260454490,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peterman\",\"depth_chart_position\":\"QB\",\"player_id\":\"4183\",\"birth_city\":null,\"fantasy_data_id\":19029,\"years_exp\":3,\"hashtag\":\"#NathanPeterman-NFL-LV-3\",\"search_first_name\":\"nathan\",\"rotowire_id\":11840,\"rotoworld_id\":12220,\"active\":true,\"search_rank\":1187,\"age\":26,\"full_name\":\"Nathan Peterman\",\"sportradar_id\":\"4e4ba1f9-35c6-4e41-85f5-d8f12d32f459\",\"pandascore_id\":null,\"yahoo_id\":30284,\"last_name\":\"Peterman\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Bartram Trail (FL)\",\"depth_chart_order\":3,\"stats_id\":650974,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nathanpeterman\",\"birth_date\":\"1994-05-04\",\"espn_id\":2972236},\"4811\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033452\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604193611417,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"calitro\",\"depth_chart_position\":\"LILB\",\"player_id\":\"4811\",\"birth_city\":null,\"fantasy_data_id\":19293,\"years_exp\":3,\"hashtag\":\"#AustinCalitro-NFL-DEN-53\",\"search_first_name\":\"austin\",\"rotowire_id\":12232,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1250,\"age\":26,\"full_name\":\"Austin Calitro\",\"sportradar_id\":\"b2d80e3c-1485-488d-8033-52443c63909b\",\"pandascore_id\":null,\"yahoo_id\":30568,\"last_name\":\"Calitro\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Villanova\",\"high_school\":\"Danbury (FL)\",\"depth_chart_order\":2,\"stats_id\":697868,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"austincalitro\",\"birth_date\":\"1994-01-10\",\"espn_id\":2982304},\"2925\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2925\",\"birth_city\":null,\"fantasy_data_id\":17394,\"years_exp\":null,\"hashtag\":\"#DariusDavis-NFL-FA-0\",\"search_first_name\":\"darius\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Darius Davis\",\"sportradar_id\":\"9c103bb4-eb3b-440a-bfa2-dc11076b0528\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":471406,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dariusdavis\",\"birth_date\":null,\"espn_id\":null},\"5939\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035338\",\"first_name\":\"Terrill\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587943856589,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hanks\",\"depth_chart_position\":null,\"player_id\":\"5939\",\"birth_city\":null,\"fantasy_data_id\":20786,\"years_exp\":1,\"hashtag\":\"#TerrillHanks-NFL-FA-0\",\"search_first_name\":\"terrill\",\"rotowire_id\":13792,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Terrill Hanks\",\"sportradar_id\":\"fcba2ad8-5b56-4d42-8250-937e58a6e6e4\",\"pandascore_id\":null,\"yahoo_id\":32434,\"last_name\":\"Hanks\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terrillhanks\",\"birth_date\":\"1995-12-07\",\"espn_id\":3922125},\"1720\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khiry\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1720\",\"birth_city\":null,\"fantasy_data_id\":15645,\"years_exp\":7,\"hashtag\":\"#KhiryRobinson-NFL-FA-33\",\"search_first_name\":\"khiry\",\"rotowire_id\":9059,\"rotoworld_id\":9145,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Khiry Robinson\",\"sportradar_id\":\"5f512278-4956-476d-b5ca-73ecd58d79c1\",\"pandascore_id\":null,\"yahoo_id\":27378,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"Belton\",\"depth_chart_order\":null,\"stats_id\":734347,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khiryrobinson\",\"birth_date\":\"1989-12-28\",\"espn_id\":16530},\"4853\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jerod\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1513719301197,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"4853\",\"birth_city\":null,\"fantasy_data_id\":19550,\"years_exp\":2,\"hashtag\":\"#JerodEvans-NFL-FA-9\",\"search_first_name\":\"jerod\",\"rotowire_id\":11713,\"rotoworld_id\":12338,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jerod Evans\",\"sportradar_id\":\"3e18b688-68ba-41c1-94ac-7dfab19e083e\",\"pandascore_id\":null,\"yahoo_id\":30709,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":792967,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jerodevans\",\"birth_date\":\"1994-01-16\",\"espn_id\":null},\"6428\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cornelius\",\"depth_chart_position\":null,\"player_id\":\"6428\",\"birth_city\":null,\"fantasy_data_id\":21462,\"years_exp\":0,\"hashtag\":\"#TaylorCornelius-NFL-FA-0\",\"search_first_name\":\"taylor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Taylor Cornelius\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cornelius\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"taylorcornelius\",\"birth_date\":null,\"espn_id\":3122424},\"6424\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035613\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576954554657,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kaskey\",\"depth_chart_position\":null,\"player_id\":\"6424\",\"birth_city\":null,\"fantasy_data_id\":21407,\"years_exp\":1,\"hashtag\":\"#MattKaskey-NFL-CAR-63\",\"search_first_name\":\"matt\",\"rotowire_id\":14051,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Matt Kaskey\",\"sportradar_id\":\"943a818d-074a-4243-9d54-f91ada96923b\",\"pandascore_id\":null,\"yahoo_id\":32175,\"last_name\":\"Kaskey\",\"metadata\":null,\"college\":\"Dartmouth\",\"high_school\":\"New Trier (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattkaskey\",\"birth_date\":\"1997-03-17\",\"espn_id\":3912487},\"5437\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1533493508546,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":null,\"player_id\":\"5437\",\"birth_city\":null,\"fantasy_data_id\":20367,\"years_exp\":0,\"hashtag\":\"#CoreyGriffin-NFL-SF-46\",\"search_first_name\":\"corey\",\"rotowire_id\":13032,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Corey Griffin\",\"sportradar_id\":\"b5bf2a1b-6a13-43ff-8cae-ed9793dc9437\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"coreygriffin\",\"birth_date\":\"1995-01-08\",\"espn_id\":3055905},\"4579\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"banderas\",\"depth_chart_position\":\"SLB\",\"player_id\":\"4579\",\"birth_city\":null,\"fantasy_data_id\":19466,\"years_exp\":0,\"hashtag\":\"#JoshBanderas-NFL-DEN-47\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Josh Banderas\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30813,\"last_name\":\"Banderas\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshbanderas\",\"birth_date\":\"1995-02-22\",\"espn_id\":3040468},\"2934\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rumph\",\"depth_chart_position\":null,\"player_id\":\"2934\",\"birth_city\":null,\"fantasy_data_id\":17403,\"years_exp\":0,\"hashtag\":\"#JonathonRumph-NFL-FA-83\",\"search_first_name\":\"jonathon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jonathon Rumph\",\"sportradar_id\":\"c0fd3cea-edb6-480c-8e0f-f6933925d15e\",\"pandascore_id\":null,\"yahoo_id\":29140,\"last_name\":\"Rumph\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":727724,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonathonrumph\",\"birth_date\":\"1991-10-24\",\"espn_id\":null},\"3574\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lunsford\",\"depth_chart_position\":null,\"player_id\":\"3574\",\"birth_city\":null,\"fantasy_data_id\":18350,\"years_exp\":0,\"hashtag\":\"#JohnLunsford-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":11121,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"John Lunsford\",\"sportradar_id\":\"d211d5e4-2e63-493a-b5b7-cd26235934f7\",\"pandascore_id\":null,\"yahoo_id\":29769,\"last_name\":\"Lunsford\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":699149,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnlunsford\",\"birth_date\":\"1993-11-14\",\"espn_id\":2968266},\"952\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sione\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fua\",\"depth_chart_position\":null,\"player_id\":\"952\",\"birth_city\":null,\"fantasy_data_id\":13314,\"years_exp\":4,\"hashtag\":\"#SioneFua-NFL-FA-91\",\"search_first_name\":\"sione\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sione Fua\",\"sportradar_id\":\"25a3d25d-81f5-49d5-8c11-a976a64319dd\",\"pandascore_id\":null,\"yahoo_id\":24884,\"last_name\":\"Fua\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sionefua\",\"birth_date\":\"1988-06-15\",\"espn_id\":14003},\"1819\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Orleans\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1563858342638,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"darkwa\",\"depth_chart_position\":null,\"player_id\":\"1819\",\"birth_city\":null,\"fantasy_data_id\":16008,\"years_exp\":6,\"hashtag\":\"#OrleansDarkwa-NFL-FA-26\",\"search_first_name\":\"orleans\",\"rotowire_id\":9551,\"rotoworld_id\":10102,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Orleans Darkwa\",\"sportradar_id\":\"6fa02dfe-225c-4d0f-9d09-6a6ec31637a4\",\"pandascore_id\":null,\"yahoo_id\":28169,\"last_name\":\"Darkwa\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"The Ensworth School (TN)\",\"depth_chart_order\":null,\"stats_id\":546645,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"orleansdarkwa\",\"birth_date\":\"1992-02-28\",\"espn_id\":17331},\"3038\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031734\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600901409715,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":\"LG\",\"player_id\":\"3038\",\"birth_city\":null,\"fantasy_data_id\":17743,\"years_exp\":5,\"hashtag\":\"#ChrisReed-NFL-CAR-64\",\"search_first_name\":\"chris\",\"rotowire_id\":10758,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chris Reed\",\"sportradar_id\":\"e98ed960-2119-4811-b863-d086ef4e1ddf\",\"pandascore_id\":null,\"yahoo_id\":28850,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Minn. State-Mankato\",\"high_school\":\"Central (NE)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisreed\",\"birth_date\":\"1992-07-22\",\"espn_id\":3163375},\"2803\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031818\",\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536709203653,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"marquez\",\"depth_chart_position\":null,\"player_id\":\"2803\",\"birth_city\":null,\"fantasy_data_id\":17271,\"years_exp\":5,\"hashtag\":\"#BradleyMarquez-NFL-FA-12\",\"search_first_name\":\"bradley\",\"rotowire_id\":10689,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Bradley Marquez\",\"sportradar_id\":\"fc75f3fc-9347-4f7c-a521-e67f3888eda5\",\"pandascore_id\":null,\"yahoo_id\":29001,\"last_name\":\"Marquez\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Odessa (TX)\",\"depth_chart_order\":null,\"stats_id\":605328,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bradleymarquez\",\"birth_date\":\"1992-12-14\",\"espn_id\":2577645},\"2401\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032061\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535737257558,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"2401\",\"birth_city\":null,\"fantasy_data_id\":16857,\"years_exp\":5,\"hashtag\":\"#XavierCooper-NFL-FA-75\",\"search_first_name\":\"xavier\",\"rotowire_id\":10327,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Xavier Cooper\",\"sportradar_id\":\"d0778d5a-f5af-47a4-9b06-adcbf5b3368f\",\"pandascore_id\":null,\"yahoo_id\":28484,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Wilson (WA)\",\"depth_chart_order\":null,\"stats_id\":590668,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"xaviercooper\",\"birth_date\":\"1991-11-30\",\"espn_id\":2578408},\"7444\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kobe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603303839114,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"7444\",\"birth_city\":null,\"fantasy_data_id\":22423,\"years_exp\":0,\"hashtag\":\"#KobeSmith-NFL-TB-73\",\"search_first_name\":\"kobe\",\"rotowire_id\":15162,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Kobe Smith\",\"sportradar_id\":\"fa1bd78e-99e4-4745-9896-cfea01392038\",\"pandascore_id\":null,\"yahoo_id\":33346,\"last_name\":\"Smith\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"South Carolina\",\"high_school\":\"Archer (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kobesmith\",\"birth_date\":\"1998-06-23\",\"espn_id\":4038840},\"532\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027694\",\"first_name\":\"Shawn\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1541458221562,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lauvao\",\"depth_chart_position\":null,\"player_id\":\"532\",\"birth_city\":null,\"fantasy_data_id\":11046,\"years_exp\":10,\"hashtag\":\"#ShawnLauvao-NFL-FA-77\",\"search_first_name\":\"shawn\",\"rotowire_id\":6558,\"rotoworld_id\":5890,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Shawn Lauvao\",\"sportradar_id\":\"6a1b2504-153c-441d-ba17-f78457d58b9c\",\"pandascore_id\":null,\"yahoo_id\":24067,\"last_name\":\"Lauvao\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Farrington (HI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"shawnlauvao\",\"birth_date\":\"1987-10-26\",\"espn_id\":13283},\"1726\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kettani\",\"depth_chart_position\":null,\"player_id\":\"1726\",\"birth_city\":null,\"fantasy_data_id\":15661,\"years_exp\":2,\"hashtag\":\"#EricKettani-NFL-FA-43\",\"search_first_name\":\"eric\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Eric Kettani\",\"sportradar_id\":\"18b16e33-544b-4952-8843-1bcd3dcb1838\",\"pandascore_id\":null,\"yahoo_id\":25303,\"last_name\":\"Kettani\",\"metadata\":null,\"college\":\"Navy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"5'11\\\"\",\"search_full_name\":\"erickettani\",\"birth_date\":\"1987-03-26\",\"espn_id\":13062},\"6024\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034951\",\"first_name\":\"Fred\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606421159272,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RT\",\"player_id\":\"6024\",\"birth_city\":null,\"fantasy_data_id\":20831,\"years_exp\":1,\"hashtag\":\"#FredJohnson-NFL-CIN-74\",\"search_first_name\":\"fred\",\"rotowire_id\":13688,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Fred Johnson\",\"sportradar_id\":\"95cd7ce9-e92a-40d9-997f-c7b16d0efd83\",\"pandascore_id\":null,\"yahoo_id\":32169,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Royal Palm Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"326\",\"height\":\"6'7\\\"\",\"search_full_name\":\"fredjohnson\",\"birth_date\":\"1997-06-05\",\"espn_id\":3915106},\"5636\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034587\",\"first_name\":\"Abdullah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1571111443519,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"5636\",\"birth_city\":null,\"fantasy_data_id\":20450,\"years_exp\":2,\"hashtag\":\"#AbdullahAnderson-NFL-MIN-66\",\"search_first_name\":\"abdullah\",\"rotowire_id\":13237,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1474,\"age\":24,\"full_name\":\"Abdullah Anderson\",\"sportradar_id\":\"3bdd0681-066b-477f-bca9-6b38bad6d8e9\",\"pandascore_id\":null,\"yahoo_id\":31657,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Bucknell\",\"high_school\":\"Absegami (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"abdullahanderson\",\"birth_date\":\"1996-01-24\",\"espn_id\":3119119},\"3839\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":1535221229823,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"iddings\",\"depth_chart_position\":null,\"player_id\":\"3839\",\"birth_city\":null,\"fantasy_data_id\":18659,\"years_exp\":4,\"hashtag\":\"#DrewIddings-NFL-FA-79\",\"search_first_name\":\"drew\",\"rotowire_id\":11520,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Drew Iddings\",\"sportradar_id\":\"828cac4b-3020-4e02-b1d3-ae4515941152\",\"pandascore_id\":null,\"yahoo_id\":29959,\"last_name\":\"Iddings\",\"metadata\":null,\"college\":\"South Dakota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"drewiddings\",\"birth_date\":\"1993-03-16\",\"espn_id\":2566345},\"5331\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034410\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1588283144017,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"covington\",\"depth_chart_position\":\"WLB\",\"player_id\":\"5331\",\"birth_city\":null,\"fantasy_data_id\":20015,\"years_exp\":2,\"hashtag\":\"#ChrisCovington-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":12924,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Covington\",\"sportradar_id\":\"c897e280-6597-4dce-9c0d-ed845148d714\",\"pandascore_id\":null,\"yahoo_id\":31163,\"last_name\":\"Covington\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":838201,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chriscovington\",\"birth_date\":\"1996-01-03\",\"espn_id\":3128252},\"2891\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deontay\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greenberry\",\"depth_chart_position\":null,\"player_id\":\"2891\",\"birth_city\":null,\"fantasy_data_id\":17359,\"years_exp\":0,\"hashtag\":\"#DeontayGreenberry-NFL-FA-86\",\"search_first_name\":\"deontay\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Deontay Greenberry\",\"sportradar_id\":\"b01ad0be-047d-48e2-afe9-026124e704bd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Greenberry\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652243,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"deontaygreenberry\",\"birth_date\":\"1994-03-07\",\"espn_id\":2981502},\"5253\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034532\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604544929858,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"franks\",\"depth_chart_position\":\"TE\",\"player_id\":\"5253\",\"birth_city\":null,\"fantasy_data_id\":20264,\"years_exp\":2,\"hashtag\":\"#JordanFranks-NFL-CLE-88\",\"search_first_name\":\"jordan\",\"rotowire_id\":13247,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1441,\"age\":24,\"full_name\":\"Jordan Franks\",\"sportradar_id\":\"501aa2d9-4202-40e8-810b-92cacea26cd7\",\"pandascore_id\":null,\"yahoo_id\":31561,\"last_name\":\"Franks\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Wakulla (FL)\",\"depth_chart_order\":5,\"stats_id\":838400,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanfranks\",\"birth_date\":\"1996-02-01\",\"espn_id\":3128439},\"4305\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"renew\",\"depth_chart_position\":null,\"player_id\":\"4305\",\"birth_city\":null,\"fantasy_data_id\":19153,\"years_exp\":2,\"hashtag\":\"#TylerRenew-NFL-FA-39\",\"search_first_name\":\"tyler\",\"rotowire_id\":12319,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tyler Renew\",\"sportradar_id\":\"102767b9-144b-45e1-bb5a-5c0fbcd4acad\",\"pandascore_id\":null,\"yahoo_id\":30463,\"last_name\":\"Renew\",\"metadata\":null,\"college\":\"Citadel\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":749703,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tylerrenew\",\"birth_date\":\"1994-10-20\",\"espn_id\":3049733},\"7474\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keandre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"7474\",\"birth_city\":null,\"fantasy_data_id\":22449,\"years_exp\":0,\"hashtag\":\"#KeandreJones-NFL-CIN-47\",\"search_first_name\":\"keandre\",\"rotowire_id\":15066,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2009,\"age\":23,\"full_name\":\"Keandre Jones\",\"sportradar_id\":\"75741cd3-8b9f-445f-b24e-47c8c51de618\",\"pandascore_id\":null,\"yahoo_id\":33174,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Good Counsel (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keandrejones\",\"birth_date\":\"1997-09-24\",\"espn_id\":4040621},\"1624\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"1624\",\"birth_city\":null,\"fantasy_data_id\":15314,\"years_exp\":2,\"hashtag\":\"#MichaelHill-NFL-FA-22\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Michael Hill\",\"sportradar_id\":\"ccc3ffd3-edef-4002-be7b-1808000d7ca5\",\"pandascore_id\":null,\"yahoo_id\":26925,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"michaelhill\",\"birth_date\":\"1989-05-14\",\"espn_id\":16074},\"1383\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030511\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606186215255,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1383\",\"birth_city\":null,\"fantasy_data_id\":14906,\"years_exp\":7,\"hashtag\":\"#BrandonWilliams-NFL-BAL-98\",\"search_first_name\":\"brandon\",\"rotowire_id\":8678,\"rotoworld_id\":8438,\"active\":true,\"search_rank\":716,\"age\":31,\"full_name\":\"Brandon Williams\",\"sportradar_id\":\"7963d8ea-c627-47cb-b46f-a917abb9e9d7\",\"pandascore_id\":null,\"yahoo_id\":26717,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Missouri Southern\",\"high_school\":\"Rockwood Summit (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"336\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandonwilliams\",\"birth_date\":\"1989-02-21\",\"espn_id\":15875},\"312\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026293\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1600644009529,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slater\",\"depth_chart_position\":\"LWR\",\"player_id\":\"312\",\"birth_city\":null,\"fantasy_data_id\":7651,\"years_exp\":12,\"hashtag\":\"#MattSlater-NFL-NE-18\",\"search_first_name\":\"matt\",\"rotowire_id\":5786,\"rotoworld_id\":4904,\"active\":true,\"search_rank\":487,\"age\":35,\"full_name\":\"Matt Slater\",\"sportradar_id\":\"9d404288-65c5-414f-8ea5-ceb97eccaea0\",\"pandascore_id\":null,\"yahoo_id\":8930,\"last_name\":\"Slater\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"UCLA\",\"high_school\":\"Servite (CA)\",\"depth_chart_order\":3,\"stats_id\":234403,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mattslater\",\"birth_date\":\"1985-09-09\",\"espn_id\":11387},\"1172\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029187\",\"first_name\":\"Don\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567297225836,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barclay\",\"depth_chart_position\":null,\"player_id\":\"1172\",\"birth_city\":null,\"fantasy_data_id\":14273,\"years_exp\":8,\"hashtag\":\"#DonBarclay-NFL-FA-67\",\"search_first_name\":\"don\",\"rotowire_id\":8502,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Don Barclay\",\"sportradar_id\":\"4cf02857-f50c-4a6f-b94d-ff12d8f701b0\",\"pandascore_id\":null,\"yahoo_id\":26411,\"last_name\":\"Barclay\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Seneca Valley (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"donbarclay\",\"birth_date\":\"1989-04-18\",\"espn_id\":15409},\"2523\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032248\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604448046009,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hager\",\"depth_chart_position\":\"RILB\",\"player_id\":\"2523\",\"birth_city\":null,\"fantasy_data_id\":16983,\"years_exp\":5,\"hashtag\":\"#BryceHager-NFL-NYJ-58\",\"search_first_name\":\"bryce\",\"rotowire_id\":10382,\"rotoworld_id\":null,\"active\":true,\"search_rank\":905,\"age\":28,\"full_name\":\"Bryce Hager\",\"sportradar_id\":\"ba447b79-44c1-48a7-b30a-a2460f219afe\",\"pandascore_id\":null,\"yahoo_id\":28612,\"last_name\":\"Hager\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Westlake (TX)\",\"depth_chart_order\":2,\"stats_id\":557237,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brycehager\",\"birth_date\":\"1992-05-04\",\"espn_id\":2512999},\"683\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":null,\"player_id\":\"683\",\"birth_city\":null,\"fantasy_data_id\":11974,\"years_exp\":14,\"hashtag\":\"#TimJennings-NFL-FA-28\",\"search_first_name\":\"tim\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Tim Jennings\",\"sportradar_id\":\"bb429fa1-72d8-466a-97b7-7abe1d9c0150\",\"pandascore_id\":null,\"yahoo_id\":7811,\"last_name\":\"Jennings\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Wilkinson (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'8\\\"\",\"search_full_name\":\"timjennings\",\"birth_date\":\"1983-12-24\",\"espn_id\":9648},\"2013\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535065506921,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"2013\",\"birth_city\":null,\"fantasy_data_id\":16290,\"years_exp\":6,\"hashtag\":\"#LouisYoung-NFL-FA-32\",\"search_first_name\":\"louis\",\"rotowire_id\":10070,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Louis Young\",\"sportradar_id\":\"26a67351-ae18-4b13-bf2d-cfee5142b380\",\"pandascore_id\":null,\"yahoo_id\":27833,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"louisyoung\",\"birth_date\":\"1991-10-09\",\"espn_id\":17052},\"6731\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"6731\",\"birth_city\":null,\"fantasy_data_id\":21652,\"years_exp\":0,\"hashtag\":\"#JasonDavis-NFL-FA-0\",\"search_first_name\":\"jason\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jason Davis\",\"sportradar_id\":\"4a6ec8a5-2d5f-4783-86df-4ca4dddf40c1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jasondavis\",\"birth_date\":null,\"espn_id\":null},\"819\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027968\",\"first_name\":\"Muhammad\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600831223759,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilkerson\",\"depth_chart_position\":null,\"player_id\":\"819\",\"birth_city\":null,\"fantasy_data_id\":12806,\"years_exp\":9,\"hashtag\":\"#MuhammadWilkerson-NFL-FA-96\",\"search_first_name\":\"muhammad\",\"rotowire_id\":7464,\"rotoworld_id\":6464,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Muhammad Wilkerson\",\"sportradar_id\":\"3877e0ba-222f-4bd2-887c-1db8f1a5e7d1\",\"pandascore_id\":null,\"yahoo_id\":24817,\"last_name\":\"Wilkerson\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Linden (NJ)\",\"depth_chart_order\":null,\"stats_id\":469180,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"muhammadwilkerson\",\"birth_date\":\"1989-10-22\",\"espn_id\":13985},\"134\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meriweather\",\"depth_chart_position\":null,\"player_id\":\"134\",\"birth_city\":null,\"fantasy_data_id\":3760,\"years_exp\":13,\"hashtag\":\"#BrandonMeriweather-NFL-FA-22\",\"search_first_name\":\"brandon\",\"rotowire_id\":5369,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Brandon Meriweather\",\"sportradar_id\":\"32e4b488-5109-4186-963e-ce7907dfc9e1\",\"pandascore_id\":null,\"yahoo_id\":8278,\"last_name\":\"Meriweather\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Apopka (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandonmeriweather\",\"birth_date\":\"1984-01-14\",\"espn_id\":10468},\"4081\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033890\",\"first_name\":\"Budda\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605743143474,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":\"NB\",\"player_id\":\"4081\",\"birth_city\":null,\"fantasy_data_id\":18927,\"years_exp\":3,\"hashtag\":\"#BuddaBaker-NFL-ARI-32\",\"search_first_name\":\"budda\",\"rotowire_id\":11986,\"rotoworld_id\":12278,\"active\":true,\"search_rank\":1132,\"age\":24,\"full_name\":\"Budda Baker\",\"sportradar_id\":\"5ce20f3e-0f02-4f53-a2ef-5b076361f2b1\",\"pandascore_id\":null,\"yahoo_id\":30149,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Bellevue (WA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"buddabaker\",\"birth_date\":\"1996-01-10\",\"espn_id\":3127287},\"4492\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033482\",\"first_name\":\"Ashton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1560294357686,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lampkin\",\"depth_chart_position\":null,\"player_id\":\"4492\",\"birth_city\":null,\"fantasy_data_id\":19362,\"years_exp\":3,\"hashtag\":\"#AshtonLampkin-NFL-FA-34\",\"search_first_name\":\"ashton\",\"rotowire_id\":12021,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ashton Lampkin\",\"sportradar_id\":\"cb06f6d9-def7-497f-b81d-45dc84d095af\",\"pandascore_id\":null,\"yahoo_id\":30683,\"last_name\":\"Lampkin\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ashtonlampkin\",\"birth_date\":\"1994-01-10\",\"espn_id\":2977735},\"5770\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034852\",\"first_name\":\"J.P.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quinn\",\"depth_chart_position\":null,\"player_id\":\"5770\",\"birth_city\":null,\"fantasy_data_id\":20299,\"years_exp\":2,\"hashtag\":\"#JPQuinn-NFL-FA-59\",\"search_first_name\":\"jp\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"J.P. Quinn\",\"sportradar_id\":\"f1decd46-ab7c-4ed9-a1ff-844a63bb091e\",\"pandascore_id\":null,\"yahoo_id\":31767,\"last_name\":\"Quinn\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jpquinn\",\"birth_date\":\"1994-07-30\",\"espn_id\":3044707},\"1034\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029239\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1595944229504,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"bolden\",\"depth_chart_position\":\"RB\",\"player_id\":\"1034\",\"birth_city\":null,\"fantasy_data_id\":13741,\"years_exp\":8,\"hashtag\":\"#BrandonBolden-NFL-NE-38\",\"search_first_name\":\"brandon\",\"rotowire_id\":8077,\"rotoworld_id\":8119,\"active\":true,\"search_rank\":654,\"age\":30,\"full_name\":\"Brandon Bolden\",\"sportradar_id\":\"dba5e3ec-2c77-4f65-ad6e-cee246f816ef\",\"pandascore_id\":null,\"yahoo_id\":26389,\"last_name\":\"Bolden\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Mississippi\",\"high_school\":\"Scotlandville Magnet (LA)\",\"depth_chart_order\":6,\"stats_id\":465752,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandonbolden\",\"birth_date\":\"1990-01-26\",\"espn_id\":15478},\"3482\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shumate\",\"depth_chart_position\":null,\"player_id\":\"3482\",\"birth_city\":null,\"fantasy_data_id\":18247,\"years_exp\":0,\"hashtag\":\"#ElijahShumate-NFL-FA-41\",\"search_first_name\":\"elijah\",\"rotowire_id\":11172,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Elijah Shumate\",\"sportradar_id\":\"7fd54beb-ccce-48e5-808a-9b708f7fdd86\",\"pandascore_id\":null,\"yahoo_id\":29591,\"last_name\":\"Shumate\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'0\\\"\",\"search_full_name\":\"elijahshumate\",\"birth_date\":\"1994-01-12\",\"espn_id\":2980151},\"TB\":{\"team\":\"TB\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"TB\",\"last_name\":\"Buccaneers\",\"injury_status\":null,\"first_name\":\"Tampa Bay\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"6012\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035594\",\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606524029155,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"homer\",\"depth_chart_position\":\"RB\",\"player_id\":\"6012\",\"birth_city\":null,\"fantasy_data_id\":20810,\"years_exp\":1,\"hashtag\":\"#TravisHomer-NFL-SEA-25\",\"search_first_name\":\"travis\",\"rotowire_id\":13484,\"rotoworld_id\":14272,\"active\":true,\"search_rank\":318,\"age\":22,\"full_name\":\"Travis Homer\",\"sportradar_id\":\"4afb77d8-4564-469b-be4c-5a8587df8046\",\"pandascore_id\":null,\"yahoo_id\":32036,\"last_name\":\"Homer\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Oxbridge Academy (FL)\",\"depth_chart_order\":4,\"stats_id\":922484,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"travishomer\",\"birth_date\":\"1998-08-07\",\"espn_id\":4037457},\"101\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jameel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclain\",\"depth_chart_position\":null,\"player_id\":\"101\",\"birth_city\":null,\"fantasy_data_id\":2677,\"years_exp\":8,\"hashtag\":\"#JameelMcClain-NFL-FA-53\",\"search_first_name\":\"jameel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jameel McClain\",\"sportradar_id\":\"94668ecc-58d9-4f95-bd55-4cab53670c8c\",\"pandascore_id\":null,\"yahoo_id\":9068,\"last_name\":\"McClain\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jameelmcclain\",\"birth_date\":\"1985-07-25\",\"espn_id\":11841},\"1091\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"paulson\",\"depth_chart_position\":null,\"player_id\":\"1091\",\"birth_city\":null,\"fantasy_data_id\":13929,\"years_exp\":3,\"hashtag\":\"#DavidPaulson-NFL-FA-81\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"David Paulson\",\"sportradar_id\":\"d2875f6b-4c40-46da-858b-9e56b3420c49\",\"pandascore_id\":null,\"yahoo_id\":25950,\"last_name\":\"Paulson\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":435883,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davidpaulson\",\"birth_date\":\"1989-02-22\",\"espn_id\":15043},\"315\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dustin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keller\",\"depth_chart_position\":null,\"player_id\":\"315\",\"birth_city\":null,\"fantasy_data_id\":7692,\"years_exp\":6,\"hashtag\":\"#DustinKeller-NFL-FA-81\",\"search_first_name\":\"dustin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Dustin Keller\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Keller\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dustinkeller\",\"birth_date\":\"1984-09-25\",\"espn_id\":null},\"1030\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damaris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1030\",\"birth_city\":null,\"fantasy_data_id\":13729,\"years_exp\":8,\"hashtag\":\"#DamarisJohnson-NFL-FA-14\",\"search_first_name\":\"damaris\",\"rotowire_id\":8048,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Damaris Johnson\",\"sportradar_id\":\"075b9b42-4797-47c7-b21f-1500f6dbe96e\",\"pandascore_id\":null,\"yahoo_id\":26004,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":\"Destrehan (LA)\",\"depth_chart_order\":null,\"stats_id\":467307,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'8\\\"\",\"search_full_name\":\"damarisjohnson\",\"birth_date\":\"1989-11-22\",\"espn_id\":15624},\"5341\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034376\",\"first_name\":\"Taron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605638724891,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"CB\",\"player_id\":\"5341\",\"birth_city\":null,\"fantasy_data_id\":19928,\"years_exp\":2,\"hashtag\":\"#TaronJohnson-NFL-BUF-24\",\"search_first_name\":\"taron\",\"rotowire_id\":12784,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1347,\"age\":24,\"full_name\":\"Taron Johnson\",\"sportradar_id\":\"3443dde2-23bc-4dba-b499-069d501a59cf\",\"pandascore_id\":null,\"yahoo_id\":31091,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Weber State\",\"high_school\":\"Sheldon (CA)\",\"depth_chart_order\":1,\"stats_id\":830021,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"taronjohnson\",\"birth_date\":\"1996-07-27\",\"espn_id\":3121003},\"5950\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035730\",\"first_name\":\"Nyqwan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567355135511,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5950\",\"birth_city\":null,\"fantasy_data_id\":20890,\"years_exp\":1,\"hashtag\":\"#NyqwanMurray-NFL-FA-10\",\"search_first_name\":\"nyqwan\",\"rotowire_id\":13878,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nyqwan Murray\",\"sportradar_id\":\"b3465cdc-905a-4aef-acce-0709a3effd62\",\"pandascore_id\":null,\"yahoo_id\":32636,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":883454,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"nyqwanmurray\",\"birth_date\":\"1997-07-28\",\"espn_id\":3921571},\"4121\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033924\",\"first_name\":\"Eddie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596084913460,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"vanderdoes\",\"depth_chart_position\":null,\"player_id\":\"4121\",\"birth_city\":null,\"fantasy_data_id\":18967,\"years_exp\":3,\"hashtag\":\"#EddieVanderdoes-NFL-HOU-95\",\"search_first_name\":\"eddie\",\"rotowire_id\":11948,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1157,\"age\":26,\"full_name\":\"Eddie Vanderdoes\",\"sportradar_id\":\"3618e094-0273-4e99-9641-65cc488128e5\",\"pandascore_id\":null,\"yahoo_id\":30201,\"last_name\":\"Vanderdoes\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Auburn Placer (CA)\",\"depth_chart_order\":null,\"stats_id\":744687,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eddievanderdoes\",\"birth_date\":\"1994-10-13\",\"espn_id\":3047570},\"1448\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Demetrius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1510279502254,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"1448\",\"birth_city\":null,\"fantasy_data_id\":15017,\"years_exp\":7,\"hashtag\":\"#DemetriusMcCray-NFL-FA-25\",\"search_first_name\":\"demetrius\",\"rotowire_id\":8959,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Demetrius McCray\",\"sportradar_id\":\"653c4a56-2405-4402-ab89-7b298fd28a57\",\"pandascore_id\":null,\"yahoo_id\":26833,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":\"Newton (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"demetriusmccray\",\"birth_date\":\"1991-05-11\",\"espn_id\":16005},\"5978\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035538\",\"first_name\":\"Emeke\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"egbule\",\"depth_chart_position\":\"LB\",\"player_id\":\"5978\",\"birth_city\":null,\"fantasy_data_id\":20750,\"years_exp\":1,\"hashtag\":\"#EmekeEgbule-NFL-LAC-51\",\"search_first_name\":\"emeke\",\"rotowire_id\":13855,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1527,\"age\":24,\"full_name\":\"Emeke Egbule\",\"sportradar_id\":\"c5e24b59-cafa-4174-b5dc-e02f5934fb2d\",\"pandascore_id\":null,\"yahoo_id\":32032,\"last_name\":\"Egbule\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"emekeegbule\",\"birth_date\":\"1996-10-13\",\"espn_id\":3914613},\"5623\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034511\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1593363338166,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"love\",\"depth_chart_position\":null,\"player_id\":\"5623\",\"birth_city\":null,\"fantasy_data_id\":20253,\"years_exp\":2,\"hashtag\":\"#MikeLove-NFL-BUF-56\",\"search_first_name\":\"mike\",\"rotowire_id\":13230,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mike Love\",\"sportradar_id\":\"ac7b90e4-0f47-4f77-b521-7dc92043a9f3\",\"pandascore_id\":null,\"yahoo_id\":31605,\"last_name\":\"Love\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Countryside (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikelove\",\"birth_date\":\"1994-01-22\",\"espn_id\":3051371},\"383\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1563320738922,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ayers\",\"depth_chart_position\":null,\"player_id\":\"383\",\"birth_city\":null,\"fantasy_data_id\":8670,\"years_exp\":11,\"hashtag\":\"#RobertAyers-NFL-FA-91\",\"search_first_name\":\"robert\",\"rotowire_id\":6060,\"rotoworld_id\":5261,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Robert Ayers\",\"sportradar_id\":\"65bc0f5a-a755-4be4-84b6-a9324a1bdced\",\"pandascore_id\":null,\"yahoo_id\":9282,\"last_name\":\"Ayers\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Marlboro Co. (SC)\",\"depth_chart_order\":null,\"stats_id\":266725,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"robertayers\",\"birth_date\":\"1985-09-06\",\"espn_id\":12432},\"1560\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"1560\",\"birth_city\":null,\"fantasy_data_id\":15202,\"years_exp\":7,\"hashtag\":\"#MikeJames-NFL-FA-39\",\"search_first_name\":\"mike\",\"rotowire_id\":8909,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Mike James\",\"sportradar_id\":\"c442ca48-a25a-476d-a74f-dd7bf18551e9\",\"pandascore_id\":null,\"yahoo_id\":26812,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Ridge Community (FL)\",\"depth_chart_order\":null,\"stats_id\":495193,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikejames\",\"birth_date\":\"1991-04-13\",\"espn_id\":15968},\"3760\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032622\",\"first_name\":\"Farrington\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567539320208,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"huguenin\",\"depth_chart_position\":null,\"player_id\":\"3760\",\"birth_city\":null,\"fantasy_data_id\":18572,\"years_exp\":4,\"hashtag\":\"#FarringtonHuguenin-NFL-FA-95\",\"search_first_name\":\"farrington\",\"rotowire_id\":11595,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Farrington Huguenin\",\"sportradar_id\":\"8fd82d9f-fa30-45e3-8c5d-e2278441a984\",\"pandascore_id\":null,\"yahoo_id\":29832,\"last_name\":\"Huguenin\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'3\\\"\",\"search_full_name\":\"farringtonhuguenin\",\"birth_date\":\"1992-05-08\",\"espn_id\":2576703},\"1314\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smelley\",\"depth_chart_position\":null,\"player_id\":\"1314\",\"birth_city\":null,\"fantasy_data_id\":14807,\"years_exp\":1,\"hashtag\":\"#BradSmelley-NFL-FA-47\",\"search_first_name\":\"brad\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brad Smelley\",\"sportradar_id\":\"ff339b13-6c5e-4dd0-9eef-e649804d6c24\",\"pandascore_id\":null,\"yahoo_id\":25957,\"last_name\":\"Smelley\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":465619,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bradsmelley\",\"birth_date\":\"1989-04-20\",\"espn_id\":15055},\"4741\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034011\",\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1606015510057,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"arnold\",\"depth_chart_position\":\"TE\",\"player_id\":\"4741\",\"birth_city\":null,\"fantasy_data_id\":19659,\"years_exp\":3,\"hashtag\":\"#DanArnold-NFL-ARI-85\",\"search_first_name\":\"dan\",\"rotowire_id\":12276,\"rotoworld_id\":null,\"active\":true,\"search_rank\":359,\"age\":25,\"full_name\":\"Dan Arnold\",\"sportradar_id\":\"d479a777-b53b-4bbf-a8e4-0c1675ac48df\",\"pandascore_id\":null,\"yahoo_id\":30891,\"last_name\":\"Arnold\",\"metadata\":null,\"college\":\"Wisconsin-Platteville\",\"high_school\":\"Shanley (ND)\",\"depth_chart_order\":1,\"stats_id\":1053627,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'6\\\"\",\"search_full_name\":\"danarnold\",\"birth_date\":\"1995-03-15\",\"espn_id\":4212989},\"2321\":{\"position\":\"CB\",\"injury_notes\":\"Johnson was admitted to the hospital for a lacerated liver after sustaining the injury in practice.\",\"birth_country\":null,\"gsis_id\":\"00-0031548\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601379314444,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2321\",\"birth_city\":null,\"fantasy_data_id\":16777,\"years_exp\":5,\"hashtag\":\"#KevinJohnson-NFL-CLE-28\",\"search_first_name\":\"kevin\",\"rotowire_id\":10449,\"rotoworld_id\":10453,\"active\":true,\"search_rank\":853,\"age\":28,\"full_name\":\"Kevin Johnson\",\"sportradar_id\":\"12f4a38f-17b4-42b1-a1e6-9fd6ef08d150\",\"pandascore_id\":null,\"yahoo_id\":28404,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"River Hill (MD)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kevinjohnson\",\"birth_date\":\"1992-08-05\",\"espn_id\":2511523},\"3608\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lamar\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"louis\",\"depth_chart_position\":null,\"player_id\":\"3608\",\"birth_city\":null,\"fantasy_data_id\":18395,\"years_exp\":3,\"hashtag\":\"#LamarLouis-NFL-FA-47\",\"search_first_name\":\"lamar\",\"rotowire_id\":11296,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lamar Louis\",\"sportradar_id\":\"84e5d7f6-88a3-4c0f-b2f7-7663199509df\",\"pandascore_id\":null,\"yahoo_id\":29582,\"last_name\":\"Louis\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":650973,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lamarlouis\",\"birth_date\":\"1993-10-02\",\"espn_id\":2976531},\"1226\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"1226\",\"birth_city\":null,\"fantasy_data_id\":14502,\"years_exp\":4,\"hashtag\":\"#AJJenkins-NFL-FA-15\",\"search_first_name\":\"aj\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"AJ Jenkins\",\"sportradar_id\":\"58f2138a-0772-435d-8444-85b35e97172e\",\"pandascore_id\":null,\"yahoo_id\":25740,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":463947,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ajjenkins\",\"birth_date\":\"1989-09-30\",\"espn_id\":14947},\"2586\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"2586\",\"birth_city\":null,\"fantasy_data_id\":17051,\"years_exp\":5,\"hashtag\":\"#DylanThompson-NFL-FA-2\",\"search_first_name\":\"dylan\",\"rotowire_id\":10520,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dylan Thompson\",\"sportradar_id\":\"473c29e5-2074-46da-a929-5a553c009e14\",\"pandascore_id\":null,\"yahoo_id\":28799,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Boiling Springs (SC)\",\"depth_chart_order\":null,\"stats_id\":553030,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dylanthompson\",\"birth_date\":\"1991-10-25\",\"espn_id\":2516344},\"6245\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gaje\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"6245\",\"birth_city\":null,\"fantasy_data_id\":21176,\"years_exp\":0,\"hashtag\":\"#GajeFerguson-NFL-FA-0\",\"search_first_name\":\"gaje\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Gaje Ferguson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"gajeferguson\",\"birth_date\":null,\"espn_id\":3918025},\"6613\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035132\",\"first_name\":\"Lukayus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcneil\",\"depth_chart_position\":null,\"player_id\":\"6613\",\"birth_city\":null,\"fantasy_data_id\":21504,\"years_exp\":1,\"hashtag\":\"#LukayusMcNeil-NFL-FA-0\",\"search_first_name\":\"lukayus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Lukayus McNeil\",\"sportradar_id\":\"8721884c-d136-4c87-ac7a-c61c035f1af2\",\"pandascore_id\":null,\"yahoo_id\":32347,\"last_name\":\"McNeil\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lukayusmcneil\",\"birth_date\":\"1994-10-13\",\"espn_id\":3116658},\"6523\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035156\",\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fox\",\"depth_chart_position\":null,\"player_id\":\"6523\",\"birth_city\":null,\"fantasy_data_id\":21376,\"years_exp\":1,\"hashtag\":\"#JackFox-NFL-DET-3\",\"search_first_name\":\"jack\",\"rotowire_id\":13715,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jack Fox\",\"sportradar_id\":\"7141ec7a-4f3d-44a4-979e-6644ab9e8f7b\",\"pandascore_id\":null,\"yahoo_id\":32358,\"last_name\":\"Fox\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":\"Ladue Horton Watkins (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jackfox\",\"birth_date\":\"1996-09-01\",\"espn_id\":3916370},\"6372\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035494\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1576090851176,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":\"RB\",\"player_id\":\"6372\",\"birth_city\":null,\"fantasy_data_id\":21317,\"years_exp\":1,\"hashtag\":\"#XavierTurner-NFL-FA-41\",\"search_first_name\":\"xavier\",\"rotowire_id\":14042,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Xavier Turner\",\"sportradar_id\":\"91671654-f27f-498a-b3ed-7bf006ee3f2b\",\"pandascore_id\":null,\"yahoo_id\":32162,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Tarleton State\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":835062,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"5'10\\\"\",\"search_full_name\":\"xavierturner\",\"birth_date\":\"1994-12-24\",\"espn_id\":3119996},\"6155\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035121\",\"first_name\":\"Jaylen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1577805628442,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6155\",\"birth_city\":null,\"fantasy_data_id\":20945,\"years_exp\":1,\"hashtag\":\"#JaylenSmith-NFL-FA-0\",\"search_first_name\":\"jaylen\",\"rotowire_id\":13431,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jaylen Smith\",\"sportradar_id\":\"203f2976-1311-41d7-b630-3cc237cba516\",\"pandascore_id\":null,\"yahoo_id\":32302,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":877762,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jaylensmith\",\"birth_date\":\"1997-08-01\",\"espn_id\":3916418},\"1474\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030515\",\"first_name\":\"Stacy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1574810136270,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcgee\",\"depth_chart_position\":null,\"player_id\":\"1474\",\"birth_city\":null,\"fantasy_data_id\":15069,\"years_exp\":7,\"hashtag\":\"#StacyMcGee-NFL-ARI-91\",\"search_first_name\":\"stacy\",\"rotowire_id\":8964,\"rotoworld_id\":8604,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Stacy McGee\",\"sportradar_id\":\"0606c9ab-8351-4a38-8ca4-ceb16e982f6a\",\"pandascore_id\":null,\"yahoo_id\":26828,\"last_name\":\"McGee\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Muskogee (OK)\",\"depth_chart_order\":null,\"stats_id\":447960,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"341\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stacymcgee\",\"birth_date\":\"1990-01-17\",\"espn_id\":15906},\"5275\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034207\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606065017549,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"badet\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5275\",\"birth_city\":null,\"fantasy_data_id\":20328,\"years_exp\":2,\"hashtag\":\"#JeffBadet-NFL-WAS-84\",\"search_first_name\":\"jeff\",\"rotowire_id\":12739,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeff Badet\",\"sportradar_id\":\"e98ce252-583a-4c74-a718-d38f1ba5793d\",\"pandascore_id\":null,\"yahoo_id\":31227,\"last_name\":\"Badet\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Freedom (FL)\",\"depth_chart_order\":3,\"stats_id\":746896,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jeffbadet\",\"birth_date\":\"1994-08-02\",\"espn_id\":3053760},\"3864\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033021\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536115802373,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lampman\",\"depth_chart_position\":null,\"player_id\":\"3864\",\"birth_city\":null,\"fantasy_data_id\":18686,\"years_exp\":4,\"hashtag\":\"#JakeLampman-NFL-FA-89\",\"search_first_name\":\"jake\",\"rotowire_id\":11276,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jake Lampman\",\"sportradar_id\":\"dcce5f4a-0bb5-4ed6-a8da-9b2cf64714f0\",\"pandascore_id\":null,\"yahoo_id\":30002,\"last_name\":\"Lampman\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":756556,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jakelampman\",\"birth_date\":\"1993-06-11\",\"espn_id\":3057850},\"6874\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599097537628,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"willekes\",\"depth_chart_position\":null,\"player_id\":\"6874\",\"birth_city\":null,\"fantasy_data_id\":21893,\"years_exp\":0,\"hashtag\":\"#KennyWillekes-NFL-MIN-79\",\"search_first_name\":\"kenny\",\"rotowire_id\":14732,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kenny Willekes\",\"sportradar_id\":\"3a10616d-e6bd-4328-ac4d-db423b0abbdb\",\"pandascore_id\":null,\"yahoo_id\":32895,\"last_name\":\"Willekes\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Northpointe Christian (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kennywillekes\",\"birth_date\":\"1997-07-22\",\"espn_id\":3929833},\"1304\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Collin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mooney\",\"depth_chart_position\":null,\"player_id\":\"1304\",\"birth_city\":null,\"fantasy_data_id\":14784,\"years_exp\":2,\"hashtag\":\"#CollinMooney-NFL-FA-39\",\"search_first_name\":\"collin\",\"rotowire_id\":8592,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Collin Mooney\",\"sportradar_id\":\"a1a073ac-48bb-44e5-8631-852c70970296\",\"pandascore_id\":null,\"yahoo_id\":26233,\"last_name\":\"Mooney\",\"metadata\":null,\"college\":\"Army\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":312167,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"5'10\\\"\",\"search_full_name\":\"collinmooney\",\"birth_date\":\"1986-04-03\",\"espn_id\":15130},\"1463\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030280\",\"first_name\":\"Knile\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534082702244,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"1463\",\"birth_city\":null,\"fantasy_data_id\":15045,\"years_exp\":7,\"hashtag\":\"#KnileDavis-NFL-FA-43\",\"search_first_name\":\"knile\",\"rotowire_id\":8600,\"rotoworld_id\":8467,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Knile Davis\",\"sportradar_id\":\"a0e27c0c-0b7e-4da4-b228-1a366b09596e\",\"pandascore_id\":null,\"yahoo_id\":26719,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Marshall (TX)\",\"depth_chart_order\":null,\"stats_id\":495184,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kniledavis\",\"birth_date\":\"1991-10-05\",\"espn_id\":15832},\"2451\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031946\",\"first_name\":\"Davis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1571885728116,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tull\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2451\",\"birth_city\":null,\"fantasy_data_id\":16908,\"years_exp\":5,\"hashtag\":\"#DavisTull-NFL-FA-58\",\"search_first_name\":\"davis\",\"rotowire_id\":10363,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Davis Tull\",\"sportradar_id\":\"5b947dd3-1a96-48ef-bbf6-bf905556629c\",\"pandascore_id\":null,\"yahoo_id\":28536,\"last_name\":\"Tull\",\"metadata\":null,\"college\":\"Chattanooga\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davistull\",\"birth_date\":\"1991-11-12\",\"espn_id\":2520845},\"4809\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034026\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1569279335120,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":null,\"player_id\":\"4809\",\"birth_city\":null,\"fantasy_data_id\":19722,\"years_exp\":3,\"hashtag\":\"#BrandonGreene-NFL-FA-0\",\"search_first_name\":\"brandon\",\"rotowire_id\":12185,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Greene\",\"sportradar_id\":\"9ad0b3b1-28e5-4c23-91fb-728beb7c63d4\",\"pandascore_id\":null,\"yahoo_id\":30929,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandongreene\",\"birth_date\":\"1994-03-01\",\"espn_id\":2979845},\"2461\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaquille\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"riddick\",\"depth_chart_position\":null,\"player_id\":\"2461\",\"birth_city\":null,\"fantasy_data_id\":16918,\"years_exp\":5,\"hashtag\":\"#ShaquilleRiddick-NFL-FA-47\",\"search_first_name\":\"shaquille\",\"rotowire_id\":10463,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Shaquille Riddick\",\"sportradar_id\":\"04447349-3751-4d53-865e-678f874f8a69\",\"pandascore_id\":null,\"yahoo_id\":28546,\"last_name\":\"Riddick\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Buchtel\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"shaquilleriddick\",\"birth_date\":\"1993-03-12\",\"espn_id\":2589809},\"7206\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walton\",\"depth_chart_position\":null,\"player_id\":\"7206\",\"birth_city\":null,\"fantasy_data_id\":22209,\"years_exp\":0,\"hashtag\":\"#BrandonWalton-NFL-PIT-79\",\"search_first_name\":\"brandon\",\"rotowire_id\":14866,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Brandon Walton\",\"sportradar_id\":\"ef490eec-3c43-47f3-b4a2-ae41c95108b6\",\"pandascore_id\":null,\"yahoo_id\":33325,\"last_name\":\"Walton\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Florida Atlantic\",\"high_school\":\"Seminole (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonwalton\",\"birth_date\":\"1998-03-18\",\"espn_id\":4040778},\"2710\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"celiscar\",\"depth_chart_position\":null,\"player_id\":\"2710\",\"birth_city\":null,\"fantasy_data_id\":17178,\"years_exp\":0,\"hashtag\":\"#DonaldCeliscar-NFL-FA-35\",\"search_first_name\":\"donald\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Donald Celiscar\",\"sportradar_id\":\"21587e26-e5ba-464c-944e-c829f6c476d9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Celiscar\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"donaldceliscar\",\"birth_date\":\"1991-10-14\",\"espn_id\":2574757},\"1235\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jorvorskie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lane\",\"depth_chart_position\":null,\"player_id\":\"1235\",\"birth_city\":null,\"fantasy_data_id\":14538,\"years_exp\":8,\"hashtag\":\"#JorvorskieLane-NFL-FA-46\",\"search_first_name\":\"jorvorskie\",\"rotowire_id\":8456,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jorvorskie Lane\",\"sportradar_id\":\"56a1e68a-0aed-4e45-96af-92d3aa0dd5d2\",\"pandascore_id\":null,\"yahoo_id\":26548,\"last_name\":\"Lane\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Lufkin (TX)\",\"depth_chart_order\":null,\"stats_id\":300523,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jorvorskielane\",\"birth_date\":\"1987-02-04\",\"espn_id\":12510},\"614\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1515775802295,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcclain\",\"depth_chart_position\":null,\"player_id\":\"614\",\"birth_city\":null,\"fantasy_data_id\":11464,\"years_exp\":10,\"hashtag\":\"#RobertMcClain-NFL-FA-36\",\"search_first_name\":\"robert\",\"rotowire_id\":6825,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Robert McClain\",\"sportradar_id\":\"1385e6d8-e1d1-4e9b-89ea-cc10f11ae181\",\"pandascore_id\":null,\"yahoo_id\":24225,\"last_name\":\"McClain\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Patuxent (MD)\",\"depth_chart_order\":null,\"stats_id\":334544,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"robertmcclain\",\"birth_date\":\"1988-07-22\",\"espn_id\":13412},\"6032\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035120\",\"first_name\":\"Keelan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1601948161979,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"doss\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6032\",\"birth_city\":null,\"fantasy_data_id\":21072,\"years_exp\":1,\"hashtag\":\"#KeelanDoss-NFL-LV-18\",\"search_first_name\":\"keelan\",\"rotowire_id\":13479,\"rotoworld_id\":null,\"active\":true,\"search_rank\":482,\"age\":24,\"full_name\":\"Keelan Doss\",\"sportradar_id\":\"fcae1e29-5ca2-463e-92a6-0be893f5eb4a\",\"pandascore_id\":null,\"yahoo_id\":32342,\"last_name\":\"Doss\",\"metadata\":null,\"college\":\"California-Davis\",\"high_school\":\"Alameda (CA)\",\"depth_chart_order\":4,\"stats_id\":830084,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keelandoss\",\"birth_date\":\"1996-03-21\",\"espn_id\":3120980},\"1189\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toon\",\"depth_chart_position\":null,\"player_id\":\"1189\",\"birth_city\":null,\"fantasy_data_id\":14368,\"years_exp\":8,\"hashtag\":\"#NickToon-NFL-FA-81\",\"search_first_name\":\"nick\",\"rotowire_id\":8039,\"rotoworld_id\":7458,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Nick Toon\",\"sportradar_id\":\"690e864b-2483-4cd0-b34b-f9f190d114a1\",\"pandascore_id\":null,\"yahoo_id\":25832,\"last_name\":\"Toon\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Middleton (WI)\",\"depth_chart_order\":null,\"stats_id\":399420,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nicktoon\",\"birth_date\":\"1988-11-04\",\"espn_id\":14921},\"5461\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034198\",\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1553117143344,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sieg\",\"depth_chart_position\":null,\"player_id\":\"5461\",\"birth_city\":null,\"fantasy_data_id\":20249,\"years_exp\":2,\"hashtag\":\"#TrentSieg-NFL-LV-47\",\"search_first_name\":\"trent\",\"rotowire_id\":13128,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Trent Sieg\",\"sportradar_id\":\"378df3b9-0a5c-4d68-a173-79bc0df07a66\",\"pandascore_id\":null,\"yahoo_id\":31251,\"last_name\":\"Sieg\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Eaton (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trentsieg\",\"birth_date\":\"1995-05-19\",\"espn_id\":3052357},\"4430\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033396\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1559608249715,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":null,\"player_id\":\"4430\",\"birth_city\":null,\"fantasy_data_id\":19290,\"years_exp\":3,\"hashtag\":\"#JasonThompson-NFL-FA-32\",\"search_first_name\":\"jason\",\"rotowire_id\":12591,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jason Thompson\",\"sportradar_id\":\"5e9efe19-7880-40c6-842f-477523525395\",\"pandascore_id\":null,\"yahoo_id\":30672,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652984,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jasonthompson\",\"birth_date\":\"1994-04-21\",\"espn_id\":2976184},\"5954\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035319\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605747343970,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brailford\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5954\",\"birth_city\":null,\"fantasy_data_id\":21040,\"years_exp\":1,\"hashtag\":\"#JordanBrailford-NFL-MIN-67\",\"search_first_name\":\"jordan\",\"rotowire_id\":13435,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1645,\"age\":25,\"full_name\":\"Jordan Brailford\",\"sportradar_id\":\"cd9b9d93-4368-4495-803e-f5d2524c8468\",\"pandascore_id\":null,\"yahoo_id\":32085,\"last_name\":\"Brailford\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Booker T. Washington (OK)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanbrailford\",\"birth_date\":\"1995-10-09\",\"espn_id\":3122420},\"3265\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033010\",\"first_name\":\"Sheldon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605654025676,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"day\",\"depth_chart_position\":\"DT\",\"player_id\":\"3265\",\"birth_city\":null,\"fantasy_data_id\":18026,\"years_exp\":4,\"hashtag\":\"#SheldonDay-NFL-IND-91\",\"search_first_name\":\"sheldon\",\"rotowire_id\":11019,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Sheldon Day\",\"sportradar_id\":\"82fcb439-d5da-4f6b-a68c-17778fe19ce4\",\"pandascore_id\":null,\"yahoo_id\":29337,\"last_name\":\"Day\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Warren Central (IN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sheldonday\",\"birth_date\":\"1994-07-01\",\"espn_id\":2976194},\"2474\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031598\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605912303607,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"boyle\",\"depth_chart_position\":\"TE\",\"player_id\":\"2474\",\"birth_city\":null,\"fantasy_data_id\":16931,\"years_exp\":5,\"hashtag\":\"#NickBoyle-NFL-BAL-86\",\"search_first_name\":\"nick\",\"rotowire_id\":10252,\"rotoworld_id\":10547,\"active\":true,\"search_rank\":349,\"age\":27,\"full_name\":\"Nick Boyle\",\"sportradar_id\":\"9480dd9f-151f-4e6d-b5a3-35f07bda4cac\",\"pandascore_id\":null,\"yahoo_id\":28559,\"last_name\":\"Boyle\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":\"High Point Regional (NJ)\",\"depth_chart_order\":2,\"stats_id\":608753,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nickboyle\",\"birth_date\":\"1993-02-17\",\"espn_id\":2574591},\"4137\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033553\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606588232932,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conner\",\"depth_chart_position\":\"RB\",\"player_id\":\"4137\",\"birth_city\":null,\"fantasy_data_id\":18983,\"years_exp\":3,\"hashtag\":\"#JamesConner-NFL-PIT-30\",\"search_first_name\":\"james\",\"rotowire_id\":11691,\"rotoworld_id\":null,\"active\":true,\"search_rank\":21,\"age\":25,\"full_name\":\"James Conner\",\"sportradar_id\":\"28a084c0-14df-499f-bd1f-b975603626b7\",\"pandascore_id\":null,\"yahoo_id\":30218,\"last_name\":\"Conner\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Pittsburgh\",\"high_school\":\"McDowell (PA)\",\"depth_chart_order\":1,\"stats_id\":742390,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesconner\",\"birth_date\":\"1995-05-05\",\"espn_id\":3045147},\"5974\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035146\",\"first_name\":\"Trace\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605911403738,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"mcsorley\",\"depth_chart_position\":\"QB\",\"player_id\":\"5974\",\"birth_city\":null,\"fantasy_data_id\":20874,\"years_exp\":1,\"hashtag\":\"#TraceMcSorley-NFL-BAL-7\",\"search_first_name\":\"trace\",\"rotowire_id\":13752,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1573,\"age\":25,\"full_name\":\"Trace McSorley\",\"sportradar_id\":\"d4d135fd-b710-4c12-9082-9d6e544b3f8d\",\"pandascore_id\":null,\"yahoo_id\":32029,\"last_name\":\"McSorley\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Briar Woods (VA)\",\"depth_chart_order\":3,\"stats_id\":836164,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tracemcsorley\",\"birth_date\":\"1995-08-23\",\"espn_id\":3116172},\"2414\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031571\",\"first_name\":\"Clayton\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1580149843291,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"geathers\",\"depth_chart_position\":null,\"player_id\":\"2414\",\"birth_city\":null,\"fantasy_data_id\":16870,\"years_exp\":5,\"hashtag\":\"#ClaytonGeathers-NFL-FA-26\",\"search_first_name\":\"clayton\",\"rotowire_id\":10454,\"rotoworld_id\":10500,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Clayton Geathers\",\"sportradar_id\":\"c6392013-57ae-46b3-8a86-791f94bc0c79\",\"pandascore_id\":null,\"yahoo_id\":28497,\"last_name\":\"Geathers\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Carver's Bay (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"claytongeathers\",\"birth_date\":\"1992-06-01\",\"espn_id\":2519211},\"1449\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Denard\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1449\",\"birth_city\":null,\"fantasy_data_id\":15018,\"years_exp\":7,\"hashtag\":\"#DenardRobinson-NFL-FA-16\",\"search_first_name\":\"denard\",\"rotowire_id\":8803,\"rotoworld_id\":8457,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Denard Robinson\",\"sportradar_id\":\"b45f0ca8-9f84-4893-86d7-b86bb6a588a7\",\"pandascore_id\":null,\"yahoo_id\":26758,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Deerfield Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":511490,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"denardrobinson\",\"birth_date\":\"1990-09-22\",\"espn_id\":15951},\"2905\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reese\",\"depth_chart_position\":null,\"player_id\":\"2905\",\"birth_city\":null,\"fantasy_data_id\":17373,\"years_exp\":0,\"hashtag\":\"#JoshReese-NFL-FA-89\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Josh Reese\",\"sportradar_id\":\"02de3332-2fe0-4d38-a04e-b5a6cf1c07c1\",\"pandascore_id\":null,\"yahoo_id\":28790,\"last_name\":\"Reese\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":562550,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshreese\",\"birth_date\":null,\"espn_id\":null},\"3824\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032864\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1598240413671,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ellis\",\"depth_chart_position\":\"TE\",\"player_id\":\"3824\",\"birth_city\":null,\"fantasy_data_id\":18642,\"years_exp\":4,\"hashtag\":\"#AlexEllis-NFL-FA-0\",\"search_first_name\":\"alex\",\"rotowire_id\":11397,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1103,\"age\":27,\"full_name\":\"Alex Ellis\",\"sportradar_id\":\"81fb7fa0-7ad9-4ef4-bc33-9df9574714e5\",\"pandascore_id\":null,\"yahoo_id\":29944,\"last_name\":\"Ellis\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":9,\"stats_id\":607400,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alexellis\",\"birth_date\":\"1993-02-10\",\"espn_id\":2577731},\"2150\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"2150\",\"birth_city\":null,\"fantasy_data_id\":16495,\"years_exp\":0,\"hashtag\":\"#RyanWhite-NFL-FA-38\",\"search_first_name\":\"ryan\",\"rotowire_id\":11666,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ryan White\",\"sportradar_id\":\"9f2a1456-03a9-4601-a9fa-3262399a7641\",\"pandascore_id\":null,\"yahoo_id\":28090,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ryanwhite\",\"birth_date\":null,\"espn_id\":17286},\"559\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tebow\",\"depth_chart_position\":null,\"player_id\":\"559\",\"birth_city\":null,\"fantasy_data_id\":11196,\"years_exp\":4,\"hashtag\":\"#TimTebow-NFL-FA-11\",\"search_first_name\":\"tim\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Tim Tebow\",\"sportradar_id\":\"908ea628-c150-449c-97b4-06c5d78cae3e\",\"pandascore_id\":null,\"yahoo_id\":24000,\"last_name\":\"Tebow\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":323152,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"timtebow\",\"birth_date\":\"1987-08-14\",\"espn_id\":13200},\"2741\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Richard\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535220921050,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ash\",\"depth_chart_position\":null,\"player_id\":\"2741\",\"birth_city\":null,\"fantasy_data_id\":17209,\"years_exp\":5,\"hashtag\":\"#RichardAsh-NFL-FA-93\",\"search_first_name\":\"richard\",\"rotowire_id\":10732,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Richard Ash\",\"sportradar_id\":\"c139df97-e5f9-4542-a7f3-c8cbb5135931\",\"pandascore_id\":null,\"yahoo_id\":29028,\"last_name\":\"Ash\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Pahokee (FL)\",\"depth_chart_order\":null,\"stats_id\":558646,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'3\\\"\",\"search_full_name\":\"richardash\",\"birth_date\":\"1992-08-04\",\"espn_id\":2515345},\"38\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chester\",\"depth_chart_position\":null,\"player_id\":\"38\",\"birth_city\":null,\"fantasy_data_id\":1066,\"years_exp\":14,\"hashtag\":\"#ChrisChester-NFL-FA-65\",\"search_first_name\":\"chris\",\"rotowire_id\":5025,\"rotoworld_id\":3702,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Chris Chester\",\"sportradar_id\":\"a25feaa2-93f5-4236-9d07-696b371af3d6\",\"pandascore_id\":null,\"yahoo_id\":7805,\"last_name\":\"Chester\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Tustin (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrischester\",\"birth_date\":\"1983-01-12\",\"espn_id\":9642},\"4751\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Manny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abad\",\"depth_chart_position\":null,\"player_id\":\"4751\",\"birth_city\":null,\"fantasy_data_id\":19669,\"years_exp\":2,\"hashtag\":\"#MannyAbad-NFL-FA-38\",\"search_first_name\":\"manny\",\"rotowire_id\":12286,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Manny Abad\",\"sportradar_id\":\"9d2595ff-cbd1-4e0a-ad39-aa02f8597b89\",\"pandascore_id\":null,\"yahoo_id\":30898,\"last_name\":\"Abad\",\"metadata\":null,\"college\":\"Florida Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mannyabad\",\"birth_date\":\"1993-11-23\",\"espn_id\":3058033},\"5217\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034619\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1534694141743,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reese\",\"depth_chart_position\":null,\"player_id\":\"5217\",\"birth_city\":null,\"fantasy_data_id\":20188,\"years_exp\":2,\"hashtag\":\"#JasonReese-NFL-FA-48\",\"search_first_name\":\"jason\",\"rotowire_id\":13290,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jason Reese\",\"sportradar_id\":\"bbd60ef7-27c3-46b7-91c0-b18382e19b4b\",\"pandascore_id\":null,\"yahoo_id\":31276,\"last_name\":\"Reese\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744586,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jasonreese\",\"birth_date\":\"1995-09-09\",\"espn_id\":3051861},\"1674\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030228\",\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605224713915,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bouye\",\"depth_chart_position\":\"LCB\",\"player_id\":\"1674\",\"birth_city\":null,\"fantasy_data_id\":15478,\"years_exp\":7,\"hashtag\":\"#AJBouye-NFL-DEN-21\",\"search_first_name\":\"aj\",\"rotowire_id\":9070,\"rotoworld_id\":9104,\"active\":true,\"search_rank\":762,\"age\":29,\"full_name\":\"A.J. Bouye\",\"sportradar_id\":\"4d6c923d-4776-4558-a30f-739dc4070ffb\",\"pandascore_id\":null,\"yahoo_id\":27337,\"last_name\":\"Bouye\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Central Florida\",\"high_school\":\"Tucker (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ajbouye\",\"birth_date\":\"1991-08-16\",\"espn_id\":16562},\"6309\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035453\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"exford\",\"depth_chart_position\":null,\"player_id\":\"6309\",\"birth_city\":null,\"fantasy_data_id\":21209,\"years_exp\":1,\"hashtag\":\"#AustinExford-NFL-FA-47\",\"search_first_name\":\"austin\",\"rotowire_id\":14259,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Exford\",\"sportradar_id\":\"1824b9ce-a9af-4284-bc33-c36f100b13c3\",\"pandascore_id\":null,\"yahoo_id\":32507,\"last_name\":\"Exford\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"austinexford\",\"birth_date\":\"1996-05-16\",\"espn_id\":3123658},\"3830\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mayweather\",\"depth_chart_position\":\"RG\",\"player_id\":\"3830\",\"birth_city\":null,\"fantasy_data_id\":18650,\"years_exp\":0,\"hashtag\":\"#GarrickMayweather-NFL-FA-65\",\"search_first_name\":\"garrick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Garrick Mayweather\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29968,\"last_name\":\"Mayweather\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrickmayweather\",\"birth_date\":\"1994-10-30\",\"espn_id\":2973300},\"6780\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"houston\",\"depth_chart_position\":null,\"player_id\":\"6780\",\"birth_city\":null,\"fantasy_data_id\":21973,\"years_exp\":0,\"hashtag\":\"#JoeHouston-NFL-FA-0\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":14879,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Joe Houston\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Houston\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joehouston\",\"birth_date\":null,\"espn_id\":null},\"1710\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rivers\",\"depth_chart_position\":null,\"player_id\":\"1710\",\"birth_city\":null,\"fantasy_data_id\":15618,\"years_exp\":2,\"hashtag\":\"#GeraldRivers-NFL-FA-48\",\"search_first_name\":\"gerald\",\"rotowire_id\":9075,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Gerald Rivers\",\"sportradar_id\":\"f98eb01e-e7a9-48d4-8a2a-8a3106dcf8cd\",\"pandascore_id\":null,\"yahoo_id\":27289,\"last_name\":\"Rivers\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"geraldrivers\",\"birth_date\":\"1990-06-22\",\"espn_id\":16105},\"5921\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035150\",\"first_name\":\"Kris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605048060998,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5921\",\"birth_city\":null,\"fantasy_data_id\":21036,\"years_exp\":1,\"hashtag\":\"#KrisBoyd-NFL-MIN-29\",\"search_first_name\":\"kris\",\"rotowire_id\":13797,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1644,\"age\":24,\"full_name\":\"Kris Boyd\",\"sportradar_id\":\"96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb\",\"pandascore_id\":null,\"yahoo_id\":32049,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Gilmer (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"201\",\"height\":\"5'11\\\"\",\"search_full_name\":\"krisboyd\",\"birth_date\":\"1996-09-12\",\"espn_id\":3929845},\"6044\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035061\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567095636523,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bars\",\"depth_chart_position\":\"LG\",\"player_id\":\"6044\",\"birth_city\":null,\"fantasy_data_id\":21024,\"years_exp\":1,\"hashtag\":\"#AlexBars-NFL-CHI-64\",\"search_first_name\":\"alex\",\"rotowire_id\":13840,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alex Bars\",\"sportradar_id\":\"0db05e51-1e24-4f1a-9008-2e610e260c5d\",\"pandascore_id\":null,\"yahoo_id\":32247,\"last_name\":\"Bars\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Montgomery Bell Academy (TN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"alexbars\",\"birth_date\":\"1995-09-08\",\"espn_id\":3129290},\"3481\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032606\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567287306275,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"3481\",\"birth_city\":null,\"fantasy_data_id\":18246,\"years_exp\":4,\"hashtag\":\"#KyleCarter-NFL-FA-48\",\"search_first_name\":\"kyle\",\"rotowire_id\":11496,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kyle Carter\",\"sportradar_id\":\"155ef610-f858-4ee1-b180-afd7cf337631\",\"pandascore_id\":null,\"yahoo_id\":29537,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609486,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kylecarter\",\"birth_date\":\"1992-12-17\",\"espn_id\":2582138},\"6899\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terence\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600040459518,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"steele\",\"depth_chart_position\":\"RT\",\"player_id\":\"6899\",\"birth_city\":null,\"fantasy_data_id\":22041,\"years_exp\":0,\"hashtag\":\"#TerenceSteele-NFL-DAL-78\",\"search_first_name\":\"terence\",\"rotowire_id\":14693,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Terence Steele\",\"sportradar_id\":\"9b1a3246-4f3b-47f7-9bf8-a33d6e454723\",\"pandascore_id\":null,\"yahoo_id\":33093,\"last_name\":\"Steele\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Steele (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"terencesteele\",\"birth_date\":\"1997-06-04\",\"espn_id\":3915834},\"1576\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030459\",\"first_name\":\"Tyrann\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599867317837,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mathieu\",\"depth_chart_position\":\"CB\",\"player_id\":\"1576\",\"birth_city\":null,\"fantasy_data_id\":15226,\"years_exp\":7,\"hashtag\":\"#TyrannMathieu-NFL-KC-32\",\"search_first_name\":\"tyrann\",\"rotowire_id\":8593,\"rotoworld_id\":8387,\"active\":true,\"search_rank\":747,\"age\":28,\"full_name\":\"Tyrann Mathieu\",\"sportradar_id\":\"8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b\",\"pandascore_id\":null,\"yahoo_id\":26692,\"last_name\":\"Mathieu\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"St. Augustine (LA)\",\"depth_chart_order\":1,\"stats_id\":540520,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"tyrannmathieu\",\"birth_date\":\"1992-05-13\",\"espn_id\":15851},\"1696\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"DB\"],\"news_updated\":1513966201091,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"1696\",\"birth_city\":null,\"fantasy_data_id\":15561,\"years_exp\":4,\"hashtag\":\"#BrandonWilliams-NFL-NYG-28\",\"search_first_name\":\"brandon\",\"rotowire_id\":9216,\"rotoworld_id\":8895,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Williams\",\"sportradar_id\":\"cdb10720-0d41-4cb6-9fb8-c00713754a1e\",\"pandascore_id\":null,\"yahoo_id\":27103,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Royal (TX)\",\"depth_chart_order\":null,\"stats_id\":540560,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonwilliams\",\"birth_date\":\"1992-09-09\",\"espn_id\":16313},\"1987\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031431\",\"first_name\":\"Marqise\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596288610098,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":\"SWR\",\"player_id\":\"1987\",\"birth_city\":null,\"fantasy_data_id\":16258,\"years_exp\":6,\"hashtag\":\"#MarqiseLee-NFL-NE-13\",\"search_first_name\":\"marqise\",\"rotowire_id\":9453,\"rotoworld_id\":9402,\"active\":true,\"search_rank\":795,\"age\":29,\"full_name\":\"Marqise Lee\",\"sportradar_id\":\"4c3c6b63-aa1f-4452-9d1d-662073f06142\",\"pandascore_id\":null,\"yahoo_id\":27567,\"last_name\":\"Lee\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Southern California\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":3,\"stats_id\":599006,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marqiselee\",\"birth_date\":\"1991-11-25\",\"espn_id\":16787},\"3633\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032463\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596084012699,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"peko\",\"depth_chart_position\":null,\"player_id\":\"3633\",\"birth_city\":null,\"fantasy_data_id\":18421,\"years_exp\":4,\"hashtag\":\"#KylePeko-NFL-DEN-90\",\"search_first_name\":\"kyle\",\"rotowire_id\":11428,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1076,\"age\":27,\"full_name\":\"Kyle Peko\",\"sportradar_id\":\"e9a7f92c-241c-4172-9874-6eb0c1576899\",\"pandascore_id\":null,\"yahoo_id\":29630,\"last_name\":\"Peko\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Oregon State\",\"high_school\":\"La Habra (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kylepeko\",\"birth_date\":\"1993-07-23\",\"espn_id\":3134288},\"1766\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"amosa\",\"depth_chart_position\":null,\"player_id\":\"1766\",\"birth_city\":null,\"fantasy_data_id\":15818,\"years_exp\":0,\"hashtag\":\"#JonathanAmosa-NFL-FA-44\",\"search_first_name\":\"jonathan\",\"rotowire_id\":11640,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jonathan Amosa\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":27394,\"last_name\":\"Amosa\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jonathanamosa\",\"birth_date\":\"1990-10-16\",\"espn_id\":16509},\"5751\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034784\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1557447911603,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":\"TE\",\"player_id\":\"5751\",\"birth_city\":null,\"fantasy_data_id\":20660,\"years_exp\":2,\"hashtag\":\"#AustinRoberts-NFL-FA-42\",\"search_first_name\":\"austin\",\"rotowire_id\":12583,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austin Roberts\",\"sportradar_id\":\"184a2ef6-ddec-41e4-8fc1-87ac713e8831\",\"pandascore_id\":null,\"yahoo_id\":31747,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":840790,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"austinroberts\",\"birth_date\":\"1995-12-03\",\"espn_id\":3134314},\"4228\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033790\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605149108435,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":\"LB\",\"player_id\":\"4228\",\"birth_city\":null,\"fantasy_data_id\":19074,\"years_exp\":3,\"hashtag\":\"#JordanEvans-NFL-CIN-50\",\"search_first_name\":\"jordan\",\"rotowire_id\":12186,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1208,\"age\":25,\"full_name\":\"Jordan Evans\",\"sportradar_id\":\"3fec685f-b7bb-45a3-ad9c-e27c3fbc9951\",\"pandascore_id\":null,\"yahoo_id\":30306,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Norman North (OK)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanevans\",\"birth_date\":\"1995-01-27\",\"espn_id\":3052660},\"2367\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031937\",\"first_name\":\"Quinten\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567287306272,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rollins\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2367\",\"birth_city\":null,\"fantasy_data_id\":16823,\"years_exp\":5,\"hashtag\":\"#QuintenRollins-NFL-FA-30\",\"search_first_name\":\"quinten\",\"rotowire_id\":10410,\"rotoworld_id\":10462,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Quinten Rollins\",\"sportradar_id\":\"d3c47b87-1554-4afe-ab8f-d5e801706fc3\",\"pandascore_id\":null,\"yahoo_id\":28450,\"last_name\":\"Rollins\",\"metadata\":null,\"college\":\"Miami, O.\",\"high_school\":\"Wilmington (OH)\",\"depth_chart_order\":3,\"stats_id\":837499,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"quintenrollins\",\"birth_date\":\"1992-07-15\",\"espn_id\":3125961},\"3977\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shanahan\",\"depth_chart_position\":null,\"player_id\":\"3977\",\"birth_city\":null,\"fantasy_data_id\":18812,\"years_exp\":0,\"hashtag\":\"#KyleShanahan-NFL-FA-0\",\"search_first_name\":\"kyle\",\"rotowire_id\":null,\"rotoworld_id\":9317,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kyle Shanahan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Shanahan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"kyleshanahan\",\"birth_date\":null,\"espn_id\":null},\"2704\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031902\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1568069135024,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"2704\",\"birth_city\":null,\"fantasy_data_id\":17172,\"years_exp\":5,\"hashtag\":\"#JonathanAnderson-NFL-FA-55\",\"search_first_name\":\"jonathan\",\"rotowire_id\":10617,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jonathan Anderson\",\"sportradar_id\":\"1d4e5e39-3328-4043-a743-1af99b5879c8\",\"pandascore_id\":null,\"yahoo_id\":28707,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Carroll (TX)\",\"depth_chart_order\":null,\"stats_id\":546395,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jonathananderson\",\"birth_date\":\"1991-10-27\",\"espn_id\":2514468},\"4317\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033254\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535042108273,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"banks\",\"depth_chart_position\":null,\"player_id\":\"4317\",\"birth_city\":null,\"fantasy_data_id\":19170,\"years_exp\":3,\"hashtag\":\"#BrandonBanks-NFL-FA-54\",\"search_first_name\":\"brandon\",\"rotowire_id\":12456,\"rotoworld_id\":12637,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Banks\",\"sportradar_id\":\"50d58b23-cdf9-4e0c-a303-d74d9e4f9291\",\"pandascore_id\":null,\"yahoo_id\":30504,\"last_name\":\"Banks\",\"metadata\":null,\"college\":\"North Carolina-Charlotte\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonbanks\",\"birth_date\":\"1994-07-13\",\"espn_id\":3050096},\"4662\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dillon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"deboer\",\"depth_chart_position\":null,\"player_id\":\"4662\",\"birth_city\":null,\"fantasy_data_id\":19561,\"years_exp\":1,\"hashtag\":\"#DillonDeboer-NFL-LAC-60\",\"search_first_name\":\"dillon\",\"rotowire_id\":12340,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Dillon Deboer\",\"sportradar_id\":\"8b41bb43-5c5d-4813-8430-8199bc8841f0\",\"pandascore_id\":null,\"yahoo_id\":30421,\"last_name\":\"Deboer\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"dillondeboer\",\"birth_date\":\"1994-07-26\",\"espn_id\":2982884},\"1658\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030011\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1593733255158,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"devey\",\"depth_chart_position\":null,\"player_id\":\"1658\",\"birth_city\":null,\"fantasy_data_id\":15424,\"years_exp\":7,\"hashtag\":\"#JordanDevey-NFL-BUF-68\",\"search_first_name\":\"jordan\",\"rotowire_id\":9506,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jordan Devey\",\"sportradar_id\":\"6a8a9040-0b42-40c0-a827-94e4150add24\",\"pandascore_id\":null,\"yahoo_id\":27260,\"last_name\":\"Devey\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"American Fork (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jordandevey\",\"birth_date\":\"1988-01-11\",\"espn_id\":16385},\"835\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027997\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534614303052,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"little\",\"depth_chart_position\":null,\"player_id\":\"835\",\"birth_city\":null,\"fantasy_data_id\":12874,\"years_exp\":9,\"hashtag\":\"#GregLittle-NFL-FA-18\",\"search_first_name\":\"greg\",\"rotowire_id\":7382,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Greg Little\",\"sportradar_id\":\"cf15d191-0c05-46ea-811f-4d990a167805\",\"pandascore_id\":null,\"yahoo_id\":24846,\"last_name\":\"Little\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Hillside (NC)\",\"depth_chart_order\":null,\"stats_id\":400046,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"greglittle\",\"birth_date\":\"1989-05-30\",\"espn_id\":14024},\"4773\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033682\",\"first_name\":\"Parker\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1554512123729,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":\"C\",\"player_id\":\"4773\",\"birth_city\":null,\"fantasy_data_id\":19515,\"years_exp\":3,\"hashtag\":\"#ParkerCollins-NFL-FA-76\",\"search_first_name\":\"parker\",\"rotowire_id\":12982,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Parker Collins\",\"sportradar_id\":\"4454ebd3-84f9-40d1-8d7d-8917929b6af5\",\"pandascore_id\":null,\"yahoo_id\":30397,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"parkercollins\",\"birth_date\":\"1994-05-19\",\"espn_id\":3049566},\"6837\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606433460117,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6837\",\"birth_city\":null,\"fantasy_data_id\":21903,\"years_exp\":0,\"hashtag\":\"#TerrellLewis-NFL-LAR-52\",\"search_first_name\":\"terrell\",\"rotowire_id\":14390,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1827,\"age\":22,\"full_name\":\"Terrell Lewis\",\"sportradar_id\":\"a0ebc174-02ad-4bf4-8c0f-517d04a29a95\",\"pandascore_id\":null,\"yahoo_id\":32754,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"St. John's (DC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'5\\\"\",\"search_full_name\":\"terrelllewis\",\"birth_date\":\"1998-08-25\",\"espn_id\":4040968},\"7114\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1587834342752,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"FS\",\"player_id\":\"7114\",\"birth_city\":null,\"fantasy_data_id\":22087,\"years_exp\":0,\"hashtag\":\"#ReggieRobinson-NFL-DAL-41\",\"search_first_name\":\"reggie\",\"rotowire_id\":14708,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1917,\"age\":23,\"full_name\":\"Reggie Robinson\",\"sportradar_id\":\"e44308c4-2505-4b79-855a-18d83d407fc5\",\"pandascore_id\":null,\"yahoo_id\":32793,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":\"Cleburne (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'1\\\"\",\"search_full_name\":\"reggierobinson\",\"birth_date\":\"1997-04-14\",\"espn_id\":3917006},\"2213\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"askew\",\"depth_chart_position\":null,\"player_id\":\"2213\",\"birth_city\":null,\"fantasy_data_id\":16591,\"years_exp\":1,\"hashtag\":\"#NateAskew-NFL-FA-85\",\"search_first_name\":\"nate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nate Askew\",\"sportradar_id\":\"88015dd1-34e3-4522-9302-b686118c0863\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Askew\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nateaskew\",\"birth_date\":\"1991-08-20\",\"espn_id\":17107},\"4029\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033893\",\"first_name\":\"Dalvin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606341001921,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cook\",\"depth_chart_position\":\"RB\",\"player_id\":\"4029\",\"birth_city\":null,\"fantasy_data_id\":18872,\"years_exp\":3,\"hashtag\":\"#DalvinCook-NFL-MIN-33\",\"search_first_name\":\"dalvin\",\"rotowire_id\":11700,\"rotoworld_id\":12138,\"active\":true,\"search_rank\":5,\"age\":25,\"full_name\":\"Dalvin Cook\",\"sportradar_id\":\"8960d61e-433b-41ea-a7ad-4e76be87b582\",\"pandascore_id\":null,\"yahoo_id\":30154,\"last_name\":\"Cook\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Miami Central (FL)\",\"depth_chart_order\":1,\"stats_id\":824080,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dalvincook\",\"birth_date\":\"1995-08-10\",\"espn_id\":3116593},\"5179\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034463\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598804125590,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ostman\",\"depth_chart_position\":null,\"player_id\":\"5179\",\"birth_city\":null,\"fantasy_data_id\":20176,\"years_exp\":2,\"hashtag\":\"#JoeOstman-NFL-PHI-95\",\"search_first_name\":\"joe\",\"rotowire_id\":12708,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joe Ostman\",\"sportradar_id\":\"14063f54-4935-4043-90f0-a6d2d6ab6143\",\"pandascore_id\":null,\"yahoo_id\":31578,\"last_name\":\"Ostman\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"LaSalle (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joeostman\",\"birth_date\":\"1995-07-12\",\"espn_id\":3044706},\"2216\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031408\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606516827398,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2216\",\"birth_city\":null,\"fantasy_data_id\":16597,\"years_exp\":6,\"hashtag\":\"#MikeEvans-NFL-TB-13\",\"search_first_name\":\"mike\",\"rotowire_id\":9253,\"rotoworld_id\":9296,\"active\":true,\"search_rank\":29,\"age\":27,\"full_name\":\"Mike Evans\",\"sportradar_id\":\"c48c21d9-0ae5-478c-ad34-30a660cfa9b8\",\"pandascore_id\":null,\"yahoo_id\":27535,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Ball (TX)\",\"depth_chart_order\":1,\"stats_id\":593587,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mikeevans\",\"birth_date\":\"1993-08-21\",\"espn_id\":16737},\"3402\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zac\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"3402\",\"birth_city\":null,\"fantasy_data_id\":18163,\"years_exp\":0,\"hashtag\":\"#ZacBrooks-NFL-FA-30\",\"search_first_name\":\"zac\",\"rotowire_id\":11245,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Zac Brooks\",\"sportradar_id\":\"773cc85b-2f31-45f5-86e0-3ff4012f3673\",\"pandascore_id\":null,\"yahoo_id\":29481,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653079,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"zacbrooks\",\"birth_date\":\"1993-02-01\",\"espn_id\":2977667},\"5694\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034637\",\"first_name\":\"Antwuan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"5694\",\"birth_city\":null,\"fantasy_data_id\":20486,\"years_exp\":2,\"hashtag\":\"#AntwuanDavis-NFL-FA-49\",\"search_first_name\":\"antwuan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Antwuan Davis\",\"sportradar_id\":\"f4c38645-25d8-4046-918a-9285328d02ba\",\"pandascore_id\":null,\"yahoo_id\":31631,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"antwuandavis\",\"birth_date\":\"1995-05-14\",\"espn_id\":3046689},\"6847\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606253454837,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"duvernay\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6847\",\"birth_city\":null,\"fantasy_data_id\":21721,\"years_exp\":0,\"hashtag\":\"#DevinDuvernay-NFL-BAL-13\",\"search_first_name\":\"devin\",\"rotowire_id\":14636,\"rotoworld_id\":null,\"active\":true,\"search_rank\":271,\"age\":23,\"full_name\":\"Devin Duvernay\",\"sportradar_id\":\"d93dbc83-e604-4823-a24e-d162cbd8d4d9\",\"pandascore_id\":null,\"yahoo_id\":32762,\"last_name\":\"Duvernay\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Sachse (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"devinduvernay\",\"birth_date\":\"1997-09-12\",\"espn_id\":4039050},\"7318\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1600216839699,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nabers\",\"depth_chart_position\":\"RB\",\"player_id\":\"7318\",\"birth_city\":null,\"fantasy_data_id\":22310,\"years_exp\":0,\"hashtag\":\"#GabeNabers-NFL-LAC-40\",\"search_first_name\":\"gabe\",\"rotowire_id\":15093,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Gabe Nabers\",\"sportradar_id\":\"538cf938-8f65-435f-b8fd-2856ce5c4e6d\",\"pandascore_id\":null,\"yahoo_id\":32987,\"last_name\":\"Nabers\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Lowndes (GA)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gabenabers\",\"birth_date\":\"1997-11-05\",\"espn_id\":4035611},\"3352\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032793\",\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1583960758027,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"countess\",\"depth_chart_position\":\"SS\",\"player_id\":\"3352\",\"birth_city\":null,\"fantasy_data_id\":18113,\"years_exp\":4,\"hashtag\":\"#BlakeCountess-NFL-FA-0\",\"search_first_name\":\"blake\",\"rotowire_id\":11231,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Blake Countess\",\"sportradar_id\":\"e1754596-4764-4686-8359-dc53fdabbd1d\",\"pandascore_id\":null,\"yahoo_id\":29430,\"last_name\":\"Countess\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":606081,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"blakecountess\",\"birth_date\":\"1993-08-08\",\"espn_id\":2576229},\"1278\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ihenacho\",\"depth_chart_position\":null,\"player_id\":\"1278\",\"birth_city\":null,\"fantasy_data_id\":14722,\"years_exp\":8,\"hashtag\":\"#DukeIhenacho-NFL-FA-23\",\"search_first_name\":\"duke\",\"rotowire_id\":8428,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Duke Ihenacho\",\"sportradar_id\":\"81fed5e8-2a1a-4f77-904e-78912a4a91bb\",\"pandascore_id\":null,\"yahoo_id\":25979,\"last_name\":\"Ihenacho\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Serra (CA)\",\"depth_chart_order\":null,\"stats_id\":406295,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dukeihenacho\",\"birth_date\":\"1989-06-16\",\"espn_id\":15190},\"6043\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035513\",\"first_name\":\"Amani\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600224340320,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bledsoe\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6043\",\"birth_city\":null,\"fantasy_data_id\":21033,\"years_exp\":1,\"hashtag\":\"#AmaniBledsoe-NFL-CIN-91\",\"search_first_name\":\"amani\",\"rotowire_id\":14200,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1643,\"age\":22,\"full_name\":\"Amani Bledsoe\",\"sportradar_id\":\"1a7d431e-f97b-4631-a067-438ed2debe24\",\"pandascore_id\":null,\"yahoo_id\":32420,\"last_name\":\"Bledsoe\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Lawrence (KS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"amanibledsoe\",\"birth_date\":\"1998-02-06\",\"espn_id\":4037633},\"201\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marques\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colston\",\"depth_chart_position\":null,\"player_id\":\"201\",\"birth_city\":null,\"fantasy_data_id\":5094,\"years_exp\":14,\"hashtag\":\"#MarquesColston-NFL-FA-12\",\"search_first_name\":\"marques\",\"rotowire_id\":4884,\"rotoworld_id\":4032,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Marques Colston\",\"sportradar_id\":\"d106f1b6-e6c5-4978-adc0-8742b5c1c459\",\"pandascore_id\":null,\"yahoo_id\":8001,\"last_name\":\"Colston\",\"metadata\":null,\"college\":\"Hofstra\",\"high_school\":\"Susquehanna Township (PA)\",\"depth_chart_order\":null,\"stats_id\":162990,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marquescolston\",\"birth_date\":\"1983-06-05\",\"espn_id\":9838},\"5083\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034408\",\"first_name\":\"Kamrin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1572442532402,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"5083\",\"birth_city\":null,\"fantasy_data_id\":19991,\"years_exp\":2,\"hashtag\":\"#KamrinMoore-NFL-FA-29\",\"search_first_name\":\"kamrin\",\"rotowire_id\":12959,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kamrin Moore\",\"sportradar_id\":\"d4590268-6931-43a1-b794-d9a684c508db\",\"pandascore_id\":null,\"yahoo_id\":31159,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":836078,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kamrinmoore\",\"birth_date\":\"1996-10-01\",\"espn_id\":3122800},\"6226\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035197\",\"first_name\":\"Rashard\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1578080725420,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"causey\",\"depth_chart_position\":null,\"player_id\":\"6226\",\"birth_city\":null,\"fantasy_data_id\":21148,\"years_exp\":1,\"hashtag\":\"#RashardCausey-NFL-FA-0\",\"search_first_name\":\"rashard\",\"rotowire_id\":14026,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rashard Causey\",\"sportradar_id\":\"cc8a671b-bf32-4bd5-ac4e-d294feebe3d8\",\"pandascore_id\":null,\"yahoo_id\":32112,\"last_name\":\"Causey\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rashardcausey\",\"birth_date\":\"1996-09-20\",\"espn_id\":3929033},\"7036\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603937730274,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"burgess\",\"depth_chart_position\":null,\"player_id\":\"7036\",\"birth_city\":null,\"fantasy_data_id\":21922,\"years_exp\":0,\"hashtag\":\"#TerrellBurgess-NFL-LAR-26\",\"search_first_name\":\"terrell\",\"rotowire_id\":14702,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1840,\"age\":22,\"full_name\":\"Terrell Burgess\",\"sportradar_id\":\"b222de39-0a5e-4bbe-b239-083a500194bb\",\"pandascore_id\":null,\"yahoo_id\":32774,\"last_name\":\"Burgess\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"San Marcos (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"terrellburgess\",\"birth_date\":\"1998-11-12\",\"espn_id\":4035663},\"5898\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035686\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"deiter\",\"depth_chart_position\":\"C\",\"player_id\":\"5898\",\"birth_city\":null,\"fantasy_data_id\":21065,\"years_exp\":1,\"hashtag\":\"#MichaelDeiter-NFL-MIA-63\",\"search_first_name\":\"michael\",\"rotowire_id\":13581,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Michael Deiter\",\"sportradar_id\":\"6d96bf47-e8c7-4683-8291-74dc426a38cb\",\"pandascore_id\":null,\"yahoo_id\":31910,\"last_name\":\"Deiter\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Genoa Area\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"michaeldeiter\",\"birth_date\":\"1996-09-03\",\"espn_id\":3121541},\"2658\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mueller\",\"depth_chart_position\":null,\"player_id\":\"2658\",\"birth_city\":null,\"fantasy_data_id\":17126,\"years_exp\":0,\"hashtag\":\"#RyanMueller-NFL-FA-45\",\"search_first_name\":\"ryan\",\"rotowire_id\":11194,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ryan Mueller\",\"sportradar_id\":\"68c9a5e5-24fa-4fff-9491-507ba418f08d\",\"pandascore_id\":null,\"yahoo_id\":28687,\"last_name\":\"Mueller\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryanmueller\",\"birth_date\":\"1991-04-30\",\"espn_id\":2517946},\"2510\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031614\",\"first_name\":\"Obum\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1507149481365,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gwacham\",\"depth_chart_position\":null,\"player_id\":\"2510\",\"birth_city\":null,\"fantasy_data_id\":16969,\"years_exp\":5,\"hashtag\":\"#ObumGwacham-NFL-FA-71\",\"search_first_name\":\"obum\",\"rotowire_id\":10336,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Obum Gwacham\",\"sportradar_id\":\"ccde8174-ce0f-44f8-8bc2-e44872a2f30a\",\"pandascore_id\":null,\"yahoo_id\":28597,\"last_name\":\"Gwacham\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Ayala (CA)\",\"depth_chart_order\":null,\"stats_id\":498167,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"obumgwacham\",\"birth_date\":\"1991-03-20\",\"espn_id\":2468550},\"743\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mosley\",\"depth_chart_position\":null,\"player_id\":\"743\",\"birth_city\":null,\"fantasy_data_id\":12372,\"years_exp\":15,\"hashtag\":\"#CJMosley-NFL-FA-94\",\"search_first_name\":\"cj\",\"rotowire_id\":4713,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"C.J. Mosley\",\"sportradar_id\":\"45466510-c943-4541-812f-9cbd126a6cb2\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mosley\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Waynesville (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cjmosley\",\"birth_date\":\"1983-08-06\",\"espn_id\":8605},\"4094\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033542\",\"first_name\":\"Forrest\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571932531892,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lamp\",\"depth_chart_position\":\"LG\",\"player_id\":\"4094\",\"birth_city\":null,\"fantasy_data_id\":18940,\"years_exp\":3,\"hashtag\":\"#ForrestLamp-NFL-LAC-76\",\"search_first_name\":\"forrest\",\"rotowire_id\":11801,\"rotoworld_id\":12230,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Forrest Lamp\",\"sportradar_id\":\"0b699477-6801-4154-ad51-e8352a3bdac4\",\"pandascore_id\":null,\"yahoo_id\":30151,\"last_name\":\"Lamp\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":\"Venice (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"forrestlamp\",\"birth_date\":\"1994-02-20\",\"espn_id\":2981439},\"1018\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"talley\",\"depth_chart_position\":null,\"player_id\":\"1018\",\"birth_city\":null,\"fantasy_data_id\":13681,\"years_exp\":4,\"hashtag\":\"#RonaldTalley-NFL-FA-72\",\"search_first_name\":\"ronald\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ronald Talley\",\"sportradar_id\":\"b374bf79-e8f5-4ce5-9cc1-0ebeb6d491c4\",\"pandascore_id\":null,\"yahoo_id\":9581,\"last_name\":\"Talley\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"286\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ronaldtalley\",\"birth_date\":\"1986-02-21\",\"espn_id\":13018},\"5892\":{\"position\":\"RB\",\"injury_notes\":\"Montgomery is expected to miss 2-4 weeks.\",\"birth_country\":null,\"gsis_id\":\" 00-0035685\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606343102158,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"montgomery\",\"depth_chart_position\":\"RB\",\"player_id\":\"5892\",\"birth_city\":null,\"fantasy_data_id\":20882,\"years_exp\":1,\"hashtag\":\"#DavidMontgomery-NFL-CHI-32\",\"search_first_name\":\"david\",\"rotowire_id\":13556,\"rotoworld_id\":13978,\"active\":true,\"search_rank\":55,\"age\":23,\"full_name\":\"David Montgomery\",\"sportradar_id\":\"1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c\",\"pandascore_id\":null,\"yahoo_id\":31905,\"last_name\":\"Montgomery\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":\"Mount Healthy (OH)\",\"depth_chart_order\":1,\"stats_id\":946739,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"5'10\\\"\",\"search_full_name\":\"davidmontgomery\",\"birth_date\":\"1997-06-07\",\"espn_id\":4035538},\"1142\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"molk\",\"depth_chart_position\":null,\"player_id\":\"1142\",\"birth_city\":null,\"fantasy_data_id\":14132,\"years_exp\":8,\"hashtag\":\"#DavidMolk-NFL-FA-63\",\"search_first_name\":\"david\",\"rotowire_id\":8131,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"David Molk\",\"sportradar_id\":\"04665c3c-06d6-4aca-a7de-1fcc5db8df23\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Molk\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Lemont Township (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davidmolk\",\"birth_date\":\"1988-12-15\",\"espn_id\":15030},\"1921\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602892205121,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccullers\",\"depth_chart_position\":\"NT\",\"player_id\":\"1921\",\"birth_city\":null,\"fantasy_data_id\":16154,\"years_exp\":6,\"hashtag\":\"#DanielMcCullers-NFL-CHI-75\",\"search_first_name\":\"daniel\",\"rotowire_id\":9394,\"rotoworld_id\":null,\"active\":true,\"search_rank\":787,\"age\":28,\"full_name\":\"Daniel McCullers\",\"sportradar_id\":\"f6ff73b1-d607-4226-83ab-b523bdc0be4e\",\"pandascore_id\":null,\"yahoo_id\":27743,\"last_name\":\"McCullers\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Southeast Raleigh (NC)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"352\",\"height\":\"6'7\\\"\",\"search_full_name\":\"danielmccullers\",\"birth_date\":\"1992-08-11\",\"espn_id\":16952},\"2512\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031616\",\"first_name\":\"Reshard\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1522365301500,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cliett\",\"depth_chart_position\":null,\"player_id\":\"2512\",\"birth_city\":null,\"fantasy_data_id\":16971,\"years_exp\":5,\"hashtag\":\"#ReshardCliett-NFL-FA-43\",\"search_first_name\":\"reshard\",\"rotowire_id\":10487,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Reshard Cliett\",\"sportradar_id\":\"f824eed3-af52-4794-92da-f32974831c98\",\"pandascore_id\":null,\"yahoo_id\":28599,\"last_name\":\"Cliett\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"reshardcliett\",\"birth_date\":\"1992-04-29\",\"espn_id\":2514799},\"1209\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029575\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blanton\",\"depth_chart_position\":null,\"player_id\":\"1209\",\"birth_city\":null,\"fantasy_data_id\":14440,\"years_exp\":8,\"hashtag\":\"#RobertBlanton-NFL-FA-29\",\"search_first_name\":\"robert\",\"rotowire_id\":8265,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Robert Blanton\",\"sportradar_id\":\"5db03086-c670-4adb-98ed-b6a59a4f9270\",\"pandascore_id\":null,\"yahoo_id\":25849,\"last_name\":\"Blanton\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"David W. Butler (NC)\",\"depth_chart_order\":null,\"stats_id\":469187,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robertblanton\",\"birth_date\":\"1989-09-07\",\"espn_id\":15079},\"127\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0020578\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1572369314641,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"127\",\"birth_city\":null,\"fantasy_data_id\":3388,\"years_exp\":18,\"hashtag\":\"#MattBryant-NFL-FA-3\",\"search_first_name\":\"matt\",\"rotowire_id\":2832,\"rotoworld_id\":978,\"active\":true,\"search_rank\":9999999,\"age\":45,\"full_name\":\"Matt Bryant\",\"sportradar_id\":\"218d1644-603e-4da3-9ce1-48ce3927494f\",\"pandascore_id\":null,\"yahoo_id\":6243,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Bridge City (TX)\",\"depth_chart_order\":null,\"stats_id\":171678,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'9\\\"\",\"search_full_name\":\"mattbryant\",\"birth_date\":\"1975-05-29\",\"espn_id\":4333},\"1721\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029714\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1567536619865,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"depaola\",\"depth_chart_position\":null,\"player_id\":\"1721\",\"birth_city\":null,\"fantasy_data_id\":15646,\"years_exp\":8,\"hashtag\":\"#AndrewDePaola-NFL-MIN-42\",\"search_first_name\":\"andrew\",\"rotowire_id\":9967,\"rotoworld_id\":8304,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Andrew DePaola\",\"sportradar_id\":\"740ac0fa-f4b9-4944-9b7a-78b97c5dd1cd\",\"pandascore_id\":null,\"yahoo_id\":26583,\"last_name\":\"DePaola\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Parkton (MD)\",\"depth_chart_order\":null,\"stats_id\":300580,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andrewdepaola\",\"birth_date\":\"1987-07-28\",\"espn_id\":15726},\"1482\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030278\",\"first_name\":\"Manti\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577036460475,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"teo\",\"depth_chart_position\":null,\"player_id\":\"1482\",\"birth_city\":null,\"fantasy_data_id\":15079,\"years_exp\":7,\"hashtag\":\"#MantiTeo-NFL-CHI-51\",\"search_first_name\":\"manti\",\"rotowire_id\":8693,\"rotoworld_id\":8442,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Manti Te'o\",\"sportradar_id\":\"82505f2b-7b63-48d1-a715-a197ae3a32c3\",\"pandascore_id\":null,\"yahoo_id\":26661,\"last_name\":\"Te'o\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Punahou (HI)\",\"depth_chart_order\":null,\"stats_id\":509559,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mantiteo\",\"birth_date\":\"1991-01-26\",\"espn_id\":15867},\"3002\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Al\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bond\",\"depth_chart_position\":null,\"player_id\":\"3002\",\"birth_city\":null,\"fantasy_data_id\":17531,\"years_exp\":1,\"hashtag\":\"#AlBond-NFL-FA-68\",\"search_first_name\":\"al\",\"rotowire_id\":11383,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Al Bond\",\"sportradar_id\":\"fe4148f7-7ab1-4b12-9313-faa18a9d0d0c\",\"pandascore_id\":null,\"yahoo_id\":28876,\"last_name\":\"Bond\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"albond\",\"birth_date\":\"1992-03-05\",\"espn_id\":null},\"7149\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"QB\"],\"news_updated\":1605560119293,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stevens\",\"depth_chart_position\":\"TE\",\"player_id\":\"7149\",\"birth_city\":null,\"fantasy_data_id\":22151,\"years_exp\":0,\"hashtag\":\"#TommyStevens-NFL-CAR-85\",\"search_first_name\":\"tommy\",\"rotowire_id\":14527,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1938,\"age\":23,\"full_name\":\"Tommy Stevens\",\"sportradar_id\":\"93a1f2fd-fd5e-4b06-8086-476028d83eed\",\"pandascore_id\":null,\"yahoo_id\":32910,\"last_name\":\"Stevens\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Decatur Central (IN)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tommystevens\",\"birth_date\":\"1996-12-15\",\"espn_id\":3791110},\"6251\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035429\",\"first_name\":\"Reggie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"6251\",\"birth_city\":null,\"fantasy_data_id\":21184,\"years_exp\":1,\"hashtag\":\"#ReggieHoward-NFL-FA-72\",\"search_first_name\":\"reggie\",\"rotowire_id\":14263,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Reggie Howard\",\"sportradar_id\":\"c07e2290-529d-4d55-bef2-1d8139816355\",\"pandascore_id\":null,\"yahoo_id\":32544,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'3\\\"\",\"search_full_name\":\"reggiehoward\",\"birth_date\":\"1996-03-26\",\"espn_id\":4240239},\"1076\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029065\",\"first_name\":\"Johnson\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598407240085,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bademosi\",\"depth_chart_position\":null,\"player_id\":\"1076\",\"birth_city\":null,\"fantasy_data_id\":13886,\"years_exp\":8,\"hashtag\":\"#JohnsonBademosi-NFL-NO-29\",\"search_first_name\":\"johnson\",\"rotowire_id\":8562,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Johnson Bademosi\",\"sportradar_id\":\"ae0de04e-f10b-46ba-b650-2a5c30d48cd9\",\"pandascore_id\":null,\"yahoo_id\":26366,\"last_name\":\"Bademosi\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Gonzaga College (DC)\",\"depth_chart_order\":null,\"stats_id\":461138,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnsonbademosi\",\"birth_date\":\"1990-07-23\",\"espn_id\":15359},\"5442\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034111\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606532130153,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":\"FS\",\"player_id\":\"5442\",\"birth_city\":null,\"fantasy_data_id\":20418,\"years_exp\":2,\"hashtag\":\"#TreyMarshall-NFL-DEN-36\",\"search_first_name\":\"trey\",\"rotowire_id\":12684,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1469,\"age\":24,\"full_name\":\"Trey Marshall\",\"sportradar_id\":\"bfdeb053-b503-4f35-968b-78d8a9997473\",\"pandascore_id\":null,\"yahoo_id\":31381,\"last_name\":\"Marshall\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida State\",\"high_school\":\"Columbia (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'0\\\"\",\"search_full_name\":\"treymarshall\",\"birth_date\":\"1996-02-13\",\"espn_id\":3116602},\"6545\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035071\",\"first_name\":\"Chuck\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588632931700,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"6545\",\"birth_city\":null,\"fantasy_data_id\":21432,\"years_exp\":1,\"hashtag\":\"#ChuckHarris-NFL-FA-0\",\"search_first_name\":\"chuck\",\"rotowire_id\":14136,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Chuck Harris\",\"sportradar_id\":\"5272b788-ce57-4197-92db-5a08ff48d932\",\"pandascore_id\":null,\"yahoo_id\":32255,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chuckharris\",\"birth_date\":\"1997-11-23\",\"espn_id\":3916590},\"3394\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032452\",\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1552342526170,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bates\",\"depth_chart_position\":null,\"player_id\":\"3394\",\"birth_city\":null,\"fantasy_data_id\":18155,\"years_exp\":4,\"hashtag\":\"#TrevorBates-NFL-FA-0\",\"search_first_name\":\"trevor\",\"rotowire_id\":11243,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Trevor Bates\",\"sportradar_id\":\"0c3f8621-b32c-4887-890e-dbd6b76b2370\",\"pandascore_id\":null,\"yahoo_id\":29473,\"last_name\":\"Bates\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604756,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trevorbates\",\"birth_date\":\"1993-08-28\",\"espn_id\":2585785},\"1558\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030386\",\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605201311990,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gholston\",\"depth_chart_position\":\"RDE\",\"player_id\":\"1558\",\"birth_city\":null,\"fantasy_data_id\":15200,\"years_exp\":7,\"hashtag\":\"#WilliamGholston-NFL-TB-92\",\"search_first_name\":\"william\",\"rotowire_id\":8664,\"rotoworld_id\":8545,\"active\":true,\"search_rank\":743,\"age\":29,\"full_name\":\"William Gholston\",\"sportradar_id\":\"a0557106-4517-4516-a5e7-d46cba52fe44\",\"pandascore_id\":null,\"yahoo_id\":26749,\"last_name\":\"Gholston\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Southeastern (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"281\",\"height\":\"6'6\\\"\",\"search_full_name\":\"williamgholston\",\"birth_date\":\"1991-07-31\",\"espn_id\":16019},\"168\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023096\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1519417801596,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"novak\",\"depth_chart_position\":null,\"player_id\":\"168\",\"birth_city\":null,\"fantasy_data_id\":4354,\"years_exp\":15,\"hashtag\":\"#NickNovak-NFL-FA-9\",\"search_first_name\":\"nick\",\"rotowire_id\":4661,\"rotoworld_id\":3504,\"active\":false,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Nick Novak\",\"sportradar_id\":\"47cfc2a1-2b81-430e-8b30-ff5129e5c601\",\"pandascore_id\":null,\"yahoo_id\":7505,\"last_name\":\"Novak\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Albemarle (VA)\",\"depth_chart_order\":null,\"stats_id\":151828,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nicknovak\",\"birth_date\":\"1981-08-21\",\"espn_id\":9329},\"4876\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"northnagel\",\"depth_chart_position\":null,\"player_id\":\"4876\",\"birth_city\":null,\"fantasy_data_id\":19778,\"years_exp\":1,\"hashtag\":\"#BradleyNorthnagel-NFL-OAK-0\",\"search_first_name\":\"bradley\",\"rotowire_id\":12542,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bradley Northnagel\",\"sportradar_id\":\"68b9cbf0-105a-4a80-ac2b-2049fb3cdabf\",\"pandascore_id\":null,\"yahoo_id\":30963,\"last_name\":\"Northnagel\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"OAK\",\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bradleynorthnagel\",\"birth_date\":\"1994-01-29\",\"espn_id\":null},\"5861\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035636\",\"first_name\":\"L.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602540652210,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"collier\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5861\",\"birth_city\":null,\"fantasy_data_id\":21008,\"years_exp\":1,\"hashtag\":\"#LJCollier-NFL-SEA-91\",\"search_first_name\":\"lj\",\"rotowire_id\":13751,\"rotoworld_id\":14093,\"active\":true,\"search_rank\":1631,\"age\":25,\"full_name\":\"L.J. Collier\",\"sportradar_id\":\"9d546e3b-0eb3-4926-a5ef-eb5e48b9330e\",\"pandascore_id\":null,\"yahoo_id\":31861,\"last_name\":\"Collier\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Munday (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ljcollier\",\"birth_date\":\"1995-09-12\",\"espn_id\":3116449},\"3840\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032937\",\"first_name\":\"Maxwell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1574544924851,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccaffrey\",\"depth_chart_position\":null,\"player_id\":\"3840\",\"birth_city\":null,\"fantasy_data_id\":18660,\"years_exp\":4,\"hashtag\":\"#MaxwellMcCaffrey-NFL-FA-14\",\"search_first_name\":\"maxwell\",\"rotowire_id\":11207,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Maxwell McCaffrey\",\"sportradar_id\":\"a02175de-7356-40c9-a14f-f90de29830d7\",\"pandascore_id\":null,\"yahoo_id\":29961,\"last_name\":\"McCaffrey\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691495,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"maxwellmccaffrey\",\"birth_date\":\"1994-05-17\",\"espn_id\":2969896},\"731\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027607\",\"first_name\":\"Ted\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1571444723589,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"larsen\",\"depth_chart_position\":null,\"player_id\":\"731\",\"birth_city\":null,\"fantasy_data_id\":12298,\"years_exp\":10,\"hashtag\":\"#TedLarsen-NFL-FA-62\",\"search_first_name\":\"ted\",\"rotowire_id\":6567,\"rotoworld_id\":5956,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ted Larsen\",\"sportradar_id\":\"2c48a13f-bac4-46f8-b405-7ada72dd543e\",\"pandascore_id\":null,\"yahoo_id\":24181,\"last_name\":\"Larsen\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Palm Harbor University (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"323\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tedlarsen\",\"birth_date\":\"1987-06-13\",\"espn_id\":13403},\"5343\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034793\",\"first_name\":\"Quentin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599097537636,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"poling\",\"depth_chart_position\":null,\"player_id\":\"5343\",\"birth_city\":null,\"fantasy_data_id\":20031,\"years_exp\":2,\"hashtag\":\"#QuentinPoling-NFL-FA-0\",\"search_first_name\":\"quentin\",\"rotowire_id\":13006,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Quentin Poling\",\"sportradar_id\":\"2feb5241-ab81-4907-b660-ef8e92976224\",\"pandascore_id\":null,\"yahoo_id\":31197,\"last_name\":\"Poling\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744085,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"quentinpoling\",\"birth_date\":\"1994-08-17\",\"espn_id\":3052996},\"4564\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033649\",\"first_name\":\"Kai\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606279856481,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nacua\",\"depth_chart_position\":null,\"player_id\":\"4564\",\"birth_city\":null,\"fantasy_data_id\":19448,\"years_exp\":3,\"hashtag\":\"#KaiNacua-NFL-SF-48\",\"search_first_name\":\"kai\",\"rotowire_id\":12090,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kai Nacua\",\"sportradar_id\":\"fa8fbc2f-5160-4aaa-8f86-bbba666368a3\",\"pandascore_id\":null,\"yahoo_id\":30548,\"last_name\":\"Nacua\",\"metadata\":null,\"college\":\"Brigham Young\",\"high_school\":\"Liberty (NV)\",\"depth_chart_order\":null,\"stats_id\":750725,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kainacua\",\"birth_date\":\"1995-03-03\",\"espn_id\":3053804},\"1521\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030074\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605548417504,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bakhtiari\",\"depth_chart_position\":\"LT\",\"player_id\":\"1521\",\"birth_city\":null,\"fantasy_data_id\":15131,\"years_exp\":7,\"hashtag\":\"#DavidBakhtiari-NFL-GB-69\",\"search_first_name\":\"david\",\"rotowire_id\":8736,\"rotoworld_id\":8535,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"David Bakhtiari\",\"sportradar_id\":\"a750e7ca-12ab-4d7c-bc65-f58793c3ed16\",\"pandascore_id\":null,\"yahoo_id\":26732,\"last_name\":\"Bakhtiari\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davidbakhtiari\",\"birth_date\":\"1991-09-30\",\"espn_id\":15963},\"4953\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maccagnan\",\"depth_chart_position\":null,\"player_id\":\"4953\",\"birth_city\":null,\"fantasy_data_id\":19775,\"years_exp\":0,\"hashtag\":\"#MikeMaccagnan-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":10297,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Maccagnan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Maccagnan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikemaccagnan\",\"birth_date\":null,\"espn_id\":null},\"473\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ninkovich\",\"depth_chart_position\":null,\"player_id\":\"473\",\"birth_city\":null,\"fantasy_data_id\":9707,\"years_exp\":14,\"hashtag\":\"#RobNinkovich-NFL-FA-50\",\"search_first_name\":\"rob\",\"rotowire_id\":6357,\"rotoworld_id\":3948,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Rob Ninkovich\",\"sportradar_id\":\"f3e2f6dd-53c4-4d8c-81d7-9e9d3c024e0c\",\"pandascore_id\":null,\"yahoo_id\":7884,\"last_name\":\"Ninkovich\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Lincoln-Way Central (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robninkovich\",\"birth_date\":\"1984-02-01\",\"espn_id\":9721},\"6626\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035524\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564789517539,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zico\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6626\",\"birth_city\":null,\"fantasy_data_id\":21534,\"years_exp\":1,\"hashtag\":\"#IsaacZico-NFL-FA-80\",\"search_first_name\":\"isaac\",\"rotowire_id\":14199,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Isaac Zico\",\"sportradar_id\":\"b598ce5a-5949-4d28-90ce-9c1063f93730\",\"pandascore_id\":null,\"yahoo_id\":32429,\"last_name\":\"Zico\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":1066825,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'1\\\"\",\"search_full_name\":\"isaaczico\",\"birth_date\":\"1996-06-18\",\"espn_id\":4260392},\"4933\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcmeans\",\"depth_chart_position\":\"RG\",\"player_id\":\"4933\",\"birth_city\":null,\"fantasy_data_id\":19530,\"years_exp\":1,\"hashtag\":\"#AnthonyMcMeans-NFL-LAR-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anthony McMeans\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30372,\"last_name\":\"McMeans\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonymcmeans\",\"birth_date\":null,\"espn_id\":null},\"414\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026989\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1546287046633,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"orakpo\",\"depth_chart_position\":null,\"player_id\":\"414\",\"birth_city\":null,\"fantasy_data_id\":8950,\"years_exp\":11,\"hashtag\":\"#BrianOrakpo-NFL-FA-98\",\"search_first_name\":\"brian\",\"rotowire_id\":6056,\"rotoworld_id\":5215,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Brian Orakpo\",\"sportradar_id\":\"37fd76c4-41d0-4997-a94c-d135bd9dc582\",\"pandascore_id\":null,\"yahoo_id\":9277,\"last_name\":\"Orakpo\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Lamar (TX)\",\"depth_chart_order\":null,\"stats_id\":268228,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brianorakpo\",\"birth_date\":\"1986-07-31\",\"espn_id\":12439},\"5385\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034472\",\"first_name\":\"Alec\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bloom\",\"depth_chart_position\":null,\"player_id\":\"5385\",\"birth_city\":null,\"fantasy_data_id\":20464,\"years_exp\":2,\"hashtag\":\"#AlecBloom-NFL-FA-87\",\"search_first_name\":\"alec\",\"rotowire_id\":13209,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Alec Bloom\",\"sportradar_id\":\"69e38370-3c00-470d-aed2-af98bcddb7c1\",\"pandascore_id\":null,\"yahoo_id\":31298,\"last_name\":\"Bloom\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":838256,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'6\\\"\",\"search_full_name\":\"alecbloom\",\"birth_date\":\"1996-04-03\",\"espn_id\":3125891},\"6018\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035222\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606171815217,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gentry\",\"depth_chart_position\":\"TE\",\"player_id\":\"6018\",\"birth_city\":null,\"fantasy_data_id\":20770,\"years_exp\":1,\"hashtag\":\"#ZachGentry-NFL-PIT-81\",\"search_first_name\":\"zach\",\"rotowire_id\":13511,\"rotoworld_id\":null,\"active\":true,\"search_rank\":570,\"age\":24,\"full_name\":\"Zach Gentry\",\"sportradar_id\":\"58f18567-a050-49c4-aeca-b34499338b37\",\"pandascore_id\":null,\"yahoo_id\":31973,\"last_name\":\"Gentry\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Michigan\",\"high_school\":\"Eldorado (NM)\",\"depth_chart_order\":3,\"stats_id\":883079,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'8\\\"\",\"search_full_name\":\"zachgentry\",\"birth_date\":\"1996-09-10\",\"espn_id\":3929924},\"5971\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034969\",\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1600122304074,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"banogu\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5971\",\"birth_city\":null,\"fantasy_data_id\":21022,\"years_exp\":1,\"hashtag\":\"#BenBanogu-NFL-IND-52\",\"search_first_name\":\"ben\",\"rotowire_id\":13761,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1638,\"age\":24,\"full_name\":\"Ben Banogu\",\"sportradar_id\":\"8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3\",\"pandascore_id\":null,\"yahoo_id\":31881,\"last_name\":\"Banogu\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Prosper (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"benbanogu\",\"birth_date\":\"1996-01-19\",\"espn_id\":3124970},\"4065\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033876\",\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606078219749,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"barnett\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4065\",\"birth_city\":null,\"fantasy_data_id\":18911,\"years_exp\":3,\"hashtag\":\"#DerekBarnett-NFL-PHI-96\",\"search_first_name\":\"derek\",\"rotowire_id\":11901,\"rotoworld_id\":12199,\"active\":true,\"search_rank\":1120,\"age\":24,\"full_name\":\"Derek Barnett\",\"sportradar_id\":\"2d74a108-2b17-4db3-8ef1-0c2e845b414e\",\"pandascore_id\":null,\"yahoo_id\":30127,\"last_name\":\"Barnett\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Brentwood Academy (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derekbarnett\",\"birth_date\":\"1996-06-25\",\"espn_id\":3115336},\"2102\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031006\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1566407107669,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"2102\",\"birth_city\":null,\"fantasy_data_id\":16425,\"years_exp\":6,\"hashtag\":\"#RobertThomas-NFL-FA-96\",\"search_first_name\":\"robert\",\"rotowire_id\":9636,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Robert Thomas\",\"sportradar_id\":\"de3f11e3-90ae-4ad2-880f-48e9b6f729f8\",\"pandascore_id\":null,\"yahoo_id\":28178,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Muskogee (OK)\",\"depth_chart_order\":null,\"stats_id\":512087,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"331\",\"height\":\"6'1\\\"\",\"search_full_name\":\"robertthomas\",\"birth_date\":\"1991-02-18\",\"espn_id\":5273},\"5784\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034872\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567108841848,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"celestin\",\"depth_chart_position\":null,\"player_id\":\"5784\",\"birth_city\":null,\"fantasy_data_id\":20687,\"years_exp\":2,\"hashtag\":\"#JonathanCelestin-NFL-FA-48\",\"search_first_name\":\"jonathan\",\"rotowire_id\":13381,\"rotoworld_id\":13909,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jonathan Celestin\",\"sportradar_id\":\"d15e6d19-924c-4c1f-9d1a-e15b378c2875\",\"pandascore_id\":null,\"yahoo_id\":31780,\"last_name\":\"Celestin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonathancelestin\",\"birth_date\":\"1995-11-21\",\"espn_id\":3116052},\"3125\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mangini\",\"depth_chart_position\":null,\"player_id\":\"3125\",\"birth_city\":null,\"fantasy_data_id\":17879,\"years_exp\":null,\"hashtag\":\"#EricMangini-NFL-FA-0\",\"search_first_name\":\"eric\",\"rotowire_id\":null,\"rotoworld_id\":9219,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eric Mangini\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mangini\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ericmangini\",\"birth_date\":null,\"espn_id\":null},\"548\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027224\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"weeks\",\"depth_chart_position\":null,\"player_id\":\"548\",\"birth_city\":null,\"fantasy_data_id\":11120,\"years_exp\":10,\"hashtag\":\"#JonathanWeeks-NFL-HOU-46\",\"search_first_name\":\"jonathan\",\"rotowire_id\":7107,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jonathan Weeks\",\"sportradar_id\":\"b23e22bb-d478-4312-a085-e7642017ccfb\",\"pandascore_id\":null,\"yahoo_id\":24662,\"last_name\":\"Weeks\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Westlake (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathanweeks\",\"birth_date\":\"1986-02-17\",\"espn_id\":13729},\"6629\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564703162356,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burt\",\"depth_chart_position\":null,\"player_id\":\"6629\",\"birth_city\":null,\"fantasy_data_id\":21541,\"years_exp\":1,\"hashtag\":\"#BrianBurt-NFL-FA-12\",\"search_first_name\":\"brian\",\"rotowire_id\":14235,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Brian Burt\",\"sportradar_id\":\"7f923e38-625f-4384-92de-3fb3b3459d25\",\"pandascore_id\":null,\"yahoo_id\":32536,\"last_name\":\"Burt\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1069499,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brianburt\",\"birth_date\":\"1995-12-23\",\"espn_id\":4246250},\"2851\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032031\",\"first_name\":\"Kaleb\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1542243646742,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"eulls\",\"depth_chart_position\":null,\"player_id\":\"2851\",\"birth_city\":null,\"fantasy_data_id\":17319,\"years_exp\":5,\"hashtag\":\"#KalebEulls-NFL-FA-96\",\"search_first_name\":\"kaleb\",\"rotowire_id\":10347,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kaleb Eulls\",\"sportradar_id\":\"af9992e2-6bda-4e3d-a95a-fc32c9f93391\",\"pandascore_id\":null,\"yahoo_id\":28755,\"last_name\":\"Eulls\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Yazoo County (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kalebeulls\",\"birth_date\":\"1991-06-28\",\"espn_id\":2516320},\"3024\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"highland\",\"depth_chart_position\":null,\"player_id\":\"3024\",\"birth_city\":null,\"fantasy_data_id\":17699,\"years_exp\":1,\"hashtag\":\"#ChrisHighland-NFL-FA-45\",\"search_first_name\":\"chris\",\"rotowire_id\":11259,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Highland\",\"sportradar_id\":\"6c66c8f0-6c9b-4679-a0c1-cdb4d364dbd8\",\"pandascore_id\":null,\"yahoo_id\":29166,\"last_name\":\"Highland\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrishighland\",\"birth_date\":\"1992-01-04\",\"espn_id\":null},\"2844\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"person\",\"depth_chart_position\":null,\"player_id\":\"2844\",\"birth_city\":null,\"fantasy_data_id\":17312,\"years_exp\":2,\"hashtag\":\"#BrandonPerson-NFL-FA-45\",\"search_first_name\":\"brandon\",\"rotowire_id\":10565,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brandon Person\",\"sportradar_id\":\"09a73c3b-ce5e-4fb3-b2e8-347d5e0d0008\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Person\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brandonperson\",\"birth_date\":\"1991-08-09\",\"espn_id\":3894940},\"4723\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1535412043580,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"4723\",\"birth_city\":null,\"fantasy_data_id\":19633,\"years_exp\":3,\"hashtag\":\"#JustinThomas-NFL-FA-13\",\"search_first_name\":\"justin\",\"rotowire_id\":12254,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Justin Thomas\",\"sportradar_id\":\"d5a7e6b5-7ac7-4432-9734-e3ec82539208\",\"pandascore_id\":null,\"yahoo_id\":30869,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691565,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"justinthomas\",\"birth_date\":\"1994-03-15\",\"espn_id\":2971471},\"4224\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033294\",\"first_name\":\"Chuck\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602543952773,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":\"SS\",\"player_id\":\"4224\",\"birth_city\":null,\"fantasy_data_id\":19070,\"years_exp\":3,\"hashtag\":\"#ChuckClark-NFL-BAL-36\",\"search_first_name\":\"chuck\",\"rotowire_id\":12010,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1206,\"age\":25,\"full_name\":\"Chuck Clark\",\"sportradar_id\":\"1105ae60-a4b6-4246-a77e-0849179b07b2\",\"pandascore_id\":null,\"yahoo_id\":30299,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"King's Fork (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chuckclark\",\"birth_date\":\"1995-04-19\",\"espn_id\":3045463},\"6457\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034957\",\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"LT\",\"player_id\":\"6457\",\"birth_city\":null,\"fantasy_data_id\":21228,\"years_exp\":1,\"hashtag\":\"#CalvinAnderson-NFL-DEN-76\",\"search_first_name\":\"calvin\",\"rotowire_id\":13601,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Calvin Anderson\",\"sportradar_id\":\"67e5566c-73df-43b7-80ae-3d50d68ac189\",\"pandascore_id\":null,\"yahoo_id\":32224,\"last_name\":\"Anderson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas\",\"high_school\":\"Westlake (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"calvinanderson\",\"birth_date\":\"1996-03-25\",\"espn_id\":3123867},\"3731\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032730\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1547849159615,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"3731\",\"birth_city\":null,\"fantasy_data_id\":18541,\"years_exp\":4,\"hashtag\":\"#EricLee-NFL-FA-45\",\"search_first_name\":\"eric\",\"rotowire_id\":11273,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Eric Lee\",\"sportradar_id\":\"944528d8-7647-4f92-8053-0e6998c5fcc1\",\"pandascore_id\":null,\"yahoo_id\":29799,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652649,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ericlee\",\"birth_date\":\"1994-08-06\",\"espn_id\":2970397},\"930\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamari\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lattimore\",\"depth_chart_position\":null,\"player_id\":\"930\",\"birth_city\":null,\"fantasy_data_id\":13239,\"years_exp\":9,\"hashtag\":\"#JamariLattimore-NFL-FA-96\",\"search_first_name\":\"jamari\",\"rotowire_id\":7856,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jamari Lattimore\",\"sportradar_id\":\"87b40048-8972-4fcb-9f17-94135fb50b5d\",\"pandascore_id\":null,\"yahoo_id\":25471,\"last_name\":\"Lattimore\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"Miami Lakes (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamarilattimore\",\"birth_date\":\"1988-10-06\",\"espn_id\":14597},\"3748\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032680\",\"first_name\":\"Pace\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":\"RT\",\"player_id\":\"3748\",\"birth_city\":null,\"fantasy_data_id\":18560,\"years_exp\":4,\"hashtag\":\"#PaceMurphy-NFL-FA-0\",\"search_first_name\":\"pace\",\"rotowire_id\":11576,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Pace Murphy\",\"sportradar_id\":\"02d2c680-e929-41d9-b514-67ffe0c4cd2d\",\"pandascore_id\":null,\"yahoo_id\":29746,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Northwestern St. - LA\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'6\\\"\",\"search_full_name\":\"pacemurphy\",\"birth_date\":\"1994-03-02\",\"espn_id\":2974612},\"6794\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606514128538,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6794\",\"birth_city\":null,\"fantasy_data_id\":21685,\"years_exp\":0,\"hashtag\":\"#JustinJefferson-NFL-MIN-18\",\"search_first_name\":\"justin\",\"rotowire_id\":14509,\"rotoworld_id\":null,\"active\":true,\"search_rank\":122,\"age\":21,\"full_name\":\"Justin Jefferson\",\"sportradar_id\":\"4131d4ee-0318-4bb5-832a-4dec80668a4f\",\"pandascore_id\":null,\"yahoo_id\":32692,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Destrehan (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinjefferson\",\"birth_date\":\"1999-06-16\",\"espn_id\":4262921},\"3811\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alstevis\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"squirewell\",\"depth_chart_position\":null,\"player_id\":\"3811\",\"birth_city\":null,\"fantasy_data_id\":18627,\"years_exp\":0,\"hashtag\":\"#AlstevisSquirewell-NFL-FA-40\",\"search_first_name\":\"alstevis\",\"rotowire_id\":11598,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Alstevis Squirewell\",\"sportradar_id\":\"7dff5c9b-3376-4877-8ab8-7e46b8ca50ac\",\"pandascore_id\":null,\"yahoo_id\":29931,\"last_name\":\"Squirewell\",\"metadata\":null,\"college\":\"Newberry\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alstevissquirewell\",\"birth_date\":\"1992-09-17\",\"espn_id\":3137094},\"6468\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035078\",\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564615546584,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"eaton\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6468\",\"birth_city\":null,\"fantasy_data_id\":21419,\"years_exp\":1,\"hashtag\":\"#MatthewEaton-NFL-FA-89\",\"search_first_name\":\"matthew\",\"rotowire_id\":14110,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Matthew Eaton\",\"sportradar_id\":\"e6ed0626-890b-4408-bcdf-8fc02a9d95da\",\"pandascore_id\":null,\"yahoo_id\":32267,\"last_name\":\"Eaton\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":838306,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mattheweaton\",\"birth_date\":\"1995-12-09\",\"espn_id\":3138759},\"2572\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031796\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605471012355,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":\"CB\",\"player_id\":\"2572\",\"birth_city\":null,\"fantasy_data_id\":17037,\"years_exp\":5,\"hashtag\":\"#JustinColeman-NFL-DET-27\",\"search_first_name\":\"justin\",\"rotowire_id\":10430,\"rotoworld_id\":10927,\"active\":true,\"search_rank\":911,\"age\":27,\"full_name\":\"Justin Coleman\",\"sportradar_id\":\"d766ee35-8ece-447d-94e6-1d33ba427b02\",\"pandascore_id\":null,\"yahoo_id\":28835,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Brunswick (GA)\",\"depth_chart_order\":1,\"stats_id\":590027,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"justincoleman\",\"birth_date\":\"1993-03-27\",\"espn_id\":2577707},\"1802\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ed\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":null,\"player_id\":\"1802\",\"birth_city\":null,\"fantasy_data_id\":15977,\"years_exp\":6,\"hashtag\":\"#EdReynolds-NFL-FA-39\",\"search_first_name\":\"ed\",\"rotowire_id\":9361,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ed Reynolds\",\"sportradar_id\":\"35640058-2258-4781-b479-ece547d15aca\",\"pandascore_id\":null,\"yahoo_id\":27690,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Woodberry Forest (VA)\",\"depth_chart_order\":null,\"stats_id\":553098,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"edreynolds\",\"birth_date\":\"1991-10-18\",\"espn_id\":16933},\"6458\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034958\",\"first_name\":\"Tyree\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stlouis\",\"depth_chart_position\":\"RT\",\"player_id\":\"6458\",\"birth_city\":null,\"fantasy_data_id\":21162,\"years_exp\":1,\"hashtag\":\"#TyreeStLouis-NFL-LAC-73\",\"search_first_name\":\"tyree\",\"rotowire_id\":13684,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Tyree St. Louis\",\"sportradar_id\":\"850b8283-0a1d-4a47-8586-8398df905c58\",\"pandascore_id\":null,\"yahoo_id\":32232,\"last_name\":\"St. Louis\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tyreestlouis\",\"birth_date\":\"1997-08-05\",\"espn_id\":3917870},\"7103\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tavien\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1602615648785,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"feaster\",\"depth_chart_position\":null,\"player_id\":\"7103\",\"birth_city\":null,\"fantasy_data_id\":21850,\"years_exp\":0,\"hashtag\":\"#TavienFeaster-NFL-DET-30\",\"search_first_name\":\"tavien\",\"rotowire_id\":14592,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1793,\"age\":22,\"full_name\":\"Tavien Feaster\",\"sportradar_id\":\"0d77e008-ec6d-4816-a186-329c0ecdb6be\",\"pandascore_id\":null,\"yahoo_id\":33126,\"last_name\":\"Feaster\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Spartanburg (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tavienfeaster\",\"birth_date\":\"1997-12-31\",\"espn_id\":4035470},\"1124\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029568\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605223213512,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RDT\",\"player_id\":\"1124\",\"birth_city\":null,\"fantasy_data_id\":14048,\"years_exp\":8,\"hashtag\":\"#MalikJackson-NFL-PHI-97\",\"search_first_name\":\"malik\",\"rotowire_id\":8150,\"rotoworld_id\":7528,\"active\":true,\"search_rank\":669,\"age\":30,\"full_name\":\"Malik Jackson\",\"sportradar_id\":\"252da24d-9eb7-4871-ae76-199918f412d8\",\"pandascore_id\":null,\"yahoo_id\":25847,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Birmingham (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"malikjackson\",\"birth_date\":\"1990-01-11\",\"espn_id\":15047},\"756\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccann\",\"depth_chart_position\":null,\"player_id\":\"756\",\"birth_city\":null,\"fantasy_data_id\":12458,\"years_exp\":4,\"hashtag\":\"#BryanMcCann-NFL-FA-23\",\"search_first_name\":\"bryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Bryan McCann\",\"sportradar_id\":\"ea2faa5d-9ace-4b32-9634-581d400945c5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McCann\",\"metadata\":null,\"college\":\"SMU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'10\\\"\",\"search_full_name\":\"bryanmccann\",\"birth_date\":\"1987-09-29\",\"espn_id\":13609},\"5462\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034876\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1546977330539,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ezeala\",\"depth_chart_position\":null,\"player_id\":\"5462\",\"birth_city\":null,\"fantasy_data_id\":20534,\"years_exp\":2,\"hashtag\":\"#ChrisEzeala-NFL-FA-45\",\"search_first_name\":\"chris\",\"rotowire_id\":13326,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Chris Ezeala\",\"sportradar_id\":\"5ab29759-c330-4147-a2cf-be04bbac66aa\",\"pandascore_id\":null,\"yahoo_id\":31335,\"last_name\":\"Ezeala\",\"metadata\":null,\"college\":\"No College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1115428,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrisezeala\",\"birth_date\":\"1995-09-19\",\"espn_id\":4339834},\"3376\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032445\",\"first_name\":\"Ted\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584548722528,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"karras\",\"depth_chart_position\":\"C\",\"player_id\":\"3376\",\"birth_city\":null,\"fantasy_data_id\":18137,\"years_exp\":4,\"hashtag\":\"#TedKarras-NFL-MIA-67\",\"search_first_name\":\"ted\",\"rotowire_id\":11238,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ted Karras\",\"sportradar_id\":\"7830196e-cdca-4b86-bee2-eae97de2ee26\",\"pandascore_id\":null,\"yahoo_id\":29455,\"last_name\":\"Karras\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Cathedral (IN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tedkarras\",\"birth_date\":\"1993-03-15\",\"espn_id\":2576188},\"3346\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033113\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1533249933322,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"forrest\",\"depth_chart_position\":null,\"player_id\":\"3346\",\"birth_city\":null,\"fantasy_data_id\":18107,\"years_exp\":4,\"hashtag\":\"#JoshForrest-NFL-FA-47\",\"search_first_name\":\"josh\",\"rotowire_id\":11035,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Forrest\",\"sportradar_id\":\"ce64d3cf-516a-429a-b80f-18143eee2a49\",\"pandascore_id\":null,\"yahoo_id\":29424,\"last_name\":\"Forrest\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607152,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshforrest\",\"birth_date\":\"1992-02-24\",\"espn_id\":2576678},\"4447\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033443\",\"first_name\":\"Rickey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1552508754902,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jefferson\",\"depth_chart_position\":null,\"player_id\":\"4447\",\"birth_city\":null,\"fantasy_data_id\":19308,\"years_exp\":3,\"hashtag\":\"#RickeyJefferson-NFL-FA-46\",\"search_first_name\":\"rickey\",\"rotowire_id\":12122,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Rickey Jefferson\",\"sportradar_id\":\"c4b82d6c-31e0-41ca-905f-36a9f0ba85aa\",\"pandascore_id\":null,\"yahoo_id\":30631,\"last_name\":\"Jefferson\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rickeyjefferson\",\"birth_date\":\"1994-12-28\",\"espn_id\":3042721},\"91\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0021429\",\"first_name\":\"Carson\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1515803701120,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"91\",\"birth_city\":null,\"fantasy_data_id\":2428,\"years_exp\":17,\"hashtag\":\"#CarsonPalmer-NFL-FA-3\",\"search_first_name\":\"carson\",\"rotowire_id\":3014,\"rotoworld_id\":2550,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Carson Palmer\",\"sportradar_id\":\"57ad34b3-f60d-4b2d-9e01-3cb5a9451c37\",\"pandascore_id\":null,\"yahoo_id\":6337,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Santa Margarita (CA)\",\"depth_chart_order\":null,\"stats_id\":184503,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'5\\\"\",\"search_full_name\":\"carsonpalmer\",\"birth_date\":\"1979-12-27\",\"espn_id\":4459},\"3888\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033082\",\"first_name\":\"Lucas\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600385117322,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patrick\",\"depth_chart_position\":\"RG\",\"player_id\":\"3888\",\"birth_city\":null,\"fantasy_data_id\":18710,\"years_exp\":4,\"hashtag\":\"#LucasPatrick-NFL-GB-62\",\"search_first_name\":\"lucas\",\"rotowire_id\":11453,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Lucas Patrick\",\"sportradar_id\":\"e9615c8c-3a7e-4b10-92f8-86f48edbe9a4\",\"pandascore_id\":null,\"yahoo_id\":30018,\"last_name\":\"Patrick\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Brentwood (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lucaspatrick\",\"birth_date\":\"1993-07-30\",\"espn_id\":2576736},\"6945\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606440959856,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gibson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6945\",\"birth_city\":null,\"fantasy_data_id\":21861,\"years_exp\":0,\"hashtag\":\"#AntonioGibson-NFL-WAS-24\",\"search_first_name\":\"antonio\",\"rotowire_id\":14639,\"rotoworld_id\":null,\"active\":true,\"search_rank\":74,\"age\":22,\"full_name\":\"Antonio Gibson\",\"sportradar_id\":\"c0a8a5d0-583f-457a-9d96-70027d3f69e7\",\"pandascore_id\":null,\"yahoo_id\":32736,\"last_name\":\"Gibson\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Eagle's Landing Christian (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'2\\\"\",\"search_full_name\":\"antoniogibson\",\"birth_date\":\"1998-06-23\",\"espn_id\":4360294},\"5388\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034071\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577211605240,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5388\",\"birth_city\":null,\"fantasy_data_id\":20395,\"years_exp\":2,\"hashtag\":\"#DannyJohnson-NFL-WAS-32\",\"search_first_name\":\"danny\",\"rotowire_id\":12834,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1467,\"age\":25,\"full_name\":\"Danny Johnson\",\"sportradar_id\":\"3f178f8f-97fc-491c-ae5a-4c2544e611ef\",\"pandascore_id\":null,\"yahoo_id\":31402,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Southern U.\",\"high_school\":\"East Feliciana (LA)\",\"depth_chart_order\":3,\"stats_id\":843510,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dannyjohnson\",\"birth_date\":\"1995-11-17\",\"espn_id\":3141066},\"3770\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Quenton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bundrage\",\"depth_chart_position\":null,\"player_id\":\"3770\",\"birth_city\":null,\"fantasy_data_id\":18583,\"years_exp\":0,\"hashtag\":\"#QuentonBundrage-NFL-FA-14\",\"search_first_name\":\"quenton\",\"rotowire_id\":11203,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Quenton Bundrage\",\"sportradar_id\":\"acc4cf76-601c-4870-82b1-5cf209cfef3a\",\"pandascore_id\":null,\"yahoo_id\":29787,\"last_name\":\"Bundrage\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"quentonbundrage\",\"birth_date\":\"1991-09-13\",\"espn_id\":2577153},\"4545\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033623\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567182058527,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"towbridge\",\"depth_chart_position\":null,\"player_id\":\"4545\",\"birth_city\":null,\"fantasy_data_id\":19424,\"years_exp\":3,\"hashtag\":\"#KeithTowbridge-NFL-FA-82\",\"search_first_name\":\"keith\",\"rotowire_id\":12342,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keith Towbridge\",\"sportradar_id\":\"e927859a-16e3-481c-8d02-4d11a3a81dee\",\"pandascore_id\":null,\"yahoo_id\":30603,\"last_name\":\"Towbridge\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741543,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"269\",\"height\":\"6'4\\\"\",\"search_full_name\":\"keithtowbridge\",\"birth_date\":\"1995-05-21\",\"espn_id\":3040071},\"3333\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033112\",\"first_name\":\"Temarrick\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603406749001,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hemingway\",\"depth_chart_position\":\"TE\",\"player_id\":\"3333\",\"birth_city\":null,\"fantasy_data_id\":18094,\"years_exp\":4,\"hashtag\":\"#TemarrickHemingway-NFL-WAS-88\",\"search_first_name\":\"temarrick\",\"rotowire_id\":11009,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1024,\"age\":27,\"full_name\":\"Temarrick Hemingway\",\"sportradar_id\":\"02fc59d0-8a66-431f-97fc-21fdc096eb14\",\"pandascore_id\":null,\"yahoo_id\":29411,\"last_name\":\"Hemingway\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":\"North Myrtle Beach (SC)\",\"depth_chart_order\":3,\"stats_id\":608714,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"temarrickhemingway\",\"birth_date\":\"1993-07-30\",\"espn_id\":2580330},\"2718\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"2718\",\"birth_city\":null,\"fantasy_data_id\":17186,\"years_exp\":5,\"hashtag\":\"#TevinMcDonald-NFL-FA-37\",\"search_first_name\":\"tevin\",\"rotowire_id\":10403,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tevin McDonald\",\"sportradar_id\":\"6236a29e-8e10-42c0-9a42-cd2058b75a56\",\"pandascore_id\":null,\"yahoo_id\":28966,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":\"Edison High School\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tevinmcdonald\",\"birth_date\":\"1992-07-17\",\"espn_id\":2510865},\"223\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022921\",\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606429860133,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"fitzgerald\",\"depth_chart_position\":\"SWR\",\"player_id\":\"223\",\"birth_city\":null,\"fantasy_data_id\":5571,\"years_exp\":16,\"hashtag\":\"#LarryFitzgerald-NFL-ARI-11\",\"search_first_name\":\"larry\",\"rotowire_id\":3730,\"rotoworld_id\":1661,\"active\":true,\"search_rank\":165,\"age\":37,\"full_name\":\"Larry Fitzgerald\",\"sportradar_id\":\"b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5\",\"pandascore_id\":null,\"yahoo_id\":6762,\"last_name\":\"Fitzgerald\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Holy Angels (MN)\",\"depth_chart_order\":2,\"stats_id\":246053,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'3\\\"\",\"search_full_name\":\"larryfitzgerald\",\"birth_date\":\"1983-08-31\",\"espn_id\":5528},\"889\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"DeMarcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vandyke\",\"depth_chart_position\":null,\"player_id\":\"889\",\"birth_city\":null,\"fantasy_data_id\":13072,\"years_exp\":4,\"hashtag\":\"#DeMarcusVanDyke-NFL-FA-43\",\"search_first_name\":\"demarcus\",\"rotowire_id\":7556,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"DeMarcus VanDyke\",\"sportradar_id\":\"8a8ef160-958e-4e59-85e4-f734571d3d4e\",\"pandascore_id\":null,\"yahoo_id\":24868,\"last_name\":\"VanDyke\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"176\",\"height\":\"6'1\\\"\",\"search_full_name\":\"demarcusvandyke\",\"birth_date\":\"1989-01-17\",\"espn_id\":14022},\"2786\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarryd\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hayne\",\"depth_chart_position\":null,\"player_id\":\"2786\",\"birth_city\":null,\"fantasy_data_id\":17254,\"years_exp\":5,\"hashtag\":\"#JarrydHayne-NFL-FA-38\",\"search_first_name\":\"jarryd\",\"rotowire_id\":10154,\"rotoworld_id\":10435,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jarryd Hayne\",\"sportradar_id\":\"f5b78cdb-42a2-46c2-b9e3-ce39cafe33ec\",\"pandascore_id\":null,\"yahoo_id\":28379,\"last_name\":\"Hayne\",\"metadata\":null,\"college\":\"No College\",\"high_school\":\"Westfields Sports High School (Sydney)\",\"depth_chart_order\":null,\"stats_id\":458390,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jarrydhayne\",\"birth_date\":\"1988-02-15\",\"espn_id\":3423412},\"812\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028097\",\"first_name\":\"Lee\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604071238273,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"TE\",\"player_id\":\"812\",\"birth_city\":null,\"fantasy_data_id\":12777,\"years_exp\":9,\"hashtag\":\"#LeeSmith-NFL-BUF-85\",\"search_first_name\":\"lee\",\"rotowire_id\":7425,\"rotoworld_id\":6665,\"active\":true,\"search_rank\":565,\"age\":33,\"full_name\":\"Lee Smith\",\"sportradar_id\":\"cf23126f-055b-4617-819b-bb4bcb84541a\",\"pandascore_id\":null,\"yahoo_id\":24946,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Powell (TN)\",\"depth_chart_order\":3,\"stats_id\":334184,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"leesmith\",\"birth_date\":\"1987-11-21\",\"espn_id\":14215},\"1467\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030094\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605057962168,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kush\",\"depth_chart_position\":null,\"player_id\":\"1467\",\"birth_city\":null,\"fantasy_data_id\":15049,\"years_exp\":7,\"hashtag\":\"#EricKush-NFL-CHI-62\",\"search_first_name\":\"eric\",\"rotowire_id\":9109,\"rotoworld_id\":8577,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Eric Kush\",\"sportradar_id\":\"d3cde6a6-f635-40d8-adc6-f1a7892f8683\",\"pandascore_id\":null,\"yahoo_id\":26793,\"last_name\":\"Kush\",\"metadata\":null,\"college\":\"California, Pa.\",\"high_school\":\"Chartiers Valley (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'4\\\"\",\"search_full_name\":\"erickush\",\"birth_date\":\"1989-09-09\",\"espn_id\":16035},\"5987\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034972\",\"first_name\":\"Alexander\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606169715166,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mattison\",\"depth_chart_position\":\"RB\",\"player_id\":\"5987\",\"birth_city\":null,\"fantasy_data_id\":20868,\"years_exp\":1,\"hashtag\":\"#AlexanderMattison-NFL-MIN-25\",\"search_first_name\":\"alexander\",\"rotowire_id\":13477,\"rotoworld_id\":13958,\"active\":true,\"search_rank\":96,\"age\":22,\"full_name\":\"Alexander Mattison\",\"sportradar_id\":\"ae4faec0-509d-4080-b5cb-d1a44d062858\",\"pandascore_id\":null,\"yahoo_id\":31934,\"last_name\":\"Mattison\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"San Bernardino (CA)\",\"depth_chart_order\":2,\"stats_id\":944343,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'11\\\"\",\"search_full_name\":\"alexandermattison\",\"birth_date\":\"1998-06-19\",\"espn_id\":4048244},\"1244\":{\"position\":\"WR\",\"injury_notes\":\"Gordon is suspended for the fifth time, indefinitley, in violation of the NFL performance-enhancing substance and substances of abuse policies.\",\"birth_country\":null,\"gsis_id\":\"00-0029664\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603645807723,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gordon\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1244\",\"birth_city\":null,\"fantasy_data_id\":14587,\"years_exp\":8,\"hashtag\":\"#JoshGordon-NFL-SEA-10\",\"search_first_name\":\"josh\",\"rotowire_id\":8415,\"rotoworld_id\":8282,\"active\":true,\"search_rank\":218,\"age\":29,\"full_name\":\"Josh Gordon\",\"sportradar_id\":\"b228c353-bb1f-4ba8-aa6d-d18ecf297259\",\"pandascore_id\":null,\"yahoo_id\":26561,\"last_name\":\"Gordon\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Lamar (TX)\",\"depth_chart_order\":3,\"stats_id\":503496,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":\"Sus\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshgordon\",\"birth_date\":\"1991-04-13\",\"espn_id\":15705},\"4719\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033855\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1597613734935,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4719\",\"birth_city\":null,\"fantasy_data_id\":19627,\"years_exp\":3,\"hashtag\":\"#ChrisThompson-NFL-SF-2\",\"search_first_name\":\"chris\",\"rotowire_id\":12260,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Thompson\",\"sportradar_id\":\"7b108d08-f950-49c6-be33-85cb9222e655\",\"pandascore_id\":null,\"yahoo_id\":30861,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Gainesville (FL)\",\"depth_chart_order\":3,\"stats_id\":748626,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"175\",\"height\":\"6'0\\\"\",\"search_full_name\":\"christhompson\",\"birth_date\":\"1994-05-09\",\"espn_id\":3054970},\"5470\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034125\",\"first_name\":\"Kendal\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606060516969,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vickers\",\"depth_chart_position\":\"DT\",\"player_id\":\"5470\",\"birth_city\":null,\"fantasy_data_id\":20346,\"years_exp\":2,\"hashtag\":\"#KendalVickers-NFL-LV-91\",\"search_first_name\":\"kendal\",\"rotowire_id\":14560,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1458,\"age\":25,\"full_name\":\"Kendal Vickers\",\"sportradar_id\":\"0cd46b5f-5397-4947-9331-8d3420af7852\",\"pandascore_id\":null,\"yahoo_id\":31420,\"last_name\":\"Vickers\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Havelock (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kendalvickers\",\"birth_date\":\"1995-05-23\",\"espn_id\":3044732},\"2873\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wells\",\"depth_chart_position\":null,\"player_id\":\"2873\",\"birth_city\":null,\"fantasy_data_id\":17341,\"years_exp\":0,\"hashtag\":\"#DerrickWells-NFL-FA-5\",\"search_first_name\":\"derrick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Derrick Wells\",\"sportradar_id\":\"8fe8b457-9628-4063-b1ce-f7773d2be540\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wells\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"derrickwells\",\"birth_date\":\"1993-07-08\",\"espn_id\":2576329},\"6335\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035462\",\"first_name\":\"Walter\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605385559512,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmore\",\"depth_chart_position\":null,\"player_id\":\"6335\",\"birth_city\":null,\"fantasy_data_id\":21242,\"years_exp\":1,\"hashtag\":\"#WalterPalmore-NFL-DAL-60\",\"search_first_name\":\"walter\",\"rotowire_id\":14231,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Walter Palmore\",\"sportradar_id\":\"de41a84a-9f98-42c3-b35e-7c99b0ffa5c7\",\"pandascore_id\":null,\"yahoo_id\":32515,\"last_name\":\"Palmore\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Hardaway (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"walterpalmore\",\"birth_date\":\"1996-08-09\",\"espn_id\":4241221},\"4678\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033742\",\"first_name\":\"Tyrone\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599191754968,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swoopes\",\"depth_chart_position\":null,\"player_id\":\"4678\",\"birth_city\":null,\"fantasy_data_id\":19579,\"years_exp\":3,\"hashtag\":\"#TyroneSwoopes-NFL-FA-0\",\"search_first_name\":\"tyrone\",\"rotowire_id\":12049,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyrone Swoopes\",\"sportradar_id\":\"2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170\",\"pandascore_id\":null,\"yahoo_id\":30763,\"last_name\":\"Swoopes\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728022,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyroneswoopes\",\"birth_date\":\"1994-11-14\",\"espn_id\":3046705},\"226\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antwaan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"randleel\",\"depth_chart_position\":null,\"player_id\":\"226\",\"birth_city\":null,\"fantasy_data_id\":5672,\"years_exp\":9,\"hashtag\":\"#AntwaanRandleEl-NFL-FA-82\",\"search_first_name\":\"antwaan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Antwaan Randle El\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Randle El\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"antwaanrandleel\",\"birth_date\":\"1979-08-17\",\"espn_id\":null},\"1851\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1526341801374,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":null,\"player_id\":\"1851\",\"birth_city\":null,\"fantasy_data_id\":16060,\"years_exp\":5,\"hashtag\":\"#BrandonDixon-NFL-FA-39\",\"search_first_name\":\"brandon\",\"rotowire_id\":9659,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brandon Dixon\",\"sportradar_id\":\"050d040a-1bee-4b22-a15b-f01e2e30359b\",\"pandascore_id\":null,\"yahoo_id\":27723,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"NW Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":794241,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'11\\\"\",\"search_full_name\":\"brandondixon\",\"birth_date\":\"1990-04-26\",\"espn_id\":16957},\"5207\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marchie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534816806150,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murdock\",\"depth_chart_position\":null,\"player_id\":\"5207\",\"birth_city\":null,\"fantasy_data_id\":20198,\"years_exp\":2,\"hashtag\":\"#MarchieMurdock-NFL-FA-18\",\"search_first_name\":\"marchie\",\"rotowire_id\":13073,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marchie Murdock\",\"sportradar_id\":\"c070cfa8-e3c1-4dd2-880b-684e137438fd\",\"pandascore_id\":null,\"yahoo_id\":31282,\"last_name\":\"Murdock\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":740375,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marchiemurdock\",\"birth_date\":\"1995-01-07\",\"espn_id\":3042452},\"457\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Colin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cole\",\"depth_chart_position\":null,\"player_id\":\"457\",\"birth_city\":null,\"fantasy_data_id\":9363,\"years_exp\":17,\"hashtag\":\"#ColinCole-NFL-FA-91\",\"search_first_name\":\"colin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Colin Cole\",\"sportradar_id\":\"acef12a6-db48-4c99-9c3d-d75da5a6e6e9\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cole\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"South Plantation HS (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'2\\\"\",\"search_full_name\":\"colincole\",\"birth_date\":\"1980-06-24\",\"espn_id\":4870},\"2499\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Randall\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1535135428100,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"telfer\",\"depth_chart_position\":null,\"player_id\":\"2499\",\"birth_city\":null,\"fantasy_data_id\":16958,\"years_exp\":5,\"hashtag\":\"#RandallTelfer-NFL-FA-86\",\"search_first_name\":\"randall\",\"rotowire_id\":10253,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Randall Telfer\",\"sportradar_id\":\"245baa8e-c6b2-4287-bd39-988837c09fb8\",\"pandascore_id\":null,\"yahoo_id\":28586,\"last_name\":\"Telfer\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":555688,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"randalltelfer\",\"birth_date\":\"1992-05-16\",\"espn_id\":2510611},\"6531\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035008\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1606191950391,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carlock\",\"depth_chart_position\":null,\"player_id\":\"6531\",\"birth_city\":null,\"fantasy_data_id\":21457,\"years_exp\":1,\"hashtag\":\"#JakeCarlock-NFL-ATL-52\",\"search_first_name\":\"jake\",\"rotowire_id\":14085,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jake Carlock\",\"sportradar_id\":\"e0924e2e-74c2-4ae7-8d2a-4579871c6c29\",\"pandascore_id\":null,\"yahoo_id\":32234,\"last_name\":\"Carlock\",\"metadata\":null,\"college\":\"LIU Post\",\"high_school\":\"Babylon (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jakecarlock\",\"birth_date\":\"1996-10-02\",\"espn_id\":3120810},\"5304\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034804\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606175715353,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"C\",\"player_id\":\"5304\",\"birth_city\":null,\"fantasy_data_id\":19941,\"years_exp\":2,\"hashtag\":\"#BrianAllen-NFL-LAR-55\",\"search_first_name\":\"brian\",\"rotowire_id\":12656,\"rotoworld_id\":13242,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brian Allen\",\"sportradar_id\":\"ad9a0044-67f0-4303-ab38-a8459e32a9cb\",\"pandascore_id\":null,\"yahoo_id\":31081,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Hinsdale Central (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brianallen\",\"birth_date\":\"1995-10-11\",\"espn_id\":3134666},\"1562\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030402\",\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1572016840131,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"spence\",\"depth_chart_position\":null,\"player_id\":\"1562\",\"birth_city\":null,\"fantasy_data_id\":15204,\"years_exp\":7,\"hashtag\":\"#AkeemSpence-NFL-NE-97\",\"search_first_name\":\"akeem\",\"rotowire_id\":8676,\"rotoworld_id\":8527,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Akeem Spence\",\"sportradar_id\":\"10969a29-e4ca-47d3-9100-0017774f2cc2\",\"pandascore_id\":null,\"yahoo_id\":26723,\"last_name\":\"Spence\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Fort Walton Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":508581,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'1\\\"\",\"search_full_name\":\"akeemspence\",\"birth_date\":\"1991-11-29\",\"espn_id\":15958},\"7440\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brewer\",\"depth_chart_position\":\"C\",\"player_id\":\"7440\",\"birth_city\":null,\"fantasy_data_id\":22419,\"years_exp\":0,\"hashtag\":\"#AaronBrewer-NFL-TEN-62\",\"search_first_name\":\"aaron\",\"rotowire_id\":14897,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aaron Brewer\",\"sportradar_id\":\"2a41d03d-aec1-4821-a241-6fbe1878d3fd\",\"pandascore_id\":null,\"yahoo_id\":33338,\"last_name\":\"Brewer\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Texas State\",\"high_school\":\"Skyline (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"aaronbrewer\",\"birth_date\":\"1997-10-28\",\"espn_id\":4040537},\"1276\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"palmer\",\"depth_chart_position\":null,\"player_id\":\"1276\",\"birth_city\":null,\"fantasy_data_id\":14720,\"years_exp\":2,\"hashtag\":\"#NathanPalmer-NFL-FA-13\",\"search_first_name\":\"nathan\",\"rotowire_id\":8515,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Nathan Palmer\",\"sportradar_id\":\"ba0d9c0c-72eb-419c-a5b1-057d3e1ede17\",\"pandascore_id\":null,\"yahoo_id\":26262,\"last_name\":\"Palmer\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":400901,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nathanpalmer\",\"birth_date\":\"1989-04-14\",\"espn_id\":15189},\"2467\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032136\",\"first_name\":\"Lorenzo\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567259107354,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"doss\",\"depth_chart_position\":null,\"player_id\":\"2467\",\"birth_city\":null,\"fantasy_data_id\":16924,\"years_exp\":5,\"hashtag\":\"#LorenzoDoss-NFL-FA-31\",\"search_first_name\":\"lorenzo\",\"rotowire_id\":10425,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lorenzo Doss\",\"sportradar_id\":\"e0b78e61-b0b9-4115-95f5-ad8d6013d685\",\"pandascore_id\":null,\"yahoo_id\":28552,\"last_name\":\"Doss\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"St. Augustine (LA)\",\"depth_chart_order\":null,\"stats_id\":693438,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lorenzodoss\",\"birth_date\":\"1994-04-22\",\"espn_id\":2972135},\"578\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027778\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606532130150,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":\"RT\",\"player_id\":\"578\",\"birth_city\":null,\"fantasy_data_id\":11289,\"years_exp\":10,\"hashtag\":\"#SamYoung-NFL-LV-70\",\"search_first_name\":\"sam\",\"rotowire_id\":6756,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Sam Young\",\"sportradar_id\":\"f28f45f8-a617-4caa-8332-ccfff0dddc07\",\"pandascore_id\":null,\"yahoo_id\":24155,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'8\\\"\",\"search_full_name\":\"samyoung\",\"birth_date\":\"1987-06-24\",\"espn_id\":13496},\"2470\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swann\",\"depth_chart_position\":null,\"player_id\":\"2470\",\"birth_city\":null,\"fantasy_data_id\":16927,\"years_exp\":5,\"hashtag\":\"#DamianSwann-NFL-FA-27\",\"search_first_name\":\"damian\",\"rotowire_id\":10426,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Damian Swann\",\"sportradar_id\":\"41145000-8ec2-4de0-996e-3c5a07377205\",\"pandascore_id\":null,\"yahoo_id\":28555,\"last_name\":\"Swann\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Grady (GA)\",\"depth_chart_order\":null,\"stats_id\":607103,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"damianswann\",\"birth_date\":\"1992-12-04\",\"espn_id\":2578561},\"2768\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Braylon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heard\",\"depth_chart_position\":null,\"player_id\":\"2768\",\"birth_city\":null,\"fantasy_data_id\":17236,\"years_exp\":0,\"hashtag\":\"#BraylonHeard-NFL-FA-40\",\"search_first_name\":\"braylon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Braylon Heard\",\"sportradar_id\":\"5f38d656-6c53-47c9-be35-a4569a4bb43e\",\"pandascore_id\":null,\"yahoo_id\":29194,\"last_name\":\"Heard\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":540627,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"braylonheard\",\"birth_date\":\"1991-10-11\",\"espn_id\":2514166},\"2073\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030968\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606262455378,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":\"RB\",\"player_id\":\"2073\",\"birth_city\":null,\"fantasy_data_id\":16378,\"years_exp\":6,\"hashtag\":\"#KeithSmith-NFL-ATL-40\",\"search_first_name\":\"keith\",\"rotowire_id\":9990,\"rotoworld_id\":null,\"active\":true,\"search_rank\":447,\"age\":28,\"full_name\":\"Keith Smith\",\"sportradar_id\":\"955093e0-39aa-48b4-b34d-259b369e6535\",\"pandascore_id\":null,\"yahoo_id\":28141,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":\"Charter Oak (CA)\",\"depth_chart_order\":4,\"stats_id\":558973,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'0\\\"\",\"search_full_name\":\"keithsmith\",\"birth_date\":\"1992-04-08\",\"espn_id\":17315},\"6115\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035489\",\"first_name\":\"Wes\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599366358748,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hills\",\"depth_chart_position\":\"RB\",\"player_id\":\"6115\",\"birth_city\":null,\"fantasy_data_id\":20804,\"years_exp\":1,\"hashtag\":\"#WesHills-NFL-FA-0\",\"search_first_name\":\"wes\",\"rotowire_id\":13665,\"rotoworld_id\":14662,\"active\":true,\"search_rank\":1551,\"age\":25,\"full_name\":\"Wes Hills\",\"sportradar_id\":\"14e3c57f-0eb2-49b5-9e94-10a4a54990cf\",\"pandascore_id\":null,\"yahoo_id\":32473,\"last_name\":\"Hills\",\"metadata\":null,\"college\":\"Slippery Rock\",\"high_school\":null,\"depth_chart_order\":23,\"stats_id\":788307,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'0\\\"\",\"search_full_name\":\"weshills\",\"birth_date\":\"1995-06-05\",\"espn_id\":3060919},\"984\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Konrad\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reuland\",\"depth_chart_position\":null,\"player_id\":\"984\",\"birth_city\":null,\"fantasy_data_id\":13449,\"years_exp\":9,\"hashtag\":\"#KonradReuland-NFL-FA-49\",\"search_first_name\":\"konrad\",\"rotowire_id\":8520,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Konrad Reuland\",\"sportradar_id\":\"07a68177-0b79-455b-b8a4-8107cc1c3be0\",\"pandascore_id\":null,\"yahoo_id\":25223,\"last_name\":\"Reuland\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Mission Viejo (CA)\",\"depth_chart_order\":null,\"stats_id\":334877,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"konradreuland\",\"birth_date\":\"1987-04-04\",\"espn_id\":14434},\"1333\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030147\",\"first_name\":\"Russell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1580850605663,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shepard\",\"depth_chart_position\":\"SWR\",\"player_id\":\"1333\",\"birth_city\":null,\"fantasy_data_id\":14850,\"years_exp\":7,\"hashtag\":\"#RussellShepard-NFL-FA-81\",\"search_first_name\":\"russell\",\"rotowire_id\":9019,\"rotoworld_id\":7459,\"active\":true,\"search_rank\":704,\"age\":30,\"full_name\":\"Russell Shepard\",\"sportradar_id\":\"6195ddc9-ab2b-469a-b824-a890736d6db7\",\"pandascore_id\":null,\"yahoo_id\":27055,\"last_name\":\"Shepard\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Cypress Ridge (TX)\",\"depth_chart_order\":3,\"stats_id\":494291,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"russellshepard\",\"birth_date\":\"1990-09-17\",\"espn_id\":16227},\"5667\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034664\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1577564110496,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nkansah\",\"depth_chart_position\":null,\"player_id\":\"5667\",\"birth_city\":null,\"fantasy_data_id\":20378,\"years_exp\":2,\"hashtag\":\"#ElijahNkansah-NFL-HOU-75\",\"search_first_name\":\"elijah\",\"rotowire_id\":13300,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Elijah Nkansah\",\"sportradar_id\":\"d7afa203-07a1-406d-bb1d-eb81f331955b\",\"pandascore_id\":null,\"yahoo_id\":31618,\"last_name\":\"Nkansah\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Mason (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'5\\\"\",\"search_full_name\":\"elijahnkansah\",\"birth_date\":\"1994-12-28\",\"espn_id\":3059936},\"5128\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034438\",\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599399059362,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"woodside\",\"depth_chart_position\":\"QB\",\"player_id\":\"5128\",\"birth_city\":null,\"fantasy_data_id\":20055,\"years_exp\":2,\"hashtag\":\"#LoganWoodside-NFL-TEN-5\",\"search_first_name\":\"logan\",\"rotowire_id\":12949,\"rotoworld_id\":null,\"active\":true,\"search_rank\":464,\"age\":25,\"full_name\":\"Logan Woodside\",\"sportradar_id\":\"ddff375b-365e-4af1-b9ae-58d03b1b1195\",\"pandascore_id\":null,\"yahoo_id\":31219,\"last_name\":\"Woodside\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Toledo\",\"high_school\":\"Franklin County (KY)\",\"depth_chart_order\":2,\"stats_id\":732107,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"loganwoodside\",\"birth_date\":\"1995-01-27\",\"espn_id\":3042749},\"6642\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrence\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alexander\",\"depth_chart_position\":null,\"player_id\":\"6642\",\"birth_city\":null,\"fantasy_data_id\":21523,\"years_exp\":1,\"hashtag\":\"#TerrenceAlexander-NFL-FA-49\",\"search_first_name\":\"terrence\",\"rotowire_id\":14190,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Terrence Alexander\",\"sportradar_id\":\"fc6ae4d2-32e5-4861-aa8a-ac830ce8505a\",\"pandascore_id\":null,\"yahoo_id\":32393,\"last_name\":\"Alexander\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"6'0\\\"\",\"search_full_name\":\"terrencealexander\",\"birth_date\":\"1995-10-14\",\"espn_id\":3117241},\"1793\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030710\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606504504236,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burton\",\"depth_chart_position\":\"TE\",\"player_id\":\"1793\",\"birth_city\":null,\"fantasy_data_id\":15965,\"years_exp\":6,\"hashtag\":\"#TreyBurton-NFL-IND-80\",\"search_first_name\":\"trey\",\"rotowire_id\":9490,\"rotoworld_id\":9737,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Trey Burton\",\"sportradar_id\":\"bc0f07a4-3e7b-4e61-987a-05533dc225be\",\"pandascore_id\":null,\"yahoo_id\":27789,\"last_name\":\"Burton\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Venice (FL)\",\"depth_chart_order\":1,\"stats_id\":542788,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"treyburton\",\"birth_date\":\"1991-10-29\",\"espn_id\":16974},\"5134\":{\"position\":\"WR\",\"injury_notes\":\"Kirkwood will undergo surgery and may begin the season on Injured Reserve.\",\"birth_country\":null,\"gsis_id\":\"00-0034317\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603226439254,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"kirkwood\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5134\",\"birth_city\":null,\"fantasy_data_id\":20071,\"years_exp\":2,\"hashtag\":\"#KeithKirkwood-NFL-CAR-18\",\"search_first_name\":\"keith\",\"rotowire_id\":13019,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Keith Kirkwood\",\"sportradar_id\":\"430446f6-a74c-496b-8f49-4464e7d8149d\",\"pandascore_id\":null,\"yahoo_id\":31517,\"last_name\":\"Kirkwood\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Neptune (NJ)\",\"depth_chart_order\":2,\"stats_id\":746244,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keithkirkwood\",\"birth_date\":\"1993-12-26\",\"espn_id\":3046401},\"1600\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"1600\",\"birth_city\":null,\"fantasy_data_id\":15260,\"years_exp\":1,\"hashtag\":\"#JaredSmith-NFL-FA-62\",\"search_first_name\":\"jared\",\"rotowire_id\":8972,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jared Smith\",\"sportradar_id\":\"e33d52d3-b3a2-40f7-9a6e-4c3bfd0a30e7\",\"pandascore_id\":null,\"yahoo_id\":26864,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"New Hampshire\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jaredsmith\",\"birth_date\":\"1990-03-20\",\"espn_id\":15902},\"6224\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034991\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596293108841,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"forbes\",\"depth_chart_position\":null,\"player_id\":\"6224\",\"birth_city\":null,\"fantasy_data_id\":21113,\"years_exp\":1,\"hashtag\":\"#DrewForbes-NFL-CLE-79\",\"search_first_name\":\"drew\",\"rotowire_id\":13915,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Drew Forbes\",\"sportradar_id\":\"8f0e2ff1-fa77-4049-aa94-159a37ed5c51\",\"pandascore_id\":null,\"yahoo_id\":32021,\"last_name\":\"Forbes\",\"metadata\":null,\"college\":\"Southeast Missouri\",\"high_school\":\"North County (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"drewforbes\",\"birth_date\":\"1997-01-18\",\"espn_id\":3910156},\"4377\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033353\",\"first_name\":\"Montay\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1563243629126,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crockett\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4377\",\"birth_city\":null,\"fantasy_data_id\":19234,\"years_exp\":3,\"hashtag\":\"#MontayCrockett-NFL-FA-18\",\"search_first_name\":\"montay\",\"rotowire_id\":12451,\"rotoworld_id\":12725,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Montay Crockett\",\"sportradar_id\":\"668b0909-c44f-448e-8fa3-62235b5bebb5\",\"pandascore_id\":null,\"yahoo_id\":30610,\"last_name\":\"Crockett\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":696820,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"montaycrockett\",\"birth_date\":\"1993-12-11\",\"espn_id\":2973973},\"5991\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034973\",\"first_name\":\"Maxx\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602528327266,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crosby\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5991\",\"birth_city\":null,\"fantasy_data_id\":21015,\"years_exp\":1,\"hashtag\":\"#MaxxCrosby-NFL-LV-98\",\"search_first_name\":\"maxx\",\"rotowire_id\":13459,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1635,\"age\":23,\"full_name\":\"Maxx Crosby\",\"sportradar_id\":\"3ae55cda-ad32-46c5-bde7-470755f37f3a\",\"pandascore_id\":null,\"yahoo_id\":31938,\"last_name\":\"Crosby\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":\"Colleyville Heritage (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"maxxcrosby\",\"birth_date\":\"1997-08-22\",\"espn_id\":3916655},\"3916\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watford\",\"depth_chart_position\":null,\"player_id\":\"3916\",\"birth_city\":null,\"fantasy_data_id\":18743,\"years_exp\":3,\"hashtag\":\"#DavidWatford-NFL-FA-14\",\"search_first_name\":\"david\",\"rotowire_id\":11653,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Watford\",\"sportradar_id\":\"0f151d7d-c87e-4260-b5ab-f2596aa1ab06\",\"pandascore_id\":null,\"yahoo_id\":30044,\"last_name\":\"Watford\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":596437,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidwatford\",\"birth_date\":\"1993-06-16\",\"espn_id\":2577807},\"509\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027678\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564274111111,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jerry\",\"depth_chart_position\":null,\"player_id\":\"509\",\"birth_city\":null,\"fantasy_data_id\":10956,\"years_exp\":10,\"hashtag\":\"#JohnJerry-NFL-FA-64\",\"search_first_name\":\"john\",\"rotowire_id\":6556,\"rotoworld_id\":5881,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"John Jerry\",\"sportradar_id\":\"1540d25f-4758-44d8-a4eb-276845326620\",\"pandascore_id\":null,\"yahoo_id\":24048,\"last_name\":\"Jerry\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":\"South Panola (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johnjerry\",\"birth_date\":\"1986-06-14\",\"espn_id\":13278},\"5592\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034328\",\"first_name\":\"Tejan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1556573756637,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"koroma\",\"depth_chart_position\":null,\"player_id\":\"5592\",\"birth_city\":null,\"fantasy_data_id\":20551,\"years_exp\":2,\"hashtag\":\"#TejanKoroma-NFL-FA-78\",\"search_first_name\":\"tejan\",\"rotowire_id\":13384,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tejan Koroma\",\"sportradar_id\":\"5f642a99-fc5b-4cae-b23d-8d043681b264\",\"pandascore_id\":null,\"yahoo_id\":31522,\"last_name\":\"Koroma\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tejankoroma\",\"birth_date\":\"1996-04-27\",\"espn_id\":3138835},\"6682\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035573\",\"first_name\":\"Kareem\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606023011277,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"orr\",\"depth_chart_position\":null,\"player_id\":\"6682\",\"birth_city\":null,\"fantasy_data_id\":21581,\"years_exp\":1,\"hashtag\":\"#KareemOrr-NFL-TEN-36\",\"search_first_name\":\"kareem\",\"rotowire_id\":14297,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1764,\"age\":23,\"full_name\":\"Kareem Orr\",\"sportradar_id\":\"aee4f924-aaf5-4351-b503-9fce1ade59c5\",\"pandascore_id\":null,\"yahoo_id\":32589,\"last_name\":\"Orr\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Chattanooga\",\"high_school\":\"Notre Dame (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kareemorr\",\"birth_date\":\"1997-01-02\",\"espn_id\":3675805},\"2837\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harvey\",\"depth_chart_position\":null,\"player_id\":\"2837\",\"birth_city\":null,\"fantasy_data_id\":17305,\"years_exp\":1,\"hashtag\":\"#TravisHarvey-NFL-FA-19\",\"search_first_name\":\"travis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Travis Harvey\",\"sportradar_id\":\"d361d2c2-dfbf-4cb9-91ad-071831e8a04e\",\"pandascore_id\":null,\"yahoo_id\":27300,\"last_name\":\"Harvey\",\"metadata\":null,\"college\":\"Florida A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"6'2\\\"\",\"search_full_name\":\"travisharvey\",\"birth_date\":\"1990-05-18\",\"espn_id\":16563},\"2539\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031627\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564253714748,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"2539\",\"birth_city\":null,\"fantasy_data_id\":16999,\"years_exp\":5,\"hashtag\":\"#CoreyRobinson-NFL-FA-60\",\"search_first_name\":\"corey\",\"rotowire_id\":10501,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Corey Robinson\",\"sportradar_id\":\"c1e82d78-b03b-4aac-b4f3-0720e2811ec4\",\"pandascore_id\":null,\"yahoo_id\":28628,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Havelock (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'7\\\"\",\"search_full_name\":\"coreyrobinson\",\"birth_date\":\"1992-05-21\",\"espn_id\":2516338},\"4389\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033399\",\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567107640239,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"4389\",\"birth_city\":null,\"fantasy_data_id\":19248,\"years_exp\":3,\"hashtag\":\"#ChaseAllen-NFL-FA-0\",\"search_first_name\":\"chase\",\"rotowire_id\":12303,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Chase Allen\",\"sportradar_id\":\"3513168f-e8ec-4dc8-984d-c305758d2e38\",\"pandascore_id\":null,\"yahoo_id\":30640,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":660315,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chaseallen\",\"birth_date\":\"1993-08-29\",\"espn_id\":2975680},\"2529\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031959\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1588628431221,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":\"RB\",\"player_id\":\"2529\",\"birth_city\":null,\"fantasy_data_id\":16989,\"years_exp\":5,\"hashtag\":\"#MarcusMurphy-NFL-FA-22\",\"search_first_name\":\"marcus\",\"rotowire_id\":10200,\"rotoworld_id\":10603,\"active\":true,\"search_rank\":906,\"age\":28,\"full_name\":\"Marcus Murphy\",\"sportradar_id\":\"36007e6e-ca6b-42ee-b9f8-79a9a964f5bc\",\"pandascore_id\":null,\"yahoo_id\":28618,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Desoto (TX)\",\"depth_chart_order\":12,\"stats_id\":553238,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"marcusmurphy\",\"birth_date\":\"1991-10-03\",\"espn_id\":2514123},\"5926\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035312\",\"first_name\":\"Dontavius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597011951441,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"russell\",\"depth_chart_position\":null,\"player_id\":\"5926\",\"birth_city\":null,\"fantasy_data_id\":20928,\"years_exp\":1,\"hashtag\":\"#DontaviusRussell-NFL-JAX-98\",\"search_first_name\":\"dontavius\",\"rotowire_id\":13542,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dontavius Russell\",\"sportradar_id\":\"d61b7bc0-beec-4cab-97b0-7dbd27ded26e\",\"pandascore_id\":null,\"yahoo_id\":32067,\"last_name\":\"Russell\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Carrollton (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dontaviusrussell\",\"birth_date\":\"1995-09-18\",\"espn_id\":3121587},\"1593\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"lotulelei\",\"depth_chart_position\":null,\"player_id\":\"1593\",\"birth_city\":null,\"fantasy_data_id\":15248,\"years_exp\":7,\"hashtag\":\"#JohnLotulelei-NFL-FA-47\",\"search_first_name\":\"john\",\"rotowire_id\":9125,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"John Lotulelei\",\"sportradar_id\":\"aad219c2-ba59-493e-85c3-fba67a55444c\",\"pandascore_id\":null,\"yahoo_id\":26897,\"last_name\":\"Lotulelei\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":\"Baldwin (HI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johnlotulelei\",\"birth_date\":\"1991-12-04\",\"espn_id\":16087},\"5029\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034751\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605460811019,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5029\",\"birth_city\":null,\"fantasy_data_id\":19856,\"years_exp\":2,\"hashtag\":\"#JoshJackson-NFL-GB-37\",\"search_first_name\":\"josh\",\"rotowire_id\":12530,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1304,\"age\":24,\"full_name\":\"Josh Jackson\",\"sportradar_id\":\"fbf2dd5f-b324-424d-8cd3-335b0d695c6a\",\"pandascore_id\":null,\"yahoo_id\":31015,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Corinth Lake (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshjackson\",\"birth_date\":\"1996-04-03\",\"espn_id\":3144984},\"1764\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030380\",\"first_name\":\"Benson\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605736831635,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mayowa\",\"depth_chart_position\":\"LEO\",\"player_id\":\"1764\",\"birth_city\":null,\"fantasy_data_id\":15814,\"years_exp\":7,\"hashtag\":\"#BensonMayowa-NFL-SEA-95\",\"search_first_name\":\"benson\",\"rotowire_id\":9126,\"rotoworld_id\":9180,\"active\":true,\"search_rank\":767,\"age\":29,\"full_name\":\"Benson Mayowa\",\"sportradar_id\":\"b612c556-1285-405f-9294-733f0302869e\",\"pandascore_id\":null,\"yahoo_id\":27413,\"last_name\":\"Mayowa\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":\"Inglewood (CA)\",\"depth_chart_order\":2,\"stats_id\":521095,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bensonmayowa\",\"birth_date\":\"1991-08-03\",\"espn_id\":16528},\"6693\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035627\",\"first_name\":\"Ketner\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kupp\",\"depth_chart_position\":null,\"player_id\":\"6693\",\"birth_city\":null,\"fantasy_data_id\":21592,\"years_exp\":1,\"hashtag\":\"#KetnerKupp-NFL-FA-55\",\"search_first_name\":\"ketner\",\"rotowire_id\":14315,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ketner Kupp\",\"sportradar_id\":\"787b5760-f724-4caa-9c54-f26bb6efdc30\",\"pandascore_id\":null,\"yahoo_id\":32607,\"last_name\":\"Kupp\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ketnerkupp\",\"birth_date\":\"1996-11-15\",\"espn_id\":3910330},\"3051\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rob\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crisp\",\"depth_chart_position\":null,\"player_id\":\"3051\",\"birth_city\":null,\"fantasy_data_id\":17766,\"years_exp\":1,\"hashtag\":\"#RobCrisp-NFL-FA-79\",\"search_first_name\":\"rob\",\"rotowire_id\":10280,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rob Crisp\",\"sportradar_id\":\"9b4b1854-c431-4908-8f1f-470ca8a64eb0\",\"pandascore_id\":null,\"yahoo_id\":28803,\"last_name\":\"Crisp\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'7\\\"\",\"search_full_name\":\"robcrisp\",\"birth_date\":\"1991-01-03\",\"espn_id\":null},\"7177\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599263154691,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ksiezarczyk\",\"depth_chart_position\":null,\"player_id\":\"7177\",\"birth_city\":null,\"fantasy_data_id\":22179,\"years_exp\":0,\"hashtag\":\"#EvinKsiezarczyk-NFL-FA-0\",\"search_first_name\":\"evin\",\"rotowire_id\":14791,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Evin Ksiezarczyk\",\"sportradar_id\":\"a200f1cf-c926-4e3c-a050-d46abe97548b\",\"pandascore_id\":null,\"yahoo_id\":33060,\"last_name\":\"Ksiezarczyk\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"evinksiezarczyk\",\"birth_date\":\"1997-06-08\",\"espn_id\":3916584},\"353\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027103\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1521077101464,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"huber\",\"depth_chart_position\":null,\"player_id\":\"353\",\"birth_city\":null,\"fantasy_data_id\":8433,\"years_exp\":11,\"hashtag\":\"#KevinHuber-NFL-CIN-10\",\"search_first_name\":\"kevin\",\"rotowire_id\":7087,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Kevin Huber\",\"sportradar_id\":\"d14302ef-0224-4c92-961a-6d10452936ff\",\"pandascore_id\":null,\"yahoo_id\":9406,\"last_name\":\"Huber\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Archbishop McNicholas (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kevinhuber\",\"birth_date\":\"1985-07-16\",\"espn_id\":12669},\"4096\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033898\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599368758788,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"4096\",\"birth_city\":null,\"fantasy_data_id\":18942,\"years_exp\":3,\"hashtag\":\"#JustinEvans-NFL-TB-21\",\"search_first_name\":\"justin\",\"rotowire_id\":11988,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1141,\"age\":25,\"full_name\":\"Justin Evans\",\"sportradar_id\":\"410037b3-d7f2-4188-9d87-53bf51fd31fe\",\"pandascore_id\":null,\"yahoo_id\":30163,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Stone (MS)\",\"depth_chart_order\":null,\"stats_id\":865805,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justinevans\",\"birth_date\":\"1995-08-26\",\"espn_id\":3895859},\"6015\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035626\",\"first_name\":\"Deshaun\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567545921594,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"6015\",\"birth_city\":null,\"fantasy_data_id\":21059,\"years_exp\":1,\"hashtag\":\"#DeshaunDavis-NFL-FA-59\",\"search_first_name\":\"deshaun\",\"rotowire_id\":13754,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Deshaun Davis\",\"sportradar_id\":\"5c972829-e159-49de-9aa8-edf961b39850\",\"pandascore_id\":null,\"yahoo_id\":32042,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835141,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deshaundavis\",\"birth_date\":\"1995-12-31\",\"espn_id\":3121578},\"504\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Micheal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spurlock\",\"depth_chart_position\":null,\"player_id\":\"504\",\"birth_city\":null,\"fantasy_data_id\":10412,\"years_exp\":6,\"hashtag\":\"#MichealSpurlock-NFL-FA-18\",\"search_first_name\":\"micheal\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Micheal Spurlock\",\"sportradar_id\":\"f4f9983e-2334-4c10-afac-449ea4e83a90\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Spurlock\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michealspurlock\",\"birth_date\":\"1983-01-31\",\"espn_id\":null},\"563\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027858\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1582922118145,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"berry\",\"depth_chart_position\":null,\"player_id\":\"563\",\"birth_city\":null,\"fantasy_data_id\":11205,\"years_exp\":10,\"hashtag\":\"#EricBerry-NFL-FA-29\",\"search_first_name\":\"eric\",\"rotowire_id\":6643,\"rotoworld_id\":5623,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Eric Berry\",\"sportradar_id\":\"6e8964e3-bc64-4cff-acdf-b984f9b28811\",\"pandascore_id\":null,\"yahoo_id\":23980,\"last_name\":\"Berry\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Creekside (GA)\",\"depth_chart_order\":null,\"stats_id\":397975,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ericberry\",\"birth_date\":\"1988-12-29\",\"espn_id\":13252},\"5508\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034145\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1575783329210,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lammons\",\"depth_chart_position\":null,\"player_id\":\"5508\",\"birth_city\":null,\"fantasy_data_id\":20050,\"years_exp\":2,\"hashtag\":\"#ChrisLammons-NFL-KC-38\",\"search_first_name\":\"chris\",\"rotowire_id\":13017,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1405,\"age\":24,\"full_name\":\"Chris Lammons\",\"sportradar_id\":\"bb5e3914-d941-4f05-8c45-bc9c520490ef\",\"pandascore_id\":null,\"yahoo_id\":31359,\"last_name\":\"Lammons\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Plantation (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"chrislammons\",\"birth_date\":\"1996-01-31\",\"espn_id\":3128630},\"3947\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1546989032254,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"arians\",\"depth_chart_position\":null,\"player_id\":\"3947\",\"birth_city\":null,\"fantasy_data_id\":18780,\"years_exp\":0,\"hashtag\":\"#BruceArians-NFL-FA-0\",\"search_first_name\":\"bruce\",\"rotowire_id\":null,\"rotoworld_id\":8336,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bruce Arians\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Arians\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"brucearians\",\"birth_date\":null,\"espn_id\":null},\"3391\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032450\",\"first_name\":\"Dwayne\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606344903209,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":\"RB\",\"player_id\":\"3391\",\"birth_city\":null,\"fantasy_data_id\":18152,\"years_exp\":4,\"hashtag\":\"#DwayneWashington-NFL-NO-24\",\"search_first_name\":\"dwayne\",\"rotowire_id\":10737,\"rotoworld_id\":11518,\"active\":true,\"search_rank\":507,\"age\":26,\"full_name\":\"Dwayne Washington\",\"sportradar_id\":\"30ff46bc-a039-4af7-9050-81af98901a3e\",\"pandascore_id\":null,\"yahoo_id\":29470,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Gahr (CA)\",\"depth_chart_order\":4,\"stats_id\":714230,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dwaynewashington\",\"birth_date\":\"1994-04-24\",\"espn_id\":3002265},\"6504\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1565823938200,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"6504\",\"birth_city\":null,\"fantasy_data_id\":20515,\"years_exp\":1,\"hashtag\":\"#RyanAnderson-NFL-FA-17\",\"search_first_name\":\"ryan\",\"rotowire_id\":14158,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Anderson\",\"sportradar_id\":\"f9d1c515-b89a-4c44-912d-2985acb16999\",\"pandascore_id\":null,\"yahoo_id\":32380,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryananderson\",\"birth_date\":\"1994-12-30\",\"espn_id\":4259327},\"1186\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029657\",\"first_name\":\"Akiem\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606518628311,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hicks\",\"depth_chart_position\":\"DT\",\"player_id\":\"1186\",\"birth_city\":null,\"fantasy_data_id\":14358,\"years_exp\":8,\"hashtag\":\"#AkiemHicks-NFL-CHI-96\",\"search_first_name\":\"akiem\",\"rotowire_id\":8350,\"rotoworld_id\":7555,\"active\":true,\"search_rank\":681,\"age\":31,\"full_name\":\"Akiem Hicks\",\"sportradar_id\":\"e2d85e2a-3d88-42e7-95ca-8db79228135c\",\"pandascore_id\":null,\"yahoo_id\":25799,\"last_name\":\"Hicks\",\"metadata\":null,\"college\":\"Regina, Can.\",\"high_school\":\"Del Campo (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"352\",\"height\":\"6'4\\\"\",\"search_full_name\":\"akiemhicks\",\"birth_date\":\"1989-11-16\",\"espn_id\":14984},\"3514\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032997\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1553142317848,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcgee\",\"depth_chart_position\":null,\"player_id\":\"3514\",\"birth_city\":null,\"fantasy_data_id\":18280,\"years_exp\":4,\"hashtag\":\"#JakeMcGee-NFL-FA-80\",\"search_first_name\":\"jake\",\"rotowire_id\":11132,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Jake McGee\",\"sportradar_id\":\"0456cc0d-84e0-432f-ba7c-a6ca13446b76\",\"pandascore_id\":null,\"yahoo_id\":29504,\"last_name\":\"McGee\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556211,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jakemcgee\",\"birth_date\":\"1986-08-06\",\"espn_id\":2512657},\"4705\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"4705\",\"birth_city\":null,\"fantasy_data_id\":19611,\"years_exp\":2,\"hashtag\":\"#JohnGreen-NFL-FA-44\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"John Green\",\"sportradar_id\":\"69b0f4b4-d4cd-4dc2-beab-d6b51c9c6682\",\"pandascore_id\":null,\"yahoo_id\":30748,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"johngreen\",\"birth_date\":\"1993-11-12\",\"espn_id\":2974235},\"5360\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034335\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602717653939,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"RILB\",\"player_id\":\"5360\",\"birth_city\":null,\"fantasy_data_id\":19997,\"years_exp\":2,\"hashtag\":\"#MarcusAllen-NFL-PIT-27\",\"search_first_name\":\"marcus\",\"rotowire_id\":12768,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1386,\"age\":24,\"full_name\":\"Marcus Allen\",\"sportradar_id\":\"c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf\",\"pandascore_id\":null,\"yahoo_id\":31118,\"last_name\":\"Allen\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Penn State\",\"high_school\":\"Henry Wise (MD)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marcusallen\",\"birth_date\":\"1996-08-07\",\"espn_id\":3116149},\"3142\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jim\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oneil\",\"depth_chart_position\":null,\"player_id\":\"3142\",\"birth_city\":null,\"fantasy_data_id\":17896,\"years_exp\":null,\"hashtag\":\"#JimONeil-NFL-FA-0\",\"search_first_name\":\"jim\",\"rotowire_id\":null,\"rotoworld_id\":9367,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jim O'Neil\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"O'Neil\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jimoneil\",\"birth_date\":null,\"espn_id\":null},\"3717\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032630\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1575217211492,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"callahan\",\"depth_chart_position\":null,\"player_id\":\"3717\",\"birth_city\":null,\"fantasy_data_id\":18525,\"years_exp\":4,\"hashtag\":\"#JoeCallahan-NFL-FA-8\",\"search_first_name\":\"joe\",\"rotowire_id\":11441,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joe Callahan\",\"sportradar_id\":\"c67e52b1-0801-4a6c-802c-32cdc78bb7c9\",\"pandascore_id\":null,\"yahoo_id\":29722,\"last_name\":\"Callahan\",\"metadata\":null,\"college\":\"Wesley\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":617316,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joecallahan\",\"birth_date\":\"1993-06-04\",\"espn_id\":3078660},\"1983\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"copeland\",\"depth_chart_position\":null,\"player_id\":\"1983\",\"birth_city\":null,\"fantasy_data_id\":16250,\"years_exp\":2,\"hashtag\":\"#DamianCopeland-NFL-FA-3\",\"search_first_name\":\"damian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Damian Copeland\",\"sportradar_id\":\"2e55d5a9-55c5-4156-87b4-6b5eed75215b\",\"pandascore_id\":null,\"yahoo_id\":27871,\"last_name\":\"Copeland\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"damiancopeland\",\"birth_date\":\"1990-10-17\",\"espn_id\":17131},\"7506\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"7506\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":4,\"hashtag\":\"#AnthonyBrown-NFL-DAL-30\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":26,\"full_name\":\"Anthony Brown\",\"sportradar_id\":\"6c381b66-7aea-4476-a65d-717d6de081db\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Hillsborough (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonybrown\",\"birth_date\":\"1993-12-15\",\"espn_id\":null},\"3013\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032272\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1541461527140,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"battle\",\"depth_chart_position\":null,\"player_id\":\"3013\",\"birth_city\":null,\"fantasy_data_id\":17559,\"years_exp\":5,\"hashtag\":\"#IsaiahBattle-NFL-FA-79\",\"search_first_name\":\"isaiah\",\"rotowire_id\":10613,\"rotoworld_id\":11149,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Isaiah Battle\",\"sportradar_id\":\"b9564858-003b-4d2d-846a-decb96fc7f3f\",\"pandascore_id\":null,\"yahoo_id\":29159,\"last_name\":\"Battle\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Blue Ridge (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'7\\\"\",\"search_full_name\":\"isaiahbattle\",\"birth_date\":\"1993-02-10\",\"espn_id\":2977676},\"2378\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032058\",\"first_name\":\"Tevin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606517727404,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":\"RB\",\"player_id\":\"2378\",\"birth_city\":null,\"fantasy_data_id\":16834,\"years_exp\":5,\"hashtag\":\"#TevinColeman-NFL-SF-26\",\"search_first_name\":\"tevin\",\"rotowire_id\":10081,\"rotoworld_id\":10359,\"active\":true,\"search_rank\":94,\"age\":27,\"full_name\":\"Tevin Coleman\",\"sportradar_id\":\"5827b78b-5150-4ba9-bc46-902428e99a31\",\"pandascore_id\":null,\"yahoo_id\":28461,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Oak Forest (IL)\",\"depth_chart_order\":6,\"stats_id\":696080,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tevincoleman\",\"birth_date\":\"1993-04-16\",\"espn_id\":2979477},\"1444\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Coach's Decision\",\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"1444\",\"birth_city\":null,\"fantasy_data_id\":15013,\"years_exp\":7,\"hashtag\":\"#JoshEvans-NFL-FA-45\",\"search_first_name\":\"josh\",\"rotowire_id\":8692,\"rotoworld_id\":8576,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Josh Evans\",\"sportradar_id\":\"8b927dbe-a45e-4c5a-a756-4048a58befcf\",\"pandascore_id\":null,\"yahoo_id\":26792,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Irvington (NJ)\",\"depth_chart_order\":null,\"stats_id\":508878,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshevans\",\"birth_date\":\"1991-06-05\",\"espn_id\":15984},\"4252\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033471\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606065017554,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4252\",\"birth_city\":null,\"fantasy_data_id\":19098,\"years_exp\":3,\"hashtag\":\"#IsaiahFord-NFL-NE-84\",\"search_first_name\":\"isaiah\",\"rotowire_id\":11717,\"rotoworld_id\":null,\"active\":true,\"search_rank\":335,\"age\":24,\"full_name\":\"Isaiah Ford\",\"sportradar_id\":\"73af6932-2701-470e-9668-02d6cb35a5c9\",\"pandascore_id\":null,\"yahoo_id\":30350,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Trinity Christian Academy (FL)\",\"depth_chart_order\":2,\"stats_id\":836936,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"isaiahford\",\"birth_date\":\"1996-02-09\",\"espn_id\":3124069},\"4313\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033245\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576362902907,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"eldrenkamp\",\"depth_chart_position\":null,\"player_id\":\"4313\",\"birth_city\":null,\"fantasy_data_id\":19164,\"years_exp\":3,\"hashtag\":\"#JakeEldrenkamp-NFL-IND-60\",\"search_first_name\":\"jake\",\"rotowire_id\":12599,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jake Eldrenkamp\",\"sportradar_id\":\"db392145-7bee-4453-8762-ec946b3130b3\",\"pandascore_id\":null,\"yahoo_id\":30371,\"last_name\":\"Eldrenkamp\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Bellevue (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jakeeldrenkamp\",\"birth_date\":\"1994-03-04\",\"espn_id\":2978298},\"4226\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033296\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606262455380,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"armah\",\"depth_chart_position\":\"RB\",\"player_id\":\"4226\",\"birth_city\":null,\"fantasy_data_id\":19072,\"years_exp\":3,\"hashtag\":\"#AlexArmah-NFL-CAR-40\",\"search_first_name\":\"alex\",\"rotowire_id\":12208,\"rotoworld_id\":null,\"active\":true,\"search_rank\":371,\"age\":26,\"full_name\":\"Alex Armah\",\"sportradar_id\":\"686cab35-6da0-4e10-ba65-0d1f97e0bc8b\",\"pandascore_id\":null,\"yahoo_id\":30305,\"last_name\":\"Armah\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":\"Dacula (GA)\",\"depth_chart_order\":5,\"stats_id\":1049905,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alexarmah\",\"birth_date\":\"1994-05-17\",\"espn_id\":4212884},\"3496\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032725\",\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1577768127587,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"TE\",\"player_id\":\"3496\",\"birth_city\":null,\"fantasy_data_id\":18262,\"years_exp\":4,\"hashtag\":\"#StephenAnderson-NFL-LAC-82\",\"search_first_name\":\"stephen\",\"rotowire_id\":10885,\"rotoworld_id\":11556,\"active\":true,\"search_rank\":1057,\"age\":27,\"full_name\":\"Stephen Anderson\",\"sportradar_id\":\"5cb0bf9c-03b4-4201-97c5-a59c6db50841\",\"pandascore_id\":null,\"yahoo_id\":29789,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Piedmont Hills (CA)\",\"depth_chart_order\":4,\"stats_id\":607660,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stephenanderson\",\"birth_date\":\"1993-01-30\",\"espn_id\":2576854},\"3329\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032978\",\"first_name\":\"Trey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535743859128,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"caldwell\",\"depth_chart_position\":null,\"player_id\":\"3329\",\"birth_city\":null,\"fantasy_data_id\":18090,\"years_exp\":4,\"hashtag\":\"#TreyCaldwell-NFL-FA-39\",\"search_first_name\":\"trey\",\"rotowire_id\":11224,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Trey Caldwell\",\"sportradar_id\":\"94b57778-d6dc-47d1-b7e6-6d844bccdbe8\",\"pandascore_id\":null,\"yahoo_id\":29407,\"last_name\":\"Caldwell\",\"metadata\":null,\"college\":\"Louisiana-Monroe\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652384,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'9\\\"\",\"search_full_name\":\"treycaldwell\",\"birth_date\":\"1993-12-04\",\"espn_id\":2972550},\"4212\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033956\",\"first_name\":\"Marquel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596585350092,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"4212\",\"birth_city\":null,\"fantasy_data_id\":19058,\"years_exp\":3,\"hashtag\":\"#MarquelLee-NFL-FA-0\",\"search_first_name\":\"marquel\",\"rotowire_id\":11975,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1198,\"age\":24,\"full_name\":\"Marquel Lee\",\"sportradar_id\":\"99e9c388-c562-40d4-b225-e99c57cb55ba\",\"pandascore_id\":null,\"yahoo_id\":30281,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marquellee\",\"birth_date\":\"1995-10-21\",\"espn_id\":3039776},\"3625\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heurtelou\",\"depth_chart_position\":null,\"player_id\":\"3625\",\"birth_city\":null,\"fantasy_data_id\":18412,\"years_exp\":3,\"hashtag\":\"#CalvinHeurtelou-NFL-FA-72\",\"search_first_name\":\"calvin\",\"rotowire_id\":11419,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Calvin Heurtelou\",\"sportradar_id\":\"3e813ee1-567c-485f-8171-50e78e55c168\",\"pandascore_id\":null,\"yahoo_id\":29621,\"last_name\":\"Heurtelou\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"calvinheurtelou\",\"birth_date\":\"1993-04-10\",\"espn_id\":3123078},\"1295\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matthew\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"masifilo\",\"depth_chart_position\":null,\"player_id\":\"1295\",\"birth_city\":null,\"fantasy_data_id\":14763,\"years_exp\":8,\"hashtag\":\"#MatthewMasifilo-NFL-FA-64\",\"search_first_name\":\"matthew\",\"rotowire_id\":8583,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Matthew Masifilo\",\"sportradar_id\":\"1167e35d-97c5-4198-8825-97532d9e9242\",\"pandascore_id\":null,\"yahoo_id\":26257,\"last_name\":\"Masifilo\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Campbell (HI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'3\\\"\",\"search_full_name\":\"matthewmasifilo\",\"birth_date\":\"1989-10-01\",\"espn_id\":15132},\"4295\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wil\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"freeman\",\"depth_chart_position\":null,\"player_id\":\"4295\",\"birth_city\":null,\"fantasy_data_id\":19143,\"years_exp\":2,\"hashtag\":\"#WilFreeman-NFL-FA-79\",\"search_first_name\":\"wil\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Wil Freeman\",\"sportradar_id\":\"eaf85947-6a9f-4ff6-84f3-5b5e88ea2593\",\"pandascore_id\":null,\"yahoo_id\":30453,\"last_name\":\"Freeman\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'6\\\"\",\"search_full_name\":\"wilfreeman\",\"birth_date\":\"1994-02-07\",\"espn_id\":2972080},\"5758\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034814\",\"first_name\":\"Jackson\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1597189813027,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"5758\",\"birth_city\":null,\"fantasy_data_id\":20666,\"years_exp\":2,\"hashtag\":\"#JacksonPorter-NFL-FA-0\",\"search_first_name\":\"jackson\",\"rotowire_id\":13362,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1508,\"age\":25,\"full_name\":\"Jackson Porter\",\"sportradar_id\":\"9be29984-4ae2-4ed7-9cf3-7ec32e7be408\",\"pandascore_id\":null,\"yahoo_id\":31755,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jacksonporter\",\"birth_date\":\"1995-01-26\",\"espn_id\":3059832},\"4431\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033397\",\"first_name\":\"Damarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"travis\",\"depth_chart_position\":null,\"player_id\":\"4431\",\"birth_city\":null,\"fantasy_data_id\":19291,\"years_exp\":3,\"hashtag\":\"#DamariusTravis-NFL-FA-39\",\"search_first_name\":\"damarius\",\"rotowire_id\":12005,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Damarius Travis\",\"sportradar_id\":\"059715eb-7177-47ba-8083-90dca29f0380\",\"pandascore_id\":null,\"yahoo_id\":30673,\"last_name\":\"Travis\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"damariustravis\",\"birth_date\":\"1994-04-19\",\"espn_id\":2970724},\"6953\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Qaadir\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sheppard\",\"depth_chart_position\":null,\"player_id\":\"6953\",\"birth_city\":null,\"fantasy_data_id\":21905,\"years_exp\":0,\"hashtag\":\"#QaadirSheppard-NFL-FA-0\",\"search_first_name\":\"qaadir\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Qaadir Sheppard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sheppard\",\"metadata\":null,\"college\":\"Ole Miss\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"qaadirsheppard\",\"birth_date\":null,\"espn_id\":null},\"6887\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Larrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606347903618,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"murchison\",\"depth_chart_position\":\"DE\",\"player_id\":\"6887\",\"birth_city\":null,\"fantasy_data_id\":21880,\"years_exp\":0,\"hashtag\":\"#LarrellMurchison-NFL-TEN-91\",\"search_first_name\":\"larrell\",\"rotowire_id\":14718,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1806,\"age\":23,\"full_name\":\"Larrell Murchison\",\"sportradar_id\":\"ff0950aa-357f-47b4-b4dd-d4374413ffc1\",\"pandascore_id\":null,\"yahoo_id\":32844,\"last_name\":\"Murchison\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"North Carolina State\",\"high_school\":\"E. Bladen (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'3\\\"\",\"search_full_name\":\"larrellmurchison\",\"birth_date\":\"1997-04-24\",\"espn_id\":4240123},\"3544\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032989\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1527268801349,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"matthews\",\"depth_chart_position\":null,\"player_id\":\"3544\",\"birth_city\":null,\"fantasy_data_id\":18314,\"years_exp\":4,\"hashtag\":\"#MikeMatthews-NFL-FA-63\",\"search_first_name\":\"mike\",\"rotowire_id\":12362,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mike Matthews\",\"sportradar_id\":\"386e226c-faf0-4336-82f1-9e57d76ed617\",\"pandascore_id\":null,\"yahoo_id\":29669,\"last_name\":\"Matthews\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mikematthews\",\"birth_date\":\"1994-01-27\",\"espn_id\":2972298},\"5959\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035681\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601395815510,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"5959\",\"birth_city\":null,\"fantasy_data_id\":20748,\"years_exp\":1,\"hashtag\":\"#MikeEdwards-NFL-TB-32\",\"search_first_name\":\"mike\",\"rotowire_id\":13789,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1522,\"age\":24,\"full_name\":\"Mike Edwards\",\"sportradar_id\":\"b2da84c5-e51c-47d8-bccc-888f8caaa8ad\",\"pandascore_id\":null,\"yahoo_id\":31931,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Winton Woods (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"mikeedwards\",\"birth_date\":\"1996-05-18\",\"espn_id\":3155647},\"6057\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035223\",\"first_name\":\"Ulysees\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604517327678,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"gilbert\",\"depth_chart_position\":null,\"player_id\":\"6057\",\"birth_city\":null,\"fantasy_data_id\":20771,\"years_exp\":1,\"hashtag\":\"#UlyseesGilbert-NFL-PIT-54\",\"search_first_name\":\"ulysees\",\"rotowire_id\":13632,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1536,\"age\":23,\"full_name\":\"Ulysees Gilbert\",\"sportradar_id\":\"d1e8f343-9556-46f6-a238-2053a50b57d6\",\"pandascore_id\":null,\"yahoo_id\":32039,\"last_name\":\"Gilbert\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Akron\",\"high_school\":\"Trinity Catholic (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ulyseesgilbert\",\"birth_date\":\"1997-08-09\",\"espn_id\":3920867},\"3311\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032419\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584717007232,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"haeg\",\"depth_chart_position\":\"RT\",\"player_id\":\"3311\",\"birth_city\":null,\"fantasy_data_id\":18072,\"years_exp\":4,\"hashtag\":\"#JoeHaeg-NFL-TB-73\",\"search_first_name\":\"joe\",\"rotowire_id\":11049,\"rotoworld_id\":11452,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Joe Haeg\",\"sportradar_id\":\"6d9f5816-f0f7-4562-9db0-26b1eb487f68\",\"pandascore_id\":null,\"yahoo_id\":29389,\"last_name\":\"Haeg\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Brainerd (MN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joehaeg\",\"birth_date\":\"1993-03-11\",\"espn_id\":2573103},\"700\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"700\",\"birth_city\":null,\"fantasy_data_id\":12150,\"years_exp\":13,\"hashtag\":\"#JoshWilson-NFL-FA-30\",\"search_first_name\":\"josh\",\"rotowire_id\":5353,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Josh Wilson\",\"sportradar_id\":\"2a22fdb5-2636-4fd5-8afe-351787d4f8a3\",\"pandascore_id\":null,\"yahoo_id\":8309,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"DeMatha (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'9\\\"\",\"search_full_name\":\"joshwilson\",\"birth_date\":\"1985-03-11\",\"espn_id\":10499},\"5053\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034678\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576430419235,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cappa\",\"depth_chart_position\":\"RG\",\"player_id\":\"5053\",\"birth_city\":null,\"fantasy_data_id\":19908,\"years_exp\":2,\"hashtag\":\"#AlexCappa-NFL-TB-65\",\"search_first_name\":\"alex\",\"rotowire_id\":12851,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alex Cappa\",\"sportradar_id\":\"e1a79497-3e4b-4820-99a6-8ecbfd03995c\",\"pandascore_id\":null,\"yahoo_id\":31064,\"last_name\":\"Cappa\",\"metadata\":null,\"college\":\"Humboldt State\",\"high_school\":\"Dublin (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"alexcappa\",\"birth_date\":\"1995-01-27\",\"espn_id\":3059021},\"5534\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034248\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"5534\",\"birth_city\":null,\"fantasy_data_id\":20271,\"years_exp\":2,\"hashtag\":\"#ElijahCampbell-NFL-NYJ-43\",\"search_first_name\":\"elijah\",\"rotowire_id\":13139,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Elijah Campbell\",\"sportradar_id\":\"98166be9-2705-496d-ae1c-3bbcc2fe60bb\",\"pandascore_id\":null,\"yahoo_id\":31451,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"Northern Iowa\",\"high_school\":\"St. Paul Central (MN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"elijahcampbell\",\"birth_date\":\"1995-08-24\",\"espn_id\":3932901},\"2293\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Demitrius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bronson\",\"depth_chart_position\":null,\"player_id\":\"2293\",\"birth_city\":null,\"fantasy_data_id\":16732,\"years_exp\":1,\"hashtag\":\"#DemitriusBronson-NFL-FA-30\",\"search_first_name\":\"demitrius\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Demitrius Bronson\",\"sportradar_id\":\"4835061a-9b77-4b10-ad32-d33e75dca218\",\"pandascore_id\":null,\"yahoo_id\":28302,\"last_name\":\"Bronson\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'9\\\"\",\"search_full_name\":\"demitriusbronson\",\"birth_date\":\"1990-03-06\",\"espn_id\":17486},\"2879\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ferguson\",\"depth_chart_position\":null,\"player_id\":\"2879\",\"birth_city\":null,\"fantasy_data_id\":17347,\"years_exp\":0,\"hashtag\":\"#IsiahFerguson-NFL-FA-2\",\"search_first_name\":\"isiah\",\"rotowire_id\":10671,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Isiah Ferguson\",\"sportradar_id\":\"fa1179cc-f920-47c6-87e8-4a220ce34f5b\",\"pandascore_id\":null,\"yahoo_id\":28992,\"last_name\":\"Ferguson\",\"metadata\":null,\"college\":\"Arkansas-Pine Bluff\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":702995,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"isiahferguson\",\"birth_date\":\"1991-01-08\",\"espn_id\":2984816},\"1659\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030017\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pericak\",\"depth_chart_position\":null,\"player_id\":\"1659\",\"birth_city\":null,\"fantasy_data_id\":15430,\"years_exp\":7,\"hashtag\":\"#WillPericak-NFL-FA-68\",\"search_first_name\":\"will\",\"rotowire_id\":9583,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Will Pericak\",\"sportradar_id\":\"f1fdbd9f-484f-441d-9f50-35e972a50300\",\"pandascore_id\":null,\"yahoo_id\":27266,\"last_name\":\"Pericak\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"willpericak\",\"birth_date\":\"1989-12-30\",\"espn_id\":16412},\"4760\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033996\",\"first_name\":\"Kareem\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535838643444,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"are\",\"depth_chart_position\":null,\"player_id\":\"4760\",\"birth_city\":null,\"fantasy_data_id\":19678,\"years_exp\":3,\"hashtag\":\"#KareemAre-NFL-FA-68\",\"search_first_name\":\"kareem\",\"rotowire_id\":12296,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kareem Are\",\"sportradar_id\":\"84a504f4-417f-4af3-ac1c-6af958e10bdc\",\"pandascore_id\":null,\"yahoo_id\":30903,\"last_name\":\"Are\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kareemare\",\"birth_date\":\"1994-03-14\",\"espn_id\":3116592},\"6071\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"glenn\",\"depth_chart_position\":null,\"player_id\":\"6071\",\"birth_city\":null,\"fantasy_data_id\":20774,\"years_exp\":0,\"hashtag\":\"#CameronGlenn-NFL-FA-2\",\"search_first_name\":\"cameron\",\"rotowire_id\":14075,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Cameron Glenn\",\"sportradar_id\":\"12c06147-b51b-4821-8df0-c15a53920de2\",\"pandascore_id\":null,\"yahoo_id\":32322,\"last_name\":\"Glenn\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"cameronglenn\",\"birth_date\":\"1996-03-12\",\"espn_id\":3124096},\"4727\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"paige\",\"depth_chart_position\":null,\"player_id\":\"4727\",\"birth_city\":null,\"fantasy_data_id\":19638,\"years_exp\":2,\"hashtag\":\"#MitchellPaige-NFL-FA-83\",\"search_first_name\":\"mitchell\",\"rotowire_id\":12258,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Mitchell Paige\",\"sportradar_id\":\"0d48f293-b85e-46f7-9c43-7fd0779105ca\",\"pandascore_id\":null,\"yahoo_id\":30863,\"last_name\":\"Paige\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696104,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'8\\\"\",\"search_full_name\":\"mitchellpaige\",\"birth_date\":\"1993-07-19\",\"espn_id\":2979495},\"6600\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stone\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":null,\"player_id\":\"6600\",\"birth_city\":null,\"fantasy_data_id\":21533,\"years_exp\":1,\"hashtag\":\"#StoneWilson-NFL-FA-6\",\"search_first_name\":\"stone\",\"rotowire_id\":14284,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Stone Wilson\",\"sportradar_id\":\"d241054a-3c77-4ae7-8dd1-c58c32483b28\",\"pandascore_id\":null,\"yahoo_id\":32448,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"stonewilson\",\"birth_date\":\"1996-08-17\",\"espn_id\":3921630},\"6218\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034987\",\"first_name\":\"E.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"speed\",\"depth_chart_position\":\"SLB\",\"player_id\":\"6218\",\"birth_city\":null,\"fantasy_data_id\":21117,\"years_exp\":1,\"hashtag\":\"#EJSpeed-NFL-IND-45\",\"search_first_name\":\"ej\",\"rotowire_id\":13984,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1665,\"age\":25,\"full_name\":\"E.J. Speed\",\"sportradar_id\":\"e653effc-2bdc-4bfe-bf3d-272e783ae4c4\",\"pandascore_id\":null,\"yahoo_id\":31996,\"last_name\":\"Speed\",\"metadata\":null,\"college\":\"Tarleton State\",\"high_school\":\"North Crowley (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ejspeed\",\"birth_date\":\"1995-06-01\",\"espn_id\":3071353},\"2115\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031048\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535841684478,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sutton\",\"depth_chart_position\":null,\"player_id\":\"2115\",\"birth_city\":null,\"fantasy_data_id\":16444,\"years_exp\":6,\"hashtag\":\"#WillSutton-NFL-FA-66\",\"search_first_name\":\"will\",\"rotowire_id\":9270,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Will Sutton\",\"sportradar_id\":\"f154d374-d504-425c-a2ae-958f3adfed32\",\"pandascore_id\":null,\"yahoo_id\":27610,\"last_name\":\"Sutton\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Centennial (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'0\\\"\",\"search_full_name\":\"willsutton\",\"birth_date\":\"1991-10-03\",\"espn_id\":16738},\"6450\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035040\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1602973857442,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blough\",\"depth_chart_position\":\"QB\",\"player_id\":\"6450\",\"birth_city\":null,\"fantasy_data_id\":21277,\"years_exp\":1,\"hashtag\":\"#DavidBlough-NFL-DET-10\",\"search_first_name\":\"david\",\"rotowire_id\":13630,\"rotoworld_id\":14503,\"active\":true,\"search_rank\":517,\"age\":25,\"full_name\":\"David Blough\",\"sportradar_id\":\"a259d6b2-0238-4f22-b3aa-de7132cf9285\",\"pandascore_id\":null,\"yahoo_id\":32272,\"last_name\":\"Blough\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":\"Creekview (TX)\",\"depth_chart_order\":3,\"stats_id\":821297,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidblough\",\"birth_date\":\"1995-07-31\",\"espn_id\":3116188},\"2384\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032060\",\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1565389807336,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harold\",\"depth_chart_position\":null,\"player_id\":\"2384\",\"birth_city\":null,\"fantasy_data_id\":16840,\"years_exp\":5,\"hashtag\":\"#EliHarold-NFL-FA-59\",\"search_first_name\":\"eli\",\"rotowire_id\":10350,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Eli Harold\",\"sportradar_id\":\"b0ccc4f7-84a8-448b-bc7c-11e41d14ad09\",\"pandascore_id\":null,\"yahoo_id\":28467,\"last_name\":\"Harold\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Ocean Lakes (VA) \",\"depth_chart_order\":null,\"stats_id\":693998,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eliharold\",\"birth_date\":\"1994-01-20\",\"espn_id\":2979652},\"6371\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035483\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1595791812274,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"QB\",\"player_id\":\"6371\",\"birth_city\":null,\"fantasy_data_id\":21316,\"years_exp\":1,\"hashtag\":\"#DrewAnderson-NFL-FA-0\",\"search_first_name\":\"drew\",\"rotowire_id\":14040,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1714,\"age\":24,\"full_name\":\"Drew Anderson\",\"sportradar_id\":\"17c30647-39b9-46c2-9ba5-599f6007fc71\",\"pandascore_id\":null,\"yahoo_id\":32152,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Murray State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":945086,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'4\\\"\",\"search_full_name\":\"drewanderson\",\"birth_date\":\"1995-10-18\",\"espn_id\":4040826},\"5428\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ricky\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535476203701,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jeune\",\"depth_chart_position\":null,\"player_id\":\"5428\",\"birth_city\":null,\"fantasy_data_id\":20526,\"years_exp\":2,\"hashtag\":\"#RickyJeune-NFL-FA-2\",\"search_first_name\":\"ricky\",\"rotowire_id\":13096,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ricky Jeune\",\"sportradar_id\":\"e5395ca3-47d0-403b-84f5-41bfeba78e67\",\"pandascore_id\":null,\"yahoo_id\":31388,\"last_name\":\"Jeune\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748570,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rickyjeune\",\"birth_date\":\"1993-12-03\",\"espn_id\":3055908},\"1942\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lonnie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ballentine\",\"depth_chart_position\":null,\"player_id\":\"1942\",\"birth_city\":null,\"fantasy_data_id\":16187,\"years_exp\":6,\"hashtag\":\"#LonnieBallentine-NFL-FA-39\",\"search_first_name\":\"lonnie\",\"rotowire_id\":9791,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Lonnie Ballentine\",\"sportradar_id\":\"2304e6f9-9f21-4d7d-aa90-f69a440324ff\",\"pandascore_id\":null,\"yahoo_id\":27784,\"last_name\":\"Ballentine\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Southwind (TN)\",\"depth_chart_order\":null,\"stats_id\":550927,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lonnieballentine\",\"birth_date\":\"1993-04-23\",\"espn_id\":16911},\"1925\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031412\",\"first_name\":\"Stephon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606590934219,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"tuitt\",\"depth_chart_position\":null,\"player_id\":\"1925\",\"birth_city\":null,\"fantasy_data_id\":16159,\"years_exp\":6,\"hashtag\":\"#StephonTuitt-NFL-PIT-91\",\"search_first_name\":\"stephon\",\"rotowire_id\":9257,\"rotoworld_id\":9393,\"active\":true,\"search_rank\":788,\"age\":27,\"full_name\":\"Stephon Tuitt\",\"sportradar_id\":\"9758b9e2-5809-4a16-890f-e239f0808723\",\"pandascore_id\":null,\"yahoo_id\":27574,\"last_name\":\"Tuitt\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Notre Dame\",\"high_school\":\"Monroe (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'6\\\"\",\"search_full_name\":\"stephontuitt\",\"birth_date\":\"1993-05-23\",\"espn_id\":16798},\"167\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0019596\",\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606513527180,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brady\",\"depth_chart_position\":\"QB\",\"player_id\":\"167\",\"birth_city\":null,\"fantasy_data_id\":4314,\"years_exp\":20,\"hashtag\":\"#TomBrady-NFL-TB-12\",\"search_first_name\":\"tom\",\"rotowire_id\":1350,\"rotoworld_id\":1163,\"active\":true,\"search_rank\":85,\"age\":43,\"full_name\":\"Tom Brady\",\"sportradar_id\":\"41c44740-d0f6-44ab-8347-3b5d515e5ecf\",\"pandascore_id\":null,\"yahoo_id\":5228,\"last_name\":\"Brady\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":1,\"stats_id\":25347,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tombrady\",\"birth_date\":\"1977-08-03\",\"espn_id\":2330},\"1958\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031410\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605149708346,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"suafilo\",\"depth_chart_position\":null,\"player_id\":\"1958\",\"birth_city\":null,\"fantasy_data_id\":16212,\"years_exp\":6,\"hashtag\":\"#XavierSuaFilo-NFL-CIN-72\",\"search_first_name\":\"xavier\",\"rotowire_id\":9436,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Xavier Su'a-Filo\",\"sportradar_id\":\"746b7ba2-1ee3-4d42-8cf8-11bf4df581e1\",\"pandascore_id\":null,\"yahoo_id\":27561,\"last_name\":\"Su'a-Filo\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Timpview (UT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"xaviersuafilo\",\"birth_date\":\"1991-01-01\",\"espn_id\":16801},\"6143\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marvell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596671114549,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"tell\",\"depth_chart_position\":null,\"player_id\":\"6143\",\"birth_city\":null,\"fantasy_data_id\":20961,\"years_exp\":1,\"hashtag\":\"#MarvellTell-NFL-IND-39\",\"search_first_name\":\"marvell\",\"rotowire_id\":13764,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1606,\"age\":24,\"full_name\":\"Marvell Tell\",\"sportradar_id\":\"8d44783d-6149-4e6c-8a5f-5fead0ec7677\",\"pandascore_id\":null,\"yahoo_id\":31976,\"last_name\":\"Tell\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Encino Crespi (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marvelltell\",\"birth_date\":\"1996-08-02\",\"espn_id\":3912544},\"589\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027609\",\"first_name\":\"J'Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1572637848517,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"webb\",\"depth_chart_position\":null,\"player_id\":\"589\",\"birth_city\":null,\"fantasy_data_id\":11369,\"years_exp\":10,\"hashtag\":\"#JMarcusWebb-NFL-FA-61\",\"search_first_name\":\"jmarcus\",\"rotowire_id\":6794,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"J'Marcus Webb\",\"sportradar_id\":\"1ed30e79-c25f-4ce1-a17f-94a4bf6d3686\",\"pandascore_id\":null,\"yahoo_id\":24194,\"last_name\":\"Webb\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"North (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jmarcuswebb\",\"birth_date\":\"1988-08-08\",\"espn_id\":13483},\"1968\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lyn\",\"depth_chart_position\":null,\"player_id\":\"1968\",\"birth_city\":null,\"fantasy_data_id\":16229,\"years_exp\":0,\"hashtag\":\"#KeonLyn-NFL-FA-29\",\"search_first_name\":\"keon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Keon Lyn\",\"sportradar_id\":\"d3040fee-a9ea-4478-800d-31a5a5e1a5f5\",\"pandascore_id\":null,\"yahoo_id\":27907,\"last_name\":\"Lyn\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keonlyn\",\"birth_date\":\"1990-05-27\",\"espn_id\":17076},\"5199\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034297\",\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606266655038,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"pringle\",\"depth_chart_position\":\"LWR\",\"player_id\":\"5199\",\"birth_city\":null,\"fantasy_data_id\":20150,\"years_exp\":2,\"hashtag\":\"#ByronPringle-NFL-KC-13\",\"search_first_name\":\"byron\",\"rotowire_id\":12504,\"rotoworld_id\":null,\"active\":true,\"search_rank\":380,\"age\":27,\"full_name\":\"Byron Pringle\",\"sportradar_id\":\"9e55ec9a-ce18-4b4b-b69f-e2d82c219846\",\"pandascore_id\":null,\"yahoo_id\":31496,\"last_name\":\"Pringle\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Robinson (FL)\",\"depth_chart_order\":3,\"stats_id\":913826,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"byronpringle\",\"birth_date\":\"1993-11-17\",\"espn_id\":4036416},\"1072\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"still\",\"depth_chart_position\":null,\"player_id\":\"1072\",\"birth_city\":null,\"fantasy_data_id\":13880,\"years_exp\":7,\"hashtag\":\"#DevonStill-NFL-FA-62\",\"search_first_name\":\"devon\",\"rotowire_id\":8155,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Devon Still\",\"sportradar_id\":\"c2df71d8-5dab-4a83-82e9-18cd7f7a0190\",\"pandascore_id\":null,\"yahoo_id\":25763,\"last_name\":\"Still\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":406179,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'5\\\"\",\"search_full_name\":\"devonstill\",\"birth_date\":\"1989-07-11\",\"espn_id\":14963},\"5523\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034475\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"house\",\"depth_chart_position\":null,\"player_id\":\"5523\",\"birth_city\":null,\"fantasy_data_id\":20465,\"years_exp\":2,\"hashtag\":\"#WillHouse-NFL-FA-66\",\"search_first_name\":\"will\",\"rotowire_id\":13211,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Will House\",\"sportradar_id\":\"bb6dc980-e124-4548-9344-cd67803b146a\",\"pandascore_id\":null,\"yahoo_id\":31303,\"last_name\":\"House\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'3\\\"\",\"search_full_name\":\"willhouse\",\"birth_date\":\"1995-05-14\",\"espn_id\":4294246},\"2737\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crume\",\"depth_chart_position\":null,\"player_id\":\"2737\",\"birth_city\":null,\"fantasy_data_id\":17205,\"years_exp\":4,\"hashtag\":\"#EricCrume-NFL-FA-72\",\"search_first_name\":\"eric\",\"rotowire_id\":10794,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Eric Crume\",\"sportradar_id\":\"d6ba0f0b-812e-4a60-89b6-0fe5aecd9808\",\"pandascore_id\":null,\"yahoo_id\":28846,\"last_name\":\"Crume\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ericcrume\",\"birth_date\":\"1993-10-18\",\"espn_id\":2577606},\"1170\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029141\",\"first_name\":\"Alfred\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605481512440,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"morris\",\"depth_chart_position\":\"RB\",\"player_id\":\"1170\",\"birth_city\":null,\"fantasy_data_id\":14269,\"years_exp\":8,\"hashtag\":\"#AlfredMorris-NFL-NYG-41\",\"search_first_name\":\"alfred\",\"rotowire_id\":8089,\"rotoworld_id\":7618,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Alfred Morris\",\"sportradar_id\":\"bd10efdf-d8e7-4e23-ab1a-1e42fb65131b\",\"pandascore_id\":null,\"yahoo_id\":25883,\"last_name\":\"Morris\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Pine Forest (FL)\",\"depth_chart_order\":2,\"stats_id\":382365,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alfredmorris\",\"birth_date\":\"1988-12-12\",\"espn_id\":15009},\"51\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1515181501373,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fasano\",\"depth_chart_position\":null,\"player_id\":\"51\",\"birth_city\":null,\"fantasy_data_id\":1545,\"years_exp\":14,\"hashtag\":\"#AnthonyFasano-NFL-FA-80\",\"search_first_name\":\"anthony\",\"rotowire_id\":4755,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Anthony Fasano\",\"sportradar_id\":\"04eb8101-538f-44ac-ba09-ce30b5344fc2\",\"pandascore_id\":null,\"yahoo_id\":7802,\"last_name\":\"Fasano\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Verona (NJ)\",\"depth_chart_order\":null,\"stats_id\":217412,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"anthonyfasano\",\"birth_date\":\"1984-04-20\",\"espn_id\":9639},\"5775\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034862\",\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":null,\"player_id\":\"5775\",\"birth_city\":null,\"fantasy_data_id\":20680,\"years_exp\":2,\"hashtag\":\"#JaredMurphy-NFL-FA-9\",\"search_first_name\":\"jared\",\"rotowire_id\":13374,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jared Murphy\",\"sportradar_id\":\"500013c9-9913-4e17-b113-a88527a57522\",\"pandascore_id\":null,\"yahoo_id\":31772,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744057,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"179\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jaredmurphy\",\"birth_date\":\"1994-07-20\",\"espn_id\":3052494},\"CHI\":{\"team\":\"CHI\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"CHI\",\"last_name\":\"Bears\",\"injury_status\":null,\"first_name\":\"Chicago\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"2681\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redden\",\"depth_chart_position\":null,\"player_id\":\"2681\",\"birth_city\":null,\"fantasy_data_id\":17149,\"years_exp\":0,\"hashtag\":\"#TerryRedden-NFL-FA-62\",\"search_first_name\":\"terry\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Terry Redden\",\"sportradar_id\":\"69a521b9-7197-4bbe-b6be-50338f13f554\",\"pandascore_id\":null,\"yahoo_id\":28736,\"last_name\":\"Redden\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terryredden\",\"birth_date\":\"1993-08-23\",\"espn_id\":2575611},\"1857\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030946\",\"first_name\":\"Kerry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605589522180,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hyder\",\"depth_chart_position\":\"RDE\",\"player_id\":\"1857\",\"birth_city\":null,\"fantasy_data_id\":16067,\"years_exp\":6,\"hashtag\":\"#KerryHyder-NFL-SF-92\",\"search_first_name\":\"kerry\",\"rotowire_id\":9403,\"rotoworld_id\":9797,\"active\":true,\"search_rank\":775,\"age\":29,\"full_name\":\"Kerry Hyder\",\"sportradar_id\":\"e00a7f77-8320-4415-8c71-ba9c5d0240b8\",\"pandascore_id\":null,\"yahoo_id\":27862,\"last_name\":\"Hyder\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":\"Lyndon B. Johnson (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kerryhyder\",\"birth_date\":\"1991-05-02\",\"espn_id\":17068},\"3535\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Shaq\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"petteway\",\"depth_chart_position\":null,\"player_id\":\"3535\",\"birth_city\":null,\"fantasy_data_id\":18302,\"years_exp\":0,\"hashtag\":\"#ShaqPetteway-NFL-FA-56\",\"search_first_name\":\"shaq\",\"rotowire_id\":11486,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Shaq Petteway\",\"sportradar_id\":\"8ea98a52-5d1b-4682-b7e5-321c478daed4\",\"pandascore_id\":null,\"yahoo_id\":29526,\"last_name\":\"Petteway\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"shaqpetteway\",\"birth_date\":\"1993-02-02\",\"espn_id\":2581823},\"4309\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033240\",\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1576543226959,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orndoff\",\"depth_chart_position\":null,\"player_id\":\"4309\",\"birth_city\":null,\"fantasy_data_id\":19158,\"years_exp\":3,\"hashtag\":\"#ScottOrndoff-NFL-FA-83\",\"search_first_name\":\"scott\",\"rotowire_id\":11894,\"rotoworld_id\":12535,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Scott Orndoff\",\"sportradar_id\":\"355bf682-53b6-46c1-8052-eaf75c805278\",\"pandascore_id\":null,\"yahoo_id\":30388,\"last_name\":\"Orndoff\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733680,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"scottorndoff\",\"birth_date\":\"1993-12-16\",\"espn_id\":3045163},\"6447\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035046\",\"first_name\":\"Jarrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"owens\",\"depth_chart_position\":null,\"player_id\":\"6447\",\"birth_city\":null,\"fantasy_data_id\":21285,\"years_exp\":1,\"hashtag\":\"#JarrellOwens-NFL-FA-62\",\"search_first_name\":\"jarrell\",\"rotowire_id\":14141,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarrell Owens\",\"sportradar_id\":\"624218c7-a654-412f-9ebe-c574c4e74c0f\",\"pandascore_id\":null,\"yahoo_id\":32285,\"last_name\":\"Owens\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jarrellowens\",\"birth_date\":\"1994-10-11\",\"espn_id\":3122439},\"6380\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035101\",\"first_name\":\"Davion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1583882150554,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"6380\",\"birth_city\":null,\"fantasy_data_id\":21311,\"years_exp\":1,\"hashtag\":\"#DavionDavis-NFL-FA-0\",\"search_first_name\":\"davion\",\"rotowire_id\":14048,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1713,\"age\":23,\"full_name\":\"Davion Davis\",\"sportradar_id\":\"95f9c4fe-b5b0-4075-bdd8-f5b458373df6\",\"pandascore_id\":null,\"yahoo_id\":32141,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Sam Houston State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":891229,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"daviondavis\",\"birth_date\":\"1996-10-23\",\"espn_id\":3933568},\"7256\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hunter\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watts\",\"depth_chart_position\":null,\"player_id\":\"7256\",\"birth_city\":null,\"fantasy_data_id\":22255,\"years_exp\":0,\"hashtag\":\"#HunterWatts-NFL-FA-0\",\"search_first_name\":\"hunter\",\"rotowire_id\":14895,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Hunter Watts\",\"sportradar_id\":\"2112c2a7-9fef-4600-919f-14e9ff22a00a\",\"pandascore_id\":null,\"yahoo_id\":32931,\"last_name\":\"Watts\",\"metadata\":null,\"college\":\"Central Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'8\\\"\",\"search_full_name\":\"hunterwatts\",\"birth_date\":\"1997-02-24\",\"espn_id\":4032222},\"530\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027873\",\"first_name\":\"Jermaine\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1552323322959,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gresham\",\"depth_chart_position\":null,\"player_id\":\"530\",\"birth_city\":null,\"fantasy_data_id\":11026,\"years_exp\":10,\"hashtag\":\"#JermaineGresham-NFL-FA-84\",\"search_first_name\":\"jermaine\",\"rotowire_id\":6455,\"rotoworld_id\":5549,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jermaine Gresham\",\"sportradar_id\":\"b44773b9-af17-4d6c-a453-132e20849712\",\"pandascore_id\":null,\"yahoo_id\":23996,\"last_name\":\"Gresham\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Ardmore (OK)\",\"depth_chart_order\":null,\"stats_id\":333278,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jermainegresham\",\"birth_date\":\"1988-06-16\",\"espn_id\":13228},\"5298\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034281\",\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1590702663700,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bozeman\",\"depth_chart_position\":\"LG\",\"player_id\":\"5298\",\"birth_city\":null,\"fantasy_data_id\":20008,\"years_exp\":2,\"hashtag\":\"#BradleyBozeman-NFL-BAL-77\",\"search_first_name\":\"bradley\",\"rotowire_id\":12854,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bradley Bozeman\",\"sportradar_id\":\"20c1c6e8-509a-46a6-8edf-d402d56c20b2\",\"pandascore_id\":null,\"yahoo_id\":31185,\"last_name\":\"Bozeman\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Handley\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bradleybozeman\",\"birth_date\":\"1994-11-24\",\"espn_id\":3054842},\"7240\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1596769250019,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"futrell\",\"depth_chart_position\":null,\"player_id\":\"7240\",\"birth_city\":null,\"fantasy_data_id\":22241,\"years_exp\":0,\"hashtag\":\"#KendallFutrell-NFL-HOU-79\",\"search_first_name\":\"kendall\",\"rotowire_id\":14899,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kendall Futrell\",\"sportradar_id\":\"eec103be-3166-486c-a89a-bddf0c4b1397\",\"pandascore_id\":null,\"yahoo_id\":33205,\"last_name\":\"Futrell\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"South Central (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kendallfutrell\",\"birth_date\":\"1997-10-27\",\"espn_id\":null},\"4816\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"french\",\"depth_chart_position\":null,\"player_id\":\"4816\",\"birth_city\":null,\"fantasy_data_id\":18600,\"years_exp\":3,\"hashtag\":\"#ChristianFrench-NFL-FA-48\",\"search_first_name\":\"christian\",\"rotowire_id\":12412,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Christian French\",\"sportradar_id\":\"2d247baf-054e-4130-a884-b7579825f945\",\"pandascore_id\":null,\"yahoo_id\":29816,\"last_name\":\"French\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'5\\\"\",\"search_full_name\":\"christianfrench\",\"birth_date\":\"1992-08-18\",\"espn_id\":2576972},\"KC\":{\"team\":\"KC\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"KC\",\"last_name\":\"Chiefs\",\"injury_status\":null,\"first_name\":\"Kansas City\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"1139\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029275\",\"first_name\":\"Ladarius\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"1139\",\"birth_city\":null,\"fantasy_data_id\":14122,\"years_exp\":8,\"hashtag\":\"#LadariusGreen-NFL-FA-89\",\"search_first_name\":\"ladarius\",\"rotowire_id\":8113,\"rotoworld_id\":7568,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ladarius Green\",\"sportradar_id\":\"7ee060f9-4c69-4611-9d6d-3b139e06c82a\",\"pandascore_id\":null,\"yahoo_id\":25820,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Booker T. Washington (FL)\",\"depth_chart_order\":null,\"stats_id\":468704,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ladariusgreen\",\"birth_date\":\"1990-05-29\",\"espn_id\":14904},\"5509\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034579\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bosch\",\"depth_chart_position\":null,\"player_id\":\"5509\",\"birth_city\":null,\"fantasy_data_id\":20256,\"years_exp\":2,\"hashtag\":\"#KyleBosch-NFL-FA-61\",\"search_first_name\":\"kyle\",\"rotowire_id\":12659,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Kyle Bosch\",\"sportradar_id\":\"851670a6-111c-4678-b4b6-60c2f813cbe7\",\"pandascore_id\":null,\"yahoo_id\":31304,\"last_name\":\"Bosch\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylebosch\",\"birth_date\":\"1994-11-11\",\"espn_id\":3045217},\"5506\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034157\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"winbush\",\"depth_chart_position\":null,\"player_id\":\"5506\",\"birth_city\":null,\"fantasy_data_id\":20235,\"years_exp\":2,\"hashtag\":\"#AnthonyWinbush-NFL-FA-58\",\"search_first_name\":\"anthony\",\"rotowire_id\":12963,\"rotoworld_id\":13399,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Winbush\",\"sportradar_id\":\"87c4fed4-d126-4c71-96ec-54d5d8d717bb\",\"pandascore_id\":null,\"yahoo_id\":31355,\"last_name\":\"Winbush\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'1\\\"\",\"search_full_name\":\"anthonywinbush\",\"birth_date\":\"1994-12-18\",\"espn_id\":3042693},\"5474\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034130\",\"first_name\":\"Linden\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600831223759,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stephens\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5474\",\"birth_city\":null,\"fantasy_data_id\":20335,\"years_exp\":2,\"hashtag\":\"#LindenStephens-NFL-SEA-34\",\"search_first_name\":\"linden\",\"rotowire_id\":12699,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1454,\"age\":25,\"full_name\":\"Linden Stephens\",\"sportradar_id\":\"1163ba47-560b-4705-82be-69967c4fc096\",\"pandascore_id\":null,\"yahoo_id\":31415,\"last_name\":\"Stephens\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Euclid (OH)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'0\\\"\",\"search_full_name\":\"lindenstephens\",\"birth_date\":\"1995-03-21\",\"espn_id\":3125816},\"5907\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035271\",\"first_name\":\"Vosean\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599258654324,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":\"WLB\",\"player_id\":\"5907\",\"birth_city\":null,\"fantasy_data_id\":20846,\"years_exp\":1,\"hashtag\":\"#VoseanJoseph-NFL-FA-0\",\"search_first_name\":\"vosean\",\"rotowire_id\":13506,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1563,\"age\":22,\"full_name\":\"Vosean Joseph\",\"sportradar_id\":\"0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7\",\"pandascore_id\":null,\"yahoo_id\":31979,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"voseanjoseph\",\"birth_date\":\"1997-12-15\",\"espn_id\":4034945},\"4561\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alvin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":null,\"player_id\":\"4561\",\"birth_city\":null,\"fantasy_data_id\":19445,\"years_exp\":2,\"hashtag\":\"#AlvinHill-NFL-FA-42\",\"search_first_name\":\"alvin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alvin Hill\",\"sportradar_id\":\"ee039c9e-622f-4b57-b9ec-894069eefc91\",\"pandascore_id\":null,\"yahoo_id\":30543,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"alvinhill\",\"birth_date\":\"1994-01-28\",\"espn_id\":2976220},\"969\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028041\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1573002016541,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"acho\",\"depth_chart_position\":null,\"player_id\":\"969\",\"birth_city\":null,\"fantasy_data_id\":13400,\"years_exp\":9,\"hashtag\":\"#SamAcho-NFL-FA-96\",\"search_first_name\":\"sam\",\"rotowire_id\":7454,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Sam Acho\",\"sportradar_id\":\"94cbc2c8-07e4-4779-851b-b657b46a7920\",\"pandascore_id\":null,\"yahoo_id\":24890,\"last_name\":\"Acho\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"St. Mark's (TX)\",\"depth_chart_order\":null,\"stats_id\":399354,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"samacho\",\"birth_date\":\"1988-09-06\",\"espn_id\":14152},\"1198\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"conrath\",\"depth_chart_position\":null,\"player_id\":\"1198\",\"birth_city\":null,\"fantasy_data_id\":14402,\"years_exp\":3,\"hashtag\":\"#MattConrath-NFL-FA-71\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Conrath\",\"sportradar_id\":\"d228c128-0237-40d0-8f8e-d82fbb852bf5\",\"pandascore_id\":null,\"yahoo_id\":26344,\"last_name\":\"Conrath\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mattconrath\",\"birth_date\":\"1989-08-11\",\"espn_id\":15142},\"6755\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tavonn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"salter\",\"depth_chart_position\":null,\"player_id\":\"6755\",\"birth_city\":null,\"fantasy_data_id\":21699,\"years_exp\":1,\"hashtag\":\"#TavonnSalter-NFL-FA-86\",\"search_first_name\":\"tavonn\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tavonn Salter\",\"sportradar_id\":\"b4d7e21a-4a00-4a0a-85c4-0c394b4ad879\",\"pandascore_id\":null,\"yahoo_id\":32658,\"last_name\":\"Salter\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tavonnsalter\",\"birth_date\":\"1996-03-01\",\"espn_id\":null},\"6932\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Charlie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1600809322681,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taumoepeau\",\"depth_chart_position\":null,\"player_id\":\"6932\",\"birth_city\":null,\"fantasy_data_id\":21863,\"years_exp\":0,\"hashtag\":\"#CharlieTaumoepeau-NFL-SF-47\",\"search_first_name\":\"charlie\",\"rotowire_id\":14633,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Charlie Taumoepeau\",\"sportradar_id\":\"f0a9018a-4429-4c02-a4ed-04df77b4a389\",\"pandascore_id\":null,\"yahoo_id\":33096,\"last_name\":\"Taumoepeau\",\"metadata\":null,\"college\":\"Portland State\",\"high_school\":\"Federal Way (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"charlietaumoepeau\",\"birth_date\":\"1998-03-25\",\"espn_id\":3910630},\"2431\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032063\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606587933889,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"RB\",\"player_id\":\"2431\",\"birth_city\":null,\"fantasy_data_id\":16887,\"years_exp\":5,\"hashtag\":\"#MikeDavis-NFL-CAR-28\",\"search_first_name\":\"mike\",\"rotowire_id\":10083,\"rotoworld_id\":10378,\"active\":true,\"search_rank\":228,\"age\":27,\"full_name\":\"Mike Davis\",\"sportradar_id\":\"e311a7a2-eddb-439c-86b4-b1f1984186bc\",\"pandascore_id\":null,\"yahoo_id\":28514,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":1,\"stats_id\":694015,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"221\",\"height\":\"5'9\\\"\",\"search_full_name\":\"mikedavis\",\"birth_date\":\"1993-02-19\",\"espn_id\":3025433},\"5489\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034556\",\"first_name\":\"Kameron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1576869348765,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"FS\",\"player_id\":\"5489\",\"birth_city\":null,\"fantasy_data_id\":20127,\"years_exp\":2,\"hashtag\":\"#KameronKelly-NFL-FA-29\",\"search_first_name\":\"kameron\",\"rotowire_id\":12837,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kameron Kelly\",\"sportradar_id\":\"1ad00b25-912a-4e92-b585-906594f3020e\",\"pandascore_id\":null,\"yahoo_id\":31294,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kameronkelly\",\"birth_date\":\"1996-08-19\",\"espn_id\":3139926},\"2896\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keenan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lambert\",\"depth_chart_position\":null,\"player_id\":\"2896\",\"birth_city\":null,\"fantasy_data_id\":17364,\"years_exp\":5,\"hashtag\":\"#KeenanLambert-NFL-FA-38\",\"search_first_name\":\"keenan\",\"rotowire_id\":10666,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Keenan Lambert\",\"sportradar_id\":\"8f5311f9-d634-434f-a2f1-a9b817172c43\",\"pandascore_id\":null,\"yahoo_id\":28711,\"last_name\":\"Lambert\",\"metadata\":null,\"college\":\"Norfolk State\",\"high_school\":\"Maury\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'0\\\"\",\"search_full_name\":\"keenanlambert\",\"birth_date\":\"1992-02-28\",\"espn_id\":2507931},\"3379\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donavon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532551201848,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"3379\",\"birth_city\":null,\"fantasy_data_id\":18140,\"years_exp\":3,\"hashtag\":\"#DonavonClark-NFL-FA-63\",\"search_first_name\":\"donavon\",\"rotowire_id\":11240,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Donavon Clark\",\"sportradar_id\":\"32db6282-fecb-409a-8fa7-e898f62051e5\",\"pandascore_id\":null,\"yahoo_id\":29458,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"donavonclark\",\"birth_date\":\"1992-11-12\",\"espn_id\":2576258},\"3015\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Zack\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wagenmann\",\"depth_chart_position\":null,\"player_id\":\"3015\",\"birth_city\":null,\"fantasy_data_id\":17563,\"years_exp\":2,\"hashtag\":\"#ZackWagenmann-NFL-FA-49\",\"search_first_name\":\"zack\",\"rotowire_id\":10340,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Zack Wagenmann\",\"sportradar_id\":\"5a3b0ec0-2bbe-4d38-9ac6-50947c56c07a\",\"pandascore_id\":null,\"yahoo_id\":28814,\"last_name\":\"Wagenmann\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'3\\\"\",\"search_full_name\":\"zackwagenmann\",\"birth_date\":\"1992-08-08\",\"espn_id\":null},\"3696\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tracy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1525992601330,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"3696\",\"birth_city\":null,\"fantasy_data_id\":18499,\"years_exp\":3,\"hashtag\":\"#TracyHoward-NFL-FA-41\",\"search_first_name\":\"tracy\",\"rotowire_id\":11365,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tracy Howard\",\"sportradar_id\":\"2371d124-7c43-4af0-b893-0c1485345fa8\",\"pandascore_id\":null,\"yahoo_id\":29667,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691579,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tracyhoward\",\"birth_date\":\"1994-04-29\",\"espn_id\":2969958},\"1006\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027573\",\"first_name\":\"Mitch\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1552512058052,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"unrein\",\"depth_chart_position\":null,\"player_id\":\"1006\",\"birth_city\":null,\"fantasy_data_id\":13576,\"years_exp\":10,\"hashtag\":\"#MitchUnrein-NFL-FA-98\",\"search_first_name\":\"mitch\",\"rotowire_id\":7319,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Mitch Unrein\",\"sportradar_id\":\"d867198a-36ec-4a99-9037-a093216f99d8\",\"pandascore_id\":null,\"yahoo_id\":24451,\"last_name\":\"Unrein\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Eaton (CO)\",\"depth_chart_order\":null,\"stats_id\":323806,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mitchunrein\",\"birth_date\":\"1987-03-25\",\"espn_id\":13860},\"6011\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035289\",\"first_name\":\"Gardner\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606518927485,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"minshew\",\"depth_chart_position\":\"QB\",\"player_id\":\"6011\",\"birth_city\":null,\"fantasy_data_id\":20880,\"years_exp\":1,\"hashtag\":\"#GardnerMinshew-NFL-JAX-15\",\"search_first_name\":\"gardner\",\"rotowire_id\":13741,\"rotoworld_id\":14235,\"active\":true,\"search_rank\":161,\"age\":24,\"full_name\":\"Gardner Minshew\",\"sportradar_id\":\"dabb52c0-455b-48fe-996b-abf758120623\",\"pandascore_id\":null,\"yahoo_id\":32010,\"last_name\":\"Minshew\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Brandon (MS)\",\"depth_chart_order\":3,\"stats_id\":867303,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"gardnerminshew\",\"birth_date\":\"1996-05-16\",\"espn_id\":4038524},\"2056\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watt\",\"depth_chart_position\":null,\"player_id\":\"2056\",\"birth_city\":null,\"fantasy_data_id\":16354,\"years_exp\":6,\"hashtag\":\"#ChrisWatt-NFL-FA-65\",\"search_first_name\":\"chris\",\"rotowire_id\":9441,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Watt\",\"sportradar_id\":\"d79fc231-485f-40f8-9491-d4f6651ab6dd\",\"pandascore_id\":null,\"yahoo_id\":27617,\"last_name\":\"Watt\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Glenbard West (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chriswatt\",\"birth_date\":\"1990-08-17\",\"espn_id\":16754},\"6148\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035350\",\"first_name\":\"Preston\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605111905156,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6148\",\"birth_city\":null,\"fantasy_data_id\":20988,\"years_exp\":1,\"hashtag\":\"#PrestonWilliams-NFL-MIA-18\",\"search_first_name\":\"preston\",\"rotowire_id\":13445,\"rotoworld_id\":14171,\"active\":true,\"search_rank\":129,\"age\":23,\"full_name\":\"Preston Williams\",\"sportradar_id\":\"497758de-5f0b-481f-8c68-7aa5e21df322\",\"pandascore_id\":null,\"yahoo_id\":32447,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Lovejoy (GA)\",\"depth_chart_order\":3,\"stats_id\":877244,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'5\\\"\",\"search_full_name\":\"prestonwilliams\",\"birth_date\":\"1997-03-27\",\"espn_id\":3915399},\"3681\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032574\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1595956233901,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"pierce\",\"depth_chart_position\":null,\"player_id\":\"3681\",\"birth_city\":null,\"fantasy_data_id\":18481,\"years_exp\":4,\"hashtag\":\"#MichaelPierce-NFL-MIN-97\",\"search_first_name\":\"michael\",\"rotowire_id\":11313,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1083,\"age\":28,\"full_name\":\"Michael Pierce\",\"sportradar_id\":\"9aa0b292-f4ad-4517-83e9-717567edec19\",\"pandascore_id\":null,\"yahoo_id\":29759,\"last_name\":\"Pierce\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Daphne (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaelpierce\",\"birth_date\":\"1992-11-06\",\"espn_id\":2972144},\"4587\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033671\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1537318804263,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rios\",\"depth_chart_position\":null,\"player_id\":\"4587\",\"birth_city\":null,\"fantasy_data_id\":19474,\"years_exp\":3,\"hashtag\":\"#MarcusRios-NFL-FA-0\",\"search_first_name\":\"marcus\",\"rotowire_id\":12107,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marcus Rios\",\"sportradar_id\":\"980aabf5-3127-4b80-83e7-ac91327e848e\",\"pandascore_id\":null,\"yahoo_id\":30821,\"last_name\":\"Rios\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marcusrios\",\"birth_date\":\"1994-10-25\",\"espn_id\":2971592},\"7483\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Farrod\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693360026,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":\"TE\",\"player_id\":\"7483\",\"birth_city\":null,\"fantasy_data_id\":22458,\"years_exp\":0,\"hashtag\":\"#FarrodGreen-NFL-IND-41\",\"search_first_name\":\"farrod\",\"rotowire_id\":14908,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Farrod Green\",\"sportradar_id\":\"2c73720a-702f-4f39-9b54-c4da9d9f632c\",\"pandascore_id\":null,\"yahoo_id\":33214,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Wesson Attendance Center (MS)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"farrodgreen\",\"birth_date\":\"1997-06-10\",\"espn_id\":3930097},\"2504\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032138\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598240413670,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kilgo\",\"depth_chart_position\":null,\"player_id\":\"2504\",\"birth_city\":null,\"fantasy_data_id\":16963,\"years_exp\":5,\"hashtag\":\"#DariusKilgo-NFL-DEN-97\",\"search_first_name\":\"darius\",\"rotowire_id\":10485,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Darius Kilgo\",\"sportradar_id\":\"d3186202-386f-443e-92ad-37d8e41dca55\",\"pandascore_id\":null,\"yahoo_id\":28591,\"last_name\":\"Kilgo\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Maryland\",\"high_school\":\"Weddington (NC)\",\"depth_chart_order\":null,\"stats_id\":556194,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dariuskilgo\",\"birth_date\":\"1991-12-14\",\"espn_id\":2512544},\"2403\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032150\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577973338245,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2403\",\"birth_city\":null,\"fantasy_data_id\":16859,\"years_exp\":5,\"hashtag\":\"#StevenNelson-NFL-PIT-22\",\"search_first_name\":\"steven\",\"rotowire_id\":10419,\"rotoworld_id\":10495,\"active\":true,\"search_rank\":885,\"age\":27,\"full_name\":\"Steven Nelson\",\"sportradar_id\":\"c2e80cfc-33a8-43f4-a61e-57048244e4f8\",\"pandascore_id\":null,\"yahoo_id\":28486,\"last_name\":\"Nelson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Oregon State\",\"high_school\":\"Northside (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"stevennelson\",\"birth_date\":\"1993-01-22\",\"espn_id\":3045287},\"5279\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034206\",\"first_name\":\"Quadree\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596406519371,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"5279\",\"birth_city\":null,\"fantasy_data_id\":20341,\"years_exp\":2,\"hashtag\":\"#QuadreeHenderson-NFL-FA-0\",\"search_first_name\":\"quadree\",\"rotowire_id\":12461,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1457,\"age\":24,\"full_name\":\"Quadree Henderson\",\"sportradar_id\":\"e120460b-5596-49ba-a601-b3d9ef9f5883\",\"pandascore_id\":null,\"yahoo_id\":31486,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":879280,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'8\\\"\",\"search_full_name\":\"quadreehenderson\",\"birth_date\":\"1996-09-12\",\"espn_id\":3895789},\"7493\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scoota\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"LB\",\"player_id\":\"7493\",\"birth_city\":null,\"fantasy_data_id\":22468,\"years_exp\":0,\"hashtag\":\"#ScootaHarris-NFL-FA-0\",\"search_first_name\":\"scoota\",\"rotowire_id\":14553,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2020,\"age\":22,\"full_name\":\"Scoota Harris\",\"sportradar_id\":\"8ca83e4e-d3a5-4dcb-a917-e58e36b77721\",\"pandascore_id\":null,\"yahoo_id\":33321,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"scootaharris\",\"birth_date\":\"1997-11-01\",\"espn_id\":4035577},\"2616\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"crayton\",\"depth_chart_position\":null,\"player_id\":\"2616\",\"birth_city\":null,\"fantasy_data_id\":17084,\"years_exp\":0,\"hashtag\":\"#JeremyCrayton-NFL-FA-8\",\"search_first_name\":\"jeremy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jeremy Crayton\",\"sportradar_id\":\"2ec4eaa4-5195-49f0-951f-5f6859d30c15\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Crayton\",\"metadata\":null,\"college\":\"Southern Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jeremycrayton\",\"birth_date\":null,\"espn_id\":2471622},\"3134\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1549150517490,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nagy\",\"depth_chart_position\":null,\"player_id\":\"3134\",\"birth_city\":null,\"fantasy_data_id\":17888,\"years_exp\":0,\"hashtag\":\"#MattNagy-NFL-FA-0\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":11242,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Matt Nagy\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Nagy\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mattnagy\",\"birth_date\":null,\"espn_id\":null},\"4926\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schuessler\",\"depth_chart_position\":null,\"player_id\":\"4926\",\"birth_city\":null,\"fantasy_data_id\":19316,\"years_exp\":1,\"hashtag\":\"#NickSchuessler-NFL-PIT-0\",\"search_first_name\":\"nick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Nick Schuessler\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30389,\"last_name\":\"Schuessler\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickschuessler\",\"birth_date\":null,\"espn_id\":null},\"4948\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034752\",\"first_name\":\"Orlando\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564192856522,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"LT\",\"player_id\":\"4948\",\"birth_city\":null,\"fantasy_data_id\":19814,\"years_exp\":2,\"hashtag\":\"#OrlandoBrown-NFL-BAL-78\",\"search_first_name\":\"orlando\",\"rotowire_id\":12557,\"rotoworld_id\":13092,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Orlando Brown\",\"sportradar_id\":\"9d699fbc-ce11-4e42-a9b1-c94ecee8f613\",\"pandascore_id\":null,\"yahoo_id\":31053,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Peachtree Ridge (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'8\\\"\",\"search_full_name\":\"orlandobrown\",\"birth_date\":\"1996-05-02\",\"espn_id\":3116370},\"6469\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035083\",\"first_name\":\"Davis\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1559249457444,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"koppenhaver\",\"depth_chart_position\":null,\"player_id\":\"6469\",\"birth_city\":null,\"fantasy_data_id\":21420,\"years_exp\":1,\"hashtag\":\"#DavisKoppenhaver-NFL-GB-86\",\"search_first_name\":\"davis\",\"rotowire_id\":14109,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Davis Koppenhaver\",\"sportradar_id\":\"109cf714-fc59-468d-b02f-2db4e75a56a7\",\"pandascore_id\":null,\"yahoo_id\":32270,\"last_name\":\"Koppenhaver\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830826,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"daviskoppenhaver\",\"birth_date\":\"1996-01-24\",\"espn_id\":3116573},\"3870\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vi\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"teofilo\",\"depth_chart_position\":\"LG\",\"player_id\":\"3870\",\"birth_city\":null,\"fantasy_data_id\":18692,\"years_exp\":0,\"hashtag\":\"#ViTeofilo-NFL-FA-64\",\"search_first_name\":\"vi\",\"rotowire_id\":11491,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Vi Teofilo\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29994,\"last_name\":\"Teofilo\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"viteofilo\",\"birth_date\":\"1993-12-20\",\"espn_id\":null},\"6107\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034943\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599361558444,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6107\",\"birth_city\":null,\"fantasy_data_id\":21055,\"years_exp\":1,\"hashtag\":\"#EmmanuelButler-NFL-FA-0\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":13640,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1653,\"age\":24,\"full_name\":\"Emmanuel Butler\",\"sportradar_id\":\"4aea9720-d991-44be-ac3b-cd778af531a1\",\"pandascore_id\":null,\"yahoo_id\":32211,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Northern Arizona\",\"high_school\":null,\"depth_chart_order\":13,\"stats_id\":838603,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"emmanuelbutler\",\"birth_date\":\"1996-08-27\",\"espn_id\":3119471},\"3414\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sarao\",\"depth_chart_position\":null,\"player_id\":\"3414\",\"birth_city\":null,\"fantasy_data_id\":18176,\"years_exp\":0,\"hashtag\":\"#AnthonySarao-NFL-FA-47\",\"search_first_name\":\"anthony\",\"rotowire_id\":11663,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Anthony Sarao\",\"sportradar_id\":\"551c4d76-6a16-497b-ac3d-33157cdf7107\",\"pandascore_id\":null,\"yahoo_id\":29610,\"last_name\":\"Sarao\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonysarao\",\"birth_date\":\"1993-04-29\",\"espn_id\":2577263},\"6556\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035191\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1564528507329,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ollie\",\"depth_chart_position\":null,\"player_id\":\"6556\",\"birth_city\":null,\"fantasy_data_id\":21458,\"years_exp\":1,\"hashtag\":\"#RonaldOllie-NFL-FA-63\",\"search_first_name\":\"ronald\",\"rotowire_id\":14174,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ronald Ollie\",\"sportradar_id\":\"6f02ddea-9d5d-442f-ac40-c252aec881b5\",\"pandascore_id\":null,\"yahoo_id\":32385,\"last_name\":\"Ollie\",\"metadata\":null,\"college\":\"Nicholls State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ronaldollie\",\"birth_date\":\"1996-05-19\",\"espn_id\":4051591},\"5317\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034435\",\"first_name\":\"Keion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602432317127,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crossen\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5317\",\"birth_city\":null,\"fantasy_data_id\":20070,\"years_exp\":2,\"hashtag\":\"#KeionCrossen-NFL-HOU-35\",\"search_first_name\":\"keion\",\"rotowire_id\":13012,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1410,\"age\":24,\"full_name\":\"Keion Crossen\",\"sportradar_id\":\"ce0badde-28c3-45ce-a6f4-e2f82ef129f8\",\"pandascore_id\":null,\"yahoo_id\":31213,\"last_name\":\"Crossen\",\"metadata\":null,\"college\":\"Western Carolina\",\"high_school\":\"Northampton County (NC)\",\"depth_chart_order\":3,\"stats_id\":834491,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keioncrossen\",\"birth_date\":\"1996-04-17\",\"espn_id\":3117135},\"1102\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keshawn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1102\",\"birth_city\":null,\"fantasy_data_id\":13974,\"years_exp\":8,\"hashtag\":\"#KeshawnMartin-NFL-FA-17\",\"search_first_name\":\"keshawn\",\"rotowire_id\":8216,\"rotoworld_id\":7577,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Keshawn Martin\",\"sportradar_id\":\"3d916bd3-e7f2-4607-9ad7-32e04935fd86\",\"pandascore_id\":null,\"yahoo_id\":25831,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"John Glenn (MI)\",\"depth_chart_order\":null,\"stats_id\":464288,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"keshawnmartin\",\"birth_date\":\"1990-03-15\",\"espn_id\":14916},\"7486\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Frankie\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"griffin\",\"depth_chart_position\":null,\"player_id\":\"7486\",\"birth_city\":null,\"fantasy_data_id\":22460,\"years_exp\":0,\"hashtag\":\"#FrankieGriffin-NFL-FA-0\",\"search_first_name\":\"frankie\",\"rotowire_id\":14898,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Frankie Griffin\",\"sportradar_id\":\"0103e24e-4131-46a7-9a01-1e71dc89824a\",\"pandascore_id\":null,\"yahoo_id\":33226,\"last_name\":\"Griffin\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"frankiegriffin\",\"birth_date\":\"1995-10-23\",\"espn_id\":3128609},\"5680\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034539\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599259854380,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thompson\",\"depth_chart_position\":\"WLB\",\"player_id\":\"5680\",\"birth_city\":null,\"fantasy_data_id\":20605,\"years_exp\":2,\"hashtag\":\"#CoreyThompson-NFL-FA-0\",\"search_first_name\":\"corey\",\"rotowire_id\":13232,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1499,\"age\":26,\"full_name\":\"Corey Thompson\",\"sportradar_id\":\"00fab770-3336-436e-9901-89849769b7b2\",\"pandascore_id\":null,\"yahoo_id\":31597,\"last_name\":\"Thompson\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coreythompson\",\"birth_date\":\"1993-12-23\",\"espn_id\":2976524},\"903\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028664\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1604781309347,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"903\",\"birth_city\":null,\"fantasy_data_id\":13119,\"years_exp\":9,\"hashtag\":\"#ChrisJones-NFL-DAL-6\",\"search_first_name\":\"chris\",\"rotowire_id\":8021,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Chris Jones\",\"sportradar_id\":\"4d1f4c44-3666-4014-95fc-4b0013b6d9a5\",\"pandascore_id\":null,\"yahoo_id\":25431,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Carson-Newman\",\"high_school\":\"Coosa (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisjones\",\"birth_date\":\"1989-07-21\",\"espn_id\":14723},\"6263\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035170\",\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1567197955816,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wood\",\"depth_chart_position\":\"TE\",\"player_id\":\"6263\",\"birth_city\":null,\"fantasy_data_id\":21198,\"years_exp\":1,\"hashtag\":\"#TrevorWood-NFL-FA-88\",\"search_first_name\":\"trevor\",\"rotowire_id\":14188,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Trevor Wood\",\"sportradar_id\":\"324c013f-3e74-44cf-86a3-c45d7c674426\",\"pandascore_id\":null,\"yahoo_id\":32173,\"last_name\":\"Wood\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":838138,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"trevorwood\",\"birth_date\":\"1996-01-25\",\"espn_id\":3134013},\"3175\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033057\",\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606017910543,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"conklin\",\"depth_chart_position\":\"RT\",\"player_id\":\"3175\",\"birth_city\":null,\"fantasy_data_id\":17936,\"years_exp\":4,\"hashtag\":\"#JackConklin-NFL-CLE-78\",\"search_first_name\":\"jack\",\"rotowire_id\":10977,\"rotoworld_id\":11352,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jack Conklin\",\"sportradar_id\":\"0e7d7ddc-6515-4034-8857-5ab9da6b7c25\",\"pandascore_id\":null,\"yahoo_id\":29242,\"last_name\":\"Conklin\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Plainwell (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jackconklin\",\"birth_date\":\"1994-08-17\",\"espn_id\":2979534},\"7436\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mason\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605748843828,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kinsey\",\"depth_chart_position\":null,\"player_id\":\"7436\",\"birth_city\":null,\"fantasy_data_id\":22415,\"years_exp\":0,\"hashtag\":\"#MasonKinsey-NFL-NE-84\",\"search_first_name\":\"mason\",\"rotowire_id\":14858,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Mason Kinsey\",\"sportradar_id\":\"4d14a6cd-273f-4cf4-aac0-7fe041b6c650\",\"pandascore_id\":null,\"yahoo_id\":33351,\"last_name\":\"Kinsey\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Berry\",\"high_school\":\"Habersham Central (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"masonkinsey\",\"birth_date\":\"1998-08-29\",\"espn_id\":4057082},\"534\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carlton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mitchell\",\"depth_chart_position\":null,\"player_id\":\"534\",\"birth_city\":null,\"fantasy_data_id\":11049,\"years_exp\":4,\"hashtag\":\"#CarltonMitchell-NFL-FA-12\",\"search_first_name\":\"carlton\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Carlton Mitchell\",\"sportradar_id\":\"16a79580-e2e0-4166-a57e-25ec593e31bc\",\"pandascore_id\":null,\"yahoo_id\":24153,\"last_name\":\"Mitchell\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":381461,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"carltonmitchell\",\"birth_date\":\"1988-04-06\",\"espn_id\":13222},\"5529\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034259\",\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1563591319268,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harrison\",\"depth_chart_position\":null,\"player_id\":\"5529\",\"birth_city\":null,\"fantasy_data_id\":20118,\"years_exp\":2,\"hashtag\":\"#DesmondHarrison-NFL-FA-78\",\"search_first_name\":\"desmond\",\"rotowire_id\":12856,\"rotoworld_id\":13207,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Desmond Harrison\",\"sportradar_id\":\"9314e111-0b7e-4a75-8026-0cc5abe40543\",\"pandascore_id\":null,\"yahoo_id\":31456,\"last_name\":\"Harrison\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'6\\\"\",\"search_full_name\":\"desmondharrison\",\"birth_date\":\"1993-10-08\",\"espn_id\":3046693},\"2307\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032268\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605470112501,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mariota\",\"depth_chart_position\":\"QB\",\"player_id\":\"2307\",\"birth_city\":null,\"fantasy_data_id\":16763,\"years_exp\":5,\"hashtag\":\"#MarcusMariota-NFL-LV-8\",\"search_first_name\":\"marcus\",\"rotowire_id\":10074,\"rotoworld_id\":9385,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Marcus Mariota\",\"sportradar_id\":\"7c16c04c-04de-41f3-ac16-ad6a9435e3f7\",\"pandascore_id\":null,\"yahoo_id\":28390,\"last_name\":\"Mariota\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"St. Louis (HI)\",\"depth_chart_order\":2,\"stats_id\":607843,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marcusmariota\",\"birth_date\":\"1993-10-30\",\"espn_id\":2576980},\"2082\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031035\",\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605911703542,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"grimble\",\"depth_chart_position\":\"TE\",\"player_id\":\"2082\",\"birth_city\":null,\"fantasy_data_id\":16395,\"years_exp\":6,\"hashtag\":\"#XavierGrimble-NFL-BAL-85\",\"search_first_name\":\"xavier\",\"rotowire_id\":9283,\"rotoworld_id\":null,\"active\":true,\"search_rank\":815,\"age\":28,\"full_name\":\"Xavier Grimble\",\"sportradar_id\":\"c9557ff2-899f-41e3-8a0e-35ca874db9b2\",\"pandascore_id\":null,\"yahoo_id\":28184,\"last_name\":\"Grimble\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Bishop Gorman (NV)\",\"depth_chart_order\":4,\"stats_id\":555680,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'4\\\"\",\"search_full_name\":\"xaviergrimble\",\"birth_date\":\"1992-09-22\",\"espn_id\":17348},\"2831\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jude\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1519348501110,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adjeibarimah\",\"depth_chart_position\":null,\"player_id\":\"2831\",\"birth_city\":null,\"fantasy_data_id\":17299,\"years_exp\":5,\"hashtag\":\"#JudeAdjeiBarimah-NFL-FA-38\",\"search_first_name\":\"jude\",\"rotowire_id\":10610,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jude Adjei-Barimah\",\"sportradar_id\":\"3eb67cf0-5fe0-4e9e-b37a-b7a84ac6e763\",\"pandascore_id\":null,\"yahoo_id\":29162,\"last_name\":\"Adjei-Barimah\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":\"Northland (OH)\",\"depth_chart_order\":null,\"stats_id\":551547,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"judeadjeibarimah\",\"birth_date\":\"1992-07-21\",\"espn_id\":2515836},\"5634\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034607\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604536529072,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":null,\"player_id\":\"5634\",\"birth_city\":null,\"fantasy_data_id\":20262,\"years_exp\":2,\"hashtag\":\"#MichaelJoseph-NFL-CHI-30\",\"search_first_name\":\"michael\",\"rotowire_id\":12780,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Michael Joseph\",\"sportradar_id\":\"4ed347d1-170b-408e-b360-46a83557b56a\",\"pandascore_id\":null,\"yahoo_id\":31660,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"Dubuque\",\"high_school\":\"Oswego (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"michaeljoseph\",\"birth_date\":\"1995-03-19\",\"espn_id\":4294837},\"1980\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031191\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1560186040070,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bowanko\",\"depth_chart_position\":\"LG\",\"player_id\":\"1980\",\"birth_city\":null,\"fantasy_data_id\":16246,\"years_exp\":6,\"hashtag\":\"#LukeBowanko-NFL-FA-72\",\"search_first_name\":\"luke\",\"rotowire_id\":9772,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Luke Bowanko\",\"sportradar_id\":\"1818c219-44ae-4cd4-b8fe-5d93e596e936\",\"pandascore_id\":null,\"yahoo_id\":27733,\"last_name\":\"Bowanko\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Centreville (VA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"lukebowanko\",\"birth_date\":\"1991-06-13\",\"espn_id\":16830},\"2614\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032162\",\"first_name\":\"T.Y.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599953154011,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcgill\",\"depth_chart_position\":null,\"player_id\":\"2614\",\"birth_city\":null,\"fantasy_data_id\":17082,\"years_exp\":5,\"hashtag\":\"#TYMcGill-NFL-PHI-76\",\"search_first_name\":\"ty\",\"rotowire_id\":10660,\"rotoworld_id\":null,\"active\":true,\"search_rank\":915,\"age\":28,\"full_name\":\"T.Y. McGill\",\"sportradar_id\":\"07c51c65-489b-4bae-b997-f1a0f35deffe\",\"pandascore_id\":null,\"yahoo_id\":29114,\"last_name\":\"McGill\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Wayne County (GA)\",\"depth_chart_order\":null,\"stats_id\":600757,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tymcgill\",\"birth_date\":\"1992-11-23\",\"espn_id\":2577757},\"5291\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.t.\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"luper\",\"depth_chart_position\":null,\"player_id\":\"5291\",\"birth_city\":null,\"fantasy_data_id\":20374,\"years_exp\":0,\"hashtag\":\"#JtLuper-NFL-FA-2\",\"search_first_name\":\"jt\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"J.t. Luper\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Luper\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"175\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jtluper\",\"birth_date\":null,\"espn_id\":4294247},\"3420\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032550\",\"first_name\":\"Alonzo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567365636993,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"russell\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3420\",\"birth_city\":null,\"fantasy_data_id\":18184,\"years_exp\":4,\"hashtag\":\"#AlonzoRussell-NFL-FA-84\",\"search_first_name\":\"alonzo\",\"rotowire_id\":11165,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Alonzo Russell\",\"sportradar_id\":\"3de3804d-1b80-4f3d-81f9-bdf6d03561b0\",\"pandascore_id\":null,\"yahoo_id\":29710,\"last_name\":\"Russell\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":697261,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alonzorussell\",\"birth_date\":\"1992-09-29\",\"espn_id\":2980238},\"3899\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033115\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1536610502629,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"overbaugh\",\"depth_chart_position\":null,\"player_id\":\"3899\",\"birth_city\":null,\"fantasy_data_id\":18723,\"years_exp\":4,\"hashtag\":\"#JeffOverbaugh-NFL-FA-46\",\"search_first_name\":\"jeff\",\"rotowire_id\":11577,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jeff Overbaugh\",\"sportradar_id\":\"b1a65955-f70b-43c7-b262-b6781e404b4f\",\"pandascore_id\":null,\"yahoo_id\":30030,\"last_name\":\"Overbaugh\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeffoverbaugh\",\"birth_date\":\"1993-11-24\",\"espn_id\":2976115},\"3008\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031876\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":1573398945564,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wile\",\"depth_chart_position\":null,\"player_id\":\"3008\",\"birth_city\":null,\"fantasy_data_id\":17550,\"years_exp\":5,\"hashtag\":\"#MattWile-NFL-FA-0\",\"search_first_name\":\"matt\",\"rotowire_id\":10532,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Wile\",\"sportradar_id\":\"4278baf5-f774-4031-ab0f-12a9c7e43c45\",\"pandascore_id\":null,\"yahoo_id\":28738,\"last_name\":\"Wile\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":606093,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mattwile\",\"birth_date\":\"1992-06-20\",\"espn_id\":2576240},\"5013\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034353\",\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605607521948,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5013\",\"birth_city\":null,\"fantasy_data_id\":19864,\"years_exp\":2,\"hashtag\":\"#AnthonyMiller-NFL-CHI-17\",\"search_first_name\":\"anthony\",\"rotowire_id\":12763,\"rotoworld_id\":13152,\"active\":true,\"search_rank\":134,\"age\":26,\"full_name\":\"Anthony Miller\",\"sportradar_id\":\"bfaedf99-7618-4925-b362-90415c22a3b6\",\"pandascore_id\":null,\"yahoo_id\":31021,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Christian Brothers (TN)\",\"depth_chart_order\":1,\"stats_id\":749136,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anthonymiller\",\"birth_date\":\"1994-10-09\",\"espn_id\":3050487},\"7378\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604960728664,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"markway\",\"depth_chart_position\":null,\"player_id\":\"7378\",\"birth_city\":null,\"fantasy_data_id\":21770,\"years_exp\":0,\"hashtag\":\"#KyleMarkway-NFL-CLE-49\",\"search_first_name\":\"kyle\",\"rotowire_id\":14377,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kyle Markway\",\"sportradar_id\":\"3a337668-7978-4310-b17c-8e1279ba4a4d\",\"pandascore_id\":null,\"yahoo_id\":33044,\"last_name\":\"Markway\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"St. John Vianney (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kylemarkway\",\"birth_date\":\"1997-03-04\",\"espn_id\":3924367},\"4497\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stevens\",\"depth_chart_position\":null,\"player_id\":\"4497\",\"birth_city\":null,\"fantasy_data_id\":19367,\"years_exp\":2,\"hashtag\":\"#TonyStevens-NFL-FA-85\",\"search_first_name\":\"tony\",\"rotowire_id\":12176,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tony Stevens\",\"sportradar_id\":\"7047e3fe-b894-42c3-95c1-360b94bd042b\",\"pandascore_id\":null,\"yahoo_id\":30688,\"last_name\":\"Stevens\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746892,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tonystevens\",\"birth_date\":\"1995-03-14\",\"espn_id\":3051897},\"2814\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jay\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"2814\",\"birth_city\":null,\"fantasy_data_id\":17282,\"years_exp\":1,\"hashtag\":\"#JayHughes-NFL-PIT-35\",\"search_first_name\":\"jay\",\"rotowire_id\":14197,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jay Hughes\",\"sportradar_id\":\"98d553f7-8e45-49d6-b0d3-51eaceee14a6\",\"pandascore_id\":null,\"yahoo_id\":32168,\"last_name\":\"Hughes\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jayhughes\",\"birth_date\":\"1991-11-21\",\"espn_id\":2516298},\"6875\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600729817711,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simpson\",\"depth_chart_position\":\"LG\",\"player_id\":\"6875\",\"birth_city\":null,\"fantasy_data_id\":22031,\"years_exp\":0,\"hashtag\":\"#JohnSimpson-NFL-LV-76\",\"search_first_name\":\"john\",\"rotowire_id\":14626,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"John Simpson\",\"sportradar_id\":\"55fe8587-9190-4ad9-8517-fcb330341ed3\",\"pandascore_id\":null,\"yahoo_id\":32779,\"last_name\":\"Simpson\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Fort Dorchester (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnsimpson\",\"birth_date\":\"1997-08-19\",\"espn_id\":4035479},\"5579\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034300\",\"first_name\":\"D'Montre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wade\",\"depth_chart_position\":null,\"player_id\":\"5579\",\"birth_city\":null,\"fantasy_data_id\":20307,\"years_exp\":2,\"hashtag\":\"#DMontreWade-NFL-FA-40\",\"search_first_name\":\"dmontre\",\"rotowire_id\":12833,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"D'Montre Wade\",\"sportradar_id\":\"dde27047-788e-4b68-acfd-d0f241c6fba2\",\"pandascore_id\":null,\"yahoo_id\":31499,\"last_name\":\"Wade\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dmontrewade\",\"birth_date\":\"1994-12-22\",\"espn_id\":3050887},\"437\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Everette\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"437\",\"birth_city\":null,\"fantasy_data_id\":9141,\"years_exp\":4,\"hashtag\":\"#EveretteBrown-NFL-FA-51\",\"search_first_name\":\"everette\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Everette Brown\",\"sportradar_id\":\"a2e463d2-b3af-4d5f-90b4-fba34e23bb02\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'1\\\"\",\"search_full_name\":\"everettebrown\",\"birth_date\":\"1987-08-07\",\"espn_id\":12433},\"6273\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035540\",\"first_name\":\"P.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597796125694,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"6273\",\"birth_city\":null,\"fantasy_data_id\":21124,\"years_exp\":1,\"hashtag\":\"#PJJohnson-NFL-ARI-94\",\"search_first_name\":\"pj\",\"rotowire_id\":13573,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1670,\"age\":24,\"full_name\":\"P.J. Johnson\",\"sportradar_id\":\"344f10b9-b272-4f2f-8d1e-468f38f59f5e\",\"pandascore_id\":null,\"yahoo_id\":32061,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Luther Burbank (CA)\",\"depth_chart_order\":null,\"stats_id\":878242,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"pjjohnson\",\"birth_date\":\"1996-06-14\",\"espn_id\":3910660},\"5346\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034431\",\"first_name\":\"Zaire\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1600122008143,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":\"MLB\",\"player_id\":\"5346\",\"birth_city\":null,\"fantasy_data_id\":20024,\"years_exp\":2,\"hashtag\":\"#ZaireFranklin-NFL-IND-44\",\"search_first_name\":\"zaire\",\"rotowire_id\":13010,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1396,\"age\":24,\"full_name\":\"Zaire Franklin\",\"sportradar_id\":\"b0ad00bc-3b30-41ce-8892-f8105e0943e2\",\"pandascore_id\":null,\"yahoo_id\":31205,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":\"La Salle College (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"zairefranklin\",\"birth_date\":\"1996-07-02\",\"espn_id\":3124005},\"1397\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bogotay\",\"depth_chart_position\":null,\"player_id\":\"1397\",\"birth_city\":null,\"fantasy_data_id\":14929,\"years_exp\":1,\"hashtag\":\"#BrandonBogotay-NFL-FA-2\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brandon Bogotay\",\"sportradar_id\":\"2098e7f6-52ef-440a-8727-da1d40ddec2d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bogotay\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":512110,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandonbogotay\",\"birth_date\":\"1989-05-08\",\"espn_id\":15776},\"7511\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dwight\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bentley\",\"depth_chart_position\":null,\"player_id\":\"7511\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":8,\"hashtag\":\"#DwightBentley-NFL-FA-41\",\"search_first_name\":\"dwight\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":null,\"age\":31,\"full_name\":\"Dwight Bentley\",\"sportradar_id\":\"452ce742-efc5-4268-81e1-f462a1ed2064\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bentley\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Pahokee HS (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dwightbentley\",\"birth_date\":\"1989-05-16\",\"espn_id\":null},\"3069\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.R.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tavai\",\"depth_chart_position\":null,\"player_id\":\"3069\",\"birth_city\":null,\"fantasy_data_id\":17813,\"years_exp\":5,\"hashtag\":\"#JRTavai-NFL-FA-41\",\"search_first_name\":\"jr\",\"rotowire_id\":10377,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"J.R. Tavai\",\"sportradar_id\":\"37986809-f777-4950-9c2c-18cfeb85a99a\",\"pandascore_id\":null,\"yahoo_id\":29065,\"last_name\":\"Tavai\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Mira Costa\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jrtavai\",\"birth_date\":\"1993-09-23\",\"espn_id\":2577264},\"1402\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030553\",\"first_name\":\"Armonty\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1531875601581,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"1402\",\"birth_city\":null,\"fantasy_data_id\":14946,\"years_exp\":7,\"hashtag\":\"#ArmontyBryant-NFL-FA-95\",\"search_first_name\":\"armonty\",\"rotowire_id\":8951,\"rotoworld_id\":8616,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Armonty Bryant\",\"sportradar_id\":\"bed70009-eeb1-4806-b65e-3bfc54963cb7\",\"pandascore_id\":null,\"yahoo_id\":26840,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"East Central\",\"high_school\":\"Wichita Falls (TX)\",\"depth_chart_order\":null,\"stats_id\":694748,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"armontybryant\",\"birth_date\":\"1990-05-20\",\"espn_id\":16037},\"5387\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034069\",\"first_name\":\"Jerod\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fernandez\",\"depth_chart_position\":null,\"player_id\":\"5387\",\"birth_city\":null,\"fantasy_data_id\":20394,\"years_exp\":2,\"hashtag\":\"#JerodFernandez-NFL-FA-58\",\"search_first_name\":\"jerod\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jerod Fernandez\",\"sportradar_id\":\"708dfc0a-2a20-4551-99a7-8188fe4cf99f\",\"pandascore_id\":null,\"yahoo_id\":31398,\"last_name\":\"Fernandez\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jerodfernandez\",\"birth_date\":\"1994-05-26\",\"espn_id\":3051712},\"2356\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031556\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605570320603,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"orchard\",\"depth_chart_position\":\"JACK\",\"player_id\":\"2356\",\"birth_city\":null,\"fantasy_data_id\":16812,\"years_exp\":5,\"hashtag\":\"#NateOrchard-NFL-HOU-95\",\"search_first_name\":\"nate\",\"rotowire_id\":10317,\"rotoworld_id\":null,\"active\":true,\"search_rank\":873,\"age\":27,\"full_name\":\"Nate Orchard\",\"sportradar_id\":\"f024c29d-c4e6-4f23-b8e5-c7788bc87e47\",\"pandascore_id\":null,\"yahoo_id\":28439,\"last_name\":\"Orchard\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":\"Highland (UT)\",\"depth_chart_order\":2,\"stats_id\":591928,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nateorchard\",\"birth_date\":\"1993-01-05\",\"espn_id\":3052511},\"4495\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.R.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"4495\",\"birth_city\":null,\"fantasy_data_id\":19365,\"years_exp\":3,\"hashtag\":\"#JRNelson-NFL-FA-0\",\"search_first_name\":\"jr\",\"rotowire_id\":12400,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"J.R. Nelson\",\"sportradar_id\":\"2df5835d-67ad-4485-a5ee-39deb0c318ec\",\"pandascore_id\":null,\"yahoo_id\":30686,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Montana\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"176\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jrnelson\",\"birth_date\":\"1993-11-30\",\"espn_id\":2982928},\"3989\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gregg\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547582727212,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3989\",\"birth_city\":null,\"fantasy_data_id\":18826,\"years_exp\":0,\"hashtag\":\"#GreggWilliams-NFL-FA-0\",\"search_first_name\":\"gregg\",\"rotowire_id\":null,\"rotoworld_id\":8335,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Gregg Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Williams\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"greggwilliams\",\"birth_date\":null,\"espn_id\":null},\"7374\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tino\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602804942587,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ellis\",\"depth_chart_position\":null,\"player_id\":\"7374\",\"birth_city\":null,\"fantasy_data_id\":22362,\"years_exp\":0,\"hashtag\":\"#TinoEllis-NFL-MIA-39\",\"search_first_name\":\"tino\",\"rotowire_id\":14961,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1992,\"age\":23,\"full_name\":\"Tino Ellis\",\"sportradar_id\":\"6750320a-1b60-4bf5-aad6-7c605a88d5c6\",\"pandascore_id\":null,\"yahoo_id\":33111,\"last_name\":\"Ellis\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"DeMatha Catholic (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tinoellis\",\"birth_date\":\"1997-10-15\",\"espn_id\":4036214},\"1664\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"otten\",\"depth_chart_position\":null,\"player_id\":\"1664\",\"birth_city\":null,\"fantasy_data_id\":15446,\"years_exp\":1,\"hashtag\":\"#RyanOtten-NFL-FA-82\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan Otten\",\"sportradar_id\":\"82332b9d-afe3-4d93-abe7-7262e655933b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Otten\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":466557,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryanotten\",\"birth_date\":\"1990-04-07\",\"espn_id\":null},\"6571\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035349\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":null,\"player_id\":\"6571\",\"birth_city\":null,\"fantasy_data_id\":21267,\"years_exp\":1,\"hashtag\":\"#TreWatson-NFL-FA-44\",\"search_first_name\":\"tre\",\"rotowire_id\":13698,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tre Watson\",\"sportradar_id\":\"5bf874ec-3fae-412f-855d-257870e1c72f\",\"pandascore_id\":null,\"yahoo_id\":32446,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830688,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trewatson\",\"birth_date\":\"1996-07-05\",\"espn_id\":3115923},\"1723\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":null,\"player_id\":\"1723\",\"birth_city\":null,\"fantasy_data_id\":15649,\"years_exp\":2,\"hashtag\":\"#SeanBaker-NFL-FA-40\",\"search_first_name\":\"sean\",\"rotowire_id\":9233,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Sean Baker\",\"sportradar_id\":\"6c83cb09-f35e-474c-8a28-e7cb9caabbf1\",\"pandascore_id\":null,\"yahoo_id\":26325,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"seanbaker\",\"birth_date\":\"1988-11-06\",\"espn_id\":15406},\"2666\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"CJ\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":null,\"player_id\":\"2666\",\"birth_city\":null,\"fantasy_data_id\":17134,\"years_exp\":0,\"hashtag\":\"#CJRoberts-NFL-FA-29\",\"search_first_name\":\"cj\",\"rotowire_id\":10791,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"CJ Roberts\",\"sportradar_id\":\"d14b669f-8e64-4066-b149-af23f506f43d\",\"pandascore_id\":null,\"yahoo_id\":28811,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Colorado State-Pueblo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'0\\\"\",\"search_full_name\":\"cjroberts\",\"birth_date\":\"1991-09-08\",\"espn_id\":3059553},\"6996\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamycal\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605655825123,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hasty\",\"depth_chart_position\":\"RB\",\"player_id\":\"6996\",\"birth_city\":null,\"fantasy_data_id\":21765,\"years_exp\":0,\"hashtag\":\"#JamycalHasty-NFL-SF-38\",\"search_first_name\":\"jamycal\",\"rotowire_id\":14392,\"rotoworld_id\":null,\"active\":true,\"search_rank\":313,\"age\":24,\"full_name\":\"Jamycal Hasty\",\"sportradar_id\":\"c6c50d09-f14f-41c2-9eb3-87514f0121f6\",\"pandascore_id\":null,\"yahoo_id\":33199,\"last_name\":\"Hasty\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Longview (TX)\",\"depth_chart_order\":7,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jamycalhasty\",\"birth_date\":\"1996-09-12\",\"espn_id\":3928925},\"2902\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hutson\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mason\",\"depth_chart_position\":null,\"player_id\":\"2902\",\"birth_city\":null,\"fantasy_data_id\":17370,\"years_exp\":null,\"hashtag\":\"#HutsonMason-NFL-FA-0\",\"search_first_name\":\"hutson\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Hutson Mason\",\"sportradar_id\":\"7ef64258-92b6-4b23-9de4-d7c339c4a66e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mason\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":552987,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"hutsonmason\",\"birth_date\":null,\"espn_id\":null},\"922\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028339\",\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1601838340080,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"addison\",\"depth_chart_position\":\"RDE\",\"player_id\":\"922\",\"birth_city\":null,\"fantasy_data_id\":13181,\"years_exp\":9,\"hashtag\":\"#MarioAddison-NFL-BUF-97\",\"search_first_name\":\"mario\",\"rotowire_id\":7889,\"rotoworld_id\":6867,\"active\":true,\"search_rank\":642,\"age\":33,\"full_name\":\"Mario Addison\",\"sportradar_id\":\"ea2fda83-2817-4884-9e85-973263a4e069\",\"pandascore_id\":null,\"yahoo_id\":25147,\"last_name\":\"Addison\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":\"Tarrant (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marioaddison\",\"birth_date\":\"1987-09-06\",\"espn_id\":14320},\"6046\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034931\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dineenjr\",\"depth_chart_position\":null,\"player_id\":\"6046\",\"birth_city\":null,\"fantasy_data_id\":21068,\"years_exp\":1,\"hashtag\":\"#JoeDineenJr-NFL-FA-45\",\"search_first_name\":\"joe\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joe Dineen Jr.\",\"sportradar_id\":\"c66e5f22-10ad-41fb-9fde-52598df5fba7\",\"pandascore_id\":null,\"yahoo_id\":32190,\"last_name\":\"Dineen Jr.\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joedineenjr\",\"birth_date\":\"1996-03-26\",\"espn_id\":3133361},\"458\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"forsett\",\"depth_chart_position\":null,\"player_id\":\"458\",\"birth_city\":null,\"fantasy_data_id\":9369,\"years_exp\":12,\"hashtag\":\"#JustinForsett-NFL-FA-20\",\"search_first_name\":\"justin\",\"rotowire_id\":5669,\"rotoworld_id\":4819,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Justin Forsett\",\"sportradar_id\":\"5e5c57a2-f141-4fd7-848d-ea48e8d96a6e\",\"pandascore_id\":null,\"yahoo_id\":9010,\"last_name\":\"Forsett\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Mulberry (FL)\",\"depth_chart_order\":null,\"stats_id\":269215,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"5'8\\\"\",\"search_full_name\":\"justinforsett\",\"birth_date\":\"1985-10-14\",\"espn_id\":11467},\"5451\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034120\",\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mikell\",\"depth_chart_position\":null,\"player_id\":\"5451\",\"birth_city\":null,\"fantasy_data_id\":20558,\"years_exp\":2,\"hashtag\":\"#CurtisMikell-NFL-FA-33\",\"search_first_name\":\"curtis\",\"rotowire_id\":13107,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Curtis Mikell\",\"sportradar_id\":\"fcd3369e-e1e1-40da-afb6-d8296a1b89a3\",\"pandascore_id\":null,\"yahoo_id\":31409,\"last_name\":\"Mikell\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'8\\\"\",\"search_full_name\":\"curtismikell\",\"birth_date\":\"1995-11-25\",\"espn_id\":3123972},\"3081\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"whaley\",\"depth_chart_position\":null,\"player_id\":\"3081\",\"birth_city\":null,\"fantasy_data_id\":17831,\"years_exp\":0,\"hashtag\":\"#DougWhaley-NFL-FA-0\",\"search_first_name\":\"doug\",\"rotowire_id\":null,\"rotoworld_id\":9496,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Doug Whaley\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Whaley\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"dougwhaley\",\"birth_date\":null,\"espn_id\":null},\"7417\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599693372803,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lockhart\",\"depth_chart_position\":null,\"player_id\":\"7417\",\"birth_city\":null,\"fantasy_data_id\":22398,\"years_exp\":0,\"hashtag\":\"#JamesLockhart-NFL-FA-0\",\"search_first_name\":\"james\",\"rotowire_id\":15069,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2000,\"age\":24,\"full_name\":\"James Lockhart\",\"sportradar_id\":\"0cdc81d5-9afa-449b-9a22-b89d1051eb82\",\"pandascore_id\":null,\"yahoo_id\":32935,\"last_name\":\"Lockhart\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jameslockhart\",\"birth_date\":\"1996-09-12\",\"espn_id\":3917341},\"2794\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":null,\"player_id\":\"2794\",\"birth_city\":null,\"fantasy_data_id\":17262,\"years_exp\":1,\"hashtag\":\"#JoelRoss-NFL-FA-22\",\"search_first_name\":\"joel\",\"rotowire_id\":10792,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joel Ross\",\"sportradar_id\":\"b1231432-493f-4bd9-bb8a-18c1d49e273d\",\"pandascore_id\":null,\"yahoo_id\":29020,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"joelross\",\"birth_date\":\"1992-06-12\",\"espn_id\":2567729},\"3089\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jim\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tomsula\",\"depth_chart_position\":null,\"player_id\":\"3089\",\"birth_city\":null,\"fantasy_data_id\":17839,\"years_exp\":null,\"hashtag\":\"#JimTomsula-NFL-FA-0\",\"search_first_name\":\"jim\",\"rotowire_id\":null,\"rotoworld_id\":9323,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jim Tomsula\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tomsula\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jimtomsula\",\"birth_date\":null,\"espn_id\":null},\"4553\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033636\",\"first_name\":\"Dieugot\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1579040130571,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":null,\"player_id\":\"4553\",\"birth_city\":null,\"fantasy_data_id\":19434,\"years_exp\":3,\"hashtag\":\"#DieugotJoseph-NFL-FA-63\",\"search_first_name\":\"dieugot\",\"rotowire_id\":12439,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dieugot Joseph\",\"sportradar_id\":\"613aaf0a-ee53-431d-9bb9-aabc174fdab9\",\"pandascore_id\":null,\"yahoo_id\":30723,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dieugotjoseph\",\"birth_date\":\"1994-03-21\",\"espn_id\":2981862},\"2070\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030963\",\"first_name\":\"Dashaun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"2070\",\"birth_city\":null,\"fantasy_data_id\":16374,\"years_exp\":6,\"hashtag\":\"#DashaunPhillips-NFL-FA-35\",\"search_first_name\":\"dashaun\",\"rotowire_id\":10445,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dashaun Phillips\",\"sportradar_id\":\"c42dbe37-e779-489c-b5ad-c5749544a2bf\",\"pandascore_id\":null,\"yahoo_id\":28136,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Tarleton State\",\"high_school\":\"Duncanville (TX)\",\"depth_chart_order\":null,\"stats_id\":567249,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dashaunphillips\",\"birth_date\":\"1991-01-03\",\"espn_id\":17333},\"7087\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1602016507188,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":\"RB\",\"player_id\":\"7087\",\"birth_city\":null,\"fantasy_data_id\":21782,\"years_exp\":0,\"hashtag\":\"#JonathanWard-NFL-ARI-38\",\"search_first_name\":\"jonathan\",\"rotowire_id\":15106,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jonathan Ward\",\"sportradar_id\":\"1dc6b133-355f-451e-856f-d02839681578\",\"pandascore_id\":null,\"yahoo_id\":33088,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Bishop McNamara (IL)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonathanward\",\"birth_date\":\"1997-09-30\",\"espn_id\":4039274},\"1111\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029668\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1578006020626,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"luck\",\"depth_chart_position\":null,\"player_id\":\"1111\",\"birth_city\":null,\"fantasy_data_id\":14008,\"years_exp\":8,\"hashtag\":\"#AndrewLuck-NFL-FA-12\",\"search_first_name\":\"andrew\",\"rotowire_id\":7237,\"rotoworld_id\":6439,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Andrew Luck\",\"sportradar_id\":\"e3181493-6a2a-4e95-aa6f-3fc1ddeb7512\",\"pandascore_id\":null,\"yahoo_id\":25711,\"last_name\":\"Luck\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Stratford (TX)\",\"depth_chart_order\":null,\"stats_id\":461175,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"andrewluck\",\"birth_date\":\"1989-09-12\",\"espn_id\":14874},\"5399\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034209\",\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cothran\",\"depth_chart_position\":null,\"player_id\":\"5399\",\"birth_city\":null,\"fantasy_data_id\":20445,\"years_exp\":2,\"hashtag\":\"#CurtisCothran-NFL-FA-66\",\"search_first_name\":\"curtis\",\"rotowire_id\":12664,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Curtis Cothran\",\"sportradar_id\":\"69560a34-8601-4e88-a555-b99955ce28b4\",\"pandascore_id\":null,\"yahoo_id\":31229,\"last_name\":\"Cothran\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"289\",\"height\":\"6'5\\\"\",\"search_full_name\":\"curtiscothran\",\"birth_date\":\"1995-02-24\",\"espn_id\":3057975},\"680\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kory\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lichtensteiger\",\"depth_chart_position\":null,\"player_id\":\"680\",\"birth_city\":null,\"fantasy_data_id\":11957,\"years_exp\":12,\"hashtag\":\"#KoryLichtensteiger-NFL-FA-78\",\"search_first_name\":\"kory\",\"rotowire_id\":7173,\"rotoworld_id\":4816,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Kory Lichtensteiger\",\"sportradar_id\":\"7f7b2a5a-be4e-40d1-9cd0-9a7dd225a8c0\",\"pandascore_id\":null,\"yahoo_id\":8885,\"last_name\":\"Lichtensteiger\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":\"Crestview (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'2\\\"\",\"search_full_name\":\"korylichtensteiger\",\"birth_date\":\"1985-03-22\",\"espn_id\":11342},\"4629\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tueni\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lupeamanu\",\"depth_chart_position\":null,\"player_id\":\"4629\",\"birth_city\":null,\"fantasy_data_id\":19523,\"years_exp\":2,\"hashtag\":\"#TueniLupeamanu-NFL-FA-67\",\"search_first_name\":\"tueni\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tueni Lupeamanu\",\"sportradar_id\":\"83939282-d8b3-4298-9f09-adbcc35e6fe3\",\"pandascore_id\":null,\"yahoo_id\":30402,\"last_name\":\"Lupeamanu\",\"metadata\":null,\"college\":\"Idaho\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tuenilupeamanu\",\"birth_date\":\"1995-04-14\",\"espn_id\":3124899},\"3759\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gabe\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"3759\",\"birth_city\":null,\"fantasy_data_id\":18571,\"years_exp\":0,\"hashtag\":\"#GabeHughes-NFL-FA-89\",\"search_first_name\":\"gabe\",\"rotowire_id\":11594,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Gabe Hughes\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29830,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Florida Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'4\\\"\",\"search_full_name\":\"gabehughes\",\"birth_date\":\"1993-10-15\",\"espn_id\":null},\"3818\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032851\",\"first_name\":\"Pete\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1575418558294,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robertson\",\"depth_chart_position\":null,\"player_id\":\"3818\",\"birth_city\":null,\"fantasy_data_id\":18635,\"years_exp\":4,\"hashtag\":\"#PeteRobertson-NFL-FA-58\",\"search_first_name\":\"pete\",\"rotowire_id\":11563,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Pete Robertson\",\"sportradar_id\":\"ff813dc6-d3fb-4021-830c-736996df5863\",\"pandascore_id\":null,\"yahoo_id\":29937,\"last_name\":\"Robertson\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"peterobertson\",\"birth_date\":\"1992-12-12\",\"espn_id\":2577651},\"2604\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031996\",\"first_name\":\"Manasseh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566169837807,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garner\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2604\",\"birth_city\":null,\"fantasy_data_id\":17072,\"years_exp\":5,\"hashtag\":\"#ManassehGarner-NFL-FA-47\",\"search_first_name\":\"manasseh\",\"rotowire_id\":10826,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Manasseh Garner\",\"sportradar_id\":\"052641cc-ba5c-42dd-9022-0a9caa643096\",\"pandascore_id\":null,\"yahoo_id\":29095,\"last_name\":\"Garner\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":556265,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'2\\\"\",\"search_full_name\":\"manassehgarner\",\"birth_date\":\"1992-03-11\",\"espn_id\":2515609},\"2855\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"2855\",\"birth_city\":null,\"fantasy_data_id\":17323,\"years_exp\":0,\"hashtag\":\"#SteveMiller-NFL-FA-76\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Steve Miller\",\"sportradar_id\":\"36073f13-1b2c-4a7d-90d8-306d269935fd\",\"pandascore_id\":null,\"yahoo_id\":28734,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"stevemiller\",\"birth_date\":\"1992-02-28\",\"espn_id\":2576391},\"1221\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lindley\",\"depth_chart_position\":null,\"player_id\":\"1221\",\"birth_city\":null,\"fantasy_data_id\":14482,\"years_exp\":8,\"hashtag\":\"#RyanLindley-NFL-FA-3\",\"search_first_name\":\"ryan\",\"rotowire_id\":8068,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ryan Lindley\",\"sportradar_id\":\"a432666c-9ffd-4094-9071-a9d49d0e20c1\",\"pandascore_id\":null,\"yahoo_id\":25895,\"last_name\":\"Lindley\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"El Captain (CA)\",\"depth_chart_order\":null,\"stats_id\":401766,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ryanlindley\",\"birth_date\":\"1989-06-22\",\"espn_id\":14883},\"1267\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029709\",\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1578169529891,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nsekhe\",\"depth_chart_position\":\"RT\",\"player_id\":\"1267\",\"birth_city\":null,\"fantasy_data_id\":14705,\"years_exp\":8,\"hashtag\":\"#TyNsekhe-NFL-BUF-77\",\"search_first_name\":\"ty\",\"rotowire_id\":8560,\"rotoworld_id\":8299,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Ty Nsekhe\",\"sportradar_id\":\"d723ebff-0e9d-42f8-93d2-fe0c02252de8\",\"pandascore_id\":null,\"yahoo_id\":26578,\"last_name\":\"Nsekhe\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":\"James Bowie (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'8\\\"\",\"search_full_name\":\"tynsekhe\",\"birth_date\":\"1985-10-27\",\"espn_id\":15724},\"1280\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tim\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1511995201579,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"1280\",\"birth_city\":null,\"fantasy_data_id\":14727,\"years_exp\":9,\"hashtag\":\"#TimBarnes-NFL-FA-61\",\"search_first_name\":\"tim\",\"rotowire_id\":8559,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Tim Barnes\",\"sportradar_id\":\"a5ae791d-9fbe-4568-80ff-a4b813d8203d\",\"pandascore_id\":null,\"yahoo_id\":25353,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Pettis County (MO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"timbarnes\",\"birth_date\":\"1988-05-14\",\"espn_id\":14517},\"205\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vince\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilfork\",\"depth_chart_position\":null,\"player_id\":\"205\",\"birth_city\":null,\"fantasy_data_id\":5245,\"years_exp\":16,\"hashtag\":\"#VinceWilfork-NFL-FA-75\",\"search_first_name\":\"vince\",\"rotowire_id\":3770,\"rotoworld_id\":2779,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Vince Wilfork\",\"sportradar_id\":\"1dae3683-fa88-45af-bb18-34dcc09210c7\",\"pandascore_id\":null,\"yahoo_id\":6780,\"last_name\":\"Wilfork\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Santaluces (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'2\\\"\",\"search_full_name\":\"vincewilfork\",\"birth_date\":\"1981-11-04\",\"espn_id\":5546},\"6728\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jackson\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"TE\",\"player_id\":\"6728\",\"birth_city\":null,\"fantasy_data_id\":21650,\"years_exp\":1,\"hashtag\":\"#JacksonHarris-NFL-FA-47\",\"search_first_name\":\"jackson\",\"rotowire_id\":14339,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jackson Harris\",\"sportradar_id\":\"4c188c57-88e8-4bbb-a94e-ce00d45c7b86\",\"pandascore_id\":null,\"yahoo_id\":32640,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":871366,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jacksonharris\",\"birth_date\":null,\"espn_id\":3728307},\"934\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"934\",\"birth_city\":null,\"fantasy_data_id\":13249,\"years_exp\":5,\"hashtag\":\"#RyanTaylor-NFL-FA-86\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ryan Taylor\",\"sportradar_id\":\"651366dc-4297-484d-9e20-308c3bbca8b8\",\"pandascore_id\":null,\"yahoo_id\":25005,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":323380,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ryantaylor\",\"birth_date\":\"1987-11-16\",\"espn_id\":14213},\"2258\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031061\",\"first_name\":\"Dontae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603409149343,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"FS\",\"player_id\":\"2258\",\"birth_city\":null,\"fantasy_data_id\":16669,\"years_exp\":6,\"hashtag\":\"#DontaeJohnson-NFL-SF-27\",\"search_first_name\":\"dontae\",\"rotowire_id\":9301,\"rotoworld_id\":9661,\"active\":true,\"search_rank\":842,\"age\":28,\"full_name\":\"Dontae Johnson\",\"sportradar_id\":\"d5ba025d-5e9d-452d-8b86-f68a3bff5e22\",\"pandascore_id\":null,\"yahoo_id\":27657,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Pennington Prep (NJ)\",\"depth_chart_order\":3,\"stats_id\":557337,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dontaejohnson\",\"birth_date\":\"1991-12-01\",\"espn_id\":16893},\"5632\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034599\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"norris\",\"depth_chart_position\":null,\"player_id\":\"5632\",\"birth_city\":null,\"fantasy_data_id\":20260,\"years_exp\":2,\"hashtag\":\"#ElijahNorris-NFL-FA-43\",\"search_first_name\":\"elijah\",\"rotowire_id\":13240,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Elijah Norris\",\"sportradar_id\":\"335ba0c8-25e2-46a9-89b9-8d9eaafe11cf\",\"pandascore_id\":null,\"yahoo_id\":31663,\"last_name\":\"Norris\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"elijahnorris\",\"birth_date\":\"1994-07-04\",\"espn_id\":2974249},\"5851\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jachai\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577840431293,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"polite\",\"depth_chart_position\":\"SLB\",\"player_id\":\"5851\",\"birth_city\":null,\"fantasy_data_id\":20911,\"years_exp\":1,\"hashtag\":\"#JachaiPolite-NFL-LAR-95\",\"search_first_name\":\"jachai\",\"rotowire_id\":13493,\"rotoworld_id\":13966,\"active\":true,\"search_rank\":1589,\"age\":23,\"full_name\":\"Jachai Polite\",\"sportradar_id\":\"9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a\",\"pandascore_id\":null,\"yahoo_id\":31900,\"last_name\":\"Polite\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Mainland (FL)\",\"depth_chart_order\":2,\"stats_id\":922018,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jachaipolite\",\"birth_date\":\"1997-03-30\",\"espn_id\":4034967},\"6358\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035200\",\"first_name\":\"Kahlil\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567482354190,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6358\",\"birth_city\":null,\"fantasy_data_id\":21290,\"years_exp\":1,\"hashtag\":\"#KahlilLewis-NFL-FA-13\",\"search_first_name\":\"kahlil\",\"rotowire_id\":14008,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kahlil Lewis\",\"sportradar_id\":\"cd652b82-7ff4-4e19-84dd-c399a5de2f1d\",\"pandascore_id\":null,\"yahoo_id\":32115,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":866157,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kahlillewis\",\"birth_date\":\"1997-08-31\",\"espn_id\":3914158},\"3503\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032626\",\"first_name\":\"Geronimo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596396317420,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"allison\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3503\",\"birth_city\":null,\"fantasy_data_id\":18269,\"years_exp\":4,\"hashtag\":\"#GeronimoAllison-NFL-DET-18\",\"search_first_name\":\"geronimo\",\"rotowire_id\":10884,\"rotoworld_id\":11550,\"active\":true,\"search_rank\":1059,\"age\":26,\"full_name\":\"Geronimo Allison\",\"sportradar_id\":\"cadecca8-a102-43a5-9a0c-f7cef0b9a579\",\"pandascore_id\":null,\"yahoo_id\":29719,\"last_name\":\"Allison\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Spoto (FL)\",\"depth_chart_order\":3,\"stats_id\":821159,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'3\\\"\",\"search_full_name\":\"geronimoallison\",\"birth_date\":\"1994-01-18\",\"espn_id\":3115913},\"7257\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Douglas\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"colemaniii\",\"depth_chart_position\":null,\"player_id\":\"7257\",\"birth_city\":null,\"fantasy_data_id\":22256,\"years_exp\":0,\"hashtag\":\"#DouglasColemanIII-NFL-FA-0\",\"search_first_name\":\"douglas\",\"rotowire_id\":14896,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1959,\"age\":22,\"full_name\":\"Douglas Coleman III\",\"sportradar_id\":\"a7575137-d9b7-44a4-b127-31d2d46ea2f7\",\"pandascore_id\":null,\"yahoo_id\":32927,\"last_name\":\"Coleman III\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"douglascolemaniii\",\"birth_date\":\"1998-06-28\",\"espn_id\":4043132},\"6512\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035072\",\"first_name\":\"Doyin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jibowu\",\"depth_chart_position\":null,\"player_id\":\"6512\",\"birth_city\":null,\"fantasy_data_id\":21499,\"years_exp\":1,\"hashtag\":\"#DoyinJibowu-NFL-FA-43\",\"search_first_name\":\"doyin\",\"rotowire_id\":14138,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Doyin Jibowu\",\"sportradar_id\":\"274c50e9-73a3-45f9-b9dd-c08270f1132c\",\"pandascore_id\":null,\"yahoo_id\":32257,\"last_name\":\"Jibowu\",\"metadata\":null,\"college\":\"Fort Hays State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'1\\\"\",\"search_full_name\":\"doyinjibowu\",\"birth_date\":\"1996-07-01\",\"espn_id\":4076949},\"584\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clay\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1553546128635,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harbor\",\"depth_chart_position\":null,\"player_id\":\"584\",\"birth_city\":null,\"fantasy_data_id\":11317,\"years_exp\":10,\"hashtag\":\"#ClayHarbor-NFL-FA-80\",\"search_first_name\":\"clay\",\"rotowire_id\":6687,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Clay Harbor\",\"sportradar_id\":\"d579af24-53b8-42bf-b767-c50944afb7ec\",\"pandascore_id\":null,\"yahoo_id\":24100,\"last_name\":\"Harbor\",\"metadata\":null,\"college\":\"Missouri State\",\"high_school\":\"Dwight (IL)\",\"depth_chart_order\":null,\"stats_id\":293037,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"clayharbor\",\"birth_date\":\"1987-07-02\",\"espn_id\":13376},\"5594\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034324\",\"first_name\":\"Jamar\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1563743727436,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"summers\",\"depth_chart_position\":null,\"player_id\":\"5594\",\"birth_city\":null,\"fantasy_data_id\":20348,\"years_exp\":2,\"hashtag\":\"#JamarSummers-NFL-FA-21\",\"search_first_name\":\"jamar\",\"rotowire_id\":12750,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jamar Summers\",\"sportradar_id\":\"cdd83d70-ee27-42d0-a6f0-7db2c2ec6995\",\"pandascore_id\":null,\"yahoo_id\":31530,\"last_name\":\"Summers\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jamarsummers\",\"birth_date\":\"1995-06-14\",\"espn_id\":3125916},\"995\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028445\",\"first_name\":\"Ron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1578330037366,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":null,\"player_id\":\"995\",\"birth_city\":null,\"fantasy_data_id\":13476,\"years_exp\":9,\"hashtag\":\"#RonParker-NFL-FA-38\",\"search_first_name\":\"ron\",\"rotowire_id\":7817,\"rotoworld_id\":6811,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Ron Parker\",\"sportradar_id\":\"e9a0297a-0b34-4c55-af1f-ca113d672195\",\"pandascore_id\":null,\"yahoo_id\":25090,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"Newberry\",\"high_school\":\"Beaufort (SC)\",\"depth_chart_order\":null,\"stats_id\":512802,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ronparker\",\"birth_date\":\"1987-08-17\",\"espn_id\":14297},\"1354\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jelani\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1514066101393,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"1354\",\"birth_city\":null,\"fantasy_data_id\":14873,\"years_exp\":7,\"hashtag\":\"#JelaniJenkins-NFL-FA-44\",\"search_first_name\":\"jelani\",\"rotowire_id\":8716,\"rotoworld_id\":8530,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jelani Jenkins\",\"sportradar_id\":\"9f1a0910-090f-4f28-bb5e-0593e6f0a3bc\",\"pandascore_id\":null,\"yahoo_id\":26727,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Our Lady of Good Counsel (MD)\",\"depth_chart_order\":null,\"stats_id\":508880,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jelanijenkins\",\"birth_date\":\"1992-03-13\",\"espn_id\":15985},\"4945\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"everett\",\"depth_chart_position\":null,\"player_id\":\"4945\",\"birth_city\":null,\"fantasy_data_id\":17786,\"years_exp\":0,\"hashtag\":\"#AntoineEverett-NFL-FA-67\",\"search_first_name\":\"antoine\",\"rotowire_id\":10299,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Antoine Everett\",\"sportradar_id\":\"64395a40-7417-4a93-ba0e-63c286bca656\",\"pandascore_id\":null,\"yahoo_id\":29130,\"last_name\":\"Everett\",\"metadata\":null,\"college\":\"McNeese State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'2\\\"\",\"search_full_name\":\"antoineeverett\",\"birth_date\":\"1991-11-16\",\"espn_id\":null},\"4831\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034038\",\"first_name\":\"Justice\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1547612131589,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"liggins\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4831\",\"birth_city\":null,\"fantasy_data_id\":19735,\"years_exp\":3,\"hashtag\":\"#JusticeLiggins-NFL-FA-82\",\"search_first_name\":\"justice\",\"rotowire_id\":12512,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Justice Liggins\",\"sportradar_id\":\"53dfba71-2344-4b6c-bcfe-a7de9b6f2bf8\",\"pandascore_id\":null,\"yahoo_id\":30942,\"last_name\":\"Liggins\",\"metadata\":null,\"college\":\"Stephen F. Austin\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":752831,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"justiceliggins\",\"birth_date\":\"1994-12-14\",\"espn_id\":3050824},\"6341\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dexter\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"6341\",\"birth_city\":null,\"fantasy_data_id\":21248,\"years_exp\":0,\"hashtag\":\"#DexterWright-NFL-FA-14\",\"search_first_name\":\"dexter\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dexter Wright\",\"sportradar_id\":\"86f8b64e-7865-47ea-a531-a00f7f50657a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dexterwright\",\"birth_date\":null,\"espn_id\":3116725},\"5702\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034702\",\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"afriyie\",\"depth_chart_position\":null,\"player_id\":\"5702\",\"birth_city\":null,\"fantasy_data_id\":20627,\"years_exp\":2,\"hashtag\":\"#PatAfriyie-NFL-FA-96\",\"search_first_name\":\"pat\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Pat Afriyie\",\"sportradar_id\":\"bd252716-1674-437f-8d91-fdd10cf4ebf1\",\"pandascore_id\":null,\"yahoo_id\":31702,\"last_name\":\"Afriyie\",\"metadata\":null,\"college\":\"Colgate\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"patafriyie\",\"birth_date\":\"1996-07-20\",\"espn_id\":3119152},\"4078\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033878\",\"first_name\":\"Adoree'\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606519228504,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4078\",\"birth_city\":null,\"fantasy_data_id\":18924,\"years_exp\":3,\"hashtag\":\"#AdoreeJackson-NFL-TEN-25\",\"search_first_name\":\"adoree\",\"rotowire_id\":12018,\"rotoworld_id\":12155,\"active\":true,\"search_rank\":1130,\"age\":25,\"full_name\":\"Adoree' Jackson\",\"sportradar_id\":\"6db40c6e-7d09-486e-b80d-1d8008547250\",\"pandascore_id\":null,\"yahoo_id\":30131,\"last_name\":\"Jackson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Southern California\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"adoreejackson\",\"birth_date\":\"1995-09-18\",\"espn_id\":3120347},\"1435\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dax\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swanson\",\"depth_chart_position\":null,\"player_id\":\"1435\",\"birth_city\":null,\"fantasy_data_id\":15003,\"years_exp\":1,\"hashtag\":\"#DaxSwanson-NFL-FA-28\",\"search_first_name\":\"dax\",\"rotowire_id\":8884,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dax Swanson\",\"sportradar_id\":\"be8c840b-0aef-4c0d-8860-267c68422061\",\"pandascore_id\":null,\"yahoo_id\":27127,\"last_name\":\"Swanson\",\"metadata\":null,\"college\":\"Sam Houston State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"daxswanson\",\"birth_date\":\"1990-03-21\",\"espn_id\":16304},\"7180\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Scottie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1598055311195,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dill\",\"depth_chart_position\":null,\"player_id\":\"7180\",\"birth_city\":null,\"fantasy_data_id\":22182,\"years_exp\":0,\"hashtag\":\"#ScottieDill-NFL-FA-0\",\"search_first_name\":\"scottie\",\"rotowire_id\":14996,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Scottie Dill\",\"sportradar_id\":\"bb1cdf44-a1e8-48dd-ad65-72bb4d0e7668\",\"pandascore_id\":null,\"yahoo_id\":33049,\"last_name\":\"Dill\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'7\\\"\",\"search_full_name\":\"scottiedill\",\"birth_date\":null,\"espn_id\":3916165},\"2680\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arthur\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miley\",\"depth_chart_position\":null,\"player_id\":\"2680\",\"birth_city\":null,\"fantasy_data_id\":17148,\"years_exp\":4,\"hashtag\":\"#ArthurMiley-NFL-FA-55\",\"search_first_name\":\"arthur\",\"rotowire_id\":10527,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Arthur Miley\",\"sportradar_id\":\"cf104217-100c-4fcc-8a44-e03ef16cfdb3\",\"pandascore_id\":null,\"yahoo_id\":28733,\"last_name\":\"Miley\",\"metadata\":null,\"college\":\"Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"arthurmiley\",\"birth_date\":\"1993-03-03\",\"espn_id\":2568870},\"4706\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Denzel\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4706\",\"birth_city\":null,\"fantasy_data_id\":19613,\"years_exp\":2,\"hashtag\":\"#DenzelJohnson-NFL-FA-42\",\"search_first_name\":\"denzel\",\"rotowire_id\":12651,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Denzel Johnson\",\"sportradar_id\":\"e8d6194b-00b6-40de-b844-e7e99310b345\",\"pandascore_id\":null,\"yahoo_id\":30750,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'0\\\"\",\"search_full_name\":\"denzeljohnson\",\"birth_date\":\"1994-09-16\",\"espn_id\":3040009},\"6823\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1600014057670,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"eason\",\"depth_chart_position\":\"QB\",\"player_id\":\"6823\",\"birth_city\":null,\"fantasy_data_id\":21820,\"years_exp\":0,\"hashtag\":\"#JacobEason-NFL-IND-9\",\"search_first_name\":\"jacob\",\"rotowire_id\":14401,\"rotoworld_id\":null,\"active\":true,\"search_rank\":512,\"age\":23,\"full_name\":\"Jacob Eason\",\"sportradar_id\":\"060d05d6-aa31-4571-9f91-12c8050b6aaf\",\"pandascore_id\":null,\"yahoo_id\":32792,\"last_name\":\"Eason\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Lake Stevens (WA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jacobeason\",\"birth_date\":\"1997-11-17\",\"espn_id\":4035003},\"5272\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034450\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1599430860948,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"joseph\",\"depth_chart_position\":\"K\",\"player_id\":\"5272\",\"birth_city\":null,\"fantasy_data_id\":20325,\"years_exp\":2,\"hashtag\":\"#GregJoseph-NFL-TB-1\",\"search_first_name\":\"greg\",\"rotowire_id\":13266,\"rotoworld_id\":13705,\"active\":true,\"search_rank\":555,\"age\":26,\"full_name\":\"Greg Joseph\",\"sportradar_id\":\"a2aab80d-174c-4639-beac-e2b70bb3625f\",\"pandascore_id\":null,\"yahoo_id\":31538,\"last_name\":\"Joseph\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"American Heritage (FL)\",\"depth_chart_order\":2,\"stats_id\":833701,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gregjoseph\",\"birth_date\":\"1994-08-04\",\"espn_id\":3975763},\"2979\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarrod\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"west\",\"depth_chart_position\":null,\"player_id\":\"2979\",\"birth_city\":null,\"fantasy_data_id\":17477,\"years_exp\":1,\"hashtag\":\"#JarrodWest-NFL-FA-14\",\"search_first_name\":\"jarrod\",\"rotowire_id\":11675,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jarrod West\",\"sportradar_id\":\"3ba4884e-5d68-4502-84c5-bcb95dee6be3\",\"pandascore_id\":null,\"yahoo_id\":29175,\"last_name\":\"West\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":558713,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jarrodwest\",\"birth_date\":\"1992-05-14\",\"espn_id\":2515260},\"3857\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rigsbee\",\"depth_chart_position\":null,\"player_id\":\"3857\",\"birth_city\":null,\"fantasy_data_id\":18678,\"years_exp\":0,\"hashtag\":\"#JordanRigsbee-NFL-FA-72\",\"search_first_name\":\"jordan\",\"rotowire_id\":11337,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Rigsbee\",\"sportradar_id\":\"63d8c302-a072-4214-8905-7aab1dda2129\",\"pandascore_id\":null,\"yahoo_id\":29991,\"last_name\":\"Rigsbee\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordanrigsbee\",\"birth_date\":\"1993-03-05\",\"espn_id\":2576883},\"7218\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599693359847,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sutton\",\"depth_chart_position\":null,\"player_id\":\"7218\",\"birth_city\":null,\"fantasy_data_id\":22220,\"years_exp\":0,\"hashtag\":\"#CamSutton-NFL-FA-0\",\"search_first_name\":\"cam\",\"rotowire_id\":14847,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Cam Sutton\",\"sportradar_id\":\"20278c55-eadd-4256-a4c3-0f03c29fa476\",\"pandascore_id\":null,\"yahoo_id\":33154,\"last_name\":\"Sutton\",\"metadata\":null,\"college\":\"Fresno State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'6\\\"\",\"search_full_name\":\"camsutton\",\"birth_date\":null,\"espn_id\":4373904},\"4929\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ahmad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fulwood\",\"depth_chart_position\":null,\"player_id\":\"4929\",\"birth_city\":null,\"fantasy_data_id\":19371,\"years_exp\":1,\"hashtag\":\"#AhmadFulwood-NFL-NO-0\",\"search_first_name\":\"ahmad\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ahmad Fulwood\",\"sportradar_id\":\"d1b2a6dd-837b-4dfa-b7cc-72244668748c\",\"pandascore_id\":null,\"yahoo_id\":30411,\"last_name\":\"Fulwood\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748609,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ahmadfulwood\",\"birth_date\":null,\"espn_id\":null},\"2779\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031829\",\"first_name\":\"Ladarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1534548640657,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gunter\",\"depth_chart_position\":null,\"player_id\":\"2779\",\"birth_city\":null,\"fantasy_data_id\":17247,\"years_exp\":5,\"hashtag\":\"#LadariusGunter-NFL-FA-23\",\"search_first_name\":\"ladarius\",\"rotowire_id\":10396,\"rotoworld_id\":10727,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ladarius Gunter\",\"sportradar_id\":\"972d6237-1b3b-4b6b-a789-b5ca8391ed90\",\"pandascore_id\":null,\"yahoo_id\":28925,\"last_name\":\"Gunter\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Jefferson Davis High School (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ladariusgunter\",\"birth_date\":\"1992-05-13\",\"espn_id\":2969954},\"4767\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dane\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"4767\",\"birth_city\":null,\"fantasy_data_id\":19645,\"years_exp\":2,\"hashtag\":\"#DaneEvans-NFL-FA-7\",\"search_first_name\":\"dane\",\"rotowire_id\":12304,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dane Evans\",\"sportradar_id\":\"2c66f936-9389-43ee-80b1-b438b6deb5a9\",\"pandascore_id\":null,\"yahoo_id\":30907,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652144,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"daneevans\",\"birth_date\":\"1993-11-19\",\"espn_id\":2972420},\"719\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027265\",\"first_name\":\"Victor\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534865713156,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cruz\",\"depth_chart_position\":null,\"player_id\":\"719\",\"birth_city\":null,\"fantasy_data_id\":12246,\"years_exp\":10,\"hashtag\":\"#VictorCruz-NFL-FA-80\",\"search_first_name\":\"victor\",\"rotowire_id\":6836,\"rotoworld_id\":6313,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Victor Cruz\",\"sportradar_id\":\"51545c6d-3132-4477-8f51-df5c29ed971e\",\"pandascore_id\":null,\"yahoo_id\":24553,\"last_name\":\"Cruz\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":\"Paterson Catholic (NJ)\",\"depth_chart_order\":null,\"stats_id\":248251,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"victorcruz\",\"birth_date\":\"1986-11-11\",\"espn_id\":13553},\"4740\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"William\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"likelyiii\",\"depth_chart_position\":null,\"player_id\":\"4740\",\"birth_city\":null,\"fantasy_data_id\":19658,\"years_exp\":2,\"hashtag\":\"#WilliamLikelyIII-NFL-FA-33\",\"search_first_name\":\"william\",\"rotowire_id\":12025,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"William Likely III\",\"sportradar_id\":\"7ee61ce7-daa2-4f03-bbe0-6aef75bae1af\",\"pandascore_id\":null,\"yahoo_id\":30890,\"last_name\":\"Likely III\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'7\\\"\",\"search_full_name\":\"williamlikelyiii\",\"birth_date\":\"1994-11-30\",\"espn_id\":3044776},\"4483\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"letuligasenoa\",\"depth_chart_position\":null,\"player_id\":\"4483\",\"birth_city\":null,\"fantasy_data_id\":19351,\"years_exp\":2,\"hashtag\":\"#JoshLetuligasenoa-NFL-FA-59\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Josh Letuligasenoa\",\"sportradar_id\":\"aa75035e-eade-448c-b57d-5c0db1040b45\",\"pandascore_id\":null,\"yahoo_id\":30694,\"last_name\":\"Letuligasenoa\",\"metadata\":null,\"college\":\"Cal Poly\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshletuligasenoa\",\"birth_date\":\"1994-02-02\",\"espn_id\":2967751},\"3931\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033161\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1527048001857,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3931\",\"birth_city\":null,\"fantasy_data_id\":18761,\"years_exp\":4,\"hashtag\":\"#IsaiahWilliams-NFL-FA-63\",\"search_first_name\":\"isaiah\",\"rotowire_id\":11634,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Isaiah Williams\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30058,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaiahwilliams\",\"birth_date\":\"1993-05-05\",\"espn_id\":2574302},\"5519\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034488\",\"first_name\":\"Tavierre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600085460244,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"CB\",\"player_id\":\"5519\",\"birth_city\":null,\"fantasy_data_id\":20217,\"years_exp\":2,\"hashtag\":\"#TavierreThomas-NFL-CLE-20\",\"search_first_name\":\"tavierre\",\"rotowire_id\":13219,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1435,\"age\":24,\"full_name\":\"Tavierre Thomas\",\"sportradar_id\":\"0a63f97d-9cc2-44d0-b65a-ac2e78db73f9\",\"pandascore_id\":null,\"yahoo_id\":31321,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":\"Allen Academy (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tavierrethomas\",\"birth_date\":\"1996-03-11\",\"espn_id\":4334405},\"3713\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deonte\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gibson\",\"depth_chart_position\":null,\"player_id\":\"3713\",\"birth_city\":null,\"fantasy_data_id\":18520,\"years_exp\":0,\"hashtag\":\"#DeonteGibson-NFL-FA-0\",\"search_first_name\":\"deonte\",\"rotowire_id\":11336,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Deonte Gibson\",\"sportradar_id\":\"e8a37445-5b5f-4d56-8ba9-6dee3d8ba737\",\"pandascore_id\":null,\"yahoo_id\":29779,\"last_name\":\"Gibson\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"271\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deontegibson\",\"birth_date\":\"1993-02-22\",\"espn_id\":2582086},\"1147\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1524253501324,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hanna\",\"depth_chart_position\":null,\"player_id\":\"1147\",\"birth_city\":null,\"fantasy_data_id\":14152,\"years_exp\":8,\"hashtag\":\"#JamesHanna-NFL-FA-84\",\"search_first_name\":\"james\",\"rotowire_id\":8227,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"James Hanna\",\"sportradar_id\":\"d688ad2a-0c21-4749-99c6-4e6da588e6a8\",\"pandascore_id\":null,\"yahoo_id\":25896,\"last_name\":\"Hanna\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Flower Mound (TX)\",\"depth_chart_order\":null,\"stats_id\":447735,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jameshanna\",\"birth_date\":\"1989-07-14\",\"espn_id\":14906},\"2149\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030629\",\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1595790913148,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"vujnovich\",\"depth_chart_position\":\"LG\",\"player_id\":\"2149\",\"birth_city\":null,\"fantasy_data_id\":16494,\"years_exp\":6,\"hashtag\":\"#JeremyVujnovich-NFL-FA-0\",\"search_first_name\":\"jeremy\",\"rotowire_id\":10087,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jeremy Vujnovich\",\"sportradar_id\":\"78009cf5-8d12-42cc-9a99-34137cd0b420\",\"pandascore_id\":null,\"yahoo_id\":27508,\"last_name\":\"Vujnovich\",\"metadata\":null,\"college\":\"Louisiana College\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jeremyvujnovich\",\"birth_date\":\"1990-10-12\",\"espn_id\":16686},\"5252\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034535\",\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1534190709177,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lawry\",\"depth_chart_position\":null,\"player_id\":\"5252\",\"birth_city\":null,\"fantasy_data_id\":20263,\"years_exp\":2,\"hashtag\":\"#RayLawry-NFL-FA-38\",\"search_first_name\":\"ray\",\"rotowire_id\":12904,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ray Lawry\",\"sportradar_id\":\"29b6ebb9-1d22-464b-b7a1-e132057e0f28\",\"pandascore_id\":null,\"yahoo_id\":31564,\"last_name\":\"Lawry\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835032,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"5'9\\\"\",\"search_full_name\":\"raylawry\",\"birth_date\":\"1996-09-10\",\"espn_id\":3123212},\"1156\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"greenwood\",\"depth_chart_position\":null,\"player_id\":\"1156\",\"birth_city\":null,\"fantasy_data_id\":14211,\"years_exp\":3,\"hashtag\":\"#ChrisGreenwood-NFL-FA-39\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chris Greenwood\",\"sportradar_id\":\"94a6dec4-9837-4bbc-a3e7-8de297f8d8ea\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Greenwood\",\"metadata\":null,\"college\":\"Albion - MI\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chrisgreenwood\",\"birth_date\":\"1989-07-10\",\"espn_id\":15100},\"1439\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0030071\",\"first_name\":\"Hugh\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1564605320519,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thornton\",\"depth_chart_position\":null,\"player_id\":\"1439\",\"birth_city\":null,\"fantasy_data_id\":15008,\"years_exp\":7,\"hashtag\":\"#HughThornton-NFL-FA-69\",\"search_first_name\":\"hugh\",\"rotowire_id\":8705,\"rotoworld_id\":8518,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Hugh Thornton\",\"sportradar_id\":\"2db8a161-7b3a-4a3c-b915-c5be5b3cd39b\",\"pandascore_id\":null,\"yahoo_id\":26709,\"last_name\":\"Thornton\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Oberlin (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hughthornton\",\"birth_date\":\"1991-06-28\",\"espn_id\":15869},\"786\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jaiquawn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jarrett\",\"depth_chart_position\":null,\"player_id\":\"786\",\"birth_city\":null,\"fantasy_data_id\":12704,\"years_exp\":9,\"hashtag\":\"#JaiquawnJarrett-NFL-FA-37\",\"search_first_name\":\"jaiquawn\",\"rotowire_id\":7526,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jaiquawn Jarrett\",\"sportradar_id\":\"432afa02-d07c-4dc0-a06a-41a22ec4a350\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jarrett\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Fort Hamilton (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaiquawnjarrett\",\"birth_date\":\"1989-09-21\",\"espn_id\":14043},\"3967\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wade\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1578339337570,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"3967\",\"birth_city\":null,\"fantasy_data_id\":18801,\"years_exp\":0,\"hashtag\":\"#WadePhillips-NFL-FA-0\",\"search_first_name\":\"wade\",\"rotowire_id\":null,\"rotoworld_id\":9303,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Wade Phillips\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"wadephillips\",\"birth_date\":null,\"espn_id\":null},\"7225\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606018810190,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"orr\",\"depth_chart_position\":\"MLB\",\"player_id\":\"7225\",\"birth_city\":null,\"fantasy_data_id\":22227,\"years_exp\":0,\"hashtag\":\"#ChrisOrr-NFL-CAR-45\",\"search_first_name\":\"chris\",\"rotowire_id\":14561,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1953,\"age\":23,\"full_name\":\"Chris Orr\",\"sportradar_id\":\"ff73bcec-6f22-4a26-a179-56f7556dc5a2\",\"pandascore_id\":null,\"yahoo_id\":33147,\"last_name\":\"Orr\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisorr\",\"birth_date\":\"1997-06-17\",\"espn_id\":3917673},\"1963\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030649\",\"first_name\":\"Jonotthan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599280855252,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harrison\",\"depth_chart_position\":null,\"player_id\":\"1963\",\"birth_city\":null,\"fantasy_data_id\":16221,\"years_exp\":6,\"hashtag\":\"#JonotthanHarrison-NFL-BUF-78\",\"search_first_name\":\"jonotthan\",\"rotowire_id\":9664,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jonotthan Harrison\",\"sportradar_id\":\"90609ea7-4f12-4526-a274-455835ccce27\",\"pandascore_id\":null,\"yahoo_id\":27902,\"last_name\":\"Harrison\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"South Lake (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonotthanharrison\",\"birth_date\":\"1991-08-25\",\"espn_id\":17066},\"964\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027985\",\"first_name\":\"Lance\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1578156929198,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kendricks\",\"depth_chart_position\":\"TE\",\"player_id\":\"964\",\"birth_city\":null,\"fantasy_data_id\":13386,\"years_exp\":9,\"hashtag\":\"#LanceKendricks-NFL-FA-87\",\"search_first_name\":\"lance\",\"rotowire_id\":7412,\"rotoworld_id\":6614,\"active\":true,\"search_rank\":645,\"age\":32,\"full_name\":\"Lance Kendricks\",\"sportradar_id\":\"27921351-a775-4649-bd49-7b4c486d1ba2\",\"pandascore_id\":null,\"yahoo_id\":24834,\"last_name\":\"Kendricks\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Rufus King (WI)\",\"depth_chart_order\":3,\"stats_id\":332066,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lancekendricks\",\"birth_date\":\"1988-01-30\",\"espn_id\":14007},\"6403\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034950\",\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1590627358410,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"berryman\",\"depth_chart_position\":null,\"player_id\":\"6403\",\"birth_city\":null,\"fantasy_data_id\":21204,\"years_exp\":1,\"hashtag\":\"#IanBerryman-NFL-FA-0\",\"search_first_name\":\"ian\",\"rotowire_id\":14088,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ian Berryman\",\"sportradar_id\":\"2df27f31-ffaf-4c2a-abed-0c34d4081f07\",\"pandascore_id\":null,\"yahoo_id\":32166,\"last_name\":\"Berryman\",\"metadata\":null,\"college\":\"Western Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ianberryman\",\"birth_date\":\"1996-06-01\",\"espn_id\":3133168},\"1514\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1510012201200,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":null,\"player_id\":\"1514\",\"birth_city\":null,\"fantasy_data_id\":15123,\"years_exp\":7,\"hashtag\":\"#CoreyFuller-NFL-FA-11\",\"search_first_name\":\"corey\",\"rotowire_id\":8809,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Corey Fuller\",\"sportradar_id\":\"cd6d8c47-f155-4007-9b85-3f94256aaa10\",\"pandascore_id\":null,\"yahoo_id\":26794,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Woodlawn (MD)\",\"depth_chart_order\":null,\"stats_id\":558612,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"coreyfuller\",\"birth_date\":\"1990-06-28\",\"espn_id\":16014},\"1640\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029890\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605744943644,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"purcell\",\"depth_chart_position\":\"NT\",\"player_id\":\"1640\",\"birth_city\":null,\"fantasy_data_id\":15375,\"years_exp\":7,\"hashtag\":\"#MikePurcell-NFL-DEN-98\",\"search_first_name\":\"mike\",\"rotowire_id\":9935,\"rotoworld_id\":null,\"active\":true,\"search_rank\":756,\"age\":29,\"full_name\":\"Mike Purcell\",\"sportradar_id\":\"291aca07-a3b7-4666-a8c0-2e0c01024de5\",\"pandascore_id\":null,\"yahoo_id\":27217,\"last_name\":\"Purcell\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Wyoming\",\"high_school\":\"Highlands Ranch (CO)\",\"depth_chart_order\":1,\"stats_id\":495939,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"328\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikepurcell\",\"birth_date\":\"1991-04-20\",\"espn_id\":16377},\"4207\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033860\",\"first_name\":\"Davon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602879047441,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"godchaux\",\"depth_chart_position\":null,\"player_id\":\"4207\",\"birth_city\":null,\"fantasy_data_id\":19053,\"years_exp\":3,\"hashtag\":\"#DavonGodchaux-NFL-MIA-56\",\"search_first_name\":\"davon\",\"rotowire_id\":11916,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1195,\"age\":26,\"full_name\":\"Davon Godchaux\",\"sportradar_id\":\"6e6dcc9c-06f5-40fd-9134-d0afd0e349d8\",\"pandascore_id\":null,\"yahoo_id\":30291,\"last_name\":\"Godchaux\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Plaquemine (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davongodchaux\",\"birth_date\":\"1994-11-11\",\"espn_id\":3115383},\"3548\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"3548\",\"birth_city\":null,\"fantasy_data_id\":18318,\"years_exp\":3,\"hashtag\":\"#JamalRobinson-NFL-FA-19\",\"search_first_name\":\"jamal\",\"rotowire_id\":11199,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jamal Robinson\",\"sportradar_id\":\"be76973d-a5b4-45f7-a976-02369d569f38\",\"pandascore_id\":null,\"yahoo_id\":29512,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604111,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamalrobinson\",\"birth_date\":\"1993-01-03\",\"espn_id\":2574024},\"1070\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1070\",\"birth_city\":null,\"fantasy_data_id\":13876,\"years_exp\":8,\"hashtag\":\"#TrevorRobinson-NFL-FA-68\",\"search_first_name\":\"trevor\",\"rotowire_id\":8536,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Trevor Robinson\",\"sportradar_id\":\"1ab63530-c678-4fec-86a5-b8b509abf7b7\",\"pandascore_id\":null,\"yahoo_id\":26267,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Elkhorn (NE)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"trevorrobinson\",\"birth_date\":\"1990-05-16\",\"espn_id\":15365},\"4736\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034008\",\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1546274444570,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nzeocha\",\"depth_chart_position\":null,\"player_id\":\"4736\",\"birth_city\":null,\"fantasy_data_id\":19651,\"years_exp\":3,\"hashtag\":\"#EricNzeocha-NFL-FA-50\",\"search_first_name\":\"eric\",\"rotowire_id\":12521,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Eric Nzeocha\",\"sportradar_id\":\"0d48b2af-aed0-49be-9945-6c091040206b\",\"pandascore_id\":null,\"yahoo_id\":30881,\"last_name\":\"Nzeocha\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ericnzeocha\",\"birth_date\":\"1993-04-01\",\"espn_id\":2976179},\"1920\":{\"position\":\"DE\",\"injury_notes\":\"Mauro will miss 5 games for violating the performance-enhancing substances policy.\",\"birth_country\":null,\"gsis_id\":\"00-0030883\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603936830090,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mauro\",\"depth_chart_position\":\"DT\",\"player_id\":\"1920\",\"birth_city\":null,\"fantasy_data_id\":16153,\"years_exp\":6,\"hashtag\":\"#JoshMauro-NFL-ARI-69\",\"search_first_name\":\"josh\",\"rotowire_id\":9412,\"rotoworld_id\":9795,\"active\":true,\"search_rank\":786,\"age\":29,\"full_name\":\"Josh Mauro\",\"sportradar_id\":\"6399b33c-6d3d-4fc5-b142-1a5deb33ef76\",\"pandascore_id\":null,\"yahoo_id\":27815,\"last_name\":\"Mauro\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"L.D. Bell (TX)\",\"depth_chart_order\":1,\"stats_id\":503188,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joshmauro\",\"birth_date\":\"1991-02-17\",\"espn_id\":17017},\"6868\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605655526079,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wonnum\",\"depth_chart_position\":\"RDE\",\"player_id\":\"6868\",\"birth_city\":null,\"fantasy_data_id\":21909,\"years_exp\":0,\"hashtag\":\"#DJWonnum-NFL-MIN-98\",\"search_first_name\":\"dj\",\"rotowire_id\":14612,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1832,\"age\":23,\"full_name\":\"D.J. Wonnum\",\"sportradar_id\":\"68356887-b59e-4210-9726-828ea7f83928\",\"pandascore_id\":null,\"yahoo_id\":32787,\"last_name\":\"Wonnum\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"djwonnum\",\"birth_date\":\"1997-10-31\",\"espn_id\":4038849},\"5422\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034547\",\"first_name\":\"Albert\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534378205174,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"havili\",\"depth_chart_position\":null,\"player_id\":\"5422\",\"birth_city\":null,\"fantasy_data_id\":20356,\"years_exp\":2,\"hashtag\":\"#AlbertHavili-NFL-FA-97\",\"search_first_name\":\"albert\",\"rotowire_id\":13050,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Albert Havili\",\"sportradar_id\":\"1b0801bc-9afc-458c-8235-b938d4b76d29\",\"pandascore_id\":null,\"yahoo_id\":31678,\"last_name\":\"Havili\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alberthavili\",\"birth_date\":\"1995-08-07\",\"espn_id\":3045532},\"3568\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032609\",\"first_name\":\"Marken\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604973329978,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"michel\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3568\",\"birth_city\":null,\"fantasy_data_id\":18343,\"years_exp\":4,\"hashtag\":\"#MarkenMichel-NFL-CAR-19\",\"search_first_name\":\"marken\",\"rotowire_id\":11501,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1068,\"age\":27,\"full_name\":\"Marken Michel\",\"sportradar_id\":\"fa7983c1-408c-4aa5-9723-efbf039db351\",\"pandascore_id\":null,\"yahoo_id\":29540,\"last_name\":\"Michel\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":\"American Heritage (FL)\",\"depth_chart_order\":3,\"stats_id\":604826,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"markenmichel\",\"birth_date\":\"1993-07-06\",\"espn_id\":2591718},\"448\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1527578701637,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"freeman\",\"depth_chart_position\":null,\"player_id\":\"448\",\"birth_city\":null,\"fantasy_data_id\":9226,\"years_exp\":11,\"hashtag\":\"#JoshFreeman-NFL-FA-5\",\"search_first_name\":\"josh\",\"rotowire_id\":5986,\"rotoworld_id\":5121,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Josh Freeman\",\"sportradar_id\":\"8c7cd76d-74a0-4440-885a-07f92f9a75d7\",\"pandascore_id\":null,\"yahoo_id\":9281,\"last_name\":\"Freeman\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":\"Grandview (MO)\",\"depth_chart_order\":null,\"stats_id\":333545,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joshfreeman\",\"birth_date\":\"1988-01-13\",\"espn_id\":12473},\"445\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027114\",\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1534643161428,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"morstead\",\"depth_chart_position\":null,\"player_id\":\"445\",\"birth_city\":null,\"fantasy_data_id\":9201,\"years_exp\":11,\"hashtag\":\"#ThomasMorstead-NFL-NO-6\",\"search_first_name\":\"thomas\",\"rotowire_id\":6301,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Thomas Morstead\",\"sportradar_id\":\"e5371625-0c83-4f1f-9252-c7e0b6bc616e\",\"pandascore_id\":null,\"yahoo_id\":9428,\"last_name\":\"Morstead\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Pearland (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'4\\\"\",\"search_full_name\":\"thomasmorstead\",\"birth_date\":\"1986-03-08\",\"espn_id\":12701},\"3524\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquise\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3524\",\"birth_city\":null,\"fantasy_data_id\":18290,\"years_exp\":0,\"hashtag\":\"#MarquiseWilliams-NFL-FA-9\",\"search_first_name\":\"marquise\",\"rotowire_id\":11283,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marquise Williams\",\"sportradar_id\":\"4e39c621-ff25-4c15-999c-f6d41ade5db9\",\"pandascore_id\":null,\"yahoo_id\":30013,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":592506,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marquisewilliams\",\"birth_date\":\"1992-10-05\",\"espn_id\":2577118},\"6973\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"J.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606530929869,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"RB\",\"player_id\":\"6973\",\"birth_city\":null,\"fantasy_data_id\":21837,\"years_exp\":0,\"hashtag\":\"#JJTaylor-NFL-NE-42\",\"search_first_name\":\"jj\",\"rotowire_id\":14459,\"rotoworld_id\":null,\"active\":true,\"search_rank\":437,\"age\":22,\"full_name\":\"J.J. Taylor\",\"sportradar_id\":\"879325b1-c961-4c9a-a3a4-679d77a28293\",\"pandascore_id\":null,\"yahoo_id\":33028,\"last_name\":\"Taylor\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arizona\",\"high_school\":\"Centennial (CA)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'6\\\"\",\"search_full_name\":\"jjtaylor\",\"birth_date\":\"1998-01-04\",\"espn_id\":4039607},\"3233\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033132\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605291053196,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"byard\",\"depth_chart_position\":\"FS\",\"player_id\":\"3233\",\"birth_city\":null,\"fantasy_data_id\":17994,\"years_exp\":4,\"hashtag\":\"#KevinByard-NFL-TEN-31\",\"search_first_name\":\"kevin\",\"rotowire_id\":11218,\"rotoworld_id\":11397,\"active\":true,\"search_rank\":982,\"age\":27,\"full_name\":\"Kevin Byard\",\"sportradar_id\":\"c909532a-693e-4e8f-b853-fbf41037c100\",\"pandascore_id\":null,\"yahoo_id\":29298,\"last_name\":\"Byard\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Middle Tennessee\",\"high_school\":\"Martin Luther King (GA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kevinbyard\",\"birth_date\":\"1993-08-17\",\"espn_id\":2574056},\"4971\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034790\",\"first_name\":\"Derwin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599088537299,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"4971\",\"birth_city\":null,\"fantasy_data_id\":19837,\"years_exp\":2,\"hashtag\":\"#DerwinJames-NFL-LAC-33\",\"search_first_name\":\"derwin\",\"rotowire_id\":12464,\"rotoworld_id\":13120,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Derwin James\",\"sportradar_id\":\"01c52412-7257-4213-b8b3-effa7c5dd5c7\",\"pandascore_id\":null,\"yahoo_id\":30987,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Haines City (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"derwinjames\",\"birth_date\":\"1996-08-03\",\"espn_id\":3691739},\"644\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Walter\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thurmond\",\"depth_chart_position\":null,\"player_id\":\"644\",\"birth_city\":null,\"fantasy_data_id\":11613,\"years_exp\":10,\"hashtag\":\"#WalterThurmond-NFL-FA-26\",\"search_first_name\":\"walter\",\"rotowire_id\":6636,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Walter Thurmond\",\"sportradar_id\":\"6dd76515-5598-49c5-b04e-30232575fd3f\",\"pandascore_id\":null,\"yahoo_id\":24086,\"last_name\":\"Thurmond\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"West Covina (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"walterthurmond\",\"birth_date\":\"1987-08-12\",\"espn_id\":13473},\"679\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rex\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grossman\",\"depth_chart_position\":null,\"player_id\":\"679\",\"birth_city\":null,\"fantasy_data_id\":11952,\"years_exp\":11,\"hashtag\":\"#RexGrossman-NFL-FA-3\",\"search_first_name\":\"rex\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Rex Grossman\",\"sportradar_id\":\"8b5b9714-9533-4c7d-aa30-3ad3da3452aa\",\"pandascore_id\":null,\"yahoo_id\":6358,\"last_name\":\"Grossman\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rexgrossman\",\"birth_date\":\"1980-08-23\",\"espn_id\":4480},\"1494\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0030069\",\"first_name\":\"Damontre\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604357429829,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"1494\",\"birth_city\":null,\"fantasy_data_id\":15092,\"years_exp\":7,\"hashtag\":\"#DamontreMoore-NFL-SEA-99\",\"search_first_name\":\"damontre\",\"rotowire_id\":8654,\"rotoworld_id\":null,\"active\":true,\"search_rank\":730,\"age\":28,\"full_name\":\"Damontre Moore\",\"sportradar_id\":\"03af0e0d-a443-4b09-9ab5-4f2695248346\",\"pandascore_id\":null,\"yahoo_id\":26704,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Rowlett (TX)\",\"depth_chart_order\":null,\"stats_id\":558567,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"Sus\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"damontremoore\",\"birth_date\":\"1992-09-11\",\"espn_id\":15858},\"3321\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033040\",\"first_name\":\"Tyreek\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606117211495,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hill\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3321\",\"birth_city\":null,\"fantasy_data_id\":18082,\"years_exp\":4,\"hashtag\":\"#TyreekHill-NFL-KC-10\",\"search_first_name\":\"tyreek\",\"rotowire_id\":11222,\"rotoworld_id\":11458,\"active\":true,\"search_rank\":17,\"age\":26,\"full_name\":\"Tyreek Hill\",\"sportradar_id\":\"01d8aee3-e1c4-4988-970a-8c0c2d08bd83\",\"pandascore_id\":null,\"yahoo_id\":29399,\"last_name\":\"Hill\",\"metadata\":null,\"college\":\"West Alabama\",\"high_school\":\"Coffee (GA)\",\"depth_chart_order\":1,\"stats_id\":823156,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"tyreekhill\",\"birth_date\":\"1994-03-01\",\"espn_id\":3116406},\"4436\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gamble\",\"depth_chart_position\":null,\"player_id\":\"4436\",\"birth_city\":null,\"fantasy_data_id\":19297,\"years_exp\":2,\"hashtag\":\"#PatrickGamble-NFL-FA-78\",\"search_first_name\":\"patrick\",\"rotowire_id\":12236,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Patrick Gamble\",\"sportradar_id\":\"2a578fcd-2caf-49ba-8306-88b3ec5a4c7c\",\"pandascore_id\":null,\"yahoo_id\":30572,\"last_name\":\"Gamble\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"276\",\"height\":\"6'4\\\"\",\"search_full_name\":\"patrickgamble\",\"birth_date\":\"1994-02-02\",\"espn_id\":2971497},\"2972\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"2972\",\"birth_city\":null,\"fantasy_data_id\":17467,\"years_exp\":5,\"hashtag\":\"#DarrianMiller-NFL-FA-64\",\"search_first_name\":\"darrian\",\"rotowire_id\":10288,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Darrian Miller\",\"sportradar_id\":\"baad5ab5-f238-4351-b477-62b814143c08\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Bryan Station\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"darrianmiller\",\"birth_date\":\"1993-04-08\",\"espn_id\":2576699},\"2009\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031353\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604535628931,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"schofield\",\"depth_chart_position\":\"RG\",\"player_id\":\"2009\",\"birth_city\":null,\"fantasy_data_id\":16284,\"years_exp\":6,\"hashtag\":\"#MichaelSchofield-NFL-CAR-75\",\"search_first_name\":\"michael\",\"rotowire_id\":9426,\"rotoworld_id\":9549,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Michael Schofield\",\"sportradar_id\":\"305c4a34-6428-418e-adf6-09f60e83c674\",\"pandascore_id\":null,\"yahoo_id\":27623,\"last_name\":\"Schofield\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Carl Sandburg (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'6\\\"\",\"search_full_name\":\"michaelschofield\",\"birth_date\":\"1990-11-15\",\"espn_id\":16741},\"4210\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033574\",\"first_name\":\"Avery\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1599010534277,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moss\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"4210\",\"birth_city\":null,\"fantasy_data_id\":19056,\"years_exp\":3,\"hashtag\":\"#AveryMoss-NFL-FA-0\",\"search_first_name\":\"avery\",\"rotowire_id\":11929,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1197,\"age\":26,\"full_name\":\"Avery Moss\",\"sportradar_id\":\"48dede0f-2441-4549-8892-9d37c79321a1\",\"pandascore_id\":null,\"yahoo_id\":30280,\"last_name\":\"Moss\",\"metadata\":null,\"college\":\"Youngstown State\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"266\",\"height\":\"6'3\\\"\",\"search_full_name\":\"averymoss\",\"birth_date\":\"1994-09-16\",\"espn_id\":2974324},\"5933\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035294\",\"first_name\":\"Blessuan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606014910190,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"austin\",\"depth_chart_position\":null,\"player_id\":\"5933\",\"birth_city\":null,\"fantasy_data_id\":20744,\"years_exp\":1,\"hashtag\":\"#BlessuanAustin-NFL-NYJ-31\",\"search_first_name\":\"blessuan\",\"rotowire_id\":13471,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1524,\"age\":24,\"full_name\":\"Blessuan Austin\",\"sportradar_id\":\"57df194b-d445-4e66-af51-7b781b0f529f\",\"pandascore_id\":null,\"yahoo_id\":32028,\"last_name\":\"Austin\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Campus Magnet (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'1\\\"\",\"search_full_name\":\"blessuanaustin\",\"birth_date\":\"1996-07-19\",\"espn_id\":3870072},\"376\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"376\",\"birth_city\":null,\"fantasy_data_id\":8595,\"years_exp\":16,\"hashtag\":\"#AntonioSmith-NFL-FA-94\",\"search_first_name\":\"antonio\",\"rotowire_id\":3995,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Antonio Smith\",\"sportradar_id\":\"4b8a562d-206d-4c87-b82a-0de03e872272\",\"pandascore_id\":null,\"yahoo_id\":6894,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"John Marshall (OK)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"antoniosmith\",\"birth_date\":\"1981-10-21\",\"espn_id\":5660},\"5811\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"5811\",\"birth_city\":null,\"fantasy_data_id\":20708,\"years_exp\":0,\"hashtag\":\"#MikeHughes-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Mike Hughes\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Nevada-Las Vegas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikehughes\",\"birth_date\":\"1996-04-03\",\"espn_id\":null},\"4053\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033538\",\"first_name\":\"Garett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600617306515,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bolles\",\"depth_chart_position\":\"LT\",\"player_id\":\"4053\",\"birth_city\":null,\"fantasy_data_id\":18899,\"years_exp\":3,\"hashtag\":\"#GarettBolles-NFL-DEN-72\",\"search_first_name\":\"garett\",\"rotowire_id\":11779,\"rotoworld_id\":12224,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Garett Bolles\",\"sportradar_id\":\"09fab9a8-b0af-4580-bf55-5c9167912f89\",\"pandascore_id\":null,\"yahoo_id\":30133,\"last_name\":\"Bolles\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Utah\",\"high_school\":\"Westlake (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"garettbolles\",\"birth_date\":\"1992-05-27\",\"espn_id\":4035662},\"3603\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032486\",\"first_name\":\"Kameron\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1599777019326,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"canaday\",\"depth_chart_position\":null,\"player_id\":\"3603\",\"birth_city\":null,\"fantasy_data_id\":18388,\"years_exp\":4,\"hashtag\":\"#KameronCanaday-NFL-PIT-57\",\"search_first_name\":\"kameron\",\"rotowire_id\":11287,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kameron Canaday\",\"sportradar_id\":\"5d6266d9-b034-439d-9234-91c6c9696f8d\",\"pandascore_id\":null,\"yahoo_id\":29566,\"last_name\":\"Canaday\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Portland State\",\"high_school\":\"Sheldon (OR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kameroncanaday\",\"birth_date\":\"1993-08-20\",\"espn_id\":2967885},\"2421\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032131\",\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597622435253,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gunter\",\"depth_chart_position\":\"DT\",\"player_id\":\"2421\",\"birth_city\":null,\"fantasy_data_id\":16877,\"years_exp\":5,\"hashtag\":\"#RodneyGunter-NFL-JAX-99\",\"search_first_name\":\"rodney\",\"rotowire_id\":10455,\"rotoworld_id\":null,\"active\":true,\"search_rank\":890,\"age\":28,\"full_name\":\"Rodney Gunter\",\"sportradar_id\":\"e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9\",\"pandascore_id\":null,\"yahoo_id\":28504,\"last_name\":\"Gunter\",\"metadata\":null,\"college\":\"Delaware State\",\"high_school\":\"Haines City (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"rodneygunter\",\"birth_date\":\"1992-01-19\",\"espn_id\":2507719},\"1260\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bush\",\"depth_chart_position\":null,\"player_id\":\"1260\",\"birth_city\":null,\"fantasy_data_id\":14647,\"years_exp\":8,\"hashtag\":\"#JoshBush-NFL-FA-20\",\"search_first_name\":\"josh\",\"rotowire_id\":8301,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Josh Bush\",\"sportradar_id\":\"2aff4c73-8b5b-4b71-8959-c73b8013dffc\",\"pandascore_id\":null,\"yahoo_id\":25897,\"last_name\":\"Bush\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"West Davidson (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshbush\",\"birth_date\":\"1989-03-06\",\"espn_id\":15113},\"7442\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596158718858,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"mckinney\",\"depth_chart_position\":null,\"player_id\":\"7442\",\"birth_city\":null,\"fantasy_data_id\":22421,\"years_exp\":0,\"hashtag\":\"#AnthonyMcKinney-NFL-TEN-61\",\"search_first_name\":\"anthony\",\"rotowire_id\":15156,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Anthony McKinney\",\"sportradar_id\":\"3c136bfa-d96a-4b39-966a-43973010c5b0\",\"pandascore_id\":null,\"yahoo_id\":33344,\"last_name\":\"McKinney\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Texas Christian\",\"high_school\":\"Harlem (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'8\\\"\",\"search_full_name\":\"anthonymckinney\",\"birth_date\":\"1997-10-25\",\"espn_id\":null},\"1355\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Don\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532577302187,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"1355\",\"birth_city\":null,\"fantasy_data_id\":14874,\"years_exp\":7,\"hashtag\":\"#DonJones-NFL-FA-20\",\"search_first_name\":\"don\",\"rotowire_id\":8962,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Don Jones\",\"sportradar_id\":\"82c8a0df-7bda-4822-ace5-c7ac101581b3\",\"pandascore_id\":null,\"yahoo_id\":26873,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Arkansas State\",\"high_school\":\"Hazelwood (AL)\",\"depth_chart_order\":null,\"stats_id\":468590,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"donjones\",\"birth_date\":\"1990-05-14\",\"espn_id\":15943},\"6370\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035443\",\"first_name\":\"Damion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596329712066,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jeanpiere\",\"depth_chart_position\":null,\"player_id\":\"6370\",\"birth_city\":null,\"fantasy_data_id\":21309,\"years_exp\":1,\"hashtag\":\"#DamionJeanpiere-NFL-FA-0\",\"search_first_name\":\"damion\",\"rotowire_id\":14256,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Damion Jeanpiere\",\"sportradar_id\":\"706328a9-4bd5-4830-9b25-9ff276b1654c\",\"pandascore_id\":null,\"yahoo_id\":32150,\"last_name\":\"Jeanpiere\",\"metadata\":null,\"college\":\"Nicholls State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":883753,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"damionjeanpiere\",\"birth_date\":\"1996-12-08\",\"espn_id\":3929698},\"4388\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kozan\",\"depth_chart_position\":null,\"player_id\":\"4388\",\"birth_city\":null,\"fantasy_data_id\":19246,\"years_exp\":2,\"hashtag\":\"#AlexKozan-NFL-FA-70\",\"search_first_name\":\"alex\",\"rotowire_id\":12172,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Alex Kozan\",\"sportradar_id\":\"4cb8e7b1-a130-4b46-80eb-997061323d4b\",\"pandascore_id\":null,\"yahoo_id\":30667,\"last_name\":\"Kozan\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"alexkozan\",\"birth_date\":\"1993-11-17\",\"espn_id\":2971029},\"4488\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1525233001415,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chappell\",\"depth_chart_position\":null,\"player_id\":\"4488\",\"birth_city\":null,\"fantasy_data_id\":19357,\"years_exp\":2,\"hashtag\":\"#DevinChappell-NFL-FA-47\",\"search_first_name\":\"devin\",\"rotowire_id\":12115,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Devin Chappell\",\"sportradar_id\":\"15c417d5-e9fb-4776-a3fa-3d027d2429e1\",\"pandascore_id\":null,\"yahoo_id\":30678,\"last_name\":\"Chappell\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'1\\\"\",\"search_full_name\":\"devinchappell\",\"birth_date\":\"1994-05-14\",\"espn_id\":3058833},\"7111\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"McTelvin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587792037084,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"agim\",\"depth_chart_position\":\"NT\",\"player_id\":\"7111\",\"birth_city\":null,\"fantasy_data_id\":22082,\"years_exp\":0,\"hashtag\":\"#McTelvinAgim-NFL-DEN-95\",\"search_first_name\":\"mctelvin\",\"rotowire_id\":14602,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1912,\"age\":23,\"full_name\":\"McTelvin Agim\",\"sportradar_id\":\"ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58\",\"pandascore_id\":null,\"yahoo_id\":32765,\"last_name\":\"Agim\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arkansas\",\"high_school\":\"Hope (AR)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mctelvinagim\",\"birth_date\":\"1997-09-25\",\"espn_id\":4035566},\"7157\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693357332,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"love\",\"depth_chart_position\":null,\"player_id\":\"7157\",\"birth_city\":null,\"fantasy_data_id\":22158,\"years_exp\":0,\"hashtag\":\"#JoshLove-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":14555,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Josh Love\",\"sportradar_id\":\"50f32b47-1f9e-4598-869b-af78ba27fde9\",\"pandascore_id\":null,\"yahoo_id\":33256,\"last_name\":\"Love\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshlove\",\"birth_date\":\"1996-11-28\",\"espn_id\":3921685},\"3522\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clay\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"debord\",\"depth_chart_position\":null,\"player_id\":\"3522\",\"birth_city\":null,\"fantasy_data_id\":18288,\"years_exp\":3,\"hashtag\":\"#ClayDebord-NFL-FA-67\",\"search_first_name\":\"clay\",\"rotowire_id\":11289,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Clay Debord\",\"sportradar_id\":\"99e93c6e-cc16-4a7c-8f0e-5266d91f1a52\",\"pandascore_id\":null,\"yahoo_id\":29570,\"last_name\":\"Debord\",\"metadata\":null,\"college\":\"Eastern Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'7\\\"\",\"search_full_name\":\"claydebord\",\"birth_date\":\"1992-05-13\",\"espn_id\":2977180},\"4372\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033348\",\"first_name\":\"Jarveon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535742407715,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4372\",\"birth_city\":null,\"fantasy_data_id\":19229,\"years_exp\":3,\"hashtag\":\"#JarveonWilliams-NFL-FA-39\",\"search_first_name\":\"jarveon\",\"rotowire_id\":12313,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarveon Williams\",\"sportradar_id\":\"017fcaa2-13d3-4159-8fd3-13c71ff7707e\",\"pandascore_id\":null,\"yahoo_id\":30587,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":743821,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jarveonwilliams\",\"birth_date\":\"1995-01-03\",\"espn_id\":3040644},\"4038\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033460\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605381359214,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ross\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4038\",\"birth_city\":null,\"fantasy_data_id\":18881,\"years_exp\":3,\"hashtag\":\"#JohnRoss-NFL-CIN-11\",\"search_first_name\":\"john\",\"rotowire_id\":11699,\"rotoworld_id\":12173,\"active\":true,\"search_rank\":198,\"age\":25,\"full_name\":\"John Ross\",\"sportradar_id\":\"938b363a-6967-4cef-bcd2-bb358a9f6c98\",\"pandascore_id\":null,\"yahoo_id\":30122,\"last_name\":\"Ross\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Long Beach Jordan (CA)\",\"depth_chart_order\":3,\"stats_id\":747906,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'11\\\"\",\"search_full_name\":\"johnross\",\"birth_date\":\"1995-11-27\",\"espn_id\":3052177},\"7291\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603410949415,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":null,\"player_id\":\"7291\",\"birth_city\":null,\"fantasy_data_id\":22287,\"years_exp\":0,\"hashtag\":\"#NateEvans-NFL-JAX-57\",\"search_first_name\":\"nate\",\"rotowire_id\":14412,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1968,\"age\":22,\"full_name\":\"Nate Evans\",\"sportradar_id\":\"818450c3-93a0-417e-80c1-b49a1bc541b2\",\"pandascore_id\":null,\"yahoo_id\":33125,\"last_name\":\"Evans\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"John Curtis Christian (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nateevans\",\"birth_date\":\"1998-02-27\",\"espn_id\":4042125},\"4292\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033220\",\"first_name\":\"Marcelis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"branch\",\"depth_chart_position\":null,\"player_id\":\"4292\",\"birth_city\":null,\"fantasy_data_id\":19138,\"years_exp\":3,\"hashtag\":\"#MarcelisBranch-NFL-FA-39\",\"search_first_name\":\"marcelis\",\"rotowire_id\":12648,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Marcelis Branch\",\"sportradar_id\":\"39624169-06bd-4512-ae65-04f4f35e7705\",\"pandascore_id\":null,\"yahoo_id\":30447,\"last_name\":\"Branch\",\"metadata\":null,\"college\":\"Robert Morris\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marcelisbranch\",\"birth_date\":\"1994-01-19\",\"espn_id\":2972155},\"5568\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034308\",\"first_name\":\"Myles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1566257110060,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"humphrey\",\"depth_chart_position\":null,\"player_id\":\"5568\",\"birth_city\":null,\"fantasy_data_id\":20586,\"years_exp\":2,\"hashtag\":\"#MylesHumphrey-NFL-FA-0\",\"search_first_name\":\"myles\",\"rotowire_id\":13163,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Myles Humphrey\",\"sportradar_id\":\"961507f5-29bc-4efe-bff1-bd1e4f063e8c\",\"pandascore_id\":null,\"yahoo_id\":31507,\"last_name\":\"Humphrey\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'3\\\"\",\"search_full_name\":\"myleshumphrey\",\"birth_date\":\"1995-09-07\",\"espn_id\":3957496},\"6272\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034997\",\"first_name\":\"Gerri\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"6272\",\"birth_city\":null,\"fantasy_data_id\":21128,\"years_exp\":1,\"hashtag\":\"#GerriGreen-NFL-LV-95\",\"search_first_name\":\"gerri\",\"rotowire_id\":13818,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1673,\"age\":25,\"full_name\":\"Gerri Green\",\"sportradar_id\":\"461b76db-dbf6-44c1-8cfa-a3c3edb100fd\",\"pandascore_id\":null,\"yahoo_id\":32031,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Greenville (MS)\",\"depth_chart_order\":null,\"stats_id\":835500,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"gerrigreen\",\"birth_date\":\"1995-09-14\",\"espn_id\":3115469},\"7276\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Auzoyah\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"alufohai\",\"depth_chart_position\":null,\"player_id\":\"7276\",\"birth_city\":null,\"fantasy_data_id\":22273,\"years_exp\":0,\"hashtag\":\"#AuzoyahAlufohai-NFL-HOU-98\",\"search_first_name\":\"auzoyah\",\"rotowire_id\":14853,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1964,\"age\":24,\"full_name\":\"Auzoyah Alufohai\",\"sportradar_id\":\"2d233d49-fca4-4ddf-a73d-21f4451ce3fc\",\"pandascore_id\":null,\"yahoo_id\":33156,\"last_name\":\"Alufohai\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":\"Alpharetta (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"auzoyahalufohai\",\"birth_date\":\"1996-10-16\",\"espn_id\":3911982},\"47\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jackie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"battle\",\"depth_chart_position\":null,\"player_id\":\"47\",\"birth_city\":null,\"fantasy_data_id\":1362,\"years_exp\":7,\"hashtag\":\"#JackieBattle-NFL-FA-44\",\"search_first_name\":\"jackie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jackie Battle\",\"sportradar_id\":\"192e6f3d-c0d0-474e-b102-7b6a9c5743d3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Battle\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jackiebattle\",\"birth_date\":\"1983-10-01\",\"espn_id\":11197},\"6136\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035264\",\"first_name\":\"Jarrett\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1603767339624,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stidham\",\"depth_chart_position\":\"QB\",\"player_id\":\"6136\",\"birth_city\":null,\"fantasy_data_id\":20954,\"years_exp\":1,\"hashtag\":\"#JarrettStidham-NFL-NE-4\",\"search_first_name\":\"jarrett\",\"rotowire_id\":13438,\"rotoworld_id\":13945,\"active\":true,\"search_rank\":348,\"age\":24,\"full_name\":\"Jarrett Stidham\",\"sportradar_id\":\"582fe465-135a-4901-beef-60aebce99067\",\"pandascore_id\":null,\"yahoo_id\":31965,\"last_name\":\"Stidham\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Auburn\",\"high_school\":\"Stephenville (TX)\",\"depth_chart_order\":2,\"stats_id\":865868,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jarrettstidham\",\"birth_date\":\"1996-08-08\",\"espn_id\":3892775},\"967\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027952\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1600644009541,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"quinn\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"967\",\"birth_city\":null,\"fantasy_data_id\":13393,\"years_exp\":9,\"hashtag\":\"#RobertQuinn-NFL-CHI-94\",\"search_first_name\":\"robert\",\"rotowire_id\":7418,\"rotoworld_id\":6557,\"active\":true,\"search_rank\":646,\"age\":30,\"full_name\":\"Robert Quinn\",\"sportradar_id\":\"57bd3249-bae3-4e13-b4d6-f86dbc4978e7\",\"pandascore_id\":null,\"yahoo_id\":24801,\"last_name\":\"Quinn\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Fort Dorchester (SC)\",\"depth_chart_order\":1,\"stats_id\":463653,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'4\\\"\",\"search_full_name\":\"robertquinn\",\"birth_date\":\"1990-05-18\",\"espn_id\":13984},\"605\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027701\",\"first_name\":\"Everson\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603859155561,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"griffen\",\"depth_chart_position\":\"LDE\",\"player_id\":\"605\",\"birth_city\":null,\"fantasy_data_id\":11414,\"years_exp\":10,\"hashtag\":\"#EversonGriffen-NFL-DET-98\",\"search_first_name\":\"everson\",\"rotowire_id\":6572,\"rotoworld_id\":5615,\"active\":true,\"search_rank\":611,\"age\":32,\"full_name\":\"Everson Griffen\",\"sportradar_id\":\"54475db4-f0e8-4513-bcc8-7e76362c19f7\",\"pandascore_id\":null,\"yahoo_id\":24075,\"last_name\":\"Griffen\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Agua Fria Union (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'3\\\"\",\"search_full_name\":\"eversongriffen\",\"birth_date\":\"1987-12-22\",\"espn_id\":13373},\"4367\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Monty\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"madaris\",\"depth_chart_position\":null,\"player_id\":\"4367\",\"birth_city\":null,\"fantasy_data_id\":19224,\"years_exp\":1,\"hashtag\":\"#MontyMadaris-NFL-CIN-19\",\"search_first_name\":\"monty\",\"rotowire_id\":12323,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Monty Madaris\",\"sportradar_id\":\"43d504d0-c5c6-4dbe-b15b-5b856919755d\",\"pandascore_id\":null,\"yahoo_id\":30582,\"last_name\":\"Madaris\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696173,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"montymadaris\",\"birth_date\":\"1993-09-08\",\"espn_id\":2979548},\"1113\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029692\",\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1577560209695,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"anger\",\"depth_chart_position\":null,\"player_id\":\"1113\",\"birth_city\":null,\"fantasy_data_id\":14017,\"years_exp\":8,\"hashtag\":\"#BryanAnger-NFL-HOU-9\",\"search_first_name\":\"bryan\",\"rotowire_id\":8251,\"rotoworld_id\":7541,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Bryan Anger\",\"sportradar_id\":\"6ee71282-c2b8-416a-8de1-29c0185d9b7b\",\"pandascore_id\":null,\"yahoo_id\":25780,\"last_name\":\"Anger\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Camarillo (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bryananger\",\"birth_date\":\"1988-10-06\",\"espn_id\":14950},\"4173\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033940\",\"first_name\":\"Jaleel\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600114862124,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"DT\",\"player_id\":\"4173\",\"birth_city\":null,\"fantasy_data_id\":19019,\"years_exp\":3,\"hashtag\":\"#JaleelJohnson-NFL-MIN-94\",\"search_first_name\":\"jaleel\",\"rotowire_id\":11921,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1183,\"age\":26,\"full_name\":\"Jaleel Johnson\",\"sportradar_id\":\"016a6d56-0b72-490e-8dae-41b5d3d2db63\",\"pandascore_id\":null,\"yahoo_id\":30222,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Montini Catholic (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jaleeljohnson\",\"birth_date\":\"1994-07-12\",\"espn_id\":2979523},\"5395\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034621\",\"first_name\":\"Shaun\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1595795416080,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"RB\",\"player_id\":\"5395\",\"birth_city\":null,\"fantasy_data_id\":20472,\"years_exp\":2,\"hashtag\":\"#ShaunWilson-NFL-FA-0\",\"search_first_name\":\"shaun\",\"rotowire_id\":13070,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1478,\"age\":24,\"full_name\":\"Shaun Wilson\",\"sportradar_id\":\"3d36bdab-2521-44da-8ede-30226510c2b0\",\"pandascore_id\":null,\"yahoo_id\":31278,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":19,\"stats_id\":830812,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'9\\\"\",\"search_full_name\":\"shaunwilson\",\"birth_date\":\"1995-12-02\",\"espn_id\":3116563},\"3675\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"broxton\",\"depth_chart_position\":null,\"player_id\":\"3675\",\"birth_city\":null,\"fantasy_data_id\":18475,\"years_exp\":3,\"hashtag\":\"#JarellBroxton-NFL-FA-61\",\"search_first_name\":\"jarell\",\"rotowire_id\":11303,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jarell Broxton\",\"sportradar_id\":\"e676d16f-a13f-4ad8-918c-5c5e61874d5d\",\"pandascore_id\":null,\"yahoo_id\":29750,\"last_name\":\"Broxton\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jarellbroxton\",\"birth_date\":\"1993-03-27\",\"espn_id\":3124819},\"7485\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599693342972,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bituli\",\"depth_chart_position\":null,\"player_id\":\"7485\",\"birth_city\":null,\"fantasy_data_id\":21916,\"years_exp\":0,\"hashtag\":\"#DanielBituli-NFL-CAR-49\",\"search_first_name\":\"daniel\",\"rotowire_id\":14679,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Daniel Bituli\",\"sportradar_id\":\"ee29b5be-a126-4f1a-bb58-c051d7ba9c5e\",\"pandascore_id\":null,\"yahoo_id\":33248,\"last_name\":\"Bituli\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Nashville Christian (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danielbituli\",\"birth_date\":\"1997-12-27\",\"espn_id\":4035177},\"6615\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rayford\",\"depth_chart_position\":null,\"player_id\":\"6615\",\"birth_city\":null,\"fantasy_data_id\":21347,\"years_exp\":0,\"hashtag\":\"#ChrisRayford-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Chris Rayford\",\"sportradar_id\":\"a75b97a1-2c3f-4026-83f8-ee375dd79458\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Rayford\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chrisrayford\",\"birth_date\":\"1996-05-28\",\"espn_id\":null},\"3487\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032676\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1542158729448,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jordan\",\"depth_chart_position\":null,\"player_id\":\"3487\",\"birth_city\":null,\"fantasy_data_id\":18252,\"years_exp\":4,\"hashtag\":\"#MichaelJordan-NFL-FA-38\",\"search_first_name\":\"michael\",\"rotowire_id\":11575,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Michael Jordan\",\"sportradar_id\":\"337a330a-331b-4901-b07f-c3582586c2be\",\"pandascore_id\":null,\"yahoo_id\":29724,\"last_name\":\"Jordan\",\"metadata\":null,\"college\":\"Missouri Western\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":915157,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaeljordan\",\"birth_date\":\"1992-10-21\",\"espn_id\":3961462},\"6184\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035095\",\"first_name\":\"Derrek\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599625813368,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"6184\",\"birth_city\":null,\"fantasy_data_id\":20962,\"years_exp\":1,\"hashtag\":\"#DerrekThomas-NFL-CAR-35\",\"search_first_name\":\"derrek\",\"rotowire_id\":13886,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Derrek Thomas\",\"sportradar_id\":\"3d988522-2246-4517-8537-c1bfa7989f79\",\"pandascore_id\":null,\"yahoo_id\":32329,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Bishop Maginn (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'3\\\"\",\"search_full_name\":\"derrekthomas\",\"birth_date\":\"1995-04-25\",\"espn_id\":3126238},\"5577\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034289\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1578454544896,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hunter\",\"depth_chart_position\":null,\"player_id\":\"5577\",\"birth_city\":null,\"fantasy_data_id\":20499,\"years_exp\":2,\"hashtag\":\"#RyanHunter-NFL-LAC-60\",\"search_first_name\":\"ryan\",\"rotowire_id\":13175,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ryan Hunter\",\"sportradar_id\":\"65bfa813-7bcb-461e-8716-7072e4705ad1\",\"pandascore_id\":null,\"yahoo_id\":31488,\"last_name\":\"Hunter\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":\"Canisius (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ryanhunter\",\"birth_date\":\"1995-01-01\",\"espn_id\":3045779},\"4943\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034869\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606580432560,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"darnold\",\"depth_chart_position\":\"QB\",\"player_id\":\"4943\",\"birth_city\":null,\"fantasy_data_id\":19812,\"years_exp\":2,\"hashtag\":\"#SamDarnold-NFL-NYJ-14\",\"search_first_name\":\"sam\",\"rotowire_id\":12490,\"rotoworld_id\":13058,\"active\":true,\"search_rank\":194,\"age\":23,\"full_name\":\"Sam Darnold\",\"sportradar_id\":\"13d826c5-9b22-4e0a-a877-02d8c84c546b\",\"pandascore_id\":null,\"yahoo_id\":30973,\"last_name\":\"Darnold\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"San Clemente (CA)\",\"depth_chart_order\":1,\"stats_id\":880026,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"samdarnold\",\"birth_date\":\"1997-06-05\",\"espn_id\":3912547},\"5549\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034301\",\"first_name\":\"Darrel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606236052652,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"5549\",\"birth_city\":null,\"fantasy_data_id\":20500,\"years_exp\":2,\"hashtag\":\"#DarrelWilliams-NFL-KC-31\",\"search_first_name\":\"darrel\",\"rotowire_id\":12839,\"rotoworld_id\":13668,\"active\":true,\"search_rank\":152,\"age\":25,\"full_name\":\"Darrel Williams\",\"sportradar_id\":\"c2a19a09-74a2-4ace-8cc3-6dfb65070a70\",\"pandascore_id\":null,\"yahoo_id\":31500,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"John Ehret (LA)\",\"depth_chart_order\":3,\"stats_id\":822038,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darrelwilliams\",\"birth_date\":\"1995-04-15\",\"espn_id\":3115375},\"2611\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032250\",\"first_name\":\"Kasen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1533920411382,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"2611\",\"birth_city\":null,\"fantasy_data_id\":17079,\"years_exp\":5,\"hashtag\":\"#KasenWilliams-NFL-FA-6\",\"search_first_name\":\"kasen\",\"rotowire_id\":10547,\"rotoworld_id\":10717,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kasen Williams\",\"sportradar_id\":\"54bc1417-65c0-4dbe-9e5a-b722025973e8\",\"pandascore_id\":null,\"yahoo_id\":29152,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Skyline (WA)\",\"depth_chart_order\":null,\"stats_id\":608025,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kasenwilliams\",\"birth_date\":\"1992-12-05\",\"espn_id\":2578394},\"3319\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032423\",\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1603920928982,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3319\",\"birth_city\":null,\"fantasy_data_id\":18080,\"years_exp\":4,\"hashtag\":\"#TrevorDavis-NFL-WAS-4\",\"search_first_name\":\"trevor\",\"rotowire_id\":11014,\"rotoworld_id\":11456,\"active\":true,\"search_rank\":1020,\"age\":27,\"full_name\":\"Trevor Davis\",\"sportradar_id\":\"bc175901-4a1f-4132-abb4-e49cc7d35e12\",\"pandascore_id\":null,\"yahoo_id\":29397,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Alhambra (CA)\",\"depth_chart_order\":3,\"stats_id\":615494,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"188\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trevordavis\",\"birth_date\":\"1993-07-04\",\"espn_id\":2573343},\"5140\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034180\",\"first_name\":\"Jaelon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598590847619,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"acklin\",\"depth_chart_position\":null,\"player_id\":\"5140\",\"birth_city\":null,\"fantasy_data_id\":20098,\"years_exp\":2,\"hashtag\":\"#JaelonAcklin-NFL-FA-80\",\"search_first_name\":\"jaelon\",\"rotowire_id\":13121,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jaelon Acklin\",\"sportradar_id\":\"4e9fc39f-042b-406a-9afd-ab16330a85f0\",\"pandascore_id\":null,\"yahoo_id\":31247,\"last_name\":\"Acklin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":831781,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jaelonacklin\",\"birth_date\":\"1995-08-10\",\"espn_id\":3121616},\"6437\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034937\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576966555682,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leglue\",\"depth_chart_position\":\"LT\",\"player_id\":\"6437\",\"birth_city\":null,\"fantasy_data_id\":21362,\"years_exp\":1,\"hashtag\":\"#JohnLeglue-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":14066,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"John Leglue\",\"sportradar_id\":\"19f35c8f-4796-4563-bcf5-6bab1679571e\",\"pandascore_id\":null,\"yahoo_id\":32195,\"last_name\":\"Leglue\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'6\\\"\",\"search_full_name\":\"johnleglue\",\"birth_date\":\"1996-04-17\",\"espn_id\":3126261},\"5151\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034508\",\"first_name\":\"Gerhard\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"debeer\",\"depth_chart_position\":null,\"player_id\":\"5151\",\"birth_city\":null,\"fantasy_data_id\":20100,\"years_exp\":2,\"hashtag\":\"#GerhardDeBeer-NFL-FA-72\",\"search_first_name\":\"gerhard\",\"rotowire_id\":13229,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Gerhard De Beer\",\"sportradar_id\":\"726fbbac-42c1-451b-8712-72f92fc1cf77\",\"pandascore_id\":null,\"yahoo_id\":31604,\"last_name\":\"De Beer\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'6\\\"\",\"search_full_name\":\"gerharddebeer\",\"birth_date\":\"1994-07-05\",\"espn_id\":3056440},\"4068\":{\"position\":\"WR\",\"injury_notes\":\"Williams is expected to miss 2-4 weeks.\",\"birth_country\":null,\"gsis_id\":\"00-0033536\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606592733454,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4068\",\"birth_city\":null,\"fantasy_data_id\":18914,\"years_exp\":3,\"hashtag\":\"#MikeWilliams-NFL-LAC-81\",\"search_first_name\":\"mike\",\"rotowire_id\":11885,\"rotoworld_id\":12183,\"active\":true,\"search_rank\":148,\"age\":26,\"full_name\":\"Mike Williams\",\"sportradar_id\":\"12f27311-7cd6-4ca5-ba7d-571e9de5e1eb\",\"pandascore_id\":null,\"yahoo_id\":30120,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Santee Lake Marion (SC)\",\"depth_chart_order\":1,\"stats_id\":733754,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikewilliams\",\"birth_date\":\"1994-10-04\",\"espn_id\":3045138},\"6916\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stanford\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"samuels\",\"depth_chart_position\":null,\"player_id\":\"6916\",\"birth_city\":null,\"fantasy_data_id\":22069,\"years_exp\":0,\"hashtag\":\"#StanfordSamuels-NFL-GB-46\",\"search_first_name\":\"stanford\",\"rotowire_id\":14405,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1902,\"age\":21,\"full_name\":\"Stanford Samuels\",\"sportradar_id\":\"c1bbdfa3-5171-4018-a812-1dddacb3b421\",\"pandascore_id\":null,\"yahoo_id\":33231,\"last_name\":\"Samuels\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Flanagan (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"stanfordsamuels\",\"birth_date\":\"1999-02-23\",\"espn_id\":4240024},\"4359\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033410\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605973507048,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"luke\",\"depth_chart_position\":\"CB\",\"player_id\":\"4359\",\"birth_city\":null,\"fantasy_data_id\":19216,\"years_exp\":3,\"hashtag\":\"#ColeLuke-NFL-WAS-46\",\"search_first_name\":\"cole\",\"rotowire_id\":12091,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1237,\"age\":25,\"full_name\":\"Cole Luke\",\"sportradar_id\":\"8e06b4a9-d210-465c-80b7-9bae20dc64b2\",\"pandascore_id\":null,\"yahoo_id\":30381,\"last_name\":\"Luke\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Hamilton (AZ)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"coleluke\",\"birth_date\":\"1995-06-30\",\"espn_id\":3052883},\"1012\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tupou\",\"depth_chart_position\":null,\"player_id\":\"1012\",\"birth_city\":null,\"fantasy_data_id\":13612,\"years_exp\":0,\"hashtag\":\"#ChristianTupou-NFL-FA-67\",\"search_first_name\":\"christian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Christian Tupou\",\"sportradar_id\":\"b75b8d79-e040-4df1-a6b3-2ff10b99a796\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Tupou\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christiantupou\",\"birth_date\":\"1985-05-02\",\"espn_id\":16537},\"5164\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034068\",\"first_name\":\"Simmie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567217157467,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cobbs\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5164\",\"birth_city\":null,\"fantasy_data_id\":20107,\"years_exp\":2,\"hashtag\":\"#SimmieCobbs-NFL-FA-15\",\"search_first_name\":\"simmie\",\"rotowire_id\":12480,\"rotoworld_id\":13386,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Simmie Cobbs\",\"sportradar_id\":\"1dea7b00-f200-470f-8912-ca9d87ceb7e2\",\"pandascore_id\":null,\"yahoo_id\":31397,\"last_name\":\"Cobbs\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":838200,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"simmiecobbs\",\"birth_date\":\"1995-08-25\",\"espn_id\":3128251},\"1301\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028374\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1601506511892,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"1301\",\"birth_city\":null,\"fantasy_data_id\":14776,\"years_exp\":9,\"hashtag\":\"#KyleNelson-NFL-SF-86\",\"search_first_name\":\"kyle\",\"rotowire_id\":9186,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Kyle Nelson\",\"sportradar_id\":\"09a1fe57-c026-4ca4-b084-48b8ed9c106f\",\"pandascore_id\":null,\"yahoo_id\":25291,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":\"China Spring (TX)\",\"depth_chart_order\":null,\"stats_id\":324970,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylenelson\",\"birth_date\":\"1986-10-03\",\"espn_id\":14426},\"5557\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034232\",\"first_name\":\"Emmanuel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1555131658126,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"beal\",\"depth_chart_position\":null,\"player_id\":\"5557\",\"birth_city\":null,\"fantasy_data_id\":20548,\"years_exp\":2,\"hashtag\":\"#EmmanuelBeal-NFL-FA-0\",\"search_first_name\":\"emmanuel\",\"rotowire_id\":13367,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Emmanuel Beal\",\"sportradar_id\":\"c4243a66-f376-4ad0-ac40-3e2b759ba64a\",\"pandascore_id\":null,\"yahoo_id\":31468,\"last_name\":\"Beal\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'0\\\"\",\"search_full_name\":\"emmanuelbeal\",\"birth_date\":\"1995-06-26\",\"espn_id\":4037632},\"507\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027861\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1515269701440,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spiller\",\"depth_chart_position\":null,\"player_id\":\"507\",\"birth_city\":null,\"fantasy_data_id\":10949,\"years_exp\":10,\"hashtag\":\"#CJSpiller-NFL-FA-26\",\"search_first_name\":\"cj\",\"rotowire_id\":6478,\"rotoworld_id\":5566,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"C.J. Spiller\",\"sportradar_id\":\"64d9a11b-2d05-4173-ac72-4f9e63fb4aa6\",\"pandascore_id\":null,\"yahoo_id\":23984,\"last_name\":\"Spiller\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Union County (FL)\",\"depth_chart_order\":null,\"stats_id\":332959,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cjspiller\",\"birth_date\":\"1987-08-05\",\"espn_id\":13203},\"1661\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029940\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1560287165888,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":null,\"player_id\":\"1661\",\"birth_city\":null,\"fantasy_data_id\":15435,\"years_exp\":7,\"hashtag\":\"#TJBarnes-NFL-FA-77\",\"search_first_name\":\"tj\",\"rotowire_id\":9523,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"T.J. Barnes\",\"sportradar_id\":\"f092bfdc-2385-4223-86e7-37b2654bc37c\",\"pandascore_id\":null,\"yahoo_id\":26960,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Enterprise (AL)\",\"depth_chart_order\":null,\"stats_id\":447493,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"364\",\"height\":\"6'7\\\"\",\"search_full_name\":\"tjbarnes\",\"birth_date\":\"1990-06-14\",\"espn_id\":16127},\"2549\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032156\",\"first_name\":\"Trevor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605972306143,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"siemian\",\"depth_chart_position\":\"QB\",\"player_id\":\"2549\",\"birth_city\":null,\"fantasy_data_id\":17009,\"years_exp\":5,\"hashtag\":\"#TrevorSiemian-NFL-NO-4\",\"search_first_name\":\"trevor\",\"rotowire_id\":10483,\"rotoworld_id\":10622,\"active\":true,\"search_rank\":546,\"age\":28,\"full_name\":\"Trevor Siemian\",\"sportradar_id\":\"e23dc743-ecee-4cf3-a263-69d3da3bae94\",\"pandascore_id\":null,\"yahoo_id\":28638,\"last_name\":\"Siemian\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Northwestern\",\"high_school\":\"Olympia (FL)\",\"depth_chart_order\":4,\"stats_id\":546184,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"trevorsiemian\",\"birth_date\":\"1991-12-26\",\"espn_id\":2511109},\"602\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027440\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1541361958046,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shields\",\"depth_chart_position\":null,\"player_id\":\"602\",\"birth_city\":null,\"fantasy_data_id\":11402,\"years_exp\":10,\"hashtag\":\"#SamShields-NFL-FA-37\",\"search_first_name\":\"sam\",\"rotowire_id\":7017,\"rotoworld_id\":6268,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Sam Shields\",\"sportradar_id\":\"74b40266-cab7-4c5f-9f72-b560f7457a55\",\"pandascore_id\":null,\"yahoo_id\":24508,\"last_name\":\"Shields\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Booker (FL)\",\"depth_chart_order\":null,\"stats_id\":323404,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"samshields\",\"birth_date\":\"1987-12-08\",\"espn_id\":13769},\"7056\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599408959975,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewartjr\",\"depth_chart_position\":null,\"player_id\":\"7056\",\"birth_city\":null,\"fantasy_data_id\":21956,\"years_exp\":0,\"hashtag\":\"#DarrellStewartJr-NFL-FA-0\",\"search_first_name\":\"darrell\",\"rotowire_id\":14631,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Darrell Stewart Jr.\",\"sportradar_id\":\"4f077de6-d368-4246-84d5-de809736ddb2\",\"pandascore_id\":null,\"yahoo_id\":33233,\"last_name\":\"Stewart Jr.\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'0\\\"\",\"search_full_name\":\"darrellstewartjr\",\"birth_date\":\"1996-07-14\",\"espn_id\":3929831},\"4109\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033903\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605408961131,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4109\",\"birth_city\":null,\"fantasy_data_id\":18955,\"years_exp\":3,\"hashtag\":\"#JoshJones-NFL-JAX-29\",\"search_first_name\":\"josh\",\"rotowire_id\":11998,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1150,\"age\":26,\"full_name\":\"Josh Jones\",\"sportradar_id\":\"8ddd0a30-563c-4fae-a6a8-a19747721924\",\"pandascore_id\":null,\"yahoo_id\":30174,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Walled Lake Western (MI)\",\"depth_chart_order\":null,\"stats_id\":742366,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshjones\",\"birth_date\":\"1994-09-20\",\"espn_id\":3051716},\"7469\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austen\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603411249240,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pleasants\",\"depth_chart_position\":null,\"player_id\":\"7469\",\"birth_city\":null,\"fantasy_data_id\":22444,\"years_exp\":0,\"hashtag\":\"#AustenPleasants-NFL-JAX-64\",\"search_first_name\":\"austen\",\"rotowire_id\":14958,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Austen Pleasants\",\"sportradar_id\":\"cedc5875-2b9f-4fc7-8e86-6895732bafa7\",\"pandascore_id\":null,\"yahoo_id\":33133,\"last_name\":\"Pleasants\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":\"Dawson-Bryant Coal Grove (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'7\\\"\",\"search_full_name\":\"austenpleasants\",\"birth_date\":\"1997-08-22\",\"espn_id\":3920814},\"5817\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1546297547418,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"leftwich\",\"depth_chart_position\":null,\"player_id\":\"5817\",\"birth_city\":null,\"fantasy_data_id\":1036,\"years_exp\":0,\"hashtag\":\"#ByronLeftwich-NFL-FA-4\",\"search_first_name\":\"byron\",\"rotowire_id\":null,\"rotoworld_id\":1478,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Byron Leftwich\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Leftwich\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"byronleftwich\",\"birth_date\":\"1980-01-14\",\"espn_id\":null},\"1697\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030121\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535331012662,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"1697\",\"birth_city\":null,\"fantasy_data_id\":15562,\"years_exp\":7,\"hashtag\":\"#DavidKing-NFL-FA-95\",\"search_first_name\":\"david\",\"rotowire_id\":8968,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"David King\",\"sportradar_id\":\"a1e8bc26-2f4a-48f3-b2dc-549d8bc71067\",\"pandascore_id\":null,\"yahoo_id\":26862,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Strake Jesuit Prep (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"281\",\"height\":\"6'4\\\"\",\"search_full_name\":\"davidking\",\"birth_date\":\"1989-12-27\",\"espn_id\":15905},\"1617\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030161\",\"first_name\":\"Bradley\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604198711798,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mcdougald\",\"depth_chart_position\":null,\"player_id\":\"1617\",\"birth_city\":null,\"fantasy_data_id\":15302,\"years_exp\":7,\"hashtag\":\"#BradleyMcDougald-NFL-NYJ-30\",\"search_first_name\":\"bradley\",\"rotowire_id\":9111,\"rotoworld_id\":8963,\"active\":true,\"search_rank\":752,\"age\":30,\"full_name\":\"Bradley McDougald\",\"sportradar_id\":\"9b80f314-0cd8-4a35-918f-a405b680e879\",\"pandascore_id\":null,\"yahoo_id\":27180,\"last_name\":\"McDougald\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Scioto (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bradleymcdougald\",\"birth_date\":\"1990-11-15\",\"espn_id\":16269},\"4040\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033857\",\"first_name\":\"JuJu\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606342503269,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"smithschuster\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4040\",\"birth_city\":null,\"fantasy_data_id\":18883,\"years_exp\":3,\"hashtag\":\"#JuJuSmithSchuster-NFL-PIT-19\",\"search_first_name\":\"juju\",\"rotowire_id\":11877,\"rotoworld_id\":12184,\"active\":true,\"search_rank\":39,\"age\":24,\"full_name\":\"JuJu Smith-Schuster\",\"sportradar_id\":\"9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9\",\"pandascore_id\":null,\"yahoo_id\":30175,\"last_name\":\"Smith-Schuster\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Southern California\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":1,\"stats_id\":835909,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jujusmithschuster\",\"birth_date\":\"1996-11-22\",\"espn_id\":3120348},\"2004\":{\"position\":\"WR\",\"injury_notes\":\"Latimer may not practive or attend games.\",\"birth_country\":null,\"gsis_id\":\"00-0031344\",\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598209215126,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"latimer\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2004\",\"birth_city\":null,\"fantasy_data_id\":16278,\"years_exp\":6,\"hashtag\":\"#CodyLatimer-NFL-FA-12\",\"search_first_name\":\"cody\",\"rotowire_id\":9567,\"rotoworld_id\":9535,\"active\":true,\"search_rank\":798,\"age\":27,\"full_name\":\"Cody Latimer\",\"sportradar_id\":\"fbb1cc32-4cbd-4089-b8ec-1e7bce8da408\",\"pandascore_id\":null,\"yahoo_id\":27584,\"last_name\":\"Latimer\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Jefferson Township (OH)\",\"depth_chart_order\":5,\"stats_id\":609050,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"codylatimer\",\"birth_date\":\"1992-10-10\",\"espn_id\":16793},\"4917\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daryl\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"virgies\",\"depth_chart_position\":null,\"player_id\":\"4917\",\"birth_city\":null,\"fantasy_data_id\":18835,\"years_exp\":1,\"hashtag\":\"#DarylVirgies-NFL-NYG-35\",\"search_first_name\":\"daryl\",\"rotowire_id\":11729,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Daryl Virgies\",\"sportradar_id\":\"4715105f-88a0-4b8e-98ac-8ccf7e512f27\",\"pandascore_id\":null,\"yahoo_id\":30097,\"last_name\":\"Virgies\",\"metadata\":null,\"college\":\"Virginia-Lynchburg\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"217\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darylvirgies\",\"birth_date\":null,\"espn_id\":null},\"5430\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034102\",\"first_name\":\"Timon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600221640137,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parris\",\"depth_chart_position\":null,\"player_id\":\"5430\",\"birth_city\":null,\"fantasy_data_id\":20392,\"years_exp\":2,\"hashtag\":\"#TimonParris-NFL-CLE-72\",\"search_first_name\":\"timon\",\"rotowire_id\":12940,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Timon Parris\",\"sportradar_id\":\"5e8ec29b-9769-4071-b9f8-3722cd138fc1\",\"pandascore_id\":null,\"yahoo_id\":31403,\"last_name\":\"Parris\",\"metadata\":null,\"college\":\"Stony Brook\",\"high_school\":\"Floral Park (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"timonparris\",\"birth_date\":\"1995-09-11\",\"espn_id\":3049959},\"4792\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walton\",\"depth_chart_position\":null,\"player_id\":\"4792\",\"birth_city\":null,\"fantasy_data_id\":19701,\"years_exp\":2,\"hashtag\":\"#JonathanWalton-NFL-FA-59\",\"search_first_name\":\"jonathan\",\"rotowire_id\":12164,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jonathan Walton\",\"sportradar_id\":\"38e717fc-c7b1-457c-81c1-c20aeba602ad\",\"pandascore_id\":null,\"yahoo_id\":30916,\"last_name\":\"Walton\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonathanwalton\",\"birth_date\":\"1994-09-20\",\"espn_id\":3048922},\"688\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scheffler\",\"depth_chart_position\":null,\"player_id\":\"688\",\"birth_city\":null,\"fantasy_data_id\":11998,\"years_exp\":8,\"hashtag\":\"#TonyScheffler-NFL-FA-85\",\"search_first_name\":\"tony\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Tony Scheffler\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Scheffler\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tonyscheffler\",\"birth_date\":\"1983-02-15\",\"espn_id\":null},\"6788\":{\"position\":\"DB\",\"injury_notes\":\"McKinney is expected to immediately undergo surgery and will take 10 weeks or more to return to the field.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Xavier\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606181415499,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"mckinney\",\"depth_chart_position\":null,\"player_id\":\"6788\",\"birth_city\":null,\"fantasy_data_id\":21936,\"years_exp\":0,\"hashtag\":\"#XavierMcKinney-NFL-NYG-29\",\"search_first_name\":\"xavier\",\"rotowire_id\":14617,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Xavier McKinney\",\"sportradar_id\":\"dbeff2ee-8d26-48f3-b345-3cd88c374c87\",\"pandascore_id\":null,\"yahoo_id\":32706,\"last_name\":\"McKinney\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Roswell (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'1\\\"\",\"search_full_name\":\"xaviermckinney\",\"birth_date\":\"1999-08-09\",\"espn_id\":4241470},\"2114\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031209\",\"first_name\":\"Senorise\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605746443749,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perry\",\"depth_chart_position\":\"RB\",\"player_id\":\"2114\",\"birth_city\":null,\"fantasy_data_id\":16441,\"years_exp\":6,\"hashtag\":\"#SenorisePerry-NFL-TEN-20\",\"search_first_name\":\"senorise\",\"rotowire_id\":9872,\"rotoworld_id\":null,\"active\":true,\"search_rank\":535,\"age\":29,\"full_name\":\"Senorise Perry\",\"sportradar_id\":\"3d94860c-82db-43fd-aa99-3b72390111a4\",\"pandascore_id\":null,\"yahoo_id\":28223,\"last_name\":\"Perry\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Louisville\",\"high_school\":\"Chattooga (GA)\",\"depth_chart_order\":6,\"stats_id\":553705,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"senoriseperry\",\"birth_date\":\"1991-09-19\",\"espn_id\":17421},\"1\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"GJ\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kinne\",\"depth_chart_position\":null,\"player_id\":\"1\",\"birth_city\":null,\"fantasy_data_id\":18,\"years_exp\":1,\"hashtag\":\"#GJKinne-NFL-FA-2\",\"search_first_name\":\"gj\",\"rotowire_id\":8833,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"GJ Kinne\",\"sportradar_id\":\"a668bd7d-56e5-45ff-a2c8-d618cd1fef95\",\"pandascore_id\":null,\"yahoo_id\":26154,\"last_name\":\"Kinne\",\"metadata\":null,\"college\":\"Tulsa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":399453,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'2\\\"\",\"search_full_name\":\"gjkinne\",\"birth_date\":\"1988-12-01\",\"espn_id\":15299},\"6232\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1560381047133,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burrell\",\"depth_chart_position\":null,\"player_id\":\"6232\",\"birth_city\":null,\"fantasy_data_id\":21157,\"years_exp\":0,\"hashtag\":\"#JalinBurrell-NFL-FA-13\",\"search_first_name\":\"jalin\",\"rotowire_id\":14179,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jalin Burrell\",\"sportradar_id\":\"799a7d8e-d9c6-4b5c-af8a-40fa6cb553a9\",\"pandascore_id\":null,\"yahoo_id\":32354,\"last_name\":\"Burrell\",\"metadata\":null,\"college\":\"New Mexico\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jalinburrell\",\"birth_date\":\"1996-09-20\",\"espn_id\":4261170},\"798\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028038\",\"first_name\":\"Da'Norris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1557149719231,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"searcy\",\"depth_chart_position\":\"SS\",\"player_id\":\"798\",\"birth_city\":null,\"fantasy_data_id\":12741,\"years_exp\":9,\"hashtag\":\"#DaNorrisSearcy-NFL-FA-21\",\"search_first_name\":\"danorris\",\"rotowire_id\":7537,\"rotoworld_id\":6634,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Da'Norris Searcy\",\"sportradar_id\":\"d0840d54-b383-4e26-9055-5a57067951e5\",\"pandascore_id\":null,\"yahoo_id\":24887,\"last_name\":\"Searcy\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Towers (GA)\",\"depth_chart_order\":3,\"stats_id\":400052,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'11\\\"\",\"search_full_name\":\"danorrissearcy\",\"birth_date\":\"1988-11-16\",\"espn_id\":14143},\"1408\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030496\",\"first_name\":\"Le'Veon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606125011036,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":\"RB\",\"player_id\":\"1408\",\"birth_city\":null,\"fantasy_data_id\":14967,\"years_exp\":7,\"hashtag\":\"#LeVeonBell-NFL-KC-26\",\"search_first_name\":\"leveon\",\"rotowire_id\":8617,\"rotoworld_id\":8390,\"active\":true,\"search_rank\":38,\"age\":28,\"full_name\":\"Le'Veon Bell\",\"sportradar_id\":\"7735c02a-ee75-447c-86e6-6c2168500050\",\"pandascore_id\":null,\"yahoo_id\":26671,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Groveport Madison (OH)\",\"depth_chart_order\":2,\"stats_id\":543654,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"leveonbell\",\"birth_date\":\"1992-02-18\",\"espn_id\":15825},\"244\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grubbs\",\"depth_chart_position\":null,\"player_id\":\"244\",\"birth_city\":null,\"fantasy_data_id\":6140,\"years_exp\":13,\"hashtag\":\"#BenGrubbs-NFL-FA-66\",\"search_first_name\":\"ben\",\"rotowire_id\":5300,\"rotoworld_id\":4212,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Ben Grubbs\",\"sportradar_id\":\"9ef3f249-6ff4-442e-84f4-b915f96aeb28\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Grubbs\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Elmore County (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bengrubbs\",\"birth_date\":\"1984-03-10\",\"espn_id\":10473},\"5983\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034977\",\"first_name\":\"Sheldrick\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606529729745,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redwine\",\"depth_chart_position\":\"FS\",\"player_id\":\"5983\",\"birth_city\":null,\"fantasy_data_id\":20923,\"years_exp\":1,\"hashtag\":\"#SheldrickRedwine-NFL-CLE-29\",\"search_first_name\":\"sheldrick\",\"rotowire_id\":13537,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1594,\"age\":24,\"full_name\":\"Sheldrick Redwine\",\"sportradar_id\":\"32b601e7-4491-479a-895a-2f96add83e09\",\"pandascore_id\":null,\"yahoo_id\":31951,\"last_name\":\"Redwine\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miami Killian (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sheldrickredwine\",\"birth_date\":\"1996-11-06\",\"espn_id\":3917852},\"6390\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035607\",\"first_name\":\"Marquise\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"copeland\",\"depth_chart_position\":null,\"player_id\":\"6390\",\"birth_city\":null,\"fantasy_data_id\":21298,\"years_exp\":1,\"hashtag\":\"#MarquiseCopeland-NFL-LAR-93\",\"search_first_name\":\"marquise\",\"rotowire_id\":14014,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1711,\"age\":23,\"full_name\":\"Marquise Copeland\",\"sportradar_id\":\"7e4f9b27-edc4-4f5c-b77a-81604220a454\",\"pandascore_id\":null,\"yahoo_id\":32130,\"last_name\":\"Copeland\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Bedford (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marquisecopeland\",\"birth_date\":\"1997-05-09\",\"espn_id\":3914150},\"1815\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030908\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1581711651814,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ladler\",\"depth_chart_position\":\"FS\",\"player_id\":\"1815\",\"birth_city\":null,\"fantasy_data_id\":16000,\"years_exp\":6,\"hashtag\":\"#KennyLadler-NFL-FA-0\",\"search_first_name\":\"kenny\",\"rotowire_id\":9299,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Kenny Ladler\",\"sportradar_id\":\"d452a634-8f68-4bae-808d-5ce4d9630970\",\"pandascore_id\":null,\"yahoo_id\":28153,\"last_name\":\"Ladler\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kennyladler\",\"birth_date\":\"1992-06-23\",\"espn_id\":17317},\"5324\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Parris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bennett\",\"depth_chart_position\":null,\"player_id\":\"5324\",\"birth_city\":null,\"fantasy_data_id\":20400,\"years_exp\":2,\"hashtag\":\"#ParrisBennett-NFL-FA-49\",\"search_first_name\":\"parris\",\"rotowire_id\":12658,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Parris Bennett\",\"sportradar_id\":\"52b3d4dc-9441-48e8-acc2-31b5cc6e40f0\",\"pandascore_id\":null,\"yahoo_id\":31430,\"last_name\":\"Bennett\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"parrisbennett\",\"birth_date\":\"1996-02-21\",\"espn_id\":3124003},\"7354\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stanley\",\"depth_chart_position\":null,\"player_id\":\"7354\",\"birth_city\":null,\"fantasy_data_id\":22342,\"years_exp\":0,\"hashtag\":\"#DonellStanley-NFL-FA-0\",\"search_first_name\":\"donell\",\"rotowire_id\":14865,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Donell Stanley\",\"sportradar_id\":\"4fd34650-15f9-4ce7-926d-b31ee4ffd570\",\"pandascore_id\":null,\"yahoo_id\":33244,\"last_name\":\"Stanley\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'4\\\"\",\"search_full_name\":\"donellstanley\",\"birth_date\":\"1995-06-27\",\"espn_id\":3126490},\"668\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"babin\",\"depth_chart_position\":null,\"player_id\":\"668\",\"birth_city\":null,\"fantasy_data_id\":11773,\"years_exp\":16,\"hashtag\":\"#JasonBabin-NFL-FA-58\",\"search_first_name\":\"jason\",\"rotowire_id\":3899,\"rotoworld_id\":2783,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Jason Babin\",\"sportradar_id\":\"ba9b2f3b-ffb8-4d74-8527-168a78df9b13\",\"pandascore_id\":null,\"yahoo_id\":6786,\"last_name\":\"Babin\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":\"Paw Paw (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jasonbabin\",\"birth_date\":\"1980-05-24\",\"espn_id\":5552},\"6326\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035509\",\"first_name\":\"Trevon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":null,\"player_id\":\"6326\",\"birth_city\":null,\"fantasy_data_id\":21232,\"years_exp\":1,\"hashtag\":\"#TrevonSanders-NFL-FA-64\",\"search_first_name\":\"trevon\",\"rotowire_id\":14228,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Trevon Sanders\",\"sportradar_id\":\"d8afa121-1cd9-499c-924c-364a6e0e0f7c\",\"pandascore_id\":null,\"yahoo_id\":32532,\"last_name\":\"Sanders\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trevonsanders\",\"birth_date\":\"1997-04-25\",\"espn_id\":3918417},\"BUF\":{\"team\":\"BUF\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"BUF\",\"last_name\":\"Bills\",\"injury_status\":null,\"first_name\":\"Buffalo\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"1429\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030566\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604262020616,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"swearinger\",\"depth_chart_position\":\"FS\",\"player_id\":\"1429\",\"birth_city\":null,\"fantasy_data_id\":14989,\"years_exp\":7,\"hashtag\":\"#DJSwearinger-NFL-NO-36\",\"search_first_name\":\"dj\",\"rotowire_id\":8690,\"rotoworld_id\":8455,\"active\":true,\"search_rank\":723,\"age\":29,\"full_name\":\"D.J. Swearinger\",\"sportradar_id\":\"5486420b-b40c-4e7c-ab47-9d70b1673c3b\",\"pandascore_id\":null,\"yahoo_id\":26680,\"last_name\":\"Swearinger\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Greenwood (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"djswearinger\",\"birth_date\":\"1991-09-01\",\"espn_id\":15865},\"5306\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034812\",\"first_name\":\"Travin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1599345357816,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"5306\",\"birth_city\":null,\"fantasy_data_id\":20030,\"years_exp\":2,\"hashtag\":\"#TravinHoward-NFL-LAR-48\",\"search_first_name\":\"travin\",\"rotowire_id\":13008,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Travin Howard\",\"sportradar_id\":\"7874842b-9b5f-4307-81cd-37f48e981e9f\",\"pandascore_id\":null,\"yahoo_id\":31201,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Longview (TX)\",\"depth_chart_order\":null,\"stats_id\":822440,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'1\\\"\",\"search_full_name\":\"travinhoward\",\"birth_date\":\"1996-05-10\",\"espn_id\":3116424},\"3371\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033049\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605042014481,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RB\",\"player_id\":\"3371\",\"birth_city\":null,\"fantasy_data_id\":18132,\"years_exp\":4,\"hashtag\":\"#DariusJackson-NFL-IND-41\",\"search_first_name\":\"darius\",\"rotowire_id\":11190,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1038,\"age\":26,\"full_name\":\"Darius Jackson\",\"sportradar_id\":\"b6ec1773-309e-422c-b82c-b55a557031d6\",\"pandascore_id\":null,\"yahoo_id\":29450,\"last_name\":\"Jackson\",\"metadata\":null,\"college\":\"Eastern Michigan\",\"high_school\":\"Sparta (IL)\",\"depth_chart_order\":5,\"stats_id\":694135,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dariusjackson\",\"birth_date\":\"1993-12-01\",\"espn_id\":2980197},\"735\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026019\",\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1521267001435,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodhead\",\"depth_chart_position\":null,\"player_id\":\"735\",\"birth_city\":null,\"fantasy_data_id\":12317,\"years_exp\":12,\"hashtag\":\"#DannyWoodhead-NFL-FA-39\",\"search_first_name\":\"danny\",\"rotowire_id\":5816,\"rotoworld_id\":5297,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Danny Woodhead\",\"sportradar_id\":\"b66acf1d-a43a-46af-bc51-7595c5add61b\",\"pandascore_id\":null,\"yahoo_id\":9560,\"last_name\":\"Woodhead\",\"metadata\":null,\"college\":\"Chadron State\",\"high_school\":\"North Platte (NE)\",\"depth_chart_order\":null,\"stats_id\":337490,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'8\\\"\",\"search_full_name\":\"dannywoodhead\",\"birth_date\":\"1985-01-25\",\"espn_id\":11788},\"1378\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029895\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1576947053964,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jensen\",\"depth_chart_position\":\"C\",\"player_id\":\"1378\",\"birth_city\":null,\"fantasy_data_id\":14900,\"years_exp\":7,\"hashtag\":\"#RyanJensen-NFL-TB-66\",\"search_first_name\":\"ryan\",\"rotowire_id\":8981,\"rotoworld_id\":8602,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ryan Jensen\",\"sportradar_id\":\"50287cd3-afea-47f4-aa56-98a82aa87cf0\",\"pandascore_id\":null,\"yahoo_id\":26826,\"last_name\":\"Jensen\",\"metadata\":null,\"college\":\"Colorado State-Pueblo\",\"high_school\":\"Fort Morgan (CO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"319\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryanjensen\",\"birth_date\":\"1991-05-27\",\"espn_id\":16038},\"2689\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031427\",\"first_name\":\"Todd\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605046214809,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2689\",\"birth_city\":null,\"fantasy_data_id\":17157,\"years_exp\":6,\"hashtag\":\"#ToddDavis-NFL-MIN-40\",\"search_first_name\":\"todd\",\"rotowire_id\":9998,\"rotoworld_id\":10238,\"active\":true,\"search_rank\":926,\"age\":28,\"full_name\":\"Todd Davis\",\"sportradar_id\":\"a5c2a8bd-7935-4819-800f-32e3eefe4f61\",\"pandascore_id\":null,\"yahoo_id\":28312,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Sacramento State\",\"high_school\":\"Paraclete (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"todddavis\",\"birth_date\":\"1992-05-17\",\"espn_id\":17497},\"4222\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033585\",\"first_name\":\"Brad\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1552536002335,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kaaya\",\"depth_chart_position\":null,\"player_id\":\"4222\",\"birth_city\":null,\"fantasy_data_id\":19068,\"years_exp\":3,\"hashtag\":\"#BradKaaya-NFL-FA-9\",\"search_first_name\":\"brad\",\"rotowire_id\":11835,\"rotoworld_id\":12416,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brad Kaaya\",\"sportradar_id\":\"5e5ea79d-7127-4e65-9cd5-b2a0a1fe910e\",\"pandascore_id\":null,\"yahoo_id\":30328,\"last_name\":\"Kaaya\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830889,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"214\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bradkaaya\",\"birth_date\":\"1995-09-03\",\"espn_id\":3123048},\"1129\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0029524\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1570132226427,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"LG\",\"player_id\":\"1129\",\"birth_city\":null,\"fantasy_data_id\":14061,\"years_exp\":8,\"hashtag\":\"#JeffAllen-NFL-FA-79\",\"search_first_name\":\"jeff\",\"rotowire_id\":8206,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jeff Allen\",\"sportradar_id\":\"83fac4ad-a729-4774-a44e-20713aa01319\",\"pandascore_id\":null,\"yahoo_id\":25754,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"King College Prep (IL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jeffallen\",\"birth_date\":\"1990-01-08\",\"espn_id\":14990},\"2176\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Yawin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smallwood\",\"depth_chart_position\":null,\"player_id\":\"2176\",\"birth_city\":null,\"fantasy_data_id\":16539,\"years_exp\":1,\"hashtag\":\"#YawinSmallwood-NFL-FA-54\",\"search_first_name\":\"yawin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Yawin Smallwood\",\"sportradar_id\":\"a86c98b9-983d-4dda-8d1d-2acc45e7ca30\",\"pandascore_id\":null,\"yahoo_id\":27781,\"last_name\":\"Smallwood\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'2\\\"\",\"search_full_name\":\"yawinsmallwood\",\"birth_date\":\"1991-12-25\",\"espn_id\":16896},\"4076\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033888\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602386710262,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ramczyk\",\"depth_chart_position\":\"RT\",\"player_id\":\"4076\",\"birth_city\":null,\"fantasy_data_id\":18922,\"years_exp\":3,\"hashtag\":\"#RyanRamczyk-NFL-NO-71\",\"search_first_name\":\"ryan\",\"rotowire_id\":12198,\"rotoworld_id\":12248,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ryan Ramczyk\",\"sportradar_id\":\"d77eae11-9ecb-4713-878a-29900d67267b\",\"pandascore_id\":null,\"yahoo_id\":30145,\"last_name\":\"Ramczyk\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Stevens Point (WI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ryanramczyk\",\"birth_date\":\"1994-04-22\",\"espn_id\":3917676},\"6888\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"OL\",\"DB\"],\"news_updated\":1606284356605,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"winfield\",\"depth_chart_position\":\"SS\",\"player_id\":\"6888\",\"birth_city\":null,\"fantasy_data_id\":21940,\"years_exp\":0,\"hashtag\":\"#AntoineWinfield-NFL-TB-31\",\"search_first_name\":\"antoine\",\"rotowire_id\":14484,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1855,\"age\":22,\"full_name\":\"Antoine Winfield\",\"sportradar_id\":\"27732f2b-2009-4954-a0a0-d29f5ce1abdf\",\"pandascore_id\":null,\"yahoo_id\":32715,\"last_name\":\"Winfield\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":\"The Woodlands (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'9\\\"\",\"search_full_name\":\"antoinewinfield\",\"birth_date\":\"1998-08-16\",\"espn_id\":4034790},\"305\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"305\",\"birth_city\":null,\"fantasy_data_id\":7534,\"years_exp\":14,\"hashtag\":\"#JustinSmith-NFL-FA-94\",\"search_first_name\":\"justin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Justin Smith\",\"sportradar_id\":\"7d7a1e98-3cb7-4a67-837d-49dd23f22c6e\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'4\\\"\",\"search_full_name\":\"justinsmith\",\"birth_date\":\"1979-09-30\",\"espn_id\":2552},\"6558\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035395\",\"first_name\":\"O'Shea\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599193855144,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dugas\",\"depth_chart_position\":null,\"player_id\":\"6558\",\"birth_city\":null,\"fantasy_data_id\":21151,\"years_exp\":1,\"hashtag\":\"#OSheaDugas-NFL-CIN-70\",\"search_first_name\":\"oshea\",\"rotowire_id\":13723,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"O'Shea Dugas\",\"sportradar_id\":\"b170b3f1-682d-411c-ac28-b9d2a60e75a7\",\"pandascore_id\":null,\"yahoo_id\":32465,\"last_name\":\"Dugas\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Northside (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'6\\\"\",\"search_full_name\":\"osheadugas\",\"birth_date\":\"1996-09-22\",\"espn_id\":3914371},\"1157\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"1157\",\"birth_city\":null,\"fantasy_data_id\":14215,\"years_exp\":8,\"hashtag\":\"#TravisLewis-NFL-FA-50\",\"search_first_name\":\"travis\",\"rotowire_id\":8274,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Travis Lewis\",\"sportradar_id\":\"183b16cf-8a41-4ff0-9b18-f09c3d22655b\",\"pandascore_id\":null,\"yahoo_id\":25933,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Robert E Lee (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"travislewis\",\"birth_date\":\"1988-01-15\",\"espn_id\":15011},\"5355\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sharga\",\"depth_chart_position\":null,\"player_id\":\"5355\",\"birth_city\":null,\"fantasy_data_id\":20415,\"years_exp\":1,\"hashtag\":\"#NickSharga-NFL-OAK-4\",\"search_first_name\":\"nick\",\"rotowire_id\":13157,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1050,\"age\":null,\"full_name\":\"Nick Sharga\",\"sportradar_id\":\"1ffa285c-93a8-4af7-a2a5-c4fff41bb0e8\",\"pandascore_id\":null,\"yahoo_id\":31483,\"last_name\":\"Sharga\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":788388,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"OAK\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nicksharga\",\"birth_date\":null,\"espn_id\":3064131},\"1905\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031361\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606194950365,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kirksey\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1905\",\"birth_city\":null,\"fantasy_data_id\":16133,\"years_exp\":6,\"hashtag\":\"#ChristianKirksey-NFL-GB-58\",\"search_first_name\":\"christian\",\"rotowire_id\":9375,\"rotoworld_id\":9641,\"active\":true,\"search_rank\":784,\"age\":28,\"full_name\":\"Christian Kirksey\",\"sportradar_id\":\"462bfd22-1159-408f-8f92-7fde712ffc3a\",\"pandascore_id\":null,\"yahoo_id\":27599,\"last_name\":\"Kirksey\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Hazelwood East (MO)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christiankirksey\",\"birth_date\":\"1992-08-31\",\"espn_id\":16767},\"627\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027691\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602625249426,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roberts\",\"depth_chart_position\":\"RWR\",\"player_id\":\"627\",\"birth_city\":null,\"fantasy_data_id\":11565,\"years_exp\":10,\"hashtag\":\"#AndreRoberts-NFL-BUF-18\",\"search_first_name\":\"andre\",\"rotowire_id\":6506,\"rotoworld_id\":5888,\"active\":true,\"search_rank\":399,\"age\":32,\"full_name\":\"Andre Roberts\",\"sportradar_id\":\"9691f874-be36-4529-a7eb-dde22ee4a848\",\"pandascore_id\":null,\"yahoo_id\":24063,\"last_name\":\"Roberts\",\"metadata\":null,\"college\":\"Citadel\",\"high_school\":\"Spring Valley (SC)\",\"depth_chart_order\":2,\"stats_id\":329031,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"andreroberts\",\"birth_date\":\"1988-01-09\",\"espn_id\":13226},\"3136\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1581627003097,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lynn\",\"depth_chart_position\":null,\"player_id\":\"3136\",\"birth_city\":null,\"fantasy_data_id\":17890,\"years_exp\":0,\"hashtag\":\"#AnthonyLynn-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":null,\"rotoworld_id\":10321,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anthony Lynn\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lynn\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"anthonylynn\",\"birth_date\":null,\"espn_id\":null},\"2015\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031297\",\"first_name\":\"Dee\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603312839791,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":null,\"player_id\":\"2015\",\"birth_city\":null,\"fantasy_data_id\":16294,\"years_exp\":6,\"hashtag\":\"#DeeFord-NFL-SF-55\",\"search_first_name\":\"dee\",\"rotowire_id\":9342,\"rotoworld_id\":9353,\"active\":true,\"search_rank\":800,\"age\":29,\"full_name\":\"Dee Ford\",\"sportradar_id\":\"6c434322-0ee2-4df5-a5e8-1a6e5f12285e\",\"pandascore_id\":null,\"yahoo_id\":27551,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"St. Clair County (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deeford\",\"birth_date\":\"1991-03-19\",\"espn_id\":16707},\"611\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clausen\",\"depth_chart_position\":null,\"player_id\":\"611\",\"birth_city\":null,\"fantasy_data_id\":11447,\"years_exp\":10,\"hashtag\":\"#JimmyClausen-NFL-FA-2\",\"search_first_name\":\"jimmy\",\"rotowire_id\":6388,\"rotoworld_id\":5574,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jimmy Clausen\",\"sportradar_id\":\"01654256-1c2b-4729-a166-dd54358a71da\",\"pandascore_id\":null,\"yahoo_id\":24023,\"last_name\":\"Clausen\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Oaks (CA)\",\"depth_chart_order\":null,\"stats_id\":380026,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jimmyclausen\",\"birth_date\":\"1987-09-21\",\"espn_id\":13198},\"2531\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031624\",\"first_name\":\"Edmond\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605054061515,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"LB\",\"player_id\":\"2531\",\"birth_city\":null,\"fantasy_data_id\":16991,\"years_exp\":5,\"hashtag\":\"#EdmondRobinson-NFL-ATL-46\",\"search_first_name\":\"edmond\",\"rotowire_id\":10497,\"rotoworld_id\":null,\"active\":true,\"search_rank\":907,\"age\":28,\"full_name\":\"Edmond Robinson\",\"sportradar_id\":\"530f22b9-0f36-4ad1-9ead-ea44292b83a8\",\"pandascore_id\":null,\"yahoo_id\":28620,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Newberry\",\"high_school\":\"St. John's (SC)\",\"depth_chart_order\":3,\"stats_id\":845648,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"edmondrobinson\",\"birth_date\":\"1992-02-23\",\"espn_id\":3137087},\"6070\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035307\",\"first_name\":\"Jimmy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600014057677,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moreland\",\"depth_chart_position\":\"NB\",\"player_id\":\"6070\",\"birth_city\":null,\"fantasy_data_id\":20885,\"years_exp\":1,\"hashtag\":\"#JimmyMoreland-NFL-WAS-20\",\"search_first_name\":\"jimmy\",\"rotowire_id\":13603,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1579,\"age\":25,\"full_name\":\"Jimmy Moreland\",\"sportradar_id\":\"4bbe8ab7-3ae2-42a6-a471-fd2b344843a2\",\"pandascore_id\":null,\"yahoo_id\":32059,\"last_name\":\"Moreland\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":\"Royal Palm Beach (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jimmymoreland\",\"birth_date\":\"1995-08-26\",\"espn_id\":3120508},\"4520\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033517\",\"first_name\":\"Travin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564529107962,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dural\",\"depth_chart_position\":null,\"player_id\":\"4520\",\"birth_city\":null,\"fantasy_data_id\":19393,\"years_exp\":3,\"hashtag\":\"#TravinDural-NFL-FA-14\",\"search_first_name\":\"travin\",\"rotowire_id\":11855,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Travin Dural\",\"sportradar_id\":\"e2d7da0f-9074-43e1-95be-0ee9e7cda1e2\",\"pandascore_id\":null,\"yahoo_id\":30410,\"last_name\":\"Dural\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651007,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"travindural\",\"birth_date\":\"1993-11-19\",\"espn_id\":2976557},\"2524\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031621\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606359004126,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rodgers\",\"depth_chart_position\":\"RT\",\"player_id\":\"2524\",\"birth_city\":null,\"fantasy_data_id\":16984,\"years_exp\":5,\"hashtag\":\"#JakeRodgers-NFL-BAL-69\",\"search_first_name\":\"jake\",\"rotowire_id\":10302,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jake Rodgers\",\"sportradar_id\":\"81066eaf-4e76-4870-99e3-407b753cdf8c\",\"pandascore_id\":null,\"yahoo_id\":28613,\"last_name\":\"Rodgers\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Eastern Washington\",\"high_school\":\"Shadle Park (WA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jakerodgers\",\"birth_date\":\"1991-09-10\",\"espn_id\":2517074},\"3112\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bob\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"quinn\",\"depth_chart_position\":null,\"player_id\":\"3112\",\"birth_city\":null,\"fantasy_data_id\":17865,\"years_exp\":0,\"hashtag\":\"#BobQuinn-NFL-FA-0\",\"search_first_name\":\"bob\",\"rotowire_id\":null,\"rotoworld_id\":11211,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Bob Quinn\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Quinn\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"bobquinn\",\"birth_date\":null,\"espn_id\":null},\"3341\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032790\",\"first_name\":\"DeAndre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603057509970,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"houstoncarson\",\"depth_chart_position\":\"SS\",\"player_id\":\"3341\",\"birth_city\":null,\"fantasy_data_id\":18102,\"years_exp\":4,\"hashtag\":\"#DeAndreHoustonCarson-NFL-CHI-36\",\"search_first_name\":\"deandre\",\"rotowire_id\":11060,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1026,\"age\":27,\"full_name\":\"DeAndre Houston-Carson\",\"sportradar_id\":\"43ccb78e-353d-4d0b-ac51-4103415a568c\",\"pandascore_id\":null,\"yahoo_id\":29419,\"last_name\":\"Houston-Carson\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Massaponax (VA)\",\"depth_chart_order\":3,\"stats_id\":594725,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'0\\\"\",\"search_full_name\":\"deandrehoustoncarson\",\"birth_date\":\"1993-04-13\",\"espn_id\":2566034},\"6137\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035308\",\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606189815249,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"sweeney\",\"depth_chart_position\":\"TE\",\"player_id\":\"6137\",\"birth_city\":null,\"fantasy_data_id\":20957,\"years_exp\":1,\"hashtag\":\"#TommySweeney-NFL-BUF-89\",\"search_first_name\":\"tommy\",\"rotowire_id\":13667,\"rotoworld_id\":null,\"active\":true,\"search_rank\":493,\"age\":25,\"full_name\":\"Tommy Sweeney\",\"sportradar_id\":\"ec63ee49-3a03-44ca-a083-3916f0bccd76\",\"pandascore_id\":null,\"yahoo_id\":32060,\"last_name\":\"Sweeney\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Don Bosco Prep (NJ)\",\"depth_chart_order\":5,\"stats_id\":836094,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tommysweeney\",\"birth_date\":\"1995-07-01\",\"espn_id\":3122818},\"4928\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anas\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hasic\",\"depth_chart_position\":null,\"player_id\":\"4928\",\"birth_city\":null,\"fantasy_data_id\":19359,\"years_exp\":1,\"hashtag\":\"#AnasHasic-NFL-KC-0\",\"search_first_name\":\"anas\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Anas Hasic\",\"sportradar_id\":\"c4f20113-f0b3-40ab-84b8-16c6cf4e1562\",\"pandascore_id\":null,\"yahoo_id\":30680,\"last_name\":\"Hasic\",\"metadata\":null,\"college\":\"West Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"anashasic\",\"birth_date\":null,\"espn_id\":null},\"5019\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034770\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1599334257178,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"LDE\",\"player_id\":\"5019\",\"birth_city\":null,\"fantasy_data_id\":19874,\"years_exp\":2,\"hashtag\":\"#ChadThomas-NFL-FA-0\",\"search_first_name\":\"chad\",\"rotowire_id\":12749,\"rotoworld_id\":13232,\"active\":true,\"search_rank\":1314,\"age\":24,\"full_name\":\"Chad Thomas\",\"sportradar_id\":\"8fecfc12-c9be-400e-8b5a-4684c6884daa\",\"pandascore_id\":null,\"yahoo_id\":31037,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chadthomas\",\"birth_date\":\"1995-10-12\",\"espn_id\":3123045},\"3959\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1547222708880,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"roman\",\"depth_chart_position\":null,\"player_id\":\"3959\",\"birth_city\":null,\"fantasy_data_id\":18792,\"years_exp\":0,\"hashtag\":\"#GregRoman-NFL-FA-0\",\"search_first_name\":\"greg\",\"rotowire_id\":null,\"rotoworld_id\":9275,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Greg Roman\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Roman\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"gregroman\",\"birth_date\":null,\"espn_id\":null},\"123\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"free\",\"depth_chart_position\":null,\"player_id\":\"123\",\"birth_city\":null,\"fantasy_data_id\":3338,\"years_exp\":13,\"hashtag\":\"#DougFree-NFL-FA-68\",\"search_first_name\":\"doug\",\"rotowire_id\":7096,\"rotoworld_id\":4456,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Doug Free\",\"sportradar_id\":\"b3eadf6a-2c55-4b53-b5be-74fdb6700627\",\"pandascore_id\":null,\"yahoo_id\":8376,\"last_name\":\"Free\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Lincoln (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"dougfree\",\"birth_date\":\"1984-01-16\",\"espn_id\":10565},\"4950\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034775\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606505126375,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kirk\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4950\",\"birth_city\":null,\"fantasy_data_id\":19815,\"years_exp\":2,\"hashtag\":\"#ChristianKirk-NFL-ARI-13\",\"search_first_name\":\"christian\",\"rotowire_id\":12508,\"rotoworld_id\":13095,\"active\":true,\"search_rank\":115,\"age\":24,\"full_name\":\"Christian Kirk\",\"sportradar_id\":\"ebcd87ce-218c-4144-810b-921c2f59d6e8\",\"pandascore_id\":null,\"yahoo_id\":31017,\"last_name\":\"Kirk\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Saguaro (AZ)\",\"depth_chart_order\":1,\"stats_id\":865801,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"christiankirk\",\"birth_date\":\"1996-11-18\",\"espn_id\":3895856},\"5322\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034284\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"DL\"],\"news_updated\":1597529709965,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"looney\",\"depth_chart_position\":\"TE\",\"player_id\":\"5322\",\"birth_city\":null,\"fantasy_data_id\":20019,\"years_exp\":2,\"hashtag\":\"#JamesLooney-NFL-FA-0\",\"search_first_name\":\"james\",\"rotowire_id\":12714,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1393,\"age\":25,\"full_name\":\"James Looney\",\"sportradar_id\":\"ccb8ccf7-fa57-4d2a-8907-b55ebb8fa3fe\",\"pandascore_id\":null,\"yahoo_id\":31202,\"last_name\":\"Looney\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":6,\"stats_id\":733671,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jameslooney\",\"birth_date\":\"1995-05-15\",\"espn_id\":3039794},\"5590\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034330\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564341612769,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smallwood\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5590\",\"birth_city\":null,\"fantasy_data_id\":20591,\"years_exp\":2,\"hashtag\":\"#JordanSmallwood-NFL-FA-9\",\"search_first_name\":\"jordan\",\"rotowire_id\":13349,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Smallwood\",\"sportradar_id\":\"d4ea4f41-af37-4a51-833c-eed0056f4863\",\"pandascore_id\":null,\"yahoo_id\":31525,\"last_name\":\"Smallwood\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":747997,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordansmallwood\",\"birth_date\":\"1995-01-18\",\"espn_id\":3052671},\"3189\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032379\",\"first_name\":\"Eli\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603837554365,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"apple\",\"depth_chart_position\":\"RCB\",\"player_id\":\"3189\",\"birth_city\":null,\"fantasy_data_id\":17950,\"years_exp\":4,\"hashtag\":\"#EliApple-NFL-CAR-20\",\"search_first_name\":\"eli\",\"rotowire_id\":10886,\"rotoworld_id\":11332,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Eli Apple\",\"sportradar_id\":\"72a42703-19b7-417c-87ce-344fd792f5ca\",\"pandascore_id\":null,\"yahoo_id\":29244,\"last_name\":\"Apple\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Eastern (PA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"eliapple\",\"birth_date\":\"1995-08-09\",\"espn_id\":3040506},\"326\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026144\",\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1511902802749,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcfadden\",\"depth_chart_position\":null,\"player_id\":\"326\",\"birth_city\":null,\"fantasy_data_id\":8066,\"years_exp\":12,\"hashtag\":\"#DarrenMcFadden-NFL-FA-20\",\"search_first_name\":\"darren\",\"rotowire_id\":5579,\"rotoworld_id\":4649,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Darren McFadden\",\"sportradar_id\":\"97132012-53f4-44c8-96da-88f0e8a819e8\",\"pandascore_id\":null,\"yahoo_id\":8781,\"last_name\":\"McFadden\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Oak Grove (AR)\",\"depth_chart_order\":null,\"stats_id\":288074,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"darrenmcfadden\",\"birth_date\":\"1987-08-27\",\"espn_id\":11238},\"2479\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032114\",\"first_name\":\"Deiontrez\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1553796612636,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mount\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2479\",\"birth_city\":null,\"fantasy_data_id\":16937,\"years_exp\":5,\"hashtag\":\"#DeiontrezMount-NFL-FA-53\",\"search_first_name\":\"deiontrez\",\"rotowire_id\":10378,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Deiontrez Mount\",\"sportradar_id\":\"b8f2a6c5-b7db-497c-93d1-08ac7f3dbbd4\",\"pandascore_id\":null,\"yahoo_id\":28565,\"last_name\":\"Mount\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Fort Walton Beach (FL)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"deiontrezmount\",\"birth_date\":\"1993-02-26\",\"espn_id\":2576635},\"182\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1515699601475,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tolbert\",\"depth_chart_position\":null,\"player_id\":\"182\",\"birth_city\":null,\"fantasy_data_id\":4738,\"years_exp\":12,\"hashtag\":\"#MikeTolbert-NFL-FA-35\",\"search_first_name\":\"mike\",\"rotowire_id\":5888,\"rotoworld_id\":5009,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Mike Tolbert\",\"sportradar_id\":\"1c918980-f2fb-4b34-b0ad-ca801a828fbb\",\"pandascore_id\":null,\"yahoo_id\":9043,\"last_name\":\"Tolbert\",\"metadata\":null,\"college\":\"Coastal Carolina\",\"high_school\":\"Douglas County (GA)\",\"depth_chart_order\":null,\"stats_id\":268445,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"5'9\\\"\",\"search_full_name\":\"miketolbert\",\"birth_date\":\"1985-11-23\",\"espn_id\":11658},\"317\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hanie\",\"depth_chart_position\":null,\"player_id\":\"317\",\"birth_city\":null,\"fantasy_data_id\":7755,\"years_exp\":6,\"hashtag\":\"#CalebHanie-NFL-FA-7\",\"search_first_name\":\"caleb\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Caleb Hanie\",\"sportradar_id\":\"18a9f322-f99d-4379-9e4e-491d5d282132\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hanie\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"calebhanie\",\"birth_date\":\"1985-09-11\",\"espn_id\":null},\"3231\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032890\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603428349815,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradberry\",\"depth_chart_position\":\"PK\",\"player_id\":\"3231\",\"birth_city\":null,\"fantasy_data_id\":17992,\"years_exp\":4,\"hashtag\":\"#JamesBradberry-NFL-NYG-24\",\"search_first_name\":\"james\",\"rotowire_id\":10916,\"rotoworld_id\":11415,\"active\":true,\"search_rank\":980,\"age\":27,\"full_name\":\"James Bradberry\",\"sportradar_id\":\"0db6df51-945b-4123-a790-0ba9d0473415\",\"pandascore_id\":null,\"yahoo_id\":29296,\"last_name\":\"Bradberry\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Pleasant Grove (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesbradberry\",\"birth_date\":\"1993-08-04\",\"espn_id\":2572841},\"1992\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031428\",\"first_name\":\"Allen\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606345202289,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1992\",\"birth_city\":null,\"fantasy_data_id\":16263,\"years_exp\":6,\"hashtag\":\"#AllenRobinson-NFL-CHI-12\",\"search_first_name\":\"allen\",\"rotowire_id\":9264,\"rotoworld_id\":9297,\"active\":true,\"search_rank\":40,\"age\":27,\"full_name\":\"Allen Robinson\",\"sportradar_id\":\"0fd32417-8410-4a8f-8919-386c433bca43\",\"pandascore_id\":null,\"yahoo_id\":27589,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Orchard Lake St. Mary's (MI)\",\"depth_chart_order\":1,\"stats_id\":609496,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"allenrobinson\",\"birth_date\":\"1993-08-24\",\"espn_id\":16799},\"4744\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Barrett\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burns\",\"depth_chart_position\":null,\"player_id\":\"4744\",\"birth_city\":null,\"fantasy_data_id\":19662,\"years_exp\":1,\"hashtag\":\"#BarrettBurns-NFL-BAL-0\",\"search_first_name\":\"barrett\",\"rotowire_id\":12280,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Barrett Burns\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30894,\"last_name\":\"Burns\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"barrettburns\",\"birth_date\":\"1994-03-16\",\"espn_id\":null},\"1456\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030091\",\"first_name\":\"Tavarres\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1539134703555,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"1456\",\"birth_city\":null,\"fantasy_data_id\":15038,\"years_exp\":7,\"hashtag\":\"#TavarresKing-NFL-FA-12\",\"search_first_name\":\"tavarres\",\"rotowire_id\":8801,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tavarres King\",\"sportradar_id\":\"da3517d7-0002-48dc-a877-c299c25dfa41\",\"pandascore_id\":null,\"yahoo_id\":26784,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":449458,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"189\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tavarresking\",\"birth_date\":\"1990-07-14\",\"espn_id\":15911},\"2922\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mahina\",\"depth_chart_position\":null,\"player_id\":\"2922\",\"birth_city\":null,\"fantasy_data_id\":17391,\"years_exp\":0,\"hashtag\":\"#DevinMahina-NFL-FA-89\",\"search_first_name\":\"devin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Devin Mahina\",\"sportradar_id\":\"24df305a-d226-4822-9b7e-54e645a90102\",\"pandascore_id\":null,\"yahoo_id\":28862,\"last_name\":\"Mahina\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":541439,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'6\\\"\",\"search_full_name\":\"devinmahina\",\"birth_date\":\"1989-01-06\",\"espn_id\":null},\"2089\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030776\",\"first_name\":\"Kerry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1571089542249,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wynn\",\"depth_chart_position\":null,\"player_id\":\"2089\",\"birth_city\":null,\"fantasy_data_id\":16403,\"years_exp\":6,\"hashtag\":\"#KerryWynn-NFL-FA-72\",\"search_first_name\":\"kerry\",\"rotowire_id\":9691,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kerry Wynn\",\"sportradar_id\":\"d694d99d-0dd2-443f-b02a-6cd377cdaf6e\",\"pandascore_id\":null,\"yahoo_id\":28051,\"last_name\":\"Wynn\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"Louisa County (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kerrywynn\",\"birth_date\":\"1991-02-12\",\"espn_id\":17296},\"3623\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032484\",\"first_name\":\"Vontarrius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1595792415772,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dora\",\"depth_chart_position\":\"SLB\",\"player_id\":\"3623\",\"birth_city\":null,\"fantasy_data_id\":18410,\"years_exp\":4,\"hashtag\":\"#VontarriusDora-NFL-FA-0\",\"search_first_name\":\"vontarrius\",\"rotowire_id\":11386,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1075,\"age\":28,\"full_name\":\"Vontarrius Dora\",\"sportradar_id\":\"2ae84168-c2e9-4dd0-9680-afc1f9b11668\",\"pandascore_id\":null,\"yahoo_id\":29617,\"last_name\":\"Dora\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"256\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vontarriusdora\",\"birth_date\":\"1992-09-07\",\"espn_id\":2574163},\"298\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lawrence\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1520879401243,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"timmons\",\"depth_chart_position\":null,\"player_id\":\"298\",\"birth_city\":null,\"fantasy_data_id\":7420,\"years_exp\":13,\"hashtag\":\"#LawrenceTimmons-NFL-FA-94\",\"search_first_name\":\"lawrence\",\"rotowire_id\":5209,\"rotoworld_id\":4195,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Lawrence Timmons\",\"sportradar_id\":\"1f60fcb6-e6a1-4cc6-9ef7-dd5d66bf0003\",\"pandascore_id\":null,\"yahoo_id\":8269,\"last_name\":\"Timmons\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Wilson (SC)\",\"depth_chart_order\":null,\"stats_id\":281356,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"lawrencetimmons\",\"birth_date\":\"1986-05-14\",\"espn_id\":10459},\"6186\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034992\",\"first_name\":\"Armon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1600116365152,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watts\",\"depth_chart_position\":\"NT\",\"player_id\":\"6186\",\"birth_city\":null,\"fantasy_data_id\":20975,\"years_exp\":1,\"hashtag\":\"#ArmonWatts-NFL-MIN-96\",\"search_first_name\":\"armon\",\"rotowire_id\":13776,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1615,\"age\":24,\"full_name\":\"Armon Watts\",\"sportradar_id\":\"1cb784d8-de4d-4962-a775-c7379b7053c2\",\"pandascore_id\":null,\"yahoo_id\":32022,\"last_name\":\"Watts\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Christian Brothers College (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"armonwatts\",\"birth_date\":\"1996-07-22\",\"espn_id\":3128685},\"389\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023662\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1567096536759,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cassel\",\"depth_chart_position\":null,\"player_id\":\"389\",\"birth_city\":null,\"fantasy_data_id\":8723,\"years_exp\":15,\"hashtag\":\"#MattCassel-NFL-FA-8\",\"search_first_name\":\"matt\",\"rotowire_id\":4574,\"rotoworld_id\":3237,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Matt Cassel\",\"sportradar_id\":\"8263e101-aa33-435f-bf0f-388e1c4eeb59\",\"pandascore_id\":null,\"yahoo_id\":7406,\"last_name\":\"Cassel\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Chatsworth (CA)\",\"depth_chart_order\":null,\"stats_id\":145407,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mattcassel\",\"birth_date\":\"1982-05-17\",\"espn_id\":8644},\"4651\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033725\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606513828037,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clement\",\"depth_chart_position\":\"RB\",\"player_id\":\"4651\",\"birth_city\":null,\"fantasy_data_id\":19548,\"years_exp\":3,\"hashtag\":\"#CoreyClement-NFL-PHI-30\",\"search_first_name\":\"corey\",\"rotowire_id\":11750,\"rotoworld_id\":12159,\"active\":true,\"search_rank\":272,\"age\":26,\"full_name\":\"Corey Clement\",\"sportradar_id\":\"69568326-f210-4b88-a5cb-10376c64893e\",\"pandascore_id\":null,\"yahoo_id\":30707,\"last_name\":\"Clement\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Glassboro (NJ)\",\"depth_chart_order\":3,\"stats_id\":742470,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"5'10\\\"\",\"search_full_name\":\"coreyclement\",\"birth_date\":\"1994-11-02\",\"espn_id\":3045260},\"6943\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Gabriel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606505127218,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6943\",\"birth_city\":null,\"fantasy_data_id\":21735,\"years_exp\":0,\"hashtag\":\"#GabrielDavis-NFL-BUF-13\",\"search_first_name\":\"gabriel\",\"rotowire_id\":14359,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1778,\"age\":21,\"full_name\":\"Gabriel Davis\",\"sportradar_id\":\"dc397432-7157-4ce4-976d-b9662cc6f551\",\"pandascore_id\":null,\"yahoo_id\":32798,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":\"Seminole (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gabrieldavis\",\"birth_date\":\"1999-04-01\",\"espn_id\":4243537},\"7014\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1588039204277,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bachie\",\"depth_chart_position\":null,\"player_id\":\"7014\",\"birth_city\":null,\"fantasy_data_id\":21913,\"years_exp\":0,\"hashtag\":\"#JoeBachie-NFL-NO-46\",\"search_first_name\":\"joe\",\"rotowire_id\":14735,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1834,\"age\":22,\"full_name\":\"Joe Bachie\",\"sportradar_id\":\"c44bdac4-0732-4f94-8bae-df47ecec5656\",\"pandascore_id\":null,\"yahoo_id\":33108,\"last_name\":\"Bachie\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Berea (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joebachie\",\"birth_date\":\"1998-02-26\",\"espn_id\":4036507},\"6016\":{\"position\":\"TE\",\"injury_notes\":\"Raymond is likely to miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":\" 00-0035058\",\"first_name\":\"Dax\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1604441445354,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"raymond\",\"depth_chart_position\":\"TE\",\"player_id\":\"6016\",\"birth_city\":null,\"fantasy_data_id\":20922,\"years_exp\":1,\"hashtag\":\"#DaxRaymond-NFL-GB-46\",\"search_first_name\":\"dax\",\"rotowire_id\":13440,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1593,\"age\":25,\"full_name\":\"Dax Raymond\",\"sportradar_id\":\"9d95c076-0ceb-4ecc-9187-4f77354c2d1f\",\"pandascore_id\":null,\"yahoo_id\":32261,\"last_name\":\"Raymond\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Timpview (UT)\",\"depth_chart_order\":4,\"stats_id\":886225,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"daxraymond\",\"birth_date\":\"1994-11-30\",\"espn_id\":3932963},\"5278\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034205\",\"first_name\":\"Jarvion\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535991932832,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":null,\"player_id\":\"5278\",\"birth_city\":null,\"fantasy_data_id\":20340,\"years_exp\":2,\"hashtag\":\"#JarvionFranklin-NFL-FA-40\",\"search_first_name\":\"jarvion\",\"rotowire_id\":12947,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jarvion Franklin\",\"sportradar_id\":\"b12a30ab-c36e-4a60-b1de-1ab9cff34524\",\"pandascore_id\":null,\"yahoo_id\":31485,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":821475,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jarvionfranklin\",\"birth_date\":\"1995-12-09\",\"espn_id\":3129453},\"4641\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keeon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1528127101362,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"4641\",\"birth_city\":null,\"fantasy_data_id\":19536,\"years_exp\":2,\"hashtag\":\"#KeeonJohnson-NFL-FA-82\",\"search_first_name\":\"keeon\",\"rotowire_id\":12378,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keeon Johnson\",\"sportradar_id\":\"52848f63-d223-4f85-9ec8-c3a1974375a9\",\"pandascore_id\":null,\"yahoo_id\":30734,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":745847,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'3\\\"\",\"search_full_name\":\"keeonjohnson\",\"birth_date\":\"1994-12-31\",\"espn_id\":3048701},\"1328\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029310\",\"first_name\":\"Cam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1535834714726,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1328\",\"birth_city\":null,\"fantasy_data_id\":14827,\"years_exp\":8,\"hashtag\":\"#CamJohnson-NFL-FA-57\",\"search_first_name\":\"cam\",\"rotowire_id\":8143,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Cam Johnson\",\"sportradar_id\":\"f60de8c5-b050-4386-8a67-3658f65350b9\",\"pandascore_id\":null,\"yahoo_id\":25947,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Gonzaga (DC)\",\"depth_chart_order\":null,\"stats_id\":462273,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"camjohnson\",\"birth_date\":\"1990-05-24\",\"espn_id\":15064},\"2038\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":null,\"player_id\":\"2038\",\"birth_city\":null,\"fantasy_data_id\":16325,\"years_exp\":1,\"hashtag\":\"#JakeMurphy-NFL-FA-82\",\"search_first_name\":\"jake\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jake Murphy\",\"sportradar_id\":\"f91c001f-8816-47b6-a3d7-a9c25363d403\",\"pandascore_id\":null,\"yahoo_id\":28213,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":570914,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jakemurphy\",\"birth_date\":\"1989-09-21\",\"espn_id\":17393},\"6672\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035564\",\"first_name\":\"Deion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":null,\"player_id\":\"6672\",\"birth_city\":null,\"fantasy_data_id\":21567,\"years_exp\":1,\"hashtag\":\"#DeionHarris-NFL-FA-46\",\"search_first_name\":\"deion\",\"rotowire_id\":14303,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Deion Harris\",\"sportradar_id\":\"c7cc7627-6f90-414b-b60b-23869a4308cd\",\"pandascore_id\":null,\"yahoo_id\":32594,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"North Dakota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"deionharris\",\"birth_date\":\"1995-12-18\",\"espn_id\":3119436},\"638\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"638\",\"birth_city\":null,\"fantasy_data_id\":11594,\"years_exp\":5,\"hashtag\":\"#KyleWilliams-NFL-FA-18\",\"search_first_name\":\"kyle\",\"rotowire_id\":6699,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kyle Williams\",\"sportradar_id\":\"423cfbc1-446f-4670-b9dc-4b8d7f67745d\",\"pandascore_id\":null,\"yahoo_id\":24182,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":322946,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"186\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kylewilliams\",\"birth_date\":\"1988-07-19\",\"espn_id\":13488},\"1714\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chigbo\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anunoby\",\"depth_chart_position\":null,\"player_id\":\"1714\",\"birth_city\":null,\"fantasy_data_id\":15628,\"years_exp\":2,\"hashtag\":\"#ChigboAnunoby-NFL-FA-64\",\"search_first_name\":\"chigbo\",\"rotowire_id\":10043,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chigbo Anunoby\",\"sportradar_id\":\"ce291670-4027-45da-9a91-da4b7a166d62\",\"pandascore_id\":null,\"yahoo_id\":26205,\"last_name\":\"Anunoby\",\"metadata\":null,\"college\":\"Morehouse - GA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chigboanunoby\",\"birth_date\":\"1989-01-04\",\"espn_id\":15399},\"1537\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joplo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bartu\",\"depth_chart_position\":null,\"player_id\":\"1537\",\"birth_city\":null,\"fantasy_data_id\":15154,\"years_exp\":7,\"hashtag\":\"#JoploBartu-NFL-FA-54\",\"search_first_name\":\"joplo\",\"rotowire_id\":9088,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Joplo Bartu\",\"sportradar_id\":\"c157e36d-dbe1-4c37-a3f7-8e63f8d3067d\",\"pandascore_id\":null,\"yahoo_id\":27010,\"last_name\":\"Bartu\",\"metadata\":null,\"college\":\"Texas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joplobartu\",\"birth_date\":\"1989-10-03\",\"espn_id\":16171},\"1647\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alonzo\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"highsmith\",\"depth_chart_position\":null,\"player_id\":\"1647\",\"birth_city\":null,\"fantasy_data_id\":15390,\"years_exp\":1,\"hashtag\":\"#AlonzoHighsmith-NFL-FA-45\",\"search_first_name\":\"alonzo\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Alonzo Highsmith\",\"sportradar_id\":\"88485203-5fa8-428f-972d-a8a2841957b2\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Highsmith\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"234\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alonzohighsmith\",\"birth_date\":\"1989-11-21\",\"espn_id\":16384},\"6359\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035206\",\"first_name\":\"CJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"worton\",\"depth_chart_position\":\"RWR\",\"player_id\":\"6359\",\"birth_city\":null,\"fantasy_data_id\":21291,\"years_exp\":1,\"hashtag\":\"#CJWorton-NFL-FA-7\",\"search_first_name\":\"cj\",\"rotowire_id\":14009,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"CJ Worton\",\"sportradar_id\":\"c7e30bc6-a646-4d07-b602-88725d78ce47\",\"pandascore_id\":null,\"yahoo_id\":32122,\"last_name\":\"Worton\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":835212,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"6'0\\\"\",\"search_full_name\":\"cjworton\",\"birth_date\":\"1996-01-30\",\"espn_id\":4361074},\"6323\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034959\",\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605746743813,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"beck\",\"depth_chart_position\":\"TE\",\"player_id\":\"6323\",\"birth_city\":null,\"fantasy_data_id\":21227,\"years_exp\":1,\"hashtag\":\"#AndrewBeck-NFL-DEN-83\",\"search_first_name\":\"andrew\",\"rotowire_id\":13713,\"rotoworld_id\":null,\"active\":true,\"search_rank\":387,\"age\":24,\"full_name\":\"Andrew Beck\",\"sportradar_id\":\"b556a98d-16aa-4a0d-9134-1b59c46cc640\",\"pandascore_id\":null,\"yahoo_id\":32225,\"last_name\":\"Beck\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Texas\",\"high_school\":\"Plant (FL)\",\"depth_chart_order\":5,\"stats_id\":824428,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andrewbeck\",\"birth_date\":\"1996-05-15\",\"espn_id\":3125107},\"4484\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033507\",\"first_name\":\"Raysean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535751057185,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pringle\",\"depth_chart_position\":null,\"player_id\":\"4484\",\"birth_city\":null,\"fantasy_data_id\":19352,\"years_exp\":3,\"hashtag\":\"#RayseanPringle-NFL-FA-43\",\"search_first_name\":\"raysean\",\"rotowire_id\":12594,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Raysean Pringle\",\"sportradar_id\":\"30da88c8-9f18-4fad-99db-2fd3275c86bd\",\"pandascore_id\":null,\"yahoo_id\":30695,\"last_name\":\"Pringle\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":838842,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"191\",\"height\":\"6'0\\\"\",\"search_full_name\":\"rayseanpringle\",\"birth_date\":\"1993-08-31\",\"espn_id\":3140807},\"2048\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marion\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grice\",\"depth_chart_position\":null,\"player_id\":\"2048\",\"birth_city\":null,\"fantasy_data_id\":16341,\"years_exp\":2,\"hashtag\":\"#MarionGrice-NFL-FA-41\",\"search_first_name\":\"marion\",\"rotowire_id\":9522,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marion Grice\",\"sportradar_id\":\"1e2ec835-55a6-4cd2-91c4-c0cbf924ea12\",\"pandascore_id\":null,\"yahoo_id\":27729,\"last_name\":\"Grice\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":652770,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mariongrice\",\"birth_date\":\"1992-04-10\",\"espn_id\":16956},\"4997\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034679\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1589386810022,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walton\",\"depth_chart_position\":null,\"player_id\":\"4997\",\"birth_city\":null,\"fantasy_data_id\":19915,\"years_exp\":2,\"hashtag\":\"#MarkWalton-NFL-FA-0\",\"search_first_name\":\"mark\",\"rotowire_id\":12463,\"rotoworld_id\":13197,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Mark Walton\",\"sportradar_id\":\"b120cb2d-04b8-4dd3-809e-92c9b4c29b0c\",\"pandascore_id\":null,\"yahoo_id\":31082,\"last_name\":\"Walton\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":871716,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"5'10\\\"\",\"search_full_name\":\"markwalton\",\"birth_date\":\"1997-03-29\",\"espn_id\":3917846},\"4364\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Karel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"4364\",\"birth_city\":null,\"fantasy_data_id\":19221,\"years_exp\":2,\"hashtag\":\"#KarelHamilton-NFL-FA-13\",\"search_first_name\":\"karel\",\"rotowire_id\":12387,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Karel Hamilton\",\"sportradar_id\":\"2a4b7600-5c55-4484-b9aa-6998a3197d28\",\"pandascore_id\":null,\"yahoo_id\":30579,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":748398,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'1\\\"\",\"search_full_name\":\"karelhamilton\",\"birth_date\":\"1995-03-30\",\"espn_id\":3060377},\"5555\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034229\",\"first_name\":\"Dakoda\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shepley\",\"depth_chart_position\":null,\"player_id\":\"5555\",\"birth_city\":null,\"fantasy_data_id\":20556,\"years_exp\":2,\"hashtag\":\"#DakodaShepley-NFL-SF-61\",\"search_first_name\":\"dakoda\",\"rotowire_id\":13154,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dakoda Shepley\",\"sportradar_id\":\"ae0e9024-5df1-4b5b-b928-3c0e3429fd32\",\"pandascore_id\":null,\"yahoo_id\":31447,\"last_name\":\"Shepley\",\"metadata\":null,\"college\":\"British Columbia, Can.\",\"high_school\":\"Holy Names (CAN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dakodashepley\",\"birth_date\":\"1994-12-27\",\"espn_id\":4335942},\"60\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fluellen\",\"depth_chart_position\":null,\"player_id\":\"60\",\"birth_city\":null,\"fantasy_data_id\":1715,\"years_exp\":12,\"hashtag\":\"#AndreFluellen-NFL-FA-96\",\"search_first_name\":\"andre\",\"rotowire_id\":6378,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Andre Fluellen\",\"sportradar_id\":\"014e3f01-a75e-4714-8a77-e89a6b085e1f\",\"pandascore_id\":null,\"yahoo_id\":8864,\"last_name\":\"Fluellen\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Cartersville (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"andrefluellen\",\"birth_date\":\"1985-03-07\",\"espn_id\":11321},\"3305\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032779\",\"first_name\":\"Caleb\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605403860630,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"benenoch\",\"depth_chart_position\":null,\"player_id\":\"3305\",\"birth_city\":null,\"fantasy_data_id\":18066,\"years_exp\":4,\"hashtag\":\"#CalebBenenoch-NFL-NE-65\",\"search_first_name\":\"caleb\",\"rotowire_id\":10906,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Caleb Benenoch\",\"sportradar_id\":\"8b3ee955-f2ac-4606-9066-42b82fb4131e\",\"pandascore_id\":null,\"yahoo_id\":29382,\"last_name\":\"Benenoch\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"UCLA\",\"high_school\":\"Seven Lakes (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"calebbenenoch\",\"birth_date\":\"1994-08-02\",\"espn_id\":3047575},\"3285\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032406\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1554159921050,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"morrison\",\"depth_chart_position\":null,\"player_id\":\"3285\",\"birth_city\":null,\"fantasy_data_id\":18046,\"years_exp\":4,\"hashtag\":\"#AntonioMorrison-NFL-FA-0\",\"search_first_name\":\"antonio\",\"rotowire_id\":11220,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Antonio Morrison\",\"sportradar_id\":\"beeb2f7d-e318-478a-956e-7419aae66bd7\",\"pandascore_id\":null,\"yahoo_id\":29359,\"last_name\":\"Morrison\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":656002,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"antoniomorrison\",\"birth_date\":\"1994-12-06\",\"espn_id\":2971051},\"4127\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033936\",\"first_name\":\"C.J.\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604350229162,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beathard\",\"depth_chart_position\":\"QB\",\"player_id\":\"4127\",\"birth_city\":null,\"fantasy_data_id\":18973,\"years_exp\":3,\"hashtag\":\"#CJBeathard-NFL-SF-3\",\"search_first_name\":\"cj\",\"rotowire_id\":11833,\"rotoworld_id\":12328,\"active\":true,\"search_rank\":581,\"age\":27,\"full_name\":\"C.J. Beathard\",\"sportradar_id\":\"6608fdbf-6c93-47cc-ad44-9da2fda598ce\",\"pandascore_id\":null,\"yahoo_id\":30217,\"last_name\":\"Beathard\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Battle Ground Academy (TN)\",\"depth_chart_order\":3,\"stats_id\":691784,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cjbeathard\",\"birth_date\":\"1993-11-16\",\"espn_id\":2979520},\"5828\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031319\",\"first_name\":\"Diontae\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606513528057,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"spencer\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5828\",\"birth_city\":null,\"fantasy_data_id\":20722,\"years_exp\":6,\"hashtag\":\"#DiontaeSpencer-NFL-DEN-11\",\"search_first_name\":\"diontae\",\"rotowire_id\":13530,\"rotoworld_id\":null,\"active\":true,\"search_rank\":481,\"age\":28,\"full_name\":\"Diontae Spencer\",\"sportradar_id\":\"379f98b1-2f12-4f9e-8332-61cb930ac97a\",\"pandascore_id\":null,\"yahoo_id\":28279,\"last_name\":\"Spencer\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"McNeese State\",\"high_school\":\"Westgate (LA)\",\"depth_chart_order\":2,\"stats_id\":562859,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'8\\\"\",\"search_full_name\":\"diontaespencer\",\"birth_date\":\"1992-03-19\",\"espn_id\":17463},\"3261\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032397\",\"first_name\":\"Rees\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567815022896,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"odhiambo\",\"depth_chart_position\":null,\"player_id\":\"3261\",\"birth_city\":null,\"fantasy_data_id\":18022,\"years_exp\":4,\"hashtag\":\"#ReesOdhiambo-NFL-FA-63\",\"search_first_name\":\"rees\",\"rotowire_id\":11154,\"rotoworld_id\":11424,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rees Odhiambo\",\"sportradar_id\":\"c6c63d67-4913-497f-a17c-55c72cbe5b9b\",\"pandascore_id\":null,\"yahoo_id\":29331,\"last_name\":\"Odhiambo\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'4\\\"\",\"search_full_name\":\"reesodhiambo\",\"birth_date\":\"1992-09-23\",\"espn_id\":2573312},\"3537\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032905\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1594772111496,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"landrum\",\"depth_chart_position\":null,\"player_id\":\"3537\",\"birth_city\":null,\"fantasy_data_id\":18304,\"years_exp\":4,\"hashtag\":\"#ChrisLandrum-NFL-FA-0\",\"search_first_name\":\"chris\",\"rotowire_id\":11476,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chris Landrum\",\"sportradar_id\":\"b6e1d56a-8fc4-4ea7-a88e-52f281c6d4ba\",\"pandascore_id\":null,\"yahoo_id\":29522,\"last_name\":\"Landrum\",\"metadata\":null,\"college\":\"Jacksonville State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrislandrum\",\"birth_date\":\"1992-09-14\",\"espn_id\":2574558},\"6820\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Clyde\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606107008799,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwardshelaire\",\"depth_chart_position\":\"RB\",\"player_id\":\"6820\",\"birth_city\":null,\"fantasy_data_id\":21769,\"years_exp\":0,\"hashtag\":\"#ClydeEdwardsHelaire-NFL-KC-25\",\"search_first_name\":\"clyde\",\"rotowire_id\":14514,\"rotoworld_id\":null,\"active\":true,\"search_rank\":6,\"age\":21,\"full_name\":\"Clyde Edwards-Helaire\",\"sportradar_id\":\"8aa01565-4481-443a-9951-642c98ded113\",\"pandascore_id\":null,\"yahoo_id\":32702,\"last_name\":\"Edwards-Helaire\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Catholic (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'8\\\"\",\"search_full_name\":\"clydeedwardshelaire\",\"birth_date\":\"1999-04-11\",\"espn_id\":4242214},\"965\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028394\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcquaide\",\"depth_chart_position\":null,\"player_id\":\"965\",\"birth_city\":null,\"fantasy_data_id\":13388,\"years_exp\":9,\"hashtag\":\"#JakeMcQuaide-NFL-LAR-44\",\"search_first_name\":\"jake\",\"rotowire_id\":7990,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jake McQuaide\",\"sportradar_id\":\"3128aa52-4c62-4096-bf31-bef0fe8d6abc\",\"pandascore_id\":null,\"yahoo_id\":25549,\"last_name\":\"McQuaide\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Elder (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jakemcquaide\",\"birth_date\":\"1987-12-07\",\"espn_id\":14676},\"498\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"arrington\",\"depth_chart_position\":null,\"player_id\":\"498\",\"birth_city\":null,\"fantasy_data_id\":10091,\"years_exp\":12,\"hashtag\":\"#KyleArrington-NFL-FA-24\",\"search_first_name\":\"kyle\",\"rotowire_id\":5915,\"rotoworld_id\":5157,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Kyle Arrington\",\"sportradar_id\":\"688fbca7-40bf-496f-9b8c-eaba35fd6939\",\"pandascore_id\":null,\"yahoo_id\":9078,\"last_name\":\"Arrington\",\"metadata\":null,\"college\":\"Hofstra\",\"high_school\":\"Gwynn Park (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kylearrington\",\"birth_date\":\"1986-08-12\",\"espn_id\":11494},\"5094\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034270\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606525829104,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"izzo\",\"depth_chart_position\":\"TE\",\"player_id\":\"5094\",\"birth_city\":null,\"fantasy_data_id\":19988,\"years_exp\":2,\"hashtag\":\"#RyanIzzo-NFL-NE-85\",\"search_first_name\":\"ryan\",\"rotowire_id\":12529,\"rotoworld_id\":null,\"active\":true,\"search_rank\":559,\"age\":24,\"full_name\":\"Ryan Izzo\",\"sportradar_id\":\"40b8fa44-b289-42dd-9606-a1ae30adc7bc\",\"pandascore_id\":null,\"yahoo_id\":31127,\"last_name\":\"Izzo\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida State\",\"high_school\":\"Pope John XXIII (NJ)\",\"depth_chart_order\":2,\"stats_id\":861278,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ryanizzo\",\"birth_date\":\"1995-12-21\",\"espn_id\":3915486},\"2110\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034641\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605909003978,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"OLB\",\"player_id\":\"2110\",\"birth_city\":null,\"fantasy_data_id\":16434,\"years_exp\":6,\"hashtag\":\"#ChristianJones-NFL-DET-52\",\"search_first_name\":\"christian\",\"rotowire_id\":9384,\"rotoworld_id\":null,\"active\":true,\"search_rank\":823,\"age\":29,\"full_name\":\"Christian Jones\",\"sportradar_id\":\"10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8\",\"pandascore_id\":null,\"yahoo_id\":27839,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Lake Howell (FL)\",\"depth_chart_order\":1,\"stats_id\":553289,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"christianjones\",\"birth_date\":\"1991-02-18\",\"espn_id\":17070},\"7244\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ja'Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693359830,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradley\",\"depth_chart_position\":\"LWR\",\"player_id\":\"7244\",\"birth_city\":null,\"fantasy_data_id\":22244,\"years_exp\":0,\"hashtag\":\"#JaMarcusBradley-NFL-CLE-84\",\"search_first_name\":\"jamarcus\",\"rotowire_id\":14571,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Ja'Marcus Bradley\",\"sportradar_id\":\"f1236815-5ed7-4bab-808f-700c4516fd7d\",\"pandascore_id\":null,\"yahoo_id\":33302,\"last_name\":\"Bradley\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":\"Choctaw County (MS)\",\"depth_chart_order\":4,\"stats_id\":null,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamarcusbradley\",\"birth_date\":\"1996-12-11\",\"espn_id\":3917569},\"1998\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":\"Knee\",\"search_last_name\":\"anunike\",\"depth_chart_position\":null,\"player_id\":\"1998\",\"birth_city\":null,\"fantasy_data_id\":16270,\"years_exp\":6,\"hashtag\":\"#KennyAnunike-NFL-FA-91\",\"search_first_name\":\"kenny\",\"rotowire_id\":9917,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kenny Anunike\",\"sportradar_id\":\"bedb24f8-17aa-4573-9e6f-dd729c31104b\",\"pandascore_id\":null,\"yahoo_id\":27819,\"last_name\":\"Anunike\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Olentangy (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"275\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kennyanunike\",\"birth_date\":\"1990-05-20\",\"espn_id\":16965},\"5356\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremiah\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"briscoe\",\"depth_chart_position\":null,\"player_id\":\"5356\",\"birth_city\":null,\"fantasy_data_id\":20416,\"years_exp\":0,\"hashtag\":\"#JeremiahBriscoe-NFL-FA-16\",\"search_first_name\":\"jeremiah\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jeremiah Briscoe\",\"sportradar_id\":\"e3e9072b-6ad7-4fe6-8cbc-288232c0d583\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Briscoe\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremiahbriscoe\",\"birth_date\":null,\"espn_id\":3911396},\"869\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028224\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606521628737,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"LCB\",\"player_id\":\"869\",\"birth_city\":null,\"fantasy_data_id\":13018,\"years_exp\":9,\"hashtag\":\"#ChrisHarris-NFL-LAC-25\",\"search_first_name\":\"chris\",\"rotowire_id\":7924,\"rotoworld_id\":6910,\"active\":true,\"search_rank\":635,\"age\":31,\"full_name\":\"Chris Harris\",\"sportradar_id\":\"de185684-3a02-4e63-b2b1-405e562b3a77\",\"pandascore_id\":null,\"yahoo_id\":25189,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":\"Bixby (OK)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'10\\\"\",\"search_full_name\":\"chrisharris\",\"birth_date\":\"1989-06-18\",\"espn_id\":14398},\"2701\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"AJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cruz\",\"depth_chart_position\":null,\"player_id\":\"2701\",\"birth_city\":null,\"fantasy_data_id\":17169,\"years_exp\":1,\"hashtag\":\"#AJCruz-NFL-FA-81\",\"search_first_name\":\"aj\",\"rotowire_id\":10609,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"AJ Cruz\",\"sportradar_id\":\"6339086a-9acb-4796-96f6-8a40041c0178\",\"pandascore_id\":null,\"yahoo_id\":29161,\"last_name\":\"Cruz\",\"metadata\":null,\"college\":\"Brown\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":521332,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"ajcruz\",\"birth_date\":\"1991-02-20\",\"espn_id\":2470379},\"2329\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032222\",\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603148720536,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"humphries\",\"depth_chart_position\":\"LT\",\"player_id\":\"2329\",\"birth_city\":null,\"fantasy_data_id\":16785,\"years_exp\":5,\"hashtag\":\"#DJHumphries-NFL-ARI-74\",\"search_first_name\":\"dj\",\"rotowire_id\":10259,\"rotoworld_id\":10401,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"D.J. Humphries\",\"sportradar_id\":\"90d9c6b2-3970-45e1-a558-b68a977a8995\",\"pandascore_id\":null,\"yahoo_id\":28412,\"last_name\":\"Humphries\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Mallard Creek (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'5\\\"\",\"search_full_name\":\"djhumphries\",\"birth_date\":\"1993-12-28\",\"espn_id\":2971048},\"1842\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1842\",\"birth_city\":null,\"fantasy_data_id\":16047,\"years_exp\":0,\"hashtag\":\"#DerrickJohnson-NFL-FA-13\",\"search_first_name\":\"derrick\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Derrick Johnson\",\"sportradar_id\":\"d16c4eb0-4ec5-4654-995a-b119bc2342af\",\"pandascore_id\":null,\"yahoo_id\":28245,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"derrickjohnson\",\"birth_date\":null,\"espn_id\":17374},\"7203\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1602024321810,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"RB\",\"player_id\":\"7203\",\"birth_city\":null,\"fantasy_data_id\":22205,\"years_exp\":0,\"hashtag\":\"#AntonioWilliams-NFL-BUF-35\",\"search_first_name\":\"antonio\",\"rotowire_id\":14884,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Antonio Williams\",\"sportradar_id\":\"aae9da80-c88f-4de3-b088-42553cf351ce\",\"pandascore_id\":null,\"yahoo_id\":33359,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"North Stanly (NC)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"antoniowilliams\",\"birth_date\":\"1997-10-22\",\"espn_id\":4040629},\"4269\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033521\",\"first_name\":\"Keion\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1571715617165,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":null,\"player_id\":\"4269\",\"birth_city\":null,\"fantasy_data_id\":19115,\"years_exp\":3,\"hashtag\":\"#KeionAdams-NFL-FA-45\",\"search_first_name\":\"keion\",\"rotowire_id\":12222,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keion Adams\",\"sportradar_id\":\"1b96851a-604d-423b-8bd7-f0d394bd6ca8\",\"pandascore_id\":null,\"yahoo_id\":30361,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Western Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":744096,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"keionadams\",\"birth_date\":\"1995-06-08\",\"espn_id\":3042773},\"7269\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marc-Antoine\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dequoy\",\"depth_chart_position\":null,\"player_id\":\"7269\",\"birth_city\":null,\"fantasy_data_id\":22267,\"years_exp\":0,\"hashtag\":\"#MarcAntoineDequoy-NFL-FA-0\",\"search_first_name\":\"marcantoine\",\"rotowire_id\":14578,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marc-Antoine Dequoy\",\"sportradar_id\":\"d4c7e27e-288a-4e52-ba26-f23146610d71\",\"pandascore_id\":null,\"yahoo_id\":33224,\"last_name\":\"Dequoy\",\"metadata\":null,\"college\":\"Montreal (CA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'3\\\"\",\"search_full_name\":\"marcantoinedequoy\",\"birth_date\":null,\"espn_id\":4611136},\"7335\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599693357351,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"perkins\",\"depth_chart_position\":\"QB\",\"player_id\":\"7335\",\"birth_city\":null,\"fantasy_data_id\":21819,\"years_exp\":0,\"hashtag\":\"#BrycePerkins-NFL-LAR-5\",\"search_first_name\":\"bryce\",\"rotowire_id\":14429,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1789,\"age\":23,\"full_name\":\"Bryce Perkins\",\"sportradar_id\":\"da837572-0558-4946-9af4-aeb11582cca8\",\"pandascore_id\":null,\"yahoo_id\":33258,\"last_name\":\"Perkins\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bryceperkins\",\"birth_date\":\"1996-12-20\",\"espn_id\":3675812},\"6147\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035283\",\"first_name\":\"Clayton\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1601417446315,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thorson\",\"depth_chart_position\":\"QB\",\"player_id\":\"6147\",\"birth_city\":null,\"fantasy_data_id\":20966,\"years_exp\":1,\"hashtag\":\"#ClaytonThorson-NFL-NYG-5\",\"search_first_name\":\"clayton\",\"rotowire_id\":13513,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1609,\"age\":25,\"full_name\":\"Clayton Thorson\",\"sportradar_id\":\"3cbf12f3-11df-4ced-a321-4877b129420c\",\"pandascore_id\":null,\"yahoo_id\":31999,\"last_name\":\"Thorson\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Wheaton North (IL)\",\"depth_chart_order\":3,\"stats_id\":830853,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'4\\\"\",\"search_full_name\":\"claytonthorson\",\"birth_date\":\"1995-06-15\",\"espn_id\":3116144},\"4478\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033432\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moxey\",\"depth_chart_position\":null,\"player_id\":\"4478\",\"birth_city\":null,\"fantasy_data_id\":19346,\"years_exp\":3,\"hashtag\":\"#JonathanMoxey-NFL-FA-23\",\"search_first_name\":\"jonathan\",\"rotowire_id\":12535,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jonathan Moxey\",\"sportradar_id\":\"0b36513e-6dfa-406b-9198-619d090e6e8d\",\"pandascore_id\":null,\"yahoo_id\":30479,\"last_name\":\"Moxey\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathanmoxey\",\"birth_date\":\"1995-01-04\",\"espn_id\":3042884},\"1007\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brock\",\"depth_chart_position\":null,\"player_id\":\"1007\",\"birth_city\":null,\"fantasy_data_id\":13586,\"years_exp\":3,\"hashtag\":\"#KevinBrock-NFL-FA-85\",\"search_first_name\":\"kevin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kevin Brock\",\"sportradar_id\":\"7a34ece4-13f7-4582-a5e7-76327d78ce46\",\"pandascore_id\":null,\"yahoo_id\":9699,\"last_name\":\"Brock\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":267363,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kevinbrock\",\"birth_date\":\"1986-04-09\",\"espn_id\":12874},\"1083\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029253\",\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606058716528,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"schwartz\",\"depth_chart_position\":null,\"player_id\":\"1083\",\"birth_city\":null,\"fantasy_data_id\":13905,\"years_exp\":8,\"hashtag\":\"#MitchellSchwartz-NFL-KC-71\",\"search_first_name\":\"mitchell\",\"rotowire_id\":8205,\"rotoworld_id\":7535,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mitchell Schwartz\",\"sportradar_id\":\"8cf11162-ffe7-44ad-b5d6-8eef717b5ac2\",\"pandascore_id\":null,\"yahoo_id\":25747,\"last_name\":\"Schwartz\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Palisades Charter (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mitchellschwartz\",\"birth_date\":\"1989-06-08\",\"espn_id\":14951},\"4131\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033932\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606337703059,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"golladay\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4131\",\"birth_city\":null,\"fantasy_data_id\":18977,\"years_exp\":3,\"hashtag\":\"#KennyGolladay-NFL-DET-19\",\"search_first_name\":\"kenny\",\"rotowire_id\":11857,\"rotoworld_id\":12340,\"active\":true,\"search_rank\":28,\"age\":27,\"full_name\":\"Kenny Golladay\",\"sportradar_id\":\"659d31a3-9c62-4e3d-a0ea-b2e4967d6947\",\"pandascore_id\":null,\"yahoo_id\":30209,\"last_name\":\"Golladay\",\"metadata\":{\"injury_override_regular_2020_1\":\"Out\"},\"college\":\"Northern Illinois\",\"high_school\":\"St. Rita of Cascia (IL)\",\"depth_chart_order\":3,\"stats_id\":697295,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kennygolladay\",\"birth_date\":\"1993-11-03\",\"espn_id\":2974858},\"5296\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034119\",\"first_name\":\"Elijah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"RB\"],\"news_updated\":1578358839011,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wellman\",\"depth_chart_position\":\"RB\",\"player_id\":\"5296\",\"birth_city\":null,\"fantasy_data_id\":20389,\"years_exp\":2,\"hashtag\":\"#ElijahWellman-NFL-FA-0\",\"search_first_name\":\"elijah\",\"rotowire_id\":13103,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1466,\"age\":25,\"full_name\":\"Elijah Wellman\",\"sportradar_id\":\"1987b2bb-042f-49c9-b183-bec358ba1b98\",\"pandascore_id\":null,\"yahoo_id\":31407,\"last_name\":\"Wellman\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":739698,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'1\\\"\",\"search_full_name\":\"elijahwellman\",\"birth_date\":\"1994-09-20\",\"espn_id\":3042434},\"3006\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Valerian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"umeezeoke\",\"depth_chart_position\":null,\"player_id\":\"3006\",\"birth_city\":null,\"fantasy_data_id\":17548,\"years_exp\":1,\"hashtag\":\"#ValerianUmeEzeoke-NFL-FA-61\",\"search_first_name\":\"valerian\",\"rotowire_id\":10755,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Valerian Ume-Ezeoke\",\"sportradar_id\":\"d14c18e5-a9c1-41fc-a00e-6443b4122c4b\",\"pandascore_id\":null,\"yahoo_id\":28831,\"last_name\":\"Ume-Ezeoke\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"301\",\"height\":\"6'2\\\"\",\"search_full_name\":\"valerianumeezeoke\",\"birth_date\":\"1993-02-14\",\"espn_id\":null},\"4428\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rich\",\"depth_chart_position\":null,\"player_id\":\"4428\",\"birth_city\":null,\"fantasy_data_id\":19288,\"years_exp\":2,\"hashtag\":\"#MaxRich-NFL-FA-72\",\"search_first_name\":\"max\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Max Rich\",\"sportradar_id\":\"2b654af6-7669-4756-b81c-54c7ef727c9a\",\"pandascore_id\":null,\"yahoo_id\":30670,\"last_name\":\"Rich\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'7\\\"\",\"search_full_name\":\"maxrich\",\"birth_date\":\"1994-05-19\",\"espn_id\":3049713},\"4045\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1510767001930,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hart\",\"depth_chart_position\":null,\"player_id\":\"4045\",\"birth_city\":null,\"fantasy_data_id\":18889,\"years_exp\":2,\"hashtag\":\"#DerekHart-NFL-FA-54\",\"search_first_name\":\"derek\",\"rotowire_id\":12064,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Derek Hart\",\"sportradar_id\":\"de797942-613f-411e-a768-1350672bc7ad\",\"pandascore_id\":null,\"yahoo_id\":30105,\"last_name\":\"Hart\",\"metadata\":null,\"college\":\"James Madison\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":611478,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'4\\\"\",\"search_full_name\":\"derekhart\",\"birth_date\":\"1992-12-01\",\"espn_id\":2975364},\"3236\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033131\",\"first_name\":\"Maliek\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606011609357,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":\"DT\",\"player_id\":\"3236\",\"birth_city\":null,\"fantasy_data_id\":17997,\"years_exp\":4,\"hashtag\":\"#MaliekCollins-NFL-LV-97\",\"search_first_name\":\"maliek\",\"rotowire_id\":10976,\"rotoworld_id\":11390,\"active\":true,\"search_rank\":984,\"age\":25,\"full_name\":\"Maliek Collins\",\"sportradar_id\":\"54f13aa1-4a2f-46a3-99ef-743c1d3ee234\",\"pandascore_id\":null,\"yahoo_id\":29301,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Center (MO)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'2\\\"\",\"search_full_name\":\"maliekcollins\",\"birth_date\":\"1995-04-08\",\"espn_id\":3040471},\"396\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Louis\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1546450547188,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murphy\",\"depth_chart_position\":null,\"player_id\":\"396\",\"birth_city\":null,\"fantasy_data_id\":8777,\"years_exp\":11,\"hashtag\":\"#LouisMurphy-NFL-FA-18\",\"search_first_name\":\"louis\",\"rotowire_id\":6021,\"rotoworld_id\":5214,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Louis Murphy\",\"sportradar_id\":\"89fab76c-282e-4bd9-b281-8603da9f8424\",\"pandascore_id\":null,\"yahoo_id\":9388,\"last_name\":\"Murphy\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Lakewood (FL)\",\"depth_chart_order\":null,\"stats_id\":296138,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"louismurphy\",\"birth_date\":\"1987-05-11\",\"espn_id\":12585},\"3440\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032658\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1565671244786,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodrum\",\"depth_chart_position\":null,\"player_id\":\"3440\",\"birth_city\":null,\"fantasy_data_id\":18204,\"years_exp\":4,\"hashtag\":\"#JoshWoodrum-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":10943,\"rotoworld_id\":11612,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Josh Woodrum\",\"sportradar_id\":\"a798a651-cd63-4007-9c30-0af0d4c5c1ee\",\"pandascore_id\":null,\"yahoo_id\":29870,\"last_name\":\"Woodrum\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":611616,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joshwoodrum\",\"birth_date\":\"1992-11-07\",\"espn_id\":2575214},\"4558\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033642\",\"first_name\":\"B.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599011734203,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bello\",\"depth_chart_position\":null,\"player_id\":\"4558\",\"birth_city\":null,\"fantasy_data_id\":19441,\"years_exp\":3,\"hashtag\":\"#BJBello-NFL-LAC-58\",\"search_first_name\":\"bj\",\"rotowire_id\":12434,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1262,\"age\":26,\"full_name\":\"B.J. Bello\",\"sportradar_id\":\"1d1d59bc-ed91-4ed6-adf3-f40d0e296554\",\"pandascore_id\":null,\"yahoo_id\":30539,\"last_name\":\"Bello\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"Lincoln-Way West (IL)\",\"depth_chart_order\":null,\"stats_id\":691741,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bjbello\",\"birth_date\":\"1994-10-31\",\"espn_id\":2970622},\"1019\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"browner\",\"depth_chart_position\":null,\"player_id\":\"1019\",\"birth_city\":null,\"fantasy_data_id\":13687,\"years_exp\":15,\"hashtag\":\"#BrandonBrowner-NFL-FA-39\",\"search_first_name\":\"brandon\",\"rotowire_id\":4459,\"rotoworld_id\":6512,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Brandon Browner\",\"sportradar_id\":\"0ad26168-7f0e-4eb9-8776-7166b5ebab16\",\"pandascore_id\":null,\"yahoo_id\":24775,\"last_name\":\"Browner\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"James Monroe (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brandonbrowner\",\"birth_date\":\"1984-08-02\",\"espn_id\":9250},\"6005\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035026\",\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1577565610657,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"givens\",\"depth_chart_position\":\"LDT\",\"player_id\":\"6005\",\"birth_city\":null,\"fantasy_data_id\":20773,\"years_exp\":1,\"hashtag\":\"#KevinGivens-NFL-SF-90\",\"search_first_name\":\"kevin\",\"rotowire_id\":13519,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1538,\"age\":23,\"full_name\":\"Kevin Givens\",\"sportradar_id\":\"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7\",\"pandascore_id\":null,\"yahoo_id\":32321,\"last_name\":\"Givens\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Altoona (PA)\",\"depth_chart_order\":2,\"stats_id\":883319,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kevingivens\",\"birth_date\":\"1997-03-01\",\"espn_id\":3929641},\"3561\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032583\",\"first_name\":\"Bryce\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1523486701657,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3561\",\"birth_city\":null,\"fantasy_data_id\":18334,\"years_exp\":4,\"hashtag\":\"#BryceWilliams-NFL-FA-80\",\"search_first_name\":\"bryce\",\"rotowire_id\":10946,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Bryce Williams\",\"sportradar_id\":\"a204547e-ecd3-4116-909a-ce823caa9067\",\"pandascore_id\":null,\"yahoo_id\":29879,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609814,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brycewilliams\",\"birth_date\":\"1993-02-24\",\"espn_id\":2981998},\"765\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeromy\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"miles\",\"depth_chart_position\":null,\"player_id\":\"765\",\"birth_city\":null,\"fantasy_data_id\":12519,\"years_exp\":6,\"hashtag\":\"#JeromyMiles-NFL-FA-36\",\"search_first_name\":\"jeromy\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jeromy Miles\",\"sportradar_id\":\"9e70c666-9371-4659-b075-2d52e303ef4a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Miles\",\"metadata\":null,\"college\":\"Massachusetts\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeromymiles\",\"birth_date\":\"1987-07-20\",\"espn_id\":13756},\"327\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1521051602729,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"327\",\"birth_city\":null,\"fantasy_data_id\":8135,\"years_exp\":13,\"hashtag\":\"#JoeThomas-NFL-FA-73\",\"search_first_name\":\"joe\",\"rotowire_id\":5232,\"rotoworld_id\":4152,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Joe Thomas\",\"sportradar_id\":\"318b9670-1dde-4e65-a92f-65df6e80824d\",\"pandascore_id\":null,\"yahoo_id\":8257,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Brookfield Central (WI)\",\"depth_chart_order\":null,\"stats_id\":563762,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'6\\\"\",\"search_full_name\":\"joethomas\",\"birth_date\":\"1984-12-04\",\"espn_id\":10448},\"557\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Perrish\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":null,\"player_id\":\"557\",\"birth_city\":null,\"fantasy_data_id\":11181,\"years_exp\":10,\"hashtag\":\"#PerrishCox-NFL-FA-20\",\"search_first_name\":\"perrish\",\"rotowire_id\":6619,\"rotoworld_id\":5625,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Perrish Cox\",\"sportradar_id\":\"35a00c63-962c-4fd5-bd7e-519218e951b8\",\"pandascore_id\":null,\"yahoo_id\":24113,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"University (TX)\",\"depth_chart_order\":null,\"stats_id\":333346,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"perrishcox\",\"birth_date\":\"1987-01-10\",\"espn_id\":13344},\"7510\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fanaika\",\"depth_chart_position\":null,\"player_id\":\"7510\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":11,\"hashtag\":\"#PaulFanaika-NFL-FA-74\",\"search_first_name\":\"paul\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":null,\"age\":34,\"full_name\":\"Paul Fanaika\",\"sportradar_id\":\"3a9e9871-20c3-42b3-ad2c-a2bfec176c7d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fanaika\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":\"Mills (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"327\",\"height\":\"6'5\\\"\",\"search_full_name\":\"paulfanaika\",\"birth_date\":\"1986-04-09\",\"espn_id\":null},\"3796\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032723\",\"first_name\":\"Norman\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567109142270,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"3796\",\"birth_city\":null,\"fantasy_data_id\":18610,\"years_exp\":4,\"hashtag\":\"#NormanPrice-NFL-FA-63\",\"search_first_name\":\"norman\",\"rotowire_id\":11556,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Norman Price\",\"sportradar_id\":\"66a432fc-ee15-4f63-a37b-207c1b5e7c31\",\"pandascore_id\":null,\"yahoo_id\":29773,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'4\\\"\",\"search_full_name\":\"normanprice\",\"birth_date\":\"1994-08-25\",\"espn_id\":3123982},\"2221\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Solomon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"patton\",\"depth_chart_position\":null,\"player_id\":\"2221\",\"birth_city\":null,\"fantasy_data_id\":16606,\"years_exp\":2,\"hashtag\":\"#SolomonPatton-NFL-FA-86\",\"search_first_name\":\"solomon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Solomon Patton\",\"sportradar_id\":\"07061479-01d8-408e-9bb0-3ddcb07a0a1a\",\"pandascore_id\":null,\"yahoo_id\":28043,\"last_name\":\"Patton\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542803,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"171\",\"height\":\"5'9\\\"\",\"search_full_name\":\"solomonpatton\",\"birth_date\":\"1990-10-17\",\"espn_id\":17228},\"4326\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033261\",\"first_name\":\"Bug\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1588015860703,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"4326\",\"birth_city\":null,\"fantasy_data_id\":19179,\"years_exp\":3,\"hashtag\":\"#BugHoward-NFL-FA-0\",\"search_first_name\":\"bug\",\"rotowire_id\":11862,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Bug Howard\",\"sportradar_id\":\"dcf6b57b-6706-4d73-8242-2f71667be0e7\",\"pandascore_id\":null,\"yahoo_id\":30526,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728162,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'5\\\"\",\"search_full_name\":\"bughoward\",\"birth_date\":\"1994-11-28\",\"espn_id\":3039720},\"6298\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035310\",\"first_name\":\"Chandler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604251219038,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":\"RB\",\"player_id\":\"6298\",\"birth_city\":null,\"fantasy_data_id\":21132,\"years_exp\":1,\"hashtag\":\"#ChandlerCox-NFL-MIA-27\",\"search_first_name\":\"chandler\",\"rotowire_id\":13991,\"rotoworld_id\":null,\"active\":true,\"search_rank\":320,\"age\":24,\"full_name\":\"Chandler Cox\",\"sportradar_id\":\"ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6\",\"pandascore_id\":null,\"yahoo_id\":32065,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Apopka (FL)\",\"depth_chart_order\":5,\"stats_id\":866956,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chandlercox\",\"birth_date\":\"1996-07-29\",\"espn_id\":3843217},\"2650\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0031543\",\"first_name\":\"Ty\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":1570049419410,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"long\",\"depth_chart_position\":\"K\",\"player_id\":\"2650\",\"birth_city\":null,\"fantasy_data_id\":17118,\"years_exp\":5,\"hashtag\":\"#TyLong-NFL-LAC-1\",\"search_first_name\":\"ty\",\"rotowire_id\":10849,\"rotoworld_id\":null,\"active\":true,\"search_rank\":920,\"age\":27,\"full_name\":\"Ty Long\",\"sportradar_id\":\"2b129eab-b967-4d0d-bc6e-28c0781bcdd3\",\"pandascore_id\":null,\"yahoo_id\":28861,\"last_name\":\"Long\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Roswell (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylong\",\"birth_date\":\"1993-04-06\",\"espn_id\":2582324},\"7396\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599693362228,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phelps\",\"depth_chart_position\":null,\"player_id\":\"7396\",\"birth_city\":null,\"fantasy_data_id\":22381,\"years_exp\":0,\"hashtag\":\"#DevinPhelps-NFL-FA-0\",\"search_first_name\":\"devin\",\"rotowire_id\":14945,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Devin Phelps\",\"sportradar_id\":\"af894be2-d4d3-4a13-b2f4-2982ef815092\",\"pandascore_id\":null,\"yahoo_id\":33084,\"last_name\":\"Phelps\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"devinphelps\",\"birth_date\":null,\"espn_id\":null},\"4357\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033408\",\"first_name\":\"Bryan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603134618188,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":null,\"player_id\":\"4357\",\"birth_city\":null,\"fantasy_data_id\":19214,\"years_exp\":3,\"hashtag\":\"#BryanCox-NFL-BUF-51\",\"search_first_name\":\"bryan\",\"rotowire_id\":11910,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Bryan Cox\",\"sportradar_id\":\"0043c962-e726-4ed2-8aa3-b0eb5cdc5567\",\"pandascore_id\":null,\"yahoo_id\":30379,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":694610,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bryancox\",\"birth_date\":\"1994-06-25\",\"espn_id\":2980098},\"6958\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604192411104,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"danna\",\"depth_chart_position\":\"LDE\",\"player_id\":\"6958\",\"birth_city\":null,\"fantasy_data_id\":22095,\"years_exp\":0,\"hashtag\":\"#MichaelDanna-NFL-KC-51\",\"search_first_name\":\"michael\",\"rotowire_id\":14823,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1921,\"age\":22,\"full_name\":\"Michael Danna\",\"sportradar_id\":\"9e9d2934-a273-4e39-a413-d991d083297b\",\"pandascore_id\":null,\"yahoo_id\":32847,\"last_name\":\"Danna\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"Warren De La Salle (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'2\\\"\",\"search_full_name\":\"michaeldanna\",\"birth_date\":\"1997-12-04\",\"espn_id\":3915487},\"4841\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034045\",\"first_name\":\"Whitney\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"4841\",\"birth_city\":null,\"fantasy_data_id\":19744,\"years_exp\":3,\"hashtag\":\"#WhitneyRichardson-NFL-FA-90\",\"search_first_name\":\"whitney\",\"rotowire_id\":12384,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Whitney Richardson\",\"sportradar_id\":\"2fbd5ebf-c12a-4e92-b7b6-de649c37ccd3\",\"pandascore_id\":null,\"yahoo_id\":30948,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Lane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'4\\\"\",\"search_full_name\":\"whitneyrichardson\",\"birth_date\":\"1992-07-26\",\"espn_id\":4255255},\"4883\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eric\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"decosta\",\"depth_chart_position\":null,\"player_id\":\"4883\",\"birth_city\":null,\"fantasy_data_id\":19783,\"years_exp\":0,\"hashtag\":\"#EricDecosta-NFL-FA-0\",\"search_first_name\":\"eric\",\"rotowire_id\":null,\"rotoworld_id\":11216,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eric Decosta\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Decosta\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ericdecosta\",\"birth_date\":null,\"espn_id\":null},\"5460\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034202\",\"first_name\":\"Kaare\",\"practice_description\":null,\"fantasy_positions\":[\"P\",\"K\"],\"news_updated\":1605295253601,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vedvik\",\"depth_chart_position\":null,\"player_id\":\"5460\",\"birth_city\":null,\"fantasy_data_id\":20248,\"years_exp\":2,\"hashtag\":\"#KaareVedvik-NFL-WAS-8\",\"search_first_name\":\"kaare\",\"rotowire_id\":13131,\"rotoworld_id\":13603,\"active\":true,\"search_rank\":1436,\"age\":26,\"full_name\":\"Kaare Vedvik\",\"sportradar_id\":\"622c2cf0-a29e-4943-8819-f9dc48f3d7a0\",\"pandascore_id\":null,\"yahoo_id\":31421,\"last_name\":\"Vedvik\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"McPherson (KS)\",\"depth_chart_order\":null,\"stats_id\":824269,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kaarevedvik\",\"birth_date\":\"1994-03-16\",\"espn_id\":3068715},\"3991\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033188\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bazzie\",\"depth_chart_position\":null,\"player_id\":\"3991\",\"birth_city\":null,\"fantasy_data_id\":18828,\"years_exp\":2,\"hashtag\":\"#AlexBazzie-NFL-FA-54\",\"search_first_name\":\"alex\",\"rotowire_id\":11711,\"rotoworld_id\":12148,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Alex Bazzie\",\"sportradar_id\":\"a8e9bc1d-a8a8-4b93-b108-0f0f7fa04185\",\"pandascore_id\":null,\"yahoo_id\":30100,\"last_name\":\"Bazzie\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'1\\\"\",\"search_full_name\":\"alexbazzie\",\"birth_date\":\"1990-08-05\",\"espn_id\":2470344},\"6636\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035388\",\"first_name\":\"Jamalcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"liggins\",\"depth_chart_position\":null,\"player_id\":\"6636\",\"birth_city\":null,\"fantasy_data_id\":21437,\"years_exp\":1,\"hashtag\":\"#JamalcolmLiggins-NFL-FA-46\",\"search_first_name\":\"jamalcolm\",\"rotowire_id\":14019,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jamalcolm Liggins\",\"sportradar_id\":\"22903cb0-f58b-4fde-997e-5764769770ea\",\"pandascore_id\":null,\"yahoo_id\":32535,\"last_name\":\"Liggins\",\"metadata\":null,\"college\":\"Dickinson State (ND)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamalcolmliggins\",\"birth_date\":\"1996-04-26\",\"espn_id\":4423369},\"4481\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pegula\",\"depth_chart_position\":null,\"player_id\":\"4481\",\"birth_city\":null,\"fantasy_data_id\":19349,\"years_exp\":0,\"hashtag\":\"#TerryPegula-NFL-FA-0\",\"search_first_name\":\"terry\",\"rotowire_id\":null,\"rotoworld_id\":10282,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Terry Pegula\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Pegula\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"terrypegula\",\"birth_date\":null,\"espn_id\":null},\"7468\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gooseberry\",\"depth_chart_position\":null,\"player_id\":\"7468\",\"birth_city\":null,\"fantasy_data_id\":22443,\"years_exp\":0,\"hashtag\":\"#JustinGooseberry-NFL-FA-0\",\"search_first_name\":\"justin\",\"rotowire_id\":14983,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Justin Gooseberry\",\"sportradar_id\":\"22d0d695-1d85-4386-8869-3cbedede8fb8\",\"pandascore_id\":null,\"yahoo_id\":33070,\"last_name\":\"Gooseberry\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"justingooseberry\",\"birth_date\":\"1996-10-14\",\"espn_id\":4570199},\"5575\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devondre\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"seymour\",\"depth_chart_position\":null,\"player_id\":\"5575\",\"birth_city\":null,\"fantasy_data_id\":20576,\"years_exp\":0,\"hashtag\":\"#DevondreSeymour-NFL-KC-73\",\"search_first_name\":\"devondre\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Devondre Seymour\",\"sportradar_id\":\"22431503-ac33-426b-b6c9-a1a5d0f9f000\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Seymour\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'6\\\"\",\"search_full_name\":\"devondreseymour\",\"birth_date\":null,\"espn_id\":null},\"4401\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033417\",\"first_name\":\"Damore'ea\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536282602776,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stringfellow\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4401\",\"birth_city\":null,\"fantasy_data_id\":19260,\"years_exp\":3,\"hashtag\":\"#DamoreeaStringfellow-NFL-FA-15\",\"search_first_name\":\"damoreea\",\"rotowire_id\":11688,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Damore'ea Stringfellow\",\"sportradar_id\":\"a8dbddc6-b4c9-4c8e-86c8-2e49026e7418\",\"pandascore_id\":null,\"yahoo_id\":30653,\"last_name\":\"Stringfellow\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":747911,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"damoreeastringfellow\",\"birth_date\":\"1994-10-18\",\"espn_id\":3052182},\"5615\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034657\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1572302106746,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dickerson\",\"depth_chart_position\":\"NT\",\"player_id\":\"5615\",\"birth_city\":null,\"fantasy_data_id\":20380,\"years_exp\":2,\"hashtag\":\"#MattDickerson-NFL-TEN-92\",\"search_first_name\":\"matt\",\"rotowire_id\":12973,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1462,\"age\":25,\"full_name\":\"Matt Dickerson\",\"sportradar_id\":\"7bce07de-7179-459c-97a4-279fb53641a2\",\"pandascore_id\":null,\"yahoo_id\":31612,\"last_name\":\"Dickerson\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"UCLA\",\"high_school\":\"Junipero Serra (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattdickerson\",\"birth_date\":\"1995-11-09\",\"espn_id\":3134316},\"6488\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035131\",\"first_name\":\"Kalil\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"morris\",\"depth_chart_position\":null,\"player_id\":\"6488\",\"birth_city\":null,\"fantasy_data_id\":21487,\"years_exp\":1,\"hashtag\":\"#KalilMorris-NFL-BAL-91\",\"search_first_name\":\"kalil\",\"rotowire_id\":14124,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kalil Morris\",\"sportradar_id\":\"cc4d595a-3fd3-49ed-a332-8d9bab9159fd\",\"pandascore_id\":null,\"yahoo_id\":32309,\"last_name\":\"Morris\",\"metadata\":null,\"college\":\"Kent State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"322\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kalilmorris\",\"birth_date\":\"1995-10-22\",\"espn_id\":3125872},\"6092\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Venzell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boulware\",\"depth_chart_position\":null,\"player_id\":\"6092\",\"birth_city\":null,\"fantasy_data_id\":21035,\"years_exp\":0,\"hashtag\":\"#VenzellBoulware-NFL-FA-0\",\"search_first_name\":\"venzell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Venzell Boulware\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Boulware\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"306\",\"height\":\"6'3\\\"\",\"search_full_name\":\"venzellboulware\",\"birth_date\":null,\"espn_id\":null},\"4766\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reginald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1524272101724,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"4766\",\"birth_city\":null,\"fantasy_data_id\":19185,\"years_exp\":2,\"hashtag\":\"#ReginaldPorter-NFL-FA-31\",\"search_first_name\":\"reginald\",\"rotowire_id\":12299,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Reginald Porter\",\"sportradar_id\":\"08133a9d-2610-4c53-9141-ab2d72cc0b59\",\"pandascore_id\":null,\"yahoo_id\":30532,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"reginaldporter\",\"birth_date\":\"1994-07-13\",\"espn_id\":2971659},\"5406\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034615\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532463601394,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"liddell\",\"depth_chart_position\":null,\"player_id\":\"5406\",\"birth_city\":null,\"fantasy_data_id\":20475,\"years_exp\":2,\"hashtag\":\"#JoshuaLiddell-NFL-FA-22\",\"search_first_name\":\"joshua\",\"rotowire_id\":13287,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Joshua Liddell\",\"sportradar_id\":\"20d25783-a394-4771-96a1-97dd818053ba\",\"pandascore_id\":null,\"yahoo_id\":31259,\"last_name\":\"Liddell\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshualiddell\",\"birth_date\":\"1996-02-15\",\"espn_id\":3128696},\"2558\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"A.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tarpley\",\"depth_chart_position\":null,\"player_id\":\"2558\",\"birth_city\":null,\"fantasy_data_id\":17019,\"years_exp\":5,\"hashtag\":\"#AJTarpley-NFL-FA-59\",\"search_first_name\":\"aj\",\"rotowire_id\":10672,\"rotoworld_id\":10661,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"A.J. Tarpley\",\"sportradar_id\":\"96cb3af6-8fa5-4743-9813-e6982690b860\",\"pandascore_id\":null,\"yahoo_id\":28777,\"last_name\":\"Tarpley\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Wayzata\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ajtarpley\",\"birth_date\":\"1992-04-30\",\"espn_id\":2517788},\"3691\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032546\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1535664906557,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hillary\",\"depth_chart_position\":null,\"player_id\":\"3691\",\"birth_city\":null,\"fantasy_data_id\":18491,\"years_exp\":4,\"hashtag\":\"#DariusHillary-NFL-FA-28\",\"search_first_name\":\"darius\",\"rotowire_id\":11377,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Darius Hillary\",\"sportradar_id\":\"74940b12-6b27-496a-9113-d9139e38056c\",\"pandascore_id\":null,\"yahoo_id\":29706,\"last_name\":\"Hillary\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dariushillary\",\"birth_date\":\"1993-04-05\",\"espn_id\":2576437},\"1443\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030538\",\"first_name\":\"Johnathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605653425755,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"cyprien\",\"depth_chart_position\":null,\"player_id\":\"1443\",\"birth_city\":null,\"fantasy_data_id\":15012,\"years_exp\":7,\"hashtag\":\"#JohnathanCyprien-NFL-SF-32\",\"search_first_name\":\"johnathan\",\"rotowire_id\":8778,\"rotoworld_id\":8450,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Johnathan Cyprien\",\"sportradar_id\":\"bb7f4f60-57a4-437d-9541-a42abb1d1f53\",\"pandascore_id\":null,\"yahoo_id\":26656,\"last_name\":\"Cyprien\",\"metadata\":null,\"college\":\"Florida International\",\"high_school\":\"North Miami Beach (FL)\",\"depth_chart_order\":null,\"stats_id\":514198,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnathancyprien\",\"birth_date\":\"1990-07-29\",\"espn_id\":15831},\"5269\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034735\",\"first_name\":\"Codey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"TE\"],\"news_updated\":1602537051838,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcelroy\",\"depth_chart_position\":\"TE\",\"player_id\":\"5269\",\"birth_city\":null,\"fantasy_data_id\":20314,\"years_exp\":2,\"hashtag\":\"#CodeyMcElroy-NFL-TB-86\",\"search_first_name\":\"codey\",\"rotowire_id\":13341,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1450,\"age\":27,\"full_name\":\"Codey McElroy\",\"sportradar_id\":\"225d9e5e-598c-4b32-9c74-d7df2018500c\",\"pandascore_id\":null,\"yahoo_id\":31732,\"last_name\":\"McElroy\",\"metadata\":null,\"college\":\"Southeastern Oklahoma\",\"high_school\":\"Chattanooga (OK)\",\"depth_chart_order\":6,\"stats_id\":901152,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'6\\\"\",\"search_full_name\":\"codeymcelroy\",\"birth_date\":\"1992-12-13\",\"espn_id\":3951441},\"5844\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035229\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606428660060,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hockenson\",\"depth_chart_position\":\"TE\",\"player_id\":\"5844\",\"birth_city\":null,\"fantasy_data_id\":20805,\"years_exp\":1,\"hashtag\":\"#TJHockenson-NFL-DET-88\",\"search_first_name\":\"tj\",\"rotowire_id\":13610,\"rotoworld_id\":14051,\"active\":true,\"search_rank\":146,\"age\":23,\"full_name\":\"T.J. Hockenson\",\"sportradar_id\":\"bd1120b6-38b3-4225-a4b0-20660a149d0d\",\"pandascore_id\":null,\"yahoo_id\":31840,\"last_name\":\"Hockenson\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Chariton (IA)\",\"depth_chart_order\":1,\"stats_id\":923915,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"248\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tjhockenson\",\"birth_date\":\"1997-07-03\",\"espn_id\":4036133},\"6509\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035105\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1579551005080,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"applefield\",\"depth_chart_position\":null,\"player_id\":\"6509\",\"birth_city\":null,\"fantasy_data_id\":21460,\"years_exp\":1,\"hashtag\":\"#MarcusApplefield-NFL-FA-62\",\"search_first_name\":\"marcus\",\"rotowire_id\":14125,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Marcus Applefield\",\"sportradar_id\":\"dec4a1a9-5bfc-4ca3-ad1d-903020bf4403\",\"pandascore_id\":null,\"yahoo_id\":32312,\"last_name\":\"Applefield\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"marcusapplefield\",\"birth_date\":\"1995-12-15\",\"espn_id\":3121518},\"3855\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barber\",\"depth_chart_position\":null,\"player_id\":\"3855\",\"birth_city\":null,\"fantasy_data_id\":18676,\"years_exp\":0,\"hashtag\":\"#JaredBarber-NFL-FA-49\",\"search_first_name\":\"jared\",\"rotowire_id\":11331,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jared Barber\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29989,\"last_name\":\"Barber\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jaredbarber\",\"birth_date\":\"1992-10-20\",\"espn_id\":null},\"7385\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603204257372,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"angulo\",\"depth_chart_position\":null,\"player_id\":\"7385\",\"birth_city\":null,\"fantasy_data_id\":22371,\"years_exp\":0,\"hashtag\":\"#ChristianAngulo-NFL-IND-33\",\"search_first_name\":\"christian\",\"rotowire_id\":15008,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1994,\"age\":23,\"full_name\":\"Christian Angulo\",\"sportradar_id\":\"30259e5f-6999-4c24-90cc-4f72bc0de44b\",\"pandascore_id\":null,\"yahoo_id\":33059,\"last_name\":\"Angulo\",\"metadata\":null,\"college\":\"Hampton\",\"high_school\":\"East Bay (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christianangulo\",\"birth_date\":\"1997-02-17\",\"espn_id\":3914143},\"443\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Garry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"443\",\"birth_city\":null,\"fantasy_data_id\":9174,\"years_exp\":6,\"hashtag\":\"#GarryWilliams-NFL-FA-67\",\"search_first_name\":\"garry\",\"rotowire_id\":8608,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Garry Williams\",\"sportradar_id\":\"9c7c607f-7123-4d49-87f6-c928dc0e6d66\",\"pandascore_id\":null,\"yahoo_id\":9586,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrywilliams\",\"birth_date\":\"1986-08-20\",\"espn_id\":12906},\"1852\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031017\",\"first_name\":\"Dakota\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1585358156082,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dozier\",\"depth_chart_position\":\"LG\",\"player_id\":\"1852\",\"birth_city\":null,\"fantasy_data_id\":16061,\"years_exp\":6,\"hashtag\":\"#DakotaDozier-NFL-MIN-78\",\"search_first_name\":\"dakota\",\"rotowire_id\":9438,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dakota Dozier\",\"sportradar_id\":\"a60226b6-cc0e-45bd-b31c-097242ae07f7\",\"pandascore_id\":null,\"yahoo_id\":27665,\"last_name\":\"Dozier\",\"metadata\":null,\"college\":\"Furman\",\"high_school\":\"Brookland-Cayce (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'4\\\"\",\"search_full_name\":\"dakotadozier\",\"birth_date\":\"1991-04-30\",\"espn_id\":16861},\"2563\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031931\",\"first_name\":\"Tony\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1534084820916,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"washington\",\"depth_chart_position\":null,\"player_id\":\"2563\",\"birth_city\":null,\"fantasy_data_id\":17027,\"years_exp\":5,\"hashtag\":\"#TonyWashington-NFL-FA-57\",\"search_first_name\":\"tony\",\"rotowire_id\":10805,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tony Washington\",\"sportradar_id\":\"bed14e65-6ae0-4ad0-9f9a-85abb3c4824c\",\"pandascore_id\":null,\"yahoo_id\":28902,\"last_name\":\"Washington\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"247\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tonywashington\",\"birth_date\":\"1994-04-24\",\"espn_id\":2517002},\"7213\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"montano\",\"depth_chart_position\":null,\"player_id\":\"7213\",\"birth_city\":null,\"fantasy_data_id\":22216,\"years_exp\":0,\"hashtag\":\"#ChristianMontano-NFL-FA-0\",\"search_first_name\":\"christian\",\"rotowire_id\":15033,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Christian Montano\",\"sportradar_id\":\"244c48ef-9011-4e36-944f-92db1eb540e8\",\"pandascore_id\":null,\"yahoo_id\":32941,\"last_name\":\"Montano\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"christianmontano\",\"birth_date\":null,\"espn_id\":null},\"4334\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033273\",\"first_name\":\"Jerry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1532553001578,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ugokwe\",\"depth_chart_position\":null,\"player_id\":\"4334\",\"birth_city\":null,\"fantasy_data_id\":19190,\"years_exp\":3,\"hashtag\":\"#JerryUgokwe-NFL-FA-73\",\"search_first_name\":\"jerry\",\"rotowire_id\":11824,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jerry Ugokwe\",\"sportradar_id\":\"bfa27c96-613d-4233-b661-e9b5e3624659\",\"pandascore_id\":null,\"yahoo_id\":30537,\"last_name\":\"Ugokwe\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'7\\\"\",\"search_full_name\":\"jerryugokwe\",\"birth_date\":\"1994-02-24\",\"espn_id\":2987317},\"2217\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herron\",\"depth_chart_position\":null,\"player_id\":\"2217\",\"birth_city\":null,\"fantasy_data_id\":16598,\"years_exp\":2,\"hashtag\":\"#RobertHerron-NFL-FA-0\",\"search_first_name\":\"robert\",\"rotowire_id\":9457,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Robert Herron\",\"sportradar_id\":\"57bdde93-519a-4093-ab87-098d8da2c655\",\"pandascore_id\":null,\"yahoo_id\":27713,\"last_name\":\"Herron\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":560513,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'9\\\"\",\"search_full_name\":\"robertherron\",\"birth_date\":\"1992-06-02\",\"espn_id\":16903},\"2496\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032068\",\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1579651211961,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"2496\",\"birth_city\":null,\"fantasy_data_id\":16955,\"years_exp\":5,\"hashtag\":\"#MalcolmJohnson-NFL-FA-46\",\"search_first_name\":\"malcolm\",\"rotowire_id\":10480,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Malcolm Johnson\",\"sportradar_id\":\"96b38cbb-4709-4c5f-89c7-f9fd7fa77a95\",\"pandascore_id\":null,\"yahoo_id\":28583,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Tuscaloosa (AL) Northridge\",\"depth_chart_order\":null,\"stats_id\":555630,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'1\\\"\",\"search_full_name\":\"malcolmjohnson\",\"birth_date\":\"1992-08-11\",\"espn_id\":2516316},\"7326\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Breiden\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588430446917,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fehoko\",\"depth_chart_position\":null,\"player_id\":\"7326\",\"birth_city\":null,\"fantasy_data_id\":22318,\"years_exp\":0,\"hashtag\":\"#BreidenFehoko-NFL-LAC-96\",\"search_first_name\":\"breiden\",\"rotowire_id\":15081,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1979,\"age\":24,\"full_name\":\"Breiden Fehoko\",\"sportradar_id\":\"e735b2ad-8c89-450b-8241-3f602016b897\",\"pandascore_id\":null,\"yahoo_id\":32980,\"last_name\":\"Fehoko\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Farrington (HI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'2\\\"\",\"search_full_name\":\"breidenfehoko\",\"birth_date\":\"1996-10-15\",\"espn_id\":3674831},\"465\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1531338301515,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"pettigrew\",\"depth_chart_position\":null,\"player_id\":\"465\",\"birth_city\":null,\"fantasy_data_id\":9588,\"years_exp\":11,\"hashtag\":\"#BrandonPettigrew-NFL-FA-87\",\"search_first_name\":\"brandon\",\"rotowire_id\":6032,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Brandon Pettigrew\",\"sportradar_id\":\"ada19a02-e5e2-4294-ab0a-7716893a7e65\",\"pandascore_id\":null,\"yahoo_id\":9284,\"last_name\":\"Pettigrew\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Lee (TX)\",\"depth_chart_order\":null,\"stats_id\":251803,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"278\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonpettigrew\",\"birth_date\":\"1985-02-23\",\"espn_id\":12549},\"2412\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031570\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1598568345523,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hardy\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2412\",\"birth_city\":null,\"fantasy_data_id\":16868,\"years_exp\":5,\"hashtag\":\"#JustinHardy-NFL-FA-14\",\"search_first_name\":\"justin\",\"rotowire_id\":10228,\"rotoworld_id\":null,\"active\":true,\"search_rank\":888,\"age\":28,\"full_name\":\"Justin Hardy\",\"sportradar_id\":\"052a93cf-8536-4a12-9831-84b27e8608da\",\"pandascore_id\":null,\"yahoo_id\":28495,\"last_name\":\"Hardy\",\"metadata\":null,\"college\":\"East Carolina\",\"high_school\":\"West Craven (NC)\",\"depth_chart_order\":6,\"stats_id\":557415,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'10\\\"\",\"search_full_name\":\"justinhardy\",\"birth_date\":\"1991-12-18\",\"espn_id\":2518678},\"6608\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035221\",\"first_name\":\"Stacy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1579551005079,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keely\",\"depth_chart_position\":null,\"player_id\":\"6608\",\"birth_city\":null,\"fantasy_data_id\":21525,\"years_exp\":1,\"hashtag\":\"#StacyKeely-NFL-FA-0\",\"search_first_name\":\"stacy\",\"rotowire_id\":14194,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Stacy Keely\",\"sportradar_id\":\"ee4e7684-071e-4aee-9d0e-b8da39c46322\",\"pandascore_id\":null,\"yahoo_id\":32399,\"last_name\":\"Keely\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'6\\\"\",\"search_full_name\":\"stacykeely\",\"birth_date\":\"1995-05-15\",\"espn_id\":3049043},\"813\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027955\",\"first_name\":\"Nate\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596154818553,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"solder\",\"depth_chart_position\":null,\"player_id\":\"813\",\"birth_city\":null,\"fantasy_data_id\":12778,\"years_exp\":9,\"hashtag\":\"#NateSolder-NFL-NYG-76\",\"search_first_name\":\"nate\",\"rotowire_id\":7434,\"rotoworld_id\":6517,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Nate Solder\",\"sportradar_id\":\"b077b3b2-2fed-4c9f-9b8f-c4ff50a4f911\",\"pandascore_id\":null,\"yahoo_id\":24804,\"last_name\":\"Solder\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Buena Vista (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'8\\\"\",\"search_full_name\":\"natesolder\",\"birth_date\":\"1988-04-12\",\"espn_id\":13964},\"4205\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033468\",\"first_name\":\"Ukeme\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596587750552,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"eligwe\",\"depth_chart_position\":null,\"player_id\":\"4205\",\"birth_city\":null,\"fantasy_data_id\":19051,\"years_exp\":3,\"hashtag\":\"#UkemeEligwe-NFL-LV-54\",\"search_first_name\":\"ukeme\",\"rotowire_id\":12207,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1194,\"age\":26,\"full_name\":\"Ukeme Eligwe\",\"sportradar_id\":\"d8f5b9b5-4cbf-4817-969f-99e638313383\",\"pandascore_id\":null,\"yahoo_id\":30296,\"last_name\":\"Eligwe\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":\"Stone Mountain (GA)\",\"depth_chart_order\":null,\"stats_id\":691517,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ukemeeligwe\",\"birth_date\":\"1994-04-27\",\"espn_id\":2969922},\"252\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022455\",\"first_name\":\"Don\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1550096458254,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"muhlbach\",\"depth_chart_position\":null,\"player_id\":\"252\",\"birth_city\":null,\"fantasy_data_id\":6300,\"years_exp\":16,\"hashtag\":\"#DonMuhlbach-NFL-DET-48\",\"search_first_name\":\"don\",\"rotowire_id\":6405,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Don Muhlbach\",\"sportradar_id\":\"046a6f57-6927-4f46-9c0b-67b762f2e42b\",\"pandascore_id\":null,\"yahoo_id\":7120,\"last_name\":\"Muhlbach\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Lufkin (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'4\\\"\",\"search_full_name\":\"donmuhlbach\",\"birth_date\":\"1981-08-17\",\"espn_id\":8362},\"3738\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bernstein\",\"depth_chart_position\":\"LG\",\"player_id\":\"3738\",\"birth_city\":null,\"fantasy_data_id\":18549,\"years_exp\":0,\"hashtag\":\"#JakeBernstein-NFL-FA-64\",\"search_first_name\":\"jake\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jake Bernstein\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29878,\"last_name\":\"Bernstein\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jakebernstein\",\"birth_date\":\"1993-06-18\",\"espn_id\":null},\"230\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"meachem\",\"depth_chart_position\":null,\"player_id\":\"230\",\"birth_city\":null,\"fantasy_data_id\":5741,\"years_exp\":8,\"hashtag\":\"#RobertMeachem-NFL-FA-17\",\"search_first_name\":\"robert\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Robert Meachem\",\"sportradar_id\":\"23d258b7-24bb-4b39-982e-cfb9a6f7bab6\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Meachem\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"robertmeachem\",\"birth_date\":\"1984-09-28\",\"espn_id\":10471},\"7016\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1605540917903,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"chinn\",\"depth_chart_position\":\"FS\",\"player_id\":\"7016\",\"birth_city\":null,\"fantasy_data_id\":21921,\"years_exp\":0,\"hashtag\":\"#JeremyChinn-NFL-CAR-21\",\"search_first_name\":\"jeremy\",\"rotowire_id\":14623,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1839,\"age\":22,\"full_name\":\"Jeremy Chinn\",\"sportradar_id\":\"5f623fbc-415e-4035-b423-7850cf1153b4\",\"pandascore_id\":null,\"yahoo_id\":32734,\"last_name\":\"Chinn\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":\"Fishers (IN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jeremychinn\",\"birth_date\":\"1998-02-26\",\"espn_id\":4043169},\"2536\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031626\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1566581438029,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mihalik\",\"depth_chart_position\":null,\"player_id\":\"2536\",\"birth_city\":null,\"fantasy_data_id\":16996,\"years_exp\":5,\"hashtag\":\"#BrianMihalik-NFL-FA-68\",\"search_first_name\":\"brian\",\"rotowire_id\":10499,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brian Mihalik\",\"sportradar_id\":\"649b6405-54eb-4c23-8a30-84c2f2c3031a\",\"pandascore_id\":null,\"yahoo_id\":28625,\"last_name\":\"Mihalik\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'9\\\"\",\"search_full_name\":\"brianmihalik\",\"birth_date\":\"1992-08-21\",\"espn_id\":2576480},\"292\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stephen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowen\",\"depth_chart_position\":null,\"player_id\":\"292\",\"birth_city\":null,\"fantasy_data_id\":7295,\"years_exp\":14,\"hashtag\":\"#StephenBowen-NFL-FA-72\",\"search_first_name\":\"stephen\",\"rotowire_id\":6664,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Stephen Bowen\",\"sportradar_id\":\"2dcc9d04-ac82-48a9-b8d0-ee555fede748\",\"pandascore_id\":null,\"yahoo_id\":8087,\"last_name\":\"Bowen\",\"metadata\":null,\"college\":\"Hofstra\",\"high_school\":\"Half Hollow Hills West (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"stephenbowen\",\"birth_date\":\"1984-03-28\",\"espn_id\":10361},\"5028\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034744\",\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1575231313301,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dawson\",\"depth_chart_position\":\"LCB\",\"player_id\":\"5028\",\"birth_city\":null,\"fantasy_data_id\":19884,\"years_exp\":2,\"hashtag\":\"#DukeDawson-NFL-DEN-20\",\"search_first_name\":\"duke\",\"rotowire_id\":12782,\"rotoworld_id\":13178,\"active\":true,\"search_rank\":1321,\"age\":25,\"full_name\":\"Duke Dawson\",\"sportradar_id\":\"c2ee7e58-321d-44b6-9db8-f333b75b3a1b\",\"pandascore_id\":null,\"yahoo_id\":31026,\"last_name\":\"Dawson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Florida\",\"high_school\":\"Dixie County (FL)\",\"depth_chart_order\":3,\"stats_id\":820421,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dukedawson\",\"birth_date\":\"1995-10-13\",\"espn_id\":3115250},\"4947\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034762\",\"first_name\":\"Billy\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1569765928728,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":\"C\",\"player_id\":\"4947\",\"birth_city\":null,\"fantasy_data_id\":19813,\"years_exp\":2,\"hashtag\":\"#BillyPrice-NFL-CIN-53\",\"search_first_name\":\"billy\",\"rotowire_id\":12881,\"rotoworld_id\":13091,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Billy Price\",\"sportradar_id\":\"03cb0755-ecd8-4ef4-bf94-e9e1c1f9d203\",\"pandascore_id\":null,\"yahoo_id\":30991,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Fitch (OH)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'4\\\"\",\"search_full_name\":\"billyprice\",\"birth_date\":\"1994-10-11\",\"espn_id\":3051407},\"2811\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031814\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1564344320475,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"longacre\",\"depth_chart_position\":null,\"player_id\":\"2811\",\"birth_city\":null,\"fantasy_data_id\":17279,\"years_exp\":5,\"hashtag\":\"#MattLongacre-NFL-FA-96\",\"search_first_name\":\"matt\",\"rotowire_id\":10709,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Matt Longacre\",\"sportradar_id\":\"429ba323-7175-4bb2-8f81-e77fe9d38f3c\",\"pandascore_id\":null,\"yahoo_id\":28998,\"last_name\":\"Longacre\",\"metadata\":null,\"college\":\"Northwest Missouri State\",\"high_school\":\"Millard West (NE)\",\"depth_chart_order\":null,\"stats_id\":870493,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattlongacre\",\"birth_date\":\"1991-09-21\",\"espn_id\":3085243},\"4692\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033829\",\"first_name\":\"Tyson\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"graham\",\"depth_chart_position\":null,\"player_id\":\"4692\",\"birth_city\":null,\"fantasy_data_id\":19594,\"years_exp\":3,\"hashtag\":\"#TysonGraham-NFL-FA-42\",\"search_first_name\":\"tyson\",\"rotowire_id\":12984,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tyson Graham\",\"sportradar_id\":\"b85b824b-7a0b-46ed-9f02-0485db43cc07\",\"pandascore_id\":null,\"yahoo_id\":30838,\"last_name\":\"Graham\",\"metadata\":null,\"college\":\"South Dakota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tysongraham\",\"birth_date\":\"1993-12-20\",\"espn_id\":2986898},\"3745\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032674\",\"first_name\":\"Nicholas\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567015226913,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grigsby\",\"depth_chart_position\":null,\"player_id\":\"3745\",\"birth_city\":null,\"fantasy_data_id\":18557,\"years_exp\":4,\"hashtag\":\"#NicholasGrigsby-NFL-FA-53\",\"search_first_name\":\"nicholas\",\"rotowire_id\":11573,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Nicholas Grigsby\",\"sportradar_id\":\"b8569ff2-bc1a-4b91-9830-c840e7b94549\",\"pandascore_id\":null,\"yahoo_id\":29716,\"last_name\":\"Grigsby\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'0\\\"\",\"search_full_name\":\"nicholasgrigsby\",\"birth_date\":\"1992-07-02\",\"espn_id\":2576660},\"5240\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034148\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535322302447,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marx\",\"depth_chart_position\":null,\"player_id\":\"5240\",\"birth_city\":null,\"fantasy_data_id\":20223,\"years_exp\":2,\"hashtag\":\"#DanielMarx-NFL-FA-40\",\"search_first_name\":\"daniel\",\"rotowire_id\":13038,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Daniel Marx\",\"sportradar_id\":\"3eeb2be6-2bc9-4b6e-a35b-bb1d87f14dd9\",\"pandascore_id\":null,\"yahoo_id\":31340,\"last_name\":\"Marx\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":830516,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"254\",\"height\":\"6'2\\\"\",\"search_full_name\":\"danielmarx\",\"birth_date\":\"1995-10-07\",\"espn_id\":3117250},\"333\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0023682\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606592734302,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fitzpatrick\",\"depth_chart_position\":\"QB\",\"player_id\":\"333\",\"birth_city\":null,\"fantasy_data_id\":8283,\"years_exp\":15,\"hashtag\":\"#RyanFitzpatrick-NFL-MIA-14\",\"search_first_name\":\"ryan\",\"rotowire_id\":4385,\"rotoworld_id\":3240,\"active\":true,\"search_rank\":332,\"age\":38,\"full_name\":\"Ryan Fitzpatrick\",\"sportradar_id\":\"0742d2ea-1cf2-49a6-a150-77ba6e034d8c\",\"pandascore_id\":null,\"yahoo_id\":7426,\"last_name\":\"Fitzpatrick\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"Highland (AZ)\",\"depth_chart_order\":2,\"stats_id\":161355,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryanfitzpatrick\",\"birth_date\":\"1982-11-24\",\"espn_id\":8664},\"1242\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029193\",\"first_name\":\"Bruce\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1600895709693,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"irvin\",\"depth_chart_position\":null,\"player_id\":\"1242\",\"birth_city\":null,\"fantasy_data_id\":14583,\"years_exp\":8,\"hashtag\":\"#BruceIrvin-NFL-SEA-51\",\"search_first_name\":\"bruce\",\"rotowire_id\":8199,\"rotoworld_id\":7515,\"active\":true,\"search_rank\":691,\"age\":33,\"full_name\":\"Bruce Irvin\",\"sportradar_id\":\"6fc3f73e-9c19-41cf-aa95-df4d83e29e9e\",\"pandascore_id\":null,\"yahoo_id\":25725,\"last_name\":\"Irvin\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"bruceirvin\",\"birth_date\":\"1987-11-01\",\"espn_id\":14946},\"1731\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Johnnie\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"troutman\",\"depth_chart_position\":null,\"player_id\":\"1731\",\"birth_city\":null,\"fantasy_data_id\":15674,\"years_exp\":8,\"hashtag\":\"#JohnnieTroutman-NFL-FA-63\",\"search_first_name\":\"johnnie\",\"rotowire_id\":8319,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Johnnie Troutman\",\"sportradar_id\":\"837d7d6f-a00e-472a-8183-d706ed994cd5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Troutman\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Pemberton (NJ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"330\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnnietroutman\",\"birth_date\":\"1987-11-11\",\"espn_id\":15027},\"5106\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034390\",\"first_name\":\"Tyrell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605226813947,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crosby\",\"depth_chart_position\":\"RT\",\"player_id\":\"5106\",\"birth_city\":null,\"fantasy_data_id\":19975,\"years_exp\":2,\"hashtag\":\"#TyrellCrosby-NFL-DET-65\",\"search_first_name\":\"tyrell\",\"rotowire_id\":12803,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyrell Crosby\",\"sportradar_id\":\"47ba2a5d-1177-4421-a9f0-4db1906afff7\",\"pandascore_id\":null,\"yahoo_id\":31123,\"last_name\":\"Crosby\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Green Valley (NV)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyrellcrosby\",\"birth_date\":\"1995-09-05\",\"espn_id\":3122687},\"875\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028024\",\"first_name\":\"Allen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601222739901,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bailey\",\"depth_chart_position\":\"LDE\",\"player_id\":\"875\",\"birth_city\":null,\"fantasy_data_id\":13029,\"years_exp\":9,\"hashtag\":\"#AllenBailey-NFL-ATL-93\",\"search_first_name\":\"allen\",\"rotowire_id\":7450,\"rotoworld_id\":null,\"active\":true,\"search_rank\":637,\"age\":31,\"full_name\":\"Allen Bailey\",\"sportradar_id\":\"750c6332-6848-4303-9916-a6ed49833a56\",\"pandascore_id\":null,\"yahoo_id\":24873,\"last_name\":\"Bailey\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"McIntosh County Academy (GA)\",\"depth_chart_order\":1,\"stats_id\":398103,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'3\\\"\",\"search_full_name\":\"allenbailey\",\"birth_date\":\"1989-03-25\",\"espn_id\":14020},\"6819\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606502104150,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pittman\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6819\",\"birth_city\":null,\"fantasy_data_id\":21744,\"years_exp\":0,\"hashtag\":\"#MichaelPittman-NFL-IND-11\",\"search_first_name\":\"michael\",\"rotowire_id\":14378,\"rotoworld_id\":null,\"active\":true,\"search_rank\":163,\"age\":23,\"full_name\":\"Michael Pittman\",\"sportradar_id\":\"1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d\",\"pandascore_id\":null,\"yahoo_id\":32704,\"last_name\":\"Pittman\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Oaks Christian (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"michaelpittman\",\"birth_date\":\"1997-10-05\",\"espn_id\":4035687},\"3464\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"north\",\"depth_chart_position\":null,\"player_id\":\"3464\",\"birth_city\":null,\"fantasy_data_id\":18228,\"years_exp\":1,\"hashtag\":\"#MarquezNorth-NFL-FA-3\",\"search_first_name\":\"marquez\",\"rotowire_id\":10937,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Marquez North\",\"sportradar_id\":\"222cc1fb-5183-4737-9aa0-be41f4acf7f6\",\"pandascore_id\":null,\"yahoo_id\":29733,\"last_name\":\"North\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741279,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marqueznorth\",\"birth_date\":\"1995-04-21\",\"espn_id\":3044716},\"6922\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ezra\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605900902481,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cleveland\",\"depth_chart_position\":\"RG\",\"player_id\":\"6922\",\"birth_city\":null,\"fantasy_data_id\":21993,\"years_exp\":0,\"hashtag\":\"#EzraCleveland-NFL-MIN-72\",\"search_first_name\":\"ezra\",\"rotowire_id\":14518,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Ezra Cleveland\",\"sportradar_id\":\"c410eacd-2692-41cd-97c4-4d7a0eaf1dd5\",\"pandascore_id\":null,\"yahoo_id\":32728,\"last_name\":\"Cleveland\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Bethel (WA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ezracleveland\",\"birth_date\":\"1998-05-08\",\"espn_id\":4048231},\"7129\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Blake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596384616283,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brandel\",\"depth_chart_position\":null,\"player_id\":\"7129\",\"birth_city\":null,\"fantasy_data_id\":22136,\"years_exp\":0,\"hashtag\":\"#BlakeBrandel-NFL-MIN-64\",\"search_first_name\":\"blake\",\"rotowire_id\":14825,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Blake Brandel\",\"sportradar_id\":\"44dd8731-122b-4f26-a599-10c5aa37acbc\",\"pandascore_id\":null,\"yahoo_id\":32873,\"last_name\":\"Brandel\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Central Catholic (OR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'7\\\"\",\"search_full_name\":\"blakebrandel\",\"birth_date\":\"1997-01-23\",\"espn_id\":3930270},\"33\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"phillips\",\"depth_chart_position\":null,\"player_id\":\"33\",\"birth_city\":null,\"fantasy_data_id\":880,\"years_exp\":12,\"hashtag\":\"#KennyPhillips-NFL-FA-38\",\"search_first_name\":\"kenny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Kenny Phillips\",\"sportradar_id\":\"391881cd-4f9f-49c8-ba78-10ce74728f6d\",\"pandascore_id\":null,\"yahoo_id\":8808,\"last_name\":\"Phillips\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miami Carol City (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kennyphillips\",\"birth_date\":\"1986-11-24\",\"espn_id\":11265},\"7214\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"7214\",\"birth_city\":null,\"fantasy_data_id\":22217,\"years_exp\":0,\"hashtag\":\"#CalvinTaylor-NFL-PIT-67\",\"search_first_name\":\"calvin\",\"rotowire_id\":15011,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Calvin Taylor\",\"sportradar_id\":\"821e5d53-5518-45f1-9679-6edabb0f63c0\",\"pandascore_id\":null,\"yahoo_id\":32937,\"last_name\":\"Taylor\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Kentucky\",\"high_school\":\"Augusta Christian (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'9\\\"\",\"search_full_name\":\"calvintaylor\",\"birth_date\":\"1996-12-24\",\"espn_id\":3915253},\"5552\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533583804118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"golson\",\"depth_chart_position\":null,\"player_id\":\"5552\",\"birth_city\":null,\"fantasy_data_id\":20406,\"years_exp\":0,\"hashtag\":\"#AustinGolson-NFL-NYJ-63\",\"search_first_name\":\"austin\",\"rotowire_id\":12674,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Austin Golson\",\"sportradar_id\":\"3b649886-76a0-44e2-af4a-3e566dadaa79\",\"pandascore_id\":null,\"yahoo_id\":31444,\"last_name\":\"Golson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austingolson\",\"birth_date\":\"1995-07-09\",\"espn_id\":3051877},\"2049\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Javontee\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herndon\",\"depth_chart_position\":null,\"player_id\":\"2049\",\"birth_city\":null,\"fantasy_data_id\":16343,\"years_exp\":6,\"hashtag\":\"#JavonteeHerndon-NFL-FA-15\",\"search_first_name\":\"javontee\",\"rotowire_id\":9906,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Javontee Herndon\",\"sportradar_id\":\"c0b1c024-9f12-448d-bb2c-af991f6be399\",\"pandascore_id\":null,\"yahoo_id\":27852,\"last_name\":\"Herndon\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"The Bolles School (FL)\",\"depth_chart_order\":null,\"stats_id\":555593,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"javonteeherndon\",\"birth_date\":\"1991-06-29\",\"espn_id\":17005},\"2261\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"L.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1555623920588,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"2261\",\"birth_city\":null,\"fantasy_data_id\":16672,\"years_exp\":6,\"hashtag\":\"#LJMcCray-NFL-FA-38\",\"search_first_name\":\"lj\",\"rotowire_id\":9957,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"L.J. McCray\",\"sportradar_id\":\"9fa8de3f-22f7-4449-a875-34953f4015e4\",\"pandascore_id\":null,\"yahoo_id\":28148,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Catawba\",\"high_school\":\"Harding University (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"ljmccray\",\"birth_date\":\"1991-06-18\",\"espn_id\":17212},\"7231\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lacale\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"london\",\"depth_chart_position\":null,\"player_id\":\"7231\",\"birth_city\":null,\"fantasy_data_id\":22232,\"years_exp\":0,\"hashtag\":\"#LacaleLondon-NFL-CHI-63\",\"search_first_name\":\"lacale\",\"rotowire_id\":15052,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1955,\"age\":23,\"full_name\":\"Lacale London\",\"sportradar_id\":\"f3adad78-ada5-4ded-bb47-cbf8518f7bba\",\"pandascore_id\":null,\"yahoo_id\":33175,\"last_name\":\"London\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":\"Peoria (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"lacalelondon\",\"birth_date\":\"1997-08-05\",\"espn_id\":4376288},\"4491\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033481\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606584633460,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kemp\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4491\",\"birth_city\":null,\"fantasy_data_id\":19361,\"years_exp\":3,\"hashtag\":\"#MarcusKemp-NFL-KC-19\",\"search_first_name\":\"marcus\",\"rotowire_id\":12446,\"rotoworld_id\":null,\"active\":true,\"search_rank\":547,\"age\":25,\"full_name\":\"Marcus Kemp\",\"sportradar_id\":\"11b9bcde-b2c8-412b-9689-4420182ca928\",\"pandascore_id\":null,\"yahoo_id\":30682,\"last_name\":\"Kemp\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Layton (UT)\",\"depth_chart_order\":2,\"stats_id\":746243,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'4\\\"\",\"search_full_name\":\"marcuskemp\",\"birth_date\":\"1995-08-14\",\"espn_id\":3046399},\"1231\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scruggs\",\"depth_chart_position\":null,\"player_id\":\"1231\",\"birth_city\":null,\"fantasy_data_id\":14527,\"years_exp\":8,\"hashtag\":\"#GregScruggs-NFL-FA-83\",\"search_first_name\":\"greg\",\"rotowire_id\":8365,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Greg Scruggs\",\"sportradar_id\":\"15b944c9-31d6-4426-80f6-0e927dd11225\",\"pandascore_id\":null,\"yahoo_id\":25942,\"last_name\":\"Scruggs\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"St. Xavier (OH)\",\"depth_chart_order\":null,\"stats_id\":464506,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gregscruggs\",\"birth_date\":\"1990-08-17\",\"espn_id\":15120},\"5642\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034533\",\"first_name\":\"Trayvon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606059916819,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"5642\",\"birth_city\":null,\"fantasy_data_id\":20116,\"years_exp\":2,\"hashtag\":\"#TrayvonHenderson-NFL-CIN-41\",\"search_first_name\":\"trayvon\",\"rotowire_id\":12791,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1421,\"age\":25,\"full_name\":\"Trayvon Henderson\",\"sportradar_id\":\"7917b396-b7e0-4722-9a5a-7c608dd0a6ff\",\"pandascore_id\":null,\"yahoo_id\":31562,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Hawaii\",\"high_school\":\"Grant Union (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"trayvonhenderson\",\"birth_date\":\"1995-08-15\",\"espn_id\":3046382},\"158\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dave\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"zastudil\",\"depth_chart_position\":null,\"player_id\":\"158\",\"birth_city\":null,\"fantasy_data_id\":4130,\"years_exp\":14,\"hashtag\":\"#DaveZastudil-NFL-FA-9\",\"search_first_name\":\"dave\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Dave Zastudil\",\"sportradar_id\":\"de1a7019-35e9-45b8-9a33-f97296823d70\",\"pandascore_id\":null,\"yahoo_id\":5998,\"last_name\":\"Zastudil\",\"metadata\":null,\"college\":\"Ohio University\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'3\\\"\",\"search_full_name\":\"davezastudil\",\"birth_date\":\"1978-10-26\",\"espn_id\":3640},\"846\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028015\",\"first_name\":\"Jurrell\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605914103682,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"casey\",\"depth_chart_position\":null,\"player_id\":\"846\",\"birth_city\":null,\"fantasy_data_id\":12912,\"years_exp\":9,\"hashtag\":\"#JurrellCasey-NFL-DEN-99\",\"search_first_name\":\"jurrell\",\"rotowire_id\":7469,\"rotoworld_id\":6440,\"active\":true,\"search_rank\":632,\"age\":30,\"full_name\":\"Jurrell Casey\",\"sportradar_id\":\"31b604a7-4f2e-4cfd-b040-5d749f7f5d5b\",\"pandascore_id\":null,\"yahoo_id\":24864,\"last_name\":\"Casey\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Southern California\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jurrellcasey\",\"birth_date\":\"1989-12-05\",\"espn_id\":14047},\"5583\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034310\",\"first_name\":\"Craig\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605568820119,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"5583\",\"birth_city\":null,\"fantasy_data_id\":20584,\"years_exp\":2,\"hashtag\":\"#CraigJames-NFL-PHI-39\",\"search_first_name\":\"craig\",\"rotowire_id\":13181,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1494,\"age\":24,\"full_name\":\"Craig James\",\"sportradar_id\":\"cd340b59-3ee0-4829-8d08-be8744f670a6\",\"pandascore_id\":null,\"yahoo_id\":31509,\"last_name\":\"James\",\"metadata\":null,\"college\":\"Southern Illinois\",\"high_school\":\"Edwardsville (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"craigjames\",\"birth_date\":\"1996-04-29\",\"espn_id\":3116058},\"5402\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034223\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597007751648,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wynn\",\"depth_chart_position\":null,\"player_id\":\"5402\",\"birth_city\":null,\"fantasy_data_id\":20448,\"years_exp\":2,\"hashtag\":\"#JonathanWynn-NFL-CAR-69\",\"search_first_name\":\"jonathan\",\"rotowire_id\":13062,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1473,\"age\":25,\"full_name\":\"Jonathan Wynn\",\"sportradar_id\":\"e8a774bd-079d-48ac-aaa6-01c8fcb46e4a\",\"pandascore_id\":null,\"yahoo_id\":31243,\"last_name\":\"Wynn\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jonathanwynn\",\"birth_date\":\"1995-09-21\",\"espn_id\":3051766},\"4106\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033905\",\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606530029520,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ogunjobi\",\"depth_chart_position\":\"RDT\",\"player_id\":\"4106\",\"birth_city\":null,\"fantasy_data_id\":18952,\"years_exp\":3,\"hashtag\":\"#LarryOgunjobi-NFL-CLE-65\",\"search_first_name\":\"larry\",\"rotowire_id\":11933,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1148,\"age\":26,\"full_name\":\"Larry Ogunjobi\",\"sportradar_id\":\"915f567f-ca74-426a-8ed0-123c45f67baa\",\"pandascore_id\":null,\"yahoo_id\":30178,\"last_name\":\"Ogunjobi\",\"metadata\":null,\"college\":\"North Carolina-Charlotte\",\"high_school\":\"Ragsdale (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"larryogunjobi\",\"birth_date\":\"1994-06-03\",\"espn_id\":3050122},\"2382\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032257\",\"first_name\":\"Duke\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606426559023,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RB\",\"player_id\":\"2382\",\"birth_city\":null,\"fantasy_data_id\":16838,\"years_exp\":5,\"hashtag\":\"#DukeJohnson-NFL-HOU-25\",\"search_first_name\":\"duke\",\"rotowire_id\":10084,\"rotoworld_id\":10358,\"active\":true,\"search_rank\":155,\"age\":27,\"full_name\":\"Duke Johnson\",\"sportradar_id\":\"31c376b7-2e10-473a-aa54-d9f709a5b93e\",\"pandascore_id\":null,\"yahoo_id\":28465,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Miami Norland (FL)\",\"depth_chart_order\":1,\"stats_id\":691583,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dukejohnson\",\"birth_date\":\"1993-09-23\",\"espn_id\":2969962},\"6857\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Collin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606269355471,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6857\",\"birth_city\":null,\"fantasy_data_id\":21730,\"years_exp\":0,\"hashtag\":\"#CollinJohnson-NFL-JAX-19\",\"search_first_name\":\"collin\",\"rotowire_id\":14545,\"rotoworld_id\":null,\"active\":true,\"search_rank\":364,\"age\":23,\"full_name\":\"Collin Johnson\",\"sportradar_id\":\"214ae0bc-d6ed-4216-a154-f253c85bb90b\",\"pandascore_id\":null,\"yahoo_id\":32835,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Valley Christian (CA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'6\\\"\",\"search_full_name\":\"collinjohnson\",\"birth_date\":\"1997-09-23\",\"espn_id\":4039043},\"2273\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030899\",\"first_name\":\"Garry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1550080551491,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilliam\",\"depth_chart_position\":null,\"player_id\":\"2273\",\"birth_city\":null,\"fantasy_data_id\":16684,\"years_exp\":6,\"hashtag\":\"#GarryGilliam-NFL-FA-76\",\"search_first_name\":\"garry\",\"rotowire_id\":9970,\"rotoworld_id\":9811,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Garry Gilliam\",\"sportradar_id\":\"a9fa2c9b-56df-470e-8f4f-682cdeb3dd7b\",\"pandascore_id\":null,\"yahoo_id\":27803,\"last_name\":\"Gilliam\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":\"Milton (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"garrygilliam\",\"birth_date\":\"1990-11-26\",\"espn_id\":16997},\"164\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Barry\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cofield\",\"depth_chart_position\":null,\"player_id\":\"164\",\"birth_city\":null,\"fantasy_data_id\":4224,\"years_exp\":14,\"hashtag\":\"#BarryCofield-NFL-FA-98\",\"search_first_name\":\"barry\",\"rotowire_id\":4992,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Barry Cofield\",\"sportradar_id\":\"daa8f0dd-b797-494b-b9ff-87f958137c70\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cofield\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Cleveland Height (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'4\\\"\",\"search_full_name\":\"barrycofield\",\"birth_date\":\"1984-03-19\",\"espn_id\":9710},\"7261\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arryn\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1596996350149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"siposs\",\"depth_chart_position\":null,\"player_id\":\"7261\",\"birth_city\":null,\"fantasy_data_id\":22260,\"years_exp\":0,\"hashtag\":\"#ArrynSiposs-NFL-DET-2\",\"search_first_name\":\"arryn\",\"rotowire_id\":14748,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Arryn Siposs\",\"sportradar_id\":\"fbae56c0-6400-4d46-9e76-621fc0d5fdd7\",\"pandascore_id\":null,\"yahoo_id\":33192,\"last_name\":\"Siposs\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Hallam Secondary (AUS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'2\\\"\",\"search_full_name\":\"arrynsiposs\",\"birth_date\":\"1992-11-25\",\"espn_id\":4371989},\"5176\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034748\",\"first_name\":\"Davon\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1570232733069,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grayson\",\"depth_chart_position\":null,\"player_id\":\"5176\",\"birth_city\":null,\"fantasy_data_id\":20171,\"years_exp\":2,\"hashtag\":\"#DavonGrayson-NFL-FA-85\",\"search_first_name\":\"davon\",\"rotowire_id\":12953,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Davon Grayson\",\"sportradar_id\":\"7abf30be-4489-4f1f-923c-7845e0d5420c\",\"pandascore_id\":null,\"yahoo_id\":31739,\"last_name\":\"Grayson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":746477,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'1\\\"\",\"search_full_name\":\"davongrayson\",\"birth_date\":\"1995-09-05\",\"espn_id\":3059719},\"6081\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035603\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606193450085,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"blanton\",\"depth_chart_position\":\"TE\",\"player_id\":\"6081\",\"birth_city\":null,\"fantasy_data_id\":21032,\"years_exp\":1,\"hashtag\":\"#KendallBlanton-NFL-LAR-86\",\"search_first_name\":\"kendall\",\"rotowire_id\":13711,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1642,\"age\":25,\"full_name\":\"Kendall Blanton\",\"sportradar_id\":\"b5e95ece-3b71-439b-b7b4-ae102f9e7c08\",\"pandascore_id\":null,\"yahoo_id\":32125,\"last_name\":\"Blanton\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":\"Blue Springs South (MO)\",\"depth_chart_order\":5,\"stats_id\":835674,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kendallblanton\",\"birth_date\":\"1995-11-10\",\"espn_id\":3122103},\"6923\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Geno\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602346507795,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"stone\",\"depth_chart_position\":\"SS\",\"player_id\":\"6923\",\"birth_city\":null,\"fantasy_data_id\":21931,\"years_exp\":0,\"hashtag\":\"#GenoStone-NFL-BAL-26\",\"search_first_name\":\"geno\",\"rotowire_id\":14474,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1848,\"age\":21,\"full_name\":\"Geno Stone\",\"sportradar_id\":\"95f3b8ac-e10f-4f0d-8650-b464b37ded86\",\"pandascore_id\":null,\"yahoo_id\":32889,\"last_name\":\"Stone\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"New Castle (PA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'11\\\"\",\"search_full_name\":\"genostone\",\"birth_date\":\"1999-04-19\",\"espn_id\":4240575},\"1013\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"worthington\",\"depth_chart_position\":null,\"player_id\":\"1013\",\"birth_city\":null,\"fantasy_data_id\":13618,\"years_exp\":10,\"hashtag\":\"#DougWorthington-NFL-FA-92\",\"search_first_name\":\"doug\",\"rotowire_id\":6821,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Doug Worthington\",\"sportradar_id\":\"39a47e1c-6113-436f-8f8c-0400beb8d68a\",\"pandascore_id\":null,\"yahoo_id\":24217,\"last_name\":\"Worthington\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"St. Francis (NY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dougworthington\",\"birth_date\":\"1987-08-10\",\"espn_id\":13495},\"6941\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Troy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605048361194,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dye\",\"depth_chart_position\":\"WLB\",\"player_id\":\"6941\",\"birth_city\":null,\"fantasy_data_id\":21994,\"years_exp\":0,\"hashtag\":\"#TroyDye-NFL-MIN-45\",\"search_first_name\":\"troy\",\"rotowire_id\":14740,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1872,\"age\":24,\"full_name\":\"Troy Dye\",\"sportradar_id\":\"f070d4ef-1904-47f2-87d3-b9e2788789ed\",\"pandascore_id\":null,\"yahoo_id\":32802,\"last_name\":\"Dye\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Norco (CA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"troydye\",\"birth_date\":\"1996-09-18\",\"espn_id\":4038946},\"1824\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kamal\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"1824\",\"birth_city\":null,\"fantasy_data_id\":16019,\"years_exp\":1,\"hashtag\":\"#KamalJohnson-NFL-FA-66\",\"search_first_name\":\"kamal\",\"rotowire_id\":9975,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kamal Johnson\",\"sportradar_id\":\"a91142ab-51ed-4d41-81ab-7087c09615cd\",\"pandascore_id\":null,\"yahoo_id\":28102,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kamaljohnson\",\"birth_date\":\"1991-12-09\",\"espn_id\":17187},\"6362\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dredrick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1563906314225,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"snelson\",\"depth_chart_position\":null,\"player_id\":\"6362\",\"birth_city\":null,\"fantasy_data_id\":21253,\"years_exp\":1,\"hashtag\":\"#DredrickSnelson-NFL-JAX-81\",\"search_first_name\":\"dredrick\",\"rotowire_id\":13552,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dredrick Snelson\",\"sportradar_id\":\"1d54c51b-6782-4231-9835-f7c279b86670\",\"pandascore_id\":null,\"yahoo_id\":32098,\"last_name\":\"Snelson\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":944033,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"dredricksnelson\",\"birth_date\":null,\"espn_id\":4044148},\"844\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027977\",\"first_name\":\"Akeem\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1525474501188,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ayers\",\"depth_chart_position\":null,\"player_id\":\"844\",\"birth_city\":null,\"fantasy_data_id\":12910,\"years_exp\":9,\"hashtag\":\"#AkeemAyers-NFL-FA-48\",\"search_first_name\":\"akeem\",\"rotowire_id\":7475,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Akeem Ayers\",\"sportradar_id\":\"dc30acae-b1e8-4676-959f-d3dad221c694\",\"pandascore_id\":null,\"yahoo_id\":24826,\"last_name\":\"Ayers\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Verbum Dei (CA)\",\"depth_chart_order\":null,\"stats_id\":397803,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"akeemayers\",\"birth_date\":\"1989-07-10\",\"espn_id\":14015},\"7138\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606418159511,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"claybrooks\",\"depth_chart_position\":null,\"player_id\":\"7138\",\"birth_city\":null,\"fantasy_data_id\":22141,\"years_exp\":0,\"hashtag\":\"#ChrisClaybrooks-NFL-JAX-27\",\"search_first_name\":\"chris\",\"rotowire_id\":14829,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1934,\"age\":23,\"full_name\":\"Chris Claybrooks\",\"sportradar_id\":\"039d817f-17a4-471d-8949-197335dcd1ad\",\"pandascore_id\":null,\"yahoo_id\":32893,\"last_name\":\"Claybrooks\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"McGavock (TN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"176\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisclaybrooks\",\"birth_date\":\"1997-07-17\",\"espn_id\":4371737},\"1527\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030485\",\"first_name\":\"Eddie\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1518986101024,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lacy\",\"depth_chart_position\":null,\"player_id\":\"1527\",\"birth_city\":null,\"fantasy_data_id\":15138,\"years_exp\":7,\"hashtag\":\"#EddieLacy-NFL-FA-27\",\"search_first_name\":\"eddie\",\"rotowire_id\":8620,\"rotoworld_id\":8382,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Eddie Lacy\",\"sportradar_id\":\"030f508b-be11-478e-bf68-d21e70fcff7b\",\"pandascore_id\":null,\"yahoo_id\":26684,\"last_name\":\"Lacy\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Dutchtown (LA)\",\"depth_chart_order\":null,\"stats_id\":508645,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"5'11\\\"\",\"search_full_name\":\"eddielacy\",\"birth_date\":\"1990-06-02\",\"espn_id\":15848},\"7371\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"steckler\",\"depth_chart_position\":null,\"player_id\":\"7371\",\"birth_city\":null,\"fantasy_data_id\":22359,\"years_exp\":0,\"hashtag\":\"#JordanSteckler-NFL-NE-70\",\"search_first_name\":\"jordan\",\"rotowire_id\":14921,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jordan Steckler\",\"sportradar_id\":\"f6153509-d21a-439b-a33a-007a9f25218f\",\"pandascore_id\":null,\"yahoo_id\":33119,\"last_name\":\"Steckler\",\"metadata\":null,\"college\":\"Northern Illinois\",\"high_school\":\"Two Rivers (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jordansteckler\",\"birth_date\":\"1996-07-16\",\"espn_id\":3921964},\"6738\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cedric\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"benson\",\"depth_chart_position\":null,\"player_id\":\"6738\",\"birth_city\":null,\"fantasy_data_id\":1351,\"years_exp\":0,\"hashtag\":\"#CedricBenson-NFL-FA-32\",\"search_first_name\":\"cedric\",\"rotowire_id\":null,\"rotoworld_id\":3139,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Cedric Benson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Benson\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"5'11\\\"\",\"search_full_name\":\"cedricbenson\",\"birth_date\":\"1982-12-28\",\"espn_id\":null},\"6293\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035304\",\"first_name\":\"Cullen\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606341002781,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gillaspia\",\"depth_chart_position\":\"RB\",\"player_id\":\"6293\",\"birth_city\":null,\"fantasy_data_id\":21126,\"years_exp\":1,\"hashtag\":\"#CullenGillaspia-NFL-HOU-44\",\"search_first_name\":\"cullen\",\"rotowire_id\":13988,\"rotoworld_id\":null,\"active\":true,\"search_rank\":560,\"age\":25,\"full_name\":\"Cullen Gillaspia\",\"sportradar_id\":\"1731325a-0303-4a56-81f5-3c4a588cf0d6\",\"pandascore_id\":null,\"yahoo_id\":32052,\"last_name\":\"Gillaspia\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Taylor (TX)\",\"depth_chart_order\":6,\"stats_id\":835830,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cullengillaspia\",\"birth_date\":\"1995-05-12\",\"espn_id\":3122143},\"5899\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jamal\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":null,\"player_id\":\"5899\",\"birth_city\":null,\"fantasy_data_id\":20909,\"years_exp\":0,\"hashtag\":\"#JamalPeters-NFL-FA-2\",\"search_first_name\":\"jamal\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jamal Peters\",\"sportradar_id\":\"30f707c6-0dd5-4838-8b27-eae803051da1\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"218\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamalpeters\",\"birth_date\":\"1996-12-22\",\"espn_id\":3917279},\"3774\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032689\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"QB\"],\"news_updated\":1595989804585,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"vanderlaan\",\"depth_chart_position\":\"TE\",\"player_id\":\"3774\",\"birth_city\":null,\"fantasy_data_id\":18587,\"years_exp\":4,\"hashtag\":\"#JasonVanderLaan-NFL-NO-86\",\"search_first_name\":\"jason\",\"rotowire_id\":11585,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1099,\"age\":28,\"full_name\":\"Jason Vander Laan\",\"sportradar_id\":\"1532328d-614e-4cd6-a43f-ff56073e2ff2\",\"pandascore_id\":null,\"yahoo_id\":29806,\"last_name\":\"Vander Laan\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":\"Chicago Christian (IL)\",\"depth_chart_order\":5,\"stats_id\":756569,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jasonvanderlaan\",\"birth_date\":\"1992-09-22\",\"espn_id\":3057863},\"5114\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"switzer\",\"depth_chart_position\":null,\"player_id\":\"5114\",\"birth_city\":null,\"fantasy_data_id\":20014,\"years_exp\":0,\"hashtag\":\"#RyanSwitzer-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":12288,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ryan Switzer\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Switzer\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"ryanswitzer\",\"birth_date\":null,\"espn_id\":null},\"845\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tommie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"845\",\"birth_city\":null,\"fantasy_data_id\":12911,\"years_exp\":5,\"hashtag\":\"#TommieCampbell-NFL-FA-37\",\"search_first_name\":\"tommie\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tommie Campbell\",\"sportradar_id\":\"1503ad4b-a2f6-4220-970c-c2018ab3ee11\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"California - PA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tommiecampbell\",\"birth_date\":\"1987-09-19\",\"espn_id\":14062},\"5943\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035274\",\"first_name\":\"Ross\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599329456962,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"pierschbacher\",\"depth_chart_position\":null,\"player_id\":\"5943\",\"birth_city\":null,\"fantasy_data_id\":20910,\"years_exp\":1,\"hashtag\":\"#RossPierschbacher-NFL-WAS-64\",\"search_first_name\":\"ross\",\"rotowire_id\":13540,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Ross Pierschbacher\",\"sportradar_id\":\"66170e6f-1c23-4bc0-80fb-b18344e98fb4\",\"pandascore_id\":null,\"yahoo_id\":31985,\"last_name\":\"Pierschbacher\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Cedar Falls (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rosspierschbacher\",\"birth_date\":\"1995-06-05\",\"espn_id\":3126364},\"4569\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033655\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535833508123,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"SWR\",\"player_id\":\"4569\",\"birth_city\":null,\"fantasy_data_id\":19454,\"years_exp\":3,\"hashtag\":\"#BrianBrown-NFL-FA-3\",\"search_first_name\":\"brian\",\"rotowire_id\":12518,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brian Brown\",\"sportradar_id\":\"9f356394-2efe-4ce4-a0a4-06ff9d3e3d19\",\"pandascore_id\":null,\"yahoo_id\":30781,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":751882,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"brianbrown\",\"birth_date\":\"1994-10-22\",\"espn_id\":3049891},\"4103\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033285\",\"first_name\":\"Daeshon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1604111141588,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"LDE\",\"player_id\":\"4103\",\"birth_city\":null,\"fantasy_data_id\":18949,\"years_exp\":3,\"hashtag\":\"#DaeshonHall-NFL-NYJ-74\",\"search_first_name\":\"daeshon\",\"rotowire_id\":11917,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1146,\"age\":25,\"full_name\":\"Daeshon Hall\",\"sportradar_id\":\"764df188-bced-410b-ac54-84a86ef125a9\",\"pandascore_id\":null,\"yahoo_id\":30190,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"Lancaster (TX)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'5\\\"\",\"search_full_name\":\"daeshonhall\",\"birth_date\":\"1995-06-14\",\"espn_id\":3051807},\"276\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeremy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mincey\",\"depth_chart_position\":null,\"player_id\":\"276\",\"birth_city\":null,\"fantasy_data_id\":6990,\"years_exp\":14,\"hashtag\":\"#JeremyMincey-NFL-FA-92\",\"search_first_name\":\"jeremy\",\"rotowire_id\":5044,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Jeremy Mincey\",\"sportradar_id\":\"e0df28b2-39ed-42a9-abbb-ab9f723a3ddb\",\"pandascore_id\":null,\"yahoo_id\":7940,\"last_name\":\"Mincey\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Statesboro (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jeremymincey\",\"birth_date\":\"1983-12-14\",\"espn_id\":9777},\"5855\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035588\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1556303412606,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bradbury\",\"depth_chart_position\":\"C\",\"player_id\":\"5855\",\"birth_city\":null,\"fantasy_data_id\":21038,\"years_exp\":1,\"hashtag\":\"#GarrettBradbury-NFL-MIN-56\",\"search_first_name\":\"garrett\",\"rotowire_id\":13785,\"rotoworld_id\":14081,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Garrett Bradbury\",\"sportradar_id\":\"acdd0b8b-d840-44ac-9dfa-05fe8baabe09\",\"pandascore_id\":null,\"yahoo_id\":31850,\"last_name\":\"Bradbury\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Charlotte Christian (NC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"garrettbradbury\",\"birth_date\":\"1995-06-20\",\"espn_id\":3116729},\"4804\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4804\",\"birth_city\":null,\"fantasy_data_id\":19719,\"years_exp\":2,\"hashtag\":\"#DarrellBrown-NFL-FA-66\",\"search_first_name\":\"darrell\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Darrell Brown\",\"sportradar_id\":\"dfdac366-d991-4d2a-baad-a01b055e1c48\",\"pandascore_id\":null,\"yahoo_id\":30927,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'5\\\"\",\"search_full_name\":\"darrellbrown\",\"birth_date\":\"1993-12-21\",\"espn_id\":2971882},\"5393\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034077\",\"first_name\":\"Niles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598408439886,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"5393\",\"birth_city\":null,\"fantasy_data_id\":20469,\"years_exp\":2,\"hashtag\":\"#NilesScott-NFL-FA-0\",\"search_first_name\":\"niles\",\"rotowire_id\":13423,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1477,\"age\":24,\"full_name\":\"Niles Scott\",\"sportradar_id\":\"8b6a4108-ccfa-4af4-a37e-c617d5793de7\",\"pandascore_id\":null,\"yahoo_id\":31334,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Frostburg State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nilesscott\",\"birth_date\":\"1995-09-30\",\"espn_id\":4329484},\"1535\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030578\",\"first_name\":\"Cordarrelle\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"RB\"],\"news_updated\":1606424459298,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"patterson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"1535\",\"birth_city\":null,\"fantasy_data_id\":15150,\"years_exp\":7,\"hashtag\":\"#CordarrellePatterson-NFL-CHI-84\",\"search_first_name\":\"cordarrelle\",\"rotowire_id\":8792,\"rotoworld_id\":8327,\"active\":true,\"search_rank\":270,\"age\":29,\"full_name\":\"Cordarrelle Patterson\",\"sportradar_id\":\"da85107c-365c-4d58-90ab-479d97d798b4\",\"pandascore_id\":null,\"yahoo_id\":26652,\"last_name\":\"Patterson\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Northwestern (SC)\",\"depth_chart_order\":2,\"stats_id\":690153,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'2\\\"\",\"search_full_name\":\"cordarrellepatterson\",\"birth_date\":\"1991-03-17\",\"espn_id\":15807},\"840\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corbin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1510882801232,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"840\",\"birth_city\":null,\"fantasy_data_id\":12890,\"years_exp\":9,\"hashtag\":\"#CorbinBryant-NFL-FA-73\",\"search_first_name\":\"corbin\",\"rotowire_id\":7766,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Corbin Bryant\",\"sportradar_id\":\"f6ebe187-b8a3-45f6-8cc1-56aa6456454d\",\"pandascore_id\":null,\"yahoo_id\":25088,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Morgan Park (IL)\",\"depth_chart_order\":null,\"stats_id\":332235,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"corbinbryant\",\"birth_date\":\"1988-01-04\",\"espn_id\":14231},\"6237\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035037\",\"first_name\":\"Wilton\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"speight\",\"depth_chart_position\":\"QB\",\"player_id\":\"6237\",\"birth_city\":null,\"fantasy_data_id\":21167,\"years_exp\":1,\"hashtag\":\"#WiltonSpeight-NFL-FA-5\",\"search_first_name\":\"wilton\",\"rotowire_id\":13908,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Wilton Speight\",\"sportradar_id\":\"1c56ddce-b89d-43c3-a268-f19e625938aa\",\"pandascore_id\":null,\"yahoo_id\":32327,\"last_name\":\"Speight\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":822513,\"injury_start_date\":null,\"number\":5,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"wiltonspeight\",\"birth_date\":\"1994-12-06\",\"espn_id\":3115966},\"112\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022824\",\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1571588765270,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lee\",\"depth_chart_position\":null,\"player_id\":\"112\",\"birth_city\":null,\"fantasy_data_id\":3100,\"years_exp\":16,\"hashtag\":\"#AndyLee-NFL-ARI-4\",\"search_first_name\":\"andy\",\"rotowire_id\":4044,\"rotoworld_id\":2884,\"active\":true,\"search_rank\":9999999,\"age\":38,\"full_name\":\"Andy Lee\",\"sportradar_id\":\"edaad8e3-62cd-4715-b225-0010ee9825a0\",\"pandascore_id\":null,\"yahoo_id\":6947,\"last_name\":\"Lee\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"West Oak (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'1\\\"\",\"search_full_name\":\"andylee\",\"birth_date\":\"1982-08-11\",\"espn_id\":5713},\"2956\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031489\",\"first_name\":\"Brett\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603839955145,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"C\",\"player_id\":\"2956\",\"birth_city\":null,\"fantasy_data_id\":17435,\"years_exp\":5,\"hashtag\":\"#BrettJones-NFL-MIN-61\",\"search_first_name\":\"brett\",\"rotowire_id\":10667,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brett Jones\",\"sportradar_id\":\"ec606880-b9d9-4765-b70d-7f249e06c2aa\",\"pandascore_id\":null,\"yahoo_id\":28376,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Regina, Can.\",\"high_school\":\"Weyburn Comprehensive (CAN)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brettjones\",\"birth_date\":\"1991-07-29\",\"espn_id\":3173563},\"3316\":{\"position\":\"ILB\",\"injury_notes\":\"Brothers will miss the first 9 games of the season.\",\"birth_country\":null,\"gsis_id\":\"00-0032422\",\"first_name\":\"Kentrell\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605071103226,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brothers\",\"depth_chart_position\":null,\"player_id\":\"3316\",\"birth_city\":null,\"fantasy_data_id\":18077,\"years_exp\":4,\"hashtag\":\"#KentrellBrothers-NFL-FA-0\",\"search_first_name\":\"kentrell\",\"rotowire_id\":10920,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kentrell Brothers\",\"sportradar_id\":\"9823700a-2d8e-4872-862d-382d69c67a46\",\"pandascore_id\":null,\"yahoo_id\":29394,\"last_name\":\"Brothers\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605257,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kentrellbrothers\",\"birth_date\":\"1993-02-08\",\"espn_id\":2577354},\"3313\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032783\",\"first_name\":\"LeShaun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605902702606,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"sims\",\"depth_chart_position\":\"CB\",\"player_id\":\"3313\",\"birth_city\":null,\"fantasy_data_id\":18074,\"years_exp\":4,\"hashtag\":\"#LeShaunSims-NFL-CIN-38\",\"search_first_name\":\"leshaun\",\"rotowire_id\":11175,\"rotoworld_id\":11453,\"active\":true,\"search_rank\":1019,\"age\":27,\"full_name\":\"LeShaun Sims\",\"sportradar_id\":\"44d917f8-d9e4-4b12-a107-0330156a92dd\",\"pandascore_id\":null,\"yahoo_id\":29391,\"last_name\":\"Sims\",\"metadata\":null,\"college\":\"Southern Utah\",\"high_school\":\"Andre Agassi Prep (NV)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"leshaunsims\",\"birth_date\":\"1993-09-18\",\"espn_id\":2575171},\"6378\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035486\",\"first_name\":\"Miles\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1573678263425,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"6378\",\"birth_city\":null,\"fantasy_data_id\":21323,\"years_exp\":1,\"hashtag\":\"#MilesBrown-NFL-TEN-72\",\"search_first_name\":\"miles\",\"rotowire_id\":14044,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1715,\"age\":23,\"full_name\":\"Miles Brown\",\"sportradar_id\":\"010806af-e6ba-409a-b7fb-a119714238f6\",\"pandascore_id\":null,\"yahoo_id\":32155,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Wofford\",\"high_school\":\"Sidwell Friends (DC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'2\\\"\",\"search_full_name\":\"milesbrown\",\"birth_date\":\"1997-09-04\",\"espn_id\":3913020},\"5669\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034659\",\"first_name\":\"Sharif\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1599011434086,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"finch\",\"depth_chart_position\":null,\"player_id\":\"5669\",\"birth_city\":null,\"fantasy_data_id\":20382,\"years_exp\":2,\"hashtag\":\"#SharifFinch-NFL-NYJ-56\",\"search_first_name\":\"sharif\",\"rotowire_id\":13296,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1463,\"age\":25,\"full_name\":\"Sharif Finch\",\"sportradar_id\":\"571152e1-0a76-4562-b257-4729e4401549\",\"pandascore_id\":null,\"yahoo_id\":31615,\"last_name\":\"Finch\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Henrico (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"shariffinch\",\"birth_date\":\"1995-10-01\",\"espn_id\":3051333},\"377\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Donald\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"377\",\"birth_city\":null,\"fantasy_data_id\":8604,\"years_exp\":11,\"hashtag\":\"#DonaldBrown-NFL-FA-34\",\"search_first_name\":\"donald\",\"rotowire_id\":5966,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Donald Brown\",\"sportradar_id\":\"1bec10bf-8eae-4018-b2a5-2d623e1bbbc1\",\"pandascore_id\":null,\"yahoo_id\":9291,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Red Bank Catholic (NJ)\",\"depth_chart_order\":null,\"stats_id\":297031,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"5'10\\\"\",\"search_full_name\":\"donaldbrown\",\"birth_date\":\"1987-04-11\",\"espn_id\":12489},\"4969\":{\"position\":\"NT\",\"injury_notes\":\"Vea will miss the start of training camp as he recovers from surgery.\",\"birth_country\":null,\"gsis_id\":\"00-0034773\",\"first_name\":\"Vita\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602539152202,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"vea\",\"depth_chart_position\":null,\"player_id\":\"4969\",\"birth_city\":null,\"fantasy_data_id\":19834,\"years_exp\":2,\"hashtag\":\"#VitaVea-NFL-TB-50\",\"search_first_name\":\"vita\",\"rotowire_id\":12500,\"rotoworld_id\":13127,\"active\":true,\"search_rank\":1293,\"age\":25,\"full_name\":\"Vita Vea\",\"sportradar_id\":\"503eb9a7-83ed-4b96-b0f2-7afe4920bde9\",\"pandascore_id\":null,\"yahoo_id\":30982,\"last_name\":\"Vea\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Milpitas (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"347\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vitavea\",\"birth_date\":\"1995-02-05\",\"espn_id\":3134362},\"4264\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033976\",\"first_name\":\"Treyvon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604940326540,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hester\",\"depth_chart_position\":null,\"player_id\":\"4264\",\"birth_city\":null,\"fantasy_data_id\":19110,\"years_exp\":3,\"hashtag\":\"#TreyvonHester-NFL-PHI-93\",\"search_first_name\":\"treyvon\",\"rotowire_id\":11920,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1223,\"age\":28,\"full_name\":\"Treyvon Hester\",\"sportradar_id\":\"6a859e36-f31a-4a75-8cd2-905833042fcc\",\"pandascore_id\":null,\"yahoo_id\":30357,\"last_name\":\"Hester\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Penn Hills (PA)\",\"depth_chart_order\":null,\"stats_id\":694719,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'2\\\"\",\"search_full_name\":\"treyvonhester\",\"birth_date\":\"1992-09-21\",\"espn_id\":2973027},\"4153\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033953\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605569420819,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leggett\",\"depth_chart_position\":\"TE\",\"player_id\":\"4153\",\"birth_city\":null,\"fantasy_data_id\":18999,\"years_exp\":3,\"hashtag\":\"#JordanLeggett-NFL-DEN-81\",\"search_first_name\":\"jordan\",\"rotowire_id\":11893,\"rotoworld_id\":12307,\"active\":true,\"search_rank\":1172,\"age\":25,\"full_name\":\"Jordan Leggett\",\"sportradar_id\":\"bea00842-e4db-4955-857a-ea8d4a0e215b\",\"pandascore_id\":null,\"yahoo_id\":30263,\"last_name\":\"Leggett\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Navarre (FL)\",\"depth_chart_order\":6,\"stats_id\":733735,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jordanleggett\",\"birth_date\":\"1995-01-31\",\"espn_id\":3045118},\"1146\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029641\",\"first_name\":\"Tyrone\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605731432845,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":\"RDE\",\"player_id\":\"1146\",\"birth_city\":null,\"fantasy_data_id\":14146,\"years_exp\":8,\"hashtag\":\"#TyroneCrawford-NFL-DAL-98\",\"search_first_name\":\"tyrone\",\"rotowire_id\":8144,\"rotoworld_id\":7550,\"active\":true,\"search_rank\":675,\"age\":31,\"full_name\":\"Tyrone Crawford\",\"sportradar_id\":\"dc632746-2240-41d6-8141-695194706989\",\"pandascore_id\":null,\"yahoo_id\":25791,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"Catholic Central (CAN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tyronecrawford\",\"birth_date\":\"1989-11-22\",\"espn_id\":14987},\"5438\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034097\",\"first_name\":\"Najee\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596077112252,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"toran\",\"depth_chart_position\":null,\"player_id\":\"5438\",\"birth_city\":null,\"fantasy_data_id\":20523,\"years_exp\":2,\"hashtag\":\"#NajeeToran-NFL-NE-68\",\"search_first_name\":\"najee\",\"rotowire_id\":13417,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Najee Toran\",\"sportradar_id\":\"b254f034-ab48-4a08-98d7-0dc6724e8a20\",\"pandascore_id\":null,\"yahoo_id\":31387,\"last_name\":\"Toran\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"UCLA\",\"high_school\":\"North Shore (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"najeetoran\",\"birth_date\":\"1995-11-15\",\"espn_id\":3117420},\"6920\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606171815277,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"hodgins\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6920\",\"birth_city\":null,\"fantasy_data_id\":21760,\"years_exp\":0,\"hashtag\":\"#IsaiahHodgins-NFL-BUF-16\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14356,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Isaiah Hodgins\",\"sportradar_id\":\"1d1c217b-6407-40d7-aebb-ba95fa05d127\",\"pandascore_id\":null,\"yahoo_id\":32877,\"last_name\":\"Hodgins\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Berean Christian (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'4\\\"\",\"search_full_name\":\"isaiahhodgins\",\"birth_date\":\"1998-10-21\",\"espn_id\":4242540},\"2031\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031346\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603039507197,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ellis\",\"depth_chart_position\":\"NT\",\"player_id\":\"2031\",\"birth_city\":null,\"fantasy_data_id\":16315,\"years_exp\":6,\"hashtag\":\"#JustinEllis-NFL-BAL-71\",\"search_first_name\":\"justin\",\"rotowire_id\":9397,\"rotoworld_id\":null,\"active\":true,\"search_rank\":807,\"age\":29,\"full_name\":\"Justin Ellis\",\"sportradar_id\":\"7e2c36bd-bae6-42e8-84fc-147106ed7270\",\"pandascore_id\":null,\"yahoo_id\":27635,\"last_name\":\"Ellis\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Neville (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'2\\\"\",\"search_full_name\":\"justinellis\",\"birth_date\":\"1990-12-27\",\"espn_id\":16857},\"5332\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034413\",\"first_name\":\"Foyesade\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1606339802722,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"oluokun\",\"depth_chart_position\":\"LB\",\"player_id\":\"5332\",\"birth_city\":null,\"fantasy_data_id\":20007,\"years_exp\":2,\"hashtag\":\"#FoyesadeOluokun-NFL-ATL-54\",\"search_first_name\":\"foyesade\",\"rotowire_id\":12995,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1391,\"age\":25,\"full_name\":\"Foyesade Oluokun\",\"sportradar_id\":\"0a415a08-ea30-40b2-aac9-42689e3e996a\",\"pandascore_id\":null,\"yahoo_id\":31170,\"last_name\":\"Oluokun\",\"metadata\":null,\"college\":\"Yale\",\"high_school\":\"John Burroughs (MO)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"foyesadeoluokun\",\"birth_date\":\"1995-08-02\",\"espn_id\":3050073},\"5145\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034149\",\"first_name\":\"Luke\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535838644180,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcnitt\",\"depth_chart_position\":null,\"player_id\":\"5145\",\"birth_city\":null,\"fantasy_data_id\":20092,\"years_exp\":2,\"hashtag\":\"#LukeMcNitt-NFL-FA-43\",\"search_first_name\":\"luke\",\"rotowire_id\":13018,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Luke McNitt\",\"sportradar_id\":\"17f32692-ccfa-42c0-b238-483534dd0b7c\",\"pandascore_id\":null,\"yahoo_id\":31341,\"last_name\":\"McNitt\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":792150,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lukemcnitt\",\"birth_date\":\"1994-04-20\",\"espn_id\":3075100},\"2682\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Christion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"2682\",\"birth_city\":null,\"fantasy_data_id\":17150,\"years_exp\":3,\"hashtag\":\"#ChristionJones-NFL-FA-0\",\"search_first_name\":\"christion\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Christion Jones\",\"sportradar_id\":\"351963c7-bdc1-4966-bed2-845ccddfdfbf\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"christionjones\",\"birth_date\":\"1992-12-20\",\"espn_id\":null},\"5558\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034240\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535836858823,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":\"RB\",\"player_id\":\"5558\",\"birth_city\":null,\"fantasy_data_id\":20549,\"years_exp\":2,\"hashtag\":\"#MarcusMartin-NFL-FA-56\",\"search_first_name\":\"marcus\",\"rotowire_id\":13024,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marcus Martin\",\"sportradar_id\":\"3f58b3d7-535e-4cd3-bd1b-603f9c36bc98\",\"pandascore_id\":null,\"yahoo_id\":31466,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Slippery Rock\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"marcusmartin\",\"birth_date\":null,\"espn_id\":4294229},\"5985\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034981\",\"first_name\":\"Foster\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603850155838,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"moreau\",\"depth_chart_position\":\"TE\",\"player_id\":\"5985\",\"birth_city\":null,\"fantasy_data_id\":20884,\"years_exp\":1,\"hashtag\":\"#FosterMoreau-NFL-LV-87\",\"search_first_name\":\"foster\",\"rotowire_id\":13822,\"rotoworld_id\":null,\"active\":true,\"search_rank\":458,\"age\":23,\"full_name\":\"Foster Moreau\",\"sportradar_id\":\"9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a\",\"pandascore_id\":null,\"yahoo_id\":31969,\"last_name\":\"Moreau\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Jesuit (LA)\",\"depth_chart_order\":3,\"stats_id\":865573,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'4\\\"\",\"search_full_name\":\"fostermoreau\",\"birth_date\":\"1997-05-06\",\"espn_id\":3843945},\"6859\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Prince Tega\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1594012223206,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wanogho\",\"depth_chart_position\":null,\"player_id\":\"6859\",\"birth_city\":null,\"fantasy_data_id\":22020,\"years_exp\":0,\"hashtag\":\"#PrinceTegaWanogho-NFL-PHI-72\",\"search_first_name\":\"princetega\",\"rotowire_id\":14449,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Prince Tega Wanogho\",\"sportradar_id\":\"7df12cd9-5890-4a9d-b78d-0987de2cd804\",\"pandascore_id\":null,\"yahoo_id\":32880,\"last_name\":\"Wanogho\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Edgewood Academy (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'7\\\"\",\"search_full_name\":\"princetegawanogho\",\"birth_date\":\"1997-11-22\",\"espn_id\":4035518},\"3042\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitchell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bell\",\"depth_chart_position\":null,\"player_id\":\"3042\",\"birth_city\":null,\"fantasy_data_id\":17751,\"years_exp\":1,\"hashtag\":\"#MitchellBell-NFL-FA-65\",\"search_first_name\":\"mitchell\",\"rotowire_id\":10762,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mitchell Bell\",\"sportradar_id\":\"7055a16e-8830-45fc-b967-7319443333bf\",\"pandascore_id\":null,\"yahoo_id\":29078,\"last_name\":\"Bell\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"348\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mitchellbell\",\"birth_date\":\"1992-09-12\",\"espn_id\":null},\"2483\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyshoen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jarrett\",\"depth_chart_position\":null,\"player_id\":\"2483\",\"birth_city\":null,\"fantasy_data_id\":16941,\"years_exp\":5,\"hashtag\":\"#KyshoenJarrett-NFL-FA-30\",\"search_first_name\":\"kyshoen\",\"rotowire_id\":10398,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kyshoen Jarrett\",\"sportradar_id\":\"27779031-2c71-4c9a-80ee-28b9cd06814c\",\"pandascore_id\":null,\"yahoo_id\":28569,\"last_name\":\"Jarrett\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"East Stroudsburg South\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kyshoenjarrett\",\"birth_date\":\"1993-05-04\",\"espn_id\":2577889},\"5941\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035154\",\"first_name\":\"Felton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1591453563652,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"5941\",\"birth_city\":null,\"fantasy_data_id\":21062,\"years_exp\":1,\"hashtag\":\"#FeltonDavis-NFL-FA-0\",\"search_first_name\":\"felton\",\"rotowire_id\":13850,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Felton Davis\",\"sportradar_id\":\"c64e0229-181c-4a4d-9994-4501b09cd646\",\"pandascore_id\":null,\"yahoo_id\":32356,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":884246,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"feltondavis\",\"birth_date\":\"1997-02-25\",\"espn_id\":3929817},\"6130\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035250\",\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606496103890,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"singletary\",\"depth_chart_position\":\"RB\",\"player_id\":\"6130\",\"birth_city\":null,\"fantasy_data_id\":20941,\"years_exp\":1,\"hashtag\":\"#DevinSingletary-NFL-BUF-26\",\"search_first_name\":\"devin\",\"rotowire_id\":13449,\"rotoworld_id\":14043,\"active\":true,\"search_rank\":47,\"age\":23,\"full_name\":\"Devin Singletary\",\"sportradar_id\":\"a961b0d4-5d7c-438e-90f0-2e1fa09f6c89\",\"pandascore_id\":null,\"yahoo_id\":31906,\"last_name\":\"Singletary\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"American Heritage (FL)\",\"depth_chart_order\":2,\"stats_id\":916466,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"5'7\\\"\",\"search_full_name\":\"devinsingletary\",\"birth_date\":\"1997-09-03\",\"espn_id\":4040761},\"5584\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034260\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1533266124381,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"callender\",\"depth_chart_position\":null,\"player_id\":\"5584\",\"birth_city\":null,\"fantasy_data_id\":20590,\"years_exp\":2,\"hashtag\":\"#NickCallender-NFL-FA-63\",\"search_first_name\":\"nick\",\"rotowire_id\":13166,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nick Callender\",\"sportradar_id\":\"03863dcc-b11d-466e-a6f5-845d91b9ec3e\",\"pandascore_id\":null,\"yahoo_id\":31512,\"last_name\":\"Callender\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'6\\\"\",\"search_full_name\":\"nickcallender\",\"birth_date\":\"1994-06-16\",\"espn_id\":2973599},\"5410\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034617\",\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perrizo\",\"depth_chart_position\":null,\"player_id\":\"5410\",\"birth_city\":null,\"fantasy_data_id\":20371,\"years_exp\":2,\"hashtag\":\"#EvanPerrizo-NFL-FA-78\",\"search_first_name\":\"evan\",\"rotowire_id\":13289,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Evan Perrizo\",\"sportradar_id\":\"5ec64dea-c6db-4416-ad24-8676acf7a7c6\",\"pandascore_id\":null,\"yahoo_id\":31520,\"last_name\":\"Perrizo\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"277\",\"height\":\"6'4\\\"\",\"search_full_name\":\"evanperrizo\",\"birth_date\":\"1995-05-26\",\"espn_id\":3163390},\"987\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"987\",\"birth_city\":null,\"fantasy_data_id\":13457,\"years_exp\":9,\"hashtag\":\"#IanWilliams-NFL-FA-93\",\"search_first_name\":\"ian\",\"rotowire_id\":7804,\"rotoworld_id\":6762,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Ian Williams\",\"sportradar_id\":\"193b6998-2640-4da7-b361-7e787ba7a41a\",\"pandascore_id\":null,\"yahoo_id\":25228,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Lyman (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ianwilliams\",\"birth_date\":\"1989-08-31\",\"espn_id\":14461},\"1876\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Deji\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1514682905876,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"olatoye\",\"depth_chart_position\":null,\"player_id\":\"1876\",\"birth_city\":null,\"fantasy_data_id\":16094,\"years_exp\":6,\"hashtag\":\"#DejiOlatoye-NFL-FA-30\",\"search_first_name\":\"deji\",\"rotowire_id\":10119,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Deji Olatoye\",\"sportradar_id\":\"15c6fbef-1900-4694-8f20-d273a691c7e0\",\"pandascore_id\":null,\"yahoo_id\":27985,\"last_name\":\"Olatoye\",\"metadata\":null,\"college\":\"North Carolina A&T\",\"high_school\":\"Dublin Scioto (OH)\",\"depth_chart_order\":null,\"stats_id\":500551,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dejiolatoye\",\"birth_date\":\"1991-07-20\",\"espn_id\":17224},\"2154\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rakim\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cox\",\"depth_chart_position\":null,\"player_id\":\"2154\",\"birth_city\":null,\"fantasy_data_id\":16500,\"years_exp\":1,\"hashtag\":\"#RakimCox-NFL-FA-77\",\"search_first_name\":\"rakim\",\"rotowire_id\":11079,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rakim Cox\",\"sportradar_id\":\"a9fa8b77-08c3-4c59-9a24-626ecb1ed8b5\",\"pandascore_id\":null,\"yahoo_id\":27898,\"last_name\":\"Cox\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rakimcox\",\"birth_date\":\"1991-02-12\",\"espn_id\":17058},\"1725\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":null,\"player_id\":\"1725\",\"birth_city\":null,\"fantasy_data_id\":15660,\"years_exp\":7,\"hashtag\":\"#PatrickLewis-NFL-FA-67\",\"search_first_name\":\"patrick\",\"rotowire_id\":9096,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Patrick Lewis\",\"sportradar_id\":\"878f2957-283a-457f-b266-c6e9cf9d99fd\",\"pandascore_id\":null,\"yahoo_id\":27354,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"East St. John (LA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'1\\\"\",\"search_full_name\":\"patricklewis\",\"birth_date\":\"1991-01-30\",\"espn_id\":16557},\"6163\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035018\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599183054646,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wesley\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6163\",\"birth_city\":null,\"fantasy_data_id\":20978,\"years_exp\":1,\"hashtag\":\"#AlexWesley-NFL-FA-0\",\"search_first_name\":\"alex\",\"rotowire_id\":13815,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1617,\"age\":24,\"full_name\":\"Alex Wesley\",\"sportradar_id\":\"0eb7966b-01b7-40b0-bb2b-9d6de58bbd95\",\"pandascore_id\":null,\"yahoo_id\":32243,\"last_name\":\"Wesley\",\"metadata\":null,\"college\":\"Northern Colorado\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":838670,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alexwesley\",\"birth_date\":\"1995-10-27\",\"espn_id\":3121110},\"703\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kraig\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1520544301234,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"urbik\",\"depth_chart_position\":null,\"player_id\":\"703\",\"birth_city\":null,\"fantasy_data_id\":12158,\"years_exp\":11,\"hashtag\":\"#KraigUrbik-NFL-FA-60\",\"search_first_name\":\"kraig\",\"rotowire_id\":6053,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Kraig Urbik\",\"sportradar_id\":\"a4600df5-9f1f-40ba-b4a2-07cdffaf3969\",\"pandascore_id\":null,\"yahoo_id\":9343,\"last_name\":\"Urbik\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Hudson (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kraigurbik\",\"birth_date\":\"1985-09-23\",\"espn_id\":12742},\"5131\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034440\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605388259460,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"jackson\",\"depth_chart_position\":\"RB\",\"player_id\":\"5131\",\"birth_city\":null,\"fantasy_data_id\":20064,\"years_exp\":2,\"hashtag\":\"#JustinJackson-NFL-LAC-22\",\"search_first_name\":\"justin\",\"rotowire_id\":12724,\"rotoworld_id\":13350,\"active\":true,\"search_rank\":144,\"age\":24,\"full_name\":\"Justin Jackson\",\"sportradar_id\":\"e6c3f896-0223-4fc2-be09-c959ea4a475c\",\"pandascore_id\":null,\"yahoo_id\":31221,\"last_name\":\"Jackson\",\"metadata\":{\"injury_override_regular_2020_10\":\"IR\"},\"college\":\"Northwestern\",\"high_school\":\"Glenbard North (IL)\",\"depth_chart_order\":6,\"stats_id\":830844,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justinjackson\",\"birth_date\":\"1996-04-22\",\"espn_id\":3116136},\"961\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027958\",\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1602443718860,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"clayborn\",\"depth_chart_position\":\"RDE\",\"player_id\":\"961\",\"birth_city\":null,\"fantasy_data_id\":13355,\"years_exp\":9,\"hashtag\":\"#AdrianClayborn-NFL-CLE-94\",\"search_first_name\":\"adrian\",\"rotowire_id\":7417,\"rotoworld_id\":6515,\"active\":true,\"search_rank\":644,\"age\":32,\"full_name\":\"Adrian Clayborn\",\"sportradar_id\":\"072ec285-1430-48d4-9342-5a1b9af527f3\",\"pandascore_id\":null,\"yahoo_id\":24807,\"last_name\":\"Clayborn\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Webster Groves (MO)\",\"depth_chart_order\":2,\"stats_id\":332343,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'3\\\"\",\"search_full_name\":\"adrianclayborn\",\"birth_date\":\"1988-07-06\",\"espn_id\":13965},\"6928\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kindle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1587844541826,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vildor\",\"depth_chart_position\":\"CB\",\"player_id\":\"6928\",\"birth_city\":null,\"fantasy_data_id\":22079,\"years_exp\":0,\"hashtag\":\"#KindleVildor-NFL-CHI-22\",\"search_first_name\":\"kindle\",\"rotowire_id\":14706,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1909,\"age\":22,\"full_name\":\"Kindle Vildor\",\"sportradar_id\":\"e1072f9a-86f7-4d01-89a6-33fe0186f232\",\"pandascore_id\":null,\"yahoo_id\":32833,\"last_name\":\"Vildor\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":\"North Clayton (GA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kindlevildor\",\"birth_date\":\"1997-12-11\",\"espn_id\":4036651},\"4443\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033439\",\"first_name\":\"Pharaoh\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606482303396,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":\"TE\",\"player_id\":\"4443\",\"birth_city\":null,\"fantasy_data_id\":19304,\"years_exp\":3,\"hashtag\":\"#PharaohBrown-NFL-HOU-85\",\"search_first_name\":\"pharaoh\",\"rotowire_id\":11887,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1252,\"age\":26,\"full_name\":\"Pharaoh Brown\",\"sportradar_id\":\"6733b953-de77-44e5-acbf-c2d3a0940243\",\"pandascore_id\":null,\"yahoo_id\":30627,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Brush (OH)\",\"depth_chart_order\":3,\"stats_id\":689689,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'6\\\"\",\"search_full_name\":\"pharaohbrown\",\"birth_date\":\"1994-05-04\",\"espn_id\":2971281},\"2796\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031500\",\"first_name\":\"Efe\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606141812854,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"obada\",\"depth_chart_position\":\"RDE\",\"player_id\":\"2796\",\"birth_city\":null,\"fantasy_data_id\":17264,\"years_exp\":5,\"hashtag\":\"#EfeObada-NFL-CAR-94\",\"search_first_name\":\"efe\",\"rotowire_id\":10448,\"rotoworld_id\":null,\"active\":true,\"search_rank\":931,\"age\":28,\"full_name\":\"Efe Obada\",\"sportradar_id\":\"7d7aae3c-c186-4ded-bbaa-df05f697ef29\",\"pandascore_id\":null,\"yahoo_id\":28386,\"last_name\":\"Obada\",\"metadata\":null,\"college\":\"No College\",\"high_school\":\"Lambeth College (GBR)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'6\\\"\",\"search_full_name\":\"efeobada\",\"birth_date\":\"1992-04-13\",\"espn_id\":3734467},\"4903\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030752\",\"first_name\":\"Jayrone\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1606276255657,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"elliott\",\"depth_chart_position\":\"RILB\",\"player_id\":\"4903\",\"birth_city\":null,\"fantasy_data_id\":19805,\"years_exp\":6,\"hashtag\":\"#JayroneElliott-NFL-PIT-45\",\"search_first_name\":\"jayrone\",\"rotowire_id\":9955,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1287,\"age\":29,\"full_name\":\"Jayrone Elliott\",\"sportradar_id\":\"4642915e-8c37-4692-9169-fa210b6efc8c\",\"pandascore_id\":null,\"yahoo_id\":28075,\"last_name\":\"Elliott\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Toledo\",\"high_school\":\"Glenville (OH)\",\"depth_chart_order\":3,\"stats_id\":559263,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jayroneelliott\",\"birth_date\":\"1991-11-11\",\"espn_id\":16991},\"4370\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033346\",\"first_name\":\"Dustin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535590810817,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stanton\",\"depth_chart_position\":\"RG\",\"player_id\":\"4370\",\"birth_city\":null,\"fantasy_data_id\":19227,\"years_exp\":3,\"hashtag\":\"#DustinStanton-NFL-FA-67\",\"search_first_name\":\"dustin\",\"rotowire_id\":12131,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dustin Stanton\",\"sportradar_id\":\"a29582a0-fa94-4337-b6d1-aba67e8d3141\",\"pandascore_id\":null,\"yahoo_id\":30585,\"last_name\":\"Stanton\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"dustinstanton\",\"birth_date\":\"1994-02-20\",\"espn_id\":2978250},\"1911\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030663\",\"first_name\":\"Willie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606229752169,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"snead\",\"depth_chart_position\":\"SWR\",\"player_id\":\"1911\",\"birth_city\":null,\"fantasy_data_id\":16141,\"years_exp\":6,\"hashtag\":\"#WillieSnead-NFL-BAL-83\",\"search_first_name\":\"willie\",\"rotowire_id\":9284,\"rotoworld_id\":9989,\"active\":true,\"search_rank\":216,\"age\":28,\"full_name\":\"Willie Snead\",\"sportradar_id\":\"8482bc94-0eb0-4e92-8f99-ced135f3cd5d\",\"pandascore_id\":null,\"yahoo_id\":28026,\"last_name\":\"Snead\",\"metadata\":null,\"college\":\"Ball State\",\"high_school\":\"Muskegon Heights (MI)\",\"depth_chart_order\":1,\"stats_id\":591586,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"williesnead\",\"birth_date\":\"1992-10-17\",\"espn_id\":17258},\"4771\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029685\",\"first_name\":\"Greg\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599691842986,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"vanroten\",\"depth_chart_position\":\"RG\",\"player_id\":\"4771\",\"birth_city\":null,\"fantasy_data_id\":19690,\"years_exp\":8,\"hashtag\":\"#GregVanRoten-NFL-NYJ-62\",\"search_first_name\":\"greg\",\"rotowire_id\":8607,\"rotoworld_id\":8291,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Greg Van Roten\",\"sportradar_id\":\"6d7ca819-8c58-4c41-bba7-643ba9553eb8\",\"pandascore_id\":null,\"yahoo_id\":26569,\"last_name\":\"Van Roten\",\"metadata\":null,\"college\":\"Pennsylvania\",\"high_school\":\"Chaminade (NY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'3\\\"\",\"search_full_name\":\"gregvanroten\",\"birth_date\":\"1990-02-26\",\"espn_id\":15718},\"1592\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029738\",\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606481703400,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fells\",\"depth_chart_position\":\"TE\",\"player_id\":\"1592\",\"birth_city\":null,\"fantasy_data_id\":15247,\"years_exp\":7,\"hashtag\":\"#DarrenFells-NFL-HOU-87\",\"search_first_name\":\"darren\",\"rotowire_id\":9758,\"rotoworld_id\":8472,\"active\":true,\"search_rank\":336,\"age\":34,\"full_name\":\"Darren Fells\",\"sportradar_id\":\"54d4e35a-2e6c-48f6-86ad-92dd596c173c\",\"pandascore_id\":null,\"yahoo_id\":26612,\"last_name\":\"Fells\",\"metadata\":null,\"college\":\"California-Irvine\",\"high_school\":\"Fullerton (CA)\",\"depth_chart_order\":2,\"stats_id\":266414,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'7\\\"\",\"search_full_name\":\"darrenfells\",\"birth_date\":\"1986-04-22\",\"espn_id\":15773},\"5786\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peterson\",\"depth_chart_position\":null,\"player_id\":\"5786\",\"birth_city\":null,\"fantasy_data_id\":20688,\"years_exp\":2,\"hashtag\":\"#MarcusPeterson-NFL-FA-2\",\"search_first_name\":\"marcus\",\"rotowire_id\":13383,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Marcus Peterson\",\"sportradar_id\":\"34c21fd5-a7a0-41a5-aea4-60c8b8d5b177\",\"pandascore_id\":null,\"yahoo_id\":31782,\"last_name\":\"Peterson\",\"metadata\":null,\"college\":\"Seton Hall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1128687,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"marcuspeterson\",\"birth_date\":null,\"espn_id\":4370294},\"MIN\":{\"team\":\"MIN\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"MIN\",\"last_name\":\"Vikings\",\"injury_status\":null,\"first_name\":\"Minnesota\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"1202\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028872\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1567890604771,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hekker\",\"depth_chart_position\":null,\"player_id\":\"1202\",\"birth_city\":null,\"fantasy_data_id\":14409,\"years_exp\":8,\"hashtag\":\"#JohnnyHekker-NFL-LAR-6\",\"search_first_name\":\"johnny\",\"rotowire_id\":8381,\"rotoworld_id\":8073,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Johnny Hekker\",\"sportradar_id\":\"380435a9-1833-4381-a12b-498a43732798\",\"pandascore_id\":null,\"yahoo_id\":26350,\"last_name\":\"Hekker\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Bothell (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'5\\\"\",\"search_full_name\":\"johnnyhekker\",\"birth_date\":\"1990-02-08\",\"espn_id\":15153},\"1691\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chuck\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jacobs\",\"depth_chart_position\":null,\"player_id\":\"1691\",\"birth_city\":null,\"fantasy_data_id\":15550,\"years_exp\":2,\"hashtag\":\"#ChuckJacobs-NFL-FA-85\",\"search_first_name\":\"chuck\",\"rotowire_id\":9060,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chuck Jacobs\",\"sportradar_id\":\"fb350258-e345-4d28-8e45-22ae258fdfda\",\"pandascore_id\":null,\"yahoo_id\":27284,\"last_name\":\"Jacobs\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":607460,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chuckjacobs\",\"birth_date\":\"1990-05-11\",\"espn_id\":16462},\"4818\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brooks\",\"depth_chart_position\":null,\"player_id\":\"4818\",\"birth_city\":null,\"fantasy_data_id\":19356,\"years_exp\":2,\"hashtag\":\"#CorinBrooks-NFL-FA-65\",\"search_first_name\":\"corin\",\"rotowire_id\":12354,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Corin Brooks\",\"sportradar_id\":\"f5d2c33d-70fe-4ef4-ba72-819568962c0a\",\"pandascore_id\":null,\"yahoo_id\":30677,\"last_name\":\"Brooks\",\"metadata\":null,\"college\":\"Texas-Permian Basin\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"corinbrooks\",\"birth_date\":\"1992-07-31\",\"espn_id\":2511936},\"366\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027006\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1554148817395,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"britt\",\"depth_chart_position\":null,\"player_id\":\"366\",\"birth_city\":null,\"fantasy_data_id\":8532,\"years_exp\":11,\"hashtag\":\"#KennyBritt-NFL-FA-88\",\"search_first_name\":\"kenny\",\"rotowire_id\":5963,\"rotoworld_id\":5130,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Kenny Britt\",\"sportradar_id\":\"869882c4-728a-4349-8294-ffa32b5a4f31\",\"pandascore_id\":null,\"yahoo_id\":9294,\"last_name\":\"Britt\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Bayonne (NJ)\",\"depth_chart_order\":null,\"stats_id\":336831,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kennybritt\",\"birth_date\":\"1988-09-19\",\"espn_id\":12556},\"6980\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1591380021729,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"runyan\",\"depth_chart_position\":\"LG\",\"player_id\":\"6980\",\"birth_city\":null,\"fantasy_data_id\":22040,\"years_exp\":0,\"hashtag\":\"#JonRunyan-NFL-GB-76\",\"search_first_name\":\"jon\",\"rotowire_id\":14471,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jon Runyan\",\"sportradar_id\":\"13bbc7df-2a25-44db-a79a-89ba6c1ac009\",\"pandascore_id\":null,\"yahoo_id\":32862,\"last_name\":\"Runyan\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":\"St. Joseph's Prep (PA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jonrunyan\",\"birth_date\":\"1997-08-08\",\"espn_id\":3929936},\"6103\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034984\",\"first_name\":\"Kingsley\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601311821119,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"keke\",\"depth_chart_position\":\"RDE\",\"player_id\":\"6103\",\"birth_city\":null,\"fantasy_data_id\":20848,\"years_exp\":1,\"hashtag\":\"#KingsleyKeke-NFL-GB-96\",\"search_first_name\":\"kingsley\",\"rotowire_id\":13538,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1564,\"age\":24,\"full_name\":\"Kingsley Keke\",\"sportradar_id\":\"0681ed0d-6b7a-4582-85b8-2692f0c2f058\",\"pandascore_id\":null,\"yahoo_id\":31982,\"last_name\":\"Keke\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"George Ranch (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"288\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kingsleykeke\",\"birth_date\":\"1996-09-26\",\"espn_id\":3917340},\"488\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Vance\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"walker\",\"depth_chart_position\":null,\"player_id\":\"488\",\"birth_city\":null,\"fantasy_data_id\":9890,\"years_exp\":11,\"hashtag\":\"#VanceWalker-NFL-FA-96\",\"search_first_name\":\"vance\",\"rotowire_id\":6898,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Vance Walker\",\"sportradar_id\":\"f0c7fed4-d422-4a57-9c2e-2a7614ef571e\",\"pandascore_id\":null,\"yahoo_id\":9474,\"last_name\":\"Walker\",\"metadata\":null,\"college\":\"Georgia Tech\",\"high_school\":\"Fort Mill (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'2\\\"\",\"search_full_name\":\"vancewalker\",\"birth_date\":\"1987-04-26\",\"espn_id\":12448},\"764\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hagan\",\"depth_chart_position\":null,\"player_id\":\"764\",\"birth_city\":null,\"fantasy_data_id\":12513,\"years_exp\":8,\"hashtag\":\"#DerekHagan-NFL-FA-80\",\"search_first_name\":\"derek\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Derek Hagan\",\"sportradar_id\":\"1618d8c3-dc48-496c-91a3-ccdc9ccbb015\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hagan\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"derekhagan\",\"birth_date\":\"1984-09-21\",\"espn_id\":9668},\"6202\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035726\",\"first_name\":\"Jakob\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1571090442016,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":\"RB\",\"player_id\":\"6202\",\"birth_city\":null,\"fantasy_data_id\":21100,\"years_exp\":1,\"hashtag\":\"#JakobJohnson-NFL-NE-47\",\"search_first_name\":\"jakob\",\"rotowire_id\":13931,\"rotoworld_id\":null,\"active\":true,\"search_rank\":540,\"age\":25,\"full_name\":\"Jakob Johnson\",\"sportradar_id\":\"12b701c8-7f40-4437-aeef-782fd1d25f2e\",\"pandascore_id\":null,\"yahoo_id\":31826,\"last_name\":\"Johnson\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Tennessee\",\"high_school\":\"Jean Ribault (FL)\",\"depth_chart_order\":5,\"stats_id\":820601,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jakobjohnson\",\"birth_date\":\"1994-12-15\",\"espn_id\":3115349},\"998\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028037\",\"first_name\":\"K.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605737131353,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":\"ROLB\",\"player_id\":\"998\",\"birth_city\":null,\"fantasy_data_id\":13484,\"years_exp\":9,\"hashtag\":\"#KJWright-NFL-SEA-50\",\"search_first_name\":\"kj\",\"rotowire_id\":7483,\"rotoworld_id\":6633,\"active\":true,\"search_rank\":651,\"age\":31,\"full_name\":\"K.J. Wright\",\"sportradar_id\":\"93ff0e6f-fee3-41d1-a913-6111cd9ebef1\",\"pandascore_id\":null,\"yahoo_id\":24886,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Olive Branch (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kjwright\",\"birth_date\":\"1989-07-23\",\"espn_id\":14140},\"7067\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Simon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605751843993,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"stepaniak\",\"depth_chart_position\":null,\"player_id\":\"7067\",\"birth_city\":null,\"fantasy_data_id\":22042,\"years_exp\":0,\"hashtag\":\"#SimonStepaniak-NFL-GB-72\",\"search_first_name\":\"simon\",\"rotowire_id\":14594,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Simon Stepaniak\",\"sportradar_id\":\"7e6798b8-b33f-4a35-ab5b-67fafd8d9e65\",\"pandascore_id\":null,\"yahoo_id\":32879,\"last_name\":\"Stepaniak\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Ross (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"PUP\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'4\\\"\",\"search_full_name\":\"simonstepaniak\",\"birth_date\":\"1997-05-15\",\"espn_id\":3929794},\"5017\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034675\",\"first_name\":\"Jessie\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604367030720,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bates\",\"depth_chart_position\":null,\"player_id\":\"5017\",\"birth_city\":null,\"fantasy_data_id\":19873,\"years_exp\":2,\"hashtag\":\"#JessieBates-NFL-CIN-30\",\"search_first_name\":\"jessie\",\"rotowire_id\":12564,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1308,\"age\":23,\"full_name\":\"Jessie Bates\",\"sportradar_id\":\"89c84a59-18ad-4aeb-8879-d4ba7dd1491e\",\"pandascore_id\":null,\"yahoo_id\":31024,\"last_name\":\"Bates\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"Snider (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jessiebates\",\"birth_date\":\"1997-02-26\",\"espn_id\":3919512},\"3303\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032415\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605485114371,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"judon\",\"depth_chart_position\":\"SAM\",\"player_id\":\"3303\",\"birth_city\":null,\"fantasy_data_id\":18064,\"years_exp\":4,\"hashtag\":\"#MattJudon-NFL-BAL-99\",\"search_first_name\":\"matt\",\"rotowire_id\":11083,\"rotoworld_id\":11448,\"active\":true,\"search_rank\":1015,\"age\":28,\"full_name\":\"Matt Judon\",\"sportradar_id\":\"99d79bb9-45aa-4c64-99aa-a92ba2c278af\",\"pandascore_id\":null,\"yahoo_id\":29380,\"last_name\":\"Judon\",\"metadata\":null,\"college\":\"Grand Valley State\",\"high_school\":\"West Bloomfield (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"261\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattjudon\",\"birth_date\":\"1992-08-15\",\"espn_id\":3961466},\"2521\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031958\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1574130945033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reiter\",\"depth_chart_position\":\"C\",\"player_id\":\"2521\",\"birth_city\":null,\"fantasy_data_id\":16981,\"years_exp\":5,\"hashtag\":\"#AustinReiter-NFL-KC-62\",\"search_first_name\":\"austin\",\"rotowire_id\":10494,\"rotoworld_id\":10595,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Austin Reiter\",\"sportradar_id\":\"a64aaa83-6381-4b2c-84b2-daf2002c9060\",\"pandascore_id\":null,\"yahoo_id\":28610,\"last_name\":\"Reiter\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Lakewood Ranch (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"austinreiter\",\"birth_date\":\"1991-11-27\",\"espn_id\":2514816},\"2229\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031395\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606052715847,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gilbert\",\"depth_chart_position\":\"QB\",\"player_id\":\"2229\",\"birth_city\":null,\"fantasy_data_id\":16621,\"years_exp\":6,\"hashtag\":\"#GarrettGilbert-NFL-DAL-3\",\"search_first_name\":\"garrett\",\"rotowire_id\":9776,\"rotoworld_id\":9522,\"active\":true,\"search_rank\":838,\"age\":29,\"full_name\":\"Garrett Gilbert\",\"sportradar_id\":\"56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4\",\"pandascore_id\":null,\"yahoo_id\":27742,\"last_name\":\"Gilbert\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":\"Lake Travis (TX)\",\"depth_chart_order\":4,\"stats_id\":507477,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'4\\\"\",\"search_full_name\":\"garrettgilbert\",\"birth_date\":\"1991-07-01\",\"espn_id\":16809},\"3418\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032351\",\"first_name\":\"Mekale\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1555509960789,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mckay\",\"depth_chart_position\":null,\"player_id\":\"3418\",\"birth_city\":null,\"fantasy_data_id\":18181,\"years_exp\":4,\"hashtag\":\"#MekaleMcKay-NFL-FA-19\",\"search_first_name\":\"mekale\",\"rotowire_id\":11134,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Mekale McKay\",\"sportradar_id\":\"dfbdb450-3534-4bc1-8e7f-17df7a2dccf4\",\"pandascore_id\":null,\"yahoo_id\":29605,\"last_name\":\"McKay\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693829,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mekalemckay\",\"birth_date\":\"1993-08-04\",\"espn_id\":2980068},\"2095\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lawrence\",\"depth_chart_position\":null,\"player_id\":\"2095\",\"birth_city\":null,\"fantasy_data_id\":16416,\"years_exp\":6,\"hashtag\":\"#RashadLawrence-NFL-FA-1\",\"search_first_name\":\"rashad\",\"rotowire_id\":10065,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Rashad Lawrence\",\"sportradar_id\":\"6b777485-b4bb-4174-8f7e-04fc02eb2f4a\",\"pandascore_id\":null,\"yahoo_id\":28174,\"last_name\":\"Lawrence\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":\"Olympia (FL)\",\"depth_chart_order\":null,\"stats_id\":546181,\"injury_start_date\":null,\"number\":1,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rashadlawrence\",\"birth_date\":\"1992-06-10\",\"espn_id\":17349},\"5338\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034422\",\"first_name\":\"Keishawn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1588284643999,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bierria\",\"depth_chart_position\":\"WILL\",\"player_id\":\"5338\",\"birth_city\":null,\"fantasy_data_id\":20017,\"years_exp\":2,\"hashtag\":\"#KeishawnBierria-NFL-FA-0\",\"search_first_name\":\"keishawn\",\"rotowire_id\":12917,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keishawn Bierria\",\"sportradar_id\":\"3b10d2d7-f361-4bc2-93ca-1bbe414b1862\",\"pandascore_id\":null,\"yahoo_id\":31187,\"last_name\":\"Bierria\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":747889,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'1\\\"\",\"search_full_name\":\"keishawnbierria\",\"birth_date\":\"1995-07-26\",\"espn_id\":3052161},\"6121\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035237\",\"first_name\":\"Jawaan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596403519994,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"RT\",\"player_id\":\"6121\",\"birth_city\":null,\"fantasy_data_id\":20960,\"years_exp\":1,\"hashtag\":\"#JawaanTaylor-NFL-JAX-75\",\"search_first_name\":\"jawaan\",\"rotowire_id\":13480,\"rotoworld_id\":13960,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jawaan Taylor\",\"sportradar_id\":\"8f07843a-6f68-409e-8cdf-1207f521b12a\",\"pandascore_id\":null,\"yahoo_id\":31867,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Cocoa (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jawaantaylor\",\"birth_date\":\"1997-11-25\",\"espn_id\":4034961},\"6094\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035062\",\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606348503828,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mustipher\",\"depth_chart_position\":\"C\",\"player_id\":\"6094\",\"birth_city\":null,\"fantasy_data_id\":20891,\"years_exp\":1,\"hashtag\":\"#SamMustipher-NFL-CHI-67\",\"search_first_name\":\"sam\",\"rotowire_id\":14150,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Sam Mustipher\",\"sportradar_id\":\"20e8addc-8e4f-4c4e-937d-3788de9c1e6f\",\"pandascore_id\":null,\"yahoo_id\":32259,\"last_name\":\"Mustipher\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Good Counsel (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'2\\\"\",\"search_full_name\":\"sammustipher\",\"birth_date\":\"1996-08-13\",\"espn_id\":3129307},\"1599\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tharold\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simon\",\"depth_chart_position\":null,\"player_id\":\"1599\",\"birth_city\":null,\"fantasy_data_id\":15259,\"years_exp\":7,\"hashtag\":\"#TharoldSimon-NFL-FA-29\",\"search_first_name\":\"tharold\",\"rotowire_id\":8648,\"rotoworld_id\":8511,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Tharold Simon\",\"sportradar_id\":\"21a71d59-6198-4c30-9895-3c5967605397\",\"pandascore_id\":null,\"yahoo_id\":26761,\"last_name\":\"Simon\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Eunice (LA)\",\"depth_chart_order\":null,\"stats_id\":540524,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"202\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tharoldsimon\",\"birth_date\":\"1991-03-06\",\"espn_id\":16021},\"7230\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Badara\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603645807724,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"traore\",\"depth_chart_position\":null,\"player_id\":\"7230\",\"birth_city\":null,\"fantasy_data_id\":22231,\"years_exp\":0,\"hashtag\":\"#BadaraTraore-NFL-CHI-79\",\"search_first_name\":\"badara\",\"rotowire_id\":15168,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Badara Traore\",\"sportradar_id\":\"096f3b4f-34cc-448f-9fb1-9a7f30a1ecdc\",\"pandascore_id\":null,\"yahoo_id\":33181,\"last_name\":\"Traore\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Matignon (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'7\\\"\",\"search_full_name\":\"badaratraore\",\"birth_date\":\"1997-03-12\",\"espn_id\":4362648},\"4782\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simonich\",\"depth_chart_position\":null,\"player_id\":\"4782\",\"birth_city\":null,\"fantasy_data_id\":19509,\"years_exp\":2,\"hashtag\":\"#JakeSimonich-NFL-FA-79\",\"search_first_name\":\"jake\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jake Simonich\",\"sportradar_id\":\"a0e5e6d2-b5ff-4117-9e85-984b04db0cf6\",\"pandascore_id\":null,\"yahoo_id\":30798,\"last_name\":\"Simonich\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"299\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jakesimonich\",\"birth_date\":\"1993-11-24\",\"espn_id\":2971826},\"7478\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Luther\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1588097718747,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kirk\",\"depth_chart_position\":null,\"player_id\":\"7478\",\"birth_city\":null,\"fantasy_data_id\":22453,\"years_exp\":0,\"hashtag\":\"#LutherKirk-NFL-MIN-35\",\"search_first_name\":\"luther\",\"rotowire_id\":14907,\"rotoworld_id\":null,\"active\":true,\"search_rank\":2011,\"age\":24,\"full_name\":\"Luther Kirk\",\"sportradar_id\":\"fd7b9398-15b3-4967-8758-8743006dd6ff\",\"pandascore_id\":null,\"yahoo_id\":33107,\"last_name\":\"Kirk\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":\"Garland (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'2\\\"\",\"search_full_name\":\"lutherkirk\",\"birth_date\":\"1996-11-07\",\"espn_id\":3908608},\"2976\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Reese\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dismukes\",\"depth_chart_position\":null,\"player_id\":\"2976\",\"birth_city\":null,\"fantasy_data_id\":17472,\"years_exp\":1,\"hashtag\":\"#ReeseDismukes-NFL-FA-0\",\"search_first_name\":\"reese\",\"rotowire_id\":10290,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Reese Dismukes\",\"sportradar_id\":\"2b023022-ca00-4c14-b7f8-4a10080ac8f5\",\"pandascore_id\":null,\"yahoo_id\":28664,\"last_name\":\"Dismukes\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"296\",\"height\":\"6'3\\\"\",\"search_full_name\":\"reesedismukes\",\"birth_date\":\"1992-10-20\",\"espn_id\":null},\"569\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027674\",\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1600726517945,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"veldheer\",\"depth_chart_position\":null,\"player_id\":\"569\",\"birth_city\":null,\"fantasy_data_id\":11241,\"years_exp\":10,\"hashtag\":\"#JaredVeldheer-NFL-FA-68\",\"search_first_name\":\"jared\",\"rotowire_id\":6545,\"rotoworld_id\":5829,\"active\":true,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jared Veldheer\",\"sportradar_id\":\"52366445-a41d-4b7c-bd42-1ea4cb940695\",\"pandascore_id\":null,\"yahoo_id\":24044,\"last_name\":\"Veldheer\",\"metadata\":null,\"college\":\"Hillsdale\",\"high_school\":\"Forest Hills (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"321\",\"height\":\"6'8\\\"\",\"search_full_name\":\"jaredveldheer\",\"birth_date\":\"1987-06-14\",\"espn_id\":13302},\"4837\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"DL\",\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"4837\",\"birth_city\":null,\"fantasy_data_id\":19740,\"years_exp\":2,\"hashtag\":\"#CarlosDavis-NFL-FA-33\",\"search_first_name\":\"carlos\",\"rotowire_id\":12379,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Carlos Davis\",\"sportradar_id\":\"5ee012ee-0934-420a-83f8-c5b8f860a12d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'4\\\"\",\"search_full_name\":\"carlosdavis\",\"birth_date\":\"1993-12-30\",\"espn_id\":2984050},\"2868\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcleod\",\"depth_chart_position\":null,\"player_id\":\"2868\",\"birth_city\":null,\"fantasy_data_id\":17336,\"years_exp\":0,\"hashtag\":\"#CameronMcLeod-NFL-FA-98\",\"search_first_name\":\"cameron\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cameron McLeod\",\"sportradar_id\":\"19786393-4832-4fd5-b8d0-c7f47cabf9b3\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McLeod\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cameronmcleod\",\"birth_date\":\"1992-09-15\",\"espn_id\":3052993},\"4032\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033523\",\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1601409916556,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":\"RDT\",\"player_id\":\"4032\",\"birth_city\":null,\"fantasy_data_id\":18875,\"years_exp\":3,\"hashtag\":\"#JonathanAllen-NFL-WAS-93\",\"search_first_name\":\"jonathan\",\"rotowire_id\":11900,\"rotoworld_id\":12185,\"active\":true,\"search_rank\":1113,\"age\":25,\"full_name\":\"Jonathan Allen\",\"sportradar_id\":\"5ba11bd2-e764-4dea-98e1-dad01a21cdd3\",\"pandascore_id\":null,\"yahoo_id\":30130,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Stone Bridge (VA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jonathanallen\",\"birth_date\":\"1995-01-16\",\"espn_id\":3054840},\"3920\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Harvey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"binford\",\"depth_chart_position\":null,\"player_id\":\"3920\",\"birth_city\":null,\"fantasy_data_id\":18747,\"years_exp\":1,\"hashtag\":\"#HarveyBinford-NFL-FA-2\",\"search_first_name\":\"harvey\",\"rotowire_id\":11617,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Harvey Binford\",\"sportradar_id\":\"7073ea74-7a02-4273-9b7e-b70247e72f73\",\"pandascore_id\":null,\"yahoo_id\":30047,\"last_name\":\"Binford\",\"metadata\":null,\"college\":\"Lindenwood\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":837458,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"harveybinford\",\"birth_date\":\"1991-01-20\",\"espn_id\":4037285},\"DET\":{\"team\":\"DET\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"DET\",\"last_name\":\"Lions\",\"injury_status\":null,\"first_name\":\"Detroit\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"1752\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bronson\",\"depth_chart_position\":null,\"player_id\":\"1752\",\"birth_city\":null,\"fantasy_data_id\":15766,\"years_exp\":1,\"hashtag\":\"#MalcolmBronson-NFL-FA-41\",\"search_first_name\":\"malcolm\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Malcolm Bronson\",\"sportradar_id\":\"34604a2f-381b-4ff0-85a2-a1e19a504d1c\",\"pandascore_id\":null,\"yahoo_id\":27439,\"last_name\":\"Bronson\",\"metadata\":null,\"college\":\"McNeese State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"malcolmbronson\",\"birth_date\":\"1990-05-11\",\"espn_id\":16604},\"5043\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034760\",\"first_name\":\"Nathan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604967929426,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"shepherd\",\"depth_chart_position\":\"RDE\",\"player_id\":\"5043\",\"birth_city\":null,\"fantasy_data_id\":19887,\"years_exp\":2,\"hashtag\":\"#NathanShepherd-NFL-NYJ-97\",\"search_first_name\":\"nathan\",\"rotowire_id\":12814,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1324,\"age\":27,\"full_name\":\"Nathan Shepherd\",\"sportradar_id\":\"4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c\",\"pandascore_id\":null,\"yahoo_id\":31042,\"last_name\":\"Shepherd\",\"metadata\":null,\"college\":\"Fort Hays State\",\"high_school\":\"J. Clarke Richardson (ON)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nathanshepherd\",\"birth_date\":\"1993-10-09\",\"espn_id\":4076951},\"6880\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Logan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602199832681,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"LB\",\"player_id\":\"6880\",\"birth_city\":null,\"fantasy_data_id\":22003,\"years_exp\":0,\"hashtag\":\"#LoganWilson-NFL-CIN-55\",\"search_first_name\":\"logan\",\"rotowire_id\":14647,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1876,\"age\":24,\"full_name\":\"Logan Wilson\",\"sportradar_id\":\"05cb1d47-3517-4410-a61b-75adabbfb910\",\"pandascore_id\":null,\"yahoo_id\":32735,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Natrona County (WY)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"loganwilson\",\"birth_date\":\"1996-07-08\",\"espn_id\":3918330},\"4314\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033246\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606251954100,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mundt\",\"depth_chart_position\":\"TE\",\"player_id\":\"4314\",\"birth_city\":null,\"fantasy_data_id\":19165,\"years_exp\":3,\"hashtag\":\"#JohnnyMundt-NFL-LAR-82\",\"search_first_name\":\"johnny\",\"rotowire_id\":12316,\"rotoworld_id\":null,\"active\":true,\"search_rank\":558,\"age\":26,\"full_name\":\"Johnny Mundt\",\"sportradar_id\":\"6414998b-5831-44aa-8bd8-39e42a323c2c\",\"pandascore_id\":null,\"yahoo_id\":30373,\"last_name\":\"Mundt\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Central Catholic (CA)\",\"depth_chart_order\":4,\"stats_id\":740704,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'4\\\"\",\"search_full_name\":\"johnnymundt\",\"birth_date\":\"1994-11-23\",\"espn_id\":3052096},\"119\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":null,\"player_id\":\"119\",\"birth_city\":null,\"fantasy_data_id\":3254,\"years_exp\":14,\"hashtag\":\"#JamesAnderson-NFL-FA-42\",\"search_first_name\":\"james\",\"rotowire_id\":5027,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"James Anderson\",\"sportradar_id\":\"d567c659-3847-4383-ac87-c133ba9b0173\",\"pandascore_id\":null,\"yahoo_id\":7837,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Deep Creek (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesanderson\",\"birth_date\":\"1983-09-26\",\"espn_id\":9674},\"6190\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"6190\",\"birth_city\":null,\"fantasy_data_id\":21092,\"years_exp\":0,\"hashtag\":\"#KeithButler-NFL-SEA-0\",\"search_first_name\":\"keith\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":62,\"full_name\":\"Keith Butler\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"\",\"search_full_name\":\"keithbutler\",\"birth_date\":\"1956-05-16\",\"espn_id\":null},\"7153\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587861343004,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hinton\",\"depth_chart_position\":null,\"player_id\":\"7153\",\"birth_city\":null,\"fantasy_data_id\":22155,\"years_exp\":0,\"hashtag\":\"#KyleHinton-NFL-MIN-68\",\"search_first_name\":\"kyle\",\"rotowire_id\":14838,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Kyle Hinton\",\"sportradar_id\":\"a78d3d14-3cc9-4adf-96fe-dc7660cb4c2d\",\"pandascore_id\":null,\"yahoo_id\":32925,\"last_name\":\"Hinton\",\"metadata\":null,\"college\":\"Washburn\",\"high_school\":\"Liberty (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kylehinton\",\"birth_date\":\"1998-02-27\",\"espn_id\":4682831},\"5361\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034377\",\"first_name\":\"Avonte\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603302038817,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"maddox\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5361\",\"birth_city\":null,\"fantasy_data_id\":19949,\"years_exp\":2,\"hashtag\":\"#AvonteMaddox-NFL-PHI-29\",\"search_first_name\":\"avonte\",\"rotowire_id\":12683,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1361,\"age\":24,\"full_name\":\"Avonte Maddox\",\"sportradar_id\":\"942b9da8-e0c6-4087-886b-370fe357f5f3\",\"pandascore_id\":null,\"yahoo_id\":31095,\"last_name\":\"Maddox\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Martin Luther King (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"184\",\"height\":\"5'9\\\"\",\"search_full_name\":\"avontemaddox\",\"birth_date\":\"1996-03-31\",\"espn_id\":3123938},\"3397\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1532568901707,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"3397\",\"birth_city\":null,\"fantasy_data_id\":18158,\"years_exp\":3,\"hashtag\":\"#KeithMarshall-NFL-FA-39\",\"search_first_name\":\"keith\",\"rotowire_id\":10993,\"rotoworld_id\":11309,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keith Marshall\",\"sportradar_id\":\"1e513f93-11e3-4328-bfbe-df688fdfe184\",\"pandascore_id\":null,\"yahoo_id\":29476,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":650929,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"5'11\\\"\",\"search_full_name\":\"keithmarshall\",\"birth_date\":\"1994-02-16\",\"espn_id\":2971062},\"1601\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030414\",\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1581636303650,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ware\",\"depth_chart_position\":\"RB\",\"player_id\":\"1601\",\"birth_city\":null,\"fantasy_data_id\":15261,\"years_exp\":7,\"hashtag\":\"#SpencerWare-NFL-FA-39\",\"search_first_name\":\"spencer\",\"rotowire_id\":8625,\"rotoworld_id\":8594,\"active\":true,\"search_rank\":750,\"age\":28,\"full_name\":\"Spencer Ware\",\"sportradar_id\":\"bbb63a36-8613-4675-8e5e-34200d245ff0\",\"pandascore_id\":null,\"yahoo_id\":26817,\"last_name\":\"Ware\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Princeton (OH)\",\"depth_chart_order\":7,\"stats_id\":540526,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'10\\\"\",\"search_full_name\":\"spencerware\",\"birth_date\":\"1991-11-23\",\"espn_id\":16020},\"269\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026345\",\"first_name\":\"Pierre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1550170804419,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"garcon\",\"depth_chart_position\":null,\"player_id\":\"269\",\"birth_city\":null,\"fantasy_data_id\":6767,\"years_exp\":12,\"hashtag\":\"#PierreGarcon-NFL-FA-15\",\"search_first_name\":\"pierre\",\"rotowire_id\":5703,\"rotoworld_id\":4945,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Pierre Garcon\",\"sportradar_id\":\"a824d9ff-12a4-4ed2-812d-404b0b4e52f9\",\"pandascore_id\":null,\"yahoo_id\":8982,\"last_name\":\"Garcon\",\"metadata\":null,\"college\":\"Mount Union\",\"high_school\":\"Leonard (FL)\",\"depth_chart_order\":null,\"stats_id\":399939,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"pierregarcon\",\"birth_date\":\"1986-08-08\",\"espn_id\":11439},\"3940\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"3940\",\"birth_city\":null,\"fantasy_data_id\":18773,\"years_exp\":0,\"hashtag\":\"#ChasePrice-NFL-FA-35\",\"search_first_name\":\"chase\",\"rotowire_id\":11662,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chase Price\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30070,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":609629,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'8\\\"\",\"search_full_name\":\"chaseprice\",\"birth_date\":\"1993-06-24\",\"espn_id\":null},\"4402\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033324\",\"first_name\":\"Tashawn\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1571936731919,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bower\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4402\",\"birth_city\":null,\"fantasy_data_id\":19261,\"years_exp\":3,\"hashtag\":\"#TashawnBower-NFL-NE-96\",\"search_first_name\":\"tashawn\",\"rotowire_id\":11903,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1243,\"age\":25,\"full_name\":\"Tashawn Bower\",\"sportradar_id\":\"d38bd9b4-1927-4cca-84da-5c7dd5b21716\",\"pandascore_id\":null,\"yahoo_id\":30427,\"last_name\":\"Bower\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Louisiana State\",\"high_school\":\"Immaculata (NJ)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tashawnbower\",\"birth_date\":\"1995-02-18\",\"espn_id\":3042726},\"5010\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034159\",\"first_name\":\"Will\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605894601863,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dissly\",\"depth_chart_position\":\"TE\",\"player_id\":\"5010\",\"birth_city\":null,\"fantasy_data_id\":19950,\"years_exp\":2,\"hashtag\":\"#WillDissly-NFL-SEA-89\",\"search_first_name\":\"will\",\"rotowire_id\":12986,\"rotoworld_id\":13246,\"active\":true,\"search_rank\":432,\"age\":24,\"full_name\":\"Will Dissly\",\"sportradar_id\":\"383f4814-6836-4766-a297-fc063e8509cc\",\"pandascore_id\":null,\"yahoo_id\":31090,\"last_name\":\"Dissly\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"Bozeman (MT)\",\"depth_chart_order\":2,\"stats_id\":837806,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'4\\\"\",\"search_full_name\":\"willdissly\",\"birth_date\":\"1996-07-08\",\"espn_id\":3127292},\"1711\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darren\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"woodard\",\"depth_chart_position\":null,\"player_id\":\"1711\",\"birth_city\":null,\"fantasy_data_id\":15620,\"years_exp\":1,\"hashtag\":\"#DarrenWoodard-NFL-FA-35\",\"search_first_name\":\"darren\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Darren Woodard\",\"sportradar_id\":\"7a1775f4-0869-4377-93c7-02331a65606f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Woodard\",\"metadata\":null,\"college\":\"Texas - El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darrenwoodard\",\"birth_date\":\"1989-09-21\",\"espn_id\":16122},\"4028\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Winston\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chapman\",\"depth_chart_position\":null,\"player_id\":\"4028\",\"birth_city\":null,\"fantasy_data_id\":18870,\"years_exp\":2,\"hashtag\":\"#WinstonChapman-NFL-FA-43\",\"search_first_name\":\"winston\",\"rotowire_id\":11747,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Winston Chapman\",\"sportradar_id\":\"17438bd3-b018-4bee-8544-485ddb70e938\",\"pandascore_id\":null,\"yahoo_id\":30091,\"last_name\":\"Chapman\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"winstonchapman\",\"birth_date\":\"1992-04-15\",\"espn_id\":2577438},\"53\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1551903940739,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kuhn\",\"depth_chart_position\":null,\"player_id\":\"53\",\"birth_city\":null,\"fantasy_data_id\":1589,\"years_exp\":15,\"hashtag\":\"#JohnKuhn-NFL-FA-29\",\"search_first_name\":\"john\",\"rotowire_id\":5160,\"rotoworld_id\":4050,\"active\":false,\"search_rank\":9999999,\"age\":38,\"full_name\":\"John Kuhn\",\"sportradar_id\":\"a7152c92-426c-4c6b-9629-da63f5c60ff8\",\"pandascore_id\":null,\"yahoo_id\":7695,\"last_name\":\"Kuhn\",\"metadata\":null,\"college\":\"Shippensburg, Pa.\",\"high_school\":\"Dover (PA)\",\"depth_chart_order\":null,\"stats_id\":285900,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnkuhn\",\"birth_date\":\"1982-09-09\",\"espn_id\":9530},\"619\":{\"position\":\"DT\",\"injury_notes\":\"McCoy has a season ending injury.\",\"birth_country\":null,\"gsis_id\":\"00-0027856\",\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1597793425520,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccoy\",\"depth_chart_position\":\"LDT\",\"player_id\":\"619\",\"birth_city\":null,\"fantasy_data_id\":11514,\"years_exp\":10,\"hashtag\":\"#GeraldMcCoy-NFL-FA-93\",\"search_first_name\":\"gerald\",\"rotowire_id\":6583,\"rotoworld_id\":5599,\"active\":true,\"search_rank\":615,\"age\":32,\"full_name\":\"Gerald McCoy\",\"sportradar_id\":\"d2d8345f-8eaf-4f61-8df8-df6e808b6aec\",\"pandascore_id\":null,\"yahoo_id\":23978,\"last_name\":\"McCoy\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Southeast (OK)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"geraldmccoy\",\"birth_date\":\"1988-02-25\",\"espn_id\":13240},\"6781\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1605893701759,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"simmons\",\"depth_chart_position\":\"LB\",\"player_id\":\"6781\",\"birth_city\":null,\"fantasy_data_id\":22004,\"years_exp\":0,\"hashtag\":\"#IsaiahSimmons-NFL-ARI-48\",\"search_first_name\":\"isaiah\",\"rotowire_id\":14525,\"rotoworld_id\":14927,\"active\":true,\"search_rank\":1877,\"age\":22,\"full_name\":\"Isaiah Simmons\",\"sportradar_id\":\"b87d80b7-f129-4f3d-938a-1272f8122589\",\"pandascore_id\":null,\"yahoo_id\":32678,\"last_name\":\"Simmons\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Olathe North (KS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaiahsimmons\",\"birth_date\":\"1998-07-26\",\"espn_id\":4035462},\"2648\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tajh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hasson\",\"depth_chart_position\":null,\"player_id\":\"2648\",\"birth_city\":null,\"fantasy_data_id\":17116,\"years_exp\":0,\"hashtag\":\"#TajhHasson-NFL-FA-32\",\"search_first_name\":\"tajh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tajh Hasson\",\"sportradar_id\":\"b1533d42-3ea2-4f1e-8780-efb619fb579d\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hasson\",\"metadata\":null,\"college\":\"UNLV\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tajhhasson\",\"birth_date\":\"1992-06-12\",\"espn_id\":2514512},\"6049\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035361\",\"first_name\":\"Tyre\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566570631867,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brady\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6049\",\"birth_city\":null,\"fantasy_data_id\":21039,\"years_exp\":1,\"hashtag\":\"#TyreBrady-NFL-FA-19\",\"search_first_name\":\"tyre\",\"rotowire_id\":13759,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyre Brady\",\"sportradar_id\":\"642a4938-360e-44c2-b52c-3a1ea8e59952\",\"pandascore_id\":null,\"yahoo_id\":32088,\"last_name\":\"Brady\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":4,\"stats_id\":830940,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'3\\\"\",\"search_full_name\":\"tyrebrady\",\"birth_date\":\"1995-04-19\",\"espn_id\":3123074},\"2966\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031765\",\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604768150849,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"easton\",\"depth_chart_position\":\"RG\",\"player_id\":\"2966\",\"birth_city\":null,\"fantasy_data_id\":17457,\"years_exp\":5,\"hashtag\":\"#NickEaston-NFL-NO-62\",\"search_first_name\":\"nick\",\"rotowire_id\":10648,\"rotoworld_id\":10856,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Nick Easton\",\"sportradar_id\":\"6e150bf7-49da-4d65-9b8e-e39dc074c539\",\"pandascore_id\":null,\"yahoo_id\":28950,\"last_name\":\"Easton\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":\"Hibriten (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nickeaston\",\"birth_date\":\"1992-06-16\",\"espn_id\":2507667},\"2205\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030807\",\"first_name\":\"Seantavius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535323239886,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"2205\",\"birth_city\":null,\"fantasy_data_id\":16578,\"years_exp\":6,\"hashtag\":\"#SeantaviusJones-NFL-FA-16\",\"search_first_name\":\"seantavius\",\"rotowire_id\":10020,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Seantavius Jones\",\"sportradar_id\":\"4bc0c353-c58d-4c45-b7bc-3950aecc1f08\",\"pandascore_id\":null,\"yahoo_id\":27928,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Valdosta State\",\"high_school\":\"Tucker (GA)\",\"depth_chart_order\":null,\"stats_id\":826555,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"seantaviusjones\",\"birth_date\":\"1992-08-09\",\"espn_id\":17191},\"1774\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030197\",\"first_name\":\"Deon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1603841454915,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lacey\",\"depth_chart_position\":null,\"player_id\":\"1774\",\"birth_city\":null,\"fantasy_data_id\":15855,\"years_exp\":7,\"hashtag\":\"#DeonLacey-NFL-BUF-40\",\"search_first_name\":\"deon\",\"rotowire_id\":11703,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Deon Lacey\",\"sportradar_id\":\"a57a96ca-7aa8-4e0f-9ba8-437690fe50dc\",\"pandascore_id\":null,\"yahoo_id\":27348,\"last_name\":\"Lacey\",\"metadata\":null,\"college\":\"West Alabama\",\"high_school\":\"Hueytown (AL)\",\"depth_chart_order\":null,\"stats_id\":613087,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"deonlacey\",\"birth_date\":\"1990-07-18\",\"espn_id\":16475},\"7501\":{\"position\":\"S\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Evan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"foster\",\"depth_chart_position\":null,\"player_id\":\"7501\",\"birth_city\":null,\"fantasy_data_id\":22474,\"years_exp\":0,\"hashtag\":\"#EvanFoster-NFL-FA-0\",\"search_first_name\":\"evan\",\"rotowire_id\":15055,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Evan Foster\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Foster\",\"metadata\":null,\"college\":\"Syracuse\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'0\\\"\",\"search_full_name\":\"evanfoster\",\"birth_date\":null,\"espn_id\":4037120},\"2685\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031697\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1566946809354,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"2685\",\"birth_city\":null,\"fantasy_data_id\":17153,\"years_exp\":5,\"hashtag\":\"#JordanTaylor-NFL-FA-18\",\"search_first_name\":\"jordan\",\"rotowire_id\":10238,\"rotoworld_id\":10673,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jordan Taylor\",\"sportradar_id\":\"971b216e-0859-482b-9b72-045f7ad35605\",\"pandascore_id\":null,\"yahoo_id\":28727,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Rice\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":550968,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordantaylor\",\"birth_date\":\"1992-02-18\",\"espn_id\":2515662},\"3129\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pat\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1577740823946,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shurmur\",\"depth_chart_position\":null,\"player_id\":\"3129\",\"birth_city\":null,\"fantasy_data_id\":17883,\"years_exp\":0,\"hashtag\":\"#PatShurmur-NFL-FA-0\",\"search_first_name\":\"pat\",\"rotowire_id\":null,\"rotoworld_id\":9479,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Pat Shurmur\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Shurmur\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"patshurmur\",\"birth_date\":null,\"espn_id\":null},\"7148\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1587856242676,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"brunson\",\"depth_chart_position\":\"WLB\",\"player_id\":\"7148\",\"birth_city\":null,\"fantasy_data_id\":22150,\"years_exp\":0,\"hashtag\":\"#TJBrunson-NFL-NYG-35\",\"search_first_name\":\"tj\",\"rotowire_id\":14834,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1937,\"age\":22,\"full_name\":\"T.J. Brunson\",\"sportradar_id\":\"8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b\",\"pandascore_id\":null,\"yahoo_id\":32908,\"last_name\":\"Brunson\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Richland Northeast (SC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tjbrunson\",\"birth_date\":\"1997-12-03\",\"espn_id\":4038811},\"6445\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035015\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ohagan\",\"depth_chart_position\":null,\"player_id\":\"6445\",\"birth_city\":null,\"fantasy_data_id\":21455,\"years_exp\":1,\"hashtag\":\"#JamesOHagan-NFL-FA-60\",\"search_first_name\":\"james\",\"rotowire_id\":14086,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"James O'Hagan\",\"sportradar_id\":\"9ca42d97-d764-4446-b69a-a76fb7b5363c\",\"pandascore_id\":null,\"yahoo_id\":32240,\"last_name\":\"O'Hagan\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesohagan\",\"birth_date\":\"1996-09-19\",\"espn_id\":3125783},\"3612\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032508\",\"first_name\":\"Hakeem\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1545869705336,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"valles\",\"depth_chart_position\":null,\"player_id\":\"3612\",\"birth_city\":null,\"fantasy_data_id\":18399,\"years_exp\":4,\"hashtag\":\"#HakeemValles-NFL-FA-49\",\"search_first_name\":\"hakeem\",\"rotowire_id\":11300,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Hakeem Valles\",\"sportradar_id\":\"32d18129-6c6c-4401-9695-8661ab84b288\",\"pandascore_id\":null,\"yahoo_id\":29587,\"last_name\":\"Valles\",\"metadata\":null,\"college\":\"Monmouth\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":690561,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"hakeemvalles\",\"birth_date\":\"1992-11-23\",\"espn_id\":2567213},\"4410\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033333\",\"first_name\":\"Horace\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1583469017934,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"4410\",\"birth_city\":null,\"fantasy_data_id\":19270,\"years_exp\":3,\"hashtag\":\"#HoraceRichardson-NFL-FA-0\",\"search_first_name\":\"horace\",\"rotowire_id\":12887,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Horace Richardson\",\"sportradar_id\":\"d29c218d-72f8-4351-895b-1a47554fe580\",\"pandascore_id\":null,\"yahoo_id\":30443,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"Southern Methodist\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"horacerichardson\",\"birth_date\":\"1993-09-28\",\"espn_id\":2980480},\"4087\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033545\",\"first_name\":\"Teez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1594062929674,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tabor\",\"depth_chart_position\":null,\"player_id\":\"4087\",\"birth_city\":null,\"fantasy_data_id\":18933,\"years_exp\":3,\"hashtag\":\"#TeezTabor-NFL-FA-0\",\"search_first_name\":\"teez\",\"rotowire_id\":12052,\"rotoworld_id\":12292,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Teez Tabor\",\"sportradar_id\":\"6bbffdec-af71-4378-b0cc-e1375643ef57\",\"pandascore_id\":null,\"yahoo_id\":30166,\"last_name\":\"Tabor\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820437,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'0\\\"\",\"search_full_name\":\"teeztabor\",\"birth_date\":\"1995-12-31\",\"espn_id\":3115257},\"3179\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033151\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1603242040644,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"garnett\",\"depth_chart_position\":\"RG\",\"player_id\":\"3179\",\"birth_city\":null,\"fantasy_data_id\":17940,\"years_exp\":4,\"hashtag\":\"#JoshuaGarnett-NFL-WAS-63\",\"search_first_name\":\"joshua\",\"rotowire_id\":11041,\"rotoworld_id\":11353,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Joshua Garnett\",\"sportradar_id\":\"91135683-4a52-48dc-9f1d-446502308e52\",\"pandascore_id\":null,\"yahoo_id\":29262,\"last_name\":\"Garnett\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Puyallup (WA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joshuagarnett\",\"birth_date\":\"1994-02-21\",\"espn_id\":2978263},\"1736\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Melvin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"1736\",\"birth_city\":null,\"fantasy_data_id\":15691,\"years_exp\":3,\"hashtag\":\"#MelvinWhite-NFL-FA-31\",\"search_first_name\":\"melvin\",\"rotowire_id\":9080,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Melvin White\",\"sportradar_id\":\"69001453-8834-4803-b4af-c7fb06d81419\",\"pandascore_id\":null,\"yahoo_id\":27101,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Louisiana - Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'1\\\"\",\"search_full_name\":\"melvinwhite\",\"birth_date\":\"1990-06-26\",\"espn_id\":16443},\"2373\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032256\",\"first_name\":\"Clive\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1577557809708,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"walford\",\"depth_chart_position\":null,\"player_id\":\"2373\",\"birth_city\":null,\"fantasy_data_id\":16829,\"years_exp\":5,\"hashtag\":\"#CliveWalford-NFL-FA-87\",\"search_first_name\":\"clive\",\"rotowire_id\":10127,\"rotoworld_id\":10471,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Clive Walford\",\"sportradar_id\":\"2e56cca7-b898-4aac-bbc5-b5bda9163be1\",\"pandascore_id\":null,\"yahoo_id\":28456,\"last_name\":\"Walford\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Glades Central (FL)\",\"depth_chart_order\":null,\"stats_id\":553616,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'4\\\"\",\"search_full_name\":\"clivewalford\",\"birth_date\":\"1991-10-01\",\"espn_id\":2512593},\"1342\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030507\",\"first_name\":\"Bennie\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1583879750101,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"logan\",\"depth_chart_position\":null,\"player_id\":\"1342\",\"birth_city\":null,\"fantasy_data_id\":14859,\"years_exp\":7,\"hashtag\":\"#BennieLogan-NFL-FA-96\",\"search_first_name\":\"bennie\",\"rotowire_id\":8677,\"rotoworld_id\":8439,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Bennie Logan\",\"sportradar_id\":\"52f75d86-f8fe-4411-a381-7675acd5bca9\",\"pandascore_id\":null,\"yahoo_id\":26690,\"last_name\":\"Logan\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Red River (LA)\",\"depth_chart_order\":null,\"stats_id\":498972,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"bennielogan\",\"birth_date\":\"1989-12-28\",\"espn_id\":15850},\"363\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"legursky\",\"depth_chart_position\":null,\"player_id\":\"363\",\"birth_city\":null,\"fantasy_data_id\":8510,\"years_exp\":12,\"hashtag\":\"#DougLegursky-NFL-FA-64\",\"search_first_name\":\"doug\",\"rotowire_id\":7064,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Doug Legursky\",\"sportradar_id\":\"e9f7f380-e7b2-4a68-af71-9483240fc748\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Legursky\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":\"Wilson (WV)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'1\\\"\",\"search_full_name\":\"douglegursky\",\"birth_date\":\"1986-06-09\",\"espn_id\":11556},\"6797\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606589433117,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"herbert\",\"depth_chart_position\":\"QB\",\"player_id\":\"6797\",\"birth_city\":null,\"fantasy_data_id\":21681,\"years_exp\":0,\"hashtag\":\"#JustinHerbert-NFL-LAC-10\",\"search_first_name\":\"justin\",\"rotowire_id\":14446,\"rotoworld_id\":null,\"active\":true,\"search_rank\":301,\"age\":22,\"full_name\":\"Justin Herbert\",\"sportradar_id\":\"f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44\",\"pandascore_id\":null,\"yahoo_id\":32676,\"last_name\":\"Herbert\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Sheldon (OR)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'6\\\"\",\"search_full_name\":\"justinherbert\",\"birth_date\":\"1998-03-10\",\"espn_id\":4038941},\"197\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"studebaker\",\"depth_chart_position\":null,\"player_id\":\"197\",\"birth_city\":null,\"fantasy_data_id\":5044,\"years_exp\":12,\"hashtag\":\"#AndyStudebaker-NFL-FA-59\",\"search_first_name\":\"andy\",\"rotowire_id\":6363,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Andy Studebaker\",\"sportradar_id\":\"60c694b9-8dac-4b0e-ad9d-7385e70d87b2\",\"pandascore_id\":null,\"yahoo_id\":8980,\"last_name\":\"Studebaker\",\"metadata\":null,\"college\":\"Wheaton, Ill.\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'3\\\"\",\"search_full_name\":\"andystudebaker\",\"birth_date\":\"1985-09-16\",\"espn_id\":11437},\"3834\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032926\",\"first_name\":\"KJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1570661462516,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brent\",\"depth_chart_position\":null,\"player_id\":\"3834\",\"birth_city\":null,\"fantasy_data_id\":18654,\"years_exp\":4,\"hashtag\":\"#KJBrent-NFL-FA-15\",\"search_first_name\":\"kj\",\"rotowire_id\":11512,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"KJ Brent\",\"sportradar_id\":\"01a4e683-068c-4ae2-bb93-4940abc7c53a\",\"pandascore_id\":null,\"yahoo_id\":29953,\"last_name\":\"Brent\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604906,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kjbrent\",\"birth_date\":\"1993-08-06\",\"espn_id\":2577664},\"4380\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"heiman\",\"depth_chart_position\":null,\"player_id\":\"4380\",\"birth_city\":null,\"fantasy_data_id\":19237,\"years_exp\":2,\"hashtag\":\"#CodyHeiman-NFL-FA-55\",\"search_first_name\":\"cody\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cody Heiman\",\"sportradar_id\":\"1020f8ac-3e35-4612-9aae-e6437f4a5029\",\"pandascore_id\":null,\"yahoo_id\":30613,\"last_name\":\"Heiman\",\"metadata\":null,\"college\":\"Washburn\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'1\\\"\",\"search_full_name\":\"codyheiman\",\"birth_date\":\"1993-11-19\",\"espn_id\":4212999},\"1570\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030530\",\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1569374142033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mcdonald\",\"depth_chart_position\":null,\"player_id\":\"1570\",\"birth_city\":null,\"fantasy_data_id\":15218,\"years_exp\":7,\"hashtag\":\"#TJMcDonald-NFL-FA-22\",\"search_first_name\":\"tj\",\"rotowire_id\":8689,\"rotoworld_id\":8458,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"T.J. McDonald\",\"sportradar_id\":\"e0f05175-f652-4f5e-9931-068a712291e6\",\"pandascore_id\":null,\"yahoo_id\":26694,\"last_name\":\"McDonald\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Edison (CA)\",\"depth_chart_order\":null,\"stats_id\":510155,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tjmcdonald\",\"birth_date\":\"1991-01-26\",\"espn_id\":15852},\"369\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Fernando\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"velasco\",\"depth_chart_position\":null,\"player_id\":\"369\",\"birth_city\":null,\"fantasy_data_id\":8563,\"years_exp\":12,\"hashtag\":\"#FernandoVelasco-NFL-FA-61\",\"search_first_name\":\"fernando\",\"rotowire_id\":7195,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Fernando Velasco\",\"sportradar_id\":\"169418c0-09b8-4807-b696-d98de0cfa690\",\"pandascore_id\":null,\"yahoo_id\":9173,\"last_name\":\"Velasco\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Jefferson Co. (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'4\\\"\",\"search_full_name\":\"fernandovelasco\",\"birth_date\":\"1985-02-22\",\"espn_id\":11601},\"402\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Victor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"402\",\"birth_city\":null,\"fantasy_data_id\":8826,\"years_exp\":6,\"hashtag\":\"#VictorButler-NFL-FA-55\",\"search_first_name\":\"victor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Victor Butler\",\"sportradar_id\":\"c25e9222-b7be-4ab9-ab3c-81fa72897e7c\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"victorbutler\",\"birth_date\":\"1987-07-29\",\"espn_id\":12641},\"3591\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"3591\",\"birth_city\":null,\"fantasy_data_id\":18371,\"years_exp\":0,\"hashtag\":\"#DariusWhite-NFL-FA-37\",\"search_first_name\":\"darius\",\"rotowire_id\":11437,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Darius White\",\"sportradar_id\":\"71d51135-f365-4ef9-8705-cac908e0ce45\",\"pandascore_id\":null,\"yahoo_id\":29614,\"last_name\":\"White\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dariuswhite\",\"birth_date\":\"1993-12-12\",\"espn_id\":3127201},\"5556\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034236\",\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1532989850597,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"5556\",\"birth_city\":null,\"fantasy_data_id\":20547,\"years_exp\":2,\"hashtag\":\"#JasonHall-NFL-FA-25\",\"search_first_name\":\"jason\",\"rotowire_id\":13344,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jason Hall\",\"sportradar_id\":\"72fc9f1e-a09f-44bb-a2f8-4a51273fcb40\",\"pandascore_id\":null,\"yahoo_id\":31469,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jasonhall\",\"birth_date\":\"1996-05-16\",\"espn_id\":3125119},\"4847\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mikey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bart\",\"depth_chart_position\":null,\"player_id\":\"4847\",\"birth_city\":null,\"fantasy_data_id\":19637,\"years_exp\":2,\"hashtag\":\"#MikeyBart-NFL-FA-64\",\"search_first_name\":\"mikey\",\"rotowire_id\":12262,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mikey Bart\",\"sportradar_id\":\"f9cd92d0-aaf5-46ae-8566-faf6218529bb\",\"pandascore_id\":null,\"yahoo_id\":30871,\"last_name\":\"Bart\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mikeybart\",\"birth_date\":null,\"espn_id\":3039715},\"4248\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033470\",\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1548457539799,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcquayiii\",\"depth_chart_position\":null,\"player_id\":\"4248\",\"birth_city\":null,\"fantasy_data_id\":19094,\"years_exp\":3,\"hashtag\":\"#LeonMcQuayIII-NFL-FA-34\",\"search_first_name\":\"leon\",\"rotowire_id\":12214,\"rotoworld_id\":12419,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Leon McQuay III\",\"sportradar_id\":\"86697b45-157e-45ed-b63d-826cf5c7a0a1\",\"pandascore_id\":null,\"yahoo_id\":30331,\"last_name\":\"McQuay III\",\"metadata\":null,\"college\":\"Southern Cal\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"leonmcquayiii\",\"birth_date\":\"1994-11-21\",\"espn_id\":3043217},\"5699\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532646901698,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fleming\",\"depth_chart_position\":null,\"player_id\":\"5699\",\"birth_city\":null,\"fantasy_data_id\":20618,\"years_exp\":1,\"hashtag\":\"#MattFleming-NFL-CHI-14\",\"search_first_name\":\"matt\",\"rotowire_id\":12870,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1110,\"age\":null,\"full_name\":\"Matt Fleming\",\"sportradar_id\":\"56e70346-85a3-4a57-9873-da93a2690ce4\",\"pandascore_id\":null,\"yahoo_id\":31711,\"last_name\":\"Fleming\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1116607,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mattfleming\",\"birth_date\":null,\"espn_id\":4327535},\"716\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maneri\",\"depth_chart_position\":null,\"player_id\":\"716\",\"birth_city\":null,\"fantasy_data_id\":12234,\"years_exp\":5,\"hashtag\":\"#SteveManeri-NFL-FA-86\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Steve Maneri\",\"sportradar_id\":\"0268a19e-6227-4fba-83fd-6aa52176dc3a\",\"pandascore_id\":null,\"yahoo_id\":24453,\"last_name\":\"Maneri\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":334311,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'6\\\"\",\"search_full_name\":\"stevemaneri\",\"birth_date\":\"1988-03-20\",\"espn_id\":13863},\"999\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"easley\",\"depth_chart_position\":null,\"player_id\":\"999\",\"birth_city\":null,\"fantasy_data_id\":13486,\"years_exp\":10,\"hashtag\":\"#MarcusEasley-NFL-FA-81\",\"search_first_name\":\"marcus\",\"rotowire_id\":6519,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Marcus Easley\",\"sportradar_id\":\"d3c2dddb-d73d-4014-96a8-2cc24e838201\",\"pandascore_id\":null,\"yahoo_id\":24082,\"last_name\":\"Easley\",\"metadata\":null,\"college\":\"Connecticut\",\"high_school\":\"Frank Scott Bunnell (CT)\",\"depth_chart_order\":null,\"stats_id\":381487,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marcuseasley\",\"birth_date\":\"1987-11-02\",\"espn_id\":13224},\"7125\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Khalil\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603324841614,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"LDE\",\"player_id\":\"7125\",\"birth_city\":null,\"fantasy_data_id\":22070,\"years_exp\":0,\"hashtag\":\"#KhalilDavis-NFL-TB-94\",\"search_first_name\":\"khalil\",\"rotowire_id\":14682,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1903,\"age\":24,\"full_name\":\"Khalil Davis\",\"sportradar_id\":\"2f471656-9ecc-42ea-977f-0c56756d0557\",\"pandascore_id\":null,\"yahoo_id\":32864,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Blue Springs (MO)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'2\\\"\",\"search_full_name\":\"khalildavis\",\"birth_date\":\"1996-08-22\",\"espn_id\":3699530},\"4885\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gutekunst\",\"depth_chart_position\":null,\"player_id\":\"4885\",\"birth_city\":null,\"fantasy_data_id\":19784,\"years_exp\":0,\"hashtag\":\"#BrianGutekunst-NFL-FA-0\",\"search_first_name\":\"brian\",\"rotowire_id\":null,\"rotoworld_id\":12785,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Brian Gutekunst\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Gutekunst\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"briangutekunst\",\"birth_date\":null,\"espn_id\":null},\"5479\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034516\",\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1579733417590,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"herndon\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5479\",\"birth_city\":null,\"fantasy_data_id\":20460,\"years_exp\":2,\"hashtag\":\"#TreHerndon-NFL-JAX-37\",\"search_first_name\":\"tre\",\"rotowire_id\":13040,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1475,\"age\":24,\"full_name\":\"Tre Herndon\",\"sportradar_id\":\"3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da\",\"pandascore_id\":null,\"yahoo_id\":31262,\"last_name\":\"Herndon\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"East Hamilton (TN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"treherndon\",\"birth_date\":\"1996-03-05\",\"espn_id\":3122160},\"1319\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terrence\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"frederick\",\"depth_chart_position\":null,\"player_id\":\"1319\",\"birth_city\":null,\"fantasy_data_id\":14814,\"years_exp\":1,\"hashtag\":\"#TerrenceFrederick-NFL-FA-37\",\"search_first_name\":\"terrence\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Terrence Frederick\",\"sportradar_id\":\"a9b786ea-e361-49dc-b287-e9ec378f922f\",\"pandascore_id\":null,\"yahoo_id\":25956,\"last_name\":\"Frederick\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"terrencefrederick\",\"birth_date\":\"1990-02-10\",\"espn_id\":15065},\"5753\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034787\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1577033159979,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"board\",\"depth_chart_position\":\"MLB\",\"player_id\":\"5753\",\"birth_city\":null,\"fantasy_data_id\":20245,\"years_exp\":2,\"hashtag\":\"#ChrisBoard-NFL-BAL-49\",\"search_first_name\":\"chris\",\"rotowire_id\":13353,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1439,\"age\":25,\"full_name\":\"Chris Board\",\"sportradar_id\":\"07247409-1cf8-4e67-a05b-15de83ca1bf9\",\"pandascore_id\":null,\"yahoo_id\":31750,\"last_name\":\"Board\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Timber Creek (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"chrisboard\",\"birth_date\":\"1995-07-23\",\"espn_id\":3060403},\"1262\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029623\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599340257663,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tanney\",\"depth_chart_position\":\"QB\",\"player_id\":\"1262\",\"birth_city\":null,\"fantasy_data_id\":14657,\"years_exp\":8,\"hashtag\":\"#AlexTanney-NFL-FA-3\",\"search_first_name\":\"alex\",\"rotowire_id\":8402,\"rotoworld_id\":null,\"active\":true,\"search_rank\":695,\"age\":32,\"full_name\":\"Alex Tanney\",\"sportradar_id\":\"1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5\",\"pandascore_id\":null,\"yahoo_id\":26547,\"last_name\":\"Tanney\",\"metadata\":null,\"college\":\"Monmouth, Ill.\",\"high_school\":\"Lexington (IL)\",\"depth_chart_order\":3,\"stats_id\":616337,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'4\\\"\",\"search_full_name\":\"alextanney\",\"birth_date\":\"1987-11-11\",\"espn_id\":15693},\"6568\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035504\",\"first_name\":\"Wyatt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599279655173,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":null,\"player_id\":\"6568\",\"birth_city\":null,\"fantasy_data_id\":21230,\"years_exp\":1,\"hashtag\":\"#WyattMiller-NFL-DAL-67\",\"search_first_name\":\"wyatt\",\"rotowire_id\":13921,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Wyatt Miller\",\"sportradar_id\":\"59eef23b-4c9a-4b8b-b681-6d8e24aa9252\",\"pandascore_id\":null,\"yahoo_id\":32527,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"wyattmiller\",\"birth_date\":\"1995-10-23\",\"espn_id\":3128449},\"6474\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035611\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1578441343607,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hitner\",\"depth_chart_position\":\"RT\",\"player_id\":\"6474\",\"birth_city\":null,\"fantasy_data_id\":21331,\"years_exp\":1,\"hashtag\":\"#BrandonHitner-NFL-FA-0\",\"search_first_name\":\"brandon\",\"rotowire_id\":13937,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brandon Hitner\",\"sportradar_id\":\"20b85f3c-8cec-40a3-8cfe-05a4fe43c23a\",\"pandascore_id\":null,\"yahoo_id\":32132,\"last_name\":\"Hitner\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'6\\\"\",\"search_full_name\":\"brandonhitner\",\"birth_date\":\"1995-05-15\",\"espn_id\":3120858},\"5681\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034443\",\"first_name\":\"Johnathan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565114724443,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alston\",\"depth_chart_position\":null,\"player_id\":\"5681\",\"birth_city\":null,\"fantasy_data_id\":20608,\"years_exp\":2,\"hashtag\":\"#JohnathanAlston-NFL-FA-41\",\"search_first_name\":\"johnathan\",\"rotowire_id\":13261,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Johnathan Alston\",\"sportradar_id\":\"f7b0f6fc-217a-4df0-b5d1-a9555fabbba9\",\"pandascore_id\":null,\"yahoo_id\":31545,\"last_name\":\"Alston\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'0\\\"\",\"search_full_name\":\"johnathanalston\",\"birth_date\":\"1994-10-17\",\"espn_id\":3051706},\"4756\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dorsey\",\"depth_chart_position\":null,\"player_id\":\"4756\",\"birth_city\":null,\"fantasy_data_id\":19675,\"years_exp\":0,\"hashtag\":\"#JohnDorsey-NFL-FA-0\",\"search_first_name\":\"john\",\"rotowire_id\":null,\"rotoworld_id\":9504,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"John Dorsey\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dorsey\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"johndorsey\",\"birth_date\":null,\"espn_id\":null},\"2219\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1514877001196,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"murray\",\"depth_chart_position\":null,\"player_id\":\"2219\",\"birth_city\":null,\"fantasy_data_id\":16603,\"years_exp\":5,\"hashtag\":\"#PatrickMurray-NFL-FA-7\",\"search_first_name\":\"patrick\",\"rotowire_id\":9933,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Patrick Murray\",\"sportradar_id\":\"7481e90a-ffbb-49b8-a55e-a68335d1bbc9\",\"pandascore_id\":null,\"yahoo_id\":27506,\"last_name\":\"Murray\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":522620,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'7\\\"\",\"search_full_name\":\"patrickmurray\",\"birth_date\":\"1991-06-22\",\"espn_id\":16684},\"6364\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035376\",\"first_name\":\"Papi\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1602033936172,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6364\",\"birth_city\":null,\"fantasy_data_id\":21255,\"years_exp\":1,\"hashtag\":\"#PapiWhite-NFL-FA-80\",\"search_first_name\":\"papi\",\"rotowire_id\":14006,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Papi White\",\"sportradar_id\":\"f361ad80-a984-415a-a7af-12c231004b2d\",\"pandascore_id\":null,\"yahoo_id\":32103,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":837579,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"170\",\"height\":\"5'8\\\"\",\"search_full_name\":\"papiwhite\",\"birth_date\":\"1996-07-19\",\"espn_id\":3126080},\"7183\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"7183\",\"birth_city\":null,\"fantasy_data_id\":22185,\"years_exp\":0,\"hashtag\":\"#AustinEdwards-NFL-ATL-95\",\"search_first_name\":\"austin\",\"rotowire_id\":14997,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1946,\"age\":23,\"full_name\":\"Austin Edwards\",\"sportradar_id\":\"17206178-c048-47ed-9f79-9f4c5efd607b\",\"pandascore_id\":null,\"yahoo_id\":33052,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Ferris State\",\"high_school\":\"Waverly (MI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":95,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"austinedwards\",\"birth_date\":\"1997-08-27\",\"espn_id\":4408979},\"6164\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035660\",\"first_name\":\"Kahale\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606480503295,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"warring\",\"depth_chart_position\":\"TE\",\"player_id\":\"6164\",\"birth_city\":null,\"fantasy_data_id\":20974,\"years_exp\":1,\"hashtag\":\"#KahaleWarring-NFL-HOU-81\",\"search_first_name\":\"kahale\",\"rotowire_id\":13478,\"rotoworld_id\":null,\"active\":true,\"search_rank\":460,\"age\":23,\"full_name\":\"Kahale Warring\",\"sportradar_id\":\"a96e777e-120a-4843-8bfb-59069bd1bd52\",\"pandascore_id\":null,\"yahoo_id\":31918,\"last_name\":\"Warring\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":\"Sonora (CA)\",\"depth_chart_order\":4,\"stats_id\":887526,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kahalewarring\",\"birth_date\":\"1997-03-23\",\"espn_id\":3933327},\"3541\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcqueen\",\"depth_chart_position\":null,\"player_id\":\"3541\",\"birth_city\":null,\"fantasy_data_id\":18309,\"years_exp\":0,\"hashtag\":\"#MikeMcQueen-NFL-FA-74\",\"search_first_name\":\"mike\",\"rotowire_id\":11484,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Mike McQueen\",\"sportradar_id\":\"31f06a9c-572c-4b10-a9e3-affe287476db\",\"pandascore_id\":null,\"yahoo_id\":29525,\"last_name\":\"McQueen\",\"metadata\":null,\"college\":\"Ohio\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"287\",\"height\":\"6'7\\\"\",\"search_full_name\":\"mikemcqueen\",\"birth_date\":\"1993-08-31\",\"espn_id\":null},\"7124\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bravvion\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1604014535189,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roy\",\"depth_chart_position\":\"LDT\",\"player_id\":\"7124\",\"birth_city\":null,\"fantasy_data_id\":22135,\"years_exp\":0,\"hashtag\":\"#BravvionRoy-NFL-CAR-93\",\"search_first_name\":\"bravvion\",\"rotowire_id\":14824,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1929,\"age\":24,\"full_name\":\"Bravvion Roy\",\"sportradar_id\":\"47dedc0e-a2fd-415c-8619-5a46867d83e2\",\"pandascore_id\":null,\"yahoo_id\":32854,\"last_name\":\"Roy\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Spring (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":93,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"333\",\"height\":\"6'1\\\"\",\"search_full_name\":\"bravvionroy\",\"birth_date\":\"1996-10-18\",\"espn_id\":4035407},\"551\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"linkenbach\",\"depth_chart_position\":null,\"player_id\":\"551\",\"birth_city\":null,\"fantasy_data_id\":11138,\"years_exp\":10,\"hashtag\":\"#JeffLinkenbach-NFL-FA-62\",\"search_first_name\":\"jeff\",\"rotowire_id\":7108,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Jeff Linkenbach\",\"sportradar_id\":\"901a3f95-ae8a-4f1f-8321-11ec42b8b198\",\"pandascore_id\":null,\"yahoo_id\":24464,\"last_name\":\"Linkenbach\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Margaretta (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"325\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jefflinkenbach\",\"birth_date\":\"1987-06-09\",\"espn_id\":13751},\"1165\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adrien\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"1165\",\"birth_city\":null,\"fantasy_data_id\":14244,\"years_exp\":4,\"hashtag\":\"#AdrienRobinson-NFL-FA-85\",\"search_first_name\":\"adrien\",\"rotowire_id\":8217,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Adrien Robinson\",\"sportradar_id\":\"f8762994-f688-4fba-9efe-95504972ad69\",\"pandascore_id\":null,\"yahoo_id\":25837,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":382275,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'4\\\"\",\"search_full_name\":\"adrienrobinson\",\"birth_date\":\"1988-09-23\",\"espn_id\":14905},\"6002\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035273\",\"first_name\":\"Qadree\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1604166644418,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ollison\",\"depth_chart_position\":\"RB\",\"player_id\":\"6002\",\"birth_city\":null,\"fantasy_data_id\":20900,\"years_exp\":1,\"hashtag\":\"#QadreeOllison-NFL-ATL-30\",\"search_first_name\":\"qadree\",\"rotowire_id\":13494,\"rotoworld_id\":14251,\"active\":true,\"search_rank\":292,\"age\":24,\"full_name\":\"Qadree Ollison\",\"sportradar_id\":\"c44534f8-a567-40e7-b51e-1a72c49cb24e\",\"pandascore_id\":null,\"yahoo_id\":31984,\"last_name\":\"Ollison\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":\"Canisius (NY)\",\"depth_chart_order\":3,\"stats_id\":832473,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"qadreeollison\",\"birth_date\":\"1996-09-08\",\"espn_id\":3123944},\"1240\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"massaquoi\",\"depth_chart_position\":null,\"player_id\":\"1240\",\"birth_city\":null,\"fantasy_data_id\":14571,\"years_exp\":4,\"hashtag\":\"#JonathanMassaquoi-NFL-FA-46\",\"search_first_name\":\"jonathan\",\"rotowire_id\":8141,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jonathan Massaquoi\",\"sportradar_id\":\"9656a941-d588-411c-97e0-d62038a9545f\",\"pandascore_id\":null,\"yahoo_id\":25874,\"last_name\":\"Massaquoi\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"264\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jonathanmassaquoi\",\"birth_date\":\"1988-05-11\",\"espn_id\":15099},\"3754\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Akil\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blount\",\"depth_chart_position\":null,\"player_id\":\"3754\",\"birth_city\":null,\"fantasy_data_id\":18566,\"years_exp\":0,\"hashtag\":\"#AkilBlount-NFL-FA-0\",\"search_first_name\":\"akil\",\"rotowire_id\":11581,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Akil Blount\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29820,\"last_name\":\"Blount\",\"metadata\":null,\"college\":\"Florida A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'2\\\"\",\"search_full_name\":\"akilblount\",\"birth_date\":\"1994-07-02\",\"espn_id\":2982198},\"5482\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034178\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"5482\",\"birth_city\":null,\"fantasy_data_id\":20285,\"years_exp\":2,\"hashtag\":\"#AustinDavis-NFL-FA-60\",\"search_first_name\":\"austin\",\"rotowire_id\":13110,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Davis\",\"sportradar_id\":\"c3d1c1bd-0552-405f-9fe4-b99925e7ec15\",\"pandascore_id\":null,\"yahoo_id\":31432,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austindavis\",\"birth_date\":\"1995-02-25\",\"espn_id\":3048669},\"4789\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034005\",\"first_name\":\"Jarell\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"4789\",\"birth_city\":null,\"fantasy_data_id\":19697,\"years_exp\":3,\"hashtag\":\"#JarellCarter-NFL-FA-39\",\"search_first_name\":\"jarell\",\"rotowire_id\":12534,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarell Carter\",\"sportradar_id\":\"9a2e65ef-64be-42f2-941c-863cee5e910b\",\"pandascore_id\":null,\"yahoo_id\":30913,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jarellcarter\",\"birth_date\":\"1995-08-07\",\"espn_id\":4058338},\"2264\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031020\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565305567019,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reaser\",\"depth_chart_position\":null,\"player_id\":\"2264\",\"birth_city\":null,\"fantasy_data_id\":16675,\"years_exp\":6,\"hashtag\":\"#KeithReaser-NFL-FA-20\",\"search_first_name\":\"keith\",\"rotowire_id\":9611,\"rotoworld_id\":9679,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Keith Reaser\",\"sportradar_id\":\"ff05fdc3-e3a4-4d18-861e-5b1f8553d773\",\"pandascore_id\":null,\"yahoo_id\":27698,\"last_name\":\"Reaser\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"Miami Killian (FL)\",\"depth_chart_order\":null,\"stats_id\":502877,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"keithreaser\",\"birth_date\":\"1991-07-31\",\"espn_id\":16930},\"2569\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"waters\",\"depth_chart_position\":null,\"player_id\":\"2569\",\"birth_city\":null,\"fantasy_data_id\":17033,\"years_exp\":0,\"hashtag\":\"#JakeWaters-NFL-FA-9\",\"search_first_name\":\"jake\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Jake Waters\",\"sportradar_id\":\"b099728a-28f1-41ad-a79e-eedc9f87729d\",\"pandascore_id\":null,\"yahoo_id\":28853,\"last_name\":\"Waters\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733653,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jakewaters\",\"birth_date\":\"1994-12-12\",\"espn_id\":null},\"2139\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Adrian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hubbard\",\"depth_chart_position\":null,\"player_id\":\"2139\",\"birth_city\":null,\"fantasy_data_id\":16479,\"years_exp\":1,\"hashtag\":\"#AdrianHubbard-NFL-FA-49\",\"search_first_name\":\"adrian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Adrian Hubbard\",\"sportradar_id\":\"b35b86cf-3cdf-44ec-81ec-d6f596913b23\",\"pandascore_id\":null,\"yahoo_id\":28080,\"last_name\":\"Hubbard\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"257\",\"height\":\"6'6\\\"\",\"search_full_name\":\"adrianhubbard\",\"birth_date\":\"1992-02-27\",\"espn_id\":17175},\"5282\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Duplicate\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"player\",\"depth_chart_position\":null,\"player_id\":\"5282\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":0,\"hashtag\":\"#DuplicatePlayer-NFL-CHI-37\",\"search_first_name\":\"duplicate\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Duplicate Player\",\"sportradar_id\":null,\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Player\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":37,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"186\",\"height\":\"6'1\\\"\",\"search_full_name\":\"duplicateplayer\",\"birth_date\":null,\"espn_id\":null},\"5878\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035624\",\"first_name\":\"N'Keal\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606578932455,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harry\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5878\",\"birth_city\":null,\"fantasy_data_id\":20792,\"years_exp\":1,\"hashtag\":\"#NKealHarry-NFL-NE-15\",\"search_first_name\":\"nkeal\",\"rotowire_id\":13425,\"rotoworld_id\":14055,\"active\":true,\"search_rank\":153,\"age\":22,\"full_name\":\"N'Keal Harry\",\"sportradar_id\":\"3e6e15ce-1c81-408e-9a94-b0a2924d0b8c\",\"pandascore_id\":null,\"yahoo_id\":31864,\"last_name\":\"Harry\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Arizona State\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":1,\"stats_id\":910431,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'4\\\"\",\"search_full_name\":\"nkealharry\",\"birth_date\":\"1997-12-17\",\"espn_id\":4047839},\"1089\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"1089\",\"birth_city\":null,\"fantasy_data_id\":13914,\"years_exp\":8,\"hashtag\":\"#DrewButler-NFL-FA-2\",\"search_first_name\":\"drew\",\"rotowire_id\":8538,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Drew Butler\",\"sportradar_id\":\"dfbf5359-b403-4836-a75b-91aff4b84d5b\",\"pandascore_id\":null,\"yahoo_id\":26219,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Peachtree Ridge (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'1\\\"\",\"search_full_name\":\"drewbutler\",\"birth_date\":\"1989-05-10\",\"espn_id\":15209},\"7139\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Arlington\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587852642642,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hambright\",\"depth_chart_position\":\"LG\",\"player_id\":\"7139\",\"birth_city\":null,\"fantasy_data_id\":22142,\"years_exp\":0,\"hashtag\":\"#ArlingtonHambright-NFL-CHI-71\",\"search_first_name\":\"arlington\",\"rotowire_id\":14815,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Arlington Hambright\",\"sportradar_id\":\"1d40e4f7-2991-4aa0-aa0a-1e7df79aab07\",\"pandascore_id\":null,\"yahoo_id\":32896,\"last_name\":\"Hambright\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Belleville (MI)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'5\\\"\",\"search_full_name\":\"arlingtonhambright\",\"birth_date\":\"1996-01-30\",\"espn_id\":4241422},\"5564\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034242\",\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pugh\",\"depth_chart_position\":null,\"player_id\":\"5564\",\"birth_city\":null,\"fantasy_data_id\":20359,\"years_exp\":2,\"hashtag\":\"#JacobPugh-NFL-FA-52\",\"search_first_name\":\"jacob\",\"rotowire_id\":12755,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jacob Pugh\",\"sportradar_id\":\"4baef7c8-e86c-4524-b9ab-a25cbbc46fa1\",\"pandascore_id\":null,\"yahoo_id\":31472,\"last_name\":\"Pugh\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jacobpugh\",\"birth_date\":\"1995-09-22\",\"espn_id\":3122932},\"4977\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034833\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606594533500,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wynn\",\"depth_chart_position\":\"LT\",\"player_id\":\"4977\",\"birth_city\":null,\"fantasy_data_id\":19848,\"years_exp\":2,\"hashtag\":\"#IsaiahWynn-NFL-NE-76\",\"search_first_name\":\"isaiah\",\"rotowire_id\":12855,\"rotoworld_id\":13111,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Isaiah Wynn\",\"sportradar_id\":\"27b1ba46-842b-4bca-a434-56c60102c1b5\",\"pandascore_id\":null,\"yahoo_id\":30993,\"last_name\":\"Wynn\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Georgia\",\"high_school\":\"Lakewood (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'2\\\"\",\"search_full_name\":\"isaiahwynn\",\"birth_date\":\"1995-12-09\",\"espn_id\":3128713},\"6825\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Neville\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587785436165,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gallimore\",\"depth_chart_position\":\"LDT\",\"player_id\":\"6825\",\"birth_city\":null,\"fantasy_data_id\":22078,\"years_exp\":0,\"hashtag\":\"#NevilleGallimore-NFL-DAL-96\",\"search_first_name\":\"neville\",\"rotowire_id\":14451,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1908,\"age\":23,\"full_name\":\"Neville Gallimore\",\"sportradar_id\":\"fda10175-38e3-4678-a94c-ccd6008d40ec\",\"pandascore_id\":null,\"yahoo_id\":32752,\"last_name\":\"Gallimore\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":\"Canada Prep Football Academy (CAN)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"302\",\"height\":\"6'2\\\"\",\"search_full_name\":\"nevillegallimore\",\"birth_date\":\"1997-01-17\",\"espn_id\":3892883},\"682\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrel\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":null,\"player_id\":\"682\",\"birth_city\":null,\"fantasy_data_id\":11969,\"years_exp\":11,\"hashtag\":\"#DarrelYoung-NFL-FA-36\",\"search_first_name\":\"darrel\",\"rotowire_id\":7966,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Darrel Young\",\"sportradar_id\":\"e174b76d-323a-41c5-be68-e766aa060d5c\",\"pandascore_id\":null,\"yahoo_id\":9666,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"Villanova\",\"high_school\":\"Amityville Memorial (NY)\",\"depth_chart_order\":null,\"stats_id\":291658,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darrelyoung\",\"birth_date\":\"1987-04-08\",\"espn_id\":13097},\"460\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027025\",\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1552784443688,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"unger\",\"depth_chart_position\":null,\"player_id\":\"460\",\"birth_city\":null,\"fantasy_data_id\":9392,\"years_exp\":11,\"hashtag\":\"#MaxUnger-NFL-FA-60\",\"search_first_name\":\"max\",\"rotowire_id\":6055,\"rotoworld_id\":5224,\"active\":true,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Max Unger\",\"sportradar_id\":\"b1674df8-2270-4ade-a168-00159259c0b8\",\"pandascore_id\":null,\"yahoo_id\":9313,\"last_name\":\"Unger\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Hawaii Prep (HI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"maxunger\",\"birth_date\":\"1986-04-14\",\"espn_id\":12624},\"2442\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032170\",\"first_name\":\"Rashad\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1546299948133,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"greene\",\"depth_chart_position\":null,\"player_id\":\"2442\",\"birth_city\":null,\"fantasy_data_id\":16899,\"years_exp\":5,\"hashtag\":\"#RashadGreene-NFL-FA-13\",\"search_first_name\":\"rashad\",\"rotowire_id\":10212,\"rotoworld_id\":10397,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Rashad Greene\",\"sportradar_id\":\"73d6cb8a-3d72-4a6a-b3c9-fe61dfd1bd41\",\"pandascore_id\":null,\"yahoo_id\":900026,\"last_name\":\"Greene\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"St. Thomas Aquinas (FL)\",\"depth_chart_order\":null,\"stats_id\":605413,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"rashadgreene\",\"birth_date\":\"1992-09-23\",\"espn_id\":2576785},\"4590\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033674\",\"first_name\":\"Orion\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1564710003428,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stewart\",\"depth_chart_position\":null,\"player_id\":\"4590\",\"birth_city\":null,\"fantasy_data_id\":19477,\"years_exp\":3,\"hashtag\":\"#OrionStewart-NFL-FA-0\",\"search_first_name\":\"orion\",\"rotowire_id\":12522,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Orion Stewart\",\"sportradar_id\":\"faa0d163-480f-4ca5-a09e-0c4a2206a5a4\",\"pandascore_id\":null,\"yahoo_id\":30824,\"last_name\":\"Stewart\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"orionstewart\",\"birth_date\":\"1994-01-10\",\"espn_id\":2978946},\"3734\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032734\",\"first_name\":\"Brennan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605130806733,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"scarlett\",\"depth_chart_position\":null,\"player_id\":\"3734\",\"birth_city\":null,\"fantasy_data_id\":18545,\"years_exp\":4,\"hashtag\":\"#BrennanScarlett-NFL-HOU-57\",\"search_first_name\":\"brennan\",\"rotowire_id\":11474,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1092,\"age\":27,\"full_name\":\"Brennan Scarlett\",\"sportradar_id\":\"5a422c26-d686-4ad2-af10-d7d691150e27\",\"pandascore_id\":null,\"yahoo_id\":29807,\"last_name\":\"Scarlett\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Central Catholic (OR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brennanscarlett\",\"birth_date\":\"1993-07-31\",\"espn_id\":2576885},\"7107\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605458710879,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"huntley\",\"depth_chart_position\":\"RB\",\"player_id\":\"7107\",\"birth_city\":null,\"fantasy_data_id\":21764,\"years_exp\":0,\"hashtag\":\"#JasonHuntley-NFL-PHI-32\",\"search_first_name\":\"jason\",\"rotowire_id\":14796,\"rotoworld_id\":null,\"active\":true,\"search_rank\":262,\"age\":22,\"full_name\":\"Jason Huntley\",\"sportradar_id\":\"632f863e-ad20-424f-a468-7ee40c098c2c\",\"pandascore_id\":null,\"yahoo_id\":32842,\"last_name\":\"Huntley\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":\"Martin (TX)\",\"depth_chart_order\":5,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'9\\\"\",\"search_full_name\":\"jasonhuntley\",\"birth_date\":\"1998-04-20\",\"espn_id\":4040790},\"1996\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D.J.\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tialavea\",\"depth_chart_position\":null,\"player_id\":\"1996\",\"birth_city\":null,\"fantasy_data_id\":16267,\"years_exp\":6,\"hashtag\":\"#DJTialavea-NFL-FA-74\",\"search_first_name\":\"dj\",\"rotowire_id\":9635,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"D.J. Tialavea\",\"sportradar_id\":\"5436518d-5320-40e7-9c42-aec99ca793d7\",\"pandascore_id\":null,\"yahoo_id\":27881,\"last_name\":\"Tialavea\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"West Jordan (UT)\",\"depth_chart_order\":null,\"stats_id\":507707,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'4\\\"\",\"search_full_name\":\"djtialavea\",\"birth_date\":\"1991-07-27\",\"espn_id\":17269},\"5493\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034573\",\"first_name\":\"Charvarius\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601334611889,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ward\",\"depth_chart_position\":\"RCB\",\"player_id\":\"5493\",\"birth_city\":null,\"fantasy_data_id\":20204,\"years_exp\":2,\"hashtag\":\"#CharvariusWard-NFL-KC-35\",\"search_first_name\":\"charvarius\",\"rotowire_id\":13257,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1434,\"age\":24,\"full_name\":\"Charvarius Ward\",\"sportradar_id\":\"04f6abef-834f-470e-9c15-8c0cc62fde4e\",\"pandascore_id\":null,\"yahoo_id\":31293,\"last_name\":\"Ward\",\"metadata\":null,\"college\":\"Middle Tennessee\",\"high_school\":\"McComb (MS)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'1\\\"\",\"search_full_name\":\"charvariusward\",\"birth_date\":\"1996-05-16\",\"espn_id\":4037361},\"3177\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032966\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606263955005,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":\"SWR\",\"player_id\":\"3177\",\"birth_city\":null,\"fantasy_data_id\":17938,\"years_exp\":4,\"hashtag\":\"#CoreyColeman-NFL-NYG-19\",\"search_first_name\":\"corey\",\"rotowire_id\":10817,\"rotoworld_id\":11278,\"active\":true,\"search_rank\":953,\"age\":26,\"full_name\":\"Corey Coleman\",\"sportradar_id\":\"6efb8027-b537-4dd1-883f-459450708ad4\",\"pandascore_id\":null,\"yahoo_id\":29249,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"J.J. Pearce (TX)\",\"depth_chart_order\":7,\"stats_id\":695370,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"coreycoleman\",\"birth_date\":\"1994-07-06\",\"espn_id\":2978929},\"4460\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033315\",\"first_name\":\"Cole\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599705344895,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hikutini\",\"depth_chart_position\":\"TE\",\"player_id\":\"4460\",\"birth_city\":null,\"fantasy_data_id\":19326,\"years_exp\":3,\"hashtag\":\"#ColeHikutini-NFL-DAL-87\",\"search_first_name\":\"cole\",\"rotowire_id\":11891,\"rotoworld_id\":null,\"active\":true,\"search_rank\":578,\"age\":26,\"full_name\":\"Cole Hikutini\",\"sportradar_id\":\"c4caac75-07d3-44b2-88ca-524e495a1a6b\",\"pandascore_id\":null,\"yahoo_id\":30559,\"last_name\":\"Hikutini\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":\"Pleasant Grove (CA)\",\"depth_chart_order\":4,\"stats_id\":698168,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"colehikutini\",\"birth_date\":\"1994-06-11\",\"espn_id\":2968204},\"1533\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030405\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1535831709072,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"locke\",\"depth_chart_position\":null,\"player_id\":\"1533\",\"birth_city\":null,\"fantasy_data_id\":15148,\"years_exp\":7,\"hashtag\":\"#JeffLocke-NFL-FA-2\",\"search_first_name\":\"jeff\",\"rotowire_id\":8985,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jeff Locke\",\"sportradar_id\":\"e6166069-6d2c-4121-9988-bc7b533e1558\",\"pandascore_id\":null,\"yahoo_id\":26778,\"last_name\":\"Locke\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Mountain Ridge (AZ)\",\"depth_chart_order\":null,\"stats_id\":461708,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jefflocke\",\"birth_date\":\"1989-09-27\",\"espn_id\":15926},\"7363\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fehr\",\"depth_chart_position\":null,\"player_id\":\"7363\",\"birth_city\":null,\"fantasy_data_id\":22351,\"years_exp\":0,\"hashtag\":\"#JordanFehr-NFL-FA-0\",\"search_first_name\":\"jordan\",\"rotowire_id\":14940,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1987,\"age\":22,\"full_name\":\"Jordan Fehr\",\"sportradar_id\":\"a850609c-efba-446d-ae0f-17de46503061\",\"pandascore_id\":null,\"yahoo_id\":33030,\"last_name\":\"Fehr\",\"metadata\":null,\"college\":\"Appalachian State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanfehr\",\"birth_date\":\"1998-06-16\",\"espn_id\":4036445},\"7110\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelly\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"7110\",\"birth_city\":null,\"fantasy_data_id\":21972,\"years_exp\":0,\"hashtag\":\"#KellyBryant-NFL-FA-0\",\"search_first_name\":\"kelly\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kelly Bryant\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":\"Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"229\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kellybryant\",\"birth_date\":\"1996-09-25\",\"espn_id\":null},\"5404\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034212\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gonzalez\",\"depth_chart_position\":null,\"player_id\":\"5404\",\"birth_city\":null,\"fantasy_data_id\":20454,\"years_exp\":2,\"hashtag\":\"#ChrisGonzalez-NFL-FA-67\",\"search_first_name\":\"chris\",\"rotowire_id\":13148,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Gonzalez\",\"sportradar_id\":\"ef133256-fb0b-4a2e-bef8-48b5245395a1\",\"pandascore_id\":null,\"yahoo_id\":31232,\"last_name\":\"Gonzalez\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisgonzalez\",\"birth_date\":\"1995-07-03\",\"espn_id\":3052709},\"4273\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033594\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606523729183,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"carson\",\"depth_chart_position\":\"RB\",\"player_id\":\"4273\",\"birth_city\":null,\"fantasy_data_id\":19119,\"years_exp\":3,\"hashtag\":\"#ChrisCarson-NFL-SEA-32\",\"search_first_name\":\"chris\",\"rotowire_id\":11784,\"rotoworld_id\":12446,\"active\":true,\"search_rank\":22,\"age\":26,\"full_name\":\"Chris Carson\",\"sportradar_id\":\"0afca88b-83e7-49d6-80df-1f68b21cca9f\",\"pandascore_id\":null,\"yahoo_id\":30362,\"last_name\":\"Carson\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"Parkview (GA)\",\"depth_chart_order\":1,\"stats_id\":882734,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"222\",\"height\":\"5'11\\\"\",\"search_full_name\":\"chriscarson\",\"birth_date\":\"1994-09-16\",\"espn_id\":3919596},\"733\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Perry\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"riley\",\"depth_chart_position\":null,\"player_id\":\"733\",\"birth_city\":null,\"fantasy_data_id\":12307,\"years_exp\":10,\"hashtag\":\"#PerryRiley-NFL-FA-54\",\"search_first_name\":\"perry\",\"rotowire_id\":6686,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Perry Riley\",\"sportradar_id\":\"5726ab42-606e-4139-9f2a-d677a858dbdb\",\"pandascore_id\":null,\"yahoo_id\":24078,\"last_name\":\"Riley\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Stephenson (GA)\",\"depth_chart_order\":null,\"stats_id\":323234,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"perryriley\",\"birth_date\":\"1988-05-03\",\"espn_id\":13443},\"3054\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032078\",\"first_name\":\"Tyreek\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1536204306478,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"burwell\",\"depth_chart_position\":\"RT\",\"player_id\":\"3054\",\"birth_city\":null,\"fantasy_data_id\":17769,\"years_exp\":5,\"hashtag\":\"#TyreekBurwell-NFL-FA-65\",\"search_first_name\":\"tyreek\",\"rotowire_id\":10681,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Tyreek Burwell\",\"sportradar_id\":\"095c22b1-9a56-4b04-9625-910218a087c5\",\"pandascore_id\":null,\"yahoo_id\":28676,\"last_name\":\"Burwell\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Walt Whitman (NY)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'5\\\"\",\"search_full_name\":\"tyreekburwell\",\"birth_date\":\"1992-03-11\",\"espn_id\":3056893},\"2760\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"raciti\",\"depth_chart_position\":null,\"player_id\":\"2760\",\"birth_city\":null,\"fantasy_data_id\":17228,\"years_exp\":1,\"hashtag\":\"#TravisRaciti-NFL-FA-91\",\"search_first_name\":\"travis\",\"rotowire_id\":10767,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Travis Raciti\",\"sportradar_id\":\"2390592e-bb17-415a-acf4-024c176b14d3\",\"pandascore_id\":null,\"yahoo_id\":28655,\"last_name\":\"Raciti\",\"metadata\":null,\"college\":\"San José State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'4\\\"\",\"search_full_name\":\"travisraciti\",\"birth_date\":\"1992-05-21\",\"espn_id\":2573986},\"5420\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034568\",\"first_name\":\"Steven\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richardson\",\"depth_chart_position\":null,\"player_id\":\"5420\",\"birth_city\":null,\"fantasy_data_id\":20312,\"years_exp\":2,\"hashtag\":\"#StevenRichardson-NFL-FA-70\",\"search_first_name\":\"steven\",\"rotowire_id\":13058,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Steven Richardson\",\"sportradar_id\":\"94062255-0b93-43ca-9399-92bbc10901ff\",\"pandascore_id\":null,\"yahoo_id\":31686,\"last_name\":\"Richardson\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'0\\\"\",\"search_full_name\":\"stevenrichardson\",\"birth_date\":\"1996-02-28\",\"espn_id\":3116072},\"4442\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033438\",\"first_name\":\"Fadol\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1578437142880,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"4442\",\"birth_city\":null,\"fantasy_data_id\":19303,\"years_exp\":3,\"hashtag\":\"#FadolBrown-NFL-FA-90\",\"search_first_name\":\"fadol\",\"rotowire_id\":11906,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Fadol Brown\",\"sportradar_id\":\"401fac38-aa48-4f45-b6c4-a4705b50f9bd\",\"pandascore_id\":null,\"yahoo_id\":30626,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"273\",\"height\":\"6'5\\\"\",\"search_full_name\":\"fadolbrown\",\"birth_date\":\"1993-04-15\",\"espn_id\":2981846},\"2104\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ka'Deem\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"carey\",\"depth_chart_position\":null,\"player_id\":\"2104\",\"birth_city\":null,\"fantasy_data_id\":16427,\"years_exp\":6,\"hashtag\":\"#KaDeemCarey-NFL-FA-25\",\"search_first_name\":\"kadeem\",\"rotowire_id\":9356,\"rotoworld_id\":9325,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ka'Deem Carey\",\"sportradar_id\":\"09277839-fc48-4b68-b9b1-bc9d6dc3c58e\",\"pandascore_id\":null,\"yahoo_id\":27645,\"last_name\":\"Carey\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":\"Canyon del Oro (AZ)\",\"depth_chart_order\":null,\"stats_id\":593540,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kadeemcarey\",\"birth_date\":\"1992-10-30\",\"espn_id\":16942},\"234\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029302\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1507676702252,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccants\",\"depth_chart_position\":null,\"player_id\":\"234\",\"birth_city\":null,\"fantasy_data_id\":5885,\"years_exp\":8,\"hashtag\":\"#MattMcCants-NFL-FA-78\",\"search_first_name\":\"matt\",\"rotowire_id\":8348,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Matt McCants\",\"sportradar_id\":\"84740b88-9a98-45f5-a0b8-f42a2903e87b\",\"pandascore_id\":null,\"yahoo_id\":25911,\"last_name\":\"McCants\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Williamson (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattmccants\",\"birth_date\":\"1989-08-18\",\"espn_id\":15013},\"1619\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030155\",\"first_name\":\"Demetrius\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1603833354685,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"harris\",\"depth_chart_position\":\"TE\",\"player_id\":\"1619\",\"birth_city\":null,\"fantasy_data_id\":15305,\"years_exp\":7,\"hashtag\":\"#DemetriusHarris-NFL-CHI-86\",\"search_first_name\":\"demetrius\",\"rotowire_id\":9847,\"rotoworld_id\":8683,\"active\":true,\"search_rank\":753,\"age\":29,\"full_name\":\"Demetrius Harris\",\"sportradar_id\":\"8506c15c-15cc-4d2c-aebf-270c605fe0ec\",\"pandascore_id\":null,\"yahoo_id\":27174,\"last_name\":\"Harris\",\"metadata\":null,\"college\":\"Wisconsin-Milwaukee\",\"high_school\":\"Jacksonville (AR)\",\"depth_chart_order\":3,\"stats_id\":602269,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'7\\\"\",\"search_full_name\":\"demetriusharris\",\"birth_date\":\"1991-07-29\",\"espn_id\":16318},\"5488\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034558\",\"first_name\":\"Joel\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lanning\",\"depth_chart_position\":null,\"player_id\":\"5488\",\"birth_city\":null,\"fantasy_data_id\":20126,\"years_exp\":2,\"hashtag\":\"#JoelLanning-NFL-FA-43\",\"search_first_name\":\"joel\",\"rotowire_id\":12717,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Joel Lanning\",\"sportradar_id\":\"80fa17ab-6d73-4276-a9e8-ede251995fa6\",\"pandascore_id\":null,\"yahoo_id\":31290,\"last_name\":\"Lanning\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joellanning\",\"birth_date\":\"1994-11-18\",\"espn_id\":3039921},\"3128\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jim\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schwartz\",\"depth_chart_position\":null,\"player_id\":\"3128\",\"birth_city\":null,\"fantasy_data_id\":17882,\"years_exp\":0,\"hashtag\":\"#JimSchwartz-NFL-FA-0\",\"search_first_name\":\"jim\",\"rotowire_id\":null,\"rotoworld_id\":8345,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jim Schwartz\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Schwartz\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"jimschwartz\",\"birth_date\":null,\"espn_id\":null},\"810\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1515535201888,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mallett\",\"depth_chart_position\":null,\"player_id\":\"810\",\"birth_city\":null,\"fantasy_data_id\":12771,\"years_exp\":9,\"hashtag\":\"#RyanMallett-NFL-FA-15\",\"search_first_name\":\"ryan\",\"rotowire_id\":7243,\"rotoworld_id\":6470,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Ryan Mallett\",\"sportradar_id\":\"f82d4ebb-cda9-4b79-ade0-9ef468d2c101\",\"pandascore_id\":null,\"yahoo_id\":24861,\"last_name\":\"Mallett\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Texas (TX)\",\"depth_chart_order\":null,\"stats_id\":380741,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"ryanmallett\",\"birth_date\":\"1988-06-05\",\"espn_id\":14037},\"1798\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1534905612144,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"huff\",\"depth_chart_position\":null,\"player_id\":\"1798\",\"birth_city\":null,\"fantasy_data_id\":15971,\"years_exp\":6,\"hashtag\":\"#JoshHuff-NFL-FA-15\",\"search_first_name\":\"josh\",\"rotowire_id\":9460,\"rotoworld_id\":9647,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Huff\",\"sportradar_id\":\"96c345e6-a8c4-4823-a6d5-b88e2e0bbca9\",\"pandascore_id\":null,\"yahoo_id\":27614,\"last_name\":\"Huff\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Nimitz (TX)\",\"depth_chart_order\":null,\"stats_id\":555666,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshhuff\",\"birth_date\":\"1991-10-14\",\"espn_id\":16779},\"6325\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035501\",\"first_name\":\"Fredrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567786825614,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"6325\",\"birth_city\":null,\"fantasy_data_id\":21231,\"years_exp\":1,\"hashtag\":\"#FredrickJones-NFL-FA-64\",\"search_first_name\":\"fredrick\",\"rotowire_id\":14224,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Fredrick Jones\",\"sportradar_id\":\"4023e7d3-2b70-450f-9afc-bf1a9dcee3f9\",\"pandascore_id\":null,\"yahoo_id\":32524,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":64,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'2\\\"\",\"search_full_name\":\"fredrickjones\",\"birth_date\":\"1996-08-25\",\"espn_id\":3122924},\"4419\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brooks\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1534904443415,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ellis\",\"depth_chart_position\":null,\"player_id\":\"4419\",\"birth_city\":null,\"fantasy_data_id\":19279,\"years_exp\":3,\"hashtag\":\"#BrooksEllis-NFL-FA-57\",\"search_first_name\":\"brooks\",\"rotowire_id\":11968,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Brooks Ellis\",\"sportradar_id\":\"9cb5aa6d-7b81-436e-905a-4b4739d98e9e\",\"pandascore_id\":null,\"yahoo_id\":30659,\"last_name\":\"Ellis\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brooksellis\",\"birth_date\":\"1995-01-15\",\"espn_id\":3046430},\"1884\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031306\",\"first_name\":\"Russell\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596675615130,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"bodine\",\"depth_chart_position\":null,\"player_id\":\"1884\",\"birth_city\":null,\"fantasy_data_id\":16104,\"years_exp\":6,\"hashtag\":\"#RussellBodine-NFL-DET-60\",\"search_first_name\":\"russell\",\"rotowire_id\":9444,\"rotoworld_id\":9582,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Russell Bodine\",\"sportradar_id\":\"5b6c34e0-6b28-4c60-b31b-0aba6290c546\",\"pandascore_id\":null,\"yahoo_id\":27639,\"last_name\":\"Bodine\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Fork Union Military Academy (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'3\\\"\",\"search_full_name\":\"russellbodine\",\"birth_date\":\"1992-06-30\",\"espn_id\":16876},\"2456\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032110\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604962228796,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"emanuel\",\"depth_chart_position\":null,\"player_id\":\"2456\",\"birth_city\":null,\"fantasy_data_id\":16913,\"years_exp\":5,\"hashtag\":\"#KyleEmanuel-NFL-HOU-56\",\"search_first_name\":\"kyle\",\"rotowire_id\":10359,\"rotoworld_id\":null,\"active\":true,\"search_rank\":897,\"age\":29,\"full_name\":\"Kyle Emanuel\",\"sportradar_id\":\"bb4619b4-30e6-473d-947e-41d75a573475\",\"pandascore_id\":null,\"yahoo_id\":28541,\"last_name\":\"Emanuel\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":\"Schuyler Central (NE)\",\"depth_chart_order\":null,\"stats_id\":559871,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kyleemanuel\",\"birth_date\":\"1991-08-16\",\"espn_id\":2508212},\"4421\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033387\",\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605898802101,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hollister\",\"depth_chart_position\":\"TE\",\"player_id\":\"4421\",\"birth_city\":null,\"fantasy_data_id\":19281,\"years_exp\":3,\"hashtag\":\"#JacobHollister-NFL-SEA-86\",\"search_first_name\":\"jacob\",\"rotowire_id\":12271,\"rotoworld_id\":12491,\"active\":true,\"search_rank\":379,\"age\":27,\"full_name\":\"Jacob Hollister\",\"sportradar_id\":\"ad2a1d03-020b-487a-bd5f-7ca9fbc250fe\",\"pandascore_id\":null,\"yahoo_id\":30661,\"last_name\":\"Hollister\",\"metadata\":null,\"college\":\"Wyoming\",\"high_school\":\"Mountain View (OR)\",\"depth_chart_order\":1,\"stats_id\":696882,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jacobhollister\",\"birth_date\":\"1993-11-18\",\"espn_id\":3125404},\"3981\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Pepper\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"johnson\",\"depth_chart_position\":null,\"player_id\":\"3981\",\"birth_city\":null,\"fantasy_data_id\":18816,\"years_exp\":0,\"hashtag\":\"#PepperJohnson-NFL-FA-0\",\"search_first_name\":\"pepper\",\"rotowire_id\":null,\"rotoworld_id\":10316,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Pepper Johnson\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Johnson\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"pepperjohnson\",\"birth_date\":null,\"espn_id\":null},\"245\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Thomas\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":null,\"player_id\":\"245\",\"birth_city\":null,\"fantasy_data_id\":6197,\"years_exp\":8,\"hashtag\":\"#ThomasHoward-NFL-FA-51\",\"search_first_name\":\"thomas\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":34,\"full_name\":\"Thomas Howard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"thomashoward\",\"birth_date\":\"1983-07-14\",\"espn_id\":9624},\"5339\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034434\",\"first_name\":\"Kendrick\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1584576025628,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"norton\",\"depth_chart_position\":null,\"player_id\":\"5339\",\"birth_city\":null,\"fantasy_data_id\":20054,\"years_exp\":2,\"hashtag\":\"#KendrickNorton-NFL-FA-0\",\"search_first_name\":\"kendrick\",\"rotowire_id\":12588,\"rotoworld_id\":13339,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kendrick Norton\",\"sportradar_id\":\"be1314f9-5b2a-495d-be64-579158fd29eb\",\"pandascore_id\":null,\"yahoo_id\":31212,\"last_name\":\"Norton\",\"metadata\":null,\"college\":\"Miami (FL)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":880134,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kendricknorton\",\"birth_date\":\"1997-06-07\",\"espn_id\":3917847},\"6290\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035298\",\"first_name\":\"Scott\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606250754386,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"miller\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6290\",\"birth_city\":null,\"fantasy_data_id\":21138,\"years_exp\":1,\"hashtag\":\"#ScottMiller-NFL-TB-10\",\"search_first_name\":\"scott\",\"rotowire_id\":13987,\"rotoworld_id\":14275,\"active\":true,\"search_rank\":250,\"age\":23,\"full_name\":\"Scott Miller\",\"sportradar_id\":\"85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e\",\"pandascore_id\":null,\"yahoo_id\":32040,\"last_name\":\"Miller\",\"metadata\":null,\"college\":\"Bowling Green\",\"high_school\":\"Barrington (IL)\",\"depth_chart_order\":2,\"stats_id\":866578,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"174\",\"height\":\"5'11\\\"\",\"search_full_name\":\"scottmiller\",\"birth_date\":\"1997-07-31\",\"espn_id\":3914397},\"4463\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccloskey\",\"depth_chart_position\":null,\"player_id\":\"4463\",\"birth_city\":null,\"fantasy_data_id\":19329,\"years_exp\":2,\"hashtag\":\"#TylerMcCloskey-NFL-FA-47\",\"search_first_name\":\"tyler\",\"rotowire_id\":12058,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Tyler McCloskey\",\"sportradar_id\":\"fb794fe5-67d3-40c4-a7a9-de03baf2301b\",\"pandascore_id\":null,\"yahoo_id\":30562,\"last_name\":\"McCloskey\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":741526,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tylermccloskey\",\"birth_date\":\"1994-08-11\",\"espn_id\":3040036},\"726\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyler\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"polumbus\",\"depth_chart_position\":null,\"player_id\":\"726\",\"birth_city\":null,\"fantasy_data_id\":12279,\"years_exp\":12,\"hashtag\":\"#TylerPolumbus-NFL-FA-76\",\"search_first_name\":\"tyler\",\"rotowire_id\":7136,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Tyler Polumbus\",\"sportradar_id\":\"9798d4cd-516f-4b1a-b388-cafe570db95b\",\"pandascore_id\":null,\"yahoo_id\":900018,\"last_name\":\"Polumbus\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Cherry Creek (CO)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"308\",\"height\":\"6'8\\\"\",\"search_full_name\":\"tylerpolumbus\",\"birth_date\":\"1985-04-10\",\"espn_id\":11572},\"3825\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Iosia\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"iosia\",\"depth_chart_position\":null,\"player_id\":\"3825\",\"birth_city\":null,\"fantasy_data_id\":18643,\"years_exp\":1,\"hashtag\":\"#IosiaIosia-NFL-FA-98\",\"search_first_name\":\"iosia\",\"rotowire_id\":11665,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Iosia Iosia\",\"sportradar_id\":\"4d3f5bf9-eaf5-442c-9194-a37bc1fc9484\",\"pandascore_id\":null,\"yahoo_id\":29945,\"last_name\":\"Iosia\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"iosiaiosia\",\"birth_date\":\"1991-12-28\",\"espn_id\":null},\"5686\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034636\",\"first_name\":\"Amari\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1540079403163,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"5686\",\"birth_city\":null,\"fantasy_data_id\":20132,\"years_exp\":2,\"hashtag\":\"#AmariColeman-NFL-FA-44\",\"search_first_name\":\"amari\",\"rotowire_id\":13191,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Amari Coleman\",\"sportradar_id\":\"940cfc9c-4420-4ba9-8ae1-a7db9f04c80b\",\"pandascore_id\":null,\"yahoo_id\":31630,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'11\\\"\",\"search_full_name\":\"amaricoleman\",\"birth_date\":\"1996-10-09\",\"espn_id\":3125790},\"5852\":{\"position\":\"CB\",\"injury_notes\":\"Baker may not practice or attend games.\",\"birth_country\":null,\"gsis_id\":\" 00-0035684\",\"first_name\":\"Deandre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605671127515,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"baker\",\"depth_chart_position\":null,\"player_id\":\"5852\",\"birth_city\":null,\"fantasy_data_id\":21020,\"years_exp\":1,\"hashtag\":\"#DeandreBaker-NFL-KC-27\",\"search_first_name\":\"deandre\",\"rotowire_id\":13475,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1636,\"age\":23,\"full_name\":\"Deandre Baker\",\"sportradar_id\":\"02d1b3c3-f292-4174-89fa-9ecc6286adb0\",\"pandascore_id\":null,\"yahoo_id\":31862,\"last_name\":\"Baker\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Miami Northwestern (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":\"2020-07-27\",\"number\":27,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'11\\\"\",\"search_full_name\":\"deandrebaker\",\"birth_date\":\"1997-09-04\",\"espn_id\":3915163},\"4180\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033941\",\"first_name\":\"Rayshawn\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604435444628,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":\"FS\",\"player_id\":\"4180\",\"birth_city\":null,\"fantasy_data_id\":19026,\"years_exp\":3,\"hashtag\":\"#RayshawnJenkins-NFL-LAC-23\",\"search_first_name\":\"rayshawn\",\"rotowire_id\":11994,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1185,\"age\":26,\"full_name\":\"Rayshawn Jenkins\",\"sportradar_id\":\"18f174c9-a956-4c14-bd23-9e799fef6dc7\",\"pandascore_id\":null,\"yahoo_id\":30226,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Admiral Farragut Academy (FL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rayshawnjenkins\",\"birth_date\":\"1994-01-25\",\"espn_id\":2969961},\"1657\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030010\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603935930226,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"copeland\",\"depth_chart_position\":null,\"player_id\":\"1657\",\"birth_city\":null,\"fantasy_data_id\":15423,\"years_exp\":7,\"hashtag\":\"#BrandonCopeland-NFL-NE-52\",\"search_first_name\":\"brandon\",\"rotowire_id\":9806,\"rotoworld_id\":null,\"active\":true,\"search_rank\":758,\"age\":29,\"full_name\":\"Brandon Copeland\",\"sportradar_id\":\"b6d2274d-87cf-4427-bddf-ee8a1b4ea652\",\"pandascore_id\":null,\"yahoo_id\":27259,\"last_name\":\"Copeland\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Pennsylvania\",\"high_school\":\"Gilman School (MD)\",\"depth_chart_order\":null,\"stats_id\":501339,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"263\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brandoncopeland\",\"birth_date\":\"1991-07-02\",\"espn_id\":16393},\"3029\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"S\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"green\",\"depth_chart_position\":null,\"player_id\":\"3029\",\"birth_city\":null,\"fantasy_data_id\":17716,\"years_exp\":null,\"hashtag\":\"#SGreen-NFL-FA-49\",\"search_first_name\":\"s\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"S Green\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Green\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"sgreen\",\"birth_date\":null,\"espn_id\":3933623},\"3208\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032411\",\"first_name\":\"Kenneth\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1597845927646,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dixon\",\"depth_chart_position\":\"RB\",\"player_id\":\"3208\",\"birth_city\":null,\"fantasy_data_id\":17969,\"years_exp\":4,\"hashtag\":\"#KennethDixon-NFL-FA-0\",\"search_first_name\":\"kenneth\",\"rotowire_id\":10989,\"rotoworld_id\":11284,\"active\":true,\"search_rank\":969,\"age\":26,\"full_name\":\"Kenneth Dixon\",\"sportradar_id\":\"997525cb-5d0d-4f3b-bd56-7488b62627ec\",\"pandascore_id\":null,\"yahoo_id\":29368,\"last_name\":\"Dixon\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":13,\"stats_id\":693062,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"5'10\\\"\",\"search_full_name\":\"kennethdixon\",\"birth_date\":\"1994-01-21\",\"espn_id\":2971888},\"6006\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035278\",\"first_name\":\"Byron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603320640501,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cowart\",\"depth_chart_position\":\"DT\",\"player_id\":\"6006\",\"birth_city\":null,\"fantasy_data_id\":21013,\"years_exp\":1,\"hashtag\":\"#ByronCowart-NFL-NE-99\",\"search_first_name\":\"byron\",\"rotowire_id\":13753,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1634,\"age\":24,\"full_name\":\"Byron Cowart\",\"sportradar_id\":\"3fa97e08-13d9-47a8-b155-39f975964d47\",\"pandascore_id\":null,\"yahoo_id\":31991,\"last_name\":\"Cowart\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Maryland\",\"high_school\":\"Armwood (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"byroncowart\",\"birth_date\":\"1996-05-20\",\"espn_id\":3916922},\"2506\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"2506\",\"birth_city\":null,\"fantasy_data_id\":16965,\"years_exp\":5,\"hashtag\":\"#JoshRobinson-NFL-FA-34\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":10578,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Robinson\",\"sportradar_id\":\"101d268b-9b66-44cd-80a3-2dcc341bdd7b\",\"pandascore_id\":null,\"yahoo_id\":28593,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"Franklinton\",\"depth_chart_order\":null,\"stats_id\":607390,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"5'8\\\"\",\"search_full_name\":\"joshrobinson\",\"birth_date\":\"1992-08-24\",\"espn_id\":2577419},\"5154\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034487\",\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606436760872,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"sherfield\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5154\",\"birth_city\":null,\"fantasy_data_id\":20081,\"years_exp\":2,\"hashtag\":\"#TrentSherfield-NFL-ARI-16\",\"search_first_name\":\"trent\",\"rotowire_id\":13061,\"rotoworld_id\":13513,\"active\":true,\"search_rank\":382,\"age\":24,\"full_name\":\"Trent Sherfield\",\"sportradar_id\":\"18ccb826-5584-4f6a-8434-cf9a3b927b0f\",\"pandascore_id\":null,\"yahoo_id\":31320,\"last_name\":\"Sherfield\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Danville (IL)\",\"depth_chart_order\":2,\"stats_id\":835861,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'1\\\"\",\"search_full_name\":\"trentsherfield\",\"birth_date\":\"1996-02-25\",\"espn_id\":3122168},\"415\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Earl\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bennett\",\"depth_chart_position\":null,\"player_id\":\"415\",\"birth_city\":null,\"fantasy_data_id\":8967,\"years_exp\":6,\"hashtag\":\"#EarlBennett-NFL-FA-80\",\"search_first_name\":\"earl\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Earl Bennett\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Bennett\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"earlbennett\",\"birth_date\":\"1987-03-23\",\"espn_id\":null},\"3515\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032653\",\"first_name\":\"KJ\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1535397649384,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maye\",\"depth_chart_position\":null,\"player_id\":\"3515\",\"birth_city\":null,\"fantasy_data_id\":18281,\"years_exp\":4,\"hashtag\":\"#KJMaye-NFL-FA-16\",\"search_first_name\":\"kj\",\"rotowire_id\":11588,\"rotoworld_id\":11536,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"KJ Maye\",\"sportradar_id\":\"3d61b215-f068-4cca-bbe2-cea9d1ba711f\",\"pandascore_id\":null,\"yahoo_id\":29861,\"last_name\":\"Maye\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651628,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"5'8\\\"\",\"search_full_name\":\"kjmaye\",\"birth_date\":\"1994-02-25\",\"espn_id\":2970712},\"4169\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033464\",\"first_name\":\"Jehu\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599341157695,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chesson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4169\",\"birth_city\":null,\"fantasy_data_id\":19015,\"years_exp\":3,\"hashtag\":\"#JehuChesson-NFL-FA-0\",\"search_first_name\":\"jehu\",\"rotowire_id\":11850,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1180,\"age\":27,\"full_name\":\"Jehu Chesson\",\"sportradar_id\":\"3d655ae8-d510-47d4-b5ab-936cd6a492f1\",\"pandascore_id\":null,\"yahoo_id\":30252,\"last_name\":\"Chesson\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":10,\"stats_id\":696122,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jehuchesson\",\"birth_date\":\"1993-01-29\",\"espn_id\":2977631},\"2739\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Desmond\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"2739\",\"birth_city\":null,\"fantasy_data_id\":17207,\"years_exp\":0,\"hashtag\":\"#DesmondCooper-NFL-FA-39\",\"search_first_name\":\"desmond\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Desmond Cooper\",\"sportradar_id\":\"be5b9e5e-0785-422a-b6eb-f6ecc6f8af4f\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'1\\\"\",\"search_full_name\":\"desmondcooper\",\"birth_date\":\"1993-08-31\",\"espn_id\":2511514},\"857\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1549394703508,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"yates\",\"depth_chart_position\":null,\"player_id\":\"857\",\"birth_city\":null,\"fantasy_data_id\":12956,\"years_exp\":9,\"hashtag\":\"#TJYates-NFL-FA-2\",\"search_first_name\":\"tj\",\"rotowire_id\":7485,\"rotoworld_id\":6603,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"T.J. Yates\",\"sportradar_id\":\"20170818-32ab-4892-987e-ea75efcd8c4f\",\"pandascore_id\":null,\"yahoo_id\":24939,\"last_name\":\"Yates\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Pope (GA)\",\"depth_chart_order\":null,\"stats_id\":323383,\"injury_start_date\":null,\"number\":2,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tjyates\",\"birth_date\":\"1987-05-28\",\"espn_id\":14114},\"5738\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"okonye\",\"depth_chart_position\":null,\"player_id\":\"5738\",\"birth_city\":null,\"fantasy_data_id\":20621,\"years_exp\":2,\"hashtag\":\"#JoshOkonye-NFL-FA-34\",\"search_first_name\":\"josh\",\"rotowire_id\":13310,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Josh Okonye\",\"sportradar_id\":\"dd97eee4-e35c-4b29-b4f5-0a6fc3f0799e\",\"pandascore_id\":null,\"yahoo_id\":31706,\"last_name\":\"Okonye\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshokonye\",\"birth_date\":\"1995-06-05\",\"espn_id\":3039769},\"3554\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reeves\",\"depth_chart_position\":null,\"player_id\":\"3554\",\"birth_city\":null,\"fantasy_data_id\":18327,\"years_exp\":0,\"hashtag\":\"#DavidReeves-NFL-FA-41\",\"search_first_name\":\"david\",\"rotowire_id\":11615,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Reeves\",\"sportradar_id\":\"45f660c6-2a94-41de-a795-450d9969a40f\",\"pandascore_id\":null,\"yahoo_id\":29493,\"last_name\":\"Reeves\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"davidreeves\",\"birth_date\":\"1992-12-15\",\"espn_id\":null},\"1251\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Alameda\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taamu\",\"depth_chart_position\":null,\"player_id\":\"1251\",\"birth_city\":null,\"fantasy_data_id\":14623,\"years_exp\":3,\"hashtag\":\"#AlamedaTaamu-NFL-FA-66\",\"search_first_name\":\"alameda\",\"rotowire_id\":8157,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Alameda Ta'amu\",\"sportradar_id\":\"016d1bcc-040b-48c2-af03-f699b8b7a0a2\",\"pandascore_id\":null,\"yahoo_id\":25819,\"last_name\":\"Ta'amu\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"348\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alamedataamu\",\"birth_date\":\"1990-08-23\",\"espn_id\":15101},\"5220\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034614\",\"first_name\":\"Godwin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1564973107180,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"igwebuike\",\"depth_chart_position\":null,\"player_id\":\"5220\",\"birth_city\":null,\"fantasy_data_id\":20191,\"years_exp\":2,\"hashtag\":\"#GodwinIgwebuike-NFL-FA-23\",\"search_first_name\":\"godwin\",\"rotowire_id\":12725,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Godwin Igwebuike\",\"sportradar_id\":\"be8e5962-f2d9-4316-9fdf-212a95dbb590\",\"pandascore_id\":null,\"yahoo_id\":31258,\"last_name\":\"Igwebuike\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742451,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"godwinigwebuike\",\"birth_date\":\"1994-09-10\",\"espn_id\":3045238},\"1694\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029984\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1605652825707,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"1694\",\"birth_city\":null,\"fantasy_data_id\":15559,\"years_exp\":7,\"hashtag\":\"#RyanAllen-NFL-TEN-8\",\"search_first_name\":\"ryan\",\"rotowire_id\":8903,\"rotoworld_id\":8999,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Ryan Allen\",\"sportradar_id\":\"b1a2aa6e-7104-4e35-910d-fbefddd74a78\",\"pandascore_id\":null,\"yahoo_id\":27219,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"West Salem (OR)\",\"depth_chart_order\":null,\"stats_id\":459208,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryanallen\",\"birth_date\":\"1990-02-28\",\"espn_id\":16382},\"2993\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031957\",\"first_name\":\"Rakeem\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1584645033900,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nunezroches\",\"depth_chart_position\":\"NT\",\"player_id\":\"2993\",\"birth_city\":null,\"fantasy_data_id\":17512,\"years_exp\":5,\"hashtag\":\"#RakeemNunezRoches-NFL-TB-56\",\"search_first_name\":\"rakeem\",\"rotowire_id\":10339,\"rotoworld_id\":null,\"active\":true,\"search_rank\":940,\"age\":27,\"full_name\":\"Rakeem Nunez-Roches\",\"sportradar_id\":\"d6ce0b64-9526-4983-8c3c-7f14f2918f8e\",\"pandascore_id\":null,\"yahoo_id\":28605,\"last_name\":\"Nunez-Roches\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":\"Central (AL)\",\"depth_chart_order\":2,\"stats_id\":602792,\"injury_start_date\":null,\"number\":56,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'2\\\"\",\"search_full_name\":\"rakeemnunezroches\",\"birth_date\":\"1993-07-03\",\"espn_id\":2575453},\"4668\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033704\",\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599097537645,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"onwualu\",\"depth_chart_position\":null,\"player_id\":\"4668\",\"birth_city\":null,\"fantasy_data_id\":19567,\"years_exp\":3,\"hashtag\":\"#JamesOnwualu-NFL-LV-58\",\"search_first_name\":\"james\",\"rotowire_id\":12356,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1278,\"age\":26,\"full_name\":\"James Onwualu\",\"sportradar_id\":\"4ca6d7fd-43f7-4c0d-8992-aa28d91710e6\",\"pandascore_id\":null,\"yahoo_id\":30428,\"last_name\":\"Onwualu\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Cretin-Derham Hall (MN)\",\"depth_chart_order\":null,\"stats_id\":733636,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jamesonwualu\",\"birth_date\":\"1994-09-04\",\"espn_id\":3052889},\"3922\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Montario\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hunter\",\"depth_chart_position\":null,\"player_id\":\"3922\",\"birth_city\":null,\"fantasy_data_id\":18749,\"years_exp\":0,\"hashtag\":\"#MontarioHunter-NFL-FA-83\",\"search_first_name\":\"montario\",\"rotowire_id\":11620,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Montario Hunter\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30049,\"last_name\":\"Hunter\",\"metadata\":null,\"college\":\"Elizabeth City State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":845001,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"montariohunter\",\"birth_date\":\"1991-11-23\",\"espn_id\":2973769},\"5707\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tyrin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"holloway\",\"depth_chart_position\":null,\"player_id\":\"5707\",\"birth_city\":null,\"fantasy_data_id\":20620,\"years_exp\":0,\"hashtag\":\"#TyrinHolloway-NFL-CHI-31\",\"search_first_name\":\"tyrin\",\"rotowire_id\":13311,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tyrin Holloway\",\"sportradar_id\":\"5b652a55-0431-41e8-838c-db903463abee\",\"pandascore_id\":null,\"yahoo_id\":31713,\"last_name\":\"Holloway\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tyrinholloway\",\"birth_date\":null,\"espn_id\":3046663},\"1297\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marshall\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcfadden\",\"depth_chart_position\":null,\"player_id\":\"1297\",\"birth_city\":null,\"fantasy_data_id\":14765,\"years_exp\":1,\"hashtag\":\"#MarshallMcFadden-NFL-FA-54\",\"search_first_name\":\"marshall\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Marshall McFadden\",\"sportradar_id\":\"f2619e8d-82a1-4042-831b-a7035dfa71fb\",\"pandascore_id\":null,\"yahoo_id\":25695,\"last_name\":\"McFadden\",\"metadata\":null,\"college\":\"South Carolina State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marshallmcfadden\",\"birth_date\":\"1986-08-04\",\"espn_id\":14865},\"3019\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"3019\",\"birth_city\":null,\"fantasy_data_id\":17571,\"years_exp\":0,\"hashtag\":\"#JamesButler-NFL-FA-13\",\"search_first_name\":\"james\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"James Butler\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"Louisiana-Lafayette\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":544783,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jamesbutler\",\"birth_date\":null,\"espn_id\":null},\"4108\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Carlos\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1546976730040,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"henderson\",\"depth_chart_position\":null,\"player_id\":\"4108\",\"birth_city\":null,\"fantasy_data_id\":18954,\"years_exp\":3,\"hashtag\":\"#CarlosHenderson-NFL-FA-11\",\"search_first_name\":\"carlos\",\"rotowire_id\":11859,\"rotoworld_id\":12202,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Carlos Henderson\",\"sportradar_id\":\"7f42a2c7-0728-49f7-b8e2-d08b1a49b886\",\"pandascore_id\":null,\"yahoo_id\":30195,\"last_name\":\"Henderson\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733840,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"carloshenderson\",\"birth_date\":\"1994-12-19\",\"espn_id\":3040561},\"4880\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sullivan\",\"depth_chart_position\":null,\"player_id\":\"4880\",\"birth_city\":null,\"fantasy_data_id\":19780,\"years_exp\":0,\"hashtag\":\"#MikeSullivan-NFL-FA-0\",\"search_first_name\":\"mike\",\"rotowire_id\":null,\"rotoworld_id\":9305,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mike Sullivan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sullivan\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"mikesullivan\",\"birth_date\":null,\"espn_id\":null},\"2063\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030957\",\"first_name\":\"Casey\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1606151113567,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kreiter\",\"depth_chart_position\":null,\"player_id\":\"2063\",\"birth_city\":null,\"fantasy_data_id\":16365,\"years_exp\":6,\"hashtag\":\"#CaseyKreiter-NFL-NYG-58\",\"search_first_name\":\"casey\",\"rotowire_id\":11214,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Casey Kreiter\",\"sportradar_id\":\"d86d53af-2eb8-425c-90ab-851122cc633f\",\"pandascore_id\":null,\"yahoo_id\":28130,\"last_name\":\"Kreiter\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Central (IA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'1\\\"\",\"search_full_name\":\"caseykreiter\",\"birth_date\":\"1990-08-13\",\"espn_id\":17304},\"6712\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035701\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1577766327522,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"simms\",\"depth_chart_position\":\"SWR\",\"player_id\":\"6712\",\"birth_city\":null,\"fantasy_data_id\":21636,\"years_exp\":1,\"hashtag\":\"#MarcusSimms-NFL-FA-81\",\"search_first_name\":\"marcus\",\"rotowire_id\":14329,\"rotoworld_id\":14804,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Marcus Simms\",\"sportradar_id\":\"b615da69-4275-4aa7-ae6b-8a9f528254fb\",\"pandascore_id\":null,\"yahoo_id\":32624,\"last_name\":\"Simms\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":910805,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcussimms\",\"birth_date\":\"1997-12-18\",\"espn_id\":4039244},\"3151\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cleyon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"laing\",\"depth_chart_position\":null,\"player_id\":\"3151\",\"birth_city\":null,\"fantasy_data_id\":17907,\"years_exp\":1,\"hashtag\":\"#CleyonLaing-NFL-FA-72\",\"search_first_name\":\"cleyon\",\"rotowire_id\":10953,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cleyon Laing\",\"sportradar_id\":\"68b8ac59-78a7-4c08-ad17-652690029606\",\"pandascore_id\":null,\"yahoo_id\":29221,\"last_name\":\"Laing\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'4\\\"\",\"search_full_name\":\"cleyonlaing\",\"birth_date\":\"1990-11-25\",\"espn_id\":2309552},\"1611\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"campbell\",\"depth_chart_position\":null,\"player_id\":\"1611\",\"birth_city\":null,\"fantasy_data_id\":15288,\"years_exp\":1,\"hashtag\":\"#JordanCampbell-NFL-FA-38\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jordan Campbell\",\"sportradar_id\":\"1f974e01-2521-4bd7-889d-f64ea079ccf3\",\"pandascore_id\":null,\"yahoo_id\":27162,\"last_name\":\"Campbell\",\"metadata\":null,\"college\":\"New Mexico Highlands\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jordancampbell\",\"birth_date\":\"1988-06-29\",\"espn_id\":16317},\"1924\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031365\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1584465914517,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shazier\",\"depth_chart_position\":null,\"player_id\":\"1924\",\"birth_city\":null,\"fantasy_data_id\":16157,\"years_exp\":6,\"hashtag\":\"#RyanShazier-NFL-FA-50\",\"search_first_name\":\"ryan\",\"rotowire_id\":9369,\"rotoworld_id\":9430,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ryan Shazier\",\"sportradar_id\":\"8a372789-3c74-406d-b3de-d2ee387b1f22\",\"pandascore_id\":null,\"yahoo_id\":27543,\"last_name\":\"Shazier\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Plantation (FL)\",\"depth_chart_order\":null,\"stats_id\":593521,\"injury_start_date\":null,\"number\":50,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ryanshazier\",\"birth_date\":\"1992-09-06\",\"espn_id\":16727},\"541\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Damian\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"541\",\"birth_city\":null,\"fantasy_data_id\":11097,\"years_exp\":6,\"hashtag\":\"#DamianWilliams-NFL-FA-10\",\"search_first_name\":\"damian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Damian Williams\",\"sportradar_id\":\"763abcf1-e18a-4437-ad3d-9ba0b7e99c69\",\"pandascore_id\":null,\"yahoo_id\":24052,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"USC\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":333935,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'1\\\"\",\"search_full_name\":\"damianwilliams\",\"birth_date\":\"1988-05-26\",\"espn_id\":13219},\"4513\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033494\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1535991425937,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelsey\",\"depth_chart_position\":null,\"player_id\":\"4513\",\"birth_city\":null,\"fantasy_data_id\":19385,\"years_exp\":3,\"hashtag\":\"#KeithKelsey-NFL-FA-55\",\"search_first_name\":\"keith\",\"rotowire_id\":11974,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Keith Kelsey\",\"sportradar_id\":\"e7488114-9a87-41e3-bf4f-85923ddb106f\",\"pandascore_id\":null,\"yahoo_id\":30387,\"last_name\":\"Kelsey\",\"metadata\":null,\"college\":\"Louisville\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"237\",\"height\":\"6'0\\\"\",\"search_full_name\":\"keithkelsey\",\"birth_date\":\"1995-03-17\",\"espn_id\":3040065},\"2602\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031972\",\"first_name\":\"Darius\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599268254740,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jennings\",\"depth_chart_position\":\"RWR\",\"player_id\":\"2602\",\"birth_city\":null,\"fantasy_data_id\":17070,\"years_exp\":5,\"hashtag\":\"#DariusJennings-NFL-FA-11\",\"search_first_name\":\"darius\",\"rotowire_id\":10718,\"rotoworld_id\":null,\"active\":true,\"search_rank\":913,\"age\":28,\"full_name\":\"Darius Jennings\",\"sportradar_id\":\"865d8df9-06ec-40c3-8c71-637f9fd0bcbf\",\"pandascore_id\":null,\"yahoo_id\":29038,\"last_name\":\"Jennings\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Gilman School (MD)\",\"depth_chart_order\":7,\"stats_id\":605784,\"injury_start_date\":null,\"number\":11,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dariusjennings\",\"birth_date\":\"1992-06-28\",\"espn_id\":2577808},\"2790\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nigel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"king\",\"depth_chart_position\":null,\"player_id\":\"2790\",\"birth_city\":null,\"fantasy_data_id\":17258,\"years_exp\":0,\"hashtag\":\"#NigelKing-NFL-FA-4\",\"search_first_name\":\"nigel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Nigel King\",\"sportradar_id\":\"be7b70b4-dca3-432b-ae05-8906e33d7e6e\",\"pandascore_id\":null,\"yahoo_id\":28910,\"last_name\":\"King\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":592458,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"nigelking\",\"birth_date\":\"1992-10-09\",\"espn_id\":2577080},\"3163\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033106\",\"first_name\":\"Jared\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606195850514,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"goff\",\"depth_chart_position\":\"QB\",\"player_id\":\"3163\",\"birth_city\":null,\"fantasy_data_id\":17922,\"years_exp\":4,\"hashtag\":\"#JaredGoff-NFL-LAR-16\",\"search_first_name\":\"jared\",\"rotowire_id\":10729,\"rotoworld_id\":11205,\"active\":true,\"search_rank\":128,\"age\":26,\"full_name\":\"Jared Goff\",\"sportradar_id\":\"aba8f925-ffbf-4654-bfa7-a25d3d237494\",\"pandascore_id\":null,\"yahoo_id\":29235,\"last_name\":\"Goff\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Marin Catholic (CA)\",\"depth_chart_order\":1,\"stats_id\":727837,\"injury_start_date\":null,\"number\":16,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jaredgoff\",\"birth_date\":\"1994-10-14\",\"espn_id\":3046779},\"1400\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"staples\",\"depth_chart_position\":null,\"player_id\":\"1400\",\"birth_city\":null,\"fantasy_data_id\":14942,\"years_exp\":7,\"hashtag\":\"#JustinStaples-NFL-FA-57\",\"search_first_name\":\"justin\",\"rotowire_id\":9568,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Justin Staples\",\"sportradar_id\":\"4281310c-207d-4607-b65e-443315dddd60\",\"pandascore_id\":null,\"yahoo_id\":27158,\"last_name\":\"Staples\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Lakewood (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'4\\\"\",\"search_full_name\":\"justinstaples\",\"birth_date\":\"1989-12-10\",\"espn_id\":16328},\"349\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ropati\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pitoitua\",\"depth_chart_position\":null,\"player_id\":\"349\",\"birth_city\":null,\"fantasy_data_id\":8410,\"years_exp\":12,\"hashtag\":\"#RopatiPitoitua-NFL-FA-92\",\"search_first_name\":\"ropati\",\"rotowire_id\":7634,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Ropati Pitoitua\",\"sportradar_id\":\"79bc1080-02f9-4e7d-b6e4-55187694e41e\",\"pandascore_id\":null,\"yahoo_id\":9153,\"last_name\":\"Pitoitua\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Clover Park (WA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'8\\\"\",\"search_full_name\":\"ropatipitoitua\",\"birth_date\":\"1985-04-06\",\"espn_id\":11778},\"331\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0022942\",\"first_name\":\"Philip\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606524928207,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rivers\",\"depth_chart_position\":\"QB\",\"player_id\":\"331\",\"birth_city\":null,\"fantasy_data_id\":8244,\"years_exp\":16,\"hashtag\":\"#PhilipRivers-NFL-IND-17\",\"search_first_name\":\"philip\",\"rotowire_id\":3766,\"rotoworld_id\":1813,\"active\":true,\"search_rank\":150,\"age\":38,\"full_name\":\"Philip Rivers\",\"sportradar_id\":\"e47706c7-e14d-41fb-b13b-83a835a1f3bc\",\"pandascore_id\":null,\"yahoo_id\":6763,\"last_name\":\"Rivers\",\"metadata\":null,\"college\":\"North Carolina State\",\"high_school\":\"Athens (AL)\",\"depth_chart_order\":1,\"stats_id\":246054,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'5\\\"\",\"search_full_name\":\"philiprivers\",\"birth_date\":\"1981-12-08\",\"espn_id\":5529},\"2481\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Max\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"valles\",\"depth_chart_position\":null,\"player_id\":\"2481\",\"birth_city\":null,\"fantasy_data_id\":16939,\"years_exp\":5,\"hashtag\":\"#MaxValles-NFL-FA-54\",\"search_first_name\":\"max\",\"rotowire_id\":10365,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Max Valles\",\"sportradar_id\":\"8ab4dd5c-7ace-4819-80b7-030de97ab88f\",\"pandascore_id\":null,\"yahoo_id\":28567,\"last_name\":\"Valles\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"St. Joseph\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":54,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'5\\\"\",\"search_full_name\":\"maxvalles\",\"birth_date\":\"1994-08-05\",\"espn_id\":3048702},\"3628\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moala\",\"depth_chart_position\":null,\"player_id\":\"3628\",\"birth_city\":null,\"fantasy_data_id\":18415,\"years_exp\":3,\"hashtag\":\"#DavidMoala-NFL-FA-79\",\"search_first_name\":\"david\",\"rotowire_id\":11423,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Moala\",\"sportradar_id\":\"eee56782-7a13-4064-b0c7-551e5c1fdc97\",\"pandascore_id\":null,\"yahoo_id\":29624,\"last_name\":\"Moala\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidmoala\",\"birth_date\":\"1992-12-30\",\"espn_id\":2576842},\"3674\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sefon\",\"depth_chart_position\":null,\"player_id\":\"3674\",\"birth_city\":null,\"fantasy_data_id\":18474,\"years_exp\":0,\"hashtag\":\"#JordanSefon-NFL-FA-39\",\"search_first_name\":\"jordan\",\"rotowire_id\":11435,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Sefon\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29660,\"last_name\":\"Sefon\",\"metadata\":null,\"college\":\"St. Cloud State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"198\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jordansefon\",\"birth_date\":\"1993-07-25\",\"espn_id\":4011310},\"6733\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dejuan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"neal\",\"depth_chart_position\":null,\"player_id\":\"6733\",\"birth_city\":null,\"fantasy_data_id\":21655,\"years_exp\":1,\"hashtag\":\"#DejuanNeal-NFL-FA-26\",\"search_first_name\":\"dejuan\",\"rotowire_id\":14342,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dejuan Neal\",\"sportradar_id\":\"f59cb958-fb36-4f97-8f08-d4c83fca9864\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Neal\",\"metadata\":null,\"college\":\"Shepherd\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"dejuanneal\",\"birth_date\":null,\"espn_id\":3957473},\"3505\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dom\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1533311411740,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"3505\",\"birth_city\":null,\"fantasy_data_id\":18271,\"years_exp\":4,\"hashtag\":\"#DomWilliams-NFL-FA-80\",\"search_first_name\":\"dom\",\"rotowire_id\":11092,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Dom Williams\",\"sportradar_id\":\"a32ee92b-3d89-4218-b613-12273304d528\",\"pandascore_id\":null,\"yahoo_id\":29533,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608147,\"injury_start_date\":null,\"number\":80,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'2\\\"\",\"search_full_name\":\"domwilliams\",\"birth_date\":\"1990-09-02\",\"espn_id\":2578446},\"2787\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"porter\",\"depth_chart_position\":null,\"player_id\":\"2787\",\"birth_city\":null,\"fantasy_data_id\":17255,\"years_exp\":0,\"hashtag\":\"#DavidPorter-NFL-FA-19\",\"search_first_name\":\"david\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"David Porter\",\"sportradar_id\":\"39b31560-bb63-439f-8612-71ff25db8899\",\"pandascore_id\":null,\"yahoo_id\":29107,\"last_name\":\"Porter\",\"metadata\":null,\"college\":\"TCU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":601101,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidporter\",\"birth_date\":\"1992-12-21\",\"espn_id\":2575916},\"5588\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034313\",\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1599406559883,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"butler\",\"depth_chart_position\":null,\"player_id\":\"5588\",\"birth_city\":null,\"fantasy_data_id\":20589,\"years_exp\":2,\"hashtag\":\"#PaulButler-NFL-FA-0\",\"search_first_name\":\"paul\",\"rotowire_id\":13169,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Paul Butler\",\"sportradar_id\":\"47dcb702-edbb-4bfe-80f7-0390a1e2be77\",\"pandascore_id\":null,\"yahoo_id\":31515,\"last_name\":\"Butler\",\"metadata\":null,\"college\":\"California (PA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":1116182,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"paulbutler\",\"birth_date\":\"1993-04-26\",\"espn_id\":4337702},\"3943\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Wade\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hansen\",\"depth_chart_position\":\"LT\",\"player_id\":\"3943\",\"birth_city\":null,\"fantasy_data_id\":18776,\"years_exp\":0,\"hashtag\":\"#WadeHansen-NFL-FA-69\",\"search_first_name\":\"wade\",\"rotowire_id\":11670,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Wade Hansen\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30073,\"last_name\":\"Hansen\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"282\",\"height\":\"6'5\\\"\",\"search_full_name\":\"wadehansen\",\"birth_date\":\"1993-09-08\",\"espn_id\":null},\"2514\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kennard\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"backman\",\"depth_chart_position\":null,\"player_id\":\"2514\",\"birth_city\":null,\"fantasy_data_id\":16973,\"years_exp\":5,\"hashtag\":\"#KennardBackman-NFL-FA-86\",\"search_first_name\":\"kennard\",\"rotowire_id\":10488,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kennard Backman\",\"sportradar_id\":\"04712bc5-f4c1-4c9b-9c37-9ff1b06debd5\",\"pandascore_id\":null,\"yahoo_id\":28601,\"last_name\":\"Backman\",\"metadata\":null,\"college\":\"Alabama-Birmingham\",\"high_school\":\"Mableton Whitefield (GA)\",\"depth_chart_order\":null,\"stats_id\":609925,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"kennardbackman\",\"birth_date\":\"1993-02-26\",\"espn_id\":2582311},\"6591\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035553\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605644424892,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"TE\",\"player_id\":\"6591\",\"birth_city\":null,\"fantasy_data_id\":21551,\"years_exp\":1,\"hashtag\":\"#CharlesJones-NFL-PIT-85\",\"search_first_name\":\"charles\",\"rotowire_id\":14248,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1760,\"age\":24,\"full_name\":\"Charles Jones\",\"sportradar_id\":\"7b2e40ac-417d-4a86-b239-66bbe91c0bfc\",\"pandascore_id\":null,\"yahoo_id\":32565,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Tulane\",\"high_school\":\"St. Augustine (LA)\",\"depth_chart_order\":5,\"stats_id\":821736,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PIT\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"charlesjones\",\"birth_date\":\"1996-08-05\",\"espn_id\":3126263},\"540\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0027705\",\"first_name\":\"Alterraun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1552963514963,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"verner\",\"depth_chart_position\":null,\"player_id\":\"540\",\"birth_city\":null,\"fantasy_data_id\":11096,\"years_exp\":10,\"hashtag\":\"#AlterraunVerner-NFL-FA-42\",\"search_first_name\":\"alterraun\",\"rotowire_id\":6635,\"rotoworld_id\":5895,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Alterraun Verner\",\"sportradar_id\":\"06ed4b06-29d4-49a4-8bba-1bb63184255a\",\"pandascore_id\":null,\"yahoo_id\":24079,\"last_name\":\"Verner\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Mayfair (CA)\",\"depth_chart_order\":null,\"stats_id\":331949,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"alterraunverner\",\"birth_date\":\"1988-12-13\",\"espn_id\":13478},\"1822\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031417\",\"first_name\":\"Ja'Wuan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596473424147,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"james\",\"depth_chart_position\":null,\"player_id\":\"1822\",\"birth_city\":null,\"fantasy_data_id\":16015,\"years_exp\":6,\"hashtag\":\"#JaWuanJames-NFL-DEN-70\",\"search_first_name\":\"jawuan\",\"rotowire_id\":9423,\"rotoworld_id\":9537,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ja'Wuan James\",\"sportradar_id\":\"ec2895a1-4907-4a18-a526-f2db4b663c3e\",\"pandascore_id\":null,\"yahoo_id\":27547,\"last_name\":\"James\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Tennessee\",\"high_school\":\"North Gwinnett (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":70,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jawuanjames\",\"birth_date\":\"1992-06-03\",\"espn_id\":16722},\"7461\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Austrian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1596208216557,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robinson\",\"depth_chart_position\":null,\"player_id\":\"7461\",\"birth_city\":null,\"fantasy_data_id\":22438,\"years_exp\":0,\"hashtag\":\"#AustrianRobinson-NFL-FA-0\",\"search_first_name\":\"austrian\",\"rotowire_id\":14973,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Austrian Robinson\",\"sportradar_id\":\"186ba5d0-8882-4c8a-bc5c-149785c01bf2\",\"pandascore_id\":null,\"yahoo_id\":33152,\"last_name\":\"Robinson\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austrianrobinson\",\"birth_date\":\"1996-03-12\",\"espn_id\":null},\"4191\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033571\",\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1604792110200,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"milano\",\"depth_chart_position\":null,\"player_id\":\"4191\",\"birth_city\":null,\"fantasy_data_id\":19037,\"years_exp\":3,\"hashtag\":\"#MattMilano-NFL-BUF-58\",\"search_first_name\":\"matt\",\"rotowire_id\":11978,\"rotoworld_id\":12375,\"active\":true,\"search_rank\":1189,\"age\":26,\"full_name\":\"Matt Milano\",\"sportradar_id\":\"825fe252-36b9-48d9-a845-29114c5aae8a\",\"pandascore_id\":null,\"yahoo_id\":30276,\"last_name\":\"Milano\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Dr. Phillips (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'0\\\"\",\"search_full_name\":\"mattmilano\",\"birth_date\":\"1994-07-28\",\"espn_id\":3046287},\"2615\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcneil\",\"depth_chart_position\":null,\"player_id\":\"2615\",\"birth_city\":null,\"fantasy_data_id\":17083,\"years_exp\":2,\"hashtag\":\"#DougMcNeil-NFL-FA-19\",\"search_first_name\":\"doug\",\"rotowire_id\":10166,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Doug McNeil\",\"sportradar_id\":\"f9aa7f61-cbca-4e9f-afb1-a058a0706789\",\"pandascore_id\":null,\"yahoo_id\":28359,\"last_name\":\"McNeil\",\"metadata\":null,\"college\":\"Bowie State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":561330,\"injury_start_date\":null,\"number\":19,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dougmcneil\",\"birth_date\":\"1988-07-22\",\"espn_id\":2273426},\"3407\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Beau\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1532128801452,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sandland\",\"depth_chart_position\":null,\"player_id\":\"3407\",\"birth_city\":null,\"fantasy_data_id\":18168,\"years_exp\":3,\"hashtag\":\"#BeauSandland-NFL-FA-81\",\"search_first_name\":\"beau\",\"rotowire_id\":10967,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Beau Sandland\",\"sportradar_id\":\"ca87d5f8-64c5-4a80-b785-05765e445826\",\"pandascore_id\":null,\"yahoo_id\":29486,\"last_name\":\"Sandland\",\"metadata\":null,\"college\":\"Montana State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":728150,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'4\\\"\",\"search_full_name\":\"beausandland\",\"birth_date\":\"1993-02-23\",\"espn_id\":3039705},\"5812\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dan\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccullerssanders\",\"depth_chart_position\":null,\"player_id\":\"5812\",\"birth_city\":null,\"fantasy_data_id\":20709,\"years_exp\":0,\"hashtag\":\"#DanMccullerssanders-NFL-FA-0\",\"search_first_name\":\"dan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Dan Mccullers-sanders\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Mccullers-sanders\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"danmccullerssanders\",\"birth_date\":\"1992-08-11\",\"espn_id\":null},\"285\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025489\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1556133044575,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robison\",\"depth_chart_position\":null,\"player_id\":\"285\",\"birth_city\":null,\"fantasy_data_id\":7202,\"years_exp\":13,\"hashtag\":\"#BrianRobison-NFL-FA-96\",\"search_first_name\":\"brian\",\"rotowire_id\":5319,\"rotoworld_id\":4350,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Brian Robison\",\"sportradar_id\":\"ac568889-d10d-4ccc-89a1-8e4233848086\",\"pandascore_id\":null,\"yahoo_id\":8356,\"last_name\":\"Robison\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Splendora (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"259\",\"height\":\"6'3\\\"\",\"search_full_name\":\"brianrobison\",\"birth_date\":\"1983-04-27\",\"espn_id\":10546},\"3516\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mitch\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathews\",\"depth_chart_position\":null,\"player_id\":\"3516\",\"birth_city\":null,\"fantasy_data_id\":18282,\"years_exp\":3,\"hashtag\":\"#MitchMathews-NFL-FA-85\",\"search_first_name\":\"mitch\",\"rotowire_id\":11210,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mitch Mathews\",\"sportradar_id\":\"63e397d3-a530-40fe-89e8-bfc27a65a4d7\",\"pandascore_id\":null,\"yahoo_id\":29883,\"last_name\":\"Mathews\",\"metadata\":null,\"college\":\"BYU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":507649,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"6'6\\\"\",\"search_full_name\":\"mitchmathews\",\"birth_date\":\"1991-04-15\",\"espn_id\":2474890},\"1453\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029799\",\"first_name\":\"Lerentee\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1596315615017,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"1453\",\"birth_city\":null,\"fantasy_data_id\":15029,\"years_exp\":7,\"hashtag\":\"#LerenteeMcCray-NFL-JAX-55\",\"search_first_name\":\"lerentee\",\"rotowire_id\":8723,\"rotoworld_id\":null,\"active\":true,\"search_rank\":725,\"age\":30,\"full_name\":\"Lerentee McCray\",\"sportradar_id\":\"c9bbb2aa-f044-400b-9f09-5321604a3b79\",\"pandascore_id\":null,\"yahoo_id\":26887,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Dunnellon (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":55,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lerenteemccray\",\"birth_date\":\"1990-08-26\",\"espn_id\":16090},\"4057\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033882\",\"first_name\":\"Gareon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605281152692,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"conley\",\"depth_chart_position\":null,\"player_id\":\"4057\",\"birth_city\":null,\"fantasy_data_id\":18903,\"years_exp\":3,\"hashtag\":\"#GareonConley-NFL-HOU-22\",\"search_first_name\":\"gareon\",\"rotowire_id\":12011,\"rotoworld_id\":12225,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Gareon Conley\",\"sportradar_id\":\"96f646e2-0984-4092-8031-22d2bf9b620c\",\"pandascore_id\":null,\"yahoo_id\":30137,\"last_name\":\"Conley\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Massillon Washington (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"gareonconley\",\"birth_date\":\"1995-06-29\",\"espn_id\":3051391},\"5136\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034457\",\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606252253880,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"adams\",\"depth_chart_position\":\"RB\",\"player_id\":\"5136\",\"birth_city\":null,\"fantasy_data_id\":20075,\"years_exp\":2,\"hashtag\":\"#JoshAdams-NFL-NYJ-36\",\"search_first_name\":\"josh\",\"rotowire_id\":12563,\"rotoworld_id\":13218,\"active\":true,\"search_rank\":417,\"age\":24,\"full_name\":\"Josh Adams\",\"sportradar_id\":\"23b17031-de21-412d-8182-5a4bca1049a1\",\"pandascore_id\":null,\"yahoo_id\":31567,\"last_name\":\"Adams\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Central Bucks South (PA)\",\"depth_chart_order\":3,\"stats_id\":884549,\"injury_start_date\":null,\"number\":36,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"joshadams\",\"birth_date\":\"1996-10-29\",\"espn_id\":3932420},\"3180\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032761\",\"first_name\":\"Robert\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1574811636740,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nkemdiche\",\"depth_chart_position\":\"NT\",\"player_id\":\"3180\",\"birth_city\":null,\"fantasy_data_id\":17941,\"years_exp\":4,\"hashtag\":\"#RobertNkemdiche-NFL-FA-60\",\"search_first_name\":\"robert\",\"rotowire_id\":11148,\"rotoworld_id\":11315,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Robert Nkemdiche\",\"sportradar_id\":\"60cc4395-be8e-441f-b6b2-7e74e15f2593\",\"pandascore_id\":null,\"yahoo_id\":29263,\"last_name\":\"Nkemdiche\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"294\",\"height\":\"6'3\\\"\",\"search_full_name\":\"robertnkemdiche\",\"birth_date\":\"1994-09-19\",\"espn_id\":3051886},\"3457\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032621\",\"first_name\":\"Rashawn\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1536344109572,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"3457\",\"birth_city\":null,\"fantasy_data_id\":18221,\"years_exp\":4,\"hashtag\":\"#RashawnScott-NFL-FA-87\",\"search_first_name\":\"rashawn\",\"rotowire_id\":11168,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Rashawn Scott\",\"sportradar_id\":\"f37cf560-f25b-4663-9b42-153476a37452\",\"pandascore_id\":null,\"yahoo_id\":29836,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":596422,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"6'1\\\"\",\"search_full_name\":\"rashawnscott\",\"birth_date\":\"1992-01-29\",\"espn_id\":2579623},\"7460\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605744643500,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"burt\",\"depth_chart_position\":\"TE\",\"player_id\":\"7460\",\"birth_city\":null,\"fantasy_data_id\":22437,\"years_exp\":0,\"hashtag\":\"#JakeBurt-NFL-NE-82\",\"search_first_name\":\"jake\",\"rotowire_id\":14930,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Jake Burt\",\"sportradar_id\":\"9d919856-fa8a-4f06-bd1c-89ebdaca1808\",\"pandascore_id\":null,\"yahoo_id\":33026,\"last_name\":\"Burt\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Boston College\",\"high_school\":\"St. John's Prep (MA)\",\"depth_chart_order\":7,\"stats_id\":null,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jakeburt\",\"birth_date\":\"1996-08-25\",\"espn_id\":3915308},\"3100\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ronnie\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"shields\",\"depth_chart_position\":null,\"player_id\":\"3100\",\"birth_city\":null,\"fantasy_data_id\":17850,\"years_exp\":1,\"hashtag\":\"#RonnieShields-NFL-FA-87\",\"search_first_name\":\"ronnie\",\"rotowire_id\":10771,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ronnie Shields\",\"sportradar_id\":\"7de4f3e8-4ef5-497b-96c9-9f94d06640fe\",\"pandascore_id\":null,\"yahoo_id\":29217,\"last_name\":\"Shields\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'5\\\"\",\"search_full_name\":\"ronnieshields\",\"birth_date\":\"1991-12-15\",\"espn_id\":2516203},\"5550\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034294\",\"first_name\":\"J.D.\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1557540020337,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"moore\",\"depth_chart_position\":null,\"player_id\":\"5550\",\"birth_city\":null,\"fantasy_data_id\":20501,\"years_exp\":2,\"hashtag\":\"#JDMoore-NFL-FA-43\",\"search_first_name\":\"jd\",\"rotowire_id\":13177,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"J.D. Moore\",\"sportradar_id\":\"60946edc-733d-4da3-93af-b63d269536ae\",\"pandascore_id\":null,\"yahoo_id\":31493,\"last_name\":\"Moore\",\"metadata\":null,\"college\":\"LSU\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":739300,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jdmoore\",\"birth_date\":\"1995-05-30\",\"espn_id\":3042728},\"4739\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jack\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lynn\",\"depth_chart_position\":null,\"player_id\":\"4739\",\"birth_city\":null,\"fantasy_data_id\":19657,\"years_exp\":2,\"hashtag\":\"#JackLynn-NFL-FA-43\",\"search_first_name\":\"jack\",\"rotowire_id\":12275,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jack Lynn\",\"sportradar_id\":\"3f04b229-d38a-4346-b0c8-4d8c2c18c9d7\",\"pandascore_id\":null,\"yahoo_id\":30889,\"last_name\":\"Lynn\",\"metadata\":null,\"college\":\"Minnesota\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jacklynn\",\"birth_date\":\"1993-08-06\",\"espn_id\":2970711},\"2182\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031359\",\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1564164955406,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"benjamin\",\"depth_chart_position\":null,\"player_id\":\"2182\",\"birth_city\":null,\"fantasy_data_id\":16550,\"years_exp\":6,\"hashtag\":\"#KelvinBenjamin-NFL-FA-81\",\"search_first_name\":\"kelvin\",\"rotowire_id\":9294,\"rotoworld_id\":9321,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Kelvin Benjamin\",\"sportradar_id\":\"2ef5aed5-9859-4102-8bf4-99d6a6ae22ba\",\"pandascore_id\":null,\"yahoo_id\":27556,\"last_name\":\"Benjamin\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":605407,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kelvinbenjamin\",\"birth_date\":\"1991-02-05\",\"espn_id\":16730},\"3819\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032852\",\"first_name\":\"Taniela\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1523486101242,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tupou\",\"depth_chart_position\":null,\"player_id\":\"3819\",\"birth_city\":null,\"fantasy_data_id\":18636,\"years_exp\":4,\"hashtag\":\"#TanielaTupou-NFL-FA-75\",\"search_first_name\":\"taniela\",\"rotowire_id\":11564,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Taniela Tupou\",\"sportradar_id\":\"f50fb156-fc3a-4930-aa51-8fe977ef6984\",\"pandascore_id\":null,\"yahoo_id\":29939,\"last_name\":\"Tupou\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":608023,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"284\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tanielatupou\",\"birth_date\":\"1992-12-13\",\"espn_id\":2578390},\"5783\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034871\",\"first_name\":\"Christian\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boutte\",\"depth_chart_position\":null,\"player_id\":\"5783\",\"birth_city\":null,\"fantasy_data_id\":20685,\"years_exp\":2,\"hashtag\":\"#ChristianBoutte-NFL-FA-40\",\"search_first_name\":\"christian\",\"rotowire_id\":13380,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Christian Boutte\",\"sportradar_id\":\"48c9c22c-6903-455d-bcaa-9562b440b690\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Boutte\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"5'10\\\"\",\"search_full_name\":\"christianboutte\",\"birth_date\":\"1995-12-29\",\"espn_id\":3127082},\"6702\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jacas\",\"depth_chart_position\":null,\"player_id\":\"6702\",\"birth_city\":null,\"fantasy_data_id\":21619,\"years_exp\":0,\"hashtag\":\"#AndrewJacas-NFL-FA-0\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Andrew Jacas\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Jacas\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"andrewjacas\",\"birth_date\":null,\"espn_id\":null},\"3310\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"payton\",\"depth_chart_position\":null,\"player_id\":\"3310\",\"birth_city\":null,\"fantasy_data_id\":18071,\"years_exp\":3,\"hashtag\":\"#JordanPayton-NFL-FA-84\",\"search_first_name\":\"jordan\",\"rotowire_id\":11013,\"rotoworld_id\":11403,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jordan Payton\",\"sportradar_id\":\"19fff21f-43ba-49b1-8a7c-d05389a1f789\",\"pandascore_id\":null,\"yahoo_id\":29388,\"last_name\":\"Payton\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":691046,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"207\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jordanpayton\",\"birth_date\":\"1993-09-01\",\"espn_id\":2971588},\"5226\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034234\",\"first_name\":\"Poona\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1598314553147,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ford\",\"depth_chart_position\":\"NT\",\"player_id\":\"5226\",\"birth_city\":null,\"fantasy_data_id\":20185,\"years_exp\":2,\"hashtag\":\"#PoonaFord-NFL-SEA-97\",\"search_first_name\":\"poona\",\"rotowire_id\":12492,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1432,\"age\":25,\"full_name\":\"Poona Ford\",\"sportradar_id\":\"09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5\",\"pandascore_id\":null,\"yahoo_id\":31477,\"last_name\":\"Ford\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Hilton Head (SC)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"310\",\"height\":\"5'11\\\"\",\"search_full_name\":\"poonaford\",\"birth_date\":\"1995-11-19\",\"espn_id\":3125114},\"7507\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":null,\"player_id\":\"7507\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":5,\"hashtag\":\"#MarcusPeters-NFL-BAL-24\",\"search_first_name\":\"marcus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":27,\"full_name\":\"Marcus Peters\",\"sportradar_id\":\"ce83f3ee-c641-489d-b270-bffd7c642ddc\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Washington\",\"high_school\":\"McClymonds (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marcuspeters\",\"birth_date\":\"1993-01-09\",\"espn_id\":null},\"2302\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"T.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fatinikun\",\"depth_chart_position\":null,\"player_id\":\"2302\",\"birth_city\":null,\"fantasy_data_id\":16755,\"years_exp\":6,\"hashtag\":\"#TJFatinikun-NFL-FA-96\",\"search_first_name\":\"tj\",\"rotowire_id\":9999,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"T.J. Fatinikun\",\"sportradar_id\":\"6e369501-502b-4907-b18c-bddb3002f2a5\",\"pandascore_id\":null,\"yahoo_id\":28352,\"last_name\":\"Fatinikun\",\"metadata\":null,\"college\":\"Toledo\",\"high_school\":\"Perrysburg HS\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'2\\\"\",\"search_full_name\":\"tjfatinikun\",\"birth_date\":\"1991-07-28\",\"espn_id\":2469737},\"2259\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030993\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603746638469,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":\"SLB\",\"player_id\":\"2259\",\"birth_city\":null,\"fantasy_data_id\":16670,\"years_exp\":6,\"hashtag\":\"#AaronLynch-NFL-JAX-59\",\"search_first_name\":\"aaron\",\"rotowire_id\":9345,\"rotoworld_id\":9669,\"active\":true,\"search_rank\":843,\"age\":27,\"full_name\":\"Aaron Lynch\",\"sportradar_id\":\"df4d7b62-ef37-494b-b068-f319ad336bbb\",\"pandascore_id\":null,\"yahoo_id\":27678,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"South Florida\",\"high_school\":\"Island Coast (FL)\",\"depth_chart_order\":3,\"stats_id\":592909,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"aaronlynch\",\"birth_date\":\"1993-03-08\",\"espn_id\":16941},\"279\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Devin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1513092901437,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hester\",\"depth_chart_position\":null,\"player_id\":\"279\",\"birth_city\":null,\"fantasy_data_id\":7082,\"years_exp\":14,\"hashtag\":\"#DevinHester-NFL-FA-17\",\"search_first_name\":\"devin\",\"rotowire_id\":4724,\"rotoworld_id\":3675,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Devin Hester\",\"sportradar_id\":\"2a884429-364b-430b-919e-f8547053404b\",\"pandascore_id\":null,\"yahoo_id\":7806,\"last_name\":\"Hester\",\"metadata\":null,\"college\":\"Miami\",\"high_school\":\"Suncoast Co. (FL)\",\"depth_chart_order\":null,\"stats_id\":216407,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"devinhester\",\"birth_date\":\"1982-11-04\",\"espn_id\":9643},\"604\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Toby\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gerhart\",\"depth_chart_position\":null,\"player_id\":\"604\",\"birth_city\":null,\"fantasy_data_id\":11413,\"years_exp\":10,\"hashtag\":\"#TobyGerhart-NFL-FA-21\",\"search_first_name\":\"toby\",\"rotowire_id\":6445,\"rotoworld_id\":5730,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Toby Gerhart\",\"sportradar_id\":\"06669e1d-f9f7-4774-abc2-6ed2f7e7647f\",\"pandascore_id\":null,\"yahoo_id\":24026,\"last_name\":\"Gerhart\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Norco (CA)\",\"depth_chart_order\":null,\"stats_id\":332648,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"231\",\"height\":\"6'0\\\"\",\"search_full_name\":\"tobygerhart\",\"birth_date\":\"1987-03-28\",\"espn_id\":13211},\"5739\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034734\",\"first_name\":\"Afolabi\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1559409617080,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"laguda\",\"depth_chart_position\":null,\"player_id\":\"5739\",\"birth_city\":null,\"fantasy_data_id\":20509,\"years_exp\":2,\"hashtag\":\"#AfolabiLaguda-NFL-FA-35\",\"search_first_name\":\"afolabi\",\"rotowire_id\":12718,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Afolabi Laguda\",\"sportradar_id\":\"30d66e1f-256c-4597-b31a-e54a17508c35\",\"pandascore_id\":null,\"yahoo_id\":31731,\"last_name\":\"Laguda\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"afolabilaguda\",\"birth_date\":\"1995-07-28\",\"espn_id\":3050953},\"5374\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034386\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606251654901,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"watson\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5374\",\"birth_city\":null,\"fantasy_data_id\":19922,\"years_exp\":2,\"hashtag\":\"#JustinWatson-NFL-TB-17\",\"search_first_name\":\"justin\",\"rotowire_id\":12746,\"rotoworld_id\":13208,\"active\":true,\"search_rank\":1342,\"age\":24,\"full_name\":\"Justin Watson\",\"sportradar_id\":\"bdb77276-7191-4454-85c2-e1693a33d709\",\"pandascore_id\":null,\"yahoo_id\":31114,\"last_name\":\"Watson\",\"metadata\":null,\"college\":\"Pennsylvania\",\"high_school\":\"South Fayette (PA)\",\"depth_chart_order\":2,\"stats_id\":832220,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TB\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinwatson\",\"birth_date\":\"1996-04-04\",\"espn_id\":3118892},\"6599\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035348\",\"first_name\":\"Cory\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"6599\",\"birth_city\":null,\"fantasy_data_id\":21532,\"years_exp\":1,\"hashtag\":\"#CoryThomas-NFL-FA-48\",\"search_first_name\":\"cory\",\"rotowire_id\":14283,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Cory Thomas\",\"sportradar_id\":\"6196fbdb-f9fb-4766-b611-c1875f8f6236\",\"pandascore_id\":null,\"yahoo_id\":32445,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"313\",\"height\":\"6'5\\\"\",\"search_full_name\":\"corythomas\",\"birth_date\":\"1995-08-02\",\"espn_id\":3115478},\"3255\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032955\",\"first_name\":\"Kyler\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602873947164,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fackrell\",\"depth_chart_position\":\"OLB\",\"player_id\":\"3255\",\"birth_city\":null,\"fantasy_data_id\":18016,\"years_exp\":4,\"hashtag\":\"#KylerFackrell-NFL-NYG-51\",\"search_first_name\":\"kyler\",\"rotowire_id\":11030,\"rotoworld_id\":11380,\"active\":true,\"search_rank\":995,\"age\":29,\"full_name\":\"Kyler Fackrell\",\"sportradar_id\":\"d073c3c0-b9b0-4382-84d0-5de88a427ad6\",\"pandascore_id\":null,\"yahoo_id\":29322,\"last_name\":\"Fackrell\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Mesa (AZ)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":51,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kylerfackrell\",\"birth_date\":\"1991-11-25\",\"espn_id\":2574229},\"6471\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035411\",\"first_name\":\"Larry\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allenjr\",\"depth_chart_position\":null,\"player_id\":\"6471\",\"birth_city\":null,\"fantasy_data_id\":21471,\"years_exp\":1,\"hashtag\":\"#LarryAllenJr-NFL-FA-68\",\"search_first_name\":\"larry\",\"rotowire_id\":14069,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Larry Allen Jr.\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":32197,\"last_name\":\"Allen Jr.\",\"metadata\":null,\"college\":\"Harvard\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'3\\\"\",\"search_full_name\":\"larryallenjr\",\"birth_date\":\"1996-07-21\",\"espn_id\":null},\"70\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0025415\",\"first_name\":\"Joe\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1587855646529,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"staley\",\"depth_chart_position\":\"LT\",\"player_id\":\"70\",\"birth_city\":null,\"fantasy_data_id\":1958,\"years_exp\":13,\"hashtag\":\"#JoeStaley-NFL-FA-74\",\"search_first_name\":\"joe\",\"rotowire_id\":5296,\"rotoworld_id\":4213,\"active\":true,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Joe Staley\",\"sportradar_id\":\"4d628a09-3631-4166-85f6-45f41a74e992\",\"pandascore_id\":null,\"yahoo_id\":8282,\"last_name\":\"Staley\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Rockford (MI)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'5\\\"\",\"search_full_name\":\"joestaley\",\"birth_date\":\"1984-08-30\",\"espn_id\":10472},\"2380\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032148\",\"first_name\":\"Garrett\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1556838607384,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grayson\",\"depth_chart_position\":\"QB\",\"player_id\":\"2380\",\"birth_city\":null,\"fantasy_data_id\":16836,\"years_exp\":5,\"hashtag\":\"#GarrettGrayson-NFL-FA-9\",\"search_first_name\":\"garrett\",\"rotowire_id\":10175,\"rotoworld_id\":10394,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Garrett Grayson\",\"sportradar_id\":\"5b64cbb5-0af6-4efc-a441-31c1f33d2eab\",\"pandascore_id\":null,\"yahoo_id\":28463,\"last_name\":\"Grayson\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":\"Heritage (WA)\",\"depth_chart_order\":2,\"stats_id\":541469,\"injury_start_date\":null,\"number\":9,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"garrettgrayson\",\"birth_date\":\"1991-05-29\",\"espn_id\":2575660},\"7372\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605751244634,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"paulo\",\"depth_chart_position\":null,\"player_id\":\"7372\",\"birth_city\":null,\"fantasy_data_id\":22360,\"years_exp\":0,\"hashtag\":\"#DarrinPaulo-NFL-DEN-79\",\"search_first_name\":\"darrin\",\"rotowire_id\":14963,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Darrin Paulo\",\"sportradar_id\":\"d764aa2a-9318-447b-a108-6efa55268e5a\",\"pandascore_id\":null,\"yahoo_id\":33117,\"last_name\":\"Paulo\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Utah\",\"high_school\":\"Grant Union (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"darrinpaulo\",\"birth_date\":\"1997-03-06\",\"espn_id\":3912573},\"86\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dante\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rosario\",\"depth_chart_position\":null,\"player_id\":\"86\",\"birth_city\":null,\"fantasy_data_id\":2332,\"years_exp\":9,\"hashtag\":\"#DanteRosario-NFL-FA-88\",\"search_first_name\":\"dante\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Dante Rosario\",\"sportradar_id\":\"d4ace3ac-094b-4a3d-b526-9962c8b90bc8\",\"pandascore_id\":null,\"yahoo_id\":8409,\"last_name\":\"Rosario\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":214030,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"danterosario\",\"birth_date\":\"1984-10-25\",\"espn_id\":10598},\"2276\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1511397901475,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"norwood\",\"depth_chart_position\":null,\"player_id\":\"2276\",\"birth_city\":null,\"fantasy_data_id\":16689,\"years_exp\":6,\"hashtag\":\"#KevinNorwood-NFL-FA-83\",\"search_first_name\":\"kevin\",\"rotowire_id\":9469,\"rotoworld_id\":9660,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Kevin Norwood\",\"sportradar_id\":\"66e0d528-ba62-477f-9847-71c317eb019a\",\"pandascore_id\":null,\"yahoo_id\":27651,\"last_name\":\"Norwood\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"D'lberville (MS)\",\"depth_chart_order\":null,\"stats_id\":508657,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kevinnorwood\",\"birth_date\":\"1989-09-23\",\"espn_id\":16841},\"1552\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030067\",\"first_name\":\"Terron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606591533237,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"armstead\",\"depth_chart_position\":\"LT\",\"player_id\":\"1552\",\"birth_city\":null,\"fantasy_data_id\":15193,\"years_exp\":7,\"hashtag\":\"#TerronArmstead-NFL-NO-72\",\"search_first_name\":\"terron\",\"rotowire_id\":8827,\"rotoworld_id\":8464,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Terron Armstead\",\"sportradar_id\":\"0cb6209d-2397-4be2-9cb7-f990bfb67e69\",\"pandascore_id\":null,\"yahoo_id\":26698,\"last_name\":\"Armstead\",\"metadata\":null,\"college\":\"Arkansas-Pine Bluff\",\"high_school\":\"Cahokia (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'5\\\"\",\"search_full_name\":\"terronarmstead\",\"birth_date\":\"1991-07-23\",\"espn_id\":15821},\"6256\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035435\",\"first_name\":\"Rodney\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"randlejr\",\"depth_chart_position\":null,\"player_id\":\"6256\",\"birth_city\":null,\"fantasy_data_id\":21189,\"years_exp\":1,\"hashtag\":\"#RodneyRandleJr-NFL-FA-41\",\"search_first_name\":\"rodney\",\"rotowire_id\":14266,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Rodney Randle Jr.\",\"sportradar_id\":\"b9d69750-a1b9-4b59-a679-4900c672cc97\",\"pandascore_id\":null,\"yahoo_id\":32550,\"last_name\":\"Randle Jr.\",\"metadata\":null,\"college\":\"Lamar\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'8\\\"\",\"search_full_name\":\"rodneyrandlejr\",\"birth_date\":\"1997-02-27\",\"espn_id\":3910120},\"1234\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029263\",\"first_name\":\"Russell\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1605851758165,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"QB\",\"player_id\":\"1234\",\"birth_city\":null,\"fantasy_data_id\":14536,\"years_exp\":8,\"hashtag\":\"#RussellWilson-NFL-SEA-3\",\"search_first_name\":\"russell\",\"rotowire_id\":8043,\"rotoworld_id\":7460,\"active\":true,\"search_rank\":47,\"age\":31,\"full_name\":\"Russell Wilson\",\"sportradar_id\":\"409d4cac-ee90-4470-9710-ebe671678339\",\"pandascore_id\":null,\"yahoo_id\":25785,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Wisconsin\",\"high_school\":\"Collegiate (VA)\",\"depth_chart_order\":1,\"stats_id\":401534,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SEA\",\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'11\\\"\",\"search_full_name\":\"russellwilson\",\"birth_date\":\"1988-11-29\",\"espn_id\":14881},\"7499\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605410761388,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"quessenberry\",\"depth_chart_position\":null,\"player_id\":\"7499\",\"birth_city\":null,\"fantasy_data_id\":22475,\"years_exp\":0,\"hashtag\":\"#PaulQuessenberry-NFL-NE-48\",\"search_first_name\":\"paul\",\"rotowire_id\":15179,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Paul Quessenberry\",\"sportradar_id\":\"362244ff-545a-4123-8b4d-6a4bc6f24ce1\",\"pandascore_id\":null,\"yahoo_id\":33364,\"last_name\":\"Quessenberry\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Navy\",\"high_school\":\"La Costa Canyon (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"251\",\"height\":\"6'2\\\"\",\"search_full_name\":\"paulquessenberry\",\"birth_date\":\"1992-01-08\",\"espn_id\":2575891},\"1650\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marshall\",\"depth_chart_position\":null,\"player_id\":\"1650\",\"birth_city\":null,\"fantasy_data_id\":15394,\"years_exp\":1,\"hashtag\":\"#CameronMarshall-NFL-FA-38\",\"search_first_name\":\"cameron\",\"rotowire_id\":8847,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Cameron Marshall\",\"sportradar_id\":\"1954ad13-caa8-49bd-9000-a305d16b6291\",\"pandascore_id\":null,\"yahoo_id\":27250,\"last_name\":\"Marshall\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'9\\\"\",\"search_full_name\":\"cameronmarshall\",\"birth_date\":\"1991-10-14\",\"espn_id\":16370},\"2912\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"stangby\",\"depth_chart_position\":null,\"player_id\":\"2912\",\"birth_city\":null,\"fantasy_data_id\":17380,\"years_exp\":1,\"hashtag\":\"#JoshuaStangby-NFL-FA-14\",\"search_first_name\":\"joshua\",\"rotowire_id\":10783,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Joshua Stangby\",\"sportradar_id\":\"2e4308b9-4ead-4fcd-9e03-32503c3db1dc\",\"pandascore_id\":null,\"yahoo_id\":28829,\"last_name\":\"Stangby\",\"metadata\":null,\"college\":\"Ottawa (KS)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":870350,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"joshuastangby\",\"birth_date\":\"1990-09-24\",\"espn_id\":3893002},\"1195\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029613\",\"first_name\":\"Doug\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567555522755,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"martin\",\"depth_chart_position\":null,\"player_id\":\"1195\",\"birth_city\":null,\"fantasy_data_id\":14385,\"years_exp\":8,\"hashtag\":\"#DougMartin-NFL-FA-22\",\"search_first_name\":\"doug\",\"rotowire_id\":8058,\"rotoworld_id\":7426,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Doug Martin\",\"sportradar_id\":\"5c2a0c83-e18a-43dd-bd65-704771157e42\",\"pandascore_id\":null,\"yahoo_id\":25741,\"last_name\":\"Martin\",\"metadata\":null,\"college\":\"Boise State\",\"high_school\":\"St. Mary's (CA)\",\"depth_chart_order\":null,\"stats_id\":381806,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"5'9\\\"\",\"search_full_name\":\"dougmartin\",\"birth_date\":\"1989-01-13\",\"espn_id\":14885},\"6962\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ladarius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1588096518904,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hamilton\",\"depth_chart_position\":null,\"player_id\":\"6962\",\"birth_city\":null,\"fantasy_data_id\":21904,\"years_exp\":0,\"hashtag\":\"#LadariusHamilton-NFL-DAL-76\",\"search_first_name\":\"ladarius\",\"rotowire_id\":14723,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1828,\"age\":22,\"full_name\":\"Ladarius Hamilton\",\"sportradar_id\":\"ef978985-2123-411b-85bd-c59c04618dbd\",\"pandascore_id\":null,\"yahoo_id\":33104,\"last_name\":\"Hamilton\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Corrigan-Camden (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'3\\\"\",\"search_full_name\":\"ladariushamilton\",\"birth_date\":\"1998-01-18\",\"espn_id\":4039075},\"3914\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dobson\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"3914\",\"birth_city\":null,\"fantasy_data_id\":18740,\"years_exp\":1,\"hashtag\":\"#DobsonCollins-NFL-FA-14\",\"search_first_name\":\"dobson\",\"rotowire_id\":6951,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Dobson Collins\",\"sportradar_id\":\"37fb24c7-3205-4276-bbaf-b854033ff6be\",\"pandascore_id\":null,\"yahoo_id\":9668,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Gardner-Webb\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":297660,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"178\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dobsoncollins\",\"birth_date\":\"1987-07-12\",\"espn_id\":12913},\"6619\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035079\",\"first_name\":\"Kabion\",\"practice_description\":null,\"fantasy_positions\":[\"WR\",\"DB\"],\"news_updated\":1599515404164,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"ento\",\"depth_chart_position\":null,\"player_id\":\"6619\",\"birth_city\":null,\"fantasy_data_id\":21418,\"years_exp\":1,\"hashtag\":\"#KabionEnto-NFL-GB-48\",\"search_first_name\":\"kabion\",\"rotowire_id\":14104,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Kabion Ento\",\"sportradar_id\":\"23424024-3b7b-4de1-9b0c-09d170f845b3\",\"pandascore_id\":null,\"yahoo_id\":32268,\"last_name\":\"Ento\",\"metadata\":null,\"college\":\"Colorado\",\"high_school\":\"Dollarway (AR)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kabionento\",\"birth_date\":\"1996-01-03\",\"espn_id\":4040870},\"759\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027750\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scott\",\"depth_chart_position\":null,\"player_id\":\"759\",\"birth_city\":null,\"fantasy_data_id\":12490,\"years_exp\":10,\"hashtag\":\"#ChrisScott-NFL-FA-68\",\"search_first_name\":\"chris\",\"rotowire_id\":6735,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Chris Scott\",\"sportradar_id\":\"d90adc80-8e8e-4484-92a3-00bf274e6a9d\",\"pandascore_id\":null,\"yahoo_id\":24127,\"last_name\":\"Scott\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Lovejoy (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":68,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"340\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisscott\",\"birth_date\":\"1987-08-04\",\"espn_id\":13451},\"3982\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sean\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcvay\",\"depth_chart_position\":null,\"player_id\":\"3982\",\"birth_city\":null,\"fantasy_data_id\":18817,\"years_exp\":0,\"hashtag\":\"#SeanMcVay-NFL-FA-0\",\"search_first_name\":\"sean\",\"rotowire_id\":null,\"rotoworld_id\":9332,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Sean McVay\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McVay\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"seanmcvay\",\"birth_date\":null,\"espn_id\":null},\"356\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rey\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1511034301079,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"maualuga\",\"depth_chart_position\":null,\"player_id\":\"356\",\"birth_city\":null,\"fantasy_data_id\":8441,\"years_exp\":11,\"hashtag\":\"#ReyMaualuga-NFL-FA-58\",\"search_first_name\":\"rey\",\"rotowire_id\":6081,\"rotoworld_id\":5205,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Rey Maualuga\",\"sportradar_id\":\"822c1d36-9b42-4cfd-86bf-c83d0c71571c\",\"pandascore_id\":null,\"yahoo_id\":9302,\"last_name\":\"Maualuga\",\"metadata\":null,\"college\":\"Southern California\",\"high_school\":\"Eureka (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"258\",\"height\":\"6'2\\\"\",\"search_full_name\":\"reymaualuga\",\"birth_date\":\"1987-01-20\",\"espn_id\":12455},\"3679\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mario\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ojemudia\",\"depth_chart_position\":null,\"player_id\":\"3679\",\"birth_city\":null,\"fantasy_data_id\":18479,\"years_exp\":0,\"hashtag\":\"#MarioOjemudia-NFL-FA-42\",\"search_first_name\":\"mario\",\"rotowire_id\":11310,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Mario Ojemudia\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29757,\"last_name\":\"Ojemudia\",\"metadata\":null,\"college\":\"Michigan\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"252\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marioojemudia\",\"birth_date\":\"1994-05-30\",\"espn_id\":null},\"241\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"larsen\",\"depth_chart_position\":null,\"player_id\":\"241\",\"birth_city\":null,\"fantasy_data_id\":6047,\"years_exp\":6,\"hashtag\":\"#SpencerLarsen-NFL-FA-46\",\"search_first_name\":\"spencer\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Spencer Larsen\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Larsen\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'2\\\"\",\"search_full_name\":\"spencerlarsen\",\"birth_date\":\"1984-03-04\",\"espn_id\":null},\"3684\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Derek\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"keaton\",\"depth_chart_position\":null,\"player_id\":\"3684\",\"birth_city\":null,\"fantasy_data_id\":18484,\"years_exp\":0,\"hashtag\":\"#DerekKeaton-NFL-FA-18\",\"search_first_name\":\"derek\",\"rotowire_id\":11659,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Derek Keaton\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29918,\"last_name\":\"Keaton\",\"metadata\":null,\"college\":\"Georgia Southern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'10\\\"\",\"search_full_name\":\"derekkeaton\",\"birth_date\":\"1994-04-10\",\"espn_id\":null},\"3252\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033084\",\"first_name\":\"Kendall\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1602095127700,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fuller\",\"depth_chart_position\":\"CB\",\"player_id\":\"3252\",\"birth_city\":null,\"fantasy_data_id\":18013,\"years_exp\":4,\"hashtag\":\"#KendallFuller-NFL-WAS-29\",\"search_first_name\":\"kendall\",\"rotowire_id\":11038,\"rotoworld_id\":11294,\"active\":true,\"search_rank\":993,\"age\":25,\"full_name\":\"Kendall Fuller\",\"sportradar_id\":\"81ba31db-e21a-4944-8d0f-4e12cb83e3c4\",\"pandascore_id\":null,\"yahoo_id\":29318,\"last_name\":\"Fuller\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Good Counsel (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"198\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kendallfuller\",\"birth_date\":\"1995-02-13\",\"espn_id\":3045465},\"7459\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rashod\",\"practice_description\":null,\"fantasy_positions\":[\"TE\",\"LB\",\"DL\"],\"news_updated\":1599693359854,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"berry\",\"depth_chart_position\":\"TE\",\"player_id\":\"7459\",\"birth_city\":null,\"fantasy_data_id\":22436,\"years_exp\":0,\"hashtag\":\"#RashodBerry-NFL-NE-43\",\"search_first_name\":\"rashod\",\"rotowire_id\":14851,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Rashod Berry\",\"sportradar_id\":\"17a17a1a-787d-46b3-94c0-8d4e1928c492\",\"pandascore_id\":null,\"yahoo_id\":33024,\"last_name\":\"Berry\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Ohio State\",\"high_school\":\"Lorain (OH)\",\"depth_chart_order\":6,\"stats_id\":null,\"injury_start_date\":null,\"number\":43,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"255\",\"height\":\"6'4\\\"\",\"search_full_name\":\"rashodberry\",\"birth_date\":\"1996-10-14\",\"espn_id\":3915508},\"5135\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034170\",\"first_name\":\"Saeed\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599503403763,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blacknall\",\"depth_chart_position\":null,\"player_id\":\"5135\",\"birth_city\":null,\"fantasy_data_id\":20073,\"years_exp\":2,\"hashtag\":\"#SaeedBlacknall-NFL-FA-0\",\"search_first_name\":\"saeed\",\"rotowire_id\":13028,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Saeed Blacknall\",\"sportradar_id\":\"6427f177-527b-435a-bcd1-27cf913f7e24\",\"pandascore_id\":null,\"yahoo_id\":31479,\"last_name\":\"Blacknall\",\"metadata\":null,\"college\":\"Penn State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835780,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"6'2\\\"\",\"search_full_name\":\"saeedblacknall\",\"birth_date\":\"1996-03-17\",\"espn_id\":3116155},\"3086\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tom\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":1544380565183,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coughlin\",\"depth_chart_position\":null,\"player_id\":\"3086\",\"birth_city\":null,\"fantasy_data_id\":17836,\"years_exp\":0,\"hashtag\":\"#TomCoughlin-NFL-FA-0\",\"search_first_name\":\"tom\",\"rotowire_id\":null,\"rotoworld_id\":8356,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Tom Coughlin\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Coughlin\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"tomcoughlin\",\"birth_date\":null,\"espn_id\":null}}"),
- date = structure(1606598101, class = c("POSIXct", "POSIXt"
- ), tzone = "GMT"), times = c(redirect = 0, namelookup = 5.1e-05,
- connect = 5.6e-05, pretransfer = 0.000151, starttransfer = 0.10898,
- total = 0.192723)), class = "response")
+structure(list(
+ url = "https://api.sleeper.app/v1/players/nfl",
+ status_code = 200L, headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:15:01 GMT",
+ `content-type` = "application/json; charset=utf-8", vary = "Accept-Encoding",
+ `cache-control` = "public, s-maxage=600", `x-request-id` = "b35dda4efac102a44deeb93751ceb14d",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "HIT",
+ age = "420", `cf-request-id` = "06b24ea1dc0000ca4b71860000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f971a162a03ca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ )), all_headers = list(list(
+ status = 200L, version = "HTTP/2",
+ headers = structure(list(
+ date = "Sat, 28 Nov 2020 21:15:01 GMT",
+ `content-type` = "application/json; charset=utf-8",
+ vary = "Accept-Encoding", `cache-control` = "public, s-maxage=600",
+ `x-request-id` = "b35dda4efac102a44deeb93751ceb14d",
+ `access-control-allow-origin` = "*", `access-control-expose-headers` = "etag",
+ `access-control-allow-credentials` = "true", `strict-transport-security` = "max-age=15724800; includeSubDomains",
+ `content-encoding` = "gzip", `cf-cache-status` = "HIT",
+ age = "420", `cf-request-id` = "06b24ea1dc0000ca4b71860000000001",
+ `expect-ct` = "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"",
+ server = "cloudflare", `cf-ray` = "5f971a162a03ca4b-YUL"
+ ), class = c(
+ "insensitive",
+ "list"
+ ))
+ )), cookies = structure(list(
+ domain = "#HttpOnly_.sleeper.app",
+ flag = TRUE, path = "/", secure = TRUE, expiration = structure(1609190016, class = c(
+ "POSIXct",
+ "POSIXt"
+ )), name = "__cfduid", value = "REDACTED"
+ ), row.names = c(
+ NA,
+ -1L
+ ), class = "data.frame"), content = charToRaw("{\"2103\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cody\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"booth\",\"depth_chart_position\":null,\"player_id\":\"2103\",\"birth_city\":null,\"fantasy_data_id\":16426,\"years_exp\":1,\"hashtag\":\"#CodyBooth-NFL-FA-60\",\"search_first_name\":\"cody\",\"rotowire_id\":9866,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cody Booth\",\"sportradar_id\":\"4cd4976e-e230-4935-ad3f-c12876a41350\",\"pandascore_id\":null,\"yahoo_id\":27841,\"last_name\":\"Booth\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"codybooth\",\"birth_date\":\"1991-04-22\",\"espn_id\":17054},\"6250\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Eurndraus\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bryant\",\"depth_chart_position\":null,\"player_id\":\"6250\",\"birth_city\":null,\"fantasy_data_id\":21183,\"years_exp\":0,\"hashtag\":\"#EurndrausBryant-NFL-FA-0\",\"search_first_name\":\"eurndraus\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Eurndraus Bryant\",\"sportradar_id\":\"9ff46edb-988f-4c8a-ad56-0502808ca1a6\",\"pandascore_id\":null,\"yahoo_id\":32538,\"last_name\":\"Bryant\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"eurndrausbryant\",\"birth_date\":null,\"espn_id\":3916426},\"4116\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033922\",\"first_name\":\"Antonio\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1560221750273,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"garcia\",\"depth_chart_position\":null,\"player_id\":\"4116\",\"birth_city\":null,\"fantasy_data_id\":18962,\"years_exp\":3,\"hashtag\":\"#AntonioGarcia-NFL-FA-71\",\"search_first_name\":\"antonio\",\"rotowire_id\":11794,\"rotoworld_id\":12247,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Antonio Garcia\",\"sportradar_id\":\"a2b6e1f9-1f06-45e3-b6e9-79ec8490e5ef\",\"pandascore_id\":null,\"yahoo_id\":30198,\"last_name\":\"Garcia\",\"metadata\":null,\"college\":\"Troy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":71,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"293\",\"height\":\"6'6\\\"\",\"search_full_name\":\"antoniogarcia\",\"birth_date\":\"1993-12-10\",\"espn_id\":2972820},\"6177\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035656\",\"first_name\":\"Khalen\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1603596358561,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"saunders\",\"depth_chart_position\":\"RDT\",\"player_id\":\"6177\",\"birth_city\":null,\"fantasy_data_id\":20934,\"years_exp\":1,\"hashtag\":\"#KhalenSaunders-NFL-KC-99\",\"search_first_name\":\"khalen\",\"rotowire_id\":13746,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1596,\"age\":24,\"full_name\":\"Khalen Saunders\",\"sportradar_id\":\"757c55e1-2f3a-41d2-a211-16bf577a1586\",\"pandascore_id\":null,\"yahoo_id\":31916,\"last_name\":\"Saunders\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":\"Parkway Central (MO)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"324\",\"height\":\"6'0\\\"\",\"search_full_name\":\"khalensaunders\",\"birth_date\":\"1996-08-09\",\"espn_id\":3121634},\"5870\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035710\",\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1606499705662,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":\"QB\",\"player_id\":\"5870\",\"birth_city\":null,\"fantasy_data_id\":20841,\"years_exp\":1,\"hashtag\":\"#DanielJones-NFL-NYG-8\",\"search_first_name\":\"daniel\",\"rotowire_id\":13491,\"rotoworld_id\":13963,\"active\":true,\"search_rank\":113,\"age\":23,\"full_name\":\"Daniel Jones\",\"sportradar_id\":\"0042266b-cb28-4012-bfd2-06650badad97\",\"pandascore_id\":null,\"yahoo_id\":31838,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Charlotte Latin (NC)\",\"depth_chart_order\":1,\"stats_id\":879981,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'5\\\"\",\"search_full_name\":\"danieljones\",\"birth_date\":\"1997-05-27\",\"espn_id\":3917792},\"4297\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarnor\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4297\",\"birth_city\":null,\"fantasy_data_id\":19145,\"years_exp\":2,\"hashtag\":\"#JarnorJones-NFL-FA-40\",\"search_first_name\":\"jarnor\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jarnor Jones\",\"sportradar_id\":\"508a854c-2fc5-47e1-9376-0151f45963c1\",\"pandascore_id\":null,\"yahoo_id\":30454,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Iowa State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jarnorjones\",\"birth_date\":\"1994-04-29\",\"espn_id\":3892776},\"1347\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gragg\",\"depth_chart_position\":null,\"player_id\":\"1347\",\"birth_city\":null,\"fantasy_data_id\":14866,\"years_exp\":7,\"hashtag\":\"#ChrisGragg-NFL-FA-87\",\"search_first_name\":\"chris\",\"rotowire_id\":8788,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Chris Gragg\",\"sportradar_id\":\"36521d92-2c2c-4ae4-9b60-9928c3167e30\",\"pandascore_id\":null,\"yahoo_id\":26845,\"last_name\":\"Gragg\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":\"Warren (AR)\",\"depth_chart_order\":null,\"stats_id\":465638,\"injury_start_date\":null,\"number\":87,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"244\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrisgragg\",\"birth_date\":\"1990-06-30\",\"espn_id\":15940},\"5381\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034684\",\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":1565823938203,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"townsend\",\"depth_chart_position\":null,\"player_id\":\"5381\",\"birth_city\":null,\"fantasy_data_id\":19995,\"years_exp\":2,\"hashtag\":\"#JohnnyTownsend-NFL-KC-6\",\"search_first_name\":\"johnny\",\"rotowire_id\":12777,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Johnny Townsend\",\"sportradar_id\":\"2eb0706c-3017-4895-a207-71d6fe9e1549\",\"pandascore_id\":null,\"yahoo_id\":31143,\"last_name\":\"Townsend\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Boone (FL)\",\"depth_chart_order\":null,\"stats_id\":748627,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"KC\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnnytownsend\",\"birth_date\":\"1995-02-14\",\"espn_id\":3054971},\"1023\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027953\",\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1602381309880,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"pouncey\",\"depth_chart_position\":null,\"player_id\":\"1023\",\"birth_city\":null,\"fantasy_data_id\":13698,\"years_exp\":9,\"hashtag\":\"#MikePouncey-NFL-LAC-53\",\"search_first_name\":\"mike\",\"rotowire_id\":7548,\"rotoworld_id\":6478,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Mike Pouncey\",\"sportradar_id\":\"041c36ad-0d7d-4ed1-8157-95092b3027a4\",\"pandascore_id\":null,\"yahoo_id\":24802,\"last_name\":\"Pouncey\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":\"Lakeland (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":53,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mikepouncey\",\"birth_date\":\"1989-07-24\",\"espn_id\":13974},\"5300\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034266\",\"first_name\":\"Kenny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602286504257,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"young\",\"depth_chart_position\":\"RILB\",\"player_id\":\"5300\",\"birth_city\":null,\"fantasy_data_id\":19926,\"years_exp\":2,\"hashtag\":\"#KennyYoung-NFL-LAR-41\",\"search_first_name\":\"kenny\",\"rotowire_id\":12689,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1345,\"age\":26,\"full_name\":\"Kenny Young\",\"sportradar_id\":\"13a9ad48-6886-4390-b2d8-9c79cda111d1\",\"pandascore_id\":null,\"yahoo_id\":31092,\"last_name\":\"Young\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"John Curtis Christian (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kennyyoung\",\"birth_date\":\"1994-11-15\",\"espn_id\":3134310},\"7328\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Asmar\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605750944030,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"bilal\",\"depth_chart_position\":null,\"player_id\":\"7328\",\"birth_city\":null,\"fantasy_data_id\":22320,\"years_exp\":0,\"hashtag\":\"#AsmarBilal-NFL-LAC-57\",\"search_first_name\":\"asmar\",\"rotowire_id\":15017,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1980,\"age\":23,\"full_name\":\"Asmar Bilal\",\"sportradar_id\":\"621e177a-e23d-489e-a747-369eb662f0de\",\"pandascore_id\":null,\"yahoo_id\":32974,\"last_name\":\"Bilal\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Ben Davis (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"LAC\",\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'2\\\"\",\"search_full_name\":\"asmarbilal\",\"birth_date\":\"1997-04-12\",\"espn_id\":3932422},\"608\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027686\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1605832813284,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"peters\",\"depth_chart_position\":null,\"player_id\":\"608\",\"birth_city\":null,\"fantasy_data_id\":11437,\"years_exp\":10,\"hashtag\":\"#CoreyPeters-NFL-ARI-98\",\"search_first_name\":\"corey\",\"rotowire_id\":6682,\"rotoworld_id\":5886,\"active\":true,\"search_rank\":613,\"age\":32,\"full_name\":\"Corey Peters\",\"sportradar_id\":\"a50e3085-370b-4fd2-b79a-28d3b9c5c1c7\",\"pandascore_id\":null,\"yahoo_id\":24058,\"last_name\":\"Peters\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":\"Central (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":98,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"335\",\"height\":\"6'3\\\"\",\"search_full_name\":\"coreypeters\",\"birth_date\":\"1988-06-08\",\"espn_id\":13292},\"3925\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lee\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hightower\",\"depth_chart_position\":null,\"player_id\":\"3925\",\"birth_city\":null,\"fantasy_data_id\":18754,\"years_exp\":3,\"hashtag\":\"#LeeHightower-NFL-FA-39\",\"search_first_name\":\"lee\",\"rotowire_id\":11626,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Lee Hightower\",\"sportradar_id\":\"2ac6848d-1482-4a1b-b4ee-886ccaef270d\",\"pandascore_id\":null,\"yahoo_id\":30053,\"last_name\":\"Hightower\",\"metadata\":null,\"college\":\"Houston\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"192\",\"height\":\"6'2\\\"\",\"search_full_name\":\"leehightower\",\"birth_date\":\"1993-07-28\",\"espn_id\":2573308},\"3396\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032959\",\"first_name\":\"Charone\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1588021862005,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"peake\",\"depth_chart_position\":\"RWR\",\"player_id\":\"3396\",\"birth_city\":null,\"fantasy_data_id\":18157,\"years_exp\":4,\"hashtag\":\"#CharonePeake-NFL-FA-0\",\"search_first_name\":\"charone\",\"rotowire_id\":11001,\"rotoworld_id\":11410,\"active\":true,\"search_rank\":1042,\"age\":27,\"full_name\":\"Charone Peake\",\"sportradar_id\":\"58ea6518-6fb7-4e5a-a586-7202d4c5f07e\",\"pandascore_id\":null,\"yahoo_id\":29475,\"last_name\":\"Peake\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":8,\"stats_id\":602104,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'2\\\"\",\"search_full_name\":\"charonepeake\",\"birth_date\":\"1992-10-16\",\"espn_id\":2576498},\"3956\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kelvin\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fisherjr\",\"depth_chart_position\":null,\"player_id\":\"3956\",\"birth_city\":null,\"fantasy_data_id\":18789,\"years_exp\":0,\"hashtag\":\"#KelvinFisherJr-NFL-FA-8\",\"search_first_name\":\"kelvin\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kelvin Fisher Jr\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Fisher Jr\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kelvinfisherjr\",\"birth_date\":null,\"espn_id\":2574518},\"6343\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035077\",\"first_name\":\"Manny\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1588023962396,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilkins\",\"depth_chart_position\":null,\"player_id\":\"6343\",\"birth_city\":null,\"fantasy_data_id\":21260,\"years_exp\":1,\"hashtag\":\"#MannyWilkins-NFL-FA-0\",\"search_first_name\":\"manny\",\"rotowire_id\":13968,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Manny Wilkins\",\"sportradar_id\":\"941662f4-da41-48cf-a663-cfbd011491bb\",\"pandascore_id\":null,\"yahoo_id\":32282,\"last_name\":\"Wilkins\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":820627,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mannywilkins\",\"birth_date\":\"1995-11-05\",\"espn_id\":3128814},\"3199\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032765\",\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606513528056,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":\"LWR\",\"player_id\":\"3199\",\"birth_city\":null,\"fantasy_data_id\":17960,\"years_exp\":4,\"hashtag\":\"#MichaelThomas-NFL-NO-13\",\"search_first_name\":\"michael\",\"rotowire_id\":10759,\"rotoworld_id\":11222,\"active\":true,\"search_rank\":9,\"age\":27,\"full_name\":\"Michael Thomas\",\"sportradar_id\":\"90c1756d-1f47-41b7-89fe-b113c9850bc1\",\"pandascore_id\":null,\"yahoo_id\":29281,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":\"Woodland Hills Taft (CA)\",\"depth_chart_order\":1,\"stats_id\":653699,\"injury_start_date\":null,\"number\":13,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'3\\\"\",\"search_full_name\":\"michaelthomas\",\"birth_date\":\"1993-03-03\",\"espn_id\":2976316},\"1850\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tajh\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyd\",\"depth_chart_position\":null,\"player_id\":\"1850\",\"birth_city\":null,\"fantasy_data_id\":16058,\"years_exp\":1,\"hashtag\":\"#TajhBoyd-NFL-FA-3\",\"search_first_name\":\"tajh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Tajh Boyd\",\"sportradar_id\":\"75404d15-88d6-43e0-9258-27112b070a43\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Boyd\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":506599,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"222\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tajhboyd\",\"birth_date\":\"1990-09-25\",\"espn_id\":16812},\"6487\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035119\",\"first_name\":\"Charles\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1598920530072,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"scarff\",\"depth_chart_position\":\"TE\",\"player_id\":\"6487\",\"birth_city\":null,\"fantasy_data_id\":21275,\"years_exp\":1,\"hashtag\":\"#CharlesScarff-NFL-FA-0\",\"search_first_name\":\"charles\",\"rotowire_id\":14120,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Charles Scarff\",\"sportradar_id\":\"0c49b066-56ef-42dd-b9f1-1e956cced841\",\"pandascore_id\":null,\"yahoo_id\":32314,\"last_name\":\"Scarff\",\"metadata\":null,\"college\":\"Delaware\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":838249,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"249\",\"height\":\"6'5\\\"\",\"search_full_name\":\"charlesscarff\",\"birth_date\":\"1996-05-03\",\"espn_id\":3127376},\"2355\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032195\",\"first_name\":\"Ronald\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603405248727,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"darby\",\"depth_chart_position\":\"RCB\",\"player_id\":\"2355\",\"birth_city\":null,\"fantasy_data_id\":16811,\"years_exp\":5,\"hashtag\":\"#RonaldDarby-NFL-WAS-23\",\"search_first_name\":\"ronald\",\"rotowire_id\":10408,\"rotoworld_id\":10375,\"active\":true,\"search_rank\":872,\"age\":26,\"full_name\":\"Ronald Darby\",\"sportradar_id\":\"c63eb787-fa1f-406b-82a1-2eed0a65b58c\",\"pandascore_id\":null,\"yahoo_id\":28438,\"last_name\":\"Darby\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Potomac (MD)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":23,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ronalddarby\",\"birth_date\":\"1994-01-02\",\"espn_id\":2969920},\"6818\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1606530329668,\"status\":\"Reserve/COVID-19\",\"injury_body_part\":null,\"search_last_name\":\"madubuike\",\"depth_chart_position\":null,\"player_id\":\"6818\",\"birth_city\":null,\"fantasy_data_id\":21900,\"years_exp\":0,\"hashtag\":\"#JustinMadubuike-NFL-BAL-92\",\"search_first_name\":\"justin\",\"rotowire_id\":14380,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1824,\"age\":23,\"full_name\":\"Justin Madubuike\",\"sportradar_id\":\"904f702b-e8b1-4fef-a4a0-278d18cc15e3\",\"pandascore_id\":null,\"yahoo_id\":32741,\"last_name\":\"Madubuike\",\"metadata\":null,\"college\":\"Texas A&M\",\"high_school\":\"McKinney North (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":\"COV\",\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'3\\\"\",\"search_full_name\":\"justinmadubuike\",\"birth_date\":\"1997-11-17\",\"espn_id\":4035245},\"257\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Husain\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"abdullah\",\"depth_chart_position\":null,\"player_id\":\"257\",\"birth_city\":null,\"fantasy_data_id\":6411,\"years_exp\":12,\"hashtag\":\"#HusainAbdullah-NFL-FA-39\",\"search_first_name\":\"husain\",\"rotowire_id\":6297,\"rotoworld_id\":5026,\"active\":false,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Husain Abdullah\",\"sportradar_id\":\"1c4cf2d1-5bcf-457a-9f5b-34e4949edfcd\",\"pandascore_id\":null,\"yahoo_id\":9063,\"last_name\":\"Abdullah\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":\"Pomona (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"204\",\"height\":\"6'0\\\"\",\"search_full_name\":\"husainabdullah\",\"birth_date\":\"1985-07-27\",\"espn_id\":11910},\"6898\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Anthony\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1599336357354,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"gordon\",\"depth_chart_position\":null,\"player_id\":\"6898\",\"birth_city\":null,\"fantasy_data_id\":21816,\"years_exp\":0,\"hashtag\":\"#AnthonyGordon-NFL-FA-0\",\"search_first_name\":\"anthony\",\"rotowire_id\":14431,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1788,\"age\":24,\"full_name\":\"Anthony Gordon\",\"sportradar_id\":\"71a2444a-a6b1-4e62-8974-2d858e2c5b73\",\"pandascore_id\":null,\"yahoo_id\":33266,\"last_name\":\"Gordon\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"201\",\"height\":\"6'2\\\"\",\"search_full_name\":\"anthonygordon\",\"birth_date\":\"1996-08-28\",\"espn_id\":4055171},\"2817\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daniel\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rodriguez\",\"depth_chart_position\":null,\"player_id\":\"2817\",\"birth_city\":null,\"fantasy_data_id\":17285,\"years_exp\":0,\"hashtag\":\"#DanielRodriguez-NFL-FA-3\",\"search_first_name\":\"daniel\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Daniel Rodriguez\",\"sportradar_id\":\"fa1ac661-9b71-4dbd-8321-f3c6a7ec79e6\",\"pandascore_id\":null,\"yahoo_id\":29089,\"last_name\":\"Rodriguez\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":700055,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'8\\\"\",\"search_full_name\":\"danielrodriguez\",\"birth_date\":\"1988-01-08\",\"espn_id\":2983134},\"1952\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031087\",\"first_name\":\"Andre\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1554248138033,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hal\",\"depth_chart_position\":null,\"player_id\":\"1952\",\"birth_city\":null,\"fantasy_data_id\":16203,\"years_exp\":6,\"hashtag\":\"#AndreHal-NFL-FA-29\",\"search_first_name\":\"andre\",\"rotowire_id\":9676,\"rotoworld_id\":9628,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Andre Hal\",\"sportradar_id\":\"513caa63-d30d-4cde-b605-8cf825a4ef27\",\"pandascore_id\":null,\"yahoo_id\":27744,\"last_name\":\"Hal\",\"metadata\":null,\"college\":\"Vanderbilt\",\"high_school\":\"Port Allen (LA)\",\"depth_chart_order\":null,\"stats_id\":555644,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'10\\\"\",\"search_full_name\":\"andrehal\",\"birth_date\":\"1992-05-30\",\"espn_id\":17467},\"3210\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033098\",\"first_name\":\"Cardale\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1568835621332,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"3210\",\"birth_city\":null,\"fantasy_data_id\":17971,\"years_exp\":4,\"hashtag\":\"#CardaleJones-NFL-FA-10\",\"search_first_name\":\"cardale\",\"rotowire_id\":11007,\"rotoworld_id\":10325,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Cardale Jones\",\"sportradar_id\":\"92c02ef1-8400-4f5a-9420-6458755e14d4\",\"pandascore_id\":null,\"yahoo_id\":29373,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Ohio State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":653682,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'5\\\"\",\"search_full_name\":\"cardalejones\",\"birth_date\":\"1992-09-29\",\"espn_id\":2976299},\"4148\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033463\",\"first_name\":\"Carl\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606195850513,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lawson\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4148\",\"birth_city\":null,\"fantasy_data_id\":18994,\"years_exp\":3,\"hashtag\":\"#CarlLawson-NFL-CIN-58\",\"search_first_name\":\"carl\",\"rotowire_id\":11926,\"rotoworld_id\":12240,\"active\":true,\"search_rank\":1171,\"age\":25,\"full_name\":\"Carl Lawson\",\"sportradar_id\":\"e75ed538-1888-4864-bd1d-e703d1ce4b5b\",\"pandascore_id\":null,\"yahoo_id\":30229,\"last_name\":\"Lawson\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Milton (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'2\\\"\",\"search_full_name\":\"carllawson\",\"birth_date\":\"1995-06-29\",\"espn_id\":3051911},\"5781\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034867\",\"first_name\":\"Malik\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1599411960135,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turner\",\"depth_chart_position\":\"SWR\",\"player_id\":\"5781\",\"birth_city\":null,\"fantasy_data_id\":20684,\"years_exp\":2,\"hashtag\":\"#MalikTurner-NFL-DAL-17\",\"search_first_name\":\"malik\",\"rotowire_id\":13378,\"rotoworld_id\":13906,\"active\":true,\"search_rank\":363,\"age\":24,\"full_name\":\"Malik Turner\",\"sportradar_id\":\"82a7e1ff-019a-4f4b-aeb6-c41420e44891\",\"pandascore_id\":null,\"yahoo_id\":31777,\"last_name\":\"Turner\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"Sacred Heart-Griffin (IL)\",\"depth_chart_order\":2,\"stats_id\":830686,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'2\\\"\",\"search_full_name\":\"malikturner\",\"birth_date\":\"1996-01-30\",\"espn_id\":3115928},\"4888\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"helfrich\",\"depth_chart_position\":null,\"player_id\":\"4888\",\"birth_city\":null,\"fantasy_data_id\":19786,\"years_exp\":0,\"hashtag\":\"#MarkHelfrich-NFL-FA-0\",\"search_first_name\":\"mark\",\"rotowire_id\":null,\"rotoworld_id\":13066,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Mark Helfrich\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Helfrich\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"markhelfrich\",\"birth_date\":null,\"espn_id\":null},\"6992\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1603405248728,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"warren\",\"depth_chart_position\":null,\"player_id\":\"6992\",\"birth_city\":null,\"fantasy_data_id\":21793,\"years_exp\":0,\"hashtag\":\"#MichaelWarren-NFL-CAR-38\",\"search_first_name\":\"michael\",\"rotowire_id\":14496,\"rotoworld_id\":null,\"active\":true,\"search_rank\":356,\"age\":21,\"full_name\":\"Michael Warren\",\"sportradar_id\":\"4a096c4e-7738-43b3-984c-7ea604a96742\",\"pandascore_id\":null,\"yahoo_id\":32972,\"last_name\":\"Warren\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Central Catholic (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"michaelwarren\",\"birth_date\":\"1998-11-12\",\"espn_id\":4239083},\"1746\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tevita\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"finau\",\"depth_chart_position\":null,\"player_id\":\"1746\",\"birth_city\":null,\"fantasy_data_id\":15736,\"years_exp\":1,\"hashtag\":\"#TevitaFinau-NFL-FA-92\",\"search_first_name\":\"tevita\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Tevita Finau\",\"sportradar_id\":\"d65f9afe-1001-4c56-9b0e-957250f79316\",\"pandascore_id\":null,\"yahoo_id\":26139,\"last_name\":\"Finau\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"283\",\"height\":\"6'4\\\"\",\"search_full_name\":\"tevitafinau\",\"birth_date\":\"1986-01-13\",\"espn_id\":15704},\"3124\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ray\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"horton\",\"depth_chart_position\":null,\"player_id\":\"3124\",\"birth_city\":null,\"fantasy_data_id\":17878,\"years_exp\":0,\"hashtag\":\"#RayHorton-NFL-FA-0\",\"search_first_name\":\"ray\",\"rotowire_id\":null,\"rotoworld_id\":9300,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Ray Horton\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Horton\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"rayhorton\",\"birth_date\":null,\"espn_id\":null},\"2041\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Torrence\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allen\",\"depth_chart_position\":null,\"player_id\":\"2041\",\"birth_city\":null,\"fantasy_data_id\":16333,\"years_exp\":2,\"hashtag\":\"#TorrenceAllen-NFL-FA-83\",\"search_first_name\":\"torrence\",\"rotowire_id\":10061,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Torrence Allen\",\"sportradar_id\":\"ec251689-808b-4f35-b1f7-743d4a37722a\",\"pandascore_id\":null,\"yahoo_id\":27844,\"last_name\":\"Allen\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":794253,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"torrenceallen\",\"birth_date\":\"1991-03-31\",\"espn_id\":16962},\"2286\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Andrew\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"furney\",\"depth_chart_position\":null,\"player_id\":\"2286\",\"birth_city\":null,\"fantasy_data_id\":16719,\"years_exp\":1,\"hashtag\":\"#AndrewFurney-NFL-FA-8\",\"search_first_name\":\"andrew\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Andrew Furney\",\"sportradar_id\":\"4b482230-621c-4b7f-8d5d-cf50da82e7c4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Furney\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":560191,\"injury_start_date\":null,\"number\":8,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"5'10\\\"\",\"search_full_name\":\"andrewfurney\",\"birth_date\":\"1991-06-23\",\"espn_id\":17492},\"4211\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033961\",\"first_name\":\"Dylan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1544580937621,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"donahue\",\"depth_chart_position\":null,\"player_id\":\"4211\",\"birth_city\":null,\"fantasy_data_id\":19057,\"years_exp\":3,\"hashtag\":\"#DylanDonahue-NFL-FA-49\",\"search_first_name\":\"dylan\",\"rotowire_id\":11912,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Dylan Donahue\",\"sportradar_id\":\"139d8533-cbd7-4a41-9567-f1ce1c641311\",\"pandascore_id\":null,\"yahoo_id\":30294,\"last_name\":\"Donahue\",\"metadata\":null,\"college\":\"West Georgia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'3\\\"\",\"search_full_name\":\"dylandonahue\",\"birth_date\":\"1992-08-20\",\"espn_id\":2584628},\"WAS\":{\"team\":\"WAS\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"WAS\",\"last_name\":\"Football Team\",\"injury_status\":null,\"first_name\":\"Washington\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"1294\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"chapman\",\"depth_chart_position\":null,\"player_id\":\"1294\",\"birth_city\":null,\"fantasy_data_id\":14760,\"years_exp\":4,\"hashtag\":\"#JoshChapman-NFL-FA-96\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Josh Chapman\",\"sportradar_id\":\"2f0190fc-16ce-486c-bcb5-f752ed345275\",\"pandascore_id\":null,\"yahoo_id\":25846,\"last_name\":\"Chapman\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"316\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshchapman\",\"birth_date\":\"1989-06-10\",\"espn_id\":15039},\"2050\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031277\",\"first_name\":\"Branden\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1535844652782,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"oliver\",\"depth_chart_position\":null,\"player_id\":\"2050\",\"birth_city\":null,\"fantasy_data_id\":16345,\"years_exp\":6,\"hashtag\":\"#BrandenOliver-NFL-FA-40\",\"search_first_name\":\"branden\",\"rotowire_id\":9550,\"rotoworld_id\":10198,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Branden Oliver\",\"sportradar_id\":\"7dac43ce-3a74-4033-b63f-bf9171a24a55\",\"pandascore_id\":null,\"yahoo_id\":28272,\"last_name\":\"Oliver\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Miami Southridge (FL)\",\"depth_chart_order\":null,\"stats_id\":506492,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'8\\\"\",\"search_full_name\":\"brandenoliver\",\"birth_date\":\"1991-05-07\",\"espn_id\":17452},\"256\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Rian\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lindell\",\"depth_chart_position\":null,\"player_id\":\"256\",\"birth_city\":null,\"fantasy_data_id\":6410,\"years_exp\":14,\"hashtag\":\"#RianLindell-NFL-FA-4\",\"search_first_name\":\"rian\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":40,\"full_name\":\"Rian Lindell\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Lindell\",\"metadata\":null,\"college\":\"Washington State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"233\",\"height\":\"6'3\\\"\",\"search_full_name\":\"rianlindell\",\"birth_date\":\"1977-01-20\",\"espn_id\":null},\"1216\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029530\",\"first_name\":\"Justin\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1571790322307,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bethel\",\"depth_chart_position\":\"FS\",\"player_id\":\"1216\",\"birth_city\":null,\"fantasy_data_id\":14469,\"years_exp\":8,\"hashtag\":\"#JustinBethel-NFL-NE-29\",\"search_first_name\":\"justin\",\"rotowire_id\":8306,\"rotoworld_id\":7622,\"active\":true,\"search_rank\":688,\"age\":30,\"full_name\":\"Justin Bethel\",\"sportradar_id\":\"f403d099-29d4-43cd-bf79-4aeeb8dc6cd3\",\"pandascore_id\":null,\"yahoo_id\":25887,\"last_name\":\"Bethel\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Presbyterian\",\"high_school\":\"Blythewood (SC)\",\"depth_chart_order\":2,\"stats_id\":461022,\"injury_start_date\":null,\"number\":29,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"justinbethel\",\"birth_date\":\"1990-06-17\",\"espn_id\":15089},\"3126\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Terry\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"robiskie\",\"depth_chart_position\":null,\"player_id\":\"3126\",\"birth_city\":null,\"fantasy_data_id\":17880,\"years_exp\":0,\"hashtag\":\"#TerryRobiskie-NFL-FA-0\",\"search_first_name\":\"terry\",\"rotowire_id\":null,\"rotoworld_id\":11241,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Terry Robiskie\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Robiskie\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"terryrobiskie\",\"birth_date\":null,\"espn_id\":null},\"1154\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"broyles\",\"depth_chart_position\":null,\"player_id\":\"1154\",\"birth_city\":null,\"fantasy_data_id\":14203,\"years_exp\":4,\"hashtag\":\"#RyanBroyles-NFL-FA-84\",\"search_first_name\":\"ryan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Ryan Broyles\",\"sportradar_id\":\"a84c6342-3333-4af7-bf29-ea954e156835\",\"pandascore_id\":null,\"yahoo_id\":25764,\"last_name\":\"Broyles\",\"metadata\":null,\"college\":\"Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":381163,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"ryanbroyles\",\"birth_date\":\"1988-04-09\",\"espn_id\":14919},\"4981\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034837\",\"first_name\":\"Calvin\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606512028026,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ridley\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4981\",\"birth_city\":null,\"fantasy_data_id\":19802,\"years_exp\":2,\"hashtag\":\"#CalvinRidley-NFL-ATL-18\",\"search_first_name\":\"calvin\",\"rotowire_id\":12616,\"rotoworld_id\":13137,\"active\":true,\"search_rank\":37,\"age\":25,\"full_name\":\"Calvin Ridley\",\"sportradar_id\":\"926e2674-52d6-4cec-9991-46ee85cc8cfd\",\"pandascore_id\":null,\"yahoo_id\":30996,\"last_name\":\"Ridley\",\"metadata\":{\"injury_override_regular_2020_10\":\"Out\"},\"college\":\"Alabama\",\"high_school\":\"Monarch (FL)\",\"depth_chart_order\":1,\"stats_id\":884013,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"calvinridley\",\"birth_date\":\"1994-12-20\",\"espn_id\":3925357},\"4440\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Paul\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534639807758,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"boyettejr\",\"depth_chart_position\":null,\"player_id\":\"4440\",\"birth_city\":null,\"fantasy_data_id\":19301,\"years_exp\":3,\"hashtag\":\"#PaulBoyetteJr-NFL-FA-91\",\"search_first_name\":\"paul\",\"rotowire_id\":12047,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Paul Boyette Jr.\",\"sportradar_id\":\"4e200230-c115-46ac-a560-da77f9001567\",\"pandascore_id\":null,\"yahoo_id\":30624,\"last_name\":\"Boyette Jr.\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"paulboyettejr\",\"birth_date\":\"1993-12-16\",\"espn_id\":2971696},\"4614\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033773\",\"first_name\":\"Riley\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1537319403953,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccarron\",\"depth_chart_position\":null,\"player_id\":\"4614\",\"birth_city\":null,\"fantasy_data_id\":19504,\"years_exp\":3,\"hashtag\":\"#RileyMcCarron-NFL-FA-17\",\"search_first_name\":\"riley\",\"rotowire_id\":12307,\"rotoworld_id\":12896,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Riley McCarron\",\"sportradar_id\":\"ab9cf0fc-f4e4-4d18-8132-97e518eb14f3\",\"pandascore_id\":null,\"yahoo_id\":30808,\"last_name\":\"McCarron\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":702925,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"183\",\"height\":\"5'9\\\"\",\"search_full_name\":\"rileymccarron\",\"birth_date\":\"1993-06-16\",\"espn_id\":2988624},\"2782\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Niko\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":null,\"player_id\":\"2782\",\"birth_city\":null,\"fantasy_data_id\":17250,\"years_exp\":0,\"hashtag\":\"#NikoDavis-NFL-FA-67\",\"search_first_name\":\"niko\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Niko Davis\",\"sportradar_id\":\"d589f707-c40d-44b2-8c44-bf78e2d222bc\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Davis\",\"metadata\":null,\"college\":\"Liberty\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":67,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"285\",\"height\":\"6'5\\\"\",\"search_full_name\":\"nikodavis\",\"birth_date\":\"1990-06-18\",\"espn_id\":2575185},\"4237\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033586\",\"first_name\":\"Marquez\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1531878301459,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"4237\",\"birth_city\":null,\"fantasy_data_id\":19083,\"years_exp\":3,\"hashtag\":\"#MarquezWhite-NFL-FA-39\",\"search_first_name\":\"marquez\",\"rotowire_id\":12035,\"rotoworld_id\":12418,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Marquez White\",\"sportradar_id\":\"db4eadbd-ef43-444c-9e33-1ee781dc9965\",\"pandascore_id\":null,\"yahoo_id\":30329,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":742157,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"194\",\"height\":\"6'0\\\"\",\"search_full_name\":\"marquezwhite\",\"birth_date\":\"1994-10-29\",\"espn_id\":3045378},\"3573\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032593\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567195556672,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wilds\",\"depth_chart_position\":null,\"player_id\":\"3573\",\"birth_city\":null,\"fantasy_data_id\":18349,\"years_exp\":4,\"hashtag\":\"#BrandonWilds-NFL-FA-35\",\"search_first_name\":\"brandon\",\"rotowire_id\":10898,\"rotoworld_id\":11682,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Brandon Wilds\",\"sportradar_id\":\"abeef681-4be7-4ff3-9076-c72ec5a1b2e4\",\"pandascore_id\":null,\"yahoo_id\":29661,\"last_name\":\"Wilds\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":604939,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"227\",\"height\":\"6'0\\\"\",\"search_full_name\":\"brandonwilds\",\"birth_date\":\"1993-07-22\",\"espn_id\":2577692},\"1191\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1524271501245,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":null,\"player_id\":\"1191\",\"birth_city\":null,\"fantasy_data_id\":14370,\"years_exp\":8,\"hashtag\":\"#CoreyWhite-NFL-FA-38\",\"search_first_name\":\"corey\",\"rotowire_id\":8351,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Corey White\",\"sportradar_id\":\"ccf1d49a-deda-4254-abd2-1ee79eb34c13\",\"pandascore_id\":null,\"yahoo_id\":25872,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Dunwoody (GA)\",\"depth_chart_order\":null,\"stats_id\":459492,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coreywhite\",\"birth_date\":\"1990-05-09\",\"espn_id\":15086},\"1399\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jacob\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schum\",\"depth_chart_position\":null,\"player_id\":\"1399\",\"birth_city\":null,\"fantasy_data_id\":14941,\"years_exp\":7,\"hashtag\":\"#JacobSchum-NFL-FA-10\",\"search_first_name\":\"jacob\",\"rotowire_id\":10142,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jacob Schum\",\"sportradar_id\":\"cdfb58eb-2920-47d4-9c24-df5de536450e\",\"pandascore_id\":null,\"yahoo_id\":26613,\"last_name\":\"Schum\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Frontier (NY)\",\"depth_chart_order\":null,\"stats_id\":544154,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jacobschum\",\"birth_date\":\"1989-01-11\",\"espn_id\":15774},\"1080\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1534082406005,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hughes\",\"depth_chart_position\":null,\"player_id\":\"1080\",\"birth_city\":null,\"fantasy_data_id\":13896,\"years_exp\":8,\"hashtag\":\"#JohnHughes-NFL-FA-91\",\"search_first_name\":\"john\",\"rotowire_id\":8221,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"John Hughes\",\"sportradar_id\":\"51e6e64c-7150-4588-847a-44b9ce7e0903\",\"pandascore_id\":null,\"yahoo_id\":25797,\"last_name\":\"Hughes\",\"metadata\":null,\"college\":\"Cincinnati\",\"high_school\":\"Lincoln (OH)\",\"depth_chart_order\":null,\"stats_id\":382267,\"injury_start_date\":null,\"number\":91,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"320\",\"height\":\"6'2\\\"\",\"search_full_name\":\"johnhughes\",\"birth_date\":\"1989-04-27\",\"espn_id\":14954},\"3756\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1508894701681,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"disalvo\",\"depth_chart_position\":null,\"player_id\":\"3756\",\"birth_city\":null,\"fantasy_data_id\":18568,\"years_exp\":4,\"hashtag\":\"#RyanDiSalvo-NFL-FA-0\",\"search_first_name\":\"ryan\",\"rotowire_id\":11584,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ryan DiSalvo\",\"sportradar_id\":\"560dbfe1-923d-49ef-a5dd-a24b2f6b1f5d\",\"pandascore_id\":null,\"yahoo_id\":29826,\"last_name\":\"DiSalvo\",\"metadata\":null,\"college\":\"San Jose State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryandisalvo\",\"birth_date\":\"1994-01-20\",\"espn_id\":2981193},\"2874\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Leon\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mackey\",\"depth_chart_position\":null,\"player_id\":\"2874\",\"birth_city\":null,\"fantasy_data_id\":17342,\"years_exp\":1,\"hashtag\":\"#LeonMackey-NFL-FA-78\",\"search_first_name\":\"leon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Leon Mackey\",\"sportradar_id\":\"e4192fdc-8e9d-43d1-91f0-0ca77f673920\",\"pandascore_id\":null,\"yahoo_id\":28367,\"last_name\":\"Mackey\",\"metadata\":null,\"college\":\"Texas Tech\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"260\",\"height\":\"6'5\\\"\",\"search_full_name\":\"leonmackey\",\"birth_date\":\"1989-02-28\",\"espn_id\":2577644},\"2383\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032059\",\"first_name\":\"P.J.\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1600382117194,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":\"LCB\",\"player_id\":\"2383\",\"birth_city\":null,\"fantasy_data_id\":16839,\"years_exp\":5,\"hashtag\":\"#PJWilliams-NFL-NO-26\",\"search_first_name\":\"pj\",\"rotowire_id\":10409,\"rotoworld_id\":10449,\"active\":true,\"search_rank\":878,\"age\":27,\"full_name\":\"P.J. Williams\",\"sportradar_id\":\"36538da8-9ac7-4f7d-beb4-8b773da4a080\",\"pandascore_id\":null,\"yahoo_id\":28466,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Vanguard (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"196\",\"height\":\"6'0\\\"\",\"search_full_name\":\"pjwilliams\",\"birth_date\":\"1993-06-01\",\"espn_id\":2977661},\"7224\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DB\"],\"news_updated\":1606345803279,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"franklin\",\"depth_chart_position\":\"SS\",\"player_id\":\"7224\",\"birth_city\":null,\"fantasy_data_id\":22226,\"years_exp\":0,\"hashtag\":\"#SamFranklin-NFL-CAR-42\",\"search_first_name\":\"sam\",\"rotowire_id\":14931,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1952,\"age\":24,\"full_name\":\"Sam Franklin\",\"sportradar_id\":\"3b1bb0da-607a-4502-8855-8ab5095334da\",\"pandascore_id\":null,\"yahoo_id\":33137,\"last_name\":\"Franklin\",\"metadata\":null,\"college\":\"Temple\",\"high_school\":\"Citrus (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'3\\\"\",\"search_full_name\":\"samfranklin\",\"birth_date\":\"1996-02-02\",\"espn_id\":4044133},\"6374\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035484\",\"first_name\":\"Drew\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1568813121831,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"belcher\",\"depth_chart_position\":\"TE\",\"player_id\":\"6374\",\"birth_city\":null,\"fantasy_data_id\":21319,\"years_exp\":1,\"hashtag\":\"#DrewBelcher-NFL-FA-82\",\"search_first_name\":\"drew\",\"rotowire_id\":14041,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Drew Belcher\",\"sportradar_id\":\"7467134f-8eb3-4fde-ac64-e2fc9f9789db\",\"pandascore_id\":null,\"yahoo_id\":32153,\"last_name\":\"Belcher\",\"metadata\":null,\"college\":\"Maine\",\"high_school\":null,\"depth_chart_order\":5,\"stats_id\":830271,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'3\\\"\",\"search_full_name\":\"drewbelcher\",\"birth_date\":\"1996-04-18\",\"espn_id\":3120540},\"2025\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030669\",\"first_name\":\"Albert\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1596641112345,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"wilson\",\"depth_chart_position\":\"LWR\",\"player_id\":\"2025\",\"birth_city\":null,\"fantasy_data_id\":16308,\"years_exp\":6,\"hashtag\":\"#AlbertWilson-NFL-MIA-15\",\"search_first_name\":\"albert\",\"rotowire_id\":9491,\"rotoworld_id\":9572,\"active\":true,\"search_rank\":804,\"age\":28,\"full_name\":\"Albert Wilson\",\"sportradar_id\":\"2958ea86-e2dc-4719-93e5-cc9d093ca963\",\"pandascore_id\":null,\"yahoo_id\":28046,\"last_name\":\"Wilson\",\"metadata\":null,\"college\":\"Georgia State\",\"high_school\":\"Port St. Lucie (FL)\",\"depth_chart_order\":3,\"stats_id\":556955,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'9\\\"\",\"search_full_name\":\"albertwilson\",\"birth_date\":\"1992-07-12\",\"espn_id\":17051},\"6160\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035016\",\"first_name\":\"Josiah\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1599605455494,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tauaefa\",\"depth_chart_position\":\"RILB\",\"player_id\":\"6160\",\"birth_city\":null,\"fantasy_data_id\":20958,\"years_exp\":1,\"hashtag\":\"#JosiahTauaefa-NFL-FA-0\",\"search_first_name\":\"josiah\",\"rotowire_id\":13487,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1604,\"age\":23,\"full_name\":\"Josiah Tauaefa\",\"sportradar_id\":\"18750e3f-5625-4253-ac44-61c6b8fc07d4\",\"pandascore_id\":null,\"yahoo_id\":32241,\"last_name\":\"Tauaefa\",\"metadata\":null,\"college\":\"Texas-San Antonio\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":881829,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"josiahtauaefa\",\"birth_date\":\"1997-03-05\",\"espn_id\":3914595},\"1707\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Spencer\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lanning\",\"depth_chart_position\":null,\"player_id\":\"1707\",\"birth_city\":null,\"fantasy_data_id\":15603,\"years_exp\":9,\"hashtag\":\"#SpencerLanning-NFL-FA-4\",\"search_first_name\":\"spencer\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Spencer Lanning\",\"sportradar_id\":\"4ca3e1bb-6604-41df-b86f-4b07c758421c\",\"pandascore_id\":null,\"yahoo_id\":25150,\"last_name\":\"Lanning\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"York Comprehensive (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"spencerlanning\",\"birth_date\":\"1988-05-21\",\"espn_id\":14342},\"3114\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dean\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"spanos\",\"depth_chart_position\":null,\"player_id\":\"3114\",\"birth_city\":null,\"fantasy_data_id\":17867,\"years_exp\":0,\"hashtag\":\"#DeanSpanos-NFL-FA-0\",\"search_first_name\":\"dean\",\"rotowire_id\":null,\"rotoworld_id\":9467,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Dean Spanos\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Spanos\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"deanspanos\",\"birth_date\":null,\"espn_id\":null},\"199\":{\"position\":\"LS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0023177\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"LS\"],\"news_updated\":1569283535171,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"condo\",\"depth_chart_position\":null,\"player_id\":\"199\",\"birth_city\":null,\"fantasy_data_id\":5083,\"years_exp\":15,\"hashtag\":\"#JonCondo-NFL-FA-59\",\"search_first_name\":\"jon\",\"rotowire_id\":7122,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":39,\"full_name\":\"Jon Condo\",\"sportradar_id\":\"9c6d7765-03dd-4266-aeaa-926e5a85235f\",\"pandascore_id\":null,\"yahoo_id\":7455,\"last_name\":\"Condo\",\"metadata\":null,\"college\":\"Maryland\",\"high_school\":\"Philipsburg-Osceola (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"joncondo\",\"birth_date\":\"1981-08-26\",\"espn_id\":9276},\"2333\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032234\",\"first_name\":\"Laken\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1567100438861,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"tomlinson\",\"depth_chart_position\":\"LG\",\"player_id\":\"2333\",\"birth_city\":null,\"fantasy_data_id\":16789,\"years_exp\":5,\"hashtag\":\"#LakenTomlinson-NFL-SF-75\",\"search_first_name\":\"laken\",\"rotowire_id\":10269,\"rotoworld_id\":10454,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Laken Tomlinson\",\"sportradar_id\":\"d0b7699f-5e18-4631-813d-2f709ee4b281\",\"pandascore_id\":null,\"yahoo_id\":28416,\"last_name\":\"Tomlinson\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":\"Lane Technical (IL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"312\",\"height\":\"6'3\\\"\",\"search_full_name\":\"lakentomlinson\",\"birth_date\":\"1992-02-09\",\"espn_id\":2512477},\"929\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028069\",\"first_name\":\"Davon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1539104710413,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"house\",\"depth_chart_position\":null,\"player_id\":\"929\",\"birth_city\":null,\"fantasy_data_id\":13236,\"years_exp\":9,\"hashtag\":\"#DavonHouse-NFL-FA-31\",\"search_first_name\":\"davon\",\"rotowire_id\":7518,\"rotoworld_id\":6574,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Davon House\",\"sportradar_id\":\"bb6c7928-54f1-43bd-bf14-f2645644dda9\",\"pandascore_id\":null,\"yahoo_id\":24918,\"last_name\":\"House\",\"metadata\":null,\"college\":\"New Mexico State\",\"high_school\":\"Palmdale (CA)\",\"depth_chart_order\":null,\"stats_id\":410959,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"195\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davonhouse\",\"birth_date\":\"1989-07-10\",\"espn_id\":14157},\"4218\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033292\",\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1605471012351,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":\"LWR\",\"player_id\":\"4218\",\"birth_city\":null,\"fantasy_data_id\":19064,\"years_exp\":3,\"hashtag\":\"#TrentTaylor-NFL-SF-15\",\"search_first_name\":\"trent\",\"rotowire_id\":11881,\"rotoworld_id\":12305,\"active\":true,\"search_rank\":206,\"age\":26,\"full_name\":\"Trent Taylor\",\"sportradar_id\":\"3e2e74e9-18a8-4275-9437-b275db27e2ff\",\"pandascore_id\":null,\"yahoo_id\":30290,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"Louisiana Tech\",\"high_school\":\"Evangel Christian Academy (LA)\",\"depth_chart_order\":2,\"stats_id\":733849,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"SF\",\"practice_participation\":null,\"weight\":\"181\",\"height\":\"5'8\\\"\",\"search_full_name\":\"trenttaylor\",\"birth_date\":\"1994-04-30\",\"espn_id\":3040569},\"7515\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sergio\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1606258855540,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"castillo\",\"depth_chart_position\":\"K\",\"player_id\":\"7515\",\"birth_city\":null,\"fantasy_data_id\":null,\"years_exp\":6,\"hashtag\":\"#SergioCastillo-NFL-NYJ-6\",\"search_first_name\":\"sergio\",\"rotowire_id\":9844,\"rotoworld_id\":null,\"active\":true,\"search_rank\":null,\"age\":30,\"full_name\":\"Sergio Castillo\",\"sportradar_id\":\"1f2c7574-f56a-47b3-bd75-5dd0d5ff8d93\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Castillo\",\"metadata\":null,\"college\":\"West Texas A&M\",\"high_school\":\"La Joya (TX)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"195\",\"height\":\"5'11\\\"\",\"search_full_name\":\"sergiocastillo\",\"birth_date\":\"1990-11-01\",\"espn_id\":null},\"2446\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031585\",\"first_name\":\"MyCole\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606522827688,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pruitt\",\"depth_chart_position\":\"TE\",\"player_id\":\"2446\",\"birth_city\":null,\"fantasy_data_id\":16903,\"years_exp\":5,\"hashtag\":\"#MyColePruitt-NFL-TEN-85\",\"search_first_name\":\"mycole\",\"rotowire_id\":10251,\"rotoworld_id\":null,\"active\":true,\"search_rank\":444,\"age\":28,\"full_name\":\"MyCole Pruitt\",\"sportradar_id\":\"f22b34cf-6ecf-4522-9c77-1da275dfda7d\",\"pandascore_id\":null,\"yahoo_id\":28531,\"last_name\":\"Pruitt\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Southern Illinois\",\"high_school\":\"Kirkwood (MO)\",\"depth_chart_order\":4,\"stats_id\":552586,\"injury_start_date\":null,\"number\":85,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"243\",\"height\":\"6'2\\\"\",\"search_full_name\":\"mycolepruitt\",\"birth_date\":\"1992-03-24\",\"espn_id\":2508256},\"6333\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035133\",\"first_name\":\"Keisean\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1604104540968,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"nixon\",\"depth_chart_position\":\"RCB\",\"player_id\":\"6333\",\"birth_city\":null,\"fantasy_data_id\":21239,\"years_exp\":1,\"hashtag\":\"#KeiseanNixon-NFL-LV-22\",\"search_first_name\":\"keisean\",\"rotowire_id\":13701,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1701,\"age\":23,\"full_name\":\"Keisean Nixon\",\"sportradar_id\":\"e94ac14d-0122-4dc8-ad20-b71226cb8cfe\",\"pandascore_id\":null,\"yahoo_id\":32348,\"last_name\":\"Nixon\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":\"Salesian (CA)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keiseannixon\",\"birth_date\":\"1997-06-22\",\"espn_id\":4259493},\"2653\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032089\",\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1571521825824,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parker\",\"depth_chart_position\":null,\"player_id\":\"2653\",\"birth_city\":null,\"fantasy_data_id\":17121,\"years_exp\":5,\"hashtag\":\"#BrianParker-NFL-FA-89\",\"search_first_name\":\"brian\",\"rotowire_id\":10661,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Brian Parker\",\"sportradar_id\":\"c5606f69-f550-4b4a-b61a-f1f71142a32f\",\"pandascore_id\":null,\"yahoo_id\":28688,\"last_name\":\"Parker\",\"metadata\":null,\"college\":\"Albany, N.Y.\",\"high_school\":\"McQuaid Jesuit (NY)\",\"depth_chart_order\":null,\"stats_id\":556849,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"265\",\"height\":\"6'4\\\"\",\"search_full_name\":\"brianparker\",\"birth_date\":\"1992-05-30\",\"espn_id\":2508328},\"1369\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030112\",\"first_name\":\"Tommy\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567194957370,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bohanon\",\"depth_chart_position\":null,\"player_id\":\"1369\",\"birth_city\":null,\"fantasy_data_id\":14891,\"years_exp\":7,\"hashtag\":\"#TommyBohanon-NFL-FA-48\",\"search_first_name\":\"tommy\",\"rotowire_id\":8987,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Tommy Bohanon\",\"sportradar_id\":\"97c96dce-9b33-4d0e-ba01-5eb629192d19\",\"pandascore_id\":null,\"yahoo_id\":26838,\"last_name\":\"Bohanon\",\"metadata\":null,\"college\":\"Wake Forest\",\"high_school\":\"North Fort Myers (FL)\",\"depth_chart_order\":null,\"stats_id\":496208,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'1\\\"\",\"search_full_name\":\"tommybohanon\",\"birth_date\":\"1990-09-10\",\"espn_id\":15973},\"6858\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"James\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1587836142898,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lynch\",\"depth_chart_position\":\"DT\",\"player_id\":\"6858\",\"birth_city\":null,\"fantasy_data_id\":21894,\"years_exp\":0,\"hashtag\":\"#JamesLynch-NFL-MIN-92\",\"search_first_name\":\"james\",\"rotowire_id\":14499,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1818,\"age\":21,\"full_name\":\"James Lynch\",\"sportradar_id\":\"ce8b21f7-6f93-40e6-8068-0432e10d855f\",\"pandascore_id\":null,\"yahoo_id\":32800,\"last_name\":\"Lynch\",\"metadata\":null,\"college\":\"Baylor\",\"high_school\":\"Round Rock (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":92,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"295\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jameslynch\",\"birth_date\":\"1999-01-20\",\"espn_id\":4259181},\"5527\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034224\",\"first_name\":\"Ramon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"richards\",\"depth_chart_position\":null,\"player_id\":\"5527\",\"birth_city\":null,\"fantasy_data_id\":20573,\"years_exp\":2,\"hashtag\":\"#RamonRichards-NFL-FA-47\",\"search_first_name\":\"ramon\",\"rotowire_id\":13146,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ramon Richards\",\"sportradar_id\":\"cc5a9d4b-7838-470d-8c36-182e97ff161d\",\"pandascore_id\":null,\"yahoo_id\":31448,\"last_name\":\"Richards\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"5'11\\\"\",\"search_full_name\":\"ramonrichards\",\"birth_date\":\"1995-11-29\",\"espn_id\":3122442},\"4720\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033845\",\"first_name\":\"Dominique\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1573603256747,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hatfield\",\"depth_chart_position\":null,\"player_id\":\"4720\",\"birth_city\":null,\"fantasy_data_id\":19628,\"years_exp\":3,\"hashtag\":\"#DominiqueHatfield-NFL-FA-0\",\"search_first_name\":\"dominique\",\"rotowire_id\":12317,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Dominique Hatfield\",\"sportradar_id\":\"2cf86b24-50e1-4047-83cb-afd82b17aa91\",\"pandascore_id\":null,\"yahoo_id\":30865,\"last_name\":\"Hatfield\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":733254,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"180\",\"height\":\"5'10\\\"\",\"search_full_name\":\"dominiquehatfield\",\"birth_date\":\"1994-12-13\",\"espn_id\":3052502},\"2288\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chas\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"alecxih\",\"depth_chart_position\":null,\"player_id\":\"2288\",\"birth_city\":null,\"fantasy_data_id\":16725,\"years_exp\":1,\"hashtag\":\"#ChasAlecxih-NFL-FA-65\",\"search_first_name\":\"chas\",\"rotowire_id\":8472,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Chas Alecxih\",\"sportradar_id\":\"1fde3c16-427a-4b51-9d0c-904a5d7a3e6d\",\"pandascore_id\":null,\"yahoo_id\":26268,\"last_name\":\"Alecxih\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":65,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"304\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chasalecxih\",\"birth_date\":\"1989-02-10\",\"espn_id\":15353},\"909\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028620\",\"first_name\":\"Mark\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1520893801859,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"herzlich\",\"depth_chart_position\":null,\"player_id\":\"909\",\"birth_city\":null,\"fantasy_data_id\":13140,\"years_exp\":9,\"hashtag\":\"#MarkHerzlich-NFL-FA-44\",\"search_first_name\":\"mark\",\"rotowire_id\":7479,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Mark Herzlich\",\"sportradar_id\":\"30be69a5-f203-49dc-a354-19e4733a80da\",\"pandascore_id\":null,\"yahoo_id\":25509,\"last_name\":\"Herzlich\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Conestoga (PA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'4\\\"\",\"search_full_name\":\"markherzlich\",\"birth_date\":\"1987-09-01\",\"espn_id\":14262},\"4712\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Johnny\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ragin\",\"depth_chart_position\":null,\"player_id\":\"4712\",\"birth_city\":null,\"fantasy_data_id\":19619,\"years_exp\":0,\"hashtag\":\"#JohnnyRagin-NFL-TEN-49\",\"search_first_name\":\"johnny\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Johnny Ragin\",\"sportradar_id\":\"746168bc-d529-4fb9-bcd1-3fe9889b0027\",\"pandascore_id\":null,\"yahoo_id\":30831,\"last_name\":\"Ragin\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Oregon\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":49,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"johnnyragin\",\"birth_date\":\"1995-02-08\",\"espn_id\":3117315},\"7160\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ledarius\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":null,\"player_id\":\"7160\",\"birth_city\":null,\"fantasy_data_id\":22161,\"years_exp\":0,\"hashtag\":\"#LedariusMack-NFL-CHI-57\",\"search_first_name\":\"ledarius\",\"rotowire_id\":14979,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ledarius Mack\",\"sportradar_id\":\"306d7e5a-f0f6-4b30-8484-5d933361278e\",\"pandascore_id\":null,\"yahoo_id\":33176,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Buffalo\",\"high_school\":\"Lincoln Park Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":57,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"ledariusmack\",\"birth_date\":\"1996-10-03\",\"espn_id\":4257195},\"6527\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035151\",\"first_name\":\"Austin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"droogsma\",\"depth_chart_position\":null,\"player_id\":\"6527\",\"birth_city\":null,\"fantasy_data_id\":21518,\"years_exp\":1,\"hashtag\":\"#AustinDroogsma-NFL-FA-66\",\"search_first_name\":\"austin\",\"rotowire_id\":14169,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Austin Droogsma\",\"sportradar_id\":\"7c218b81-76f2-45a1-b4a1-ac4e7a987c6c\",\"pandascore_id\":null,\"yahoo_id\":32382,\"last_name\":\"Droogsma\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"345\",\"height\":\"6'4\\\"\",\"search_full_name\":\"austindroogsma\",\"birth_date\":\"1995-03-04\",\"espn_id\":4422420},\"4282\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033793\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1599193555149,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"levin\",\"depth_chart_position\":null,\"player_id\":\"4282\",\"birth_city\":null,\"fantasy_data_id\":19128,\"years_exp\":3,\"hashtag\":\"#CoreyLevin-NFL-NE-60\",\"search_first_name\":\"corey\",\"rotowire_id\":11804,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Corey Levin\",\"sportradar_id\":\"e5266a8b-b610-4c5e-9bee-7269917ffd6f\",\"pandascore_id\":null,\"yahoo_id\":30330,\"last_name\":\"Levin\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Chattanooga\",\"high_school\":\"Dacula (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'4\\\"\",\"search_full_name\":\"coreylevin\",\"birth_date\":\"1994-08-12\",\"espn_id\":2973637},\"789\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Curtis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"marsh\",\"depth_chart_position\":null,\"player_id\":\"789\",\"birth_city\":null,\"fantasy_data_id\":12711,\"years_exp\":9,\"hashtag\":\"#CurtisMarsh-NFL-FA-32\",\"search_first_name\":\"curtis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Curtis Marsh\",\"sportradar_id\":\"4fc319fc-3b0f-4b32-a3f7-43a4d03e4e72\",\"pandascore_id\":null,\"yahoo_id\":24877,\"last_name\":\"Marsh\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":\"Royal (CA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'1\\\"\",\"search_full_name\":\"curtismarsh\",\"birth_date\":\"1988-03-01\",\"espn_id\":14031},\"3443\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"swain\",\"depth_chart_position\":null,\"player_id\":\"3443\",\"birth_city\":null,\"fantasy_data_id\":18207,\"years_exp\":1,\"hashtag\":\"#ChrisSwain-NFL-FA-31\",\"search_first_name\":\"chris\",\"rotowire_id\":11490,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chris Swain\",\"sportradar_id\":\"1a6927a9-1a96-4441-95ce-4833350a011c\",\"pandascore_id\":null,\"yahoo_id\":29531,\"last_name\":\"Swain\",\"metadata\":null,\"college\":\"Navy\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"242\",\"height\":\"6'0\\\"\",\"search_full_name\":\"chrisswain\",\"birth_date\":\"1992-11-17\",\"espn_id\":2970472},\"3364\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032438\",\"first_name\":\"Maurice\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1595909126501,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"canady\",\"depth_chart_position\":null,\"player_id\":\"3364\",\"birth_city\":null,\"fantasy_data_id\":18125,\"years_exp\":4,\"hashtag\":\"#MauriceCanady-NFL-DAL-28\",\"search_first_name\":\"maurice\",\"rotowire_id\":10936,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1035,\"age\":26,\"full_name\":\"Maurice Canady\",\"sportradar_id\":\"32884cc4-ff90-42d0-b02b-f9a7df6ce6fb\",\"pandascore_id\":null,\"yahoo_id\":29443,\"last_name\":\"Canady\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Varina (VA)\",\"depth_chart_order\":null,\"stats_id\":693989,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"6'1\\\"\",\"search_full_name\":\"mauricecanady\",\"birth_date\":\"1994-05-26\",\"espn_id\":2979655},\"4861\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kent\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1525231801303,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"taylor\",\"depth_chart_position\":null,\"player_id\":\"4861\",\"birth_city\":null,\"fantasy_data_id\":19761,\"years_exp\":3,\"hashtag\":\"#KentTaylor-NFL-FA-86\",\"search_first_name\":\"kent\",\"rotowire_id\":12601,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Kent Taylor\",\"sportradar_id\":\"69443f0b-8385-4eeb-871b-cbab8f1dddf0\",\"pandascore_id\":null,\"yahoo_id\":30957,\"last_name\":\"Taylor\",\"metadata\":null,\"college\":\"UTEP\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":694628,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'6\\\"\",\"search_full_name\":\"kenttaylor\",\"birth_date\":null,\"espn_id\":2980119},\"5076\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034808\",\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1599612313407,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"RB\",\"player_id\":\"5076\",\"birth_city\":null,\"fantasy_data_id\":19957,\"years_exp\":2,\"hashtag\":\"#JohnKelly-NFL-CLE-42\",\"search_first_name\":\"john\",\"rotowire_id\":12555,\"rotoworld_id\":13212,\"active\":true,\"search_rank\":485,\"age\":24,\"full_name\":\"John Kelly\",\"sportradar_id\":\"27156b0b-e82d-4d02-8a04-ca1891d77110\",\"pandascore_id\":null,\"yahoo_id\":31145,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Tennessee\",\"high_school\":\"Oak Park (MI)\",\"depth_chart_order\":7,\"stats_id\":879766,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"johnkelly\",\"birth_date\":\"1996-10-04\",\"espn_id\":3915381},\"6631\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalen\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"allison\",\"depth_chart_position\":null,\"player_id\":\"6631\",\"birth_city\":null,\"fantasy_data_id\":21395,\"years_exp\":0,\"hashtag\":\"#JalenAllison-NFL-FA-32\",\"search_first_name\":\"jalen\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Jalen Allison\",\"sportradar_id\":\"4c4c9eb6-b7cc-41c9-b14f-92125832c8b5\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Allison\",\"metadata\":null,\"college\":\"North Dakota State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"177\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jalenallison\",\"birth_date\":null,\"espn_id\":null},\"3046\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rotheram\",\"depth_chart_position\":null,\"player_id\":\"3046\",\"birth_city\":null,\"fantasy_data_id\":17759,\"years_exp\":4,\"hashtag\":\"#MattRotheram-NFL-FA-61\",\"search_first_name\":\"matt\",\"rotowire_id\":10834,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Matt Rotheram\",\"sportradar_id\":\"f533b338-a3ae-4942-a69f-fc6e66f87a2c\",\"pandascore_id\":null,\"yahoo_id\":28933,\"last_name\":\"Rotheram\",\"metadata\":null,\"college\":\"Pittsburgh\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":61,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"344\",\"height\":\"6'5\\\"\",\"search_full_name\":\"mattrotheram\",\"birth_date\":\"1992-07-05\",\"espn_id\":2513151},\"6667\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035543\",\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"agasiva\",\"depth_chart_position\":null,\"player_id\":\"6667\",\"birth_city\":null,\"fantasy_data_id\":21552,\"years_exp\":1,\"hashtag\":\"#JordanAgasiva-NFL-FA-66\",\"search_first_name\":\"jordan\",\"rotowire_id\":14241,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Jordan Agasiva\",\"sportradar_id\":\"b4565520-ee0d-4d4a-a3dd-7f8c17a9196c\",\"pandascore_id\":null,\"yahoo_id\":32563,\"last_name\":\"Agasiva\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":66,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"318\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordanagasiva\",\"birth_date\":\"1997-05-21\",\"espn_id\":4243241},\"4522\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033599\",\"first_name\":\"Carlton\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567219258028,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"agudosi\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4522\",\"birth_city\":null,\"fantasy_data_id\":19398,\"years_exp\":3,\"hashtag\":\"#CarltonAgudosi-NFL-FA-14\",\"search_first_name\":\"carlton\",\"rotowire_id\":12364,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Carlton Agudosi\",\"sportradar_id\":\"9bd7ed5d-968a-40c0-8dcd-25fcc2d4d47f\",\"pandascore_id\":null,\"yahoo_id\":30482,\"last_name\":\"Agudosi\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":696192,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'6\\\"\",\"search_full_name\":\"carltonagudosi\",\"birth_date\":\"1994-02-01\",\"espn_id\":2982809},\"7259\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"price\",\"depth_chart_position\":null,\"player_id\":\"7259\",\"birth_city\":null,\"fantasy_data_id\":22258,\"years_exp\":0,\"hashtag\":\"#BobbyPrice-NFL-DET-47\",\"search_first_name\":\"bobby\",\"rotowire_id\":14849,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Bobby Price\",\"sportradar_id\":\"b80be347-fd65-4a40-bdad-e11c75bded39\",\"pandascore_id\":null,\"yahoo_id\":33190,\"last_name\":\"Price\",\"metadata\":null,\"college\":\"Norfolk State\",\"high_school\":\"Bishop Sullivan (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'4\\\"\",\"search_full_name\":\"bobbyprice\",\"birth_date\":\"1998-04-25\",\"espn_id\":4030779},\"1196\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029422\",\"first_name\":\"Keith\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1543987259889,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tandy\",\"depth_chart_position\":null,\"player_id\":\"1196\",\"birth_city\":null,\"fantasy_data_id\":14391,\"years_exp\":8,\"hashtag\":\"#KeithTandy-NFL-FA-35\",\"search_first_name\":\"keith\",\"rotowire_id\":8318,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Keith Tandy\",\"sportradar_id\":\"e597cba3-fa90-4ce2-85e7-3e0bed1791d5\",\"pandascore_id\":null,\"yahoo_id\":25884,\"last_name\":\"Tandy\",\"metadata\":null,\"college\":\"West Virginia\",\"high_school\":\"Christian County (KY)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":35,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'10\\\"\",\"search_full_name\":\"keithtandy\",\"birth_date\":\"1989-02-12\",\"espn_id\":15001},\"6031\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035512\",\"first_name\":\"Alex\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567191054464,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"barnes\",\"depth_chart_position\":\"RB\",\"player_id\":\"6031\",\"birth_city\":null,\"fantasy_data_id\":21023,\"years_exp\":1,\"hashtag\":\"#AlexBarnes-NFL-FA-39\",\"search_first_name\":\"alex\",\"rotowire_id\":13452,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Alex Barnes\",\"sportradar_id\":\"e63d39ab-704f-40ad-9036-b8bad7ece8bb\",\"pandascore_id\":null,\"yahoo_id\":32419,\"last_name\":\"Barnes\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":7,\"stats_id\":868507,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'0\\\"\",\"search_full_name\":\"alexbarnes\",\"birth_date\":\"1996-10-27\",\"espn_id\":3886636},\"1583\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030127\",\"first_name\":\"Marcus\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1565730006323,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"cooper\",\"depth_chart_position\":null,\"player_id\":\"1583\",\"birth_city\":null,\"fantasy_data_id\":15234,\"years_exp\":7,\"hashtag\":\"#MarcusCooper-NFL-FA-31\",\"search_first_name\":\"marcus\",\"rotowire_id\":9082,\"rotoworld_id\":8641,\"active\":true,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Marcus Cooper\",\"sportradar_id\":\"38709da2-bd62-45f9-a7cd-f209879aca81\",\"pandascore_id\":null,\"yahoo_id\":26875,\"last_name\":\"Cooper\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":\"Bloomfield (CT)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":31,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'2\\\"\",\"search_full_name\":\"marcuscooper\",\"birth_date\":\"1990-02-01\",\"espn_id\":15888},\"533\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027688\",\"first_name\":\"Colt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1584657935872,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccoy\",\"depth_chart_position\":\"QB\",\"player_id\":\"533\",\"birth_city\":null,\"fantasy_data_id\":11047,\"years_exp\":10,\"hashtag\":\"#ColtMcCoy-NFL-NYG-12\",\"search_first_name\":\"colt\",\"rotowire_id\":6444,\"rotoworld_id\":5699,\"active\":true,\"search_rank\":515,\"age\":34,\"full_name\":\"Colt McCoy\",\"sportradar_id\":\"3699dfd9-d437-43f7-b674-adbb31e7e64b\",\"pandascore_id\":null,\"yahoo_id\":24060,\"last_name\":\"McCoy\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Jim Ned (TX)\",\"depth_chart_order\":2,\"stats_id\":306296,\"injury_start_date\":null,\"number\":12,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"coltmccoy\",\"birth_date\":\"1986-09-05\",\"espn_id\":13199},\"2657\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"John\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"lowdermilk\",\"depth_chart_position\":null,\"player_id\":\"2657\",\"birth_city\":null,\"fantasy_data_id\":17125,\"years_exp\":1,\"hashtag\":\"#JohnLowdermilk-NFL-FA-33\",\"search_first_name\":\"john\",\"rotowire_id\":10809,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"John Lowdermilk\",\"sportradar_id\":\"df6aa22c-9baf-421d-af09-8bc6638731f6\",\"pandascore_id\":null,\"yahoo_id\":28686,\"last_name\":\"Lowdermilk\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":33,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"johnlowdermilk\",\"birth_date\":\"1992-04-17\",\"espn_id\":2582441},\"2358\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032196\",\"first_name\":\"Jake\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1557761711253,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"fisher\",\"depth_chart_position\":\"LT\",\"player_id\":\"2358\",\"birth_city\":null,\"fantasy_data_id\":16814,\"years_exp\":5,\"hashtag\":\"#JakeFisher-NFL-FA-74\",\"search_first_name\":\"jake\",\"rotowire_id\":10265,\"rotoworld_id\":10385,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Jake Fisher\",\"sportradar_id\":\"aacd2e1d-0882-4698-87dc-f033382257a7\",\"pandascore_id\":null,\"yahoo_id\":28441,\"last_name\":\"Fisher\",\"metadata\":null,\"college\":\"Oregon\",\"high_school\":\"Traverse City West (MI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'6\\\"\",\"search_full_name\":\"jakefisher\",\"birth_date\":\"1993-04-23\",\"espn_id\":2576971},\"1450\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ace\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"sanders\",\"depth_chart_position\":null,\"player_id\":\"1450\",\"birth_city\":null,\"fantasy_data_id\":15019,\"years_exp\":3,\"hashtag\":\"#AceSanders-NFL-FA-18\",\"search_first_name\":\"ace\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Ace Sanders\",\"sportradar_id\":\"e506364d-fe69-48c7-8b84-a49603b0a7b6\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Sanders\",\"metadata\":null,\"college\":\"South Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":553026,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"173\",\"height\":\"5'7\\\"\",\"search_full_name\":\"acesanders\",\"birth_date\":\"1991-11-11\",\"espn_id\":16022},\"6526\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Tre\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"thomas\",\"depth_chart_position\":null,\"player_id\":\"6526\",\"birth_city\":null,\"fantasy_data_id\":21510,\"years_exp\":0,\"hashtag\":\"#TreThomas-NFL-FA-48\",\"search_first_name\":\"tre\",\"rotowire_id\":14163,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Tre Thomas\",\"sportradar_id\":\"afc3cd02-f7fb-4de3-9e4f-46f02f7fd9b8\",\"pandascore_id\":null,\"yahoo_id\":32372,\"last_name\":\"Thomas\",\"metadata\":null,\"college\":\"Colorado State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"223\",\"height\":\"6'2\\\"\",\"search_full_name\":\"trethomas\",\"birth_date\":\"1995-09-03\",\"espn_id\":3124517},\"3999\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"George\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"godsey\",\"depth_chart_position\":null,\"player_id\":\"3999\",\"birth_city\":null,\"fantasy_data_id\":18838,\"years_exp\":0,\"hashtag\":\"#GeorgeGodsey-NFL-FA-0\",\"search_first_name\":\"george\",\"rotowire_id\":null,\"rotoworld_id\":10444,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"George Godsey\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Godsey\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"georgegodsey\",\"birth_date\":null,\"espn_id\":null},\"2316\":{\"position\":\"CB\",\"injury_notes\":\"Wayne is expected to miss a significant portion of the season.\",\"birth_country\":null,\"gsis_id\":\"00-0031546\",\"first_name\":\"Trae\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605828916410,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"waynes\",\"depth_chart_position\":null,\"player_id\":\"2316\",\"birth_city\":null,\"fantasy_data_id\":16772,\"years_exp\":5,\"hashtag\":\"#TraeWaynes-NFL-CIN-26\",\"search_first_name\":\"trae\",\"rotowire_id\":10028,\"rotoworld_id\":10426,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Trae Waynes\",\"sportradar_id\":\"338adc8a-173d-4b1b-a5de-92818bf96823\",\"pandascore_id\":null,\"yahoo_id\":28399,\"last_name\":\"Waynes\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"Bradford (WI)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CIN\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'0\\\"\",\"search_full_name\":\"traewaynes\",\"birth_date\":\"1992-07-25\",\"espn_id\":2576283},\"3789\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"perkins\",\"depth_chart_position\":null,\"player_id\":\"3789\",\"birth_city\":null,\"fantasy_data_id\":18603,\"years_exp\":0,\"hashtag\":\"#DavidPerkins-NFL-FA-42\",\"search_first_name\":\"david\",\"rotowire_id\":11562,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"David Perkins\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29831,\"last_name\":\"Perkins\",\"metadata\":null,\"college\":\"Illinois State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":42,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"226\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidperkins\",\"birth_date\":\"1993-01-13\",\"espn_id\":null},\"1275\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"grimes\",\"depth_chart_position\":null,\"player_id\":\"1275\",\"birth_city\":null,\"fantasy_data_id\":14719,\"years_exp\":8,\"hashtag\":\"#JonathanGrimes-NFL-FA-34\",\"search_first_name\":\"jonathan\",\"rotowire_id\":8297,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Jonathan Grimes\",\"sportradar_id\":\"c8088c8c-b4fc-46e9-98b8-cda869e344e5\",\"pandascore_id\":null,\"yahoo_id\":26488,\"last_name\":\"Grimes\",\"metadata\":null,\"college\":\"William & Mary\",\"high_school\":\"Paul VI (NJ)\",\"depth_chart_order\":null,\"stats_id\":461885,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'10\\\"\",\"search_full_name\":\"jonathangrimes\",\"birth_date\":\"1989-12-21\",\"espn_id\":15632},\"3260\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032396\",\"first_name\":\"Vincent\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567543221199,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"valentine\",\"depth_chart_position\":null,\"player_id\":\"3260\",\"birth_city\":null,\"fantasy_data_id\":18021,\"years_exp\":4,\"hashtag\":\"#VincentValentine-NFL-FA-96\",\"search_first_name\":\"vincent\",\"rotowire_id\":10950,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Vincent Valentine\",\"sportradar_id\":\"89781fd0-0817-4de8-ac16-c9cf095b333e\",\"pandascore_id\":null,\"yahoo_id\":29330,\"last_name\":\"Valentine\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":651875,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"329\",\"height\":\"6'4\\\"\",\"search_full_name\":\"vincentvalentine\",\"birth_date\":\"1994-02-23\",\"espn_id\":2974333},\"3248\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032954\",\"first_name\":\"Isaac\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1605916803475,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"seumalo\",\"depth_chart_position\":\"LG\",\"player_id\":\"3248\",\"birth_city\":null,\"fantasy_data_id\":18009,\"years_exp\":4,\"hashtag\":\"#IsaacSeumalo-NFL-PHI-73\",\"search_first_name\":\"isaac\",\"rotowire_id\":11169,\"rotoworld_id\":11386,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Isaac Seumalo\",\"sportradar_id\":\"447db942-40e8-4bb3-9710-b12cfaaafb46\",\"pandascore_id\":null,\"yahoo_id\":29313,\"last_name\":\"Seumalo\",\"metadata\":null,\"college\":\"Oregon State\",\"high_school\":\"Corvallis (OR)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":73,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"PHI\",\"practice_participation\":null,\"weight\":\"303\",\"height\":\"6'4\\\"\",\"search_full_name\":\"isaacseumalo\",\"birth_date\":\"1993-10-29\",\"espn_id\":2978247},\"516\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hernandez\",\"depth_chart_position\":null,\"player_id\":\"516\",\"birth_city\":null,\"fantasy_data_id\":10975,\"years_exp\":9,\"hashtag\":\"#AaronHernandez-NFL-FA-81\",\"search_first_name\":\"aaron\",\"rotowire_id\":null,\"rotoworld_id\":5674,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Aaron Hernandez\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Hernandez\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aaronhernandez\",\"birth_date\":\"1989-11-06\",\"espn_id\":null},\"4244\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033304\",\"first_name\":\"Devante\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1567532419491,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mays\",\"depth_chart_position\":\"RB\",\"player_id\":\"4244\",\"birth_city\":null,\"fantasy_data_id\":19090,\"years_exp\":3,\"hashtag\":\"#DevanteMays-NFL-FA-0\",\"search_first_name\":\"devante\",\"rotowire_id\":12219,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1216,\"age\":26,\"full_name\":\"Devante Mays\",\"sportradar_id\":\"b92d015f-0e5f-42e5-b85a-9c68ee6d8f1f\",\"pandascore_id\":null,\"yahoo_id\":30351,\"last_name\":\"Mays\",\"metadata\":null,\"college\":\"Utah State\",\"high_school\":null,\"depth_chart_order\":16,\"stats_id\":867674,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'10\\\"\",\"search_full_name\":\"devantemays\",\"birth_date\":\"1994-05-26\",\"espn_id\":3918026},\"5682\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034444\",\"first_name\":\"Cayson\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1546449623212,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"5682\",\"birth_city\":null,\"fantasy_data_id\":20609,\"years_exp\":2,\"hashtag\":\"#CaysonCollins-NFL-FA-46\",\"search_first_name\":\"cayson\",\"rotowire_id\":13262,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Cayson Collins\",\"sportradar_id\":\"af606d16-92a5-474f-8674-0bcd440a76c2\",\"pandascore_id\":null,\"yahoo_id\":31533,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'1\\\"\",\"search_full_name\":\"caysoncollins\",\"birth_date\":\"1995-11-10\",\"espn_id\":3116695},\"3654\":{\"position\":\"OT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kevin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1535495103565,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bowen\",\"depth_chart_position\":null,\"player_id\":\"3654\",\"birth_city\":null,\"fantasy_data_id\":18447,\"years_exp\":4,\"hashtag\":\"#KevinBowen-NFL-FA-77\",\"search_first_name\":\"kevin\",\"rotowire_id\":11384,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Kevin Bowen\",\"sportradar_id\":\"5311dbf3-9a87-431c-9393-7a7d4180d118\",\"pandascore_id\":null,\"yahoo_id\":29698,\"last_name\":\"Bowen\",\"metadata\":null,\"college\":\"East Central Oklahoma\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":77,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"350\",\"height\":\"6'7\\\"\",\"search_full_name\":\"kevinbowen\",\"birth_date\":\"1993-07-03\",\"espn_id\":4002683},\"4376\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1532566201744,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clark\",\"depth_chart_position\":null,\"player_id\":\"4376\",\"birth_city\":null,\"fantasy_data_id\":19233,\"years_exp\":3,\"hashtag\":\"#MichaelClark-NFL-FA-89\",\"search_first_name\":\"michael\",\"rotowire_id\":12460,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Michael Clark\",\"sportradar_id\":\"a4556664-56b6-49ee-bc5b-a05da0780c65\",\"pandascore_id\":null,\"yahoo_id\":30609,\"last_name\":\"Clark\",\"metadata\":null,\"college\":\"Marshall\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":886316,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'6\\\"\",\"search_full_name\":\"michaelclark\",\"birth_date\":\"1995-10-26\",\"espn_id\":3931763},\"7142\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Dustin\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1597352134911,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"woodard\",\"depth_chart_position\":null,\"player_id\":\"7142\",\"birth_city\":null,\"fantasy_data_id\":22145,\"years_exp\":0,\"hashtag\":\"#DustinWoodard-NFL-NE-0\",\"search_first_name\":\"dustin\",\"rotowire_id\":14831,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Dustin Woodard\",\"sportradar_id\":\"6c55bb5c-dde4-43ec-b4aa-0e5d65303244\",\"pandascore_id\":null,\"yahoo_id\":32900,\"last_name\":\"Woodard\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Memphis\",\"high_school\":\"Chandler (AZ)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"291\",\"height\":\"6'2\\\"\",\"search_full_name\":\"dustinwoodard\",\"birth_date\":\"1998-03-08\",\"espn_id\":4039374},\"3871\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sam\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"bergen\",\"depth_chart_position\":null,\"player_id\":\"3871\",\"birth_city\":null,\"fantasy_data_id\":18693,\"years_exp\":0,\"hashtag\":\"#SamBergen-NFL-FA-40\",\"search_first_name\":\"sam\",\"rotowire_id\":11395,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Sam Bergen\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":29982,\"last_name\":\"Bergen\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":556482,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"236\",\"height\":\"6'0\\\"\",\"search_full_name\":\"sambergen\",\"birth_date\":\"1992-03-06\",\"espn_id\":null},\"3605\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032496\",\"first_name\":\"Matthias\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1599707443847,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"farley\",\"depth_chart_position\":\"FS\",\"player_id\":\"3605\",\"birth_city\":null,\"fantasy_data_id\":18392,\"years_exp\":4,\"hashtag\":\"#MatthiasFarley-NFL-NYJ-41\",\"search_first_name\":\"matthias\",\"rotowire_id\":11292,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1072,\"age\":28,\"full_name\":\"Matthias Farley\",\"sportradar_id\":\"22d9354f-3277-4ae6-bfaa-351ce38f1140\",\"pandascore_id\":null,\"yahoo_id\":29574,\"last_name\":\"Farley\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Christian (NC)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"5'11\\\"\",\"search_full_name\":\"matthiasfarley\",\"birth_date\":\"1992-07-15\",\"espn_id\":2579840},\"3891\":{\"position\":\"FB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033086\",\"first_name\":\"Kyle\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"coleman\",\"depth_chart_position\":null,\"player_id\":\"3891\",\"birth_city\":null,\"fantasy_data_id\":18713,\"years_exp\":4,\"hashtag\":\"#KyleColeman-NFL-FA-96\",\"search_first_name\":\"kyle\",\"rotowire_id\":11558,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kyle Coleman\",\"sportradar_id\":\"0105886c-9f70-4600-b0c4-bb2a8efc5e9b\",\"pandascore_id\":null,\"yahoo_id\":30021,\"last_name\":\"Coleman\",\"metadata\":null,\"college\":\"Arkansas-Pine Bluff\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":891825,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'2\\\"\",\"search_full_name\":\"kylecoleman\",\"birth_date\":\"1993-09-30\",\"espn_id\":2572846},\"7365\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nevelle\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1596384616282,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"clarke\",\"depth_chart_position\":null,\"player_id\":\"7365\",\"birth_city\":null,\"fantasy_data_id\":22077,\"years_exp\":0,\"hashtag\":\"#NevelleClarke-NFL-FA-0\",\"search_first_name\":\"nevelle\",\"rotowire_id\":14701,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Nevelle Clarke\",\"sportradar_id\":\"136f5d97-d41c-4fad-b296-f69a129cdea7\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Clarke\",\"metadata\":null,\"college\":\"Central Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"187\",\"height\":\"6'1\\\"\",\"search_full_name\":\"nevelleclarke\",\"birth_date\":\"1996-11-16\",\"espn_id\":3929034},\"5312\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034379\",\"first_name\":\"Rick\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1546994134576,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"leonard\",\"depth_chart_position\":null,\"player_id\":\"5312\",\"birth_city\":null,\"fantasy_data_id\":19945,\"years_exp\":2,\"hashtag\":\"#RickLeonard-NFL-ARI-72\",\"search_first_name\":\"rick\",\"rotowire_id\":12987,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Rick Leonard\",\"sportradar_id\":\"a54039fe-c6f8-4a25-82e8-80ce45db9a67\",\"pandascore_id\":null,\"yahoo_id\":31097,\"last_name\":\"Leonard\",\"metadata\":null,\"college\":\"Florida State\",\"high_school\":\"Middletown (MD)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ARI\",\"practice_participation\":null,\"weight\":\"311\",\"height\":\"6'7\\\"\",\"search_full_name\":\"rickleonard\",\"birth_date\":\"1996-11-22\",\"espn_id\":3122927},\"5990\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0034962\",\"first_name\":\"Terez\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1605978007348,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":\"LB\",\"player_id\":\"5990\",\"birth_city\":null,\"fantasy_data_id\":20784,\"years_exp\":1,\"hashtag\":\"#TerezHall-NFL-NE-59\",\"search_first_name\":\"terez\",\"rotowire_id\":13861,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1544,\"age\":24,\"full_name\":\"Terez Hall\",\"sportradar_id\":\"49bf0cd8-c01f-4d31-b6f1-fdda02b4999f\",\"pandascore_id\":null,\"yahoo_id\":32230,\"last_name\":\"Hall\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Missouri\",\"high_school\":\"King (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NE\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"terezhall\",\"birth_date\":\"1996-11-18\",\"espn_id\":3924319},\"4097\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033525\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606341903138,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"anderson\",\"depth_chart_position\":\"RDE\",\"player_id\":\"4097\",\"birth_city\":null,\"fantasy_data_id\":18943,\"years_exp\":3,\"hashtag\":\"#RyanAnderson-NFL-WAS-52\",\"search_first_name\":\"ryan\",\"rotowire_id\":11956,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1142,\"age\":26,\"full_name\":\"Ryan Anderson\",\"sportradar_id\":\"2afc82df-1048-414d-bef7-1692198cedde\",\"pandascore_id\":null,\"yahoo_id\":30162,\"last_name\":\"Anderson\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Daphne (AL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"WAS\",\"practice_participation\":null,\"weight\":\"253\",\"height\":\"6'2\\\"\",\"search_full_name\":\"ryananderson\",\"birth_date\":\"1994-08-12\",\"espn_id\":2976495},\"916\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0027979\",\"first_name\":\"Jarvis\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1544195424488,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"jenkins\",\"depth_chart_position\":null,\"player_id\":\"916\",\"birth_city\":null,\"fantasy_data_id\":13165,\"years_exp\":9,\"hashtag\":\"#JarvisJenkins-NFL-FA-94\",\"search_first_name\":\"jarvis\",\"rotowire_id\":7470,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Jarvis Jenkins\",\"sportradar_id\":\"5c453cab-dfd6-4c8f-ad31-f872229c6e06\",\"pandascore_id\":null,\"yahoo_id\":24828,\"last_name\":\"Jenkins\",\"metadata\":null,\"college\":\"Clemson\",\"high_school\":\"Daniel (SC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":94,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"300\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jarvisjenkins\",\"birth_date\":\"1988-04-24\",\"espn_id\":14019},\"1572\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0030527\",\"first_name\":\"Alec\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1602373509314,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ogletree\",\"depth_chart_position\":\"RILB\",\"player_id\":\"1572\",\"birth_city\":null,\"fantasy_data_id\":15220,\"years_exp\":7,\"hashtag\":\"#AlecOgletree-NFL-NYJ-52\",\"search_first_name\":\"alec\",\"rotowire_id\":8695,\"rotoworld_id\":8383,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Alec Ogletree\",\"sportradar_id\":\"b94f3978-ba88-428a-924b-3fbfdf04b058\",\"pandascore_id\":null,\"yahoo_id\":26653,\"last_name\":\"Ogletree\",\"metadata\":null,\"college\":\"Georgia\",\"high_school\":\"Newnan (GA)\",\"depth_chart_order\":2,\"stats_id\":552990,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYJ\",\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'2\\\"\",\"search_full_name\":\"alecogletree\",\"birth_date\":\"1991-09-25\",\"espn_id\":15806},\"4072\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033884\",\"first_name\":\"Tre'Davious\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1605299454000,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"white\",\"depth_chart_position\":\"LCB\",\"player_id\":\"4072\",\"birth_city\":null,\"fantasy_data_id\":18918,\"years_exp\":3,\"hashtag\":\"#TreDaviousWhite-NFL-BUF-27\",\"search_first_name\":\"tredavious\",\"rotowire_id\":12127,\"rotoworld_id\":12250,\"active\":true,\"search_rank\":1125,\"age\":25,\"full_name\":\"Tre'Davious White\",\"sportradar_id\":\"13de701c-c77c-4eb5-b54c-8881ca5e0871\",\"pandascore_id\":null,\"yahoo_id\":30140,\"last_name\":\"White\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Green Oaks (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BUF\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"tredaviouswhite\",\"birth_date\":\"1995-01-16\",\"espn_id\":3042717},\"5598\":{\"position\":\"OL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Daronte\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"bouldin\",\"depth_chart_position\":null,\"player_id\":\"5598\",\"birth_city\":null,\"fantasy_data_id\":20518,\"years_exp\":0,\"hashtag\":\"#DaronteBouldin-NFL-NO-0\",\"search_first_name\":\"daronte\",\"rotowire_id\":13172,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Daronte Bouldin\",\"sportradar_id\":\"a7c8ed67-44b2-4286-aebc-2ce5bfa1e52c\",\"pandascore_id\":null,\"yahoo_id\":31531,\"last_name\":\"Bouldin\",\"metadata\":null,\"college\":\"Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"darontebouldin\",\"birth_date\":\"1994-12-14\",\"espn_id\":null},\"577\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Danny\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mccray\",\"depth_chart_position\":null,\"player_id\":\"577\",\"birth_city\":null,\"fantasy_data_id\":11279,\"years_exp\":10,\"hashtag\":\"#DannyMcCray-NFL-FA-40\",\"search_first_name\":\"danny\",\"rotowire_id\":7094,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":32,\"full_name\":\"Danny McCray\",\"sportradar_id\":\"e210223b-fd36-4cc2-a5e3-16578ea0d17d\",\"pandascore_id\":null,\"yahoo_id\":24605,\"last_name\":\"McCray\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"Westfield (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":40,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"221\",\"height\":\"6'1\\\"\",\"search_full_name\":\"dannymccray\",\"birth_date\":\"1988-03-10\",\"espn_id\":13611},\"3097\":{\"position\":null,\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Josh\",\"practice_description\":null,\"fantasy_positions\":null,\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mcdaniels\",\"depth_chart_position\":null,\"player_id\":\"3097\",\"birth_city\":null,\"fantasy_data_id\":17847,\"years_exp\":0,\"hashtag\":\"#JoshMcDaniels-NFL-FA-0\",\"search_first_name\":\"josh\",\"rotowire_id\":null,\"rotoworld_id\":9281,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Josh McDaniels\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"McDaniels\",\"metadata\":null,\"college\":null,\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":0,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"\",\"height\":\"\",\"search_full_name\":\"joshmcdaniels\",\"birth_date\":null,\"espn_id\":null},\"6851\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Julian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1603307739485,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"okwara\",\"depth_chart_position\":null,\"player_id\":\"6851\",\"birth_city\":null,\"fantasy_data_id\":21887,\"years_exp\":0,\"hashtag\":\"#JulianOkwara-NFL-DET-99\",\"search_first_name\":\"julian\",\"rotowire_id\":14448,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1813,\"age\":22,\"full_name\":\"Julian Okwara\",\"sportradar_id\":\"e91734d9-8e7d-4e55-9027-e7c338cc809a\",\"pandascore_id\":null,\"yahoo_id\":32737,\"last_name\":\"Okwara\",\"metadata\":null,\"college\":\"Notre Dame\",\"high_school\":\"Ardrey Kell (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"DET\",\"practice_participation\":null,\"weight\":\"241\",\"height\":\"6'5\\\"\",\"search_full_name\":\"julianokwara\",\"birth_date\":\"1997-12-27\",\"espn_id\":4046690},\"2788\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Nick\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"harwell\",\"depth_chart_position\":null,\"player_id\":\"2788\",\"birth_city\":null,\"fantasy_data_id\":17256,\"years_exp\":1,\"hashtag\":\"#NickHarwell-NFL-FA-18\",\"search_first_name\":\"nick\",\"rotowire_id\":10538,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Nick Harwell\",\"sportradar_id\":\"e892a99d-6c94-460f-8922-00a444e71d73\",\"pandascore_id\":null,\"yahoo_id\":29017,\"last_name\":\"Harwell\",\"metadata\":null,\"college\":\"Kansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":544753,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"nickharwell\",\"birth_date\":\"1991-01-21\",\"espn_id\":2516768},\"6254\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035542\",\"first_name\":\"Kemon\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598474742387,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"hall\",\"depth_chart_position\":null,\"player_id\":\"6254\",\"birth_city\":null,\"fantasy_data_id\":21187,\"years_exp\":1,\"hashtag\":\"#KemonHall-NFL-NO-25\",\"search_first_name\":\"kemon\",\"rotowire_id\":14307,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1690,\"age\":23,\"full_name\":\"Kemon Hall\",\"sportradar_id\":\"9e82eb73-21f0-469a-ac85-b4fde70a6a4e\",\"pandascore_id\":null,\"yahoo_id\":32542,\"last_name\":\"Hall\",\"metadata\":null,\"college\":\"North Texas\",\"high_school\":\"Calhoun City (MS)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":25,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kemonhall\",\"birth_date\":\"1997-06-02\",\"espn_id\":4243831},\"751\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mauga\",\"depth_chart_position\":null,\"player_id\":\"751\",\"birth_city\":null,\"fantasy_data_id\":12430,\"years_exp\":11,\"hashtag\":\"#JoshuaMauga-NFL-FA-90\",\"search_first_name\":\"joshua\",\"rotowire_id\":7199,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":33,\"full_name\":\"Joshua Mauga\",\"sportradar_id\":\"c82d07c7-c02a-4ea7-8cd7-7ba6e9e60f21\",\"pandascore_id\":null,\"yahoo_id\":9758,\"last_name\":\"Mauga\",\"metadata\":null,\"college\":\"Nevada\",\"high_school\":\"Churchill County (NV)\",\"depth_chart_order\":null,\"stats_id\":286668,\"injury_start_date\":null,\"number\":90,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"joshuamauga\",\"birth_date\":\"1987-06-20\",\"espn_id\":13165},\"5661\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034593\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1604440245318,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lacy\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5661\",\"birth_city\":null,\"fantasy_data_id\":20511,\"years_exp\":2,\"hashtag\":\"#ChrisLacy-NFL-DAL-15\",\"search_first_name\":\"chris\",\"rotowire_id\":12952,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1483,\"age\":24,\"full_name\":\"Chris Lacy\",\"sportradar_id\":\"b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01\",\"pandascore_id\":null,\"yahoo_id\":31651,\"last_name\":\"Lacy\",\"metadata\":null,\"college\":\"Oklahoma State\",\"high_school\":\"DeSoto (TX)\",\"depth_chart_order\":3,\"stats_id\":835417,\"injury_start_date\":null,\"number\":15,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chrislacy\",\"birth_date\":\"1996-01-28\",\"espn_id\":3122430},\"484\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Steve\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"weatherford\",\"depth_chart_position\":null,\"player_id\":\"484\",\"birth_city\":null,\"fantasy_data_id\":9814,\"years_exp\":14,\"hashtag\":\"#SteveWeatherford-NFL-FA-3\",\"search_first_name\":\"steve\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Steve Weatherford\",\"sportradar_id\":\"2d7263cd-2437-46a8-bca6-a224576e3063\",\"pandascore_id\":null,\"yahoo_id\":8050,\"last_name\":\"Weatherford\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":\"North Vigo (IN)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":3,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'2\\\"\",\"search_full_name\":\"steveweatherford\",\"birth_date\":\"1982-12-17\",\"espn_id\":10127},\"2889\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dewaltondijo\",\"depth_chart_position\":null,\"player_id\":\"2889\",\"birth_city\":null,\"fantasy_data_id\":17357,\"years_exp\":0,\"hashtag\":\"#JordanDewaltOndijo-NFL-FA-47\",\"search_first_name\":\"jordan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jordan Dewalt-Ondijo\",\"sportradar_id\":\"820ed36e-fbff-4ed2-99e8-411b1ac7c05b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dewalt-Ondijo\",\"metadata\":null,\"college\":\"Duke\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jordandewaltondijo\",\"birth_date\":\"1992-05-19\",\"espn_id\":2512459},\"4404\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033326\",\"first_name\":\"Aviante\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1573749606314,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"collins\",\"depth_chart_position\":null,\"player_id\":\"4404\",\"birth_city\":null,\"fantasy_data_id\":19263,\"years_exp\":3,\"hashtag\":\"#AvianteCollins-NFL-MIN-76\",\"search_first_name\":\"aviante\",\"rotowire_id\":11785,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Aviante Collins\",\"sportradar_id\":\"7f59e894-4ce1-4803-a556-2e02add60bc2\",\"pandascore_id\":null,\"yahoo_id\":30431,\"last_name\":\"Collins\",\"metadata\":null,\"college\":\"Texas Christian\",\"high_school\":\"Willowridge (TX)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"292\",\"height\":\"6'4\\\"\",\"search_full_name\":\"aviantecollins\",\"birth_date\":\"1993-04-21\",\"espn_id\":2971556},\"4423\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0033389\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1560186341309,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"jones\",\"depth_chart_position\":null,\"player_id\":\"4423\",\"birth_city\":null,\"fantasy_data_id\":19283,\"years_exp\":3,\"hashtag\":\"#DavidJones-NFL-FA-41\",\"search_first_name\":\"david\",\"rotowire_id\":12928,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"David Jones\",\"sportradar_id\":\"369d8fc2-fce9-4e75-9419-3dfbe3ad3977\",\"pandascore_id\":null,\"yahoo_id\":30663,\"last_name\":\"Jones\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":41,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'0\\\"\",\"search_full_name\":\"davidjones\",\"birth_date\":\"1993-12-04\",\"espn_id\":2969018},\"2448\":{\"position\":\"DB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031587\",\"first_name\":\"Bobby\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1601838340076,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"mccain\",\"depth_chart_position\":\"NB\",\"player_id\":\"2448\",\"birth_city\":null,\"fantasy_data_id\":16905,\"years_exp\":5,\"hashtag\":\"#BobbyMcCain-NFL-MIA-28\",\"search_first_name\":\"bobby\",\"rotowire_id\":10422,\"rotoworld_id\":10524,\"active\":true,\"search_rank\":896,\"age\":27,\"full_name\":\"Bobby McCain\",\"sportradar_id\":\"7f32c3e6-113f-4922-b51d-a1a5a1d43bcf\",\"pandascore_id\":null,\"yahoo_id\":28533,\"last_name\":\"McCain\",\"metadata\":null,\"college\":\"Memphis\",\"high_school\":\"Oxford (AL)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":28,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"192\",\"height\":\"5'11\\\"\",\"search_full_name\":\"bobbymccain\",\"birth_date\":\"1993-08-18\",\"espn_id\":2575606},\"4860\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034058\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"toth\",\"depth_chart_position\":\"C\",\"player_id\":\"4860\",\"birth_city\":null,\"fantasy_data_id\":19760,\"years_exp\":3,\"hashtag\":\"#JonToth-NFL-FA-0\",\"search_first_name\":\"jon\",\"rotowire_id\":11823,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Jon Toth\",\"sportradar_id\":\"f527c2af-05ac-4086-a35e-8efa1136860d\",\"pandascore_id\":null,\"yahoo_id\":30956,\"last_name\":\"Toth\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"298\",\"height\":\"6'5\\\"\",\"search_full_name\":\"jontoth\",\"birth_date\":\"1994-02-11\",\"espn_id\":2971093},\"2688\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031928\",\"first_name\":\"Chad\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604783409376,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"slade\",\"depth_chart_position\":null,\"player_id\":\"2688\",\"birth_city\":null,\"fantasy_data_id\":17156,\"years_exp\":5,\"hashtag\":\"#ChadSlade-NFL-NYG-62\",\"search_first_name\":\"chad\",\"rotowire_id\":10649,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Chad Slade\",\"sportradar_id\":\"79a3c87a-85e2-41ed-aee2-ee6b33dd401e\",\"pandascore_id\":null,\"yahoo_id\":28899,\"last_name\":\"Slade\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Moody (AL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NYG\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'5\\\"\",\"search_full_name\":\"chadslade\",\"birth_date\":\"1992-05-04\",\"espn_id\":2516029},\"7194\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"crawford\",\"depth_chart_position\":null,\"player_id\":\"7194\",\"birth_city\":null,\"fantasy_data_id\":22196,\"years_exp\":0,\"hashtag\":\"#AaronCrawford-NFL-BAL-69\",\"search_first_name\":\"aaron\",\"rotowire_id\":15140,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aaron Crawford\",\"sportradar_id\":\"1c1c956f-0f4c-4b22-98f2-6bbbd5e4a504\",\"pandascore_id\":null,\"yahoo_id\":33008,\"last_name\":\"Crawford\",\"metadata\":null,\"college\":\"North Carolina\",\"high_school\":\"Stone Bridge (VA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"BAL\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'2\\\"\",\"search_full_name\":\"aaroncrawford\",\"birth_date\":\"1997-11-04\",\"espn_id\":3895837},\"2727\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Travis\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"manning\",\"depth_chart_position\":null,\"player_id\":\"2727\",\"birth_city\":null,\"fantasy_data_id\":17195,\"years_exp\":0,\"hashtag\":\"#TravisManning-NFL-FA-26\",\"search_first_name\":\"travis\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Travis Manning\",\"sportradar_id\":\"7610c1b3-594a-4b33-8c1b-992f4c780b3a\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Manning\",\"metadata\":null,\"college\":\"Northwest Missouri State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":26,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"182\",\"height\":\"5'11\\\"\",\"search_full_name\":\"travismanning\",\"birth_date\":\"1990-12-30\",\"espn_id\":2497566},\"4089\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033895\",\"first_name\":\"Gerald\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606229451969,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"everett\",\"depth_chart_position\":\"TE\",\"player_id\":\"4089\",\"birth_city\":null,\"fantasy_data_id\":18935,\"years_exp\":3,\"hashtag\":\"#GeraldEverett-NFL-LAR-81\",\"search_first_name\":\"gerald\",\"rotowire_id\":11737,\"rotoworld_id\":12284,\"active\":true,\"search_rank\":324,\"age\":26,\"full_name\":\"Gerald Everett\",\"sportradar_id\":\"ebeceb00-57e0-4b74-9cf7-853da2afed18\",\"pandascore_id\":null,\"yahoo_id\":30157,\"last_name\":\"Everett\",\"metadata\":null,\"college\":\"South Alabama\",\"high_school\":\"Columbia (GA)\",\"depth_chart_order\":2,\"stats_id\":838487,\"injury_start_date\":null,\"number\":81,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LAR\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'3\\\"\",\"search_full_name\":\"geraldeverett\",\"birth_date\":\"1994-06-25\",\"espn_id\":3918639},\"1168\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029139\",\"first_name\":\"Adam\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1554316248436,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"gettis\",\"depth_chart_position\":null,\"player_id\":\"1168\",\"birth_city\":null,\"fantasy_data_id\":14256,\"years_exp\":8,\"hashtag\":\"#AdamGettis-NFL-FA-72\",\"search_first_name\":\"adam\",\"rotowire_id\":8338,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Adam Gettis\",\"sportradar_id\":\"0cb97421-cccf-4cce-ac0f-92d47986defc\",\"pandascore_id\":null,\"yahoo_id\":25851,\"last_name\":\"Gettis\",\"metadata\":null,\"college\":\"Iowa\",\"high_school\":\"Lincoln Way East (IL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":72,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'3\\\"\",\"search_full_name\":\"adamgettis\",\"birth_date\":\"1988-12-09\",\"espn_id\":14995},\"ARI\":{\"team\":\"ARI\",\"sport\":\"nfl\",\"position\":\"DEF\",\"player_id\":\"ARI\",\"last_name\":\"Cardinals\",\"injury_status\":null,\"first_name\":\"Arizona\",\"fantasy_positions\":[\"DEF\"],\"active\":true},\"7059\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jordan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1596208216574,\"status\":\"Voluntary Opt Out\",\"injury_body_part\":null,\"search_last_name\":\"mack\",\"depth_chart_position\":null,\"player_id\":\"7059\",\"birth_city\":null,\"fantasy_data_id\":21986,\"years_exp\":0,\"hashtag\":\"#JordanMack-NFL-CAR-47\",\"search_first_name\":\"jordan\",\"rotowire_id\":14745,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1868,\"age\":22,\"full_name\":\"Jordan Mack\",\"sportradar_id\":\"00484794-97e8-443b-876f-d192722cd70c\",\"pandascore_id\":null,\"yahoo_id\":33144,\"last_name\":\"Mack\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Wesleyan (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":47,\"birth_state\":null,\"injury_status\":\"DNR\",\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"230\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jordanmack\",\"birth_date\":\"1998-02-07\",\"espn_id\":null},\"4574\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033662\",\"first_name\":\"Cooper\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1604974230091,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"rush\",\"depth_chart_position\":\"QB\",\"player_id\":\"4574\",\"birth_city\":null,\"fantasy_data_id\":19461,\"years_exp\":3,\"hashtag\":\"#CooperRush-NFL-DAL-10\",\"search_first_name\":\"cooper\",\"rotowire_id\":11841,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1264,\"age\":27,\"full_name\":\"Cooper Rush\",\"sportradar_id\":\"4595c8ea-9d85-4504-8a34-2c8a02349105\",\"pandascore_id\":null,\"yahoo_id\":30788,\"last_name\":\"Rush\",\"metadata\":null,\"college\":\"Central Michigan\",\"high_school\":\"Lansing Catholic (MI)\",\"depth_chart_order\":5,\"stats_id\":694117,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'3\\\"\",\"search_full_name\":\"cooperrush\",\"birth_date\":\"1993-11-21\",\"espn_id\":2972515},\"5255\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034647\",\"first_name\":\"Teo\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1567185953780,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"redding\",\"depth_chart_position\":\"RWR\",\"player_id\":\"5255\",\"birth_city\":null,\"fantasy_data_id\":20274,\"years_exp\":2,\"hashtag\":\"#TeoRedding-NFL-FA-88\",\"search_first_name\":\"teo\",\"rotowire_id\":13023,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Teo Redding\",\"sportradar_id\":\"11a3d414-412d-4dee-992a-4eb8ece1fbdb\",\"pandascore_id\":null,\"yahoo_id\":31642,\"last_name\":\"Redding\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":744013,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"181\",\"height\":\"6'1\\\"\",\"search_full_name\":\"teoredding\",\"birth_date\":\"1994-12-08\",\"espn_id\":3045763},\"4373\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Stanley\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"4373\",\"birth_city\":null,\"fantasy_data_id\":19230,\"years_exp\":2,\"hashtag\":\"#StanleyWilliams-NFL-FA-30\",\"search_first_name\":\"stanley\",\"rotowire_id\":11776,\"rotoworld_id\":12703,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Stanley Williams\",\"sportradar_id\":\"c726c9ec-060e-47d8-95cf-2d00b73c9eb0\",\"pandascore_id\":null,\"yahoo_id\":30588,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":835378,\"injury_start_date\":null,\"number\":30,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"196\",\"height\":\"5'9\\\"\",\"search_full_name\":\"stanleywilliams\",\"birth_date\":\"1995-09-30\",\"espn_id\":3126338},\"3405\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032979\",\"first_name\":\"Scooby\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1567547421615,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"wright\",\"depth_chart_position\":null,\"player_id\":\"3405\",\"birth_city\":null,\"fantasy_data_id\":18166,\"years_exp\":4,\"hashtag\":\"#ScoobyWright-NFL-FA-96\",\"search_first_name\":\"scooby\",\"rotowire_id\":10940,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Scooby Wright\",\"sportradar_id\":\"345a3f59-1eec-484b-93d0-6330bdb358e1\",\"pandascore_id\":null,\"yahoo_id\":29484,\"last_name\":\"Wright\",\"metadata\":null,\"college\":\"Arizona\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":751295,\"injury_start_date\":null,\"number\":96,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'0\\\"\",\"search_full_name\":\"scoobywright\",\"birth_date\":\"1994-08-28\",\"espn_id\":3056472},\"6068\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035184\",\"first_name\":\"Devine\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606164314807,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"ozigbo\",\"depth_chart_position\":\"RB\",\"player_id\":\"6068\",\"birth_city\":null,\"fantasy_data_id\":20904,\"years_exp\":1,\"hashtag\":\"#DevineOzigbo-NFL-JAX-22\",\"search_first_name\":\"devine\",\"rotowire_id\":13624,\"rotoworld_id\":14045,\"active\":true,\"search_rank\":154,\"age\":24,\"full_name\":\"Devine Ozigbo\",\"sportradar_id\":\"25bc08ac-8420-4340-94c6-93993ff87d6f\",\"pandascore_id\":null,\"yahoo_id\":32390,\"last_name\":\"Ozigbo\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Sachse (TX)\",\"depth_chart_order\":2,\"stats_id\":866115,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"JAX\",\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'0\\\"\",\"search_full_name\":\"devineozigbo\",\"birth_date\":\"1996-10-02\",\"espn_id\":3699935},\"7018\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Malcolm\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1588038004077,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"roach\",\"depth_chart_position\":\"LDT\",\"player_id\":\"7018\",\"birth_city\":null,\"fantasy_data_id\":21899,\"years_exp\":0,\"hashtag\":\"#MalcolmRoach-NFL-NO-97\",\"search_first_name\":\"malcolm\",\"rotowire_id\":14726,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1823,\"age\":22,\"full_name\":\"Malcolm Roach\",\"sportradar_id\":\"bb01a04e-0d54-4fc6-98c8-2b8614d07afe\",\"pandascore_id\":null,\"yahoo_id\":33118,\"last_name\":\"Roach\",\"metadata\":null,\"college\":\"Texas\",\"high_school\":\"Madison Prep (LA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":97,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"NO\",\"practice_participation\":null,\"weight\":\"290\",\"height\":\"6'3\\\"\",\"search_full_name\":\"malcolmroach\",\"birth_date\":\"1998-06-09\",\"espn_id\":4039064},\"6572\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035344\",\"first_name\":\"Aaron\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"monteiro\",\"depth_chart_position\":null,\"player_id\":\"6572\",\"birth_city\":null,\"fantasy_data_id\":21268,\"years_exp\":1,\"hashtag\":\"#AaronMonteiro-NFL-CAR-62\",\"search_first_name\":\"aaron\",\"rotowire_id\":14281,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Aaron Monteiro\",\"sportradar_id\":\"b84b415e-a7a5-4d3c-8128-9e58f002578c\",\"pandascore_id\":null,\"yahoo_id\":32441,\"last_name\":\"Monteiro\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":\"Brockton (MA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":62,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"CAR\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'6\\\"\",\"search_full_name\":\"aaronmonteiro\",\"birth_date\":\"1997-03-25\",\"espn_id\":3915304},\"6279\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035102\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1605660026118,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dillon\",\"depth_chart_position\":\"TE\",\"player_id\":\"6279\",\"birth_city\":null,\"fantasy_data_id\":21161,\"years_exp\":1,\"hashtag\":\"#BrandonDillon-NFL-MIN-86\",\"search_first_name\":\"brandon\",\"rotowire_id\":14001,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1686,\"age\":23,\"full_name\":\"Brandon Dillon\",\"sportradar_id\":\"c1576aca-1bd1-4b9f-ba83-10235f1e2eca\",\"pandascore_id\":null,\"yahoo_id\":32142,\"last_name\":\"Dillon\",\"metadata\":null,\"college\":\"Marian, Ind.\",\"high_school\":\"Carroll (IN)\",\"depth_chart_order\":4,\"stats_id\":1165740,\"injury_start_date\":null,\"number\":86,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandondillon\",\"birth_date\":\"1997-04-30\",\"espn_id\":4411192},\"3253\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033060\",\"first_name\":\"Leonte\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1569969914948,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carroo\",\"depth_chart_position\":null,\"player_id\":\"3253\",\"birth_city\":null,\"fantasy_data_id\":18014,\"years_exp\":4,\"hashtag\":\"#LeonteCarroo-NFL-FA-88\",\"search_first_name\":\"leonte\",\"rotowire_id\":10899,\"rotoworld_id\":11277,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Leonte Carroo\",\"sportradar_id\":\"931dbb14-36ac-4044-a61e-5f11854f0383\",\"pandascore_id\":null,\"yahoo_id\":29320,\"last_name\":\"Carroo\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":696195,\"injury_start_date\":null,\"number\":88,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"211\",\"height\":\"6'0\\\"\",\"search_full_name\":\"leontecarroo\",\"birth_date\":\"1994-01-24\",\"espn_id\":2982804},\"4001\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033191\",\"first_name\":\"Jeff\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1526589301497,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"knox\",\"depth_chart_position\":null,\"player_id\":\"4001\",\"birth_city\":null,\"fantasy_data_id\":18840,\"years_exp\":3,\"hashtag\":\"#JeffKnox-NFL-FA-48\",\"search_first_name\":\"jeff\",\"rotowire_id\":11735,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jeff Knox\",\"sportradar_id\":\"d59adf1f-97dc-4787-b47b-9dc6148941ee\",\"pandascore_id\":null,\"yahoo_id\":30094,\"last_name\":\"Knox\",\"metadata\":null,\"college\":\"California (PA)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"225\",\"height\":\"6'2\\\"\",\"search_full_name\":\"jeffknox\",\"birth_date\":\"1992-02-22\",\"espn_id\":4081021},\"2856\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brian\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"blechen\",\"depth_chart_position\":null,\"player_id\":\"2856\",\"birth_city\":null,\"fantasy_data_id\":17324,\"years_exp\":1,\"hashtag\":\"#BrianBlechen-NFL-FA-45\",\"search_first_name\":\"brian\",\"rotowire_id\":10523,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Brian Blechen\",\"sportradar_id\":\"6a5075f0-7e18-4ebc-a40c-663832c2b188\",\"pandascore_id\":null,\"yahoo_id\":28729,\"last_name\":\"Blechen\",\"metadata\":null,\"college\":\"Utah\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"6'2\\\"\",\"search_full_name\":\"brianblechen\",\"birth_date\":\"1991-09-30\",\"espn_id\":2514544},\"2634\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032048\",\"first_name\":\"Mack\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1564854347894,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2634\",\"birth_city\":null,\"fantasy_data_id\":17102,\"years_exp\":5,\"hashtag\":\"#MackBrown-NFL-FA-34\",\"search_first_name\":\"mack\",\"rotowire_id\":10568,\"rotoworld_id\":11084,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Mack Brown\",\"sportradar_id\":\"7dc5af64-ae1d-4915-8af9-a4f5fb601710\",\"pandascore_id\":null,\"yahoo_id\":29085,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Florida\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":557180,\"injury_start_date\":null,\"number\":34,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"213\",\"height\":\"5'11\\\"\",\"search_full_name\":\"mackbrown\",\"birth_date\":\"1991-09-24\",\"espn_id\":2512191},\"670\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kassim\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"osgood\",\"depth_chart_position\":null,\"player_id\":\"670\",\"birth_city\":null,\"fantasy_data_id\":11821,\"years_exp\":12,\"hashtag\":\"#KassimOsgood-NFL-FA-14\",\"search_first_name\":\"kassim\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Kassim Osgood\",\"sportradar_id\":\"d00b8cd0-86fb-4d44-9816-7011747ad3fd\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Osgood\",\"metadata\":null,\"college\":\"San Diego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":14,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"220\",\"height\":\"6'5\\\"\",\"search_full_name\":\"kassimosgood\",\"birth_date\":\"1980-05-20\",\"espn_id\":5437},\"2907\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ben\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"edwards\",\"depth_chart_position\":null,\"player_id\":\"2907\",\"birth_city\":null,\"fantasy_data_id\":17375,\"years_exp\":5,\"hashtag\":\"#BenEdwards-NFL-FA-83\",\"search_first_name\":\"ben\",\"rotowire_id\":10725,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Ben Edwards\",\"sportradar_id\":\"879f996a-95f2-48db-8234-022ffebd3bda\",\"pandascore_id\":null,\"yahoo_id\":29045,\"last_name\":\"Edwards\",\"metadata\":null,\"college\":\"Richmond\",\"high_school\":\"York (VA)\",\"depth_chart_order\":null,\"stats_id\":552370,\"injury_start_date\":null,\"number\":83,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"200\",\"height\":\"6'0\\\"\",\"search_full_name\":\"benedwards\",\"birth_date\":\"1992-04-10\",\"espn_id\":2507340},\"111\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0024243\",\"first_name\":\"Marcedes\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1606525229181,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"lewis\",\"depth_chart_position\":\"TE\",\"player_id\":\"111\",\"birth_city\":null,\"fantasy_data_id\":3061,\"years_exp\":14,\"hashtag\":\"#MarcedesLewis-NFL-GB-89\",\"search_first_name\":\"marcedes\",\"rotowire_id\":4891,\"rotoworld_id\":3615,\"active\":true,\"search_rank\":511,\"age\":36,\"full_name\":\"Marcedes Lewis\",\"sportradar_id\":\"9c21e9af-681c-41ef-9b00-fbc9e1668ed1\",\"pandascore_id\":null,\"yahoo_id\":7777,\"last_name\":\"Lewis\",\"metadata\":null,\"college\":\"UCLA\",\"high_school\":\"Long Beach Poly (CA)\",\"depth_chart_order\":3,\"stats_id\":214197,\"injury_start_date\":null,\"number\":89,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"GB\",\"practice_participation\":null,\"weight\":\"267\",\"height\":\"6'6\\\"\",\"search_full_name\":\"marcedeslewis\",\"birth_date\":\"1984-05-19\",\"espn_id\":9614},\"1461\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Mike\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"catapano\",\"depth_chart_position\":null,\"player_id\":\"1461\",\"birth_city\":null,\"fantasy_data_id\":15043,\"years_exp\":7,\"hashtag\":\"#MikeCatapano-NFL-FA-48\",\"search_first_name\":\"mike\",\"rotowire_id\":8961,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"Mike Catapano\",\"sportradar_id\":\"4c08189b-2268-4755-87d0-b0a291f08eb9\",\"pandascore_id\":null,\"yahoo_id\":26830,\"last_name\":\"Catapano\",\"metadata\":null,\"college\":\"Princeton\",\"high_school\":\"Chaminade (NY)\",\"depth_chart_order\":null,\"stats_id\":470175,\"injury_start_date\":null,\"number\":48,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"270\",\"height\":\"6'4\\\"\",\"search_full_name\":\"mikecatapano\",\"birth_date\":\"1990-08-17\",\"espn_id\":15944},\"6446\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035013\",\"first_name\":\"Jon\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1596395417324,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hilliman\",\"depth_chart_position\":\"RB\",\"player_id\":\"6446\",\"birth_city\":null,\"fantasy_data_id\":21456,\"years_exp\":1,\"hashtag\":\"#JonHilliman-NFL-FA-0\",\"search_first_name\":\"jon\",\"rotowire_id\":14082,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1740,\"age\":24,\"full_name\":\"Jon Hilliman\",\"sportradar_id\":\"6d882a8b-c34f-4de1-89d2-8ee71628e039\",\"pandascore_id\":null,\"yahoo_id\":32238,\"last_name\":\"Hilliman\",\"metadata\":null,\"college\":\"Rutgers\",\"high_school\":null,\"depth_chart_order\":25,\"stats_id\":836057,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"216\",\"height\":\"5'11\\\"\",\"search_full_name\":\"jonhilliman\",\"birth_date\":\"1995-11-14\",\"espn_id\":3122799},\"3349\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Sebastian\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tretola\",\"depth_chart_position\":null,\"player_id\":\"3349\",\"birth_city\":null,\"fantasy_data_id\":18110,\"years_exp\":2,\"hashtag\":\"#SebastianTretola-NFL-FA-79\",\"search_first_name\":\"sebastian\",\"rotowire_id\":10962,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Sebastian Tretola\",\"sportradar_id\":\"4e5dab0a-cec3-4eb0-ad60-68635d652626\",\"pandascore_id\":null,\"yahoo_id\":29427,\"last_name\":\"Tretola\",\"metadata\":null,\"college\":\"Arkansas\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":79,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'4\\\"\",\"search_full_name\":\"sebastiantretola\",\"birth_date\":\"1992-05-01\",\"espn_id\":2512138},\"7064\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Darrynton\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1605731432864,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"evans\",\"depth_chart_position\":\"RB\",\"player_id\":\"7064\",\"birth_city\":null,\"fantasy_data_id\":21845,\"years_exp\":0,\"hashtag\":\"#DarryntonEvans-NFL-TEN-32\",\"search_first_name\":\"darrynton\",\"rotowire_id\":14400,\"rotoworld_id\":null,\"active\":true,\"search_rank\":184,\"age\":22,\"full_name\":\"Darrynton Evans\",\"sportradar_id\":\"eb3c219d-6489-4f2f-a542-bdbf7423a325\",\"pandascore_id\":null,\"yahoo_id\":32763,\"last_name\":\"Evans\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Appalachian State\",\"high_school\":\"New Smyrna Beach (FL)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"200\",\"height\":\"5'11\\\"\",\"search_full_name\":\"darryntonevans\",\"birth_date\":\"1998-07-09\",\"espn_id\":4036431},\"3904\":{\"position\":\"NT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Ra'Zahn\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"howard\",\"depth_chart_position\":\"NT\",\"player_id\":\"3904\",\"birth_city\":null,\"fantasy_data_id\":18730,\"years_exp\":0,\"hashtag\":\"#RaZahnHoward-NFL-FA-60\",\"search_first_name\":\"razahn\",\"rotowire_id\":11603,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":24,\"full_name\":\"Ra'Zahn Howard\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":30034,\"last_name\":\"Howard\",\"metadata\":null,\"college\":\"Purdue\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'4\\\"\",\"search_full_name\":\"razahnhoward\",\"birth_date\":\"1994-08-08\",\"espn_id\":2969052},\"5701\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034718\",\"first_name\":\"Connor\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1535763090499,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"flagel\",\"depth_chart_position\":null,\"player_id\":\"5701\",\"birth_city\":null,\"fantasy_data_id\":20628,\"years_exp\":2,\"hashtag\":\"#ConnorFlagel-NFL-FA-75\",\"search_first_name\":\"connor\",\"rotowire_id\":13308,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Connor Flagel\",\"sportradar_id\":\"10a361ab-933c-46b6-bd83-3e10896813b8\",\"pandascore_id\":null,\"yahoo_id\":31710,\"last_name\":\"Flagel\",\"metadata\":null,\"college\":\"Central Missouri\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"280\",\"height\":\"6'5\\\"\",\"search_full_name\":\"connorflagel\",\"birth_date\":\"1995-01-08\",\"espn_id\":3052283},\"2145\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chase\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"rettig\",\"depth_chart_position\":null,\"player_id\":\"2145\",\"birth_city\":null,\"fantasy_data_id\":16489,\"years_exp\":1,\"hashtag\":\"#ChaseRettig-NFL-FA-7\",\"search_first_name\":\"chase\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chase Rettig\",\"sportradar_id\":\"525fc206-a76f-4630-b2f4-ec6351ff1afd\",\"pandascore_id\":null,\"yahoo_id\":28088,\"last_name\":\"Rettig\",\"metadata\":null,\"college\":\"Boston College\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":542393,\"injury_start_date\":null,\"number\":7,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"206\",\"height\":\"6'3\\\"\",\"search_full_name\":\"chaserettig\",\"birth_date\":\"1991-09-26\",\"espn_id\":17237},\"3404\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032456\",\"first_name\":\"Prince Charles\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1532569201620,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"iworah\",\"depth_chart_position\":null,\"player_id\":\"3404\",\"birth_city\":null,\"fantasy_data_id\":18165,\"years_exp\":4,\"hashtag\":\"#PrinceCharlesIworah-NFL-FA-39\",\"search_first_name\":\"princecharles\",\"rotowire_id\":11246,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Prince Charles Iworah\",\"sportradar_id\":\"b8fa8d21-898c-4718-9b4e-f512c6414b28\",\"pandascore_id\":null,\"yahoo_id\":29483,\"last_name\":\"Iworah\",\"metadata\":null,\"college\":\"Western Kentucky\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"5'11\\\"\",\"search_full_name\":\"princecharlesiworah\",\"birth_date\":\"1993-03-11\",\"espn_id\":2994680},\"2071\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jarrod\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"pughsley\",\"depth_chart_position\":null,\"player_id\":\"2071\",\"birth_city\":null,\"fantasy_data_id\":16375,\"years_exp\":6,\"hashtag\":\"#JarrodPughsley-NFL-FA-63\",\"search_first_name\":\"jarrod\",\"rotowire_id\":10120,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Jarrod Pughsley\",\"sportradar_id\":\"2704b8c6-2f29-459c-ac3c-f921acf955d0\",\"pandascore_id\":null,\"yahoo_id\":28137,\"last_name\":\"Pughsley\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":\"Lima (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":63,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"310\",\"height\":\"6'4\\\"\",\"search_full_name\":\"jarrodpughsley\",\"birth_date\":\"1990-12-18\",\"espn_id\":17312},\"5469\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034124\",\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"schleuger\",\"depth_chart_position\":null,\"player_id\":\"5469\",\"birth_city\":null,\"fantasy_data_id\":20344,\"years_exp\":2,\"hashtag\":\"#ChrisSchleuger-NFL-FA-74\",\"search_first_name\":\"chris\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Chris Schleuger\",\"sportradar_id\":\"5535abc8-e8c0-48bc-b233-3aacccde7eaf\",\"pandascore_id\":null,\"yahoo_id\":31419,\"last_name\":\"Schleuger\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":74,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"305\",\"height\":\"6'4\\\"\",\"search_full_name\":\"chrisschleuger\",\"birth_date\":\"1995-05-12\",\"espn_id\":3908989},\"2656\":{\"position\":\"ILB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chi Chi\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"ariguzo\",\"depth_chart_position\":null,\"player_id\":\"2656\",\"birth_city\":null,\"fantasy_data_id\":17124,\"years_exp\":1,\"hashtag\":\"#ChiChiAriguzo-NFL-FA-58\",\"search_first_name\":\"chichi\",\"rotowire_id\":10682,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Chi Chi Ariguzo\",\"sportradar_id\":\"e640f40d-e8af-46f4-bd4f-fb6f3bd7d361\",\"pandascore_id\":null,\"yahoo_id\":28672,\"last_name\":\"Ariguzo\",\"metadata\":null,\"college\":\"Northwestern\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":58,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"232\",\"height\":\"6'1\\\"\",\"search_full_name\":\"chichiariguzo\",\"birth_date\":\"1992-06-23\",\"espn_id\":2511087},\"6756\":{\"position\":\"FS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kahani\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"6756\",\"birth_city\":null,\"fantasy_data_id\":21700,\"years_exp\":1,\"hashtag\":\"#KahaniSmith-NFL-FA-0\",\"search_first_name\":\"kahani\",\"rotowire_id\":14417,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1184,\"age\":22,\"full_name\":\"Kahani Smith\",\"sportradar_id\":\"400515df-2c75-4570-b37d-c12436a961ba\",\"pandascore_id\":null,\"yahoo_id\":32660,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Texas-El Paso\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"190\",\"height\":\"6'1\\\"\",\"search_full_name\":\"kahanismith\",\"birth_date\":\"1997-11-21\",\"espn_id\":null},\"6799\":{\"position\":\"DB\",\"injury_notes\":\"Delpit was carted off the practice field and will likely miss the 2020 season.\",\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Grant\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1598395839046,\"status\":\"Injured Reserve\",\"injury_body_part\":null,\"search_last_name\":\"delpit\",\"depth_chart_position\":null,\"player_id\":\"6799\",\"birth_city\":null,\"fantasy_data_id\":21918,\"years_exp\":0,\"hashtag\":\"#GrantDelpit-NFL-CLE-22\",\"search_first_name\":\"grant\",\"rotowire_id\":14507,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":22,\"full_name\":\"Grant Delpit\",\"sportradar_id\":\"1bbe7ce0-3707-4d4d-b8f6-7577008f1763\",\"pandascore_id\":null,\"yahoo_id\":32714,\"last_name\":\"Delpit\",\"metadata\":null,\"college\":\"Louisiana State\",\"high_school\":\"IMG Academy (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":\"IR\",\"sport\":\"nfl\",\"team\":\"CLE\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'3\\\"\",\"search_full_name\":\"grantdelpit\",\"birth_date\":\"1998-09-20\",\"espn_id\":4242208},\"7108\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Hasise\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"dubois\",\"depth_chart_position\":null,\"player_id\":\"7108\",\"birth_city\":null,\"fantasy_data_id\":22131,\"years_exp\":0,\"hashtag\":\"#HasiseDubois-NFL-FA-0\",\"search_first_name\":\"hasise\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Hasise Dubois\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Dubois\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"215\",\"height\":\"6'3\\\"\",\"search_full_name\":\"hasisedubois\",\"birth_date\":null,\"espn_id\":null},\"2370\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"D'Joun\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"smith\",\"depth_chart_position\":null,\"player_id\":\"2370\",\"birth_city\":null,\"fantasy_data_id\":16826,\"years_exp\":5,\"hashtag\":\"#DJounSmith-NFL-FA-20\",\"search_first_name\":\"djoun\",\"rotowire_id\":10414,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":27,\"full_name\":\"D'Joun Smith\",\"sportradar_id\":\"fee7cbd7-9880-4a0c-aa6b-fe148483bc92\",\"pandascore_id\":null,\"yahoo_id\":28453,\"last_name\":\"Smith\",\"metadata\":null,\"college\":\"Florida Atlantic\",\"high_school\":\"American (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":20,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'11\\\"\",\"search_full_name\":\"djounsmith\",\"birth_date\":\"1992-09-23\",\"espn_id\":2982861},\"2239\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jonathan\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"brown\",\"depth_chart_position\":null,\"player_id\":\"2239\",\"birth_city\":null,\"fantasy_data_id\":16641,\"years_exp\":1,\"hashtag\":\"#JonathanBrown-NFL-FA-45\",\"search_first_name\":\"jonathan\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Jonathan Brown\",\"sportradar_id\":\"206bc431-7d63-4d27-a19b-9ea9ab2cb7c4\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Brown\",\"metadata\":null,\"college\":\"Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":45,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"238\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jonathanbrown\",\"birth_date\":\"1992-06-22\",\"espn_id\":17116},\"7072\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Michael\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"turk\",\"depth_chart_position\":null,\"player_id\":\"7072\",\"birth_city\":null,\"fantasy_data_id\":22116,\"years_exp\":0,\"hashtag\":\"#MichaelTurk-NFL-FA-0\",\"search_first_name\":\"michael\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Michael Turk\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Turk\",\"metadata\":null,\"college\":\"Arizona State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":\"NA\",\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"228\",\"height\":\"6'1\\\"\",\"search_full_name\":\"michaelturk\",\"birth_date\":null,\"espn_id\":null},\"175\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0026176\",\"first_name\":\"Jordy\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1554315648501,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"nelson\",\"depth_chart_position\":null,\"player_id\":\"175\",\"birth_city\":null,\"fantasy_data_id\":4556,\"years_exp\":12,\"hashtag\":\"#JordyNelson-NFL-FA-82\",\"search_first_name\":\"jordy\",\"rotowire_id\":5691,\"rotoworld_id\":4731,\"active\":true,\"search_rank\":9999999,\"age\":35,\"full_name\":\"Jordy Nelson\",\"sportradar_id\":\"9f2aebe4-b654-4f0e-a437-ec46f20b6bfe\",\"pandascore_id\":null,\"yahoo_id\":8813,\"last_name\":\"Nelson\",\"metadata\":null,\"college\":\"Kansas State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":227442,\"injury_start_date\":null,\"number\":82,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"217\",\"height\":\"6'3\\\"\",\"search_full_name\":\"jordynelson\",\"birth_date\":\"1985-05-31\",\"espn_id\":11270},\"1666\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0029955\",\"first_name\":\"LaRoy\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":1585059038006,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"reynolds\",\"depth_chart_position\":\"LB\",\"player_id\":\"1666\",\"birth_city\":null,\"fantasy_data_id\":15450,\"years_exp\":7,\"hashtag\":\"#LaRoyReynolds-NFL-ATL-59\",\"search_first_name\":\"laroy\",\"rotowire_id\":9068,\"rotoworld_id\":null,\"active\":true,\"search_rank\":760,\"age\":30,\"full_name\":\"LaRoy Reynolds\",\"sportradar_id\":\"0555927e-18ad-40f9-b2d6-f63d533d91aa\",\"pandascore_id\":null,\"yahoo_id\":26975,\"last_name\":\"Reynolds\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Maury (VA)\",\"depth_chart_order\":2,\"stats_id\":509379,\"injury_start_date\":null,\"number\":59,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"240\",\"height\":\"6'1\\\"\",\"search_full_name\":\"laroyreynolds\",\"birth_date\":\"1990-11-03\",\"espn_id\":16449},\"5671\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034662\",\"first_name\":\"Joshua\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1572730552939,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"kalu\",\"depth_chart_position\":\"SS\",\"player_id\":\"5671\",\"birth_city\":null,\"fantasy_data_id\":20384,\"years_exp\":2,\"hashtag\":\"#JoshuaKalu-NFL-TEN-46\",\"search_first_name\":\"joshua\",\"rotowire_id\":12720,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1464,\"age\":25,\"full_name\":\"Joshua Kalu\",\"sportradar_id\":\"ab741f46-d660-48f2-a910-774d0514d2e4\",\"pandascore_id\":null,\"yahoo_id\":31609,\"last_name\":\"Kalu\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Nebraska\",\"high_school\":\"Alief Taylor (TX)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":46,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"203\",\"height\":\"6'0\\\"\",\"search_full_name\":\"joshuakalu\",\"birth_date\":\"1995-08-28\",\"espn_id\":3116105},\"5602\":{\"position\":\"DL\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0034451\",\"first_name\":\"Claudy\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"mathieu\",\"depth_chart_position\":null,\"player_id\":\"5602\",\"birth_city\":null,\"fantasy_data_id\":20322,\"years_exp\":2,\"hashtag\":\"#ClaudyMathieu-NFL-FA-60\",\"search_first_name\":\"claudy\",\"rotowire_id\":13267,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Claudy Mathieu\",\"sportradar_id\":\"1da8b818-601e-4d53-943b-c7cb767969a3\",\"pandascore_id\":null,\"yahoo_id\":31539,\"last_name\":\"Mathieu\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":60,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"250\",\"height\":\"6'6\\\"\",\"search_full_name\":\"claudymathieu\",\"birth_date\":\"1993-01-18\",\"espn_id\":3939134},\"6871\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cameron\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1606075819186,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"dantzler\",\"depth_chart_position\":\"LCB\",\"player_id\":\"6871\",\"birth_city\":null,\"fantasy_data_id\":22048,\"years_exp\":0,\"hashtag\":\"#CameronDantzler-NFL-MIN-27\",\"search_first_name\":\"cameron\",\"rotowire_id\":14363,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1884,\"age\":22,\"full_name\":\"Cameron Dantzler\",\"sportradar_id\":\"c10aceb5-abcc-4e42-a399-cce8e5832671\",\"pandascore_id\":null,\"yahoo_id\":32759,\"last_name\":\"Dantzler\",\"metadata\":null,\"college\":\"Mississippi State\",\"high_school\":\"St. Thomas Aquinas (LA)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":27,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIN\",\"practice_participation\":null,\"weight\":\"185\",\"height\":\"6'2\\\"\",\"search_full_name\":\"camerondantzler\",\"birth_date\":\"1998-09-03\",\"espn_id\":4035385},\"4036\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0033871\",\"first_name\":\"Corey\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606503004103,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"davis\",\"depth_chart_position\":\"RWR\",\"player_id\":\"4036\",\"birth_city\":null,\"fantasy_data_id\":18879,\"years_exp\":3,\"hashtag\":\"#CoreyDavis-NFL-TEN-84\",\"search_first_name\":\"corey\",\"rotowire_id\":11733,\"rotoworld_id\":12169,\"active\":true,\"search_rank\":180,\"age\":25,\"full_name\":\"Corey Davis\",\"sportradar_id\":\"e21e9081-44aa-464b-8d3e-83918d48b921\",\"pandascore_id\":null,\"yahoo_id\":30118,\"last_name\":\"Davis\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Western Michigan\",\"high_school\":\"Warrenville South (IL)\",\"depth_chart_order\":1,\"stats_id\":732121,\"injury_start_date\":null,\"number\":84,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"TEN\",\"practice_participation\":null,\"weight\":\"209\",\"height\":\"6'3\\\"\",\"search_full_name\":\"coreydavis\",\"birth_date\":\"1995-01-11\",\"espn_id\":3042778},\"2156\":{\"position\":\"SS\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031267\",\"first_name\":\"Antone\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1577914234877,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"exum\",\"depth_chart_position\":\"SS\",\"player_id\":\"2156\",\"birth_city\":null,\"fantasy_data_id\":16502,\"years_exp\":6,\"hashtag\":\"#AntoneExum-NFL-FA-38\",\"search_first_name\":\"antone\",\"rotowire_id\":9339,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Antone Exum\",\"sportradar_id\":\"2a027210-21b3-4723-868d-df995e5d7441\",\"pandascore_id\":null,\"yahoo_id\":27710,\"last_name\":\"Exum\",\"metadata\":null,\"college\":\"Virginia Tech\",\"high_school\":\"Deep Run (VA)\",\"depth_chart_order\":3,\"stats_id\":507515,\"injury_start_date\":null,\"number\":38,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"219\",\"height\":\"6'0\\\"\",\"search_full_name\":\"antoneexum\",\"birth_date\":\"1991-02-27\",\"espn_id\":16833},\"6618\":{\"position\":\"TE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035718\",\"first_name\":\"Isaiah\",\"practice_description\":null,\"fantasy_positions\":[\"TE\"],\"news_updated\":1582683328855,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"searight\",\"depth_chart_position\":\"LTE\",\"player_id\":\"6618\",\"birth_city\":null,\"fantasy_data_id\":21394,\"years_exp\":1,\"hashtag\":\"#IsaiahSearight-NFL-FA-0\",\"search_first_name\":\"isaiah\",\"rotowire_id\":13944,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":25,\"full_name\":\"Isaiah Searight\",\"sportradar_id\":\"79b89410-979a-4cc6-8463-940e78e0d1b6\",\"pandascore_id\":null,\"yahoo_id\":32486,\"last_name\":\"Searight\",\"metadata\":null,\"college\":\"Fordham\",\"high_school\":null,\"depth_chart_order\":3,\"stats_id\":874663,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'3\\\"\",\"search_full_name\":\"isaiahsearight\",\"birth_date\":\"1995-08-08\",\"espn_id\":3909346},\"7094\":{\"position\":\"K\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Lirim\",\"practice_description\":null,\"fantasy_positions\":[\"K\"],\"news_updated\":1602716153952,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"hajrullahu\",\"depth_chart_position\":null,\"player_id\":\"7094\",\"birth_city\":null,\"fantasy_data_id\":22122,\"years_exp\":0,\"hashtag\":\"#LirimHajrullahu-NFL-FA-0\",\"search_first_name\":\"lirim\",\"rotowire_id\":14808,\"rotoworld_id\":null,\"active\":true,\"search_rank\":1926,\"age\":30,\"full_name\":\"Lirim Hajrullahu\",\"sportradar_id\":\"5a09de36-5fac-4053-b3a0-2b56d2519a9b\",\"pandascore_id\":null,\"yahoo_id\":32668,\"last_name\":\"Hajrullahu\",\"metadata\":null,\"college\":\"Western Ontario (Canada)\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"205\",\"height\":\"5'11\\\"\",\"search_full_name\":\"lirimhajrullahu\",\"birth_date\":\"1990-04-24\",\"espn_id\":4682912},\"6271\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035208\",\"first_name\":\"Olamide\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1606114511206,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zaccheaus\",\"depth_chart_position\":\"LWR\",\"player_id\":\"6271\",\"birth_city\":null,\"fantasy_data_id\":21142,\"years_exp\":1,\"hashtag\":\"#OlamideZaccheaus-NFL-ATL-17\",\"search_first_name\":\"olamide\",\"rotowire_id\":13833,\"rotoworld_id\":null,\"active\":true,\"search_rank\":288,\"age\":23,\"full_name\":\"Olamide Zaccheaus\",\"sportradar_id\":\"d8281390-f081-41e5-b55e-75779536fe94\",\"pandascore_id\":null,\"yahoo_id\":32123,\"last_name\":\"Zaccheaus\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"St. Joseph's Prep (PA)\",\"depth_chart_order\":2,\"stats_id\":883976,\"injury_start_date\":null,\"number\":17,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"ATL\",\"practice_participation\":null,\"weight\":\"193\",\"height\":\"5'8\\\"\",\"search_full_name\":\"olamidezaccheaus\",\"birth_date\":\"1997-07-23\",\"espn_id\":3917914},\"408\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Chris\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"canty\",\"depth_chart_position\":null,\"player_id\":\"408\",\"birth_city\":null,\"fantasy_data_id\":8872,\"years_exp\":15,\"hashtag\":\"#ChrisCanty-NFL-FA-99\",\"search_first_name\":\"chris\",\"rotowire_id\":4477,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":37,\"full_name\":\"Chris Canty\",\"sportradar_id\":\"5870bbda-5923-4924-865c-964f8ac6da78\",\"pandascore_id\":null,\"yahoo_id\":7308,\"last_name\":\"Canty\",\"metadata\":null,\"college\":\"Virginia\",\"high_school\":\"Charlotte Latin (NC)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":99,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'7\\\"\",\"search_full_name\":\"chriscanty\",\"birth_date\":\"1982-11-10\",\"espn_id\":8546},\"1768\":{\"position\":\"DE\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"K\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"browner\",\"depth_chart_position\":null,\"player_id\":\"1768\",\"birth_city\":null,\"fantasy_data_id\":15821,\"years_exp\":1,\"hashtag\":\"#KBrowner-NFL-FA-76\",\"search_first_name\":\"k\",\"rotowire_id\":9909,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":30,\"full_name\":\"K Browner\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":26554,\"last_name\":\"Browner\",\"metadata\":null,\"college\":\"California\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"276\",\"height\":\"6'4\\\"\",\"search_full_name\":\"kbrowner\",\"birth_date\":\"1988-04-07\",\"espn_id\":15698},\"311\":{\"position\":\"P\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"P\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"fields\",\"depth_chart_position\":null,\"player_id\":\"311\",\"birth_city\":null,\"fantasy_data_id\":7650,\"years_exp\":13,\"hashtag\":\"#BrandonFields-NFL-FA-4\",\"search_first_name\":\"brandon\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Brandon Fields\",\"sportradar_id\":\"c0ef0d99-8f3f-480e-a9b5-eeff5c8f7339\",\"pandascore_id\":null,\"yahoo_id\":8479,\"last_name\":\"Fields\",\"metadata\":null,\"college\":\"Michigan State\",\"high_school\":\"St. John's Jesuit (OH)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":4,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonfields\",\"birth_date\":\"1984-05-21\",\"espn_id\":10668},\"2313\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032240\",\"first_name\":\"Vic\",\"practice_description\":null,\"fantasy_positions\":[\"LB\",\"DL\"],\"news_updated\":1606172415343,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"beasley\",\"depth_chart_position\":null,\"player_id\":\"2313\",\"birth_city\":null,\"fantasy_data_id\":16769,\"years_exp\":5,\"hashtag\":\"#VicBeasley-NFL-LV-44\",\"search_first_name\":\"vic\",\"rotowire_id\":9261,\"rotoworld_id\":10365,\"active\":true,\"search_rank\":851,\"age\":28,\"full_name\":\"Vic Beasley\",\"sportradar_id\":\"d1d46ded-4585-4760-81b4-62b80d31a3b0\",\"pandascore_id\":null,\"yahoo_id\":28396,\"last_name\":\"Beasley\",\"metadata\":{\"injury_override_regular_2020_5\":\"Active\"},\"college\":\"Clemson\",\"high_school\":\"Adairsville (GA)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":44,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"LV\",\"practice_participation\":null,\"weight\":\"246\",\"height\":\"6'3\\\"\",\"search_full_name\":\"vicbeasley\",\"birth_date\":\"1992-07-08\",\"espn_id\":2512400},\"7494\":{\"position\":\"LB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Kyahva\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"tezino\",\"depth_chart_position\":null,\"player_id\":\"7494\",\"birth_city\":null,\"fantasy_data_id\":22469,\"years_exp\":0,\"hashtag\":\"#KyahvaTezino-NFL-FA-0\",\"search_first_name\":\"kyahva\",\"rotowire_id\":14910,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Kyahva Tezino\",\"sportradar_id\":\"2cb466a9-fce5-49ab-bff6-b0b0f8960cac\",\"pandascore_id\":null,\"yahoo_id\":33323,\"last_name\":\"Tezino\",\"metadata\":null,\"college\":\"San DIego State\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"235\",\"height\":\"6'0\\\"\",\"search_full_name\":\"kyahvatezino\",\"birth_date\":\"1997-06-21\",\"espn_id\":3921659},\"2560\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031665\",\"first_name\":\"Zach\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1576018846783,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"zenner\",\"depth_chart_position\":null,\"player_id\":\"2560\",\"birth_city\":null,\"fantasy_data_id\":17023,\"years_exp\":5,\"hashtag\":\"#ZachZenner-NFL-FA-22\",\"search_first_name\":\"zach\",\"rotowire_id\":10188,\"rotoworld_id\":10429,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Zach Zenner\",\"sportradar_id\":\"2a4de276-55bd-4756-9fa5-89fe30f5304f\",\"pandascore_id\":null,\"yahoo_id\":28887,\"last_name\":\"Zenner\",\"metadata\":null,\"college\":\"South Dakota State\",\"high_school\":\"Eagan (MN)\",\"depth_chart_order\":null,\"stats_id\":568874,\"injury_start_date\":null,\"number\":22,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"224\",\"height\":\"5'11\\\"\",\"search_full_name\":\"zachzenner\",\"birth_date\":\"1991-09-13\",\"espn_id\":2521161},\"6924\":{\"position\":\"G\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Netane\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1596583550273,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"muti\",\"depth_chart_position\":\"RG\",\"player_id\":\"6924\",\"birth_city\":null,\"fantasy_data_id\":22032,\"years_exp\":0,\"hashtag\":\"#NetaneMuti-NFL-DEN-52\",\"search_first_name\":\"netane\",\"rotowire_id\":14624,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":21,\"full_name\":\"Netane Muti\",\"sportradar_id\":\"64321852-52e3-4ac0-9b3e-898f0b1e500c\",\"pandascore_id\":null,\"yahoo_id\":32851,\"last_name\":\"Muti\",\"metadata\":{\"injury_override_regular_2020_5\":\"COV\"},\"college\":\"Fresno State\",\"high_school\":\"Leilehua (HI)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DEN\",\"practice_participation\":null,\"weight\":\"307\",\"height\":\"6'3\\\"\",\"search_full_name\":\"netanemuti\",\"birth_date\":\"1999-03-27\",\"espn_id\":4040910},\"61\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Cortland\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"finnegan\",\"depth_chart_position\":null,\"player_id\":\"61\",\"birth_city\":null,\"fantasy_data_id\":1722,\"years_exp\":14,\"hashtag\":\"#CortlandFinnegan-NFL-FA-21\",\"search_first_name\":\"cortland\",\"rotowire_id\":null,\"rotoworld_id\":4035,\"active\":false,\"search_rank\":9999999,\"age\":36,\"full_name\":\"Cortland Finnegan\",\"sportradar_id\":\"9fe9d478-6884-4f2e-b74f-76d3305975e4\",\"pandascore_id\":null,\"yahoo_id\":7964,\"last_name\":\"Finnegan\",\"metadata\":null,\"college\":\"Samford\",\"high_school\":\"Milton (FL)\",\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":21,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"188\",\"height\":\"5'10\\\"\",\"search_full_name\":\"cortlandfinnegan\",\"birth_date\":\"1984-02-02\",\"espn_id\":9801},\"6050\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035418\",\"first_name\":\"Brandon\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1606022710663,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"knight\",\"depth_chart_position\":\"RT\",\"player_id\":\"6050\",\"birth_city\":null,\"fantasy_data_id\":20849,\"years_exp\":1,\"hashtag\":\"#BrandonKnight-NFL-DAL-69\",\"search_first_name\":\"brandon\",\"rotowire_id\":13873,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":23,\"full_name\":\"Brandon Knight\",\"sportradar_id\":\"e1705a56-ae89-4af7-baac-4e72b6f7bd7a\",\"pandascore_id\":null,\"yahoo_id\":32202,\"last_name\":\"Knight\",\"metadata\":null,\"college\":\"Indiana\",\"high_school\":\"Noblesville (IN)\",\"depth_chart_order\":3,\"stats_id\":null,\"injury_start_date\":null,\"number\":69,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"DAL\",\"practice_participation\":null,\"weight\":\"314\",\"height\":\"6'5\\\"\",\"search_full_name\":\"brandonknight\",\"birth_date\":\"1997-04-01\",\"espn_id\":3929795},\"2752\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Trent\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"steelman\",\"depth_chart_position\":null,\"player_id\":\"2752\",\"birth_city\":null,\"fantasy_data_id\":17220,\"years_exp\":0,\"hashtag\":\"#TrentSteelman-NFL-FA-6\",\"search_first_name\":\"trent\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Trent Steelman\",\"sportradar_id\":\"7c3c06ea-0b4f-418c-bef2-935f2bc209cf\",\"pandascore_id\":null,\"yahoo_id\":29173,\"last_name\":\"Steelman\",\"metadata\":null,\"college\":\"Army\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":507611,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"208\",\"height\":\"5'11\\\"\",\"search_full_name\":\"trentsteelman\",\"birth_date\":null,\"espn_id\":2469123},\"2392\":{\"position\":\"WR\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032166\",\"first_name\":\"Sammie\",\"practice_description\":null,\"fantasy_positions\":[\"WR\"],\"news_updated\":1557525614790,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"coates\",\"depth_chart_position\":null,\"player_id\":\"2392\",\"birth_city\":null,\"fantasy_data_id\":16848,\"years_exp\":5,\"hashtag\":\"#SammieCoates-NFL-FA-18\",\"search_first_name\":\"sammie\",\"rotowire_id\":10211,\"rotoworld_id\":10285,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Sammie Coates\",\"sportradar_id\":\"52d09eea-a580-447a-8062-5841d5a9c8b3\",\"pandascore_id\":null,\"yahoo_id\":28475,\"last_name\":\"Coates\",\"metadata\":null,\"college\":\"Auburn\",\"high_school\":\"Leroy (AL)\",\"depth_chart_order\":null,\"stats_id\":593296,\"injury_start_date\":null,\"number\":18,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"212\",\"height\":\"6'1\\\"\",\"search_full_name\":\"sammiecoates\",\"birth_date\":\"1993-03-31\",\"espn_id\":2574549},\"2711\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031800\",\"first_name\":\"Taylor\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":1574442315097,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"heinicke\",\"depth_chart_position\":null,\"player_id\":\"2711\",\"birth_city\":null,\"fantasy_data_id\":17179,\"years_exp\":5,\"hashtag\":\"#TaylorHeinicke-NFL-FA-6\",\"search_first_name\":\"taylor\",\"rotowire_id\":10179,\"rotoworld_id\":10665,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Taylor Heinicke\",\"sportradar_id\":\"2c259733-ec2c-4e3c-bb7b-34dc0d37dc34\",\"pandascore_id\":null,\"yahoo_id\":28839,\"last_name\":\"Heinicke\",\"metadata\":null,\"college\":\"Old Dominion\",\"high_school\":\"Collins Hill (GA)\",\"depth_chart_order\":null,\"stats_id\":599113,\"injury_start_date\":null,\"number\":6,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"210\",\"height\":\"6'1\\\"\",\"search_full_name\":\"taylorheinicke\",\"birth_date\":\"1993-03-15\",\"espn_id\":2565969},\"2454\":{\"position\":\"DT\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031592\",\"first_name\":\"David\",\"practice_description\":null,\"fantasy_positions\":[\"DL\"],\"news_updated\":1567285206214,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"parry\",\"depth_chart_position\":null,\"player_id\":\"2454\",\"birth_city\":null,\"fantasy_data_id\":16911,\"years_exp\":5,\"hashtag\":\"#DavidParry-NFL-FA-75\",\"search_first_name\":\"david\",\"rotowire_id\":10461,\"rotoworld_id\":10528,\"active\":true,\"search_rank\":9999999,\"age\":28,\"full_name\":\"David Parry\",\"sportradar_id\":\"376a61bd-de05-4fb1-a698-7f93fd1a102c\",\"pandascore_id\":null,\"yahoo_id\":28539,\"last_name\":\"Parry\",\"metadata\":null,\"college\":\"Stanford\",\"high_school\":\"Linn-Marr (IA)\",\"depth_chart_order\":null,\"stats_id\":553094,\"injury_start_date\":null,\"number\":75,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"317\",\"height\":\"6'2\\\"\",\"search_full_name\":\"davidparry\",\"birth_date\":\"1992-03-07\",\"espn_id\":2517779},\"5208\":{\"position\":\"QB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Matt\",\"practice_description\":null,\"fantasy_positions\":[\"QB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"linehan\",\"depth_chart_position\":null,\"player_id\":\"5208\",\"birth_city\":null,\"fantasy_data_id\":20158,\"years_exp\":0,\"hashtag\":\"#MattLinehan-NFL-FA-10\",\"search_first_name\":\"matt\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":null,\"full_name\":\"Matt Linehan\",\"sportradar_id\":\"\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Linehan\",\"metadata\":null,\"college\":\"None\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":10,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"239\",\"height\":\"6'3\\\"\",\"search_full_name\":\"mattlinehan\",\"birth_date\":null,\"espn_id\":3060176},\"753\":{\"position\":\"OLB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jason\",\"practice_description\":null,\"fantasy_positions\":[\"LB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"williams\",\"depth_chart_position\":null,\"player_id\":\"753\",\"birth_city\":null,\"fantasy_data_id\":12445,\"years_exp\":7,\"hashtag\":\"#JasonWilliams-NFL-FA-52\",\"search_first_name\":\"jason\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":31,\"full_name\":\"Jason Williams\",\"sportradar_id\":\"ea3365f9-6ca3-4e66-bb73-574d99e5c387\",\"pandascore_id\":null,\"yahoo_id\":9333,\"last_name\":\"Williams\",\"metadata\":null,\"college\":\"Western Illinois\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":52,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"245\",\"height\":\"6'1\\\"\",\"search_full_name\":\"jasonwilliams\",\"birth_date\":\"1986-02-21\",\"espn_id\":12749},\"6311\":{\"position\":\"RB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0035342\",\"first_name\":\"Patrick\",\"practice_description\":null,\"fantasy_positions\":[\"RB\"],\"news_updated\":1606270855582,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"laird\",\"depth_chart_position\":\"RB\",\"player_id\":\"6311\",\"birth_city\":null,\"fantasy_data_id\":21211,\"years_exp\":1,\"hashtag\":\"#PatrickLaird-NFL-MIA-32\",\"search_first_name\":\"patrick\",\"rotowire_id\":13913,\"rotoworld_id\":null,\"active\":true,\"search_rank\":280,\"age\":25,\"full_name\":\"Patrick Laird\",\"sportradar_id\":\"5c424ecf-07c8-471e-a400-8d5f834af2e0\",\"pandascore_id\":null,\"yahoo_id\":32439,\"last_name\":\"Laird\",\"metadata\":null,\"college\":\"California\",\"high_school\":\"Mission Prep (CA)\",\"depth_chart_order\":4,\"stats_id\":835694,\"injury_start_date\":null,\"number\":32,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"MIA\",\"practice_participation\":null,\"weight\":\"205\",\"height\":\"6'0\\\"\",\"search_full_name\":\"patricklaird\",\"birth_date\":\"1995-08-17\",\"espn_id\":3127211},\"1860\":{\"position\":\"T\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0031031\",\"first_name\":\"Brent\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1584754511389,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"qvale\",\"depth_chart_position\":\"RG\",\"player_id\":\"1860\",\"birth_city\":null,\"fantasy_data_id\":16071,\"years_exp\":6,\"hashtag\":\"#BrentQvale-NFL-HOU-76\",\"search_first_name\":\"brent\",\"rotowire_id\":10144,\"rotoworld_id\":null,\"active\":true,\"search_rank\":9999999,\"age\":29,\"full_name\":\"Brent Qvale\",\"sportradar_id\":\"19da8eea-111c-4e70-b516-0259015ad9db\",\"pandascore_id\":null,\"yahoo_id\":27864,\"last_name\":\"Qvale\",\"metadata\":null,\"college\":\"Nebraska\",\"high_school\":\"Williston (ND)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":76,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":\"HOU\",\"practice_participation\":null,\"weight\":\"315\",\"height\":\"6'7\\\"\",\"search_full_name\":\"brentqvale\",\"birth_date\":\"1991-03-11\",\"espn_id\":17087},\"3187\":{\"position\":\"C\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0032383\",\"first_name\":\"Ryan\",\"practice_description\":null,\"fantasy_positions\":[\"OL\"],\"news_updated\":1604250919007,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"kelly\",\"depth_chart_position\":\"C\",\"player_id\":\"3187\",\"birth_city\":null,\"fantasy_data_id\":17948,\"years_exp\":4,\"hashtag\":\"#RyanKelly-NFL-IND-78\",\"search_first_name\":\"ryan\",\"rotowire_id\":11089,\"rotoworld_id\":11304,\"active\":true,\"search_rank\":9999999,\"age\":27,\"full_name\":\"Ryan Kelly\",\"sportradar_id\":\"66990fc9-f98d-4712-8a0e-524372b9102f\",\"pandascore_id\":null,\"yahoo_id\":29252,\"last_name\":\"Kelly\",\"metadata\":null,\"college\":\"Alabama\",\"high_school\":\"Lakota West (OH)\",\"depth_chart_order\":1,\"stats_id\":null,\"injury_start_date\":null,\"number\":78,\"birth_state\":null,\"injury_status\":\"Out\",\"sport\":\"nfl\",\"team\":\"IND\",\"practice_participation\":null,\"weight\":\"309\",\"height\":\"6'4\\\"\",\"search_full_name\":\"ryankelly\",\"birth_date\":\"1993-05-30\",\"espn_id\":2578475},\"2899\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":null,\"first_name\":\"Jalil\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":null,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"carter\",\"depth_chart_position\":null,\"player_id\":\"2899\",\"birth_city\":null,\"fantasy_data_id\":17367,\"years_exp\":1,\"hashtag\":\"#JalilCarter-NFL-FA-39\",\"search_first_name\":\"jalil\",\"rotowire_id\":null,\"rotoworld_id\":null,\"active\":false,\"search_rank\":9999999,\"age\":28,\"full_name\":\"Jalil Carter\",\"sportradar_id\":\"243824d4-d2f8-482f-9483-9e73c5fe8d1b\",\"pandascore_id\":null,\"yahoo_id\":null,\"last_name\":\"Carter\",\"metadata\":null,\"college\":\"Akron\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":null,\"injury_start_date\":null,\"number\":39,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"197\",\"height\":\"6'0\\\"\",\"search_full_name\":\"jalilcarter\",\"birth_date\":\"1989-07-18\",\"espn_id\":14692},\"3212\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\" 00-0032810\",\"first_name\":\"Kalan\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1567101038638,\"status\":\"Inactive\",\"injury_body_part\":null,\"search_last_name\":\"reed\",\"depth_chart_position\":null,\"player_id\":\"3212\",\"birth_city\":null,\"fantasy_data_id\":17973,\"years_exp\":4,\"hashtag\":\"#KalanReed-NFL-FA-0\",\"search_first_name\":\"kalan\",\"rotowire_id\":11248,\"rotoworld_id\":11530,\"active\":true,\"search_rank\":9999999,\"age\":26,\"full_name\":\"Kalan Reed\",\"sportradar_id\":\"3ade957d-5c6f-4f8d-8d56-fdaae1753aa2\",\"pandascore_id\":null,\"yahoo_id\":29487,\"last_name\":\"Reed\",\"metadata\":null,\"college\":\"Southern Mississippi\",\"high_school\":null,\"depth_chart_order\":null,\"stats_id\":693428,\"injury_start_date\":null,\"number\":null,\"birth_state\":null,\"injury_status\":null,\"sport\":\"nfl\",\"team\":null,\"practice_participation\":null,\"weight\":\"199\",\"height\":\"5'11\\\"\",\"search_full_name\":\"kalanreed\",\"birth_date\":\"1993-12-29\",\"espn_id\":2972090},\"837\":{\"position\":\"CB\",\"injury_notes\":null,\"birth_country\":null,\"gsis_id\":\"00-0028075\",\"first_name\":\"Buster\",\"practice_description\":null,\"fantasy_positions\":[\"DB\"],\"news_updated\":1603753839293,\"status\":\"Active\",\"injury_body_part\":null,\"search_last_name\":\"skrine\",\"depth_chart_position\":\"CB\",\"player_id\":\"837\",\"birth_city\":null,\"fantasy_data_id\":12881,\"years_exp\":9,\"hashtag\":\"#BusterSkrine-NFL-CHI-24\",\"search_first_name\":\"buster\",\"rotowire_id\":7623,\"rotoworld_id\":6651,\"active\":true,\"search_rank\":630,\"age\":31,\"full_name\":\"Buster Skrine\",\"sportradar_id\":\"639ff90f-285c-44a7-ba8d-6a47d0ecff71\",\"pandascore_id\":null,\"yahoo_id\":24924,\"last_name\":\"Skrine\",\"metadata\":null,\"college\":\"Chattanooga\",\"high_school\":\"Etowah (GA)\",\"depth_chart_order\":2,\"stats_id\":null,\"injury_start_date\":null,\"number\":24,\"birth_state\":null,\"injury_status\":\"Questionable\",\"sport\":\"nfl\",\"team\":\"CHI\",\"practice_particip